Compare commits

...

2 Commits

Author SHA1 Message Date
Robin Ye
0495d17a07 feat: support OAuth 2.0 form_post response mode (#3973) 2025-07-24 15:17:45 +08:00
Yang Luo
c6a2d59aa4 feat: update i18n strings 2025-07-24 15:15:19 +08:00
29 changed files with 242 additions and 10 deletions

View File

@@ -124,7 +124,7 @@ func GetOidcDiscovery(host string) OidcDiscovery {
JwksUri: fmt.Sprintf("%s/.well-known/jwks", originBackend), JwksUri: fmt.Sprintf("%s/.well-known/jwks", originBackend),
IntrospectionEndpoint: fmt.Sprintf("%s/api/login/oauth/introspect", originBackend), IntrospectionEndpoint: fmt.Sprintf("%s/api/login/oauth/introspect", originBackend),
ResponseTypesSupported: []string{"code", "token", "id_token", "code token", "code id_token", "token id_token", "code token id_token", "none"}, ResponseTypesSupported: []string{"code", "token", "id_token", "code token", "code id_token", "token id_token", "code token id_token", "none"},
ResponseModesSupported: []string{"query", "fragment"}, ResponseModesSupported: []string{"query", "fragment", "form_post"},
GrantTypesSupported: []string{"password", "authorization_code"}, GrantTypesSupported: []string{"password", "authorization_code"},
SubjectTypesSupported: []string{"public"}, SubjectTypesSupported: []string{"public"},
IdTokenSigningAlgValuesSupported: []string{"RS256", "RS512", "ES256", "ES384", "ES512"}, IdTokenSigningAlgValuesSupported: []string{"RS256", "RS512", "ES256", "ES384", "ES512"},

View File

@@ -35,6 +35,30 @@ class AuthCallback extends React.Component {
}; };
} }
submitFormPost(redirectUri, code, state) {
const form = document.createElement("form");
form.method = "post";
form.action = redirectUri;
const codeInput = document.createElement("input");
codeInput.type = "hidden";
codeInput.name = "code";
codeInput.value = code;
form.appendChild(codeInput);
if (state) {
const stateInput = document.createElement("input");
stateInput.type = "hidden";
stateInput.name = "state";
stateInput.value = state;
form.appendChild(stateInput);
}
document.body.appendChild(form);
form.submit();
setTimeout(() => form.remove(), 1000);
}
getInnerParams() { getInnerParams() {
// For example, for Casbin-OA, realRedirectUri = "http://localhost:9000/login" // For example, for Casbin-OA, realRedirectUri = "http://localhost:9000/login"
// realRedirectUrl = "http://localhost:9000" // realRedirectUrl = "http://localhost:9000"
@@ -158,6 +182,7 @@ class AuthCallback extends React.Component {
// OAuth // OAuth
const oAuthParams = Util.getOAuthGetParameters(innerParams); const oAuthParams = Util.getOAuthGetParameters(innerParams);
const concatChar = oAuthParams?.redirectUri?.includes("?") ? "&" : "?"; const concatChar = oAuthParams?.redirectUri?.includes("?") ? "&" : "?";
const responseMode = oAuthParams?.responseMode || "query"; // Default to "query" if not specified
const signinUrl = localStorage.getItem("signinUrl"); const signinUrl = localStorage.getItem("signinUrl");
AuthBackend.login(body, oAuthParams) AuthBackend.login(body, oAuthParams)
@@ -181,8 +206,13 @@ class AuthCallback extends React.Component {
Setting.goToLinkSoft(this, `/forget/${applicationName}`); Setting.goToLinkSoft(this, `/forget/${applicationName}`);
return; return;
} }
const code = res.data;
Setting.goToLink(`${oAuthParams.redirectUri}${concatChar}code=${code}&state=${oAuthParams.state}`); if (responseMode === "form_post") {
this.submitFormPost(oAuthParams?.redirectUri, res.data, oAuthParams?.state);
} else {
const code = res.data;
Setting.goToLink(`${oAuthParams.redirectUri}${concatChar}code=${code}&state=${oAuthParams.state}`);
}
// Setting.showMessage("success", `Authorization code: ${res.data}`); // Setting.showMessage("success", `Authorization code: ${res.data}`);
} else if (responseType === "token" || responseType === "id_token") { } else if (responseType === "token" || responseType === "id_token") {
if (res.data3) { if (res.data3) {

View File

@@ -141,6 +141,7 @@ export function getOAuthGetParameters(params) {
const nonce = getRefinedValue(queries.get("nonce")); const nonce = getRefinedValue(queries.get("nonce"));
const challengeMethod = getRefinedValue(queries.get("code_challenge_method")); const challengeMethod = getRefinedValue(queries.get("code_challenge_method"));
const codeChallenge = getRefinedValue(queries.get("code_challenge")); const codeChallenge = getRefinedValue(queries.get("code_challenge"));
const responseMode = getRefinedValue(queries.get("response_mode"));
const samlRequest = getRefinedValue(lowercaseQueries["samlRequest".toLowerCase()]); const samlRequest = getRefinedValue(lowercaseQueries["samlRequest".toLowerCase()]);
const relayState = getRefinedValue(lowercaseQueries["RelayState".toLowerCase()]); const relayState = getRefinedValue(lowercaseQueries["RelayState".toLowerCase()]);
const noRedirect = getRefinedValue(lowercaseQueries["noRedirect".toLowerCase()]); const noRedirect = getRefinedValue(lowercaseQueries["noRedirect".toLowerCase()]);
@@ -159,6 +160,7 @@ export function getOAuthGetParameters(params) {
nonce: nonce, nonce: nonce,
challengeMethod: challengeMethod, challengeMethod: challengeMethod,
codeChallenge: codeChallenge, codeChallenge: codeChallenge,
responseMode: responseMode,
samlRequest: samlRequest, samlRequest: samlRequest,
relayState: relayState, relayState: relayState,
noRedirect: noRedirect, noRedirect: noRedirect,

View File

@@ -86,7 +86,7 @@ class WeChatLoginPanel extends React.Component {
{application.signinItems?.filter(item => item.name === "Languages").map(signinItem => this.props.renderFormItem(application, signinItem))} {application.signinItems?.filter(item => item.name === "Languages").map(signinItem => this.props.renderFormItem(application, signinItem))}
{loading ? ( {loading ? (
<div style={{marginTop: 16}}> <div style={{marginTop: 16}}>
<span>{i18next.t("login:Loading...")}</span> <span>{i18next.t("login:Loading")}</span>
</div> </div>
) : qrCode ? ( ) : qrCode ? (
<div style={{marginTop: 2}}> <div style={{marginTop: 2}}>

View File

@@ -75,6 +75,7 @@
"Header HTML - Edit": "Header HTML - Edit", "Header HTML - Edit": "Header HTML - Edit",
"Header HTML - Tooltip": "Custom the head tag of your application entry page", "Header HTML - Tooltip": "Custom the head tag of your application entry page",
"Incremental": "Incremental", "Incremental": "Incremental",
"Inline": "Inline",
"Input": "Input", "Input": "Input",
"Internet-Only": "Internet-Only", "Internet-Only": "Internet-Only",
"Invalid characters in application name": "Invalid characters in application name", "Invalid characters in application name": "Invalid characters in application name",
@@ -95,6 +96,7 @@
"Please input your application!": "Please input your application!", "Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!", "Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Please select a HTML file", "Please select a HTML file": "Please select a HTML file",
"Pop up": "Pop up",
"Random": "Random", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Redirect URL", "Redirect URL": "Redirect URL",
@@ -295,6 +297,7 @@
"Failed to save": "Failed to save", "Failed to save": "Failed to save",
"Failed to sync": "Failed to sync", "Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"False": "False",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization", "Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
"First name": "First name", "First name": "First name",
@@ -444,6 +447,7 @@
"Tokens": "Tokens", "Tokens": "Tokens",
"Tour": "Tour", "Tour": "Tour",
"Transactions": "Transactions", "Transactions": "Transactions",
"True": "True",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Type - Tooltip", "Type - Tooltip": "Type - Tooltip",
"URL": "URL", "URL": "URL",
@@ -568,6 +572,7 @@
"Please select an organization to sign in": "Please select an organization to sign in", "Please select an organization to sign in": "Please select an organization to sign in",
"Please type an organization to sign in": "Please type an organization to sign in", "Please type an organization to sign in": "Please type an organization to sign in",
"Redirecting, please wait.": "Redirecting, please wait.", "Redirecting, please wait.": "Redirecting, please wait.",
"Refresh": "Refresh",
"Sign In": "Sign In", "Sign In": "Sign In",
"Sign in with Face ID": "Sign in with Face ID", "Sign in with Face ID": "Sign in with Face ID",
"Sign in with WebAuthn": "Sign in with WebAuthn", "Sign in with WebAuthn": "Sign in with WebAuthn",
@@ -581,6 +586,7 @@
"The input is not valid phone number!": "The input is not valid phone number!", "The input is not valid phone number!": "The input is not valid phone number!",
"To access": "To access", "To access": "To access",
"Verification code": "Verification code", "Verification code": "Verification code",
"WeChat": "WeChat",
"WebAuthn": "WebAuthn", "WebAuthn": "WebAuthn",
"sign up now": "sign up now", "sign up now": "sign up now",
"username, Email or phone": "username, Email or phone" "username, Email or phone": "username, Email or phone"
@@ -988,6 +994,8 @@
"Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning QR code to login", "Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning QR code to login",
"Use WeChat Media Platform to login": "Use WeChat Media Platform to login", "Use WeChat Media Platform to login": "Use WeChat Media Platform to login",
"Use WeChat Open Platform to login": "Use WeChat Open Platform to login", "Use WeChat Open Platform to login": "Use WeChat Open Platform to login",
"Use global endpoint": "Use global endpoint",
"Use global endpoint - Tooltip": "Use global endpoint - Tooltip",
"Use id as name": "Use id as name", "Use id as name": "Use id as name",
"Use id as name - Tooltip": "Use id as user's name", "Use id as name - Tooltip": "Use id as user's name",
"User flow": "User flow", "User flow": "User flow",

View File

@@ -75,6 +75,7 @@
"Header HTML - Edit": "Upravit HTML hlavičky", "Header HTML - Edit": "Upravit HTML hlavičky",
"Header HTML - Tooltip": "Přizpůsobit hlavičku vstupní stránky vaší aplikace", "Header HTML - Tooltip": "Přizpůsobit hlavičku vstupní stránky vaší aplikace",
"Incremental": "Inkrementální", "Incremental": "Inkrementální",
"Inline": "Inline",
"Input": "Vstup", "Input": "Vstup",
"Internet-Only": "Internet-Only", "Internet-Only": "Internet-Only",
"Invalid characters in application name": "Invalid characters in application name", "Invalid characters in application name": "Invalid characters in application name",
@@ -95,6 +96,7 @@
"Please input your application!": "Zadejte svou aplikaci!", "Please input your application!": "Zadejte svou aplikaci!",
"Please input your organization!": "Zadejte svou organizaci!", "Please input your organization!": "Zadejte svou organizaci!",
"Please select a HTML file": "Vyberte HTML soubor", "Please select a HTML file": "Vyberte HTML soubor",
"Pop up": "Pop up",
"Random": "Náhodný", "Random": "Náhodný",
"Real name": "Skutečné jméno", "Real name": "Skutečné jméno",
"Redirect URL": "Přesměrovací URL", "Redirect URL": "Přesměrovací URL",
@@ -295,6 +297,7 @@
"Failed to save": "Nepodařilo se uložit", "Failed to save": "Nepodařilo se uložit",
"Failed to sync": "Nepodařilo se synchronizovat", "Failed to sync": "Nepodařilo se synchronizovat",
"Failed to verify": "Nepodařilo se ověřit", "Failed to verify": "Nepodařilo se ověřit",
"False": "False",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "URL ikony favicon použité na všech stránkách Casdoor organizace", "Favicon - Tooltip": "URL ikony favicon použité na všech stránkách Casdoor organizace",
"First name": "Křestní jméno", "First name": "Křestní jméno",
@@ -444,6 +447,7 @@
"Tokens": "Tokeny", "Tokens": "Tokeny",
"Tour": "Tour", "Tour": "Tour",
"Transactions": "Transakce", "Transactions": "Transakce",
"True": "True",
"Type": "Typ", "Type": "Typ",
"Type - Tooltip": "Typ - Tooltip", "Type - Tooltip": "Typ - Tooltip",
"URL": "URL", "URL": "URL",
@@ -568,6 +572,7 @@
"Please select an organization to sign in": "Vyberte organizaci pro přihlášení", "Please select an organization to sign in": "Vyberte organizaci pro přihlášení",
"Please type an organization to sign in": "Zadejte organizaci pro přihlášení", "Please type an organization to sign in": "Zadejte organizaci pro přihlášení",
"Redirecting, please wait.": "Přesměrování, prosím čekejte.", "Redirecting, please wait.": "Přesměrování, prosím čekejte.",
"Refresh": "Refresh",
"Sign In": "Přihlásit se", "Sign In": "Přihlásit se",
"Sign in with Face ID": "Přihlásit se pomocí Face ID", "Sign in with Face ID": "Přihlásit se pomocí Face ID",
"Sign in with WebAuthn": "Přihlásit se pomocí WebAuthn", "Sign in with WebAuthn": "Přihlásit se pomocí WebAuthn",
@@ -581,6 +586,7 @@
"The input is not valid phone number!": "Zadaný údaj není platné telefonní číslo!", "The input is not valid phone number!": "Zadaný údaj není platné telefonní číslo!",
"To access": "Pro přístup", "To access": "Pro přístup",
"Verification code": "Ověřovací kód", "Verification code": "Ověřovací kód",
"WeChat": "WeChat",
"WebAuthn": "WebAuthn", "WebAuthn": "WebAuthn",
"sign up now": "zaregistrujte se nyní", "sign up now": "zaregistrujte se nyní",
"username, Email or phone": "uživatelské jméno, Email nebo telefon" "username, Email or phone": "uživatelské jméno, Email nebo telefon"
@@ -988,6 +994,8 @@
"Use WeChat Media Platform in PC - Tooltip": "Povolit skenování QR kódu WeChat Media Platform pro přihlášení", "Use WeChat Media Platform in PC - Tooltip": "Povolit skenování QR kódu WeChat Media Platform pro přihlášení",
"Use WeChat Media Platform to login": "Použít WeChat Media Platform pro přihlášení", "Use WeChat Media Platform to login": "Použít WeChat Media Platform pro přihlášení",
"Use WeChat Open Platform to login": "Použít WeChat Open Platform pro přihlášení", "Use WeChat Open Platform to login": "Použít WeChat Open Platform pro přihlášení",
"Use global endpoint": "Use global endpoint",
"Use global endpoint - Tooltip": "Use global endpoint - Tooltip",
"Use id as name": "Use id as name", "Use id as name": "Use id as name",
"Use id as name - Tooltip": "Use id as user's name", "Use id as name - Tooltip": "Use id as user's name",
"User flow": "Tok uživatele", "User flow": "Tok uživatele",

View File

@@ -75,6 +75,7 @@
"Header HTML - Edit": "Header HTML - Edit", "Header HTML - Edit": "Header HTML - Edit",
"Header HTML - Tooltip": "Custom the head tag of your application entry page", "Header HTML - Tooltip": "Custom the head tag of your application entry page",
"Incremental": "Incremental", "Incremental": "Incremental",
"Inline": "Inline",
"Input": "Input", "Input": "Input",
"Internet-Only": "Internet-Only", "Internet-Only": "Internet-Only",
"Invalid characters in application name": "Invalid characters in application name", "Invalid characters in application name": "Invalid characters in application name",
@@ -95,6 +96,7 @@
"Please input your application!": "Bitte geben Sie Ihre Anwendung ein!", "Please input your application!": "Bitte geben Sie Ihre Anwendung ein!",
"Please input your organization!": "Bitte geben Sie Ihre Organisation ein!", "Please input your organization!": "Bitte geben Sie Ihre Organisation ein!",
"Please select a HTML file": "Bitte wählen Sie eine HTML-Datei aus", "Please select a HTML file": "Bitte wählen Sie eine HTML-Datei aus",
"Pop up": "Pop up",
"Random": "Random", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Weiterleitungs-URL", "Redirect URL": "Weiterleitungs-URL",
@@ -295,6 +297,7 @@
"Failed to save": "Konnte nicht gespeichert werden", "Failed to save": "Konnte nicht gespeichert werden",
"Failed to sync": "Failed to sync", "Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"False": "False",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "Favicon-URL, die auf allen Casdoor-Seiten der Organisation verwendet wird", "Favicon - Tooltip": "Favicon-URL, die auf allen Casdoor-Seiten der Organisation verwendet wird",
"First name": "Vorname", "First name": "Vorname",
@@ -444,6 +447,7 @@
"Tokens": "Token", "Tokens": "Token",
"Tour": "Tour", "Tour": "Tour",
"Transactions": "Transactions", "Transactions": "Transactions",
"True": "True",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Type - Tooltip", "Type - Tooltip": "Type - Tooltip",
"URL": "URL", "URL": "URL",
@@ -568,6 +572,7 @@
"Please select an organization to sign in": "Please select an organization to sign in", "Please select an organization to sign in": "Please select an organization to sign in",
"Please type an organization to sign in": "Please type an organization to sign in", "Please type an organization to sign in": "Please type an organization to sign in",
"Redirecting, please wait.": "Umleitung, bitte warten.", "Redirecting, please wait.": "Umleitung, bitte warten.",
"Refresh": "Refresh",
"Sign In": "Anmelden", "Sign In": "Anmelden",
"Sign in with Face ID": "Sign in with Face ID", "Sign in with Face ID": "Sign in with Face ID",
"Sign in with WebAuthn": "Melden Sie sich mit WebAuthn an", "Sign in with WebAuthn": "Melden Sie sich mit WebAuthn an",
@@ -581,6 +586,7 @@
"The input is not valid phone number!": "The input is not valid phone number!", "The input is not valid phone number!": "The input is not valid phone number!",
"To access": "Zum Zugriff", "To access": "Zum Zugriff",
"Verification code": "Verifizierungscode", "Verification code": "Verifizierungscode",
"WeChat": "WeChat",
"WebAuthn": "WebAuthn", "WebAuthn": "WebAuthn",
"sign up now": "Melde dich jetzt an", "sign up now": "Melde dich jetzt an",
"username, Email or phone": "Benutzername, E-Mail oder Telefon" "username, Email or phone": "Benutzername, E-Mail oder Telefon"
@@ -988,6 +994,8 @@
"Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login", "Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login",
"Use WeChat Media Platform to login": "Use WeChat Media Platform to login", "Use WeChat Media Platform to login": "Use WeChat Media Platform to login",
"Use WeChat Open Platform to login": "Use WeChat Open Platform to login", "Use WeChat Open Platform to login": "Use WeChat Open Platform to login",
"Use global endpoint": "Use global endpoint",
"Use global endpoint - Tooltip": "Use global endpoint - Tooltip",
"Use id as name": "Use id as name", "Use id as name": "Use id as name",
"Use id as name - Tooltip": "Use id as user's name", "Use id as name - Tooltip": "Use id as user's name",
"User flow": "User flow", "User flow": "User flow",

View File

@@ -75,6 +75,7 @@
"Header HTML - Edit": "Header HTML - Edit", "Header HTML - Edit": "Header HTML - Edit",
"Header HTML - Tooltip": "Custom the head tag of your application entry page", "Header HTML - Tooltip": "Custom the head tag of your application entry page",
"Incremental": "Incremental", "Incremental": "Incremental",
"Inline": "Inline",
"Input": "Input", "Input": "Input",
"Internet-Only": "Internet-Only", "Internet-Only": "Internet-Only",
"Invalid characters in application name": "Invalid characters in application name", "Invalid characters in application name": "Invalid characters in application name",
@@ -95,6 +96,7 @@
"Please input your application!": "Please input your application!", "Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!", "Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Please select a HTML file", "Please select a HTML file": "Please select a HTML file",
"Pop up": "Pop up",
"Random": "Random", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Redirect URL", "Redirect URL": "Redirect URL",
@@ -295,6 +297,7 @@
"Failed to save": "Failed to save", "Failed to save": "Failed to save",
"Failed to sync": "Failed to sync", "Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"False": "False",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization", "Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
"First name": "First name", "First name": "First name",
@@ -444,6 +447,7 @@
"Tokens": "Tokens", "Tokens": "Tokens",
"Tour": "Tour", "Tour": "Tour",
"Transactions": "Transactions", "Transactions": "Transactions",
"True": "True",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Type - Tooltip", "Type - Tooltip": "Type - Tooltip",
"URL": "URL", "URL": "URL",
@@ -568,6 +572,7 @@
"Please select an organization to sign in": "Please select an organization to sign in", "Please select an organization to sign in": "Please select an organization to sign in",
"Please type an organization to sign in": "Please type an organization to sign in", "Please type an organization to sign in": "Please type an organization to sign in",
"Redirecting, please wait.": "Redirecting, please wait.", "Redirecting, please wait.": "Redirecting, please wait.",
"Refresh": "Refresh",
"Sign In": "Sign In", "Sign In": "Sign In",
"Sign in with Face ID": "Sign in with Face ID", "Sign in with Face ID": "Sign in with Face ID",
"Sign in with WebAuthn": "Sign in with WebAuthn", "Sign in with WebAuthn": "Sign in with WebAuthn",
@@ -581,6 +586,7 @@
"The input is not valid phone number!": "The input is not valid phone number!", "The input is not valid phone number!": "The input is not valid phone number!",
"To access": "To access", "To access": "To access",
"Verification code": "Verification code", "Verification code": "Verification code",
"WeChat": "WeChat",
"WebAuthn": "WebAuthn", "WebAuthn": "WebAuthn",
"sign up now": "sign up now", "sign up now": "sign up now",
"username, Email or phone": "username, Email or phone" "username, Email or phone": "username, Email or phone"
@@ -988,6 +994,8 @@
"Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login", "Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login",
"Use WeChat Media Platform to login": "Use WeChat Media Platform to login", "Use WeChat Media Platform to login": "Use WeChat Media Platform to login",
"Use WeChat Open Platform to login": "Use WeChat Open Platform to login", "Use WeChat Open Platform to login": "Use WeChat Open Platform to login",
"Use global endpoint": "Use global endpoint",
"Use global endpoint - Tooltip": "Use global endpoint - Tooltip",
"Use id as name": "Use id as name", "Use id as name": "Use id as name",
"Use id as name - Tooltip": "Use id as user's name", "Use id as name - Tooltip": "Use id as user's name",
"User flow": "User flow", "User flow": "User flow",

View File

@@ -75,6 +75,7 @@
"Header HTML - Edit": "Header HTML - Edit", "Header HTML - Edit": "Header HTML - Edit",
"Header HTML - Tooltip": "Custom the head tag of your application entry page", "Header HTML - Tooltip": "Custom the head tag of your application entry page",
"Incremental": "Incremental", "Incremental": "Incremental",
"Inline": "Inline",
"Input": "Input", "Input": "Input",
"Internet-Only": "Internet-Only", "Internet-Only": "Internet-Only",
"Invalid characters in application name": "Invalid characters in application name", "Invalid characters in application name": "Invalid characters in application name",
@@ -95,6 +96,7 @@
"Please input your application!": "¡Por favor, ingrese su solicitud!", "Please input your application!": "¡Por favor, ingrese su solicitud!",
"Please input your organization!": "¡Por favor, ingrese su organización!", "Please input your organization!": "¡Por favor, ingrese su organización!",
"Please select a HTML file": "Por favor, seleccione un archivo HTML", "Please select a HTML file": "Por favor, seleccione un archivo HTML",
"Pop up": "Pop up",
"Random": "Random", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Redireccionar URL", "Redirect URL": "Redireccionar URL",
@@ -295,6 +297,7 @@
"Failed to save": "No se pudo guardar", "Failed to save": "No se pudo guardar",
"Failed to sync": "Failed to sync", "Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"False": "False",
"Favicon": "Favicon (ícono de favoritos)", "Favicon": "Favicon (ícono de favoritos)",
"Favicon - Tooltip": "URL del icono Favicon utilizado en todas las páginas de Casdoor de la organización", "Favicon - Tooltip": "URL del icono Favicon utilizado en todas las páginas de Casdoor de la organización",
"First name": "Nombre de pila", "First name": "Nombre de pila",
@@ -444,6 +447,7 @@
"Tokens": "Tokens", "Tokens": "Tokens",
"Tour": "Tour", "Tour": "Tour",
"Transactions": "Transactions", "Transactions": "Transactions",
"True": "True",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Type - Tooltip", "Type - Tooltip": "Type - Tooltip",
"URL": "Dirección URL", "URL": "Dirección URL",
@@ -568,6 +572,7 @@
"Please select an organization to sign in": "Please select an organization to sign in", "Please select an organization to sign in": "Please select an organization to sign in",
"Please type an organization to sign in": "Please type an organization to sign in", "Please type an organization to sign in": "Please type an organization to sign in",
"Redirecting, please wait.": "Redirigiendo, por favor espera.", "Redirecting, please wait.": "Redirigiendo, por favor espera.",
"Refresh": "Refresh",
"Sign In": "Iniciar sesión", "Sign In": "Iniciar sesión",
"Sign in with Face ID": "Sign in with Face ID", "Sign in with Face ID": "Sign in with Face ID",
"Sign in with WebAuthn": "Iniciar sesión con WebAuthn", "Sign in with WebAuthn": "Iniciar sesión con WebAuthn",
@@ -581,6 +586,7 @@
"The input is not valid phone number!": "The input is not valid phone number!", "The input is not valid phone number!": "The input is not valid phone number!",
"To access": "para acceder", "To access": "para acceder",
"Verification code": "Código de verificación", "Verification code": "Código de verificación",
"WeChat": "WeChat",
"WebAuthn": "WebAuthn (Autenticación Web)", "WebAuthn": "WebAuthn (Autenticación Web)",
"sign up now": "Regístrate ahora", "sign up now": "Regístrate ahora",
"username, Email or phone": "Nombre de usuario, correo electrónico o teléfono" "username, Email or phone": "Nombre de usuario, correo electrónico o teléfono"
@@ -988,6 +994,8 @@
"Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login", "Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login",
"Use WeChat Media Platform to login": "Use WeChat Media Platform to login", "Use WeChat Media Platform to login": "Use WeChat Media Platform to login",
"Use WeChat Open Platform to login": "Use WeChat Open Platform to login", "Use WeChat Open Platform to login": "Use WeChat Open Platform to login",
"Use global endpoint": "Use global endpoint",
"Use global endpoint - Tooltip": "Use global endpoint - Tooltip",
"Use id as name": "Use id as name", "Use id as name": "Use id as name",
"Use id as name - Tooltip": "Use id as user's name", "Use id as name - Tooltip": "Use id as user's name",
"User flow": "User flow", "User flow": "User flow",

View File

@@ -75,6 +75,7 @@
"Header HTML - Edit": "ویرایش HTML سربرگ", "Header HTML - Edit": "ویرایش HTML سربرگ",
"Header HTML - Tooltip": "کد head صفحه ورود برنامه خود را سفارشی کنید", "Header HTML - Tooltip": "کد head صفحه ورود برنامه خود را سفارشی کنید",
"Incremental": "افزایشی", "Incremental": "افزایشی",
"Inline": "Inline",
"Input": "ورودی", "Input": "ورودی",
"Internet-Only": "Internet-Only", "Internet-Only": "Internet-Only",
"Invalid characters in application name": "Invalid characters in application name", "Invalid characters in application name": "Invalid characters in application name",
@@ -95,6 +96,7 @@
"Please input your application!": "لطفاً برنامه خود را وارد کنید!", "Please input your application!": "لطفاً برنامه خود را وارد کنید!",
"Please input your organization!": "لطفاً سازمان خود را وارد کنید!", "Please input your organization!": "لطفاً سازمان خود را وارد کنید!",
"Please select a HTML file": "لطفاً یک فایل HTML انتخاب کنید", "Please select a HTML file": "لطفاً یک فایل HTML انتخاب کنید",
"Pop up": "Pop up",
"Random": "تصادفی", "Random": "تصادفی",
"Real name": "نام واقعی", "Real name": "نام واقعی",
"Redirect URL": "آدرس بازگشت", "Redirect URL": "آدرس بازگشت",
@@ -295,6 +297,7 @@
"Failed to save": "عدم موفقیت در ذخیره", "Failed to save": "عدم موفقیت در ذخیره",
"Failed to sync": "عدم موفقیت در همگام‌سازی", "Failed to sync": "عدم موفقیت در همگام‌سازی",
"Failed to verify": "عدم موفقیت در تأیید", "Failed to verify": "عدم موفقیت در تأیید",
"False": "False",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "آدرس آیکون Favicon استفاده شده در تمام صفحات Casdoor سازمان", "Favicon - Tooltip": "آدرس آیکون Favicon استفاده شده در تمام صفحات Casdoor سازمان",
"First name": "نام", "First name": "نام",
@@ -444,6 +447,7 @@
"Tokens": "توکن‌ها", "Tokens": "توکن‌ها",
"Tour": "Tour", "Tour": "Tour",
"Transactions": "تراکنش‌ها", "Transactions": "تراکنش‌ها",
"True": "True",
"Type": "نوع", "Type": "نوع",
"Type - Tooltip": "نوع - راهنمای ابزار", "Type - Tooltip": "نوع - راهنمای ابزار",
"URL": "آدرس", "URL": "آدرس",
@@ -568,6 +572,7 @@
"Please select an organization to sign in": "لطفاً یک سازمان برای ورود انتخاب کنید", "Please select an organization to sign in": "لطفاً یک سازمان برای ورود انتخاب کنید",
"Please type an organization to sign in": "لطفاً یک سازمان برای ورود تایپ کنید", "Please type an organization to sign in": "لطفاً یک سازمان برای ورود تایپ کنید",
"Redirecting, please wait.": "در حال هدایت، لطفاً صبر کنید.", "Redirecting, please wait.": "در حال هدایت، لطفاً صبر کنید.",
"Refresh": "Refresh",
"Sign In": "ورود", "Sign In": "ورود",
"Sign in with Face ID": "ورود با شناسه چهره", "Sign in with Face ID": "ورود با شناسه چهره",
"Sign in with WebAuthn": "ورود با WebAuthn", "Sign in with WebAuthn": "ورود با WebAuthn",
@@ -581,6 +586,7 @@
"The input is not valid phone number!": "ورودی شماره تلفن معتبر نیست!", "The input is not valid phone number!": "ورودی شماره تلفن معتبر نیست!",
"To access": "برای دسترسی", "To access": "برای دسترسی",
"Verification code": "کد تأیید", "Verification code": "کد تأیید",
"WeChat": "WeChat",
"WebAuthn": "WebAuthn", "WebAuthn": "WebAuthn",
"sign up now": "ثبت‌نام کنید", "sign up now": "ثبت‌نام کنید",
"username, Email or phone": "نام کاربری، ایمیل یا تلفن" "username, Email or phone": "نام کاربری، ایمیل یا تلفن"
@@ -988,6 +994,8 @@
"Use WeChat Media Platform in PC - Tooltip": "آیا اجازه اسکن کد QR پلتفرم رسانه WeChat برای ورود داده شود", "Use WeChat Media Platform in PC - Tooltip": "آیا اجازه اسکن کد QR پلتفرم رسانه WeChat برای ورود داده شود",
"Use WeChat Media Platform to login": "استفاده از پلتفرم رسانه WeChat برای ورود", "Use WeChat Media Platform to login": "استفاده از پلتفرم رسانه WeChat برای ورود",
"Use WeChat Open Platform to login": "استفاده از پلتفرم باز WeChat برای ورود", "Use WeChat Open Platform to login": "استفاده از پلتفرم باز WeChat برای ورود",
"Use global endpoint": "Use global endpoint",
"Use global endpoint - Tooltip": "Use global endpoint - Tooltip",
"Use id as name": "Use id as name", "Use id as name": "Use id as name",
"Use id as name - Tooltip": "Use id as user's name", "Use id as name - Tooltip": "Use id as user's name",
"User flow": "جریان کاربر", "User flow": "جریان کاربر",

View File

@@ -75,6 +75,7 @@
"Header HTML - Edit": "Header HTML - Edit", "Header HTML - Edit": "Header HTML - Edit",
"Header HTML - Tooltip": "Custom the head tag of your application entry page", "Header HTML - Tooltip": "Custom the head tag of your application entry page",
"Incremental": "Incremental", "Incremental": "Incremental",
"Inline": "Inline",
"Input": "Input", "Input": "Input",
"Internet-Only": "Internet-Only", "Internet-Only": "Internet-Only",
"Invalid characters in application name": "Invalid characters in application name", "Invalid characters in application name": "Invalid characters in application name",
@@ -95,6 +96,7 @@
"Please input your application!": "Please input your application!", "Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!", "Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Please select a HTML file", "Please select a HTML file": "Please select a HTML file",
"Pop up": "Pop up",
"Random": "Random", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Redirect URL", "Redirect URL": "Redirect URL",
@@ -295,6 +297,7 @@
"Failed to save": "Failed to save", "Failed to save": "Failed to save",
"Failed to sync": "Failed to sync", "Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"False": "False",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization", "Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
"First name": "First name", "First name": "First name",
@@ -444,6 +447,7 @@
"Tokens": "Tokens", "Tokens": "Tokens",
"Tour": "Tour", "Tour": "Tour",
"Transactions": "Transactions", "Transactions": "Transactions",
"True": "True",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Type - Tooltip", "Type - Tooltip": "Type - Tooltip",
"URL": "URL", "URL": "URL",
@@ -568,6 +572,7 @@
"Please select an organization to sign in": "Please select an organization to sign in", "Please select an organization to sign in": "Please select an organization to sign in",
"Please type an organization to sign in": "Please type an organization to sign in", "Please type an organization to sign in": "Please type an organization to sign in",
"Redirecting, please wait.": "Redirecting, please wait.", "Redirecting, please wait.": "Redirecting, please wait.",
"Refresh": "Refresh",
"Sign In": "Sign In", "Sign In": "Sign In",
"Sign in with Face ID": "Sign in with Face ID", "Sign in with Face ID": "Sign in with Face ID",
"Sign in with WebAuthn": "Sign in with WebAuthn", "Sign in with WebAuthn": "Sign in with WebAuthn",
@@ -581,6 +586,7 @@
"The input is not valid phone number!": "The input is not valid phone number!", "The input is not valid phone number!": "The input is not valid phone number!",
"To access": "To access", "To access": "To access",
"Verification code": "Verification code", "Verification code": "Verification code",
"WeChat": "WeChat",
"WebAuthn": "WebAuthn", "WebAuthn": "WebAuthn",
"sign up now": "sign up now", "sign up now": "sign up now",
"username, Email or phone": "username, Email or phone" "username, Email or phone": "username, Email or phone"
@@ -988,6 +994,8 @@
"Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login", "Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login",
"Use WeChat Media Platform to login": "Use WeChat Media Platform to login", "Use WeChat Media Platform to login": "Use WeChat Media Platform to login",
"Use WeChat Open Platform to login": "Use WeChat Open Platform to login", "Use WeChat Open Platform to login": "Use WeChat Open Platform to login",
"Use global endpoint": "Use global endpoint",
"Use global endpoint - Tooltip": "Use global endpoint - Tooltip",
"Use id as name": "Use id as name", "Use id as name": "Use id as name",
"Use id as name - Tooltip": "Use id as user's name", "Use id as name - Tooltip": "Use id as user's name",
"User flow": "User flow", "User flow": "User flow",

View File

@@ -75,6 +75,7 @@
"Header HTML - Edit": "Header HTML - Edit", "Header HTML - Edit": "Header HTML - Edit",
"Header HTML - Tooltip": "Custom the head tag of your application entry page", "Header HTML - Tooltip": "Custom the head tag of your application entry page",
"Incremental": "Incrémentale", "Incremental": "Incrémentale",
"Inline": "Inline",
"Input": "Saisie", "Input": "Saisie",
"Internet-Only": "Internet-Only", "Internet-Only": "Internet-Only",
"Invalid characters in application name": "Invalid characters in application name", "Invalid characters in application name": "Invalid characters in application name",
@@ -95,6 +96,7 @@
"Please input your application!": "Veuillez saisir votre application !", "Please input your application!": "Veuillez saisir votre application !",
"Please input your organization!": "Veuillez saisir votre organisation !", "Please input your organization!": "Veuillez saisir votre organisation !",
"Please select a HTML file": "Veuillez sélectionner un fichier HTML", "Please select a HTML file": "Veuillez sélectionner un fichier HTML",
"Pop up": "Pop up",
"Random": "Aléatoire", "Random": "Aléatoire",
"Real name": "Nom complet", "Real name": "Nom complet",
"Redirect URL": "URL de redirection", "Redirect URL": "URL de redirection",
@@ -295,6 +297,7 @@
"Failed to save": "Échec de sauvegarde", "Failed to save": "Échec de sauvegarde",
"Failed to sync": "Failed to sync", "Failed to sync": "Failed to sync",
"Failed to verify": "Échec de la vérification", "Failed to verify": "Échec de la vérification",
"False": "False",
"Favicon": "Icône du site", "Favicon": "Icône du site",
"Favicon - Tooltip": "L'URL de l'icône « favicon » utilisée dans toutes les pages Casdoor de l'organisation", "Favicon - Tooltip": "L'URL de l'icône « favicon » utilisée dans toutes les pages Casdoor de l'organisation",
"First name": "Prénom", "First name": "Prénom",
@@ -444,6 +447,7 @@
"Tokens": "Jetons", "Tokens": "Jetons",
"Tour": "Tour", "Tour": "Tour",
"Transactions": "Transactions", "Transactions": "Transactions",
"True": "True",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Type - Infobulle", "Type - Tooltip": "Type - Infobulle",
"URL": "URL", "URL": "URL",
@@ -568,6 +572,7 @@
"Please select an organization to sign in": "Veuillez choisir une organisation pour vous connecter", "Please select an organization to sign in": "Veuillez choisir une organisation pour vous connecter",
"Please type an organization to sign in": "Veuillez entrer une organisation pour vous connecter", "Please type an organization to sign in": "Veuillez entrer une organisation pour vous connecter",
"Redirecting, please wait.": "Redirection en cours, veuillez patienter.", "Redirecting, please wait.": "Redirection en cours, veuillez patienter.",
"Refresh": "Refresh",
"Sign In": "Se connecter", "Sign In": "Se connecter",
"Sign in with Face ID": "Sign in with Face ID", "Sign in with Face ID": "Sign in with Face ID",
"Sign in with WebAuthn": "Connectez-vous avec WebAuthn", "Sign in with WebAuthn": "Connectez-vous avec WebAuthn",
@@ -581,6 +586,7 @@
"The input is not valid phone number!": "The input is not valid phone number!", "The input is not valid phone number!": "The input is not valid phone number!",
"To access": "Pour accéder à", "To access": "Pour accéder à",
"Verification code": "Code de vérification", "Verification code": "Code de vérification",
"WeChat": "WeChat",
"WebAuthn": "WebAuthn", "WebAuthn": "WebAuthn",
"sign up now": "Inscrivez-vous maintenant", "sign up now": "Inscrivez-vous maintenant",
"username, Email or phone": "identifiant, adresse e-mail ou téléphone" "username, Email or phone": "identifiant, adresse e-mail ou téléphone"
@@ -988,6 +994,8 @@
"Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login", "Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login",
"Use WeChat Media Platform to login": "Use WeChat Media Platform to login", "Use WeChat Media Platform to login": "Use WeChat Media Platform to login",
"Use WeChat Open Platform to login": "Use WeChat Open Platform to login", "Use WeChat Open Platform to login": "Use WeChat Open Platform to login",
"Use global endpoint": "Use global endpoint",
"Use global endpoint - Tooltip": "Use global endpoint - Tooltip",
"Use id as name": "Use id as name", "Use id as name": "Use id as name",
"Use id as name - Tooltip": "Use id as user's name", "Use id as name - Tooltip": "Use id as user's name",
"User flow": "User flow", "User flow": "User flow",

View File

@@ -75,6 +75,7 @@
"Header HTML - Edit": "Header HTML - Edit", "Header HTML - Edit": "Header HTML - Edit",
"Header HTML - Tooltip": "Custom the head tag of your application entry page", "Header HTML - Tooltip": "Custom the head tag of your application entry page",
"Incremental": "Incremental", "Incremental": "Incremental",
"Inline": "Inline",
"Input": "Input", "Input": "Input",
"Internet-Only": "Internet-Only", "Internet-Only": "Internet-Only",
"Invalid characters in application name": "Invalid characters in application name", "Invalid characters in application name": "Invalid characters in application name",
@@ -95,6 +96,7 @@
"Please input your application!": "Please input your application!", "Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!", "Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Please select a HTML file", "Please select a HTML file": "Please select a HTML file",
"Pop up": "Pop up",
"Random": "Random", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Redirect URL", "Redirect URL": "Redirect URL",
@@ -295,6 +297,7 @@
"Failed to save": "Failed to save", "Failed to save": "Failed to save",
"Failed to sync": "Failed to sync", "Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"False": "False",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization", "Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
"First name": "First name", "First name": "First name",
@@ -444,6 +447,7 @@
"Tokens": "Tokens", "Tokens": "Tokens",
"Tour": "Tour", "Tour": "Tour",
"Transactions": "Transactions", "Transactions": "Transactions",
"True": "True",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Type - Tooltip", "Type - Tooltip": "Type - Tooltip",
"URL": "URL", "URL": "URL",
@@ -568,6 +572,7 @@
"Please select an organization to sign in": "Please select an organization to sign in", "Please select an organization to sign in": "Please select an organization to sign in",
"Please type an organization to sign in": "Please type an organization to sign in", "Please type an organization to sign in": "Please type an organization to sign in",
"Redirecting, please wait.": "Redirecting, please wait.", "Redirecting, please wait.": "Redirecting, please wait.",
"Refresh": "Refresh",
"Sign In": "Sign In", "Sign In": "Sign In",
"Sign in with Face ID": "Sign in with Face ID", "Sign in with Face ID": "Sign in with Face ID",
"Sign in with WebAuthn": "Sign in with WebAuthn", "Sign in with WebAuthn": "Sign in with WebAuthn",
@@ -581,6 +586,7 @@
"The input is not valid phone number!": "The input is not valid phone number!", "The input is not valid phone number!": "The input is not valid phone number!",
"To access": "To access", "To access": "To access",
"Verification code": "Verification code", "Verification code": "Verification code",
"WeChat": "WeChat",
"WebAuthn": "WebAuthn", "WebAuthn": "WebAuthn",
"sign up now": "sign up now", "sign up now": "sign up now",
"username, Email or phone": "username, Email or phone" "username, Email or phone": "username, Email or phone"
@@ -988,6 +994,8 @@
"Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login", "Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login",
"Use WeChat Media Platform to login": "Use WeChat Media Platform to login", "Use WeChat Media Platform to login": "Use WeChat Media Platform to login",
"Use WeChat Open Platform to login": "Use WeChat Open Platform to login", "Use WeChat Open Platform to login": "Use WeChat Open Platform to login",
"Use global endpoint": "Use global endpoint",
"Use global endpoint - Tooltip": "Use global endpoint - Tooltip",
"Use id as name": "Use id as name", "Use id as name": "Use id as name",
"Use id as name - Tooltip": "Use id as user's name", "Use id as name - Tooltip": "Use id as user's name",
"User flow": "User flow", "User flow": "User flow",

View File

@@ -75,6 +75,7 @@
"Header HTML - Edit": "Header HTML - Edit", "Header HTML - Edit": "Header HTML - Edit",
"Header HTML - Tooltip": "Custom the head tag of your application entry page", "Header HTML - Tooltip": "Custom the head tag of your application entry page",
"Incremental": "Incremental", "Incremental": "Incremental",
"Inline": "Inline",
"Input": "Input", "Input": "Input",
"Internet-Only": "Internet-Only", "Internet-Only": "Internet-Only",
"Invalid characters in application name": "Invalid characters in application name", "Invalid characters in application name": "Invalid characters in application name",
@@ -95,6 +96,7 @@
"Please input your application!": "Silakan masukkan aplikasi Anda!", "Please input your application!": "Silakan masukkan aplikasi Anda!",
"Please input your organization!": "Silakan masukkan organisasi Anda!", "Please input your organization!": "Silakan masukkan organisasi Anda!",
"Please select a HTML file": "Silahkan pilih file HTML", "Please select a HTML file": "Silahkan pilih file HTML",
"Pop up": "Pop up",
"Random": "Random", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Mengalihkan URL", "Redirect URL": "Mengalihkan URL",
@@ -295,6 +297,7 @@
"Failed to save": "Gagal menyimpan", "Failed to save": "Gagal menyimpan",
"Failed to sync": "Failed to sync", "Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"False": "False",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "URL ikon Favicon yang digunakan di semua halaman Casdoor organisasi", "Favicon - Tooltip": "URL ikon Favicon yang digunakan di semua halaman Casdoor organisasi",
"First name": "Nama depan", "First name": "Nama depan",
@@ -444,6 +447,7 @@
"Tokens": "Token-token", "Tokens": "Token-token",
"Tour": "Tour", "Tour": "Tour",
"Transactions": "Transactions", "Transactions": "Transactions",
"True": "True",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Type - Tooltip", "Type - Tooltip": "Type - Tooltip",
"URL": "URL", "URL": "URL",
@@ -568,6 +572,7 @@
"Please select an organization to sign in": "Please select an organization to sign in", "Please select an organization to sign in": "Please select an organization to sign in",
"Please type an organization to sign in": "Please type an organization to sign in", "Please type an organization to sign in": "Please type an organization to sign in",
"Redirecting, please wait.": "Mengalihkan, harap tunggu.", "Redirecting, please wait.": "Mengalihkan, harap tunggu.",
"Refresh": "Refresh",
"Sign In": "Masuk", "Sign In": "Masuk",
"Sign in with Face ID": "Sign in with Face ID", "Sign in with Face ID": "Sign in with Face ID",
"Sign in with WebAuthn": "Masuk dengan WebAuthn", "Sign in with WebAuthn": "Masuk dengan WebAuthn",
@@ -581,6 +586,7 @@
"The input is not valid phone number!": "The input is not valid phone number!", "The input is not valid phone number!": "The input is not valid phone number!",
"To access": "Untuk mengakses", "To access": "Untuk mengakses",
"Verification code": "Kode verifikasi", "Verification code": "Kode verifikasi",
"WeChat": "WeChat",
"WebAuthn": "WebAuthn", "WebAuthn": "WebAuthn",
"sign up now": "Daftar sekarang", "sign up now": "Daftar sekarang",
"username, Email or phone": "nama pengguna, Email atau nomor telepon" "username, Email or phone": "nama pengguna, Email atau nomor telepon"
@@ -988,6 +994,8 @@
"Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login", "Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login",
"Use WeChat Media Platform to login": "Use WeChat Media Platform to login", "Use WeChat Media Platform to login": "Use WeChat Media Platform to login",
"Use WeChat Open Platform to login": "Use WeChat Open Platform to login", "Use WeChat Open Platform to login": "Use WeChat Open Platform to login",
"Use global endpoint": "Use global endpoint",
"Use global endpoint - Tooltip": "Use global endpoint - Tooltip",
"Use id as name": "Use id as name", "Use id as name": "Use id as name",
"Use id as name - Tooltip": "Use id as user's name", "Use id as name - Tooltip": "Use id as user's name",
"User flow": "User flow", "User flow": "User flow",

View File

@@ -75,6 +75,7 @@
"Header HTML - Edit": "Header HTML - Edit", "Header HTML - Edit": "Header HTML - Edit",
"Header HTML - Tooltip": "Custom the head tag of your application entry page", "Header HTML - Tooltip": "Custom the head tag of your application entry page",
"Incremental": "Incremental", "Incremental": "Incremental",
"Inline": "Inline",
"Input": "Input", "Input": "Input",
"Internet-Only": "Internet-Only", "Internet-Only": "Internet-Only",
"Invalid characters in application name": "Invalid characters in application name", "Invalid characters in application name": "Invalid characters in application name",
@@ -95,6 +96,7 @@
"Please input your application!": "Please input your application!", "Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!", "Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Please select a HTML file", "Please select a HTML file": "Please select a HTML file",
"Pop up": "Pop up",
"Random": "Random", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Redirect URL", "Redirect URL": "Redirect URL",
@@ -295,6 +297,7 @@
"Failed to save": "Failed to save", "Failed to save": "Failed to save",
"Failed to sync": "Failed to sync", "Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"False": "False",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization", "Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
"First name": "First name", "First name": "First name",
@@ -444,6 +447,7 @@
"Tokens": "Tokens", "Tokens": "Tokens",
"Tour": "Tour", "Tour": "Tour",
"Transactions": "Transactions", "Transactions": "Transactions",
"True": "True",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Type - Tooltip", "Type - Tooltip": "Type - Tooltip",
"URL": "URL", "URL": "URL",
@@ -568,6 +572,7 @@
"Please select an organization to sign in": "Please select an organization to sign in", "Please select an organization to sign in": "Please select an organization to sign in",
"Please type an organization to sign in": "Please type an organization to sign in", "Please type an organization to sign in": "Please type an organization to sign in",
"Redirecting, please wait.": "Redirecting, please wait.", "Redirecting, please wait.": "Redirecting, please wait.",
"Refresh": "Refresh",
"Sign In": "Sign In", "Sign In": "Sign In",
"Sign in with Face ID": "Sign in with Face ID", "Sign in with Face ID": "Sign in with Face ID",
"Sign in with WebAuthn": "Sign in with WebAuthn", "Sign in with WebAuthn": "Sign in with WebAuthn",
@@ -581,6 +586,7 @@
"The input is not valid phone number!": "The input is not valid phone number!", "The input is not valid phone number!": "The input is not valid phone number!",
"To access": "To access", "To access": "To access",
"Verification code": "Verification code", "Verification code": "Verification code",
"WeChat": "WeChat",
"WebAuthn": "WebAuthn", "WebAuthn": "WebAuthn",
"sign up now": "sign up now", "sign up now": "sign up now",
"username, Email or phone": "username, Email or phone" "username, Email or phone": "username, Email or phone"
@@ -988,6 +994,8 @@
"Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login", "Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login",
"Use WeChat Media Platform to login": "Use WeChat Media Platform to login", "Use WeChat Media Platform to login": "Use WeChat Media Platform to login",
"Use WeChat Open Platform to login": "Use WeChat Open Platform to login", "Use WeChat Open Platform to login": "Use WeChat Open Platform to login",
"Use global endpoint": "Use global endpoint",
"Use global endpoint - Tooltip": "Use global endpoint - Tooltip",
"Use id as name": "Use id as name", "Use id as name": "Use id as name",
"Use id as name - Tooltip": "Use id as user's name", "Use id as name - Tooltip": "Use id as user's name",
"User flow": "User flow", "User flow": "User flow",

View File

@@ -75,6 +75,7 @@
"Header HTML - Edit": "Header HTML - Edit", "Header HTML - Edit": "Header HTML - Edit",
"Header HTML - Tooltip": "Custom the head tag of your application entry page", "Header HTML - Tooltip": "Custom the head tag of your application entry page",
"Incremental": "Incremental", "Incremental": "Incremental",
"Inline": "Inline",
"Input": "Input", "Input": "Input",
"Internet-Only": "Internet-Only", "Internet-Only": "Internet-Only",
"Invalid characters in application name": "Invalid characters in application name", "Invalid characters in application name": "Invalid characters in application name",
@@ -95,6 +96,7 @@
"Please input your application!": "あなたの申請を入力してください!", "Please input your application!": "あなたの申請を入力してください!",
"Please input your organization!": "あなたの組織を入力してください!", "Please input your organization!": "あなたの組織を入力してください!",
"Please select a HTML file": "HTMLファイルを選択してください", "Please select a HTML file": "HTMLファイルを選択してください",
"Pop up": "Pop up",
"Random": "Random", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "リダイレクトURL", "Redirect URL": "リダイレクトURL",
@@ -295,6 +297,7 @@
"Failed to save": "保存に失敗しました", "Failed to save": "保存に失敗しました",
"Failed to sync": "Failed to sync", "Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"False": "False",
"Favicon": "ファビコン", "Favicon": "ファビコン",
"Favicon - Tooltip": "組織のすべてのCasdoorページに使用されるFaviconアイコンのURL", "Favicon - Tooltip": "組織のすべてのCasdoorページに使用されるFaviconアイコンのURL",
"First name": "名前", "First name": "名前",
@@ -444,6 +447,7 @@
"Tokens": "トークン", "Tokens": "トークン",
"Tour": "Tour", "Tour": "Tour",
"Transactions": "Transactions", "Transactions": "Transactions",
"True": "True",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Type - Tooltip", "Type - Tooltip": "Type - Tooltip",
"URL": "URL", "URL": "URL",
@@ -568,6 +572,7 @@
"Please select an organization to sign in": "Please select an organization to sign in", "Please select an organization to sign in": "Please select an organization to sign in",
"Please type an organization to sign in": "Please type an organization to sign in", "Please type an organization to sign in": "Please type an organization to sign in",
"Redirecting, please wait.": "リダイレクト中、お待ちください。", "Redirecting, please wait.": "リダイレクト中、お待ちください。",
"Refresh": "Refresh",
"Sign In": "サインイン", "Sign In": "サインイン",
"Sign in with Face ID": "Sign in with Face ID", "Sign in with Face ID": "Sign in with Face ID",
"Sign in with WebAuthn": "WebAuthnでサインインしてください", "Sign in with WebAuthn": "WebAuthnでサインインしてください",
@@ -581,6 +586,7 @@
"The input is not valid phone number!": "The input is not valid phone number!", "The input is not valid phone number!": "The input is not valid phone number!",
"To access": "アクセスする", "To access": "アクセスする",
"Verification code": "確認コード", "Verification code": "確認コード",
"WeChat": "WeChat",
"WebAuthn": "WebAuthn", "WebAuthn": "WebAuthn",
"sign up now": "今すぐサインアップ", "sign up now": "今すぐサインアップ",
"username, Email or phone": "ユーザー名、メールアドレス、または電話番号" "username, Email or phone": "ユーザー名、メールアドレス、または電話番号"
@@ -988,6 +994,8 @@
"Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login", "Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login",
"Use WeChat Media Platform to login": "Use WeChat Media Platform to login", "Use WeChat Media Platform to login": "Use WeChat Media Platform to login",
"Use WeChat Open Platform to login": "Use WeChat Open Platform to login", "Use WeChat Open Platform to login": "Use WeChat Open Platform to login",
"Use global endpoint": "Use global endpoint",
"Use global endpoint - Tooltip": "Use global endpoint - Tooltip",
"Use id as name": "Use id as name", "Use id as name": "Use id as name",
"Use id as name - Tooltip": "Use id as user's name", "Use id as name - Tooltip": "Use id as user's name",
"User flow": "User flow", "User flow": "User flow",

View File

@@ -75,6 +75,7 @@
"Header HTML - Edit": "Header HTML - Edit", "Header HTML - Edit": "Header HTML - Edit",
"Header HTML - Tooltip": "Custom the head tag of your application entry page", "Header HTML - Tooltip": "Custom the head tag of your application entry page",
"Incremental": "Incremental", "Incremental": "Incremental",
"Inline": "Inline",
"Input": "Input", "Input": "Input",
"Internet-Only": "Internet-Only", "Internet-Only": "Internet-Only",
"Invalid characters in application name": "Invalid characters in application name", "Invalid characters in application name": "Invalid characters in application name",
@@ -95,6 +96,7 @@
"Please input your application!": "Please input your application!", "Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!", "Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Please select a HTML file", "Please select a HTML file": "Please select a HTML file",
"Pop up": "Pop up",
"Random": "Random", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Redirect URL", "Redirect URL": "Redirect URL",
@@ -295,6 +297,7 @@
"Failed to save": "Failed to save", "Failed to save": "Failed to save",
"Failed to sync": "Failed to sync", "Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"False": "False",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization", "Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
"First name": "First name", "First name": "First name",
@@ -444,6 +447,7 @@
"Tokens": "Tokens", "Tokens": "Tokens",
"Tour": "Tour", "Tour": "Tour",
"Transactions": "Transactions", "Transactions": "Transactions",
"True": "True",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Type - Tooltip", "Type - Tooltip": "Type - Tooltip",
"URL": "URL", "URL": "URL",
@@ -568,6 +572,7 @@
"Please select an organization to sign in": "Please select an organization to sign in", "Please select an organization to sign in": "Please select an organization to sign in",
"Please type an organization to sign in": "Please type an organization to sign in", "Please type an organization to sign in": "Please type an organization to sign in",
"Redirecting, please wait.": "Redirecting, please wait.", "Redirecting, please wait.": "Redirecting, please wait.",
"Refresh": "Refresh",
"Sign In": "Sign In", "Sign In": "Sign In",
"Sign in with Face ID": "Sign in with Face ID", "Sign in with Face ID": "Sign in with Face ID",
"Sign in with WebAuthn": "Sign in with WebAuthn", "Sign in with WebAuthn": "Sign in with WebAuthn",
@@ -581,6 +586,7 @@
"The input is not valid phone number!": "The input is not valid phone number!", "The input is not valid phone number!": "The input is not valid phone number!",
"To access": "To access", "To access": "To access",
"Verification code": "Verification code", "Verification code": "Verification code",
"WeChat": "WeChat",
"WebAuthn": "WebAuthn", "WebAuthn": "WebAuthn",
"sign up now": "sign up now", "sign up now": "sign up now",
"username, Email or phone": "username, Email or phone" "username, Email or phone": "username, Email or phone"
@@ -988,6 +994,8 @@
"Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login", "Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login",
"Use WeChat Media Platform to login": "Use WeChat Media Platform to login", "Use WeChat Media Platform to login": "Use WeChat Media Platform to login",
"Use WeChat Open Platform to login": "Use WeChat Open Platform to login", "Use WeChat Open Platform to login": "Use WeChat Open Platform to login",
"Use global endpoint": "Use global endpoint",
"Use global endpoint - Tooltip": "Use global endpoint - Tooltip",
"Use id as name": "Use id as name", "Use id as name": "Use id as name",
"Use id as name - Tooltip": "Use id as user's name", "Use id as name - Tooltip": "Use id as user's name",
"User flow": "User flow", "User flow": "User flow",

View File

@@ -75,6 +75,7 @@
"Header HTML - Edit": "Header HTML - Edit", "Header HTML - Edit": "Header HTML - Edit",
"Header HTML - Tooltip": "Custom the head tag of your application entry page", "Header HTML - Tooltip": "Custom the head tag of your application entry page",
"Incremental": "Incremental", "Incremental": "Incremental",
"Inline": "Inline",
"Input": "Input", "Input": "Input",
"Internet-Only": "Internet-Only", "Internet-Only": "Internet-Only",
"Invalid characters in application name": "Invalid characters in application name", "Invalid characters in application name": "Invalid characters in application name",
@@ -95,6 +96,7 @@
"Please input your application!": "당신의 신청서를 입력해주세요!", "Please input your application!": "당신의 신청서를 입력해주세요!",
"Please input your organization!": "귀하의 조직을 입력해 주세요!", "Please input your organization!": "귀하의 조직을 입력해 주세요!",
"Please select a HTML file": "HTML 파일을 선택해 주세요", "Please select a HTML file": "HTML 파일을 선택해 주세요",
"Pop up": "Pop up",
"Random": "Random", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "리디렉트 URL", "Redirect URL": "리디렉트 URL",
@@ -295,6 +297,7 @@
"Failed to save": "저장에 실패했습니다", "Failed to save": "저장에 실패했습니다",
"Failed to sync": "Failed to sync", "Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"False": "False",
"Favicon": "파비콘", "Favicon": "파비콘",
"Favicon - Tooltip": "조직의 모든 Casdoor 페이지에서 사용되는 Favicon 아이콘 URL", "Favicon - Tooltip": "조직의 모든 Casdoor 페이지에서 사용되는 Favicon 아이콘 URL",
"First name": "이름", "First name": "이름",
@@ -444,6 +447,7 @@
"Tokens": "토큰", "Tokens": "토큰",
"Tour": "Tour", "Tour": "Tour",
"Transactions": "Transactions", "Transactions": "Transactions",
"True": "True",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Type - Tooltip", "Type - Tooltip": "Type - Tooltip",
"URL": "URL", "URL": "URL",
@@ -568,6 +572,7 @@
"Please select an organization to sign in": "Please select an organization to sign in", "Please select an organization to sign in": "Please select an organization to sign in",
"Please type an organization to sign in": "Please type an organization to sign in", "Please type an organization to sign in": "Please type an organization to sign in",
"Redirecting, please wait.": "리디렉팅 중입니다. 잠시 기다려주세요.", "Redirecting, please wait.": "리디렉팅 중입니다. 잠시 기다려주세요.",
"Refresh": "Refresh",
"Sign In": "로그인", "Sign In": "로그인",
"Sign in with Face ID": "Sign in with Face ID", "Sign in with Face ID": "Sign in with Face ID",
"Sign in with WebAuthn": "WebAuthn으로 로그인하세요", "Sign in with WebAuthn": "WebAuthn으로 로그인하세요",
@@ -581,6 +586,7 @@
"The input is not valid phone number!": "The input is not valid phone number!", "The input is not valid phone number!": "The input is not valid phone number!",
"To access": "접근하다", "To access": "접근하다",
"Verification code": "인증 코드", "Verification code": "인증 코드",
"WeChat": "WeChat",
"WebAuthn": "WebAuthn", "WebAuthn": "WebAuthn",
"sign up now": "지금 가입하세요", "sign up now": "지금 가입하세요",
"username, Email or phone": "유저명, 이메일 또는 전화번호" "username, Email or phone": "유저명, 이메일 또는 전화번호"
@@ -988,6 +994,8 @@
"Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login", "Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login",
"Use WeChat Media Platform to login": "Use WeChat Media Platform to login", "Use WeChat Media Platform to login": "Use WeChat Media Platform to login",
"Use WeChat Open Platform to login": "Use WeChat Open Platform to login", "Use WeChat Open Platform to login": "Use WeChat Open Platform to login",
"Use global endpoint": "Use global endpoint",
"Use global endpoint - Tooltip": "Use global endpoint - Tooltip",
"Use id as name": "Use id as name", "Use id as name": "Use id as name",
"Use id as name - Tooltip": "Use id as user's name", "Use id as name - Tooltip": "Use id as user's name",
"User flow": "User flow", "User flow": "User flow",

View File

@@ -75,6 +75,7 @@
"Header HTML - Edit": "Header HTML - Edit", "Header HTML - Edit": "Header HTML - Edit",
"Header HTML - Tooltip": "Custom the head tag of your application entry page", "Header HTML - Tooltip": "Custom the head tag of your application entry page",
"Incremental": "Incremental", "Incremental": "Incremental",
"Inline": "Inline",
"Input": "Input", "Input": "Input",
"Internet-Only": "Internet-Only", "Internet-Only": "Internet-Only",
"Invalid characters in application name": "Invalid characters in application name", "Invalid characters in application name": "Invalid characters in application name",
@@ -95,6 +96,7 @@
"Please input your application!": "Please input your application!", "Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!", "Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Please select a HTML file", "Please select a HTML file": "Please select a HTML file",
"Pop up": "Pop up",
"Random": "Random", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Redirect URL", "Redirect URL": "Redirect URL",
@@ -295,6 +297,7 @@
"Failed to save": "Failed to save", "Failed to save": "Failed to save",
"Failed to sync": "Failed to sync", "Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"False": "False",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization", "Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
"First name": "First name", "First name": "First name",
@@ -444,6 +447,7 @@
"Tokens": "Tokens", "Tokens": "Tokens",
"Tour": "Tour", "Tour": "Tour",
"Transactions": "Transactions", "Transactions": "Transactions",
"True": "True",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Type - Tooltip", "Type - Tooltip": "Type - Tooltip",
"URL": "URL", "URL": "URL",
@@ -568,6 +572,7 @@
"Please select an organization to sign in": "Please select an organization to sign in", "Please select an organization to sign in": "Please select an organization to sign in",
"Please type an organization to sign in": "Please type an organization to sign in", "Please type an organization to sign in": "Please type an organization to sign in",
"Redirecting, please wait.": "Redirecting, please wait.", "Redirecting, please wait.": "Redirecting, please wait.",
"Refresh": "Refresh",
"Sign In": "Sign In", "Sign In": "Sign In",
"Sign in with Face ID": "Sign in with Face ID", "Sign in with Face ID": "Sign in with Face ID",
"Sign in with WebAuthn": "Sign in with WebAuthn", "Sign in with WebAuthn": "Sign in with WebAuthn",
@@ -581,6 +586,7 @@
"The input is not valid phone number!": "The input is not valid phone number!", "The input is not valid phone number!": "The input is not valid phone number!",
"To access": "To access", "To access": "To access",
"Verification code": "Verification code", "Verification code": "Verification code",
"WeChat": "WeChat",
"WebAuthn": "WebAuthn", "WebAuthn": "WebAuthn",
"sign up now": "sign up now", "sign up now": "sign up now",
"username, Email or phone": "username, Email or phone" "username, Email or phone": "username, Email or phone"
@@ -988,6 +994,8 @@
"Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login", "Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login",
"Use WeChat Media Platform to login": "Use WeChat Media Platform to login", "Use WeChat Media Platform to login": "Use WeChat Media Platform to login",
"Use WeChat Open Platform to login": "Use WeChat Open Platform to login", "Use WeChat Open Platform to login": "Use WeChat Open Platform to login",
"Use global endpoint": "Use global endpoint",
"Use global endpoint - Tooltip": "Use global endpoint - Tooltip",
"Use id as name": "Use id as name", "Use id as name": "Use id as name",
"Use id as name - Tooltip": "Use id as user's name", "Use id as name - Tooltip": "Use id as user's name",
"User flow": "User flow", "User flow": "User flow",

View File

@@ -75,6 +75,7 @@
"Header HTML - Edit": "Header HTML - Edit", "Header HTML - Edit": "Header HTML - Edit",
"Header HTML - Tooltip": "Custom the head tag of your application entry page", "Header HTML - Tooltip": "Custom the head tag of your application entry page",
"Incremental": "Incremental", "Incremental": "Incremental",
"Inline": "Inline",
"Input": "Input", "Input": "Input",
"Internet-Only": "Internet-Only", "Internet-Only": "Internet-Only",
"Invalid characters in application name": "Invalid characters in application name", "Invalid characters in application name": "Invalid characters in application name",
@@ -95,6 +96,7 @@
"Please input your application!": "Please input your application!", "Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!", "Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Please select a HTML file", "Please select a HTML file": "Please select a HTML file",
"Pop up": "Pop up",
"Random": "Random", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Redirect URL", "Redirect URL": "Redirect URL",
@@ -295,6 +297,7 @@
"Failed to save": "Failed to save", "Failed to save": "Failed to save",
"Failed to sync": "Failed to sync", "Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"False": "False",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization", "Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
"First name": "First name", "First name": "First name",
@@ -444,6 +447,7 @@
"Tokens": "Tokens", "Tokens": "Tokens",
"Tour": "Tour", "Tour": "Tour",
"Transactions": "Transactions", "Transactions": "Transactions",
"True": "True",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Type - Tooltip", "Type - Tooltip": "Type - Tooltip",
"URL": "URL", "URL": "URL",
@@ -568,6 +572,7 @@
"Please select an organization to sign in": "Please select an organization to sign in", "Please select an organization to sign in": "Please select an organization to sign in",
"Please type an organization to sign in": "Please type an organization to sign in", "Please type an organization to sign in": "Please type an organization to sign in",
"Redirecting, please wait.": "Redirecting, please wait.", "Redirecting, please wait.": "Redirecting, please wait.",
"Refresh": "Refresh",
"Sign In": "Sign In", "Sign In": "Sign In",
"Sign in with Face ID": "Sign in with Face ID", "Sign in with Face ID": "Sign in with Face ID",
"Sign in with WebAuthn": "Sign in with WebAuthn", "Sign in with WebAuthn": "Sign in with WebAuthn",
@@ -581,6 +586,7 @@
"The input is not valid phone number!": "The input is not valid phone number!", "The input is not valid phone number!": "The input is not valid phone number!",
"To access": "To access", "To access": "To access",
"Verification code": "Verification code", "Verification code": "Verification code",
"WeChat": "WeChat",
"WebAuthn": "WebAuthn", "WebAuthn": "WebAuthn",
"sign up now": "sign up now", "sign up now": "sign up now",
"username, Email or phone": "username, Email or phone" "username, Email or phone": "username, Email or phone"
@@ -988,6 +994,8 @@
"Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login", "Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login",
"Use WeChat Media Platform to login": "Use WeChat Media Platform to login", "Use WeChat Media Platform to login": "Use WeChat Media Platform to login",
"Use WeChat Open Platform to login": "Use WeChat Open Platform to login", "Use WeChat Open Platform to login": "Use WeChat Open Platform to login",
"Use global endpoint": "Use global endpoint",
"Use global endpoint - Tooltip": "Use global endpoint - Tooltip",
"Use id as name": "Use id as name", "Use id as name": "Use id as name",
"Use id as name - Tooltip": "Use id as user's name", "Use id as name - Tooltip": "Use id as user's name",
"User flow": "User flow", "User flow": "User flow",

View File

@@ -75,6 +75,7 @@
"Header HTML - Edit": "Header HTML - Edit", "Header HTML - Edit": "Header HTML - Edit",
"Header HTML - Tooltip": "Custom the head tag of your application entry page", "Header HTML - Tooltip": "Custom the head tag of your application entry page",
"Incremental": "Incremental", "Incremental": "Incremental",
"Inline": "Inline",
"Input": "Input", "Input": "Input",
"Internet-Only": "Internet-Only", "Internet-Only": "Internet-Only",
"Invalid characters in application name": "Invalid characters in application name", "Invalid characters in application name": "Invalid characters in application name",
@@ -95,6 +96,7 @@
"Please input your application!": "Please input your application!", "Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!", "Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Please select a HTML file", "Please select a HTML file": "Please select a HTML file",
"Pop up": "Pop up",
"Random": "Random", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Redirect URL", "Redirect URL": "Redirect URL",
@@ -295,6 +297,7 @@
"Failed to save": "Failed to save", "Failed to save": "Failed to save",
"Failed to sync": "Failed to sync", "Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"False": "False",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization", "Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
"First name": "First name", "First name": "First name",
@@ -444,6 +447,7 @@
"Tokens": "Tokens", "Tokens": "Tokens",
"Tour": "Tour", "Tour": "Tour",
"Transactions": "Transactions", "Transactions": "Transactions",
"True": "True",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Type - Tooltip", "Type - Tooltip": "Type - Tooltip",
"URL": "URL", "URL": "URL",
@@ -568,6 +572,7 @@
"Please select an organization to sign in": "Please select an organization to sign in", "Please select an organization to sign in": "Please select an organization to sign in",
"Please type an organization to sign in": "Please type an organization to sign in", "Please type an organization to sign in": "Please type an organization to sign in",
"Redirecting, please wait.": "Redirecting, please wait.", "Redirecting, please wait.": "Redirecting, please wait.",
"Refresh": "Refresh",
"Sign In": "Sign In", "Sign In": "Sign In",
"Sign in with Face ID": "Sign in with Face ID", "Sign in with Face ID": "Sign in with Face ID",
"Sign in with WebAuthn": "Sign in with WebAuthn", "Sign in with WebAuthn": "Sign in with WebAuthn",
@@ -581,6 +586,7 @@
"The input is not valid phone number!": "The input is not valid phone number!", "The input is not valid phone number!": "The input is not valid phone number!",
"To access": "To access", "To access": "To access",
"Verification code": "Verification code", "Verification code": "Verification code",
"WeChat": "WeChat",
"WebAuthn": "WebAuthn", "WebAuthn": "WebAuthn",
"sign up now": "sign up now", "sign up now": "sign up now",
"username, Email or phone": "username, Email or phone" "username, Email or phone": "username, Email or phone"
@@ -988,6 +994,8 @@
"Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login", "Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login",
"Use WeChat Media Platform to login": "Use WeChat Media Platform to login", "Use WeChat Media Platform to login": "Use WeChat Media Platform to login",
"Use WeChat Open Platform to login": "Use WeChat Open Platform to login", "Use WeChat Open Platform to login": "Use WeChat Open Platform to login",
"Use global endpoint": "Use global endpoint",
"Use global endpoint - Tooltip": "Use global endpoint - Tooltip",
"Use id as name": "Use id as name", "Use id as name": "Use id as name",
"Use id as name - Tooltip": "Use id as user's name", "Use id as name - Tooltip": "Use id as user's name",
"User flow": "User flow", "User flow": "User flow",

View File

@@ -75,6 +75,7 @@
"Header HTML - Edit": "Header HTML - Edit", "Header HTML - Edit": "Header HTML - Edit",
"Header HTML - Tooltip": "Custom the head tag of your application entry page", "Header HTML - Tooltip": "Custom the head tag of your application entry page",
"Incremental": "Incremental", "Incremental": "Incremental",
"Inline": "Inline",
"Input": "Input", "Input": "Input",
"Internet-Only": "Internet-Only", "Internet-Only": "Internet-Only",
"Invalid characters in application name": "Invalid characters in application name", "Invalid characters in application name": "Invalid characters in application name",
@@ -95,6 +96,7 @@
"Please input your application!": "Por favor, insira o nome da sua aplicação!", "Please input your application!": "Por favor, insira o nome da sua aplicação!",
"Please input your organization!": "Por favor, insira o nome da sua organização!", "Please input your organization!": "Por favor, insira o nome da sua organização!",
"Please select a HTML file": "Por favor, selecione um arquivo HTML", "Please select a HTML file": "Por favor, selecione um arquivo HTML",
"Pop up": "Pop up",
"Random": "Aleatório", "Random": "Aleatório",
"Real name": "Nome real", "Real name": "Nome real",
"Redirect URL": "URL de redirecionamento", "Redirect URL": "URL de redirecionamento",
@@ -295,6 +297,7 @@
"Failed to save": "Falha ao salvar", "Failed to save": "Falha ao salvar",
"Failed to sync": "Falha ao sincronizar", "Failed to sync": "Falha ao sincronizar",
"Failed to verify": "Falha ao verificar", "Failed to verify": "Falha ao verificar",
"False": "False",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "URL do ícone de favicon usado em todas as páginas do Casdoor da organização", "Favicon - Tooltip": "URL do ícone de favicon usado em todas as páginas do Casdoor da organização",
"First name": "Nome", "First name": "Nome",
@@ -444,6 +447,7 @@
"Tokens": "Tokens", "Tokens": "Tokens",
"Tour": "Tour", "Tour": "Tour",
"Transactions": "Transactions", "Transactions": "Transactions",
"True": "True",
"Type": "Tipo", "Type": "Tipo",
"Type - Tooltip": "Type - Tooltip", "Type - Tooltip": "Type - Tooltip",
"URL": "URL", "URL": "URL",
@@ -568,6 +572,7 @@
"Please select an organization to sign in": "Please select an organization to sign in", "Please select an organization to sign in": "Please select an organization to sign in",
"Please type an organization to sign in": "Please type an organization to sign in", "Please type an organization to sign in": "Please type an organization to sign in",
"Redirecting, please wait.": "Redirecionando, por favor aguarde.", "Redirecting, please wait.": "Redirecionando, por favor aguarde.",
"Refresh": "Refresh",
"Sign In": "Entrar", "Sign In": "Entrar",
"Sign in with Face ID": "Sign in with Face ID", "Sign in with Face ID": "Sign in with Face ID",
"Sign in with WebAuthn": "Entrar com WebAuthn", "Sign in with WebAuthn": "Entrar com WebAuthn",
@@ -581,6 +586,7 @@
"The input is not valid phone number!": "The input is not valid phone number!", "The input is not valid phone number!": "The input is not valid phone number!",
"To access": "Para acessar", "To access": "Para acessar",
"Verification code": "Código de verificação", "Verification code": "Código de verificação",
"WeChat": "WeChat",
"WebAuthn": "WebAuthn", "WebAuthn": "WebAuthn",
"sign up now": "Inscreva-se agora", "sign up now": "Inscreva-se agora",
"username, Email or phone": "Nome de usuário, email ou telefone" "username, Email or phone": "Nome de usuário, email ou telefone"
@@ -988,6 +994,8 @@
"Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login", "Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login",
"Use WeChat Media Platform to login": "Use WeChat Media Platform to login", "Use WeChat Media Platform to login": "Use WeChat Media Platform to login",
"Use WeChat Open Platform to login": "Use WeChat Open Platform to login", "Use WeChat Open Platform to login": "Use WeChat Open Platform to login",
"Use global endpoint": "Use global endpoint",
"Use global endpoint - Tooltip": "Use global endpoint - Tooltip",
"Use id as name": "Use id as name", "Use id as name": "Use id as name",
"Use id as name - Tooltip": "Use id as user's name", "Use id as name - Tooltip": "Use id as user's name",
"User flow": "User flow", "User flow": "User flow",

View File

@@ -75,6 +75,7 @@
"Header HTML - Edit": "Header HTML - Edit", "Header HTML - Edit": "Header HTML - Edit",
"Header HTML - Tooltip": "Custom the head tag of your application entry page", "Header HTML - Tooltip": "Custom the head tag of your application entry page",
"Incremental": "Последовательный", "Incremental": "Последовательный",
"Inline": "Inline",
"Input": "Input", "Input": "Input",
"Internet-Only": "Internet-Only", "Internet-Only": "Internet-Only",
"Invalid characters in application name": "Invalid characters in application name", "Invalid characters in application name": "Invalid characters in application name",
@@ -95,6 +96,7 @@
"Please input your application!": "Пожалуйста, введите свою заявку!", "Please input your application!": "Пожалуйста, введите свою заявку!",
"Please input your organization!": "Пожалуйста, введите название вашей организации!", "Please input your organization!": "Пожалуйста, введите название вашей организации!",
"Please select a HTML file": "Пожалуйста, выберите файл HTML", "Please select a HTML file": "Пожалуйста, выберите файл HTML",
"Pop up": "Pop up",
"Random": "Случайный", "Random": "Случайный",
"Real name": "Полное имя", "Real name": "Полное имя",
"Redirect URL": "Перенаправление URL", "Redirect URL": "Перенаправление URL",
@@ -295,6 +297,7 @@
"Failed to save": "Не удалось сохранить", "Failed to save": "Не удалось сохранить",
"Failed to sync": "Failed to sync", "Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"False": "False",
"Favicon": "Фавикон", "Favicon": "Фавикон",
"Favicon - Tooltip": "URL иконки Favicon, используемый на всех страницах организации Casdoor", "Favicon - Tooltip": "URL иконки Favicon, используемый на всех страницах организации Casdoor",
"First name": "Имя", "First name": "Имя",
@@ -444,6 +447,7 @@
"Tokens": "Токены", "Tokens": "Токены",
"Tour": "Tour", "Tour": "Tour",
"Transactions": "Transactions", "Transactions": "Transactions",
"True": "True",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Type - Tooltip", "Type - Tooltip": "Type - Tooltip",
"URL": "URL", "URL": "URL",
@@ -568,6 +572,7 @@
"Please select an organization to sign in": "Please select an organization to sign in", "Please select an organization to sign in": "Please select an organization to sign in",
"Please type an organization to sign in": "Please type an organization to sign in", "Please type an organization to sign in": "Please type an organization to sign in",
"Redirecting, please wait.": "Перенаправление, пожалуйста, подождите.", "Redirecting, please wait.": "Перенаправление, пожалуйста, подождите.",
"Refresh": "Refresh",
"Sign In": "Войти", "Sign In": "Войти",
"Sign in with Face ID": "Sign in with Face ID", "Sign in with Face ID": "Sign in with Face ID",
"Sign in with WebAuthn": "Войти с помощью WebAuthn", "Sign in with WebAuthn": "Войти с помощью WebAuthn",
@@ -581,6 +586,7 @@
"The input is not valid phone number!": "The input is not valid phone number!", "The input is not valid phone number!": "The input is not valid phone number!",
"To access": "Для доступа", "To access": "Для доступа",
"Verification code": "Код подтверждения", "Verification code": "Код подтверждения",
"WeChat": "WeChat",
"WebAuthn": "WebAuthn", "WebAuthn": "WebAuthn",
"sign up now": "Зарегистрируйтесь сейчас", "sign up now": "Зарегистрируйтесь сейчас",
"username, Email or phone": "имя пользователя, электронная почта или телефон" "username, Email or phone": "имя пользователя, электронная почта или телефон"
@@ -988,6 +994,8 @@
"Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login", "Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login",
"Use WeChat Media Platform to login": "Use WeChat Media Platform to login", "Use WeChat Media Platform to login": "Use WeChat Media Platform to login",
"Use WeChat Open Platform to login": "Use WeChat Open Platform to login", "Use WeChat Open Platform to login": "Use WeChat Open Platform to login",
"Use global endpoint": "Use global endpoint",
"Use global endpoint - Tooltip": "Use global endpoint - Tooltip",
"Use id as name": "Use id as name", "Use id as name": "Use id as name",
"Use id as name - Tooltip": "Use id as user's name", "Use id as name - Tooltip": "Use id as user's name",
"User flow": "User flow", "User flow": "User flow",

View File

@@ -75,6 +75,7 @@
"Header HTML - Edit": "HTML hlavičky - Upraviť", "Header HTML - Edit": "HTML hlavičky - Upraviť",
"Header HTML - Tooltip": "Vlastný HTML kód pre hlavičku vašej vstupnej stránky aplikácie", "Header HTML - Tooltip": "Vlastný HTML kód pre hlavičku vašej vstupnej stránky aplikácie",
"Incremental": "Postupný", "Incremental": "Postupný",
"Inline": "Inline",
"Input": "Vstup", "Input": "Vstup",
"Internet-Only": "Internet-Only", "Internet-Only": "Internet-Only",
"Invalid characters in application name": "Invalid characters in application name", "Invalid characters in application name": "Invalid characters in application name",
@@ -95,6 +96,7 @@
"Please input your application!": "Zadajte svoju aplikáciu!", "Please input your application!": "Zadajte svoju aplikáciu!",
"Please input your organization!": "Zadajte svoju organizáciu!", "Please input your organization!": "Zadajte svoju organizáciu!",
"Please select a HTML file": "Vyberte HTML súbor", "Please select a HTML file": "Vyberte HTML súbor",
"Pop up": "Pop up",
"Random": "Náhodný", "Random": "Náhodný",
"Real name": "Skutočné meno", "Real name": "Skutočné meno",
"Redirect URL": "URL presmerovania", "Redirect URL": "URL presmerovania",
@@ -295,6 +297,7 @@
"Failed to save": "Nepodarilo sa uložiť", "Failed to save": "Nepodarilo sa uložiť",
"Failed to sync": "Nepodarilo sa synchronizovať", "Failed to sync": "Nepodarilo sa synchronizovať",
"Failed to verify": "Nepodarilo sa overiť", "Failed to verify": "Nepodarilo sa overiť",
"False": "False",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "URL ikony favicon používaná na všetkých stránkach Casdoor organizácie", "Favicon - Tooltip": "URL ikony favicon používaná na všetkých stránkach Casdoor organizácie",
"First name": "Meno", "First name": "Meno",
@@ -444,6 +447,7 @@
"Tokens": "Tokeny", "Tokens": "Tokeny",
"Tour": "Tour", "Tour": "Tour",
"Transactions": "Transakcie", "Transactions": "Transakcie",
"True": "True",
"Type": "Typ", "Type": "Typ",
"Type - Tooltip": "Typ", "Type - Tooltip": "Typ",
"URL": "URL", "URL": "URL",
@@ -568,6 +572,7 @@
"Please select an organization to sign in": "Vyberte organizáciu na prihlásenie", "Please select an organization to sign in": "Vyberte organizáciu na prihlásenie",
"Please type an organization to sign in": "Zadajte organizáciu na prihlásenie", "Please type an organization to sign in": "Zadajte organizáciu na prihlásenie",
"Redirecting, please wait.": "Prebieha presmerovanie, prosím čakajte.", "Redirecting, please wait.": "Prebieha presmerovanie, prosím čakajte.",
"Refresh": "Refresh",
"Sign In": "Prihlásiť sa", "Sign In": "Prihlásiť sa",
"Sign in with Face ID": "Prihlásiť sa pomocou Face ID", "Sign in with Face ID": "Prihlásiť sa pomocou Face ID",
"Sign in with WebAuthn": "Prihlásiť sa pomocou WebAuthn", "Sign in with WebAuthn": "Prihlásiť sa pomocou WebAuthn",
@@ -581,6 +586,7 @@
"The input is not valid phone number!": "Zadaný údaj nie je platné telefónne číslo!", "The input is not valid phone number!": "Zadaný údaj nie je platné telefónne číslo!",
"To access": "Na prístup", "To access": "Na prístup",
"Verification code": "Overovací kód", "Verification code": "Overovací kód",
"WeChat": "WeChat",
"WebAuthn": "WebAuthn", "WebAuthn": "WebAuthn",
"sign up now": "zaregistrujte sa teraz", "sign up now": "zaregistrujte sa teraz",
"username, Email or phone": "meno používateľa, Email alebo telefón" "username, Email or phone": "meno používateľa, Email alebo telefón"
@@ -988,6 +994,8 @@
"Use WeChat Media Platform in PC - Tooltip": "Či povoliť skenovanie QR kódu WeChat Media Platform na prihlásenie", "Use WeChat Media Platform in PC - Tooltip": "Či povoliť skenovanie QR kódu WeChat Media Platform na prihlásenie",
"Use WeChat Media Platform to login": "Použiť WeChat Media Platform na prihlásenie", "Use WeChat Media Platform to login": "Použiť WeChat Media Platform na prihlásenie",
"Use WeChat Open Platform to login": "Použiť WeChat Open Platform na prihlásenie", "Use WeChat Open Platform to login": "Použiť WeChat Open Platform na prihlásenie",
"Use global endpoint": "Use global endpoint",
"Use global endpoint - Tooltip": "Use global endpoint - Tooltip",
"Use id as name": "Use id as name", "Use id as name": "Use id as name",
"Use id as name - Tooltip": "Use id as user's name", "Use id as name - Tooltip": "Use id as user's name",
"User flow": "Tok používateľa", "User flow": "Tok používateľa",

View File

@@ -75,6 +75,7 @@
"Header HTML - Edit": "Header HTML - Edit", "Header HTML - Edit": "Header HTML - Edit",
"Header HTML - Tooltip": "Custom the head tag of your application entry page", "Header HTML - Tooltip": "Custom the head tag of your application entry page",
"Incremental": "Incremental", "Incremental": "Incremental",
"Inline": "Inline",
"Input": "Input", "Input": "Input",
"Internet-Only": "Internet-Only", "Internet-Only": "Internet-Only",
"Invalid characters in application name": "Invalid characters in application name", "Invalid characters in application name": "Invalid characters in application name",
@@ -95,6 +96,7 @@
"Please input your application!": "Please input your application!", "Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!", "Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Please select a HTML file", "Please select a HTML file": "Please select a HTML file",
"Pop up": "Pop up",
"Random": "Random", "Random": "Random",
"Real name": "Real name", "Real name": "Real name",
"Redirect URL": "Redirect URL", "Redirect URL": "Redirect URL",
@@ -295,6 +297,7 @@
"Failed to save": "Failed to save", "Failed to save": "Failed to save",
"Failed to sync": "Failed to sync", "Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"False": "False",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization", "Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
"First name": "First name", "First name": "First name",
@@ -444,6 +447,7 @@
"Tokens": "Tokens", "Tokens": "Tokens",
"Tour": "Tour", "Tour": "Tour",
"Transactions": "Transactions", "Transactions": "Transactions",
"True": "True",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Type - Tooltip", "Type - Tooltip": "Type - Tooltip",
"URL": "URL", "URL": "URL",
@@ -568,6 +572,7 @@
"Please select an organization to sign in": "Please select an organization to sign in", "Please select an organization to sign in": "Please select an organization to sign in",
"Please type an organization to sign in": "Please type an organization to sign in", "Please type an organization to sign in": "Please type an organization to sign in",
"Redirecting, please wait.": "Redirecting, please wait.", "Redirecting, please wait.": "Redirecting, please wait.",
"Refresh": "Refresh",
"Sign In": "Sign In", "Sign In": "Sign In",
"Sign in with Face ID": "Sign in with Face ID", "Sign in with Face ID": "Sign in with Face ID",
"Sign in with WebAuthn": "Sign in with WebAuthn", "Sign in with WebAuthn": "Sign in with WebAuthn",
@@ -581,6 +586,7 @@
"The input is not valid phone number!": "The input is not valid phone number!", "The input is not valid phone number!": "The input is not valid phone number!",
"To access": "To access", "To access": "To access",
"Verification code": "Verification code", "Verification code": "Verification code",
"WeChat": "WeChat",
"WebAuthn": "WebAuthn", "WebAuthn": "WebAuthn",
"sign up now": "sign up now", "sign up now": "sign up now",
"username, Email or phone": "username, Email or phone" "username, Email or phone": "username, Email or phone"
@@ -988,6 +994,8 @@
"Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login", "Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login",
"Use WeChat Media Platform to login": "Use WeChat Media Platform to login", "Use WeChat Media Platform to login": "Use WeChat Media Platform to login",
"Use WeChat Open Platform to login": "Use WeChat Open Platform to login", "Use WeChat Open Platform to login": "Use WeChat Open Platform to login",
"Use global endpoint": "Use global endpoint",
"Use global endpoint - Tooltip": "Use global endpoint - Tooltip",
"Use id as name": "Use id as name", "Use id as name": "Use id as name",
"Use id as name - Tooltip": "Use id as user's name", "Use id as name - Tooltip": "Use id as user's name",
"User flow": "User flow", "User flow": "User flow",

View File

@@ -75,6 +75,7 @@
"Header HTML - Edit": "Header HTML - Edit", "Header HTML - Edit": "Header HTML - Edit",
"Header HTML - Tooltip": "Custom the head tag of your application entry page", "Header HTML - Tooltip": "Custom the head tag of your application entry page",
"Incremental": "Incremental", "Incremental": "Incremental",
"Inline": "Inline",
"Input": "Input", "Input": "Input",
"Internet-Only": "Internet-Only", "Internet-Only": "Internet-Only",
"Invalid characters in application name": "Invalid characters in application name", "Invalid characters in application name": "Invalid characters in application name",
@@ -95,6 +96,7 @@
"Please input your application!": "Please input your application!", "Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!", "Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Please select a HTML file", "Please select a HTML file": "Please select a HTML file",
"Pop up": "Pop up",
"Random": "Random", "Random": "Random",
"Real name": "Gerçek isim", "Real name": "Gerçek isim",
"Redirect URL": "Yönlendirme URL'si", "Redirect URL": "Yönlendirme URL'si",
@@ -295,6 +297,7 @@
"Failed to save": "Failed to save", "Failed to save": "Failed to save",
"Failed to sync": "Failed to sync", "Failed to sync": "Failed to sync",
"Failed to verify": "Doğrulama başarısız oldu", "Failed to verify": "Doğrulama başarısız oldu",
"False": "False",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization", "Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
"First name": "İsim", "First name": "İsim",
@@ -444,6 +447,7 @@
"Tokens": "Tokens", "Tokens": "Tokens",
"Tour": "Tour", "Tour": "Tour",
"Transactions": "Transactions", "Transactions": "Transactions",
"True": "True",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Type - Tooltip", "Type - Tooltip": "Type - Tooltip",
"URL": "URL", "URL": "URL",
@@ -568,6 +572,7 @@
"Please select an organization to sign in": "Please select an organization to sign in", "Please select an organization to sign in": "Please select an organization to sign in",
"Please type an organization to sign in": "Please type an organization to sign in", "Please type an organization to sign in": "Please type an organization to sign in",
"Redirecting, please wait.": "Yönlendiriliyor, lütfen bekleyiniz.", "Redirecting, please wait.": "Yönlendiriliyor, lütfen bekleyiniz.",
"Refresh": "Refresh",
"Sign In": "Oturum aç", "Sign In": "Oturum aç",
"Sign in with Face ID": "Sign in with Face ID", "Sign in with Face ID": "Sign in with Face ID",
"Sign in with WebAuthn": "Sign in with WebAuthn", "Sign in with WebAuthn": "Sign in with WebAuthn",
@@ -581,6 +586,7 @@
"The input is not valid phone number!": "The input is not valid phone number!", "The input is not valid phone number!": "The input is not valid phone number!",
"To access": "To access", "To access": "To access",
"Verification code": "Verification code", "Verification code": "Verification code",
"WeChat": "WeChat",
"WebAuthn": "WebAuthn", "WebAuthn": "WebAuthn",
"sign up now": "hemen kaydolun", "sign up now": "hemen kaydolun",
"username, Email or phone": "kullanıcı adınız, Eposta adresiniz ve telefon numaranız" "username, Email or phone": "kullanıcı adınız, Eposta adresiniz ve telefon numaranız"
@@ -988,6 +994,8 @@
"Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login", "Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login",
"Use WeChat Media Platform to login": "Use WeChat Media Platform to login", "Use WeChat Media Platform to login": "Use WeChat Media Platform to login",
"Use WeChat Open Platform to login": "Use WeChat Open Platform to login", "Use WeChat Open Platform to login": "Use WeChat Open Platform to login",
"Use global endpoint": "Use global endpoint",
"Use global endpoint - Tooltip": "Use global endpoint - Tooltip",
"Use id as name": "Use id as name", "Use id as name": "Use id as name",
"Use id as name - Tooltip": "Use id as user's name", "Use id as name - Tooltip": "Use id as user's name",
"User flow": "User flow", "User flow": "User flow",

View File

@@ -75,6 +75,7 @@
"Header HTML - Edit": "HTML-код заголовка Редагувати", "Header HTML - Edit": "HTML-код заголовка Редагувати",
"Header HTML - Tooltip": "Налаштуйте тег head на сторінці входу до програми", "Header HTML - Tooltip": "Налаштуйте тег head на сторінці входу до програми",
"Incremental": "Інкрементний", "Incremental": "Інкрементний",
"Inline": "Inline",
"Input": "Введення", "Input": "Введення",
"Internet-Only": "Internet-Only", "Internet-Only": "Internet-Only",
"Invalid characters in application name": "Invalid characters in application name", "Invalid characters in application name": "Invalid characters in application name",
@@ -95,6 +96,7 @@
"Please input your application!": "Будь ласка, введіть свою заявку!", "Please input your application!": "Будь ласка, введіть свою заявку!",
"Please input your organization!": "Будь ласка, введіть вашу організацію!", "Please input your organization!": "Будь ласка, введіть вашу організацію!",
"Please select a HTML file": "Виберіть файл HTML", "Please select a HTML file": "Виберіть файл HTML",
"Pop up": "Pop up",
"Random": "Випадковий", "Random": "Випадковий",
"Real name": "Справжнє ім'я", "Real name": "Справжнє ім'я",
"Redirect URL": "URL-адреса перенаправлення", "Redirect URL": "URL-адреса перенаправлення",
@@ -295,6 +297,7 @@
"Failed to save": "Не вдалося зберегти", "Failed to save": "Не вдалося зберегти",
"Failed to sync": "Не вдалося синхронізувати", "Failed to sync": "Не вдалося синхронізувати",
"Failed to verify": "Не вдалося перевірити", "Failed to verify": "Не вдалося перевірити",
"False": "False",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "URL-адреса піктограми Favicon, яка використовується на всіх сторінках Casdoor організації", "Favicon - Tooltip": "URL-адреса піктограми Favicon, яка використовується на всіх сторінках Casdoor організації",
"First name": "Ім'я", "First name": "Ім'я",
@@ -444,6 +447,7 @@
"Tokens": "Жетони", "Tokens": "Жетони",
"Tour": "Tour", "Tour": "Tour",
"Transactions": "транзакції", "Transactions": "транзакції",
"True": "True",
"Type": "Тип", "Type": "Тип",
"Type - Tooltip": "Тип - підказка", "Type - Tooltip": "Тип - підказка",
"URL": "URL", "URL": "URL",
@@ -568,6 +572,7 @@
"Please select an organization to sign in": "Виберіть організацію для входу", "Please select an organization to sign in": "Виберіть організацію для входу",
"Please type an organization to sign in": "Будь ласка, введіть організацію, щоб увійти", "Please type an organization to sign in": "Будь ласка, введіть організацію, щоб увійти",
"Redirecting, please wait.": "Перенаправлення, будь ласка, зачекайте.", "Redirecting, please wait.": "Перенаправлення, будь ласка, зачекайте.",
"Refresh": "Refresh",
"Sign In": "Увійти", "Sign In": "Увійти",
"Sign in with Face ID": "Увійдіть за допомогою Face ID", "Sign in with Face ID": "Увійдіть за допомогою Face ID",
"Sign in with WebAuthn": "Увійдіть за допомогою WebAuthn", "Sign in with WebAuthn": "Увійдіть за допомогою WebAuthn",
@@ -581,6 +586,7 @@
"The input is not valid phone number!": "Введений недійсний номер телефону!", "The input is not valid phone number!": "Введений недійсний номер телефону!",
"To access": "Доступу", "To access": "Доступу",
"Verification code": "Код підтвердження", "Verification code": "Код підтвердження",
"WeChat": "WeChat",
"WebAuthn": "WebAuthn", "WebAuthn": "WebAuthn",
"sign up now": "Зареєструйся зараз", "sign up now": "Зареєструйся зараз",
"username, Email or phone": "ім'я користувача, електронну пошту або телефон" "username, Email or phone": "ім'я користувача, електронну пошту або телефон"
@@ -988,6 +994,8 @@
"Use WeChat Media Platform in PC - Tooltip": "Чи дозволяти сканування QR-коду WeChat Media Platform для входу", "Use WeChat Media Platform in PC - Tooltip": "Чи дозволяти сканування QR-коду WeChat Media Platform для входу",
"Use WeChat Media Platform to login": "Використовуйте медіаплатформу WeChat для входу", "Use WeChat Media Platform to login": "Використовуйте медіаплатформу WeChat для входу",
"Use WeChat Open Platform to login": "Використовуйте відкриту платформу WeChat для входу", "Use WeChat Open Platform to login": "Використовуйте відкриту платформу WeChat для входу",
"Use global endpoint": "Use global endpoint",
"Use global endpoint - Tooltip": "Use global endpoint - Tooltip",
"Use id as name": "Use id as name", "Use id as name": "Use id as name",
"Use id as name - Tooltip": "Use id as user's name", "Use id as name - Tooltip": "Use id as user's name",
"User flow": "Потік користувачів", "User flow": "Потік користувачів",

View File

@@ -75,6 +75,7 @@
"Header HTML - Edit": "Header HTML - Edit", "Header HTML - Edit": "Header HTML - Edit",
"Header HTML - Tooltip": "Custom the head tag of your application entry page", "Header HTML - Tooltip": "Custom the head tag of your application entry page",
"Incremental": "Tăng", "Incremental": "Tăng",
"Inline": "Inline",
"Input": "Input", "Input": "Input",
"Internet-Only": "Internet-Only", "Internet-Only": "Internet-Only",
"Invalid characters in application name": "Invalid characters in application name", "Invalid characters in application name": "Invalid characters in application name",
@@ -95,6 +96,7 @@
"Please input your application!": "Vui lòng nhập ứng dụng của bạn!", "Please input your application!": "Vui lòng nhập ứng dụng của bạn!",
"Please input your organization!": "Vui lòng nhập tổ chức của bạn!", "Please input your organization!": "Vui lòng nhập tổ chức của bạn!",
"Please select a HTML file": "Vui lòng chọn tệp HTML", "Please select a HTML file": "Vui lòng chọn tệp HTML",
"Pop up": "Pop up",
"Random": "Ngẫu nhiên", "Random": "Ngẫu nhiên",
"Real name": "Tên thật", "Real name": "Tên thật",
"Redirect URL": "Chuyển hướng URL", "Redirect URL": "Chuyển hướng URL",
@@ -295,6 +297,7 @@
"Failed to save": "Không thể lưu lại", "Failed to save": "Không thể lưu lại",
"Failed to sync": "Failed to sync", "Failed to sync": "Failed to sync",
"Failed to verify": "Failed to verify", "Failed to verify": "Failed to verify",
"False": "False",
"Favicon": "Favicon", "Favicon": "Favicon",
"Favicon - Tooltip": "URL biểu tượng Favicon được sử dụng trong tất cả các trang của tổ chức Casdoor", "Favicon - Tooltip": "URL biểu tượng Favicon được sử dụng trong tất cả các trang của tổ chức Casdoor",
"First name": "Tên", "First name": "Tên",
@@ -444,6 +447,7 @@
"Tokens": "Mã thông báo", "Tokens": "Mã thông báo",
"Tour": "Tour", "Tour": "Tour",
"Transactions": "Transactions", "Transactions": "Transactions",
"True": "True",
"Type": "Type", "Type": "Type",
"Type - Tooltip": "Type - Tooltip", "Type - Tooltip": "Type - Tooltip",
"URL": "URL", "URL": "URL",
@@ -568,6 +572,7 @@
"Please select an organization to sign in": "Please select an organization to sign in", "Please select an organization to sign in": "Please select an organization to sign in",
"Please type an organization to sign in": "Please type an organization to sign in", "Please type an organization to sign in": "Please type an organization to sign in",
"Redirecting, please wait.": "Đang chuyển hướng, vui lòng đợi.", "Redirecting, please wait.": "Đang chuyển hướng, vui lòng đợi.",
"Refresh": "Refresh",
"Sign In": "Đăng nhập", "Sign In": "Đăng nhập",
"Sign in with Face ID": "Sign in with Face ID", "Sign in with Face ID": "Sign in with Face ID",
"Sign in with WebAuthn": "Đăng nhập với WebAuthn", "Sign in with WebAuthn": "Đăng nhập với WebAuthn",
@@ -581,6 +586,7 @@
"The input is not valid phone number!": "The input is not valid phone number!", "The input is not valid phone number!": "The input is not valid phone number!",
"To access": "Để truy cập", "To access": "Để truy cập",
"Verification code": "Mã xác thực", "Verification code": "Mã xác thực",
"WeChat": "WeChat",
"WebAuthn": "WebAuthn", "WebAuthn": "WebAuthn",
"sign up now": "Đăng ký ngay bây giờ", "sign up now": "Đăng ký ngay bây giờ",
"username, Email or phone": "Tên đăng nhập, Email hoặc điện thoại" "username, Email or phone": "Tên đăng nhập, Email hoặc điện thoại"
@@ -988,6 +994,8 @@
"Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login", "Use WeChat Media Platform in PC - Tooltip": "Whether to allow scanning WeChat Media Platform QR code to login",
"Use WeChat Media Platform to login": "Use WeChat Media Platform to login", "Use WeChat Media Platform to login": "Use WeChat Media Platform to login",
"Use WeChat Open Platform to login": "Use WeChat Open Platform to login", "Use WeChat Open Platform to login": "Use WeChat Open Platform to login",
"Use global endpoint": "Use global endpoint",
"Use global endpoint - Tooltip": "Use global endpoint - Tooltip",
"Use id as name": "Use id as name", "Use id as name": "Use id as name",
"Use id as name - Tooltip": "Use id as user's name", "Use id as name - Tooltip": "Use id as user's name",
"User flow": "User flow", "User flow": "User flow",

View File

@@ -75,6 +75,7 @@
"Header HTML - Edit": "Header HTML - 编辑", "Header HTML - Edit": "Header HTML - 编辑",
"Header HTML - Tooltip": "自定义应用页面的head标签", "Header HTML - Tooltip": "自定义应用页面的head标签",
"Incremental": "递增", "Incremental": "递增",
"Inline": "内嵌",
"Input": "输入", "Input": "输入",
"Internet-Only": "外网启用", "Internet-Only": "外网启用",
"Invalid characters in application name": "应用名称内有非法字符", "Invalid characters in application name": "应用名称内有非法字符",
@@ -95,6 +96,7 @@
"Please input your application!": "请输入你的应用", "Please input your application!": "请输入你的应用",
"Please input your organization!": "请输入你的组织", "Please input your organization!": "请输入你的组织",
"Please select a HTML file": "请选择一个HTML文件", "Please select a HTML file": "请选择一个HTML文件",
"Pop up": "弹框",
"Random": "随机", "Random": "随机",
"Real name": "真实姓名", "Real name": "真实姓名",
"Redirect URL": "重定向 URL", "Redirect URL": "重定向 URL",
@@ -295,6 +297,7 @@
"Failed to save": "保存失败", "Failed to save": "保存失败",
"Failed to sync": "同步失败", "Failed to sync": "同步失败",
"Failed to verify": "验证失败", "Failed to verify": "验证失败",
"False": "假",
"Favicon": "组织Favicon", "Favicon": "组织Favicon",
"Favicon - Tooltip": "该组织所有Casdoor页面中所使用的Favicon图标URL", "Favicon - Tooltip": "该组织所有Casdoor页面中所使用的Favicon图标URL",
"First name": "名字", "First name": "名字",
@@ -444,6 +447,7 @@
"Tokens": "令牌", "Tokens": "令牌",
"Tour": "引导", "Tour": "引导",
"Transactions": "交易", "Transactions": "交易",
"True": "真",
"Type": "类型", "Type": "类型",
"Type - Tooltip": "类型", "Type - Tooltip": "类型",
"URL": "链接", "URL": "链接",
@@ -568,6 +572,7 @@
"Please select an organization to sign in": "请选择要登录的组织", "Please select an organization to sign in": "请选择要登录的组织",
"Please type an organization to sign in": "请输入要登录的组织", "Please type an organization to sign in": "请输入要登录的组织",
"Redirecting, please wait.": "正在跳转, 请稍等.", "Redirecting, please wait.": "正在跳转, 请稍等.",
"Refresh": "刷新",
"Sign In": "登录", "Sign In": "登录",
"Sign in with Face ID": "人脸登录", "Sign in with Face ID": "人脸登录",
"Sign in with WebAuthn": "WebAuthn登录", "Sign in with WebAuthn": "WebAuthn登录",
@@ -581,6 +586,7 @@
"The input is not valid phone number!": "您输入的手机号有误!", "The input is not valid phone number!": "您输入的手机号有误!",
"To access": "访问", "To access": "访问",
"Verification code": "验证码", "Verification code": "验证码",
"WeChat": "微信",
"WebAuthn": "Web身份验证", "WebAuthn": "Web身份验证",
"sign up now": "立即注册", "sign up now": "立即注册",
"username, Email or phone": "用户名、Email或手机号" "username, Email or phone": "用户名、Email或手机号"
@@ -963,7 +969,7 @@
"Signup HTML - Edit": "注册页面HTML - 编辑", "Signup HTML - Edit": "注册页面HTML - 编辑",
"Signup HTML - Tooltip": "自定义HTML用于替换默认的注册页面样式", "Signup HTML - Tooltip": "自定义HTML用于替换默认的注册页面样式",
"Signup group": "注册后的群组", "Signup group": "注册后的群组",
"Signup group - Tooltip": "Signup group - Tooltip", "Signup group - Tooltip": "注册后自动加入的群组",
"Silent": "静默", "Silent": "静默",
"Site key": "Site key", "Site key": "Site key",
"Site key - Tooltip": "站点密钥", "Site key - Tooltip": "站点密钥",
@@ -980,22 +986,24 @@
"Test SMTP Connection": "测试SMTP连接", "Test SMTP Connection": "测试SMTP连接",
"Third-party": "第三方", "Third-party": "第三方",
"This field is required": "此字段是必需的", "This field is required": "此字段是必需的",
"Token URL": "Token URL", "Token URL": "Token链接",
"Token URL - Tooltip": "自定义OAuth的Token URL", "Token URL - Tooltip": "自定义OAuth的Token链接",
"Type": "类型", "Type": "类型",
"Type - Tooltip": "类型", "Type - Tooltip": "类型",
"Use WeChat Media Platform in PC": "在PC端使用微信公众平台", "Use WeChat Media Platform in PC": "在PC端使用微信公众平台",
"Use WeChat Media Platform in PC - Tooltip": "是否使用微信公众平台的二维码进行登录", "Use WeChat Media Platform in PC - Tooltip": "是否使用微信公众平台的二维码进行登录",
"Use WeChat Media Platform to login": "使用微信公众平台进行登录", "Use WeChat Media Platform to login": "使用微信公众平台进行登录",
"Use WeChat Open Platform to login": "使用微信开放平台进行登录", "Use WeChat Open Platform to login": "使用微信开放平台进行登录",
"Use global endpoint": "启用全局地址",
"Use global endpoint - Tooltip": "启用全局地址",
"Use id as name": "使用id作为用户名", "Use id as name": "使用id作为用户名",
"Use id as name - Tooltip": "使用id作为用户的名字", "Use id as name - Tooltip": "使用id作为用户的名字",
"User flow": "User flow", "User flow": "User flow",
"User flow - Tooltip": "User flow", "User flow - Tooltip": "User flow",
"User mapping": "用户映射", "User mapping": "用户映射",
"User mapping - Tooltip": "用户映射 - 工具提示", "User mapping - Tooltip": "用户映射 - 工具提示",
"UserInfo URL": "UserInfo URL", "UserInfo URL": "UserInfo链接",
"UserInfo URL - Tooltip": "自定义OAuth的UserInfo URL", "UserInfo URL - Tooltip": "自定义OAuth的UserInfo链接",
"Wallets": "钱包", "Wallets": "钱包",
"Wallets - Tooltip": "钱包 - 工具提示", "Wallets - Tooltip": "钱包 - 工具提示",
"admin (Shared)": "admin共享" "admin (Shared)": "admin共享"
@@ -1231,7 +1239,7 @@
"Keys": "键", "Keys": "键",
"Language": "语言", "Language": "语言",
"Language - Tooltip": "语言 - Tooltip", "Language - Tooltip": "语言 - Tooltip",
"Last change password time": "Last change password time", "Last change password time": "上次修改密码时间",
"Link": "绑定", "Link": "绑定",
"Location": "城市", "Location": "城市",
"Location - Tooltip": "居住地址所在的城市", "Location - Tooltip": "居住地址所在的城市",