feat: reduce i18n items

This commit is contained in:
Yang Luo 2024-12-07 21:22:57 +08:00
parent 1d21c3fa90
commit 922b19c64b
31 changed files with 601 additions and 125 deletions

View File

@ -920,7 +920,7 @@ export function getClickable(text) {
return ( return (
<a onClick={() => { <a onClick={() => {
copy(text); copy(text);
showMessage("success", "Copied to clipboard"); showMessage("success", i18next.t("general:Copied to clipboard successfully"));
}}> }}>
{text} {text}
</a> </a>
@ -1171,7 +1171,7 @@ export function renderLogo(application) {
function isSigninMethodEnabled(application, signinMethod) { function isSigninMethodEnabled(application, signinMethod) {
if (application && application.signinMethods) { if (application && application.signinMethods) {
return application.signinMethods.filter(item => item.name === signinMethod && item.rule !== "Hide-Password").length > 0; return application.signinMethods.filter(item => item.name === signinMethod && item.rule !== "Hide password").length > 0;
} else { } else {
return false; return false;
} }
@ -1550,25 +1550,25 @@ export function getDefaultHtmlEmailContent() {
export function getCurrencyText(product) { export function getCurrencyText(product) {
if (product?.currency === "USD") { if (product?.currency === "USD") {
return i18next.t("product:USD"); return i18next.t("currency:USD");
} else if (product?.currency === "CNY") { } else if (product?.currency === "CNY") {
return i18next.t("product:CNY"); return i18next.t("currency:CNY");
} else if (product?.currency === "EUR") { } else if (product?.currency === "EUR") {
return i18next.t("product:EUR"); return i18next.t("currency:EUR");
} else if (product?.currency === "JPY") { } else if (product?.currency === "JPY") {
return i18next.t("product:JPY"); return i18next.t("currency:JPY");
} else if (product?.currency === "GBP") { } else if (product?.currency === "GBP") {
return i18next.t("product:GBP"); return i18next.t("currency:GBP");
} else if (product?.currency === "AUD") { } else if (product?.currency === "AUD") {
return i18next.t("product:AUD"); return i18next.t("currency:AUD");
} else if (product?.currency === "CAD") { } else if (product?.currency === "CAD") {
return i18next.t("product:CAD"); return i18next.t("currency:CAD");
} else if (product?.currency === "CHF") { } else if (product?.currency === "CHF") {
return i18next.t("product:CHF"); return i18next.t("currency:CHF");
} else if (product?.currency === "HKD") { } else if (product?.currency === "HKD") {
return i18next.t("product:HKD"); return i18next.t("currency:HKD");
} else if (product?.currency === "SGD") { } else if (product?.currency === "SGD") {
return i18next.t("product:SGD"); return i18next.t("currency:SGD");
} else { } else {
return "(Unknown currency)"; return "(Unknown currency)";
} }

View File

@ -1150,7 +1150,7 @@ class LoginPage extends React.Component {
]); ]);
application?.signinMethods?.forEach((signinMethod) => { application?.signinMethods?.forEach((signinMethod) => {
if (signinMethod.rule === "Hide-Password") { if (signinMethod.rule === "Hide password") {
return; return;
} }
const item = itemsMap.get(generateItemKey(signinMethod.name, signinMethod.rule)); const item = itemsMap.get(generateItemKey(signinMethod.name, signinMethod.rule));

View File

@ -46,17 +46,17 @@ function encrypt(cipher, key, iv, password) {
export function checkPasswordObfuscator(passwordObfuscatorType, passwordObfuscatorKey) { export function checkPasswordObfuscator(passwordObfuscatorType, passwordObfuscatorKey) {
if (passwordObfuscatorType === undefined) { if (passwordObfuscatorType === undefined) {
return i18next.t("organization:failed to get password obfuscator"); return "passwordObfuscatorType should not be undefined";
} else if (passwordObfuscatorType === "Plain" || passwordObfuscatorType === "") { } else if (passwordObfuscatorType === "Plain" || passwordObfuscatorType === "") {
return ""; return "";
} else if (passwordObfuscatorType === "AES" || passwordObfuscatorType === "DES") { } else if (passwordObfuscatorType === "AES" || passwordObfuscatorType === "DES") {
if (passwordObfuscatorKeyRegexes[passwordObfuscatorType].test(passwordObfuscatorKey)) { if (passwordObfuscatorKeyRegexes[passwordObfuscatorType].test(passwordObfuscatorKey)) {
return ""; return "";
} else { } else {
return `${i18next.t("organization:The password obfuscator key doesn't match the regex")}: ${passwordObfuscatorKeyRegexes[passwordObfuscatorType].source}`; return `The password obfuscator key doesn't match the regex: ${passwordObfuscatorKeyRegexes[passwordObfuscatorType].source}`;
} }
} else { } else {
return `${i18next.t("organization:unsupported password obfuscator type")}: ${passwordObfuscatorType}`; return `unsupported password obfuscator type: ${passwordObfuscatorType}`;
} }
} }

View File

@ -14,6 +14,7 @@
import React from "react"; import React from "react";
import {Alert, Button, QRCode} from "antd"; import {Alert, Button, QRCode} from "antd";
import copy from "copy-to-clipboard";
import * as Setting from "../Setting"; import * as Setting from "../Setting";
import i18next from "i18next"; import i18next from "i18next";
@ -62,12 +63,8 @@ export const CasdoorAppUrl = ({accessToken}) => {
return; return;
} }
try { copy(qrUrl);
await navigator.clipboard.writeText(qrUrl); Setting.showMessage("success", i18next.t("general:Copied to clipboard successfully"));
Setting.showMessage("success", i18next.t("general:Copied to clipboard"));
} catch (err) {
Setting.showMessage("error", i18next.t("general:Failed to copy"));
}
}; };
if (error) { if (error) {
@ -82,14 +79,9 @@ export const CasdoorAppUrl = ({accessToken}) => {
alignItems: "center", alignItems: "center",
marginBottom: "10px", marginBottom: "10px",
}}> }}>
<span>{i18next.t("general:URL String")}</span>
{window.isSecureContext && ( {window.isSecureContext && (
<Button <Button size="small" type="primary" onClick={handleCopyUrl} style={{marginLeft: "10px"}}>
size="small" {i18next.t("resource:Copy Link")}
onClick={handleCopyUrl}
style={{marginLeft: "10px"}}
>
{i18next.t("general:Copy URL")}
</Button> </Button>
)} )}
</div> </div>

View File

@ -161,6 +161,18 @@
"Sending": "Sending", "Sending": "Sending",
"Submit and complete": "Submit and complete" "Submit and complete": "Submit and complete"
}, },
"currency": {
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"JPY": "JPY",
"SGD": "SGD",
"USD": "USD"
},
"enforcer": { "enforcer": {
"Edit Enforcer": "Edit Enforcer", "Edit Enforcer": "Edit Enforcer",
"New Enforcer": "New Enforcer" "New Enforcer": "New Enforcer"
@ -266,10 +278,13 @@
"Go to writable demo site?": "Go to writable demo site?", "Go to writable demo site?": "Go to writable demo site?",
"Groups": "Groups", "Groups": "Groups",
"Groups - Tooltip": "Groups - Tooltip", "Groups - Tooltip": "Groups - Tooltip",
"Hide password": "Hide password",
"Home": "Home", "Home": "Home",
"Home - Tooltip": "Home page of the application", "Home - Tooltip": "Home page of the application",
"ID": "ID", "ID": "ID",
"ID - Tooltip": "Unique random string", "ID - Tooltip": "Unique random string",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "IP whitelist - Tooltip",
"Identity": "Identity", "Identity": "Identity",
"Invitations": "Invitations", "Invitations": "Invitations",
"Is enabled": "Is enabled", "Is enabled": "Is enabled",
@ -312,6 +327,10 @@
"Password - Tooltip": "Make sure the password is correct", "Password - Tooltip": "Make sure the password is correct",
"Password complexity options": "Password complexity options", "Password complexity options": "Password complexity options",
"Password complexity options - Tooltip": "Different combinations of password complexity options", "Password complexity options - Tooltip": "Different combinations of password complexity options",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Password obf key - Tooltip",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator - Tooltip",
"Password salt": "Password salt", "Password salt": "Password salt",
"Password salt - Tooltip": "Random parameter used for password encryption", "Password salt - Tooltip": "Random parameter used for password encryption",
"Password type": "Password type", "Password type": "Password type",
@ -559,7 +578,6 @@
"Use SMS": "Use SMS", "Use SMS": "Use SMS",
"Use SMS verification code": "Use SMS verification code", "Use SMS verification code": "Use SMS verification code",
"Use a recovery code": "Use a recovery code", "Use a recovery code": "Use a recovery code",
"Verification failed": "Verification failed",
"Verify Code": "Verify Code", "Verify Code": "Verify Code",
"Verify Password": "Verify Password", "Verify Password": "Verify Password",
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue", "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
@ -592,6 +610,8 @@
"Modify rule": "Modify rule", "Modify rule": "Modify rule",
"New Organization": "New Organization", "New Organization": "New Organization",
"Optional": "Optional", "Optional": "Optional",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Password expire days - Tooltip",
"Prompt": "Prompt", "Prompt": "Prompt",
"Required": "Required", "Required": "Required",
"Soft deletion": "Soft deletion", "Soft deletion": "Soft deletion",
@ -709,7 +729,6 @@
"Alipay": "Alipay", "Alipay": "Alipay",
"Buy": "Buy", "Buy": "Buy",
"Buy Product": "Buy Product", "Buy Product": "Buy Product",
"CNY": "CNY",
"Detail": "Detail", "Detail": "Detail",
"Detail - Tooltip": "Detail of product", "Detail - Tooltip": "Detail of product",
"Dummy": "Dummy", "Dummy": "Dummy",
@ -740,7 +759,6 @@
"Test buy page..": "Test buy page..", "Test buy page..": "Test buy page..",
"There is no payment channel for this product.": "There is no payment channel for this product.", "There is no payment channel for this product.": "There is no payment channel for this product.",
"This product is currently not in sale.": "This product is currently not in sale.", "This product is currently not in sale.": "This product is currently not in sale.",
"USD": "USD",
"WeChat Pay": "WeChat Pay" "WeChat Pay": "WeChat Pay"
}, },
"provider": { "provider": {
@ -893,6 +911,7 @@
"Signup HTML - Edit": "Signup HTML - Edit", "Signup HTML - Edit": "Signup HTML - Edit",
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style", "Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
"Signup group": "Signup group", "Signup group": "Signup group",
"Signup group - Tooltip": "Signup group - Tooltip",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Site key", "Site key": "Site key",
"Site key - Tooltip": "Site key", "Site key - Tooltip": "Site key",
@ -1157,6 +1176,7 @@
"Keys": "Keys", "Keys": "Keys",
"Language": "Language", "Language": "Language",
"Language - Tooltip": "Language - Tooltip", "Language - Tooltip": "Language - Tooltip",
"Last change password time": "Last change password time",
"Link": "Link", "Link": "Link",
"Location": "Location", "Location": "Location",
"Location - Tooltip": "City of residence", "Location - Tooltip": "City of residence",

View File

@ -161,6 +161,18 @@
"Sending": "Odesílání", "Sending": "Odesílání",
"Submit and complete": "Odeslat a dokončit" "Submit and complete": "Odeslat a dokončit"
}, },
"currency": {
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"JPY": "JPY",
"SGD": "SGD",
"USD": "USD"
},
"enforcer": { "enforcer": {
"Edit Enforcer": "Upravit Enforcer", "Edit Enforcer": "Upravit Enforcer",
"New Enforcer": "Nový Enforcer" "New Enforcer": "Nový Enforcer"
@ -266,10 +278,13 @@
"Go to writable demo site?": "Přejít na zapisovatelnou demo stránku?", "Go to writable demo site?": "Přejít na zapisovatelnou demo stránku?",
"Groups": "Skupiny", "Groups": "Skupiny",
"Groups - Tooltip": "Skupiny - Tooltip", "Groups - Tooltip": "Skupiny - Tooltip",
"Hide password": "Hide password",
"Home": "Domů", "Home": "Domů",
"Home - Tooltip": "Domovská stránka aplikace", "Home - Tooltip": "Domovská stránka aplikace",
"ID": "ID", "ID": "ID",
"ID - Tooltip": "Unikátní náhodný řetězec", "ID - Tooltip": "Unikátní náhodný řetězec",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "IP whitelist - Tooltip",
"Identity": "Identita", "Identity": "Identita",
"Invitations": "Pozvánky", "Invitations": "Pozvánky",
"Is enabled": "Je povoleno", "Is enabled": "Je povoleno",
@ -312,6 +327,10 @@
"Password - Tooltip": "Ujistěte se, že heslo je správné", "Password - Tooltip": "Ujistěte se, že heslo je správné",
"Password complexity options": "Možnosti složitosti hesla", "Password complexity options": "Možnosti složitosti hesla",
"Password complexity options - Tooltip": "Různé kombinace možností složitosti hesla", "Password complexity options - Tooltip": "Různé kombinace možností složitosti hesla",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Password obf key - Tooltip",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator - Tooltip",
"Password salt": "Heslová sůl", "Password salt": "Heslová sůl",
"Password salt - Tooltip": "Náhodný parametr použitý pro šifrování hesla", "Password salt - Tooltip": "Náhodný parametr použitý pro šifrování hesla",
"Password type": "Typ hesla", "Password type": "Typ hesla",
@ -559,7 +578,6 @@
"Use SMS": "Použít SMS", "Use SMS": "Použít SMS",
"Use SMS verification code": "Použít ověřovací kód SMS", "Use SMS verification code": "Použít ověřovací kód SMS",
"Use a recovery code": "Použít obnovovací kód", "Use a recovery code": "Použít obnovovací kód",
"Verification failed": "Ověření selhalo",
"Verify Code": "Ověřit kód", "Verify Code": "Ověřit kód",
"Verify Password": "Ověřit heslo", "Verify Password": "Ověřit heslo",
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue", "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
@ -592,6 +610,8 @@
"Modify rule": "Upravit pravidlo", "Modify rule": "Upravit pravidlo",
"New Organization": "Nová organizace", "New Organization": "Nová organizace",
"Optional": "Volitelný", "Optional": "Volitelný",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Password expire days - Tooltip",
"Prompt": "Výzva", "Prompt": "Výzva",
"Required": "Povinné", "Required": "Povinné",
"Soft deletion": "Měkké smazání", "Soft deletion": "Měkké smazání",
@ -709,7 +729,6 @@
"Alipay": "Alipay", "Alipay": "Alipay",
"Buy": "Koupit", "Buy": "Koupit",
"Buy Product": "Koupit produkt", "Buy Product": "Koupit produkt",
"CNY": "CNY",
"Detail": "Detail", "Detail": "Detail",
"Detail - Tooltip": "Detail produktu", "Detail - Tooltip": "Detail produktu",
"Dummy": "Dummy", "Dummy": "Dummy",
@ -740,7 +759,6 @@
"Test buy page..": "Testovací stránka nákupu..", "Test buy page..": "Testovací stránka nákupu..",
"There is no payment channel for this product.": "Pro tento produkt neexistuje žádný platební kanál.", "There is no payment channel for this product.": "Pro tento produkt neexistuje žádný platební kanál.",
"This product is currently not in sale.": "Tento produkt není momentálně v prodeji.", "This product is currently not in sale.": "Tento produkt není momentálně v prodeji.",
"USD": "USD",
"WeChat Pay": "WeChat Pay" "WeChat Pay": "WeChat Pay"
}, },
"provider": { "provider": {
@ -893,6 +911,7 @@
"Signup HTML - Edit": "Upravit HTML pro registraci", "Signup HTML - Edit": "Upravit HTML pro registraci",
"Signup HTML - Tooltip": "Vlastní HTML pro nahrazení výchozího stylu registrační stránky", "Signup HTML - Tooltip": "Vlastní HTML pro nahrazení výchozího stylu registrační stránky",
"Signup group": "Skupina pro registraci", "Signup group": "Skupina pro registraci",
"Signup group - Tooltip": "Signup group - Tooltip",
"Silent": "Tiché", "Silent": "Tiché",
"Site key": "Klíč stránky", "Site key": "Klíč stránky",
"Site key - Tooltip": "Nápověda ke klíči stránky", "Site key - Tooltip": "Nápověda ke klíči stránky",
@ -1157,6 +1176,7 @@
"Keys": "Klíče", "Keys": "Klíče",
"Language": "Jazyk", "Language": "Jazyk",
"Language - Tooltip": "Jazyk - Nápověda", "Language - Tooltip": "Jazyk - Nápověda",
"Last change password time": "Last change password time",
"Link": "Odkaz", "Link": "Odkaz",
"Location": "Místo", "Location": "Místo",
"Location - Tooltip": "Město bydliště", "Location - Tooltip": "Město bydliště",

View File

@ -161,6 +161,18 @@
"Sending": "Sendet", "Sending": "Sendet",
"Submit and complete": "Einreichen und abschließen" "Submit and complete": "Einreichen und abschließen"
}, },
"currency": {
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"JPY": "JPY",
"SGD": "SGD",
"USD": "USD"
},
"enforcer": { "enforcer": {
"Edit Enforcer": "Edit Enforcer", "Edit Enforcer": "Edit Enforcer",
"New Enforcer": "New Enforcer" "New Enforcer": "New Enforcer"
@ -266,10 +278,13 @@
"Go to writable demo site?": "Gehe zur beschreibbaren Demo-Website?", "Go to writable demo site?": "Gehe zur beschreibbaren Demo-Website?",
"Groups": "Groups", "Groups": "Groups",
"Groups - Tooltip": "Groups - Tooltip", "Groups - Tooltip": "Groups - Tooltip",
"Hide password": "Hide password",
"Home": "Zuhause", "Home": "Zuhause",
"Home - Tooltip": "Homepage der Anwendung", "Home - Tooltip": "Homepage der Anwendung",
"ID": "ID", "ID": "ID",
"ID - Tooltip": "Einzigartiger Zufallsstring", "ID - Tooltip": "Einzigartiger Zufallsstring",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "IP whitelist - Tooltip",
"Identity": "Identity", "Identity": "Identity",
"Invitations": "Invitations", "Invitations": "Invitations",
"Is enabled": "Ist aktiviert", "Is enabled": "Ist aktiviert",
@ -312,6 +327,10 @@
"Password - Tooltip": "Stellen Sie sicher, dass das Passwort korrekt ist", "Password - Tooltip": "Stellen Sie sicher, dass das Passwort korrekt ist",
"Password complexity options": "Password complexity options", "Password complexity options": "Password complexity options",
"Password complexity options - Tooltip": "Password complexity options - Tooltip", "Password complexity options - Tooltip": "Password complexity options - Tooltip",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Password obf key - Tooltip",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator - Tooltip",
"Password salt": "Passwort-Salt", "Password salt": "Passwort-Salt",
"Password salt - Tooltip": "Zufälliger Parameter, der für die Verschlüsselung von Passwörtern verwendet wird", "Password salt - Tooltip": "Zufälliger Parameter, der für die Verschlüsselung von Passwörtern verwendet wird",
"Password type": "Passworttyp", "Password type": "Passworttyp",
@ -559,7 +578,6 @@
"Use SMS": "Use SMS", "Use SMS": "Use SMS",
"Use SMS verification code": "Use SMS verification code", "Use SMS verification code": "Use SMS verification code",
"Use a recovery code": "Use a recovery code", "Use a recovery code": "Use a recovery code",
"Verification failed": "Verification failed",
"Verify Code": "Verify Code", "Verify Code": "Verify Code",
"Verify Password": "Verify Password", "Verify Password": "Verify Password",
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue", "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
@ -592,6 +610,8 @@
"Modify rule": "Regel ändern", "Modify rule": "Regel ändern",
"New Organization": "Neue Organisation", "New Organization": "Neue Organisation",
"Optional": "Optional", "Optional": "Optional",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Password expire days - Tooltip",
"Prompt": "Prompt", "Prompt": "Prompt",
"Required": "Required", "Required": "Required",
"Soft deletion": "Softe Löschung", "Soft deletion": "Softe Löschung",
@ -709,7 +729,6 @@
"Alipay": "Alipay", "Alipay": "Alipay",
"Buy": "Kaufen", "Buy": "Kaufen",
"Buy Product": "Produkt kaufen", "Buy Product": "Produkt kaufen",
"CNY": "CNY",
"Detail": "Detail", "Detail": "Detail",
"Detail - Tooltip": "Detail des Produkts", "Detail - Tooltip": "Detail des Produkts",
"Dummy": "Dummy", "Dummy": "Dummy",
@ -740,7 +759,6 @@
"Test buy page..": "Testkaufseite.", "Test buy page..": "Testkaufseite.",
"There is no payment channel for this product.": "Es gibt keinen Zahlungskanal für dieses Produkt.", "There is no payment channel for this product.": "Es gibt keinen Zahlungskanal für dieses Produkt.",
"This product is currently not in sale.": "Dieses Produkt steht derzeit nicht zum Verkauf.", "This product is currently not in sale.": "Dieses Produkt steht derzeit nicht zum Verkauf.",
"USD": "USD",
"WeChat Pay": "WeChat Pay" "WeChat Pay": "WeChat Pay"
}, },
"provider": { "provider": {
@ -893,6 +911,7 @@
"Signup HTML - Edit": "Registrierung HTML - Bearbeiten", "Signup HTML - Edit": "Registrierung HTML - Bearbeiten",
"Signup HTML - Tooltip": "Benutzerdefiniertes HTML zur Ersetzung des Standard-Registrierungs-Seitenstils", "Signup HTML - Tooltip": "Benutzerdefiniertes HTML zur Ersetzung des Standard-Registrierungs-Seitenstils",
"Signup group": "Signup group", "Signup group": "Signup group",
"Signup group - Tooltip": "Signup group - Tooltip",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Site-Key", "Site key": "Site-Key",
"Site key - Tooltip": "Seitenschlüssel", "Site key - Tooltip": "Seitenschlüssel",
@ -1157,6 +1176,7 @@
"Keys": "Schlüssel", "Keys": "Schlüssel",
"Language": "Language", "Language": "Language",
"Language - Tooltip": "Language - Tooltip", "Language - Tooltip": "Language - Tooltip",
"Last change password time": "Last change password time",
"Link": "Link", "Link": "Link",
"Location": "Ort", "Location": "Ort",
"Location - Tooltip": "Stadt des Wohnsitzes", "Location - Tooltip": "Stadt des Wohnsitzes",

View File

@ -161,6 +161,18 @@
"Sending": "Sending", "Sending": "Sending",
"Submit and complete": "Submit and complete" "Submit and complete": "Submit and complete"
}, },
"currency": {
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"JPY": "JPY",
"SGD": "SGD",
"USD": "USD"
},
"enforcer": { "enforcer": {
"Edit Enforcer": "Edit Enforcer", "Edit Enforcer": "Edit Enforcer",
"New Enforcer": "New Enforcer" "New Enforcer": "New Enforcer"
@ -266,10 +278,13 @@
"Go to writable demo site?": "Go to writable demo site?", "Go to writable demo site?": "Go to writable demo site?",
"Groups": "Groups", "Groups": "Groups",
"Groups - Tooltip": "Groups - Tooltip", "Groups - Tooltip": "Groups - Tooltip",
"Hide password": "Hide password",
"Home": "Home", "Home": "Home",
"Home - Tooltip": "Home page of the application", "Home - Tooltip": "Home page of the application",
"ID": "ID", "ID": "ID",
"ID - Tooltip": "Unique random string", "ID - Tooltip": "Unique random string",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "IP whitelist - Tooltip",
"Identity": "Identity", "Identity": "Identity",
"Invitations": "Invitations", "Invitations": "Invitations",
"Is enabled": "Is enabled", "Is enabled": "Is enabled",
@ -312,6 +327,10 @@
"Password - Tooltip": "Make sure the password is correct", "Password - Tooltip": "Make sure the password is correct",
"Password complexity options": "Password complexity options", "Password complexity options": "Password complexity options",
"Password complexity options - Tooltip": "Different combinations of password complexity options", "Password complexity options - Tooltip": "Different combinations of password complexity options",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Password obf key - Tooltip",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator - Tooltip",
"Password salt": "Password salt", "Password salt": "Password salt",
"Password salt - Tooltip": "Random parameter used for password encryption", "Password salt - Tooltip": "Random parameter used for password encryption",
"Password type": "Password type", "Password type": "Password type",
@ -559,7 +578,6 @@
"Use SMS": "Use SMS", "Use SMS": "Use SMS",
"Use SMS verification code": "Use SMS verification code", "Use SMS verification code": "Use SMS verification code",
"Use a recovery code": "Use a recovery code", "Use a recovery code": "Use a recovery code",
"Verification failed": "Verification failed",
"Verify Code": "Verify Code", "Verify Code": "Verify Code",
"Verify Password": "Verify Password", "Verify Password": "Verify Password",
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue", "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
@ -592,6 +610,8 @@
"Modify rule": "Modify rule", "Modify rule": "Modify rule",
"New Organization": "New Organization", "New Organization": "New Organization",
"Optional": "Optional", "Optional": "Optional",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Password expire days - Tooltip",
"Prompt": "Prompt", "Prompt": "Prompt",
"Required": "Required", "Required": "Required",
"Soft deletion": "Soft deletion", "Soft deletion": "Soft deletion",
@ -709,7 +729,6 @@
"Alipay": "Alipay", "Alipay": "Alipay",
"Buy": "Buy", "Buy": "Buy",
"Buy Product": "Buy Product", "Buy Product": "Buy Product",
"CNY": "CNY",
"Detail": "Detail", "Detail": "Detail",
"Detail - Tooltip": "Detail of product", "Detail - Tooltip": "Detail of product",
"Dummy": "Dummy", "Dummy": "Dummy",
@ -740,16 +759,7 @@
"Test buy page..": "Test buy page..", "Test buy page..": "Test buy page..",
"There is no payment channel for this product.": "There is no payment channel for this product.", "There is no payment channel for this product.": "There is no payment channel for this product.",
"This product is currently not in sale.": "This product is currently not in sale.", "This product is currently not in sale.": "This product is currently not in sale.",
"USD": "USD", "WeChat Pay": "WeChat Pay"
"WeChat Pay": "WeChat Pay",
"EUR": "EUR",
"JPY": "JPY",
"GBP": "GBP",
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"HKD": "HKD",
"SGD": "SGD"
}, },
"provider": { "provider": {
"Access key": "Access key", "Access key": "Access key",
@ -901,6 +911,7 @@
"Signup HTML - Edit": "Signup HTML - Edit", "Signup HTML - Edit": "Signup HTML - Edit",
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style", "Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
"Signup group": "Signup group", "Signup group": "Signup group",
"Signup group - Tooltip": "Signup group - Tooltip",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Site key", "Site key": "Site key",
"Site key - Tooltip": "Site key", "Site key - Tooltip": "Site key",
@ -1165,6 +1176,7 @@
"Keys": "Keys", "Keys": "Keys",
"Language": "Language", "Language": "Language",
"Language - Tooltip": "Language - Tooltip", "Language - Tooltip": "Language - Tooltip",
"Last change password time": "Last change password time",
"Link": "Link", "Link": "Link",
"Location": "Location", "Location": "Location",
"Location - Tooltip": "City of residence", "Location - Tooltip": "City of residence",

View File

@ -161,6 +161,18 @@
"Sending": "Envío", "Sending": "Envío",
"Submit and complete": "Enviar y completar" "Submit and complete": "Enviar y completar"
}, },
"currency": {
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"JPY": "JPY",
"SGD": "SGD",
"USD": "USD"
},
"enforcer": { "enforcer": {
"Edit Enforcer": "Edit Enforcer", "Edit Enforcer": "Edit Enforcer",
"New Enforcer": "New Enforcer" "New Enforcer": "New Enforcer"
@ -266,10 +278,13 @@
"Go to writable demo site?": "¿Ir al sitio demo editable?", "Go to writable demo site?": "¿Ir al sitio demo editable?",
"Groups": "Groups", "Groups": "Groups",
"Groups - Tooltip": "Groups - Tooltip", "Groups - Tooltip": "Groups - Tooltip",
"Hide password": "Hide password",
"Home": "Hogar", "Home": "Hogar",
"Home - Tooltip": "Página de inicio de la aplicación", "Home - Tooltip": "Página de inicio de la aplicación",
"ID": "identificación", "ID": "identificación",
"ID - Tooltip": "Cadena aleatoria única", "ID - Tooltip": "Cadena aleatoria única",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "IP whitelist - Tooltip",
"Identity": "Identity", "Identity": "Identity",
"Invitations": "Invitations", "Invitations": "Invitations",
"Is enabled": "Está habilitado", "Is enabled": "Está habilitado",
@ -312,6 +327,10 @@
"Password - Tooltip": "Asegúrate de que la contraseña sea correcta", "Password - Tooltip": "Asegúrate de que la contraseña sea correcta",
"Password complexity options": "Password complexity options", "Password complexity options": "Password complexity options",
"Password complexity options - Tooltip": "Password complexity options - Tooltip", "Password complexity options - Tooltip": "Password complexity options - Tooltip",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Password obf key - Tooltip",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator - Tooltip",
"Password salt": "Sal de contraseña", "Password salt": "Sal de contraseña",
"Password salt - Tooltip": "Parámetro aleatorio utilizado para la encriptación de contraseñas", "Password salt - Tooltip": "Parámetro aleatorio utilizado para la encriptación de contraseñas",
"Password type": "Tipo de contraseña", "Password type": "Tipo de contraseña",
@ -559,7 +578,6 @@
"Use SMS": "Use SMS", "Use SMS": "Use SMS",
"Use SMS verification code": "Use SMS verification code", "Use SMS verification code": "Use SMS verification code",
"Use a recovery code": "Use a recovery code", "Use a recovery code": "Use a recovery code",
"Verification failed": "Verification failed",
"Verify Code": "Verify Code", "Verify Code": "Verify Code",
"Verify Password": "Verify Password", "Verify Password": "Verify Password",
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue", "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
@ -592,6 +610,8 @@
"Modify rule": "Modificar regla", "Modify rule": "Modificar regla",
"New Organization": "Nueva organización", "New Organization": "Nueva organización",
"Optional": "Optional", "Optional": "Optional",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Password expire days - Tooltip",
"Prompt": "Prompt", "Prompt": "Prompt",
"Required": "Required", "Required": "Required",
"Soft deletion": "Eliminación suave", "Soft deletion": "Eliminación suave",
@ -709,7 +729,6 @@
"Alipay": "Alipay", "Alipay": "Alipay",
"Buy": "Comprar", "Buy": "Comprar",
"Buy Product": "Comprar producto", "Buy Product": "Comprar producto",
"CNY": "Año Nuevo Chino (ANC)",
"Detail": "Detalle", "Detail": "Detalle",
"Detail - Tooltip": "Detalle del producto", "Detail - Tooltip": "Detalle del producto",
"Dummy": "Dummy", "Dummy": "Dummy",
@ -740,7 +759,6 @@
"Test buy page..": "Página de compra de prueba.", "Test buy page..": "Página de compra de prueba.",
"There is no payment channel for this product.": "No hay canal de pago para este producto.", "There is no payment channel for this product.": "No hay canal de pago para este producto.",
"This product is currently not in sale.": "Este producto actualmente no está a la venta.", "This product is currently not in sale.": "Este producto actualmente no está a la venta.",
"USD": "USD",
"WeChat Pay": "WeChat Pay" "WeChat Pay": "WeChat Pay"
}, },
"provider": { "provider": {
@ -893,6 +911,7 @@
"Signup HTML - Edit": "Registro HTML - Editar", "Signup HTML - Edit": "Registro HTML - Editar",
"Signup HTML - Tooltip": "HTML personalizado para reemplazar el estilo predeterminado de la página de registro", "Signup HTML - Tooltip": "HTML personalizado para reemplazar el estilo predeterminado de la página de registro",
"Signup group": "Signup group", "Signup group": "Signup group",
"Signup group - Tooltip": "Signup group - Tooltip",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Clave del sitio", "Site key": "Clave del sitio",
"Site key - Tooltip": "Clave del sitio", "Site key - Tooltip": "Clave del sitio",
@ -1157,6 +1176,7 @@
"Keys": "Claves", "Keys": "Claves",
"Language": "Language", "Language": "Language",
"Language - Tooltip": "Language - Tooltip", "Language - Tooltip": "Language - Tooltip",
"Last change password time": "Last change password time",
"Link": "Enlace", "Link": "Enlace",
"Location": "Ubicación", "Location": "Ubicación",
"Location - Tooltip": "Ciudad de residencia", "Location - Tooltip": "Ciudad de residencia",

View File

@ -81,7 +81,7 @@
"Only signup": "فقط ثبت‌نام", "Only signup": "فقط ثبت‌نام",
"Org choice mode": "حالت انتخاب سازمان", "Org choice mode": "حالت انتخاب سازمان",
"Org choice mode - Tooltip": "حالت انتخاب سازمان - راهنمای ابزار", "Org choice mode - Tooltip": "حالت انتخاب سازمان - راهنمای ابزار",
"Please enable \"Signin session\" first before enabling \"Auto signin\"": "لطفاً قبل از فعال‌سازی \"ورود خودکار\"، ابتدا \"جلسه ورود\" را فعال کنید", "Please enable \\\"Signin session\\\" first before enabling \\\"Auto signin\\\"": "Please enable \\\"Signin session\\\" first before enabling \\\"Auto signin\\\"",
"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 انتخاب کنید",
@ -161,6 +161,18 @@
"Sending": "در حال ارسال", "Sending": "در حال ارسال",
"Submit and complete": "ارسال و تکمیل" "Submit and complete": "ارسال و تکمیل"
}, },
"currency": {
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"JPY": "JPY",
"SGD": "SGD",
"USD": "USD"
},
"enforcer": { "enforcer": {
"Edit Enforcer": "ویرایش Enforcer", "Edit Enforcer": "ویرایش Enforcer",
"New Enforcer": "Enforcer جدید" "New Enforcer": "Enforcer جدید"
@ -266,10 +278,13 @@
"Go to writable demo site?": "به سایت دمو قابل نوشتن بروید؟", "Go to writable demo site?": "به سایت دمو قابل نوشتن بروید؟",
"Groups": "گروه‌ها", "Groups": "گروه‌ها",
"Groups - Tooltip": "گروه‌ها - راهنمای ابزار", "Groups - Tooltip": "گروه‌ها - راهنمای ابزار",
"Hide password": "Hide password",
"Home": "خانه", "Home": "خانه",
"Home - Tooltip": "صفحه اصلی برنامه", "Home - Tooltip": "صفحه اصلی برنامه",
"ID": "شناسه", "ID": "شناسه",
"ID - Tooltip": "رشته تصادفی منحصربه‌فرد", "ID - Tooltip": "رشته تصادفی منحصربه‌فرد",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "IP whitelist - Tooltip",
"Identity": "هویت", "Identity": "هویت",
"Invitations": "دعوت‌ها", "Invitations": "دعوت‌ها",
"Is enabled": "فعال است", "Is enabled": "فعال است",
@ -312,6 +327,10 @@
"Password - Tooltip": "مطمئن شوید که رمز عبور صحیح است", "Password - Tooltip": "مطمئن شوید که رمز عبور صحیح است",
"Password complexity options": "گزینه‌های پیچیدگی رمز عبور", "Password complexity options": "گزینه‌های پیچیدگی رمز عبور",
"Password complexity options - Tooltip": "ترکیبات مختلف گزینه‌های پیچیدگی رمز عبور", "Password complexity options - Tooltip": "ترکیبات مختلف گزینه‌های پیچیدگی رمز عبور",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Password obf key - Tooltip",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator - Tooltip",
"Password salt": "نمک رمز عبور", "Password salt": "نمک رمز عبور",
"Password salt - Tooltip": "پارامتر تصادفی مورد استفاده برای رمزگذاری رمز عبور", "Password salt - Tooltip": "پارامتر تصادفی مورد استفاده برای رمزگذاری رمز عبور",
"Password type": "نوع رمز عبور", "Password type": "نوع رمز عبور",
@ -559,7 +578,6 @@
"Use SMS": "استفاده از پیامک", "Use SMS": "استفاده از پیامک",
"Use SMS verification code": "استفاده از کد تأیید پیامک", "Use SMS verification code": "استفاده از کد تأیید پیامک",
"Use a recovery code": "استفاده از کد بازیابی", "Use a recovery code": "استفاده از کد بازیابی",
"Verification failed": "تأیید ناموفق بود",
"Verify Code": "تأیید کد", "Verify Code": "تأیید کد",
"Verify Password": "تأیید رمز عبور", "Verify Password": "تأیید رمز عبور",
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "شما احراز هویت چندعاملی را فعال کرده‌اید، لطفاً برای ادامه روی 'ارسال کد' کلیک کنید", "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "شما احراز هویت چندعاملی را فعال کرده‌اید، لطفاً برای ادامه روی 'ارسال کد' کلیک کنید",
@ -592,6 +610,8 @@
"Modify rule": "قانون اصلاح", "Modify rule": "قانون اصلاح",
"New Organization": "سازمان جدید", "New Organization": "سازمان جدید",
"Optional": "اختیاری", "Optional": "اختیاری",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Password expire days - Tooltip",
"Prompt": "اعلان", "Prompt": "اعلان",
"Required": "الزامی", "Required": "الزامی",
"Soft deletion": "حذف نرم", "Soft deletion": "حذف نرم",
@ -709,7 +729,6 @@
"Alipay": "Alipay", "Alipay": "Alipay",
"Buy": "خرید", "Buy": "خرید",
"Buy Product": "خرید محصول", "Buy Product": "خرید محصول",
"CNY": "یوان چین",
"Detail": "جزئیات", "Detail": "جزئیات",
"Detail - Tooltip": "جزئیات محصول", "Detail - Tooltip": "جزئیات محصول",
"Dummy": "فرضی", "Dummy": "فرضی",
@ -740,7 +759,6 @@
"Test buy page..": "صفحه تست خرید..", "Test buy page..": "صفحه تست خرید..",
"There is no payment channel for this product.": "برای این محصول کانال پرداختی وجود ندارد.", "There is no payment channel for this product.": "برای این محصول کانال پرداختی وجود ندارد.",
"This product is currently not in sale.": "این محصول در حال حاضر در فروش نیست.", "This product is currently not in sale.": "این محصول در حال حاضر در فروش نیست.",
"USD": "دلار آمریکا",
"WeChat Pay": "WeChat Pay" "WeChat Pay": "WeChat Pay"
}, },
"provider": { "provider": {
@ -893,6 +911,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",
"Silent": "بی‌صدا", "Silent": "بی‌صدا",
"Site key": "کلید سایت", "Site key": "کلید سایت",
"Site key - Tooltip": "کلید سایت", "Site key - Tooltip": "کلید سایت",
@ -1157,6 +1176,7 @@
"Keys": "کلیدها", "Keys": "کلیدها",
"Language": "زبان", "Language": "زبان",
"Language - Tooltip": "زبان - راهنمای ابزار", "Language - Tooltip": "زبان - راهنمای ابزار",
"Last change password time": "Last change password time",
"Link": "اتصال", "Link": "اتصال",
"Location": "مکان", "Location": "مکان",
"Location - Tooltip": "شهر محل سکونت", "Location - Tooltip": "شهر محل سکونت",

View File

@ -161,6 +161,18 @@
"Sending": "Sending", "Sending": "Sending",
"Submit and complete": "Submit and complete" "Submit and complete": "Submit and complete"
}, },
"currency": {
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"JPY": "JPY",
"SGD": "SGD",
"USD": "USD"
},
"enforcer": { "enforcer": {
"Edit Enforcer": "Edit Enforcer", "Edit Enforcer": "Edit Enforcer",
"New Enforcer": "New Enforcer" "New Enforcer": "New Enforcer"
@ -266,10 +278,13 @@
"Go to writable demo site?": "Go to writable demo site?", "Go to writable demo site?": "Go to writable demo site?",
"Groups": "Groups", "Groups": "Groups",
"Groups - Tooltip": "Groups - Tooltip", "Groups - Tooltip": "Groups - Tooltip",
"Hide password": "Hide password",
"Home": "Home", "Home": "Home",
"Home - Tooltip": "Home page of the application", "Home - Tooltip": "Home page of the application",
"ID": "ID", "ID": "ID",
"ID - Tooltip": "Unique random string", "ID - Tooltip": "Unique random string",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "IP whitelist - Tooltip",
"Identity": "Identity", "Identity": "Identity",
"Invitations": "Invitations", "Invitations": "Invitations",
"Is enabled": "Is enabled", "Is enabled": "Is enabled",
@ -312,6 +327,10 @@
"Password - Tooltip": "Make sure the password is correct", "Password - Tooltip": "Make sure the password is correct",
"Password complexity options": "Password complexity options", "Password complexity options": "Password complexity options",
"Password complexity options - Tooltip": "Different combinations of password complexity options", "Password complexity options - Tooltip": "Different combinations of password complexity options",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Password obf key - Tooltip",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator - Tooltip",
"Password salt": "Password salt", "Password salt": "Password salt",
"Password salt - Tooltip": "Random parameter used for password encryption", "Password salt - Tooltip": "Random parameter used for password encryption",
"Password type": "Password type", "Password type": "Password type",
@ -559,7 +578,6 @@
"Use SMS": "Use SMS", "Use SMS": "Use SMS",
"Use SMS verification code": "Use SMS verification code", "Use SMS verification code": "Use SMS verification code",
"Use a recovery code": "Use a recovery code", "Use a recovery code": "Use a recovery code",
"Verification failed": "Verification failed",
"Verify Code": "Verify Code", "Verify Code": "Verify Code",
"Verify Password": "Verify Password", "Verify Password": "Verify Password",
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue", "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
@ -592,6 +610,8 @@
"Modify rule": "Modify rule", "Modify rule": "Modify rule",
"New Organization": "New Organization", "New Organization": "New Organization",
"Optional": "Optional", "Optional": "Optional",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Password expire days - Tooltip",
"Prompt": "Prompt", "Prompt": "Prompt",
"Required": "Required", "Required": "Required",
"Soft deletion": "Soft deletion", "Soft deletion": "Soft deletion",
@ -709,7 +729,6 @@
"Alipay": "Alipay", "Alipay": "Alipay",
"Buy": "Buy", "Buy": "Buy",
"Buy Product": "Buy Product", "Buy Product": "Buy Product",
"CNY": "CNY",
"Detail": "Detail", "Detail": "Detail",
"Detail - Tooltip": "Detail of product", "Detail - Tooltip": "Detail of product",
"Dummy": "Dummy", "Dummy": "Dummy",
@ -740,7 +759,6 @@
"Test buy page..": "Test buy page..", "Test buy page..": "Test buy page..",
"There is no payment channel for this product.": "There is no payment channel for this product.", "There is no payment channel for this product.": "There is no payment channel for this product.",
"This product is currently not in sale.": "This product is currently not in sale.", "This product is currently not in sale.": "This product is currently not in sale.",
"USD": "USD",
"WeChat Pay": "WeChat Pay" "WeChat Pay": "WeChat Pay"
}, },
"provider": { "provider": {
@ -893,6 +911,7 @@
"Signup HTML - Edit": "Signup HTML - Edit", "Signup HTML - Edit": "Signup HTML - Edit",
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style", "Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
"Signup group": "Signup group", "Signup group": "Signup group",
"Signup group - Tooltip": "Signup group - Tooltip",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Site key", "Site key": "Site key",
"Site key - Tooltip": "Site key", "Site key - Tooltip": "Site key",
@ -1157,6 +1176,7 @@
"Keys": "Keys", "Keys": "Keys",
"Language": "Language", "Language": "Language",
"Language - Tooltip": "Language - Tooltip", "Language - Tooltip": "Language - Tooltip",
"Last change password time": "Last change password time",
"Link": "Link", "Link": "Link",
"Location": "Location", "Location": "Location",
"Location - Tooltip": "City of residence", "Location - Tooltip": "City of residence",

View File

@ -161,6 +161,18 @@
"Sending": "Envoi en cours", "Sending": "Envoi en cours",
"Submit and complete": "Soumettre et compléter" "Submit and complete": "Soumettre et compléter"
}, },
"currency": {
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"JPY": "JPY",
"SGD": "SGD",
"USD": "USD"
},
"enforcer": { "enforcer": {
"Edit Enforcer": "Éditer l'exécuteur", "Edit Enforcer": "Éditer l'exécuteur",
"New Enforcer": "Ajouter un exécuteur" "New Enforcer": "Ajouter un exécuteur"
@ -266,10 +278,13 @@
"Go to writable demo site?": "Allez sur le site de démonstration modifiable ?", "Go to writable demo site?": "Allez sur le site de démonstration modifiable ?",
"Groups": "Groupes", "Groups": "Groupes",
"Groups - Tooltip": "Groupes - infobulle", "Groups - Tooltip": "Groupes - infobulle",
"Hide password": "Hide password",
"Home": "Accueil", "Home": "Accueil",
"Home - Tooltip": "Page d'accueil de l'application", "Home - Tooltip": "Page d'accueil de l'application",
"ID": "ID", "ID": "ID",
"ID - Tooltip": "Chaîne unique aléatoire", "ID - Tooltip": "Chaîne unique aléatoire",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "IP whitelist - Tooltip",
"Identity": "Identité", "Identity": "Identité",
"Invitations": "Invitations", "Invitations": "Invitations",
"Is enabled": "Est activé", "Is enabled": "Est activé",
@ -312,6 +327,10 @@
"Password - Tooltip": "Assurez-vous que le mot de passe soit correct", "Password - Tooltip": "Assurez-vous que le mot de passe soit correct",
"Password complexity options": "Options de complexité du mot de passe", "Password complexity options": "Options de complexité du mot de passe",
"Password complexity options - Tooltip": "Différentes combinaisons d'options de complexité de mot de passe", "Password complexity options - Tooltip": "Différentes combinaisons d'options de complexité de mot de passe",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Password obf key - Tooltip",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator - Tooltip",
"Password salt": "Sel de mot de passe", "Password salt": "Sel de mot de passe",
"Password salt - Tooltip": "Paramètre aléatoire utilisé pour le chiffrement des mots de passe", "Password salt - Tooltip": "Paramètre aléatoire utilisé pour le chiffrement des mots de passe",
"Password type": "Type de mot de passe", "Password type": "Type de mot de passe",
@ -559,7 +578,6 @@
"Use SMS": "Utiliser les SMS", "Use SMS": "Utiliser les SMS",
"Use SMS verification code": "Utiliser la vérification par code SMS", "Use SMS verification code": "Utiliser la vérification par code SMS",
"Use a recovery code": "Utiliser un code de récupération", "Use a recovery code": "Utiliser un code de récupération",
"Verification failed": "Échec de la vérification",
"Verify Code": "Vérifier le code", "Verify Code": "Vérifier le code",
"Verify Password": "Confirmez le mot de passe", "Verify Password": "Confirmez le mot de passe",
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue", "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
@ -592,6 +610,8 @@
"Modify rule": "Règle de modification", "Modify rule": "Règle de modification",
"New Organization": "Nouvelle organisation", "New Organization": "Nouvelle organisation",
"Optional": "Optionnel", "Optional": "Optionnel",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Password expire days - Tooltip",
"Prompt": "Prompt", "Prompt": "Prompt",
"Required": "Requis", "Required": "Requis",
"Soft deletion": "Suppression douce", "Soft deletion": "Suppression douce",
@ -709,7 +729,6 @@
"Alipay": "Alipay", "Alipay": "Alipay",
"Buy": "Acheter", "Buy": "Acheter",
"Buy Product": "Acheter un produit", "Buy Product": "Acheter un produit",
"CNY": "CNY",
"Detail": "Détail", "Detail": "Détail",
"Detail - Tooltip": "Détail du produit", "Detail - Tooltip": "Détail du produit",
"Dummy": "Exemple", "Dummy": "Exemple",
@ -740,7 +759,6 @@
"Test buy page..": "Page d'achat de test.", "Test buy page..": "Page d'achat de test.",
"There is no payment channel for this product.": "Il n'y a aucun canal de paiement pour ce produit.", "There is no payment channel for this product.": "Il n'y a aucun canal de paiement pour ce produit.",
"This product is currently not in sale.": "Ce produit n'est actuellement pas en vente.", "This product is currently not in sale.": "Ce produit n'est actuellement pas en vente.",
"USD": "USD",
"WeChat Pay": "WeChat Pay" "WeChat Pay": "WeChat Pay"
}, },
"provider": { "provider": {
@ -893,6 +911,7 @@
"Signup HTML - Edit": "HTML de la page d'inscription - Modifier", "Signup HTML - Edit": "HTML de la page d'inscription - Modifier",
"Signup HTML - Tooltip": "HTML personnalisé pour remplacer le style par défaut de la page d'inscription", "Signup HTML - Tooltip": "HTML personnalisé pour remplacer le style par défaut de la page d'inscription",
"Signup group": "Signup group", "Signup group": "Signup group",
"Signup group - Tooltip": "Signup group - Tooltip",
"Silent": "Silencieux", "Silent": "Silencieux",
"Site key": "Clé de site", "Site key": "Clé de site",
"Site key - Tooltip": "Clé de site", "Site key - Tooltip": "Clé de site",
@ -1157,6 +1176,7 @@
"Keys": "Clés", "Keys": "Clés",
"Language": "Langue", "Language": "Langue",
"Language - Tooltip": "Langue - Infobulle", "Language - Tooltip": "Langue - Infobulle",
"Last change password time": "Last change password time",
"Link": "Lier", "Link": "Lier",
"Location": "Localisation", "Location": "Localisation",
"Location - Tooltip": "Ville de résidence", "Location - Tooltip": "Ville de résidence",

View File

@ -161,6 +161,18 @@
"Sending": "Sending", "Sending": "Sending",
"Submit and complete": "Submit and complete" "Submit and complete": "Submit and complete"
}, },
"currency": {
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"JPY": "JPY",
"SGD": "SGD",
"USD": "USD"
},
"enforcer": { "enforcer": {
"Edit Enforcer": "Edit Enforcer", "Edit Enforcer": "Edit Enforcer",
"New Enforcer": "New Enforcer" "New Enforcer": "New Enforcer"
@ -266,10 +278,13 @@
"Go to writable demo site?": "Go to writable demo site?", "Go to writable demo site?": "Go to writable demo site?",
"Groups": "Groups", "Groups": "Groups",
"Groups - Tooltip": "Groups - Tooltip", "Groups - Tooltip": "Groups - Tooltip",
"Hide password": "Hide password",
"Home": "Home", "Home": "Home",
"Home - Tooltip": "Home page of the application", "Home - Tooltip": "Home page of the application",
"ID": "ID", "ID": "ID",
"ID - Tooltip": "Unique random string", "ID - Tooltip": "Unique random string",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "IP whitelist - Tooltip",
"Identity": "Identity", "Identity": "Identity",
"Invitations": "Invitations", "Invitations": "Invitations",
"Is enabled": "Is enabled", "Is enabled": "Is enabled",
@ -312,6 +327,10 @@
"Password - Tooltip": "Make sure the password is correct", "Password - Tooltip": "Make sure the password is correct",
"Password complexity options": "Password complexity options", "Password complexity options": "Password complexity options",
"Password complexity options - Tooltip": "Different combinations of password complexity options", "Password complexity options - Tooltip": "Different combinations of password complexity options",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Password obf key - Tooltip",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator - Tooltip",
"Password salt": "Password salt", "Password salt": "Password salt",
"Password salt - Tooltip": "Random parameter used for password encryption", "Password salt - Tooltip": "Random parameter used for password encryption",
"Password type": "Password type", "Password type": "Password type",
@ -559,7 +578,6 @@
"Use SMS": "Use SMS", "Use SMS": "Use SMS",
"Use SMS verification code": "Use SMS verification code", "Use SMS verification code": "Use SMS verification code",
"Use a recovery code": "Use a recovery code", "Use a recovery code": "Use a recovery code",
"Verification failed": "Verification failed",
"Verify Code": "Verify Code", "Verify Code": "Verify Code",
"Verify Password": "Verify Password", "Verify Password": "Verify Password",
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue", "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
@ -592,6 +610,8 @@
"Modify rule": "Modify rule", "Modify rule": "Modify rule",
"New Organization": "New Organization", "New Organization": "New Organization",
"Optional": "Optional", "Optional": "Optional",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Password expire days - Tooltip",
"Prompt": "Prompt", "Prompt": "Prompt",
"Required": "Required", "Required": "Required",
"Soft deletion": "Soft deletion", "Soft deletion": "Soft deletion",
@ -709,7 +729,6 @@
"Alipay": "Alipay", "Alipay": "Alipay",
"Buy": "Buy", "Buy": "Buy",
"Buy Product": "Buy Product", "Buy Product": "Buy Product",
"CNY": "CNY",
"Detail": "Detail", "Detail": "Detail",
"Detail - Tooltip": "Detail of product", "Detail - Tooltip": "Detail of product",
"Dummy": "Dummy", "Dummy": "Dummy",
@ -740,7 +759,6 @@
"Test buy page..": "Test buy page..", "Test buy page..": "Test buy page..",
"There is no payment channel for this product.": "There is no payment channel for this product.", "There is no payment channel for this product.": "There is no payment channel for this product.",
"This product is currently not in sale.": "This product is currently not in sale.", "This product is currently not in sale.": "This product is currently not in sale.",
"USD": "USD",
"WeChat Pay": "WeChat Pay" "WeChat Pay": "WeChat Pay"
}, },
"provider": { "provider": {
@ -893,6 +911,7 @@
"Signup HTML - Edit": "Signup HTML - Edit", "Signup HTML - Edit": "Signup HTML - Edit",
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style", "Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
"Signup group": "Signup group", "Signup group": "Signup group",
"Signup group - Tooltip": "Signup group - Tooltip",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Site key", "Site key": "Site key",
"Site key - Tooltip": "Site key", "Site key - Tooltip": "Site key",
@ -1157,6 +1176,7 @@
"Keys": "Keys", "Keys": "Keys",
"Language": "Language", "Language": "Language",
"Language - Tooltip": "Language - Tooltip", "Language - Tooltip": "Language - Tooltip",
"Last change password time": "Last change password time",
"Link": "Link", "Link": "Link",
"Location": "Location", "Location": "Location",
"Location - Tooltip": "City of residence", "Location - Tooltip": "City of residence",

View File

@ -161,6 +161,18 @@
"Sending": "Mengirimkan", "Sending": "Mengirimkan",
"Submit and complete": "Kirim dan selesaikan" "Submit and complete": "Kirim dan selesaikan"
}, },
"currency": {
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"JPY": "JPY",
"SGD": "SGD",
"USD": "USD"
},
"enforcer": { "enforcer": {
"Edit Enforcer": "Edit Enforcer", "Edit Enforcer": "Edit Enforcer",
"New Enforcer": "New Enforcer" "New Enforcer": "New Enforcer"
@ -266,10 +278,13 @@
"Go to writable demo site?": "Pergi ke situs demo yang dapat ditulis?", "Go to writable demo site?": "Pergi ke situs demo yang dapat ditulis?",
"Groups": "Groups", "Groups": "Groups",
"Groups - Tooltip": "Groups - Tooltip", "Groups - Tooltip": "Groups - Tooltip",
"Hide password": "Hide password",
"Home": "Rumah", "Home": "Rumah",
"Home - Tooltip": "Halaman utama aplikasi", "Home - Tooltip": "Halaman utama aplikasi",
"ID": "ID", "ID": "ID",
"ID - Tooltip": "Karakter acak unik", "ID - Tooltip": "Karakter acak unik",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "IP whitelist - Tooltip",
"Identity": "Identity", "Identity": "Identity",
"Invitations": "Invitations", "Invitations": "Invitations",
"Is enabled": "Diaktifkan", "Is enabled": "Diaktifkan",
@ -312,6 +327,10 @@
"Password - Tooltip": "Pastikan kata sandi yang benar", "Password - Tooltip": "Pastikan kata sandi yang benar",
"Password complexity options": "Password complexity options", "Password complexity options": "Password complexity options",
"Password complexity options - Tooltip": "Password complexity options - Tooltip", "Password complexity options - Tooltip": "Password complexity options - Tooltip",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Password obf key - Tooltip",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator - Tooltip",
"Password salt": "Garam sandi", "Password salt": "Garam sandi",
"Password salt - Tooltip": "Parameter acak yang digunakan untuk enkripsi kata sandi", "Password salt - Tooltip": "Parameter acak yang digunakan untuk enkripsi kata sandi",
"Password type": "Jenis kata sandi", "Password type": "Jenis kata sandi",
@ -559,7 +578,6 @@
"Use SMS": "Use SMS", "Use SMS": "Use SMS",
"Use SMS verification code": "Use SMS verification code", "Use SMS verification code": "Use SMS verification code",
"Use a recovery code": "Use a recovery code", "Use a recovery code": "Use a recovery code",
"Verification failed": "Verification failed",
"Verify Code": "Verify Code", "Verify Code": "Verify Code",
"Verify Password": "Verify Password", "Verify Password": "Verify Password",
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue", "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
@ -592,6 +610,8 @@
"Modify rule": "Mengubah aturan", "Modify rule": "Mengubah aturan",
"New Organization": "Organisasi baru", "New Organization": "Organisasi baru",
"Optional": "Optional", "Optional": "Optional",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Password expire days - Tooltip",
"Prompt": "Prompt", "Prompt": "Prompt",
"Required": "Required", "Required": "Required",
"Soft deletion": "Penghapusan lunak", "Soft deletion": "Penghapusan lunak",
@ -709,7 +729,6 @@
"Alipay": "Alipay", "Alipay": "Alipay",
"Buy": "Beli", "Buy": "Beli",
"Buy Product": "Beli Produk", "Buy Product": "Beli Produk",
"CNY": "CNY",
"Detail": "Rincian", "Detail": "Rincian",
"Detail - Tooltip": "Detail produk", "Detail - Tooltip": "Detail produk",
"Dummy": "Dummy", "Dummy": "Dummy",
@ -740,7 +759,6 @@
"Test buy page..": "Halaman pembelian uji coba.", "Test buy page..": "Halaman pembelian uji coba.",
"There is no payment channel for this product.": "Tidak ada saluran pembayaran untuk produk ini.", "There is no payment channel for this product.": "Tidak ada saluran pembayaran untuk produk ini.",
"This product is currently not in sale.": "Produk ini saat ini tidak dijual.", "This product is currently not in sale.": "Produk ini saat ini tidak dijual.",
"USD": "USD",
"WeChat Pay": "WeChat Pay" "WeChat Pay": "WeChat Pay"
}, },
"provider": { "provider": {
@ -893,6 +911,7 @@
"Signup HTML - Edit": "Pendaftaran HTML - Sunting", "Signup HTML - Edit": "Pendaftaran HTML - Sunting",
"Signup HTML - Tooltip": "HTML khusus untuk mengganti gaya halaman pendaftaran bawaan", "Signup HTML - Tooltip": "HTML khusus untuk mengganti gaya halaman pendaftaran bawaan",
"Signup group": "Signup group", "Signup group": "Signup group",
"Signup group - Tooltip": "Signup group - Tooltip",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Kunci situs", "Site key": "Kunci situs",
"Site key - Tooltip": "Kunci situs atau kunci halaman web", "Site key - Tooltip": "Kunci situs atau kunci halaman web",
@ -1157,6 +1176,7 @@
"Keys": "Kunci", "Keys": "Kunci",
"Language": "Language", "Language": "Language",
"Language - Tooltip": "Language - Tooltip", "Language - Tooltip": "Language - Tooltip",
"Last change password time": "Last change password time",
"Link": "Tautan", "Link": "Tautan",
"Location": "Lokasi", "Location": "Lokasi",
"Location - Tooltip": "Kota tempat tinggal", "Location - Tooltip": "Kota tempat tinggal",

View File

@ -161,6 +161,18 @@
"Sending": "Sending", "Sending": "Sending",
"Submit and complete": "Submit and complete" "Submit and complete": "Submit and complete"
}, },
"currency": {
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"JPY": "JPY",
"SGD": "SGD",
"USD": "USD"
},
"enforcer": { "enforcer": {
"Edit Enforcer": "Edit Enforcer", "Edit Enforcer": "Edit Enforcer",
"New Enforcer": "New Enforcer" "New Enforcer": "New Enforcer"
@ -266,10 +278,13 @@
"Go to writable demo site?": "Go to writable demo site?", "Go to writable demo site?": "Go to writable demo site?",
"Groups": "Groups", "Groups": "Groups",
"Groups - Tooltip": "Groups - Tooltip", "Groups - Tooltip": "Groups - Tooltip",
"Hide password": "Hide password",
"Home": "Home", "Home": "Home",
"Home - Tooltip": "Home page of the application", "Home - Tooltip": "Home page of the application",
"ID": "ID", "ID": "ID",
"ID - Tooltip": "Unique random string", "ID - Tooltip": "Unique random string",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "IP whitelist - Tooltip",
"Identity": "Identity", "Identity": "Identity",
"Invitations": "Invitations", "Invitations": "Invitations",
"Is enabled": "Is enabled", "Is enabled": "Is enabled",
@ -312,6 +327,10 @@
"Password - Tooltip": "Make sure the password is correct", "Password - Tooltip": "Make sure the password is correct",
"Password complexity options": "Password complexity options", "Password complexity options": "Password complexity options",
"Password complexity options - Tooltip": "Different combinations of password complexity options", "Password complexity options - Tooltip": "Different combinations of password complexity options",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Password obf key - Tooltip",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator - Tooltip",
"Password salt": "Password salt", "Password salt": "Password salt",
"Password salt - Tooltip": "Random parameter used for password encryption", "Password salt - Tooltip": "Random parameter used for password encryption",
"Password type": "Password type", "Password type": "Password type",
@ -559,7 +578,6 @@
"Use SMS": "Use SMS", "Use SMS": "Use SMS",
"Use SMS verification code": "Use SMS verification code", "Use SMS verification code": "Use SMS verification code",
"Use a recovery code": "Use a recovery code", "Use a recovery code": "Use a recovery code",
"Verification failed": "Verification failed",
"Verify Code": "Verify Code", "Verify Code": "Verify Code",
"Verify Password": "Verify Password", "Verify Password": "Verify Password",
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue", "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
@ -592,6 +610,8 @@
"Modify rule": "Modify rule", "Modify rule": "Modify rule",
"New Organization": "New Organization", "New Organization": "New Organization",
"Optional": "Optional", "Optional": "Optional",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Password expire days - Tooltip",
"Prompt": "Prompt", "Prompt": "Prompt",
"Required": "Required", "Required": "Required",
"Soft deletion": "Soft deletion", "Soft deletion": "Soft deletion",
@ -709,7 +729,6 @@
"Alipay": "Alipay", "Alipay": "Alipay",
"Buy": "Buy", "Buy": "Buy",
"Buy Product": "Buy Product", "Buy Product": "Buy Product",
"CNY": "CNY",
"Detail": "Detail", "Detail": "Detail",
"Detail - Tooltip": "Detail of product", "Detail - Tooltip": "Detail of product",
"Dummy": "Dummy", "Dummy": "Dummy",
@ -740,7 +759,6 @@
"Test buy page..": "Test buy page..", "Test buy page..": "Test buy page..",
"There is no payment channel for this product.": "There is no payment channel for this product.", "There is no payment channel for this product.": "There is no payment channel for this product.",
"This product is currently not in sale.": "This product is currently not in sale.", "This product is currently not in sale.": "This product is currently not in sale.",
"USD": "USD",
"WeChat Pay": "WeChat Pay" "WeChat Pay": "WeChat Pay"
}, },
"provider": { "provider": {
@ -893,6 +911,7 @@
"Signup HTML - Edit": "Signup HTML - Edit", "Signup HTML - Edit": "Signup HTML - Edit",
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style", "Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
"Signup group": "Signup group", "Signup group": "Signup group",
"Signup group - Tooltip": "Signup group - Tooltip",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Site key", "Site key": "Site key",
"Site key - Tooltip": "Site key", "Site key - Tooltip": "Site key",
@ -1157,6 +1176,7 @@
"Keys": "Keys", "Keys": "Keys",
"Language": "Language", "Language": "Language",
"Language - Tooltip": "Language - Tooltip", "Language - Tooltip": "Language - Tooltip",
"Last change password time": "Last change password time",
"Link": "Link", "Link": "Link",
"Location": "Location", "Location": "Location",
"Location - Tooltip": "City of residence", "Location - Tooltip": "City of residence",

View File

@ -161,6 +161,18 @@
"Sending": "送信", "Sending": "送信",
"Submit and complete": "提出して完了してください" "Submit and complete": "提出して完了してください"
}, },
"currency": {
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"JPY": "JPY",
"SGD": "SGD",
"USD": "USD"
},
"enforcer": { "enforcer": {
"Edit Enforcer": "Edit Enforcer", "Edit Enforcer": "Edit Enforcer",
"New Enforcer": "New Enforcer" "New Enforcer": "New Enforcer"
@ -266,10 +278,13 @@
"Go to writable demo site?": "書き込み可能なデモサイトに移動しますか?", "Go to writable demo site?": "書き込み可能なデモサイトに移動しますか?",
"Groups": "Groups", "Groups": "Groups",
"Groups - Tooltip": "Groups - Tooltip", "Groups - Tooltip": "Groups - Tooltip",
"Hide password": "Hide password",
"Home": "ホーム", "Home": "ホーム",
"Home - Tooltip": "アプリケーションのホームページ", "Home - Tooltip": "アプリケーションのホームページ",
"ID": "ID", "ID": "ID",
"ID - Tooltip": "ユニークなランダム文字列", "ID - Tooltip": "ユニークなランダム文字列",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "IP whitelist - Tooltip",
"Identity": "Identity", "Identity": "Identity",
"Invitations": "Invitations", "Invitations": "Invitations",
"Is enabled": "可能になっています", "Is enabled": "可能になっています",
@ -312,6 +327,10 @@
"Password - Tooltip": "パスワードが正しいことを確認してください", "Password - Tooltip": "パスワードが正しいことを確認してください",
"Password complexity options": "Password complexity options", "Password complexity options": "Password complexity options",
"Password complexity options - Tooltip": "Password complexity options - Tooltip", "Password complexity options - Tooltip": "Password complexity options - Tooltip",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Password obf key - Tooltip",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator - Tooltip",
"Password salt": "パスワードのソルト", "Password salt": "パスワードのソルト",
"Password salt - Tooltip": "ランダムパラメーターは、パスワードの暗号化に使用されます", "Password salt - Tooltip": "ランダムパラメーターは、パスワードの暗号化に使用されます",
"Password type": "パスワードタイプ", "Password type": "パスワードタイプ",
@ -559,7 +578,6 @@
"Use SMS": "Use SMS", "Use SMS": "Use SMS",
"Use SMS verification code": "Use SMS verification code", "Use SMS verification code": "Use SMS verification code",
"Use a recovery code": "Use a recovery code", "Use a recovery code": "Use a recovery code",
"Verification failed": "Verification failed",
"Verify Code": "Verify Code", "Verify Code": "Verify Code",
"Verify Password": "Verify Password", "Verify Password": "Verify Password",
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue", "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
@ -592,6 +610,8 @@
"Modify rule": "ルールを変更する", "Modify rule": "ルールを変更する",
"New Organization": "新しい組織", "New Organization": "新しい組織",
"Optional": "Optional", "Optional": "Optional",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Password expire days - Tooltip",
"Prompt": "Prompt", "Prompt": "Prompt",
"Required": "Required", "Required": "Required",
"Soft deletion": "ソフト削除", "Soft deletion": "ソフト削除",
@ -709,7 +729,6 @@
"Alipay": "Alipay", "Alipay": "Alipay",
"Buy": "購入", "Buy": "購入",
"Buy Product": "製品を購入する", "Buy Product": "製品を購入する",
"CNY": "CNY",
"Detail": "詳細", "Detail": "詳細",
"Detail - Tooltip": "製品の詳細", "Detail - Tooltip": "製品の詳細",
"Dummy": "Dummy", "Dummy": "Dummy",
@ -740,7 +759,6 @@
"Test buy page..": "テスト購入ページ。", "Test buy page..": "テスト購入ページ。",
"There is no payment channel for this product.": "この製品には支払いチャネルがありません。", "There is no payment channel for this product.": "この製品には支払いチャネルがありません。",
"This product is currently not in sale.": "この製品は現在販売されていません。", "This product is currently not in sale.": "この製品は現在販売されていません。",
"USD": "USD",
"WeChat Pay": "WeChat Pay" "WeChat Pay": "WeChat Pay"
}, },
"provider": { "provider": {
@ -893,6 +911,7 @@
"Signup HTML - Edit": "サインアップ HTML - 編集", "Signup HTML - Edit": "サインアップ HTML - 編集",
"Signup HTML - Tooltip": "デフォルトのサインアップページスタイルを置き換えるためのカスタムHTML", "Signup HTML - Tooltip": "デフォルトのサインアップページスタイルを置き換えるためのカスタムHTML",
"Signup group": "Signup group", "Signup group": "Signup group",
"Signup group - Tooltip": "Signup group - Tooltip",
"Silent": "Silent", "Silent": "Silent",
"Site key": "サイトキー", "Site key": "サイトキー",
"Site key - Tooltip": "サイトキー", "Site key - Tooltip": "サイトキー",
@ -1157,6 +1176,7 @@
"Keys": "鍵", "Keys": "鍵",
"Language": "Language", "Language": "Language",
"Language - Tooltip": "Language - Tooltip", "Language - Tooltip": "Language - Tooltip",
"Last change password time": "Last change password time",
"Link": "リンク", "Link": "リンク",
"Location": "場所", "Location": "場所",
"Location - Tooltip": "居住都市", "Location - Tooltip": "居住都市",

View File

@ -161,6 +161,18 @@
"Sending": "Sending", "Sending": "Sending",
"Submit and complete": "Submit and complete" "Submit and complete": "Submit and complete"
}, },
"currency": {
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"JPY": "JPY",
"SGD": "SGD",
"USD": "USD"
},
"enforcer": { "enforcer": {
"Edit Enforcer": "Edit Enforcer", "Edit Enforcer": "Edit Enforcer",
"New Enforcer": "New Enforcer" "New Enforcer": "New Enforcer"
@ -266,10 +278,13 @@
"Go to writable demo site?": "Go to writable demo site?", "Go to writable demo site?": "Go to writable demo site?",
"Groups": "Groups", "Groups": "Groups",
"Groups - Tooltip": "Groups - Tooltip", "Groups - Tooltip": "Groups - Tooltip",
"Hide password": "Hide password",
"Home": "Home", "Home": "Home",
"Home - Tooltip": "Home page of the application", "Home - Tooltip": "Home page of the application",
"ID": "ID", "ID": "ID",
"ID - Tooltip": "Unique random string", "ID - Tooltip": "Unique random string",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "IP whitelist - Tooltip",
"Identity": "Identity", "Identity": "Identity",
"Invitations": "Invitations", "Invitations": "Invitations",
"Is enabled": "Is enabled", "Is enabled": "Is enabled",
@ -312,6 +327,10 @@
"Password - Tooltip": "Make sure the password is correct", "Password - Tooltip": "Make sure the password is correct",
"Password complexity options": "Password complexity options", "Password complexity options": "Password complexity options",
"Password complexity options - Tooltip": "Different combinations of password complexity options", "Password complexity options - Tooltip": "Different combinations of password complexity options",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Password obf key - Tooltip",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator - Tooltip",
"Password salt": "Password salt", "Password salt": "Password salt",
"Password salt - Tooltip": "Random parameter used for password encryption", "Password salt - Tooltip": "Random parameter used for password encryption",
"Password type": "Password type", "Password type": "Password type",
@ -559,7 +578,6 @@
"Use SMS": "Use SMS", "Use SMS": "Use SMS",
"Use SMS verification code": "Use SMS verification code", "Use SMS verification code": "Use SMS verification code",
"Use a recovery code": "Use a recovery code", "Use a recovery code": "Use a recovery code",
"Verification failed": "Verification failed",
"Verify Code": "Verify Code", "Verify Code": "Verify Code",
"Verify Password": "Verify Password", "Verify Password": "Verify Password",
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue", "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
@ -592,6 +610,8 @@
"Modify rule": "Modify rule", "Modify rule": "Modify rule",
"New Organization": "New Organization", "New Organization": "New Organization",
"Optional": "Optional", "Optional": "Optional",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Password expire days - Tooltip",
"Prompt": "Prompt", "Prompt": "Prompt",
"Required": "Required", "Required": "Required",
"Soft deletion": "Soft deletion", "Soft deletion": "Soft deletion",
@ -709,7 +729,6 @@
"Alipay": "Alipay", "Alipay": "Alipay",
"Buy": "Buy", "Buy": "Buy",
"Buy Product": "Buy Product", "Buy Product": "Buy Product",
"CNY": "CNY",
"Detail": "Detail", "Detail": "Detail",
"Detail - Tooltip": "Detail of product", "Detail - Tooltip": "Detail of product",
"Dummy": "Dummy", "Dummy": "Dummy",
@ -740,7 +759,6 @@
"Test buy page..": "Test buy page..", "Test buy page..": "Test buy page..",
"There is no payment channel for this product.": "There is no payment channel for this product.", "There is no payment channel for this product.": "There is no payment channel for this product.",
"This product is currently not in sale.": "This product is currently not in sale.", "This product is currently not in sale.": "This product is currently not in sale.",
"USD": "USD",
"WeChat Pay": "WeChat Pay" "WeChat Pay": "WeChat Pay"
}, },
"provider": { "provider": {
@ -893,6 +911,7 @@
"Signup HTML - Edit": "Signup HTML - Edit", "Signup HTML - Edit": "Signup HTML - Edit",
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style", "Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
"Signup group": "Signup group", "Signup group": "Signup group",
"Signup group - Tooltip": "Signup group - Tooltip",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Site key", "Site key": "Site key",
"Site key - Tooltip": "Site key", "Site key - Tooltip": "Site key",
@ -1157,6 +1176,7 @@
"Keys": "Keys", "Keys": "Keys",
"Language": "Language", "Language": "Language",
"Language - Tooltip": "Language - Tooltip", "Language - Tooltip": "Language - Tooltip",
"Last change password time": "Last change password time",
"Link": "Link", "Link": "Link",
"Location": "Location", "Location": "Location",
"Location - Tooltip": "City of residence", "Location - Tooltip": "City of residence",

View File

@ -161,6 +161,18 @@
"Sending": "전송하기", "Sending": "전송하기",
"Submit and complete": "제출하고 완료하십시오" "Submit and complete": "제출하고 완료하십시오"
}, },
"currency": {
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"JPY": "JPY",
"SGD": "SGD",
"USD": "USD"
},
"enforcer": { "enforcer": {
"Edit Enforcer": "Edit Enforcer", "Edit Enforcer": "Edit Enforcer",
"New Enforcer": "New Enforcer" "New Enforcer": "New Enforcer"
@ -266,10 +278,13 @@
"Go to writable demo site?": "쓰기 가능한 데모 사이트로 이동하시겠습니까?", "Go to writable demo site?": "쓰기 가능한 데모 사이트로 이동하시겠습니까?",
"Groups": "그룹", "Groups": "그룹",
"Groups - Tooltip": "Groups - Tooltip", "Groups - Tooltip": "Groups - Tooltip",
"Hide password": "Hide password",
"Home": "집", "Home": "집",
"Home - Tooltip": "어플리케이션 홈 페이지", "Home - Tooltip": "어플리케이션 홈 페이지",
"ID": "ID", "ID": "ID",
"ID - Tooltip": "유일한 랜덤 문자열", "ID - Tooltip": "유일한 랜덤 문자열",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "IP whitelist - Tooltip",
"Identity": "Identity", "Identity": "Identity",
"Invitations": "Invitations", "Invitations": "Invitations",
"Is enabled": "활성화됩니다", "Is enabled": "활성화됩니다",
@ -312,6 +327,10 @@
"Password - Tooltip": "비밀번호가 올바른지 확인하세요", "Password - Tooltip": "비밀번호가 올바른지 확인하세요",
"Password complexity options": "Password complexity options", "Password complexity options": "Password complexity options",
"Password complexity options - Tooltip": "Password complexity options - Tooltip", "Password complexity options - Tooltip": "Password complexity options - Tooltip",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Password obf key - Tooltip",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator - Tooltip",
"Password salt": "비밀번호 솔트", "Password salt": "비밀번호 솔트",
"Password salt - Tooltip": "암호화에 사용되는 임의 매개변수", "Password salt - Tooltip": "암호화에 사용되는 임의 매개변수",
"Password type": "암호 유형", "Password type": "암호 유형",
@ -559,7 +578,6 @@
"Use SMS": "Use SMS", "Use SMS": "Use SMS",
"Use SMS verification code": "Use SMS verification code", "Use SMS verification code": "Use SMS verification code",
"Use a recovery code": "Use a recovery code", "Use a recovery code": "Use a recovery code",
"Verification failed": "Verification failed",
"Verify Code": "Verify Code", "Verify Code": "Verify Code",
"Verify Password": "Verify Password", "Verify Password": "Verify Password",
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue", "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
@ -592,6 +610,8 @@
"Modify rule": "규칙 수정", "Modify rule": "규칙 수정",
"New Organization": "새로운 조직", "New Organization": "새로운 조직",
"Optional": "선택사항", "Optional": "선택사항",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Password expire days - Tooltip",
"Prompt": "Prompt", "Prompt": "Prompt",
"Required": "Required", "Required": "Required",
"Soft deletion": "소프트 삭제", "Soft deletion": "소프트 삭제",
@ -709,7 +729,6 @@
"Alipay": "Alipay", "Alipay": "Alipay",
"Buy": "구매하다", "Buy": "구매하다",
"Buy Product": "제품을 구입하세요", "Buy Product": "제품을 구입하세요",
"CNY": "CNY",
"Detail": "세부사항", "Detail": "세부사항",
"Detail - Tooltip": "제품의 세부사항", "Detail - Tooltip": "제품의 세부사항",
"Dummy": "Dummy", "Dummy": "Dummy",
@ -740,7 +759,6 @@
"Test buy page..": "시험 구매 페이지.", "Test buy page..": "시험 구매 페이지.",
"There is no payment channel for this product.": "이 제품에 대한 결제 채널이 없습니다.", "There is no payment channel for this product.": "이 제품에 대한 결제 채널이 없습니다.",
"This product is currently not in sale.": "이 제품은 현재 판매되지 않고 있습니다.", "This product is currently not in sale.": "이 제품은 현재 판매되지 않고 있습니다.",
"USD": "USD",
"WeChat Pay": "WeChat Pay" "WeChat Pay": "WeChat Pay"
}, },
"provider": { "provider": {
@ -893,6 +911,7 @@
"Signup HTML - Edit": "가입 HTML - 수정", "Signup HTML - Edit": "가입 HTML - 수정",
"Signup HTML - Tooltip": "기본 가입 페이지 스타일을 바꾸기 위한 사용자 지정 HTML", "Signup HTML - Tooltip": "기본 가입 페이지 스타일을 바꾸기 위한 사용자 지정 HTML",
"Signup group": "Signup group", "Signup group": "Signup group",
"Signup group - Tooltip": "Signup group - Tooltip",
"Silent": "Silent", "Silent": "Silent",
"Site key": "사이트 키", "Site key": "사이트 키",
"Site key - Tooltip": "사이트 키", "Site key - Tooltip": "사이트 키",
@ -1157,6 +1176,7 @@
"Keys": "열쇠", "Keys": "열쇠",
"Language": "Language", "Language": "Language",
"Language - Tooltip": "Language - Tooltip", "Language - Tooltip": "Language - Tooltip",
"Last change password time": "Last change password time",
"Link": "링크", "Link": "링크",
"Location": "장소", "Location": "장소",
"Location - Tooltip": "거주 도시", "Location - Tooltip": "거주 도시",

View File

@ -161,6 +161,18 @@
"Sending": "Sending", "Sending": "Sending",
"Submit and complete": "Submit and complete" "Submit and complete": "Submit and complete"
}, },
"currency": {
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"JPY": "JPY",
"SGD": "SGD",
"USD": "USD"
},
"enforcer": { "enforcer": {
"Edit Enforcer": "Edit Enforcer", "Edit Enforcer": "Edit Enforcer",
"New Enforcer": "New Enforcer" "New Enforcer": "New Enforcer"
@ -266,10 +278,13 @@
"Go to writable demo site?": "Go to writable demo site?", "Go to writable demo site?": "Go to writable demo site?",
"Groups": "Groups", "Groups": "Groups",
"Groups - Tooltip": "Groups - Tooltip", "Groups - Tooltip": "Groups - Tooltip",
"Hide password": "Hide password",
"Home": "Home", "Home": "Home",
"Home - Tooltip": "Home page of the application", "Home - Tooltip": "Home page of the application",
"ID": "ID", "ID": "ID",
"ID - Tooltip": "Unique random string", "ID - Tooltip": "Unique random string",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "IP whitelist - Tooltip",
"Identity": "Identity", "Identity": "Identity",
"Invitations": "Invitations", "Invitations": "Invitations",
"Is enabled": "Is enabled", "Is enabled": "Is enabled",
@ -312,6 +327,10 @@
"Password - Tooltip": "Make sure the password is correct", "Password - Tooltip": "Make sure the password is correct",
"Password complexity options": "Password complexity options", "Password complexity options": "Password complexity options",
"Password complexity options - Tooltip": "Different combinations of password complexity options", "Password complexity options - Tooltip": "Different combinations of password complexity options",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Password obf key - Tooltip",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator - Tooltip",
"Password salt": "Password salt", "Password salt": "Password salt",
"Password salt - Tooltip": "Random parameter used for password encryption", "Password salt - Tooltip": "Random parameter used for password encryption",
"Password type": "Password type", "Password type": "Password type",
@ -559,7 +578,6 @@
"Use SMS": "Use SMS", "Use SMS": "Use SMS",
"Use SMS verification code": "Use SMS verification code", "Use SMS verification code": "Use SMS verification code",
"Use a recovery code": "Use a recovery code", "Use a recovery code": "Use a recovery code",
"Verification failed": "Verification failed",
"Verify Code": "Verify Code", "Verify Code": "Verify Code",
"Verify Password": "Verify Password", "Verify Password": "Verify Password",
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue", "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
@ -592,6 +610,8 @@
"Modify rule": "Modify rule", "Modify rule": "Modify rule",
"New Organization": "New Organization", "New Organization": "New Organization",
"Optional": "Optional", "Optional": "Optional",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Password expire days - Tooltip",
"Prompt": "Prompt", "Prompt": "Prompt",
"Required": "Required", "Required": "Required",
"Soft deletion": "Soft deletion", "Soft deletion": "Soft deletion",
@ -709,7 +729,6 @@
"Alipay": "Alipay", "Alipay": "Alipay",
"Buy": "Buy", "Buy": "Buy",
"Buy Product": "Buy Product", "Buy Product": "Buy Product",
"CNY": "CNY",
"Detail": "Detail", "Detail": "Detail",
"Detail - Tooltip": "Detail of product", "Detail - Tooltip": "Detail of product",
"Dummy": "Dummy", "Dummy": "Dummy",
@ -740,7 +759,6 @@
"Test buy page..": "Test buy page..", "Test buy page..": "Test buy page..",
"There is no payment channel for this product.": "There is no payment channel for this product.", "There is no payment channel for this product.": "There is no payment channel for this product.",
"This product is currently not in sale.": "This product is currently not in sale.", "This product is currently not in sale.": "This product is currently not in sale.",
"USD": "USD",
"WeChat Pay": "WeChat Pay" "WeChat Pay": "WeChat Pay"
}, },
"provider": { "provider": {
@ -893,6 +911,7 @@
"Signup HTML - Edit": "Signup HTML - Edit", "Signup HTML - Edit": "Signup HTML - Edit",
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style", "Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
"Signup group": "Signup group", "Signup group": "Signup group",
"Signup group - Tooltip": "Signup group - Tooltip",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Site key", "Site key": "Site key",
"Site key - Tooltip": "Site key", "Site key - Tooltip": "Site key",
@ -1157,6 +1176,7 @@
"Keys": "Keys", "Keys": "Keys",
"Language": "Language", "Language": "Language",
"Language - Tooltip": "Language - Tooltip", "Language - Tooltip": "Language - Tooltip",
"Last change password time": "Last change password time",
"Link": "Link", "Link": "Link",
"Location": "Location", "Location": "Location",
"Location - Tooltip": "City of residence", "Location - Tooltip": "City of residence",

View File

@ -161,6 +161,18 @@
"Sending": "Sending", "Sending": "Sending",
"Submit and complete": "Submit and complete" "Submit and complete": "Submit and complete"
}, },
"currency": {
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"JPY": "JPY",
"SGD": "SGD",
"USD": "USD"
},
"enforcer": { "enforcer": {
"Edit Enforcer": "Edit Enforcer", "Edit Enforcer": "Edit Enforcer",
"New Enforcer": "New Enforcer" "New Enforcer": "New Enforcer"
@ -266,10 +278,13 @@
"Go to writable demo site?": "Go to writable demo site?", "Go to writable demo site?": "Go to writable demo site?",
"Groups": "Groups", "Groups": "Groups",
"Groups - Tooltip": "Groups - Tooltip", "Groups - Tooltip": "Groups - Tooltip",
"Hide password": "Hide password",
"Home": "Home", "Home": "Home",
"Home - Tooltip": "Home page of the application", "Home - Tooltip": "Home page of the application",
"ID": "ID", "ID": "ID",
"ID - Tooltip": "Unique random string", "ID - Tooltip": "Unique random string",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "IP whitelist - Tooltip",
"Identity": "Identity", "Identity": "Identity",
"Invitations": "Invitations", "Invitations": "Invitations",
"Is enabled": "Is enabled", "Is enabled": "Is enabled",
@ -312,6 +327,10 @@
"Password - Tooltip": "Make sure the password is correct", "Password - Tooltip": "Make sure the password is correct",
"Password complexity options": "Password complexity options", "Password complexity options": "Password complexity options",
"Password complexity options - Tooltip": "Different combinations of password complexity options", "Password complexity options - Tooltip": "Different combinations of password complexity options",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Password obf key - Tooltip",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator - Tooltip",
"Password salt": "Password salt", "Password salt": "Password salt",
"Password salt - Tooltip": "Random parameter used for password encryption", "Password salt - Tooltip": "Random parameter used for password encryption",
"Password type": "Password type", "Password type": "Password type",
@ -559,7 +578,6 @@
"Use SMS": "Use SMS", "Use SMS": "Use SMS",
"Use SMS verification code": "Use SMS verification code", "Use SMS verification code": "Use SMS verification code",
"Use a recovery code": "Use a recovery code", "Use a recovery code": "Use a recovery code",
"Verification failed": "Verification failed",
"Verify Code": "Verify Code", "Verify Code": "Verify Code",
"Verify Password": "Verify Password", "Verify Password": "Verify Password",
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue", "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
@ -592,6 +610,8 @@
"Modify rule": "Modify rule", "Modify rule": "Modify rule",
"New Organization": "New Organization", "New Organization": "New Organization",
"Optional": "Optional", "Optional": "Optional",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Password expire days - Tooltip",
"Prompt": "Prompt", "Prompt": "Prompt",
"Required": "Required", "Required": "Required",
"Soft deletion": "Soft deletion", "Soft deletion": "Soft deletion",
@ -709,7 +729,6 @@
"Alipay": "Alipay", "Alipay": "Alipay",
"Buy": "Buy", "Buy": "Buy",
"Buy Product": "Buy Product", "Buy Product": "Buy Product",
"CNY": "CNY",
"Detail": "Detail", "Detail": "Detail",
"Detail - Tooltip": "Detail of product", "Detail - Tooltip": "Detail of product",
"Dummy": "Dummy", "Dummy": "Dummy",
@ -740,7 +759,6 @@
"Test buy page..": "Test buy page..", "Test buy page..": "Test buy page..",
"There is no payment channel for this product.": "There is no payment channel for this product.", "There is no payment channel for this product.": "There is no payment channel for this product.",
"This product is currently not in sale.": "This product is currently not in sale.", "This product is currently not in sale.": "This product is currently not in sale.",
"USD": "USD",
"WeChat Pay": "WeChat Pay" "WeChat Pay": "WeChat Pay"
}, },
"provider": { "provider": {
@ -893,6 +911,7 @@
"Signup HTML - Edit": "Signup HTML - Edit", "Signup HTML - Edit": "Signup HTML - Edit",
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style", "Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
"Signup group": "Signup group", "Signup group": "Signup group",
"Signup group - Tooltip": "Signup group - Tooltip",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Site key", "Site key": "Site key",
"Site key - Tooltip": "Site key", "Site key - Tooltip": "Site key",
@ -1157,6 +1176,7 @@
"Keys": "Keys", "Keys": "Keys",
"Language": "Language", "Language": "Language",
"Language - Tooltip": "Language - Tooltip", "Language - Tooltip": "Language - Tooltip",
"Last change password time": "Last change password time",
"Link": "Link", "Link": "Link",
"Location": "Location", "Location": "Location",
"Location - Tooltip": "City of residence", "Location - Tooltip": "City of residence",

View File

@ -161,6 +161,18 @@
"Sending": "Sending", "Sending": "Sending",
"Submit and complete": "Submit and complete" "Submit and complete": "Submit and complete"
}, },
"currency": {
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"JPY": "JPY",
"SGD": "SGD",
"USD": "USD"
},
"enforcer": { "enforcer": {
"Edit Enforcer": "Edit Enforcer", "Edit Enforcer": "Edit Enforcer",
"New Enforcer": "New Enforcer" "New Enforcer": "New Enforcer"
@ -266,10 +278,13 @@
"Go to writable demo site?": "Go to writable demo site?", "Go to writable demo site?": "Go to writable demo site?",
"Groups": "Groups", "Groups": "Groups",
"Groups - Tooltip": "Groups - Tooltip", "Groups - Tooltip": "Groups - Tooltip",
"Hide password": "Hide password",
"Home": "Home", "Home": "Home",
"Home - Tooltip": "Home page of the application", "Home - Tooltip": "Home page of the application",
"ID": "ID", "ID": "ID",
"ID - Tooltip": "Unique random string", "ID - Tooltip": "Unique random string",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "IP whitelist - Tooltip",
"Identity": "Identity", "Identity": "Identity",
"Invitations": "Invitations", "Invitations": "Invitations",
"Is enabled": "Is enabled", "Is enabled": "Is enabled",
@ -312,6 +327,10 @@
"Password - Tooltip": "Make sure the password is correct", "Password - Tooltip": "Make sure the password is correct",
"Password complexity options": "Password complexity options", "Password complexity options": "Password complexity options",
"Password complexity options - Tooltip": "Different combinations of password complexity options", "Password complexity options - Tooltip": "Different combinations of password complexity options",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Password obf key - Tooltip",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator - Tooltip",
"Password salt": "Password salt", "Password salt": "Password salt",
"Password salt - Tooltip": "Random parameter used for password encryption", "Password salt - Tooltip": "Random parameter used for password encryption",
"Password type": "Password type", "Password type": "Password type",
@ -559,7 +578,6 @@
"Use SMS": "Use SMS", "Use SMS": "Use SMS",
"Use SMS verification code": "Use SMS verification code", "Use SMS verification code": "Use SMS verification code",
"Use a recovery code": "Use a recovery code", "Use a recovery code": "Use a recovery code",
"Verification failed": "Verification failed",
"Verify Code": "Verify Code", "Verify Code": "Verify Code",
"Verify Password": "Verify Password", "Verify Password": "Verify Password",
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue", "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
@ -592,6 +610,8 @@
"Modify rule": "Modify rule", "Modify rule": "Modify rule",
"New Organization": "New Organization", "New Organization": "New Organization",
"Optional": "Optional", "Optional": "Optional",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Password expire days - Tooltip",
"Prompt": "Prompt", "Prompt": "Prompt",
"Required": "Required", "Required": "Required",
"Soft deletion": "Soft deletion", "Soft deletion": "Soft deletion",
@ -709,7 +729,6 @@
"Alipay": "Alipay", "Alipay": "Alipay",
"Buy": "Buy", "Buy": "Buy",
"Buy Product": "Buy Product", "Buy Product": "Buy Product",
"CNY": "CNY",
"Detail": "Detail", "Detail": "Detail",
"Detail - Tooltip": "Detail of product", "Detail - Tooltip": "Detail of product",
"Dummy": "Dummy", "Dummy": "Dummy",
@ -740,7 +759,6 @@
"Test buy page..": "Test buy page..", "Test buy page..": "Test buy page..",
"There is no payment channel for this product.": "There is no payment channel for this product.", "There is no payment channel for this product.": "There is no payment channel for this product.",
"This product is currently not in sale.": "This product is currently not in sale.", "This product is currently not in sale.": "This product is currently not in sale.",
"USD": "USD",
"WeChat Pay": "WeChat Pay" "WeChat Pay": "WeChat Pay"
}, },
"provider": { "provider": {
@ -893,6 +911,7 @@
"Signup HTML - Edit": "Signup HTML - Edit", "Signup HTML - Edit": "Signup HTML - Edit",
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style", "Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
"Signup group": "Signup group", "Signup group": "Signup group",
"Signup group - Tooltip": "Signup group - Tooltip",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Site key", "Site key": "Site key",
"Site key - Tooltip": "Site key", "Site key - Tooltip": "Site key",
@ -1157,6 +1176,7 @@
"Keys": "Keys", "Keys": "Keys",
"Language": "Language", "Language": "Language",
"Language - Tooltip": "Language - Tooltip", "Language - Tooltip": "Language - Tooltip",
"Last change password time": "Last change password time",
"Link": "Link", "Link": "Link",
"Location": "Location", "Location": "Location",
"Location - Tooltip": "City of residence", "Location - Tooltip": "City of residence",

View File

@ -161,6 +161,18 @@
"Sending": "Enviando", "Sending": "Enviando",
"Submit and complete": "Enviar e concluir" "Submit and complete": "Enviar e concluir"
}, },
"currency": {
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"JPY": "JPY",
"SGD": "SGD",
"USD": "USD"
},
"enforcer": { "enforcer": {
"Edit Enforcer": "Editar Executor", "Edit Enforcer": "Editar Executor",
"New Enforcer": "Novo Executor" "New Enforcer": "Novo Executor"
@ -266,10 +278,13 @@
"Go to writable demo site?": "Acessar o site de demonstração gravável?", "Go to writable demo site?": "Acessar o site de demonstração gravável?",
"Groups": "Grupos", "Groups": "Grupos",
"Groups - Tooltip": "Groups - Tooltip", "Groups - Tooltip": "Groups - Tooltip",
"Hide password": "Hide password",
"Home": "Página Inicial", "Home": "Página Inicial",
"Home - Tooltip": "Página inicial do aplicativo", "Home - Tooltip": "Página inicial do aplicativo",
"ID": "ID", "ID": "ID",
"ID - Tooltip": "String única aleatória", "ID - Tooltip": "String única aleatória",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "IP whitelist - Tooltip",
"Identity": "Identidade", "Identity": "Identidade",
"Invitations": "Invitations", "Invitations": "Invitations",
"Is enabled": "Está habilitado", "Is enabled": "Está habilitado",
@ -312,6 +327,10 @@
"Password - Tooltip": "Certifique-se de que a senha está correta", "Password - Tooltip": "Certifique-se de que a senha está correta",
"Password complexity options": "Password complexity options", "Password complexity options": "Password complexity options",
"Password complexity options - Tooltip": "Password complexity options - Tooltip", "Password complexity options - Tooltip": "Password complexity options - Tooltip",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Password obf key - Tooltip",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator - Tooltip",
"Password salt": "Salt de senha", "Password salt": "Salt de senha",
"Password salt - Tooltip": "Parâmetro aleatório usado para criptografia de senha", "Password salt - Tooltip": "Parâmetro aleatório usado para criptografia de senha",
"Password type": "Tipo de senha", "Password type": "Tipo de senha",
@ -559,7 +578,6 @@
"Use SMS": "Use SMS", "Use SMS": "Use SMS",
"Use SMS verification code": "Use SMS verification code", "Use SMS verification code": "Use SMS verification code",
"Use a recovery code": "Use a recovery code", "Use a recovery code": "Use a recovery code",
"Verification failed": "Verification failed",
"Verify Code": "Verify Code", "Verify Code": "Verify Code",
"Verify Password": "Verify Password", "Verify Password": "Verify Password",
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue", "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
@ -592,6 +610,8 @@
"Modify rule": "Modificar regra", "Modify rule": "Modificar regra",
"New Organization": "Nova Organização", "New Organization": "Nova Organização",
"Optional": "Optional", "Optional": "Optional",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Password expire days - Tooltip",
"Prompt": "Prompt", "Prompt": "Prompt",
"Required": "Required", "Required": "Required",
"Soft deletion": "Exclusão suave", "Soft deletion": "Exclusão suave",
@ -709,7 +729,6 @@
"Alipay": "Alipay", "Alipay": "Alipay",
"Buy": "Comprar", "Buy": "Comprar",
"Buy Product": "Comprar Produto", "Buy Product": "Comprar Produto",
"CNY": "CNY",
"Detail": "Detalhe", "Detail": "Detalhe",
"Detail - Tooltip": "Detalhes do produto", "Detail - Tooltip": "Detalhes do produto",
"Dummy": "Dummy", "Dummy": "Dummy",
@ -740,7 +759,6 @@
"Test buy page..": "Página de teste de compra...", "Test buy page..": "Página de teste de compra...",
"There is no payment channel for this product.": "Não há canal de pagamento disponível para este produto.", "There is no payment channel for this product.": "Não há canal de pagamento disponível para este produto.",
"This product is currently not in sale.": "Este produto não está disponível para venda no momento.", "This product is currently not in sale.": "Este produto não está disponível para venda no momento.",
"USD": "USD",
"WeChat Pay": "WeChat Pay" "WeChat Pay": "WeChat Pay"
}, },
"provider": { "provider": {
@ -893,6 +911,7 @@
"Signup HTML - Edit": "Editar HTML de inscrição", "Signup HTML - Edit": "Editar HTML de inscrição",
"Signup HTML - Tooltip": "HTML personalizado para substituir o estilo padrão da página de inscrição", "Signup HTML - Tooltip": "HTML personalizado para substituir o estilo padrão da página de inscrição",
"Signup group": "Signup group", "Signup group": "Signup group",
"Signup group - Tooltip": "Signup group - Tooltip",
"Silent": "Silencioso", "Silent": "Silencioso",
"Site key": "Chave do site", "Site key": "Chave do site",
"Site key - Tooltip": "Chave do site", "Site key - Tooltip": "Chave do site",
@ -1157,6 +1176,7 @@
"Keys": "Chaves", "Keys": "Chaves",
"Language": "Idioma", "Language": "Idioma",
"Language - Tooltip": "Idioma - Tooltip", "Language - Tooltip": "Idioma - Tooltip",
"Last change password time": "Last change password time",
"Link": "Link", "Link": "Link",
"Location": "Localização", "Location": "Localização",
"Location - Tooltip": "Cidade de residência", "Location - Tooltip": "Cidade de residência",

View File

@ -161,6 +161,18 @@
"Sending": "Отправка", "Sending": "Отправка",
"Submit and complete": "Отправить и завершить" "Submit and complete": "Отправить и завершить"
}, },
"currency": {
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"JPY": "JPY",
"SGD": "SGD",
"USD": "USD"
},
"enforcer": { "enforcer": {
"Edit Enforcer": "Редактировать контролёра доступа", "Edit Enforcer": "Редактировать контролёра доступа",
"New Enforcer": "Новый контролёр доступа" "New Enforcer": "Новый контролёр доступа"
@ -266,10 +278,13 @@
"Go to writable demo site?": "Перейти на демонстрационный сайт для записи данных?", "Go to writable demo site?": "Перейти на демонстрационный сайт для записи данных?",
"Groups": "Группы", "Groups": "Группы",
"Groups - Tooltip": "Groups - Tooltip", "Groups - Tooltip": "Groups - Tooltip",
"Hide password": "Hide password",
"Home": "Дом", "Home": "Дом",
"Home - Tooltip": "Главная страница приложения", "Home - Tooltip": "Главная страница приложения",
"ID": "ID", "ID": "ID",
"ID - Tooltip": "Уникальная случайная строка", "ID - Tooltip": "Уникальная случайная строка",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "IP whitelist - Tooltip",
"Identity": "Identity", "Identity": "Identity",
"Invitations": "Invitations", "Invitations": "Invitations",
"Is enabled": "Включен", "Is enabled": "Включен",
@ -312,6 +327,10 @@
"Password - Tooltip": "Убедитесь, что пароль правильный", "Password - Tooltip": "Убедитесь, что пароль правильный",
"Password complexity options": "Password complexity options", "Password complexity options": "Password complexity options",
"Password complexity options - Tooltip": "Password complexity options - Tooltip", "Password complexity options - Tooltip": "Password complexity options - Tooltip",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Password obf key - Tooltip",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator - Tooltip",
"Password salt": "Соль пароля", "Password salt": "Соль пароля",
"Password salt - Tooltip": "Случайный параметр, используемый для шифрования пароля", "Password salt - Tooltip": "Случайный параметр, используемый для шифрования пароля",
"Password type": "Тип пароля", "Password type": "Тип пароля",
@ -559,7 +578,6 @@
"Use SMS": "Использовать SMS", "Use SMS": "Использовать SMS",
"Use SMS verification code": "Использовать SMS код для проверки", "Use SMS verification code": "Использовать SMS код для проверки",
"Use a recovery code": "Использовать код восстановления", "Use a recovery code": "Использовать код восстановления",
"Verification failed": "Проверка не удалась",
"Verify Code": "Verify Code", "Verify Code": "Verify Code",
"Verify Password": "Verify Password", "Verify Password": "Verify Password",
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue", "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
@ -592,6 +610,8 @@
"Modify rule": "Изменить правило", "Modify rule": "Изменить правило",
"New Organization": "Новая организация", "New Organization": "Новая организация",
"Optional": "Опционально", "Optional": "Опционально",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Password expire days - Tooltip",
"Prompt": "Prompt", "Prompt": "Prompt",
"Required": "Required", "Required": "Required",
"Soft deletion": "Мягкое удаление", "Soft deletion": "Мягкое удаление",
@ -709,7 +729,6 @@
"Alipay": "Alipay", "Alipay": "Alipay",
"Buy": "Купить", "Buy": "Купить",
"Buy Product": "Купить продукт", "Buy Product": "Купить продукт",
"CNY": "CNY",
"Detail": "Деталь", "Detail": "Деталь",
"Detail - Tooltip": "Деталь продукта", "Detail - Tooltip": "Деталь продукта",
"Dummy": "Dummy", "Dummy": "Dummy",
@ -740,7 +759,6 @@
"Test buy page..": "Страница для тестовой покупки.", "Test buy page..": "Страница для тестовой покупки.",
"There is no payment channel for this product.": "Для этого продукта нет канала оплаты.", "There is no payment channel for this product.": "Для этого продукта нет канала оплаты.",
"This product is currently not in sale.": "Этот продукт в настоящее время не продается.", "This product is currently not in sale.": "Этот продукт в настоящее время не продается.",
"USD": "USD",
"WeChat Pay": "WeChat Pay" "WeChat Pay": "WeChat Pay"
}, },
"provider": { "provider": {
@ -893,6 +911,7 @@
"Signup HTML - Edit": "Регистрационная форма HTML - Редактировать", "Signup HTML - Edit": "Регистрационная форма HTML - Редактировать",
"Signup HTML - Tooltip": "Пользовательский HTML для замены стиля стандартной страницы регистрации", "Signup HTML - Tooltip": "Пользовательский HTML для замены стиля стандартной страницы регистрации",
"Signup group": "Signup group", "Signup group": "Signup group",
"Signup group - Tooltip": "Signup group - Tooltip",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Ключ сайта", "Site key": "Ключ сайта",
"Site key - Tooltip": "Ключ сайта", "Site key - Tooltip": "Ключ сайта",
@ -1157,6 +1176,7 @@
"Keys": "Ключи", "Keys": "Ключи",
"Language": "Language", "Language": "Language",
"Language - Tooltip": "Language - Tooltip", "Language - Tooltip": "Language - Tooltip",
"Last change password time": "Last change password time",
"Link": "Ссылка", "Link": "Ссылка",
"Location": "Местоположение", "Location": "Местоположение",
"Location - Tooltip": "Город проживания", "Location - Tooltip": "Город проживания",

View File

@ -161,6 +161,18 @@
"Sending": "Odosielanie", "Sending": "Odosielanie",
"Submit and complete": "Odoslať a dokončiť" "Submit and complete": "Odoslať a dokončiť"
}, },
"currency": {
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"JPY": "JPY",
"SGD": "SGD",
"USD": "USD"
},
"enforcer": { "enforcer": {
"Edit Enforcer": "Upraviť vynútiteľa", "Edit Enforcer": "Upraviť vynútiteľa",
"New Enforcer": "Nový vynútiteľ" "New Enforcer": "Nový vynútiteľ"
@ -266,10 +278,13 @@
"Go to writable demo site?": "Prejsť na zapisovateľnú demo stránku?", "Go to writable demo site?": "Prejsť na zapisovateľnú demo stránku?",
"Groups": "Skupiny", "Groups": "Skupiny",
"Groups - Tooltip": "Skupiny", "Groups - Tooltip": "Skupiny",
"Hide password": "Hide password",
"Home": "Domov", "Home": "Domov",
"Home - Tooltip": "Domovská stránka aplikácie", "Home - Tooltip": "Domovská stránka aplikácie",
"ID": "ID", "ID": "ID",
"ID - Tooltip": "Jedinečný náhodný reťazec", "ID - Tooltip": "Jedinečný náhodný reťazec",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "IP whitelist - Tooltip",
"Identity": "Identita", "Identity": "Identita",
"Invitations": "Pozvánky", "Invitations": "Pozvánky",
"Is enabled": "Je povolené", "Is enabled": "Je povolené",
@ -312,6 +327,10 @@
"Password - Tooltip": "Uistite sa, že heslo je správne", "Password - Tooltip": "Uistite sa, že heslo je správne",
"Password complexity options": "Možnosti zložitosti hesla", "Password complexity options": "Možnosti zložitosti hesla",
"Password complexity options - Tooltip": "Rôzne kombinácie možností zložitosti hesla", "Password complexity options - Tooltip": "Rôzne kombinácie možností zložitosti hesla",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Password obf key - Tooltip",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator - Tooltip",
"Password salt": "Soľ hesla", "Password salt": "Soľ hesla",
"Password salt - Tooltip": "Náhodný parameter používaný na šifrovanie hesla", "Password salt - Tooltip": "Náhodný parameter používaný na šifrovanie hesla",
"Password type": "Typ hesla", "Password type": "Typ hesla",
@ -559,7 +578,6 @@
"Use SMS": "Použiť SMS", "Use SMS": "Použiť SMS",
"Use SMS verification code": "Použiť overovací kód SMS", "Use SMS verification code": "Použiť overovací kód SMS",
"Use a recovery code": "Použiť obnovovací kód", "Use a recovery code": "Použiť obnovovací kód",
"Verification failed": "Overenie zlyhalo",
"Verify Code": "Overiť kód", "Verify Code": "Overiť kód",
"Verify Password": "Overiť heslo", "Verify Password": "Overiť heslo",
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue", "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
@ -592,6 +610,8 @@
"Modify rule": "Upraviť pravidlo", "Modify rule": "Upraviť pravidlo",
"New Organization": "Nová organizácia", "New Organization": "Nová organizácia",
"Optional": "Voliteľné", "Optional": "Voliteľné",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Password expire days - Tooltip",
"Prompt": "Výzva", "Prompt": "Výzva",
"Required": "Povinné", "Required": "Povinné",
"Soft deletion": "Mäkké vymazanie", "Soft deletion": "Mäkké vymazanie",
@ -709,7 +729,6 @@
"Alipay": "Alipay", "Alipay": "Alipay",
"Buy": "Kúpiť", "Buy": "Kúpiť",
"Buy Product": "Kúpiť produkt", "Buy Product": "Kúpiť produkt",
"CNY": "CNY",
"Detail": "Detail", "Detail": "Detail",
"Detail - Tooltip": "Detail produktu", "Detail - Tooltip": "Detail produktu",
"Dummy": "Vzorkový", "Dummy": "Vzorkový",
@ -740,7 +759,6 @@
"Test buy page..": "Testovať stránku nákupu..", "Test buy page..": "Testovať stránku nákupu..",
"There is no payment channel for this product.": "Pre tento produkt neexistuje platobný kanál.", "There is no payment channel for this product.": "Pre tento produkt neexistuje platobný kanál.",
"This product is currently not in sale.": "Tento produkt momentálne nie je v predaji.", "This product is currently not in sale.": "Tento produkt momentálne nie je v predaji.",
"USD": "USD",
"WeChat Pay": "WeChat Pay" "WeChat Pay": "WeChat Pay"
}, },
"provider": { "provider": {
@ -893,6 +911,7 @@
"Signup HTML - Edit": "Upraviť HTML registrácie", "Signup HTML - Edit": "Upraviť HTML registrácie",
"Signup HTML - Tooltip": "Vlastné HTML na nahradenie predvoleného štýlu registračnej stránky", "Signup HTML - Tooltip": "Vlastné HTML na nahradenie predvoleného štýlu registračnej stránky",
"Signup group": "Skupina registrácie", "Signup group": "Skupina registrácie",
"Signup group - Tooltip": "Signup group - Tooltip",
"Silent": "Tichý", "Silent": "Tichý",
"Site key": "Kľúč stránky", "Site key": "Kľúč stránky",
"Site key - Tooltip": "Kľúč stránky", "Site key - Tooltip": "Kľúč stránky",
@ -1157,6 +1176,7 @@
"Keys": "Kľúče", "Keys": "Kľúče",
"Language": "Jazyk", "Language": "Jazyk",
"Language - Tooltip": "Jazyk - Tooltip", "Language - Tooltip": "Jazyk - Tooltip",
"Last change password time": "Last change password time",
"Link": "Odkaz", "Link": "Odkaz",
"Location": "Miesto", "Location": "Miesto",
"Location - Tooltip": "Mesto bydliska", "Location - Tooltip": "Mesto bydliska",

View File

@ -161,6 +161,18 @@
"Sending": "Sending", "Sending": "Sending",
"Submit and complete": "Submit and complete" "Submit and complete": "Submit and complete"
}, },
"currency": {
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"JPY": "JPY",
"SGD": "SGD",
"USD": "USD"
},
"enforcer": { "enforcer": {
"Edit Enforcer": "Edit Enforcer", "Edit Enforcer": "Edit Enforcer",
"New Enforcer": "New Enforcer" "New Enforcer": "New Enforcer"
@ -266,10 +278,13 @@
"Go to writable demo site?": "Go to writable demo site?", "Go to writable demo site?": "Go to writable demo site?",
"Groups": "Groups", "Groups": "Groups",
"Groups - Tooltip": "Groups - Tooltip", "Groups - Tooltip": "Groups - Tooltip",
"Hide password": "Hide password",
"Home": "Home", "Home": "Home",
"Home - Tooltip": "Home page of the application", "Home - Tooltip": "Home page of the application",
"ID": "ID", "ID": "ID",
"ID - Tooltip": "Unique random string", "ID - Tooltip": "Unique random string",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "IP whitelist - Tooltip",
"Identity": "Identity", "Identity": "Identity",
"Invitations": "Invitations", "Invitations": "Invitations",
"Is enabled": "Is enabled", "Is enabled": "Is enabled",
@ -312,6 +327,10 @@
"Password - Tooltip": "Make sure the password is correct", "Password - Tooltip": "Make sure the password is correct",
"Password complexity options": "Password complexity options", "Password complexity options": "Password complexity options",
"Password complexity options - Tooltip": "Different combinations of password complexity options", "Password complexity options - Tooltip": "Different combinations of password complexity options",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Password obf key - Tooltip",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator - Tooltip",
"Password salt": "Password salt", "Password salt": "Password salt",
"Password salt - Tooltip": "Random parameter used for password encryption", "Password salt - Tooltip": "Random parameter used for password encryption",
"Password type": "Password type", "Password type": "Password type",
@ -559,7 +578,6 @@
"Use SMS": "Use SMS", "Use SMS": "Use SMS",
"Use SMS verification code": "Use SMS verification code", "Use SMS verification code": "Use SMS verification code",
"Use a recovery code": "Use a recovery code", "Use a recovery code": "Use a recovery code",
"Verification failed": "Verification failed",
"Verify Code": "Verify Code", "Verify Code": "Verify Code",
"Verify Password": "Verify Password", "Verify Password": "Verify Password",
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue", "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
@ -592,6 +610,8 @@
"Modify rule": "Modify rule", "Modify rule": "Modify rule",
"New Organization": "New Organization", "New Organization": "New Organization",
"Optional": "Optional", "Optional": "Optional",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Password expire days - Tooltip",
"Prompt": "Prompt", "Prompt": "Prompt",
"Required": "Required", "Required": "Required",
"Soft deletion": "Soft deletion", "Soft deletion": "Soft deletion",
@ -709,7 +729,6 @@
"Alipay": "Alipay", "Alipay": "Alipay",
"Buy": "Buy", "Buy": "Buy",
"Buy Product": "Buy Product", "Buy Product": "Buy Product",
"CNY": "CNY",
"Detail": "Detail", "Detail": "Detail",
"Detail - Tooltip": "Detail of product", "Detail - Tooltip": "Detail of product",
"Dummy": "Dummy", "Dummy": "Dummy",
@ -740,7 +759,6 @@
"Test buy page..": "Test buy page..", "Test buy page..": "Test buy page..",
"There is no payment channel for this product.": "There is no payment channel for this product.", "There is no payment channel for this product.": "There is no payment channel for this product.",
"This product is currently not in sale.": "This product is currently not in sale.", "This product is currently not in sale.": "This product is currently not in sale.",
"USD": "USD",
"WeChat Pay": "WeChat Pay" "WeChat Pay": "WeChat Pay"
}, },
"provider": { "provider": {
@ -893,6 +911,7 @@
"Signup HTML - Edit": "Signup HTML - Edit", "Signup HTML - Edit": "Signup HTML - Edit",
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style", "Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
"Signup group": "Signup group", "Signup group": "Signup group",
"Signup group - Tooltip": "Signup group - Tooltip",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Site key", "Site key": "Site key",
"Site key - Tooltip": "Site key", "Site key - Tooltip": "Site key",
@ -1157,6 +1176,7 @@
"Keys": "Keys", "Keys": "Keys",
"Language": "Language", "Language": "Language",
"Language - Tooltip": "Language - Tooltip", "Language - Tooltip": "Language - Tooltip",
"Last change password time": "Last change password time",
"Link": "Link", "Link": "Link",
"Location": "Location", "Location": "Location",
"Location - Tooltip": "City of residence", "Location - Tooltip": "City of residence",

View File

@ -161,6 +161,18 @@
"Sending": "Gönderiliyor", "Sending": "Gönderiliyor",
"Submit and complete": "Gönder ve Tamamla" "Submit and complete": "Gönder ve Tamamla"
}, },
"currency": {
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"JPY": "JPY",
"SGD": "SGD",
"USD": "USD"
},
"enforcer": { "enforcer": {
"Edit Enforcer": "Edit Enforcer", "Edit Enforcer": "Edit Enforcer",
"New Enforcer": "New Enforcer" "New Enforcer": "New Enforcer"
@ -266,10 +278,13 @@
"Go to writable demo site?": "Go to writable demo site?", "Go to writable demo site?": "Go to writable demo site?",
"Groups": "Groups", "Groups": "Groups",
"Groups - Tooltip": "Groups - Tooltip", "Groups - Tooltip": "Groups - Tooltip",
"Hide password": "Hide password",
"Home": "Ana sayfa", "Home": "Ana sayfa",
"Home - Tooltip": "Home page of the application", "Home - Tooltip": "Home page of the application",
"ID": "ID", "ID": "ID",
"ID - Tooltip": "Unique random string", "ID - Tooltip": "Unique random string",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "IP whitelist - Tooltip",
"Identity": "Identity", "Identity": "Identity",
"Invitations": "Davetler", "Invitations": "Davetler",
"Is enabled": "Aktif Mi?", "Is enabled": "Aktif Mi?",
@ -312,6 +327,10 @@
"Password - Tooltip": "Şifrenizin doğru olduğundan emin olun", "Password - Tooltip": "Şifrenizin doğru olduğundan emin olun",
"Password complexity options": "Şifre karmaşıklık seçenekleri", "Password complexity options": "Şifre karmaşıklık seçenekleri",
"Password complexity options - Tooltip": "Different combinations of password complexity options", "Password complexity options - Tooltip": "Different combinations of password complexity options",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Password obf key - Tooltip",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator - Tooltip",
"Password salt": "Password salt", "Password salt": "Password salt",
"Password salt - Tooltip": "Random parameter used for password encryption", "Password salt - Tooltip": "Random parameter used for password encryption",
"Password type": "Password type", "Password type": "Password type",
@ -559,7 +578,6 @@
"Use SMS": "SMS kullan", "Use SMS": "SMS kullan",
"Use SMS verification code": "SMS doğrulama kodunu kullan", "Use SMS verification code": "SMS doğrulama kodunu kullan",
"Use a recovery code": "Kurtarma kodu kullan", "Use a recovery code": "Kurtarma kodu kullan",
"Verification failed": "Doğrulama başarısız",
"Verify Code": "Kodu doğrula", "Verify Code": "Kodu doğrula",
"Verify Password": "Parolayı Doğrula", "Verify Password": "Parolayı Doğrula",
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue", "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
@ -592,6 +610,8 @@
"Modify rule": "Modify rule", "Modify rule": "Modify rule",
"New Organization": "New Organization", "New Organization": "New Organization",
"Optional": "Optional", "Optional": "Optional",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Password expire days - Tooltip",
"Prompt": "Prompt", "Prompt": "Prompt",
"Required": "Gerekli", "Required": "Gerekli",
"Soft deletion": "Soft deletion", "Soft deletion": "Soft deletion",
@ -709,7 +729,6 @@
"Alipay": "Alipay", "Alipay": "Alipay",
"Buy": "Buy", "Buy": "Buy",
"Buy Product": "Buy Product", "Buy Product": "Buy Product",
"CNY": "CNY",
"Detail": "Detail", "Detail": "Detail",
"Detail - Tooltip": "Detail of product", "Detail - Tooltip": "Detail of product",
"Dummy": "Dummy", "Dummy": "Dummy",
@ -740,7 +759,6 @@
"Test buy page..": "Test buy page..", "Test buy page..": "Test buy page..",
"There is no payment channel for this product.": "There is no payment channel for this product.", "There is no payment channel for this product.": "There is no payment channel for this product.",
"This product is currently not in sale.": "This product is currently not in sale.", "This product is currently not in sale.": "This product is currently not in sale.",
"USD": "USD",
"WeChat Pay": "WeChat Pay" "WeChat Pay": "WeChat Pay"
}, },
"provider": { "provider": {
@ -893,6 +911,7 @@
"Signup HTML - Edit": "Signup HTML - Edit", "Signup HTML - Edit": "Signup HTML - Edit",
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style", "Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
"Signup group": "Signup group", "Signup group": "Signup group",
"Signup group - Tooltip": "Signup group - Tooltip",
"Silent": "Silent", "Silent": "Silent",
"Site key": "Site key", "Site key": "Site key",
"Site key - Tooltip": "Site key", "Site key - Tooltip": "Site key",
@ -1157,6 +1176,7 @@
"Keys": "Keys", "Keys": "Keys",
"Language": "Language", "Language": "Language",
"Language - Tooltip": "Language - Tooltip", "Language - Tooltip": "Language - Tooltip",
"Last change password time": "Last change password time",
"Link": "Link", "Link": "Link",
"Location": "Location", "Location": "Location",
"Location - Tooltip": "City of residence", "Location - Tooltip": "City of residence",

View File

@ -161,6 +161,18 @@
"Sending": "Відправка", "Sending": "Відправка",
"Submit and complete": "Надішліть і заповніть" "Submit and complete": "Надішліть і заповніть"
}, },
"currency": {
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"JPY": "JPY",
"SGD": "SGD",
"USD": "USD"
},
"enforcer": { "enforcer": {
"Edit Enforcer": "Редагувати Enforcer", "Edit Enforcer": "Редагувати Enforcer",
"New Enforcer": "Новий Enforcer" "New Enforcer": "Новий Enforcer"
@ -266,10 +278,13 @@
"Go to writable demo site?": "Перейти на демонстраційний сайт для запису?", "Go to writable demo site?": "Перейти на демонстраційний сайт для запису?",
"Groups": "Групи", "Groups": "Групи",
"Groups - Tooltip": "Групи підказка", "Groups - Tooltip": "Групи підказка",
"Hide password": "Hide password",
"Home": "додому", "Home": "додому",
"Home - Tooltip": "Домашня сторінка програми", "Home - Tooltip": "Домашня сторінка програми",
"ID": "ID", "ID": "ID",
"ID - Tooltip": "Унікальний випадковий рядок", "ID - Tooltip": "Унікальний випадковий рядок",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "IP whitelist - Tooltip",
"Identity": "Ідентичність", "Identity": "Ідентичність",
"Invitations": "Запрошення", "Invitations": "Запрошення",
"Is enabled": "Увімкнено", "Is enabled": "Увімкнено",
@ -312,6 +327,10 @@
"Password - Tooltip": "Переконайтеся, що пароль правильний", "Password - Tooltip": "Переконайтеся, що пароль правильний",
"Password complexity options": "Параметри складності пароля", "Password complexity options": "Параметри складності пароля",
"Password complexity options - Tooltip": "Різні комбінації параметрів складності пароля", "Password complexity options - Tooltip": "Різні комбінації параметрів складності пароля",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Password obf key - Tooltip",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator - Tooltip",
"Password salt": "Сіль пароля", "Password salt": "Сіль пароля",
"Password salt - Tooltip": "Випадковий параметр, який використовується для шифрування пароля", "Password salt - Tooltip": "Випадковий параметр, який використовується для шифрування пароля",
"Password type": "Тип пароля", "Password type": "Тип пароля",
@ -559,7 +578,6 @@
"Use SMS": "Використовуйте SMS", "Use SMS": "Використовуйте SMS",
"Use SMS verification code": "Використовуйте код підтвердження SMS", "Use SMS verification code": "Використовуйте код підтвердження SMS",
"Use a recovery code": "Використовуйте код відновлення", "Use a recovery code": "Використовуйте код відновлення",
"Verification failed": "Не вдалося перевірити",
"Verify Code": "Підтвердити код", "Verify Code": "Підтвердити код",
"Verify Password": "Підтвердіть пароль", "Verify Password": "Підтвердіть пароль",
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue", "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
@ -592,6 +610,8 @@
"Modify rule": "Змінити правило", "Modify rule": "Змінити правило",
"New Organization": "Нова організація", "New Organization": "Нова організація",
"Optional": "Додатково", "Optional": "Додатково",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Password expire days - Tooltip",
"Prompt": "Підкажіть", "Prompt": "Підкажіть",
"Required": "вимагається", "Required": "вимагається",
"Soft deletion": "М'яке видалення", "Soft deletion": "М'яке видалення",
@ -709,7 +729,6 @@
"Alipay": "Alipay", "Alipay": "Alipay",
"Buy": "купити", "Buy": "купити",
"Buy Product": "Купити товар", "Buy Product": "Купити товар",
"CNY": "CNY",
"Detail": "Деталь", "Detail": "Деталь",
"Detail - Tooltip": "Деталь продукту", "Detail - Tooltip": "Деталь продукту",
"Dummy": "манекен", "Dummy": "манекен",
@ -740,7 +759,6 @@
"Test buy page..": "Сторінка тестової покупки..", "Test buy page..": "Сторінка тестової покупки..",
"There is no payment channel for this product.": "Для цього продукту немає платіжного каналу.", "There is no payment channel for this product.": "Для цього продукту немає платіжного каналу.",
"This product is currently not in sale.": "Цей товар наразі відсутній у продажу.", "This product is currently not in sale.": "Цей товар наразі відсутній у продажу.",
"USD": "доларів США",
"WeChat Pay": "WeChat Pay" "WeChat Pay": "WeChat Pay"
}, },
"provider": { "provider": {
@ -893,6 +911,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",
"Silent": "Мовчазний", "Silent": "Мовчазний",
"Site key": "Ключ сайту", "Site key": "Ключ сайту",
"Site key - Tooltip": "Ключ сайту", "Site key - Tooltip": "Ключ сайту",
@ -1157,6 +1176,7 @@
"Keys": "Ключі", "Keys": "Ключі",
"Language": "Мова", "Language": "Мова",
"Language - Tooltip": "Мова підказка", "Language - Tooltip": "Мова підказка",
"Last change password time": "Last change password time",
"Link": "Посилання", "Link": "Посилання",
"Location": "Місцезнаходження", "Location": "Місцезнаходження",
"Location - Tooltip": "Місто проживання", "Location - Tooltip": "Місто проживання",

View File

@ -161,6 +161,18 @@
"Sending": "Gửi", "Sending": "Gửi",
"Submit and complete": "Nộp và hoàn thành" "Submit and complete": "Nộp và hoàn thành"
}, },
"currency": {
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"JPY": "JPY",
"SGD": "SGD",
"USD": "USD"
},
"enforcer": { "enforcer": {
"Edit Enforcer": "Edit Enforcer", "Edit Enforcer": "Edit Enforcer",
"New Enforcer": "New Enforcer" "New Enforcer": "New Enforcer"
@ -266,10 +278,13 @@
"Go to writable demo site?": "Bạn có muốn đi đến trang demo có thể viết được không?", "Go to writable demo site?": "Bạn có muốn đi đến trang demo có thể viết được không?",
"Groups": "Groups", "Groups": "Groups",
"Groups - Tooltip": "Groups - Tooltip", "Groups - Tooltip": "Groups - Tooltip",
"Hide password": "Hide password",
"Home": "Nhà", "Home": "Nhà",
"Home - Tooltip": "Trang chủ của ứng dụng", "Home - Tooltip": "Trang chủ của ứng dụng",
"ID": "ID", "ID": "ID",
"ID - Tooltip": "Chuỗi ngẫu nhiên độc nhất", "ID - Tooltip": "Chuỗi ngẫu nhiên độc nhất",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "IP whitelist - Tooltip",
"Identity": "Identity", "Identity": "Identity",
"Invitations": "Invitations", "Invitations": "Invitations",
"Is enabled": "Đã được kích hoạt", "Is enabled": "Đã được kích hoạt",
@ -312,6 +327,10 @@
"Password - Tooltip": "Hãy đảm bảo rằng mật khẩu là chính xác", "Password - Tooltip": "Hãy đảm bảo rằng mật khẩu là chính xác",
"Password complexity options": "Password complexity options", "Password complexity options": "Password complexity options",
"Password complexity options - Tooltip": "Password complexity options - Tooltip", "Password complexity options - Tooltip": "Password complexity options - Tooltip",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Password obf key - Tooltip",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator - Tooltip",
"Password salt": "Muối mật khẩu", "Password salt": "Muối mật khẩu",
"Password salt - Tooltip": "Tham số ngẫu nhiên được sử dụng để mã hóa mật khẩu", "Password salt - Tooltip": "Tham số ngẫu nhiên được sử dụng để mã hóa mật khẩu",
"Password type": "Loại mật khẩu", "Password type": "Loại mật khẩu",
@ -559,7 +578,6 @@
"Use SMS": "Use SMS", "Use SMS": "Use SMS",
"Use SMS verification code": "Use SMS verification code", "Use SMS verification code": "Use SMS verification code",
"Use a recovery code": "Use a recovery code", "Use a recovery code": "Use a recovery code",
"Verification failed": "Verification failed",
"Verify Code": "Verify Code", "Verify Code": "Verify Code",
"Verify Password": "Verify Password", "Verify Password": "Verify Password",
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue", "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue",
@ -592,6 +610,8 @@
"Modify rule": "Sửa đổi quy tắc", "Modify rule": "Sửa đổi quy tắc",
"New Organization": "Tổ chức mới", "New Organization": "Tổ chức mới",
"Optional": "Optional", "Optional": "Optional",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Password expire days - Tooltip",
"Prompt": "Prompt", "Prompt": "Prompt",
"Required": "Required", "Required": "Required",
"Soft deletion": "Xóa mềm", "Soft deletion": "Xóa mềm",
@ -709,7 +729,6 @@
"Alipay": "Alipay", "Alipay": "Alipay",
"Buy": "Mua", "Buy": "Mua",
"Buy Product": "Mua sản phẩm", "Buy Product": "Mua sản phẩm",
"CNY": "CNY",
"Detail": "Chi tiết", "Detail": "Chi tiết",
"Detail - Tooltip": "Chi tiết sản phẩm", "Detail - Tooltip": "Chi tiết sản phẩm",
"Dummy": "Dummy", "Dummy": "Dummy",
@ -740,7 +759,6 @@
"Test buy page..": "Trang mua thử.", "Test buy page..": "Trang mua thử.",
"There is no payment channel for this product.": "Không có kênh thanh toán cho sản phẩm này.", "There is no payment channel for this product.": "Không có kênh thanh toán cho sản phẩm này.",
"This product is currently not in sale.": "Sản phẩm này hiện không được bán.", "This product is currently not in sale.": "Sản phẩm này hiện không được bán.",
"USD": "USD",
"WeChat Pay": "WeChat Pay" "WeChat Pay": "WeChat Pay"
}, },
"provider": { "provider": {
@ -893,6 +911,7 @@
"Signup HTML - Edit": "Đăng ký HTML - Chỉnh sửa", "Signup HTML - Edit": "Đăng ký HTML - Chỉnh sửa",
"Signup HTML - Tooltip": "Trang HTML tùy chỉnh để thay thế phong cách trang đăng ký mặc định", "Signup HTML - Tooltip": "Trang HTML tùy chỉnh để thay thế phong cách trang đăng ký mặc định",
"Signup group": "Signup group", "Signup group": "Signup group",
"Signup group - Tooltip": "Signup group - Tooltip",
"Silent": "Im lặng", "Silent": "Im lặng",
"Site key": "Khóa trang web", "Site key": "Khóa trang web",
"Site key - Tooltip": "Khóa trang web", "Site key - Tooltip": "Khóa trang web",
@ -1157,6 +1176,7 @@
"Keys": "Chìa khóa", "Keys": "Chìa khóa",
"Language": "Language", "Language": "Language",
"Language - Tooltip": "Language - Tooltip", "Language - Tooltip": "Language - Tooltip",
"Last change password time": "Last change password time",
"Link": "Liên kết", "Link": "Liên kết",
"Location": "Vị trí", "Location": "Vị trí",
"Location - Tooltip": "Thành phố cư trú", "Location - Tooltip": "Thành phố cư trú",

View File

@ -161,6 +161,18 @@
"Sending": "发送中", "Sending": "发送中",
"Submit and complete": "完成提交" "Submit and complete": "完成提交"
}, },
"currency": {
"AUD": "AUD",
"CAD": "CAD",
"CHF": "CHF",
"CNY": "CNY",
"EUR": "EUR",
"GBP": "GBP",
"HKD": "HKD",
"JPY": "JPY",
"SGD": "SGD",
"USD": "USD"
},
"enforcer": { "enforcer": {
"Edit Enforcer": "编辑Casbin执行器", "Edit Enforcer": "编辑Casbin执行器",
"New Enforcer": "新建Casbin执行器" "New Enforcer": "新建Casbin执行器"
@ -266,10 +278,13 @@
"Go to writable demo site?": "跳转至可写演示站点?", "Go to writable demo site?": "跳转至可写演示站点?",
"Groups": "群组", "Groups": "群组",
"Groups - Tooltip": "组", "Groups - Tooltip": "组",
"Hide password": "Hide password",
"Home": "首页", "Home": "首页",
"Home - Tooltip": "应用的首页", "Home - Tooltip": "应用的首页",
"ID": "ID", "ID": "ID",
"ID - Tooltip": "唯一的随机字符串", "ID - Tooltip": "唯一的随机字符串",
"IP whitelist": "IP whitelist",
"IP whitelist - Tooltip": "IP whitelist - Tooltip",
"Identity": "身份认证", "Identity": "身份认证",
"Invitations": "邀请码", "Invitations": "邀请码",
"Is enabled": "已启用", "Is enabled": "已启用",
@ -312,6 +327,10 @@
"Password - Tooltip": "请确认密码正确", "Password - Tooltip": "请确认密码正确",
"Password complexity options": "密码复杂度选项", "Password complexity options": "密码复杂度选项",
"Password complexity options - Tooltip": "密码复杂度组合,登录密码复杂度必须符合该规范", "Password complexity options - Tooltip": "密码复杂度组合,登录密码复杂度必须符合该规范",
"Password obf key": "Password obf key",
"Password obf key - Tooltip": "Password obf key - Tooltip",
"Password obfuscator": "Password obfuscator",
"Password obfuscator - Tooltip": "Password obfuscator - Tooltip",
"Password salt": "密码Salt值", "Password salt": "密码Salt值",
"Password salt - Tooltip": "用于密码加密的随机参数", "Password salt - Tooltip": "用于密码加密的随机参数",
"Password type": "密码类型", "Password type": "密码类型",
@ -559,7 +578,6 @@
"Use SMS": "使用短信", "Use SMS": "使用短信",
"Use SMS verification code": "使用手机或电子邮件发送验证码认证", "Use SMS verification code": "使用手机或电子邮件发送验证码认证",
"Use a recovery code": "使用恢复代码", "Use a recovery code": "使用恢复代码",
"Verification failed": "验证失败",
"Verify Code": "验证码", "Verify Code": "验证码",
"Verify Password": "验证密码", "Verify Password": "验证密码",
"You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "您已经启用多因素认证, 请点击 '发送验证码' 继续", "You have enabled Multi-Factor Authentication, Please click 'Send Code' to continue": "您已经启用多因素认证, 请点击 '发送验证码' 继续",
@ -592,6 +610,8 @@
"Modify rule": "修改规则", "Modify rule": "修改规则",
"New Organization": "添加组织", "New Organization": "添加组织",
"Optional": "可选", "Optional": "可选",
"Password expire days": "Password expire days",
"Password expire days - Tooltip": "Password expire days - Tooltip",
"Prompt": "提示", "Prompt": "提示",
"Required": "必须", "Required": "必须",
"Soft deletion": "软删除", "Soft deletion": "软删除",
@ -709,7 +729,6 @@
"Alipay": "支付宝", "Alipay": "支付宝",
"Buy": "购买", "Buy": "购买",
"Buy Product": "购买商品", "Buy Product": "购买商品",
"CNY": "人民币",
"Detail": "详情", "Detail": "详情",
"Detail - Tooltip": "商品详情", "Detail - Tooltip": "商品详情",
"Dummy": "虚拟", "Dummy": "虚拟",
@ -740,16 +759,7 @@
"Test buy page..": "测试购买页面..", "Test buy page..": "测试购买页面..",
"There is no payment channel for this product.": "该商品没有付款方式。", "There is no payment channel for this product.": "该商品没有付款方式。",
"This product is currently not in sale.": "该商品目前未在售。", "This product is currently not in sale.": "该商品目前未在售。",
"USD": "美元", "WeChat Pay": "微信支付"
"WeChat Pay": "微信支付",
"EUR": "欧元",
"JPY": "日元",
"GBP": "英镑",
"AUD": "澳元",
"CAD": "加元",
"CHF": "瑞士法郎",
"HKD": "港币",
"SGD": "新加坡元"
}, },
"provider": { "provider": {
"Access key": "访问密钥", "Access key": "访问密钥",
@ -901,6 +911,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",
"Silent": "静默", "Silent": "静默",
"Site key": "Site key", "Site key": "Site key",
"Site key - Tooltip": "站点密钥", "Site key - Tooltip": "站点密钥",
@ -1165,6 +1176,7 @@
"Keys": "键", "Keys": "键",
"Language": "语言", "Language": "语言",
"Language - Tooltip": "语言 - Tooltip", "Language - Tooltip": "语言 - Tooltip",
"Last change password time": "Last change password time",
"Link": "绑定", "Link": "绑定",
"Location": "城市", "Location": "城市",
"Location - Tooltip": "居住地址所在的城市", "Location - Tooltip": "居住地址所在的城市",

View File

@ -176,7 +176,7 @@ class MfaAccountTable extends React.Component {
content={<CasdoorAppUrl accessToken={this.props.accessToken} />} content={<CasdoorAppUrl accessToken={this.props.accessToken} />}
> >
<Button type="primary" size="small"> <Button type="primary" size="small">
{i18next.t("general:Show URL")} {i18next.t("general:URL")}
</Button> </Button>
</Popover> </Popover>
</div> </div>

View File

@ -136,7 +136,7 @@ class SigninMethodTable extends React.Component {
options = [ options = [
{id: "All", name: i18next.t("general:All")}, {id: "All", name: i18next.t("general:All")},
{id: "Non-LDAP", name: i18next.t("general:Non-LDAP")}, {id: "Non-LDAP", name: i18next.t("general:Non-LDAP")},
{id: "Hide-Password", name: i18next.t("general:Hide-Password")}, {id: "Hide password", name: i18next.t("general:Hide password")},
]; ];
} }