Improve i18n

This commit is contained in:
Gucheng Wang 2023-03-18 10:16:35 +08:00
parent bd5c706317
commit 28d24cc913
30 changed files with 634 additions and 690 deletions

View File

@ -372,7 +372,7 @@ class ApplicationEditPage extends React.Component {
</Row>
<Row style={{marginTop: "20px"}} >
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 19 : 2}>
{Setting.getLabel(i18next.t("application:Password ON"), i18next.t("application:Password ON - Tooltip"))} :
{Setting.getLabel(i18next.t("application:Enable password"), i18next.t("application:Enable password - Tooltip"))} :
</Col>
<Col span={1} >
<Switch checked={this.state.application.enablePassword} onChange={checked => {
@ -432,7 +432,7 @@ class ApplicationEditPage extends React.Component {
</Row>
<Row style={{marginTop: "20px"}} >
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 19 : 2}>
{Setting.getLabel(i18next.t("application:Enable link accounts that with the same email"), i18next.t("application:Enable link accounts that with the same email - Tooltip"))} :
{Setting.getLabel(i18next.t("application:Enable Email linking"), i18next.t("application:Enable Email linking - Tooltip"))} :
</Col>
<Col span={1} >
<Switch checked={this.state.application.enableLinkWithEmail} onChange={checked => {
@ -563,7 +563,7 @@ class ApplicationEditPage extends React.Component {
</Row>
<Row style={{marginTop: "20px"}} >
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
{Setting.getLabel(i18next.t("application:SAML Reply URL"), i18next.t("application:Redirect URL (Assertion Consumer Service POST Binding URL) - Tooltip"))} :
{Setting.getLabel(i18next.t("application:SAML reply URL"), i18next.t("application:Redirect URL (Assertion Consumer Service POST Binding URL) - Tooltip"))} :
</Col>
<Col span={22} >
<Input prefix={<LinkOutlined />} value={this.state.application.samlReplyUrl} onChange={e => {
@ -573,7 +573,7 @@ class ApplicationEditPage extends React.Component {
</Row>
<Row style={{marginTop: "20px"}} >
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 19 : 2}>
{Setting.getLabel(i18next.t("application:Enable SAML compress"), i18next.t("application:Enable SAML compress - Tooltip"))} :
{Setting.getLabel(i18next.t("application:Enable SAML compression"), i18next.t("application:Enable SAML compression - Tooltip"))} :
</Col>
<Col span={1} >
<Switch checked={this.state.application.enableSamlCompress} onChange={checked => {

View File

@ -117,7 +117,7 @@ class LdapEditPage extends React.Component {
</Row>
<Row style={{marginTop: "20px"}}>
<Col style={{lineHeight: "32px", textAlign: "right", paddingRight: "25px"}} span={3}>
{Setting.getLabel(i18next.t("ldap:Server Name"), i18next.t("ldap:Server Name - Tooltip"))} :
{Setting.getLabel(i18next.t("ldap:Server name"), i18next.t("ldap:Server name - Tooltip"))} :
</Col>
<Col span={21}>
<Input value={this.state.ldap.serverName} onChange={e => {
@ -127,7 +127,7 @@ class LdapEditPage extends React.Component {
</Row>
<Row style={{marginTop: "20px"}}>
<Col style={{lineHeight: "32px", textAlign: "right", paddingRight: "25px"}} span={3}>
{Setting.getLabel(i18next.t("ldap:Server Host"), i18next.t("ldap:Server Host - Tooltip"))} :
{Setting.getLabel(i18next.t("ldap:Server host"), i18next.t("ldap:Server host - Tooltip"))} :
</Col>
<Col span={21}>
<Input value={this.state.ldap.host} onChange={e => {
@ -137,7 +137,7 @@ class LdapEditPage extends React.Component {
</Row>
<Row style={{marginTop: "20px"}}>
<Col style={{lineHeight: "32px", textAlign: "right", paddingRight: "25px"}} span={3}>
{Setting.getLabel(i18next.t("ldap:Server Port"), i18next.t("ldap:Server Port - Tooltip"))} :
{Setting.getLabel(i18next.t("ldap:Server port"), i18next.t("ldap:Server port - Tooltip"))} :
</Col>
<Col span={21}>
<InputNumber min={0} max={65535} formatter={value => value.replace(/\$\s?|(,*)/g, "")}

View File

@ -55,7 +55,7 @@ class LdapListPage extends React.Component {
renderTable(ldaps) {
const columns = [
{
title: i18next.t("ldap:Server Name"),
title: i18next.t("ldap:Server name"),
dataIndex: "serverName",
key: "serverName",
width: "200px",

View File

@ -151,7 +151,7 @@ class LdapSyncPage extends React.Component {
},
},
{
title: i18next.t("ldap:Group Id"),
title: i18next.t("ldap:Group ID"),
dataIndex: "groupId",
key: "groupId",
width: "140px",

View File

@ -93,7 +93,7 @@ class LdapTable extends React.Component {
renderTable(table) {
const columns = [
{
title: i18next.t("ldap:Server Name"),
title: i18next.t("ldap:Server name"),
dataIndex: "serverName",
key: "serverName",
width: "160px",

View File

@ -276,7 +276,7 @@ class OrganizationEditPage extends React.Component {
</Row>
<Row style={{marginTop: "20px"}} >
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 19 : 2}>
{Setting.getLabel(i18next.t("organization:InitScore"), i18next.t("organization:The user's initScore - Tooltip"))} :
{Setting.getLabel(i18next.t("organization:Init score"), i18next.t("organization:Init score - Tooltip"))} :
</Col>
<Col span={4} >
<InputNumber value={this.state.organization.initScore} onChange={value => {

View File

@ -66,7 +66,7 @@ export const PasswordModal = (props) => {
title={i18next.t("user:Password")}
open={visible}
okText={i18next.t("user:Set Password")}
cancelText={i18next.t("user:Cancel")}
cancelText={i18next.t("general:Cancel")}
confirmLoading={confirmLoading}
onCancel={handleCancel}
onOk={handleOk}

View File

@ -22,7 +22,7 @@ export const PopconfirmModal = (props) => {
title={props.title}
onConfirm={props.onConfirm}
disabled={props.disabled}
okText={i18next.t("user:OK")}
okText={i18next.t("general:OK")}
cancelText={i18next.t("general:Cancel")}
>
<Button style={{marginBottom: "10px"}} disabled={props.disabled} type="primary" danger>{i18next.t("general:Delete")}</Button>

View File

@ -165,7 +165,7 @@ class ProductEditPage extends React.Component {
</Row>
<Row style={{marginTop: "20px"}} >
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
{Setting.getLabel(i18next.t("product:Currency"), i18next.t("product:Currency - Tooltip"))} :
{Setting.getLabel(i18next.t("payment:Currency"), i18next.t("payment:Currency - Tooltip"))} :
</Col>
<Col span={22} >
<Select virtual={false} style={{width: "100%"}} value={this.state.product.currency} onChange={(value => {

View File

@ -134,7 +134,7 @@ class ProductListPage extends BaseListPage {
...this.getColumnSearchProps("tag"),
},
{
title: i18next.t("product:Currency"),
title: i18next.t("payment:Currency"),
dataIndex: "currency",
key: "currency",
width: "120px",

View File

@ -113,7 +113,7 @@ class ProviderEditPage extends React.Component {
return Setting.getLabel(i18next.t("login:Password"), i18next.t("login:Password - Tooltip"));
case "SMS":
if (provider.type === "Volc Engine SMS") {
return Setting.getLabel(i18next.t("provider:Secret access key"), i18next.t("provider:SecretAccessKey - Tooltip"));
return Setting.getLabel(i18next.t("provider:Secret access key"), i18next.t("provider:Secret access key - Tooltip"));
} else if (provider.type === "Huawei Cloud SMS") {
return Setting.getLabel(i18next.t("provider:App secret"), i18next.t("provider:AppSecret - Tooltip"));
} else {
@ -121,7 +121,7 @@ class ProviderEditPage extends React.Component {
}
case "Captcha":
if (provider.type === "Aliyun Captcha") {
return Setting.getLabel(i18next.t("provider:Secret access key"), i18next.t("provider:SecretAccessKey - Tooltip"));
return Setting.getLabel(i18next.t("provider:Secret access key"), i18next.t("provider:Secret access key - Tooltip"));
} else {
return Setting.getLabel(i18next.t("provider:Secret key"), i18next.t("provider:Secret key - Tooltip"));
}
@ -225,7 +225,7 @@ class ProviderEditPage extends React.Component {
</Col>
<Col span={22} >
<Select virtual={false} style={{width: "100%"}} disabled={!Setting.isAdminUser(this.props.account)} value={this.state.provider.owner} onChange={(value => {this.updateProviderField("owner", value);})}>
{Setting.isAdminUser(this.props.account) ? <Option key={"admin"} value={"admin"}>{i18next.t("provider:admin (share)")}</Option> : null}
{Setting.isAdminUser(this.props.account) ? <Option key={"admin"} value={"admin"}>{i18next.t("provider:admin (Shared)")}</Option> : null}
{
this.state.organizations.map((organization, index) => <Option key={index} value={organization.name}>{organization.name}</Option>)
}
@ -531,7 +531,7 @@ class ProviderEditPage extends React.Component {
</Row>
<Row style={{marginTop: "20px"}} >
<Col style={{marginTop: "5px"}} span={2}>
{Setting.getLabel(i18next.t("provider:Path prefix"), i18next.t("provider:The prefix path of the file - Tooltip"))} :
{Setting.getLabel(i18next.t("provider:Path prefix"), i18next.t("provider:Path prefix - Tooltip"))} :
</Col>
<Col span={22} >
<Input value={this.state.provider.pathPrefix} onChange={e => {
@ -626,7 +626,7 @@ class ProviderEditPage extends React.Component {
}} />
</Col>
<Button style={{marginLeft: "10px", marginBottom: "5px"}} type="primary" onClick={() => ProviderEditTestEmail.connectSmtpServer(this.state.provider)} >
{i18next.t("provider:Test Connection")}
{i18next.t("provider:Test SMTP Connection")}
</Button>
<Button style={{marginLeft: "10px", marginBottom: "5px"}} type="primary"
disabled={!Setting.isValidEmail(this.state.provider.receiver)}
@ -653,7 +653,7 @@ class ProviderEditPage extends React.Component {
}
<Row style={{marginTop: "20px"}} >
<Col style={{marginTop: "5px"}} span={(Setting.isMobile()) ? 22 : 2}>
{Setting.getLabel(i18next.t("provider:Template Code"), i18next.t("provider:Template Code - Tooltip"))} :
{Setting.getLabel(i18next.t("provider:Template code"), i18next.t("provider:Template code - Tooltip"))} :
</Col>
<Col span={22} >
<Input value={this.state.provider.templateCode} onChange={e => {
@ -720,9 +720,9 @@ class ProviderEditPage extends React.Component {
<Button type="primary" onClick={() => {
try {
this.loadSamlConfiguration();
Setting.showMessage("success", i18next.t("provider:Parse Metadata successfully"));
Setting.showMessage("success", i18next.t("provider:Parse metadata successfully"));
} catch (err) {
Setting.showMessage("error", i18next.t("provider:Can not parse Metadata"));
Setting.showMessage("error", i18next.t("provider:Can not parse metadata"));
}
}}>
{i18next.t("provider:Parse")}

View File

@ -172,27 +172,6 @@ class ProviderTable extends React.Component {
);
},
},
// {
// title: i18next.t("provider:alertType"),
// dataIndex: 'alertType',
// key: 'alertType',
// width: '120px',
// render: (text, record, index) => {
// return (
// <Select virtual={false} style={{width: '100%'}} value={text} onChange={(value => {
// this.updateField(table, index, 'alertType', value);
// })}>
// {
// [
// {id: 'None', name: 'None'},
// {id: 'Once', name: 'Once'},
// {id: 'Always', name: 'Always'},
// ].map((item, index) => <Option key={index} value={item.id}>{item.name}</Option>)
// }
// </Select>
// )
// }
// },
{
title: i18next.t("application:Rule"),
dataIndex: "rule",

View File

@ -156,7 +156,7 @@ class RecordListPage extends BaseListPage {
},
},
{
title: i18next.t("record:Is Triggered"),
title: i18next.t("record:Is triggered"),
dataIndex: "isTriggered",
key: "isTriggered",
width: "140px",

View File

@ -45,7 +45,7 @@ export const ResetModal = (props) => {
return;
}
if (code === "") {
Setting.showMessage("error", i18next.t("code:Empty Code"));
Setting.showMessage("error", i18next.t("code:Empty code"));
return;
}
setConfirmLoading(true);
@ -77,7 +77,7 @@ export const ResetModal = (props) => {
title={buttonText}
open={visible}
okText={buttonText}
cancelText={i18next.t("user:Cancel")}
cancelText={i18next.t("general:Cancel")}
confirmLoading={confirmLoading}
onCancel={handleCancel}
onOk={handleOk}
@ -94,7 +94,7 @@ export const ResetModal = (props) => {
</Row>
<Row style={{width: "100%", marginBottom: "20px"}}>
<SendCodeInput
textBefore={i18next.t("code:Code You Received")}
textBefore={i18next.t("code:Code you received")}
onChange={setCode}
method={"reset"}
onButtonClickArgs={[dest, destType, Setting.getApplicationName(application)]}

View File

@ -248,8 +248,8 @@ class ResourceListPage extends BaseListPage {
<PopconfirmModal
title={i18next.t("general:Sure to delete") + `: ${record.name} ?`}
onConfirm={() => this.deleteResource(index)}
okText={i18next.t("user:OK")}
cancelText={i18next.t("user:Cancel")}
okText={i18next.t("general:OK")}
cancelText={i18next.t("general:Cancel")}
>
</PopconfirmModal>
</div>

View File

@ -67,14 +67,14 @@ class SystemInfo extends React.Component {
}
render() {
const cpuUi = this.state.systemInfo.cpuUsage?.length <= 0 ? i18next.t("system:Get CPU Usage Failed") :
const cpuUi = this.state.systemInfo.cpuUsage?.length <= 0 ? i18next.t("system:Failed to get CPU usage") :
this.state.systemInfo.cpuUsage.map((usage, i) => {
return (
<Progress key={i} percent={Number(usage.toFixed(1))} />
);
});
const memUi = this.state.systemInfo.memoryUsed && this.state.systemInfo.memoryTotal && this.state.systemInfo.memoryTotal <= 0 ? i18next.t("system:Get Memory Usage Failed") :
const memUi = this.state.systemInfo.memoryUsed && this.state.systemInfo.memoryTotal && this.state.systemInfo.memoryTotal <= 0 ? i18next.t("system:Failed to get memory usage") :
<div>
{Setting.getFriendlyFileSize(this.state.systemInfo.memoryUsed)} / {Setting.getFriendlyFileSize(this.state.systemInfo.memoryTotal)}
<br /> <br />
@ -82,7 +82,7 @@ class SystemInfo extends React.Component {
</div>;
const link = this.state.versionInfo?.version !== "" ? `https://github.com/casdoor/casdoor/releases/tag/${this.state.versionInfo?.version}` : "";
let versionText = this.state.versionInfo?.version !== "" ? this.state.versionInfo?.version : i18next.t("system:Unknown Version");
let versionText = this.state.versionInfo?.version !== "" ? this.state.versionInfo?.version : i18next.t("system:Unknown version");
if (this.state.versionInfo?.commitOffset > 0) {
versionText += ` (ahead+${this.state.versionInfo?.commitOffset})`;
}
@ -111,7 +111,7 @@ class SystemInfo extends React.Component {
<br />
{i18next.t("system:Version")}: <a target="_blank" rel="noreferrer" href={link}>{versionText}</a>
<br />
{i18next.t("system:Official Website")}: <a target="_blank" rel="noreferrer" href="https://casdoor.org">https://casdoor.org</a>
{i18next.t("system:Official website")}: <a target="_blank" rel="noreferrer" href="https://casdoor.org">https://casdoor.org</a>
<br />
{i18next.t("system:Community")}: <a target="_blank" rel="noreferrer" href="https://casdoor.org/#:~:text=Casdoor%20API-,Community,-GitHub">Get in Touch!</a>
</Card>
@ -139,7 +139,7 @@ class SystemInfo extends React.Component {
<br />
{i18next.t("system:Version")}: <a target="_blank" rel="noreferrer" href={link}>{versionText}</a>
<br />
{i18next.t("system:Official Website")}: <a target="_blank" rel="noreferrer" href="https://casdoor.org">https://casdoor.org</a>
{i18next.t("system:Official website")}: <a target="_blank" rel="noreferrer" href="https://casdoor.org">https://casdoor.org</a>
<br />
{i18next.t("system:Community")}: <a target="_blank" rel="noreferrer" href="https://casdoor.org/#:~:text=Casdoor%20API-,Community,-GitHub">Get in Touch!</a>
</Card>

View File

@ -428,7 +428,7 @@ class LoginPage extends React.Component {
if (this.state.loginMethod === "verificationCode") {
if (!Setting.isValidEmail(value) && !Setting.isValidPhone(value)) {
this.setState({validEmailOrPhone: false});
return Promise.reject(i18next.t("login:The input is not valid Email or Phone!"));
return Promise.reject(i18next.t("login:The input is not valid Email or phone number!"));
}
if (Setting.isValidEmail(value)) {
@ -721,7 +721,7 @@ class LoginPage extends React.Component {
const accessToken = res.data;
Setting.goToLink(`${oAuthParams.redirectUri}#${responseType}=${accessToken}?state=${oAuthParams.state}&token_type=bearer`);
} else {
Setting.showMessage("success", i18next.t("login:Successfully logged in with webauthn credentials"));
Setting.showMessage("success", i18next.t("login:Successfully logged in with WebAuthn credentials"));
Setting.goToLink("/");
}
} else {
@ -779,7 +779,7 @@ class LoginPage extends React.Component {
{label: i18next.t("login:Password"), key: "password"},
];
application.enableCodeSignin ? items.push({
label: i18next.t("login:Verification Code"),
label: i18next.t("login:Verification code"),
key: "verificationCode",
}) : null;
application.enableWebAuthn ? items.push({label: i18next.t("login:WebAuthn"), key: "webAuthn"}) : null;

View File

@ -28,7 +28,7 @@ const demoModeCallback = (res) => {
title: i18next.t("general:This is a read-only demo site!"),
icon: <ExclamationCircleFilled />,
content: i18next.t("general:Go to writable demo site?"),
okText: i18next.t("user:OK"),
okText: i18next.t("general:OK"),
cancelText: i18next.t("general:Cancel"),
onOk() {
Setting.openLink(`https://demo.casdoor.com${location.pathname}${location.search}?username=built-in/admin&password=123`);

View File

@ -129,7 +129,7 @@ export function sendCode(checkType, captchaToken, clientSecret, method, countryC
},
}).then(res => res.json()).then(res => {
if (res.status === "ok") {
Setting.showMessage("success", i18next.t("user:Code Sent"));
Setting.showMessage("success", i18next.t("user:Verification code sent"));
return true;
} else {
Setting.showMessage("error", i18next.t("user:" + res.msg));

View File

@ -143,8 +143,8 @@ export const CaptchaModal = (props) => {
}
return [
<Button key="cancel" onClick={handleCancel}>{i18next.t("user:Cancel")}</Button>,
<Button key="ok" disabled={isOkDisabled} type="primary" onClick={handleOk}>{i18next.t("user:OK")}</Button>,
<Button key="cancel" onClick={handleCancel}>{i18next.t("general:Cancel")}</Button>,
<Button key="ok" disabled={isOkDisabled} type="primary" onClick={handleOk}>{i18next.t("general:OK")}</Button>,
];
};
@ -155,8 +155,8 @@ export const CaptchaModal = (props) => {
destroyOnClose={true}
title={i18next.t("general:Captcha")}
open={open}
okText={i18next.t("user:OK")}
cancelText={i18next.t("user:Cancel")}
okText={i18next.t("general:OK")}
cancelText={i18next.t("general:Cancel")}
width={350}
footer={renderFooter()}
onCancel={handleCancel}

View File

@ -139,7 +139,8 @@ class PolicyTable extends React.Component {
if (res.status === "ok") {
this.setState({editingIndex: "", oldPolicy: "", add: false});
if (res.data !== "Affected") {
Setting.showMessage("info", i18next.t("adapter:Repeated policy rules"));
res.msg = i18next.t("adapter:Duplicated policy rules");
Setting.showMessage("error", `${i18next.t("general:Failed to add")}: ${res.msg}`);
} else {
Setting.showMessage("success", i18next.t("general:Successfully added"));
}

View File

@ -5,12 +5,12 @@
"Sign Up": "Registrieren"
},
"adapter": {
"Duplicated policy rules": "Wiederholte Regeln der Richtlinien",
"Edit Adapter": "Adapter bearbeiten",
"Failed to sync policies": "Fehler beim Synchronisieren der Richtlinien",
"New Adapter": "Neuer Adapter",
"Policies": "Richtlinien",
"Policies - Tooltip": "Richtlinien - Tooltip",
"Repeated policy rules": "Wiederholte Regeln der Richtlinien",
"Sync": "Synchronisation",
"Sync policies successfully": "Richtlinien erfolgreich synchronisiert"
},
@ -26,14 +26,16 @@
"Copy signin page URL": "URL der Anmeldeseite kopieren",
"Copy signup page URL": "URL der Registrierungsseite kopieren",
"Edit Application": "Anwendung bearbeiten",
"Enable SAML compress": "SAML-Komprimierung aktivieren",
"Enable SAML compress - Tooltip": "SAML-Komprimierung aktivieren - Tooltip",
"Enable Email linking": "Enable Email linking",
"Enable Email linking - Tooltip": "Enable Email linking - Tooltip",
"Enable SAML compression": "SAML-Komprimierung aktivieren",
"Enable SAML compression - Tooltip": "SAML-Komprimierung aktivieren - Tooltip",
"Enable WebAuthn signin": "WebAuthn Anmeldung aktivieren",
"Enable WebAuthn signin - Tooltip": "WebAuthn Anmeldung aktivieren - Tooltip",
"Enable code signin": "Code-Anmeldung aktivieren",
"Enable code signin - Tooltip": "Aktiviere Codeanmeldung - Tooltip",
"Enable link accounts that with the same email": "Enable link accounts that with the same email",
"Enable link accounts that with the same email - Tooltip": "Enable link accounts that with the same email - Tooltip",
"Enable password": "Passwort AN",
"Enable password - Tooltip": "Whether to allow password login",
"Enable side panel": "Seitenmenü aktivieren",
"Enable signin session - Tooltip": "Aktiviere Anmeldesession - Tooltip",
"Enable signup": "Anmeldung aktivieren",
@ -54,8 +56,6 @@
"Logged out successfully": "Logged out successfully",
"New Application": "New Application",
"None": "None",
"Password ON": "Passwort AN",
"Password ON - Tooltip": "Whether to allow password login",
"Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Bitte wählen Sie eine HTML-Datei",
@ -68,10 +68,10 @@
"Refresh token expire - Tooltip": "Aktualisierungs-Token läuft ab - Tooltip",
"Right": "Right",
"Rule": "Rule",
"SAML Reply URL": "SAML Reply URL",
"SAML metadata": "SAML metadata",
"SAML metadata - Tooltip": "SAML metadata - Tooltip",
"SAML metadata URL copied to clipboard successfully": "SAML metadata URL copied to clipboard successfully",
"SAML reply URL": "SAML reply URL",
"Side panel HTML": "Side panel HTML",
"Side panel HTML - Edit": "Side panel HTML - Edit",
"Side panel HTML - Tooltip": "Side panel HTML - Tooltip",
@ -113,9 +113,9 @@
"Type - Tooltip": "Typ - Tooltip"
},
"code": {
"Code You Received": "Code, den Sie erhalten haben",
"Code you received": "Code, den Sie erhalten haben",
"Email code": "E-Mail-Code",
"Empty Code": "Leerer Code",
"Empty code": "Leerer Code",
"Enter your code": "Geben Sie Ihren Code ein",
"Phone code": "Telefoncode",
"Please input your phone verification code!": "Bitte geben Sie Ihren Telefon-Verifizierungscode ein!",
@ -207,6 +207,7 @@
"Name": "Name",
"Name - Tooltip": "Unique string-style identifier",
"OAuth providers": "OAuth-Anbieter",
"OK": "OK",
"Organization": "Organisation",
"Organization - Tooltip": "The group the user belongs to",
"Organizations": "Organisationen",
@ -290,17 +291,17 @@
"Email": "E-Mail",
"Enable SSL": "Enable SSL",
"Enable SSL - Tooltip": "Enable SSL - Tooltip",
"Group Id": "Gruppen Id",
"Group ID": "Gruppen Id",
"ID": "ID",
"Last Sync": "Letzter Sync",
"Phone": "Telefon",
"Server": "Server",
"Server Host": "Server Host",
"Server Host - Tooltip": "LDAP server host",
"Server Name": "Servername",
"Server Name - Tooltip": "LDAP server config display name",
"Server Port": "Serverport",
"Server Port - Tooltip": "LDAP server port",
"Server host": "Server host",
"Server host - Tooltip": "LDAP Server host",
"Server name": "Servername",
"Server name - Tooltip": "LDAP server config display name",
"Server port": "Serverport",
"Server port - Tooltip": "LDAP Server port",
"Sync": "Sync",
"The Auto Sync option will sync all users to specify organization": "Die Auto Sync Option wird alle Benutzer synchronisieren, um die Organisation anzugeben",
"UidNumber / Uid": "Uidnummer / Uid"
@ -324,10 +325,10 @@
"Sign in with WebAuthn": "Sign in with WebAuthn",
"Sign in with {type}": "Mit {type} anmelden",
"Signing in...": "Anmelden...",
"Successfully logged in with webauthn credentials": "Successfully logged in with webauthn credentials",
"The input is not valid Email or Phone!": "Die Eingabe ist keine gültige E-Mail oder Telefon!",
"Successfully logged in with WebAuthn credentials": "Successfully logged in with WebAuthn credentials",
"The input is not valid Email or phone number!": "Die Eingabe ist keine gültige E-Mail oder Telefon!",
"To access": "Zu Zugriff",
"Verification Code": "Verification Code",
"Verification code": "Verification code",
"WebAuthn": "WebAuthn",
"sign up now": "jetzt anmelden",
"username, Email or phone": "Benutzername, E-Mail oder Telefon"
@ -345,7 +346,8 @@
"Edit Organization": "Organisation bearbeiten",
"Favicon": "Févicon",
"Follow global theme": "Follow global theme",
"InitScore": "InitScore",
"Init score": "Init score",
"Init score - Tooltip": "Init score - Tooltip",
"Is profile public": "Is profile public",
"Is profile public - Tooltip": "Is profile public - Tooltip",
"Modify rule": "Modify rule",
@ -354,7 +356,6 @@
"Soft deletion - Tooltip": "Weiche Löschung - Tooltip",
"Tags": "Tags",
"Tags - Tooltip": "Tags - Tooltip",
"The user's initScore - Tooltip": "The user's initScore - Tooltip",
"View rule": "View rule",
"Visible": "Visible",
"Website URL": "Website-URL",
@ -445,8 +446,6 @@
"Buy": "Buy",
"Buy Product": "Buy Product",
"CNY": "CNY",
"Currency": "Currency",
"Currency - Tooltip": "Currency - Tooltip",
"Description": "Description",
"Description - Tooltip": "Description - Tooltip",
"Detail": "Detail",
@ -495,7 +494,7 @@
"Auth URL - Tooltip": "Auth URL - Tooltip",
"Bucket": "Eimer",
"Bucket - Tooltip": "Storage bucket name",
"Can not parse Metadata": "Metadaten können nicht analysiert werden",
"Can not parse metadata": "Metadaten können nicht analysiert werden",
"Can signin": "Can signin",
"Can signup": "Can signup",
"Can unlink": "Can unlink",
@ -540,8 +539,9 @@
"Name": "Name",
"New Provider": "New Provider",
"Parse": "Parse",
"Parse Metadata successfully": "Metadaten erfolgreich analysieren",
"Parse metadata successfully": "Metadaten erfolgreich analysieren",
"Path prefix": "Path prefix",
"Path prefix - Tooltip": "Path prefix - Tooltip",
"Please use WeChat and scan the QR code to sign in": "Please use WeChat and scan the QR code to sign in",
"Port": "Port",
"Port - Tooltip": "Unique string-style identifier",
@ -567,9 +567,9 @@
"Scope": "Scope",
"Scope - Tooltip": "Scope - Tooltip",
"Secret access key": "Geheimer Zugangsschlüssel",
"Secret access key - Tooltip": "Secret access key - Tooltip",
"Secret key": "Secret key",
"Secret key - Tooltip": "Secret key - Tooltip",
"SecretAccessKey - Tooltip": "SecretAccessKey - Tooltip",
"Send Testing Email": "Send Testing Email",
"Send Testing SMS": "Send Testing SMS",
"Sign Name": "Schild Name",
@ -586,14 +586,13 @@
"Site key - Tooltip": "Site key - Tooltip",
"Sub type": "Sub type",
"Sub type - Tooltip": "Sub type - Tooltip",
"Template Code": "Vorlagencode",
"Template Code - Tooltip": "Unique string-style identifier",
"Template code": "Vorlagencode",
"Template code - Tooltip": "Unique string-style identifier",
"Terms of Use": "Nutzungsbedingungen",
"Terms of Use - Tooltip": "Nutzungsbedingungen - Tooltip",
"Test Connection": "Test Smtp Connection",
"Test Email": "Test email config",
"Test Email - Tooltip": "Email Address",
"The prefix path of the file - Tooltip": "The prefix path of the file - Tooltip",
"Test SMTP Connection": "Test Smtp Connection",
"Token URL": "Token URL",
"Token URL - Tooltip": "Token URL - Tooltip",
"Type": "Typ",
@ -601,11 +600,10 @@
"UserInfo URL": "UserInfo URL",
"UserInfo URL - Tooltip": "UserInfo URL - Tooltip",
"Visible": "Visible",
"admin (share)": "admin (share)",
"alertType": "alarmtyp"
"admin (Shared)": "admin (Shared)"
},
"record": {
"Is Triggered": "Wird ausgelöst"
"Is triggered": "Wird ausgelöst"
},
"resource": {
"Application": "Anwendung",
@ -692,11 +690,11 @@
"An Identity and Access Management (IAM) / Single-Sign-On (SSO) platform with web UI supporting OAuth 2.0, OIDC, SAML and CAS": "An Identity and Access Management (IAM) / Single-Sign-On (SSO) platform with web UI supporting OAuth 2.0, OIDC, SAML and CAS",
"CPU Usage": "CPU Usage",
"Community": "Community",
"Get CPU Usage Failed": "Get CPU Usage Failed",
"Get Memory Usage Failed": "Get Memory Usage Failed",
"Failed to get CPU usage": "Failed to get CPU usage",
"Failed to get memory usage": "Failed to get memory usage",
"Memory Usage": "Memory Usage",
"Official Website": "Official Website",
"Unknown Version": "Unknown Version",
"Official website": "Official website",
"Unknown version": "Unknown version",
"Version": "Version"
},
"theme": {
@ -731,10 +729,8 @@
"Affiliation - Tooltip": "Unique string-style identifier",
"Bio": "Bio",
"Bio - Tooltip": "Bio - Tooltip",
"Cancel": "Abbrechen",
"Captcha Verify Failed": "Captcha Verify Failed",
"Captcha Verify Success": "Captcha Verify Success",
"Code Sent": "Code gesendet",
"Country code": "Country code",
"Country/Region": "Land/Region",
"Country/Region - Tooltip": "Country/Region",
@ -764,7 +760,6 @@
"New Password": "Neues Passwort",
"New User": "New User",
"New phone": "Neues Telefon",
"OK": "Ok",
"Old Password": "Altes Passwort",
"Password": "Passwort",
"Password Set": "Passwort setzen",
@ -788,6 +783,7 @@
"Upload (.xlsx)": "Upload (.xlsx)",
"Upload a photo": "Foto hochladen",
"Values": "Values",
"Verification code sent": "Code gesendet",
"WebAuthn credentials": "WebAuthn credentials",
"input password": "Passwort eingeben"
},

View File

@ -5,12 +5,12 @@
"Sign Up": "Sign Up"
},
"adapter": {
"Duplicated policy rules": "Duplicated policy rules",
"Edit Adapter": "Edit Adapter",
"Failed to sync policies": "Failed to sync policies",
"New Adapter": "New Adapter",
"Policies": "Policies",
"Policies - Tooltip": "CURD to the policy rules",
"Repeated policy rules": "Repeated policy rules",
"Policies - Tooltip": "Casbin policy rules",
"Sync": "Sync",
"Sync policies successfully": "Sync policies successfully"
},
@ -19,43 +19,43 @@
"Auto signin": "Auto signin",
"Auto signin - Tooltip": "When a logged-in session exists in Casdoor, it is automatically used for application-side login",
"Background URL": "Background URL",
"Background URL - Tooltip": "Link to the background image of the login page",
"Background URL - Tooltip": "URL of the background image used in the login page",
"Center": "Center",
"Copy SAML metadata URL": "Copy SAML metadata URL",
"Copy prompt page URL": "Copy prompt page URL",
"Copy signin page URL": "Copy signin page URL",
"Copy signup page URL": "Copy signup page URL",
"Edit Application": "Edit Application",
"Enable SAML compress": "Enable SAML compress",
"Enable SAML compress - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
"Enable Email linking": "Enable Email linking",
"Enable Email linking - Tooltip": "When using 3rd-party providers to log in, if there is a user in the organization with the same Email, the 3rd-party login method will be automatically associated with that user",
"Enable SAML compression": "Enable SAML compression",
"Enable SAML compression - Tooltip": "Whether to compress SAML response messages when Casdoor is used as SAML idp",
"Enable WebAuthn signin": "Enable WebAuthn signin",
"Enable WebAuthn signin - Tooltip": "Whether to allow login with cell phone or email verification code",
"Enable WebAuthn signin - Tooltip": "Whether to allow users to login with WebAuthn",
"Enable code signin": "Enable code signin",
"Enable code signin - Tooltip": "Whether to allow login with cell phone or email verification code",
"Enable link accounts that with the same email": "Enable link accounts that with the same email",
"Enable link accounts that with the same email - Tooltip": "Enable link accounts that with the same email",
"Enable code signin - Tooltip": "Whether to allow users to login with phone or Email verification code",
"Enable password": "Enable password",
"Enable password - Tooltip": "Whether to allow users to login with password",
"Enable side panel": "Enable side panel",
"Enable signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the app",
"Enable signin session - Tooltip": "Whether Casdoor maintains a session after logging into Casdoor from the application",
"Enable signup": "Enable signup",
"Enable signup - Tooltip": "Whether to allow users to register",
"Enable signup - Tooltip": "Whether to allow users to register a new account",
"Failed to log in": "Failed to log in",
"Failed to sign in": "Failed to sign in",
"File uploaded successfully": "File uploaded successfully",
"Follow organization theme": "Follow organization theme",
"Form CSS": "Form CSS",
"Form CSS - Edit": "Form CSS - Edit",
"Form CSS - Tooltip": "CSS styling of forms (e.g. adding borders and shadows)",
"Form CSS - Tooltip": "CSS styling of the signup, signin and forget password forms (e.g. adding borders and shadows)",
"Form position": "Form position",
"Form position - Tooltip": "Location of forms for registration, login, forgotten password, etc.",
"Form position - Tooltip": "Location of the signup, signin and forget password forms",
"Grant types": "Grant types",
"Grant types - Tooltip": "Select which Grant types are allowed in the OAuth protocol",
"Grant types - Tooltip": "Select which grant types are allowed in the OAuth protocol",
"Left": "Left",
"Logged in successfully": "Logged in successfully",
"Logged out successfully": "Logged out successfully",
"New Application": "New Application",
"None": "None",
"Password ON": "Password ON",
"Password ON - Tooltip": "Whether to allow password login",
"Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Please select a HTML file",
@ -63,59 +63,59 @@
"Redirect URL": "Redirect URL",
"Redirect URL (Assertion Consumer Service POST Binding URL) - Tooltip": "Redirect URL (Assertion Consumer Service POST Binding URL)",
"Redirect URLs": "Redirect URLs",
"Redirect URLs - Tooltip": "List of redirected addresses after successful login",
"Redirect URLs - Tooltip": "Allowed redirect URL list, supporting regular expression matching; URLs not in the list will fail to redirect",
"Refresh token expire": "Refresh token expire",
"Refresh token expire - Tooltip": "Refresh token expiration time",
"Right": "Right",
"Rule": "Rule",
"SAML Reply URL": "SAML Reply URL",
"SAML metadata": "SAML metadata",
"SAML metadata - Tooltip": "Metadata information of SAML protocol",
"SAML metadata - Tooltip": "The metadata of SAML protocol",
"SAML metadata URL copied to clipboard successfully": "SAML metadata URL copied to clipboard successfully",
"SAML reply URL": "SAML reply URL",
"Side panel HTML": "Side panel HTML",
"Side panel HTML - Edit": "Side panel HTML - Edit",
"Side panel HTML - Tooltip": "Side panel HTML",
"Side panel HTML - Tooltip": "Customize the HTML code for the side panel of the login page",
"Sign Up Error": "Sign Up Error",
"Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
"Signin session": "Signin session",
"Signup items": "Signup items",
"Signup items - Tooltip": "Items to be filled in when registering users",
"Signup items - Tooltip": "Items for users to fill in when registering new accounts",
"Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "Signup page URL copied to clipboard successfully, please paste it into the incognito window or another browser",
"The application does not allow to sign up new account": "The application does not allow to sign up new account",
"Token expire": "Token expire",
"Token expire - Tooltip": "Access token expiration time",
"Token format": "Token format",
"Token format - Tooltip": "Select access token format",
"Token format - Tooltip": "The format of access token",
"You are unexpected to see this prompt page": "You are unexpected to see this prompt page"
},
"cert": {
"Bit size": "Bit size",
"Bit size - Tooltip": "Secret key length",
"Certificate": "Certificate",
"Certificate - Tooltip": "The public key, configured on your server, is used to decrypt the signature",
"Certificate - Tooltip": "Public key certificate, used for decrypting the JWT signature of the Access Token. This certificate usually needs to be deployed on the Casdoor SDK side (i.e., the application) to parse the JWT",
"Certificate copied to clipboard successfully": "Certificate copied to clipboard successfully",
"Copy certificate": "Copy certificate",
"Copy private key": "Copy private key",
"Crypto algorithm": "Crypto algorithm",
"Crypto algorithm - Tooltip": "Encryption algorithm of the certificate",
"Crypto algorithm - Tooltip": "Encryption algorithm used by the certificate",
"Download certificate": "Download certificate",
"Download private key": "Download private key",
"Edit Cert": "Edit Cert",
"Expire in years": "Expire in years",
"Expire in years - Tooltip": "Expire in years",
"Expire in years - Tooltip": "Validity period of the certificate, in years",
"New Cert": "New Cert",
"Private key": "Private key",
"Private key - Tooltip": "Private key for signature generation",
"Private key - Tooltip": "Private key corresponding to the public key certificate",
"Private key copied to clipboard successfully": "Private key copied to clipboard successfully",
"Scope": "Scope",
"Scope - Tooltip": "Scope of the certificate",
"Scope - Tooltip": "Usage scenarios of the certificate",
"Type": "Type",
"Type - Tooltip": "Type of certificate"
},
"code": {
"Code You Received": "Code You Received",
"Code you received": "Code you received",
"Email code": "Email code",
"Empty Code": "Empty Code",
"Empty code": "Empty code",
"Enter your code": "Enter your code",
"Phone code": "Phone code",
"Please input your phone verification code!": "Please input your phone verification code!",
@ -144,12 +144,12 @@
"Adapters": "Adapters",
"Add": "Add",
"Affiliation URL": "Affiliation URL",
"Affiliation URL - Tooltip": "Affiliation URL",
"Affiliation URL - Tooltip": "The homepage URL for the affiliation",
"Application": "Application",
"Applications": "Applications",
"Applications that require authentication": "Applications that require authentication",
"Avatar": "Avatar",
"Avatar - Tooltip": "Avatar to show to others",
"Avatar - Tooltip": "Public avatar image for the user",
"Back Home": "Back Home",
"Cancel": "Cancel",
"Captcha": "Captcha",
@ -161,27 +161,27 @@
"Close": "Close",
"Created time": "Created time",
"Default application": "Default application",
"Default application - Tooltip": "Default application",
"Default application - Tooltip": "Default application for users registered directly from the organization page",
"Default avatar": "Default avatar",
"Default avatar - Tooltip": "Default avatar",
"Default avatar - Tooltip": "Default avatar used when newly registered users do not set an avatar image",
"Delete": "Delete",
"Description": "Description",
"Description - Tooltip": "Descriptive information related to this",
"Description - Tooltip": "Detailed description information for reference, Casdoor itself will not use it",
"Display name": "Display name",
"Display name - Tooltip": "The name displayed, it can be repeated",
"Display name - Tooltip": "A user-friendly, easily readable name displayed publicly in the UI",
"Down": "Down",
"Edit": "Edit",
"Email": "Email",
"Email - Tooltip": "Email address",
"Email - Tooltip": "Valid email address",
"Failed to add": "Failed to add",
"Failed to connect to server": "Failed to connect to server",
"Failed to delete": "Failed to delete",
"Failed to save": "Failed to save",
"Favicon": "Favicon",
"Favicon - Tooltip": "Favicon icons for the website",
"Favicon - Tooltip": "Favicon icon URL used in all Casdoor pages of the organization",
"First name": "First name",
"Forget URL": "Forget URL",
"Forget URL - Tooltip": "Forgot password URL",
"Forget URL - Tooltip": "Custom URL for the \"Forget password\" page. If not set, the default Casdoor \"Forget password\" page will be used. When set, the \"Forget password\" link on the login page will redirect to this URL",
"Found some texts still not translated? Please help us translate at": "Found some texts still not translated? Please help us translate at",
"Go to writable demo site?": "Go to writable demo site?",
"Home": "Home",
@ -198,52 +198,53 @@
"Logo": "Logo",
"Logo - Tooltip": "Icons that the application presents to the outside world",
"Master password": "Master password",
"Master password - Tooltip": "Can be used to log in to all users under the organization and facilitate administrators to log in as that user to solve technical problems",
"Master password - Tooltip": "Can be used to log in to all users under this organization, making it convenient for administrators to log in as this user to solve technical issues",
"Menu": "Menu",
"Method": "Method",
"Model": "Model",
"Model - Tooltip": "Select one model belonging to the organization",
"Model - Tooltip": "Casbin access control model",
"Models": "Models",
"Name": "Name",
"Name - Tooltip": "Unique, string-based ID",
"OAuth providers": "OAuth providers",
"OK": "OK",
"Organization": "Organization",
"Organization - Tooltip": "Select one from the organizations",
"Organization - Tooltip": "Similar to concepts such as tenants or user pools, each user and application belongs to an organization",
"Organizations": "Organizations",
"Password": "Password",
"Password - Tooltip": "Make sure the password is correct",
"Password salt": "Password salt",
"Password salt - Tooltip": "Random parameters for password encryption",
"Password salt - Tooltip": "Random parameter used for password encryption",
"Password type": "Password type",
"Password type - Tooltip": "Form of password storage in the database",
"Password type - Tooltip": "Storage format of passwords in the database",
"Payments": "Payments",
"Permissions": "Permissions",
"Permissions - Tooltip": "Permissions owned",
"Permissions - Tooltip": "Permissions owned by this user",
"Phone": "Phone",
"Phone - Tooltip": "Phone number",
"Preview": "Preview",
"Preview - Tooltip": "Preview screen",
"Preview - Tooltip": "Preview the configured effects",
"Products": "Products",
"Provider": "Provider",
"Provider - Tooltip": "Payment providers, such as paypel",
"Provider - Tooltip": "Payment providers to be configured, including PayPal, Alipay, WeChat Pay, etc.",
"Providers": "Providers",
"Providers - Tooltip": "Configuration providers such as OAuth, SMS, storage",
"Providers - Tooltip": "Providers to be configured, including 3rd-party login, object storage, verification code, etc.",
"Real name": "Real name",
"Records": "Records",
"Request URI": "Request URI",
"Resources": "Resources",
"Roles": "Roles",
"Roles - Tooltip": "Roles owned",
"Roles - Tooltip": "Roles that the user belongs to",
"Save": "Save",
"Save & Exit": "Save & Exit",
"Session ID": "Session ID",
"Sessions": "Sessions",
"Signin URL": "Signin URL",
"Signin URL - Tooltip": "User's login address",
"Signin URL - Tooltip": "Custom URL for the login page. If not set, the default Casdoor login page will be used. When set, the login links on various Casdoor pages will redirect to this URL",
"Signup URL": "Signup URL",
"Signup URL - Tooltip": "Registration address displayed to users",
"Signup URL - Tooltip": "Custom URL for the registration page. If not set, the default Casdoor registration page will be used. When set, the registration links on various Casdoor pages will redirect to this URL",
"Signup application": "Signup application",
"Signup application - Tooltip": "Which application the user registered through when registering",
"Signup application - Tooltip": "Which application the user registered through when they signed up",
"Sorry, the page you visited does not exist.": "Sorry, the page you visited does not exist.",
"Sorry, the user you visited does not exist or you are not authorized to access this user.": "Sorry, the user you visited does not exist or you are not authorized to access this user.",
"Sorry, you do not have permission to access this page or logged in status invalid.": "Sorry, you do not have permission to access this page or logged in status invalid.",
@ -253,7 +254,7 @@
"Successfully deleted": "Successfully deleted",
"Successfully saved": "Successfully saved",
"Supported country codes": "Supported country codes",
"Supported country codes - Tooltip": "Cell phone number prefix, used to distinguish between countries or regions",
"Supported country codes - Tooltip": "Country codes supported by the organization. These codes can be selected as a prefix when sending SMS verification codes",
"Sure to delete": "Sure to delete",
"Swagger": "Swagger",
"Sync": "Sync",
@ -263,13 +264,13 @@
"Timestamp": "Timestamp",
"Tokens": "Tokens",
"URL": "URL",
"URL - Tooltip": "URL Link",
"URL - Tooltip": "URL link",
"Up": "Up",
"User": "User",
"User - Tooltip": "Make sure the username is spelled correctly",
"User containers": "User containers",
"User - Tooltip": "Make sure the username is correct",
"User containers": "User pools",
"User type": "User type",
"User type - Tooltip": "User roles with different privileges",
"User type - Tooltip": "Tags that the user belongs to, defaulting to \"normal-user\"",
"Users": "Users",
"Users under all organizations": "Users under all organizations",
"Webhooks": "Webhooks",
@ -289,18 +290,18 @@
"Edit LDAP": "Edit LDAP",
"Email": "Email",
"Enable SSL": "Enable SSL",
"Enable SSL - Tooltip": "Enable SSL - Tooltip",
"Group Id": "Group Id",
"Enable SSL - Tooltip": "Whether to enable SSL",
"Group ID": "Group ID",
"ID": "ID",
"Last Sync": "Last Sync",
"Phone": "Phone",
"Server": "Server",
"Server Host": "Server Host",
"Server Host - Tooltip": "LDAP server address",
"Server Name": "Server Name",
"Server Name - Tooltip": "LDAP server configuration display name",
"Server Port": "Server Port",
"Server Port - Tooltip": "LDAP server port",
"Server host": "Server host",
"Server host - Tooltip": "LDAP server address",
"Server name": "Server name",
"Server name - Tooltip": "LDAP server configuration display name",
"Server port": "Server port",
"Server port - Tooltip": "LDAP server port",
"Sync": "Sync",
"The Auto Sync option will sync all users to specify organization": "The Auto Sync option will sync all users to specify organization",
"UidNumber / Uid": "UidNumber / Uid"
@ -324,10 +325,10 @@
"Sign in with WebAuthn": "Sign in with WebAuthn",
"Sign in with {type}": "Sign in with {type}",
"Signing in...": "Signing in...",
"Successfully logged in with webauthn credentials": "Successfully logged in with webauthn credentials",
"The input is not valid Email or Phone!": "The input is not valid Email or Phone!",
"Successfully logged in with WebAuthn credentials": "Successfully logged in with WebAuthn credentials",
"The input is not valid Email or phone number!": "The input is not valid Email or phone number!",
"To access": "To access",
"Verification Code": "Verification Code",
"Verification code": "Verification code",
"WebAuthn": "WebAuthn",
"sign up now": "sign up now",
"username, Email or phone": "username, Email or phone"
@ -335,7 +336,7 @@
"model": {
"Edit Model": "Edit Model",
"Model text": "Model text",
"Model text - Tooltip": "Casbin Access Control Model",
"Model text - Tooltip": "Casbin access control model, including built-in models like ACL, RBAC, ABAC, RESTful, etc. You can also create custom models. For more information, please visit the Casbin website",
"New Model": "New Model"
},
"organization": {
@ -345,83 +346,83 @@
"Edit Organization": "Edit Organization",
"Favicon": "Favicon",
"Follow global theme": "Follow global theme",
"InitScore": "InitScore",
"Init score": "Init score",
"Init score - Tooltip": "Initial score points awarded to users upon registration",
"Is profile public": "Is profile public",
"Is profile public - Tooltip": "When closed, only global administrators or users from the same organization can access the user home page",
"Is profile public - Tooltip": "After being closed, only global administrators or users in the same organization can access the user's profile page",
"Modify rule": "Modify rule",
"New Organization": "New Organization",
"Soft deletion": "Soft deletion",
"Soft deletion - Tooltip": "When enabled, deletion of user information will not be completely cleared in the database, but will be marked as deleted",
"Soft deletion - Tooltip": "When enabled, deleting users will not completely remove them from the database. Instead, they will be marked as deleted",
"Tags": "Tags",
"Tags - Tooltip": "Collection of user-selectable tags",
"The user's initScore - Tooltip": "User's initial points",
"Tags - Tooltip": "Collection of tags available for users to choose from",
"View rule": "View rule",
"Visible": "Visible",
"Website URL": "Website URL",
"Website URL - Tooltip": "Website URL"
"Website URL - Tooltip": "The homepage URL of the organization. This field is not used in Casdoor"
},
"payment": {
"Confirm your invoice information": "Confirm your invoice information",
"Currency": "Currency",
"Currency - Tooltip": "Payment Currency",
"Currency - Tooltip": "Like USD, CNY, etc.",
"Download Invoice": "Download Invoice",
"Edit Payment": "Edit Payment",
"Individual": "Individual",
"Invoice URL": "Invoice URL",
"Invoice URL - Tooltip": "URL for downloading the invoice",
"Invoice actions": "Invoice actions",
"Invoice actions - Tooltip": "Operation includes both invoicing and downloading invoices",
"Invoice actions - Tooltip": "Operations include issuing invoices and downloading invoices",
"Invoice remark": "Invoice remark",
"Invoice remark - Tooltip": "Remarks no more than 50 words",
"Invoice remark - Tooltip": "The remark should not exceed 50 characters",
"Invoice tax ID": "Invoice tax ID",
"Invoice tax ID - Tooltip": "When the invoicing type is unit, the unit taxpayer identification number must be entered; when the invoicing type is individual, it is not necessary to fill in",
"Invoice tax ID - Tooltip": "When the invoice type is for an organization, the organization taxpayer identification number must be entered; when the invoice type is for an individual, it is not necessary to fill in this information",
"Invoice title": "Invoice title",
"Invoice title - Tooltip": "When the invoicing type is unit, the name of the unit can be entered in the invoice payable; when the invoicing type is individual, the system automatically fills in the name of the contributor",
"Invoice title - Tooltip": "When the invoice type is for an organization, the invoice title can be entered as the organization name; when the invoice type is for an individual, the system will automatically fill in the payer's name",
"Invoice type": "Invoice type",
"Invoice type - Tooltip": "Invoicing type can be personal or unit",
"Invoice type - Tooltip": "The invoice type can be for an individual or an organization",
"Issue Invoice": "Issue Invoice",
"Message": "Message",
"Message - Tooltip": "Payment processing result message",
"New Payment": "New Payment",
"Organization": "Organization",
"Person Email": "Person Email",
"Person Email - Tooltip": "Person Email",
"Person Email - Tooltip": "Email of the payer",
"Person ID card": "Person ID card",
"Person ID card - Tooltip": "ID number of the payer",
"Person ID card - Tooltip": "ID card number of the payer",
"Person name": "Person name",
"Person name - Tooltip": "Name of the payer",
"Person name - Tooltip": "Real name of the payer",
"Person phone": "Person phone",
"Person phone - Tooltip": "The cell phone number of the payer",
"Person phone - Tooltip": "The phone number of the payer",
"Please carefully check your invoice information. Once the invoice is issued, it cannot be withdrawn or modified.": "Please carefully check your invoice information. Once the invoice is issued, it cannot be withdrawn or modified.",
"Please click the below button to return to the original website": "Please click the below button to return to the original website",
"Please pay the order first!": "Please pay the order first!",
"Price": "Price",
"Price - Tooltip": "Price of payment",
"Price - Tooltip": "Price of the product",
"Processing...": "Processing...",
"Product": "Product",
"Product - Tooltip": "Product Name",
"Result": "Result",
"Return to Website": "Return to Website",
"State": "State",
"State - Tooltip": "Payment Status",
"State - Tooltip": "Payment status",
"The payment has failed": "The payment has failed",
"The payment is still under processing": "The payment is still under processing",
"Type": "Type",
"Type - Tooltip": "Payment method when purchasing product",
"Type - Tooltip": "Payment method used when purchasing the product",
"You have successfully completed the payment": "You have successfully completed the payment",
"please wait for a few seconds...": "please wait for a few seconds...",
"the current state is": "the current state is"
},
"permission": {
"Actions": "Actions",
"Actions - Tooltip": "Authorized actions",
"Actions - Tooltip": "Allowed actions",
"Admin": "Admin",
"Allow": "Allow",
"Approve time": "Approve time",
"Approve time - Tooltip": "The time when the authorization was approved",
"Approve time - Tooltip": "The time of approval for this permission",
"Approved": "Approved",
"Approver": "Approver",
"Approver - Tooltip": "The person who approved the authorization",
"Approver - Tooltip": "The person who approved the permission",
"Deny": "Deny",
"Edit Permission": "Edit Permission",
"Effect": "Effect",
@ -430,13 +431,13 @@
"Pending": "Pending",
"Read": "Read",
"Resource type": "Resource type",
"Resource type - Tooltip": "Type of authorized resources",
"Resource type - Tooltip": "Type of resource",
"Resources": "Resources",
"Resources - Tooltip": "Authorized resources",
"State": "State",
"State - Tooltip": "The current statue of the authorization",
"State - Tooltip": "The current state of the permission",
"Submitter": "Submitter",
"Submitter - Tooltip": "The person applying for this authorization",
"Submitter - Tooltip": "The person applying for this permission",
"TreeNode": "TreeNode",
"Write": "Write"
},
@ -445,16 +446,14 @@
"Buy": "Buy",
"Buy Product": "Buy Product",
"CNY": "CNY",
"Currency": "Currency",
"Currency - Tooltip": "Currency accepted for the product",
"Description": "Description",
"Description - Tooltip": "Product Description",
"Description - Tooltip": "Description of product",
"Detail": "Detail",
"Detail - Tooltip": "Product Details",
"Detail - Tooltip": "Detail of product",
"Edit Product": "Edit Product",
"I have completed the payment": "I have completed the payment",
"Image": "Image",
"Image - Tooltip": "Product Image",
"Image - Tooltip": "Image of product",
"New Product": "New Product",
"Pay": "Pay",
"Payment providers": "Payment providers",
@ -464,16 +463,16 @@
"Please provide your username in the remark": "Please provide your username in the remark",
"Please scan the QR code to pay": "Please scan the QR code to pay",
"Price": "Price",
"Price - Tooltip": "Price of the product",
"Price - Tooltip": "Price of product",
"Quantity": "Quantity",
"Quantity - Tooltip": "Quantity of the product",
"Quantity - Tooltip": "Quantity of product",
"Return URL": "Return URL",
"Return URL - Tooltip": "The link that jumps after payment is complete",
"Return URL - Tooltip": "URL to return to after successful purchase",
"SKU": "SKU",
"Sold": "Sold",
"Sold - Tooltip": "Number of this product sold",
"Sold - Tooltip": "Quantity sold",
"Tag": "Tag",
"Tag - Tooltip": "Tag of the product",
"Tag - Tooltip": "Tag of product",
"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.",
@ -490,12 +489,12 @@
"App key": "App key",
"App key - Tooltip": "App key",
"App secret": "App secret",
"AppSecret - Tooltip": "AppSecret",
"AppSecret - Tooltip": "App secret",
"Auth URL": "Auth URL",
"Auth URL - Tooltip": "Auth URL",
"Bucket": "Bucket",
"Bucket - Tooltip": "Name of Bucket",
"Can not parse Metadata": "Can not parse Metadata",
"Bucket - Tooltip": "Name of bucket",
"Can not parse metadata": "Can not parse metadata",
"Can signin": "Can signin",
"Can signup": "Can signup",
"Can unlink": "Can unlink",
@ -513,43 +512,44 @@
"Client secret 2 - Tooltip": "The second client secret key",
"Copy": "Copy",
"Disable SSL": "Disable SSL",
"Disable SSL - Tooltip": "Whether to disable SSL security protocol when communicating with STMP server",
"Disable SSL - Tooltip": "Whether to disable SSL protocol when communicating with STMP server",
"Domain": "Domain",
"Domain - Tooltip": "Storage node custom domain name",
"Domain - Tooltip": "Custom domain for object storage",
"Edit Provider": "Edit Provider",
"Email content": "Email content",
"Email content - Tooltip": "Content of the email",
"Email content - Tooltip": "Content of the Email",
"Email sent successfully": "Email sent successfully",
"Email title": "Email title",
"Email title - Tooltip": "Title of the email",
"Enable QR code": "Enable QR code",
"Enable QR code - Tooltip": "Enable scan code to login",
"Enable QR code - Tooltip": "Whether to allow scanning QR code to login",
"Endpoint": "Endpoint",
"Endpoint (Intranet)": "Endpoint (Intranet)",
"Host": "Host",
"Host - Tooltip": "Fill in the host address and make sure you can connect",
"Host - Tooltip": "Name of host",
"IdP": "IdP",
"IdP certificate": "IdP certificate",
"Issuer URL": "Issuer URL",
"Issuer URL - Tooltip": "Issuer URL",
"Link copied to clipboard successfully": "Link copied to clipboard successfully",
"Metadata": "Metadata",
"Metadata - Tooltip": "Metadata",
"Metadata - Tooltip": "SAML metadata",
"Method": "Method",
"Method - Tooltip": "Login behavior, QR code or silent authorization login",
"Method - Tooltip": "Login method, QR code or silent login",
"Name": "Name",
"New Provider": "New Provider",
"Parse": "Parse",
"Parse Metadata successfully": "Parse Metadata successfully",
"Parse metadata successfully": "Parse metadata successfully",
"Path prefix": "Path prefix",
"Path prefix - Tooltip": "Bucket path prefix for object storage",
"Please use WeChat and scan the QR code to sign in": "Please use WeChat and scan the QR code to sign in",
"Port": "Port",
"Port - Tooltip": "Make sure the port is open",
"Prompted": "Prompted",
"Provider URL": "Provider URL",
"Provider URL - Tooltip": "Provider URL",
"Provider URL - Tooltip": "URL for configuring the service provider, this field is only used for reference and is not used in Casdoor",
"Region ID": "Region ID",
"Region ID - Tooltip": "Region ID - Tooltip",
"Region ID - Tooltip": "Region ID for the service provider",
"Region endpoint for Internet": "Region endpoint for Internet",
"Region endpoint for Intranet": "Region endpoint for Intranet",
"Required": "Required",
@ -567,9 +567,9 @@
"Scope": "Scope",
"Scope - Tooltip": "Scope",
"Secret access key": "Secret access key",
"Secret access key - Tooltip": "Secret access key",
"Secret key": "Secret key",
"Secret key - Tooltip": "Used by the server to call the verification code provider API for verification",
"SecretAccessKey - Tooltip": "SecretAccessKey",
"Send Testing Email": "Send Testing Email",
"Send Testing SMS": "Send Testing SMS",
"Sign Name": "Sign Name",
@ -578,22 +578,21 @@
"Sign request - Tooltip": "Whether the request requires a signature",
"Signin HTML": "Signin HTML",
"Signin HTML - Edit": "Signin HTML - Edit",
"Signin HTML - Tooltip": "Custom HTML for replacing the default login page style",
"Signin HTML - Tooltip": "Custom HTML for replacing the default signin page style",
"Signup HTML": "Signup HTML",
"Signup HTML - Edit": "Signup HTML - Edit",
"Signup HTML - Tooltip": "Custom HTML for replacing the default registration page style",
"Signup HTML - Tooltip": "Custom HTML for replacing the default signup page style",
"Site key": "Site key",
"Site key - Tooltip": "For front-end embedded pages",
"Site key - Tooltip": "Site key",
"Sub type": "Sub type",
"Sub type - Tooltip": "Sub type",
"Template Code": "Template Code",
"Template Code - Tooltip": "The code of the template used",
"Template code": "Template code",
"Template code - Tooltip": "Template code",
"Terms of Use": "Terms of Use",
"Terms of Use - Tooltip": "Terms of use to be followed by users",
"Test Connection": "Test Connection",
"Terms of Use - Tooltip": "Terms of use that users need to read and agree to during registration",
"Test Email": "Test Email",
"Test Email - Tooltip": "Address to accept test emails",
"The prefix path of the file - Tooltip": "The prefix path of the file",
"Test Email - Tooltip": "Email address to receive test mails",
"Test SMTP Connection": "Test SMTP Connection",
"Token URL": "Token URL",
"Token URL - Tooltip": "Token URL",
"Type": "Type",
@ -601,11 +600,10 @@
"UserInfo URL": "UserInfo URL",
"UserInfo URL - Tooltip": "UserInfo URL",
"Visible": "Visible",
"admin (share)": "admin (share)",
"alertType": "alertType"
"admin (Shared)": "admin (Shared)"
},
"record": {
"Is Triggered": "Is Triggered"
"Is triggered": "Is triggered"
},
"resource": {
"Application": "Application",
@ -624,11 +622,11 @@
"Edit Role": "Edit Role",
"New Role": "New Role",
"Sub domains": "Sub domains",
"Sub domains - Tooltip": "Sub domains included in the current role",
"Sub domains - Tooltip": "Domains included in the current role",
"Sub roles": "Sub roles",
"Sub roles - Tooltip": "Sub-roles contained in the current role",
"Sub roles - Tooltip": "Roles included in the current role",
"Sub users": "Sub users",
"Sub users - Tooltip": "Select the sub-users under the role"
"Sub users - Tooltip": "Users included in the current role"
},
"signup": {
"Accept": "Accept",
@ -665,25 +663,25 @@
"Affiliation table": "Affiliation table",
"Affiliation table - Tooltip": "Database table name of the work unit",
"Avatar base URL": "Avatar base URL",
"Avatar base URL - Tooltip": "Prefix of the avatar URL",
"Avatar base URL - Tooltip": "URL prefix for the avatar images",
"Casdoor column": "Casdoor column",
"Column name": "Column name",
"Column type": "Column type",
"Database": "Database",
"Database - Tooltip": "The original database name",
"Database type": "Database type",
"Database type - Tooltip": "Database type, now support MySQL, PostgreSQL, SQL server, Oracle, SQLite 3",
"Database type - Tooltip": "Database type, supporting all databases supported by XORM, such as MySQL, PostgreSQL, SQL Server, Oracle, SQLite, etc.",
"Edit Syncer": "Edit Syncer",
"Error text": "Error text",
"Error text - Tooltip": "Error when synchronizer connects to database",
"Error text - Tooltip": "Error text",
"Is hashed": "Is hashed",
"New Syncer": "New Syncer",
"Sync interval": "Sync interval",
"Sync interval - Tooltip": "Unit in seconds",
"Table": "Table",
"Table - Tooltip": "Name of table",
"Table - Tooltip": "Name of database table",
"Table columns": "Table columns",
"Table columns - Tooltip": "Columns of the table that participate in data synchronization, columns that do not participate in synchronization do not need to be added",
"Table columns - Tooltip": "Columns in the table involved in data synchronization. Columns that are not involved in synchronization do not need to be added",
"Table primary key": "Table primary key",
"Table primary key - Tooltip": "Table primary key, such as id"
},
@ -692,11 +690,11 @@
"An Identity and Access Management (IAM) / Single-Sign-On (SSO) platform with web UI supporting OAuth 2.0, OIDC, SAML and CAS": "An Identity and Access Management (IAM) / Single-Sign-On (SSO) platform with web UI supporting OAuth 2.0, OIDC, SAML and CAS",
"CPU Usage": "CPU Usage",
"Community": "Community",
"Get CPU Usage Failed": "Get CPU Usage Failed",
"Get Memory Usage Failed": "Get Memory Usage Failed",
"Failed to get CPU usage": "Failed to get CPU usage",
"Failed to get memory usage": "Failed to get memory usage",
"Memory Usage": "Memory Usage",
"Official Website": "Official Website",
"Unknown Version": "Unknown Version",
"Official website": "Official website",
"Unknown version": "Unknown version",
"Version": "Version"
},
"theme": {
@ -710,7 +708,7 @@
"Is compact": "Is compact",
"Primary color": "Primary color",
"Theme": "Theme",
"Theme - Tooltip": "Select a theme for your application"
"Theme - Tooltip": "Style theme of the application"
},
"token": {
"Access token": "Access token",
@ -724,36 +722,34 @@
"user": {
"\" + destType + \" reset": "\" + destType + \" reset",
"3rd-party logins": "3rd-party logins",
"3rd-party logins - Tooltip": "Login using a third-party application",
"3rd-party logins - Tooltip": "Social logins linked by the user",
"Address": "Address",
"Address - Tooltip": "Usual residence address",
"Address - Tooltip": "Residential address",
"Affiliation": "Affiliation",
"Affiliation - Tooltip": "Workplace, such as company name",
"Affiliation - Tooltip": "Employer, such as company name or organization name",
"Bio": "Bio",
"Bio - Tooltip": "Self Introduction",
"Cancel": "Cancel",
"Bio - Tooltip": "Self introduction of the user",
"Captcha Verify Failed": "Captcha Verify Failed",
"Captcha Verify Success": "Captcha Verify Success",
"Code Sent": "Code Sent",
"Country code": "Country code",
"Country/Region": "Country/Region",
"Country/Region - Tooltip": "Select Country/Region",
"Country/Region - Tooltip": "Country or region",
"Edit User": "Edit User",
"Email cannot be empty": "Email cannot be empty",
"Empty input!": "Empty input!",
"Homepage": "Homepage",
"Homepage - Tooltip": "Link to personal homepage",
"Homepage": "Homepage of the user",
"Homepage - Tooltip": "Homepage URL of the user",
"ID card": "ID card",
"Input your email": "Input your email",
"Input your phone number": "Input your phone number",
"Is admin": "Is admin",
"Is admin - Tooltip": "Is the application admin",
"Is admin - Tooltip": "Is an administrator of the organization the user belongs to",
"Is deleted": "Is deleted",
"Is deleted - Tooltip": "Is the account deleted",
"Is deleted - Tooltip": "Soft-deleted users only retain database records and cannot perform any operations",
"Is forbidden": "Is forbidden",
"Is forbidden - Tooltip": "Is the account disabled",
"Is forbidden - Tooltip": "Forbidden users cannot log in any more",
"Is global admin": "Is global admin",
"Is global admin - Tooltip": "Is the global application",
"Is global admin - Tooltip": "Is an administrator of Casdoor",
"Keys": "Keys",
"Link": "Link",
"Location": "Location",
@ -764,14 +760,13 @@
"New Password": "New Password",
"New User": "New User",
"New phone": "New phone",
"OK": "OK",
"Old Password": "Old Password",
"Password": "Password",
"Password Set": "Password Set",
"Phone cannot be empty": "Phone cannot be empty",
"Please select avatar from resources": "Please select avatar from resources",
"Properties": "Properties",
"Properties - Tooltip": "Properties - Tooltip",
"Properties - Tooltip": "Properties of the user",
"Re-enter New": "Re-enter New",
"Reset Email...": "Reset Email...",
"Reset Phone...": "Reset Phone...",
@ -780,14 +775,15 @@
"Set new profile picture": "Set new profile picture",
"Set password...": "Set password...",
"Tag": "Tag",
"Tag - Tooltip": "User's Tags",
"Tag - Tooltip": "Tag of the user",
"Title": "Title",
"Title - Tooltip": "Position in the unit/company",
"Title - Tooltip": "Position in the affiliation",
"Two passwords you typed do not match.": "Two passwords you typed do not match.",
"Unlink": "Unlink",
"Upload (.xlsx)": "Upload (.xlsx)",
"Upload a photo": "Upload a photo",
"Values": "Values",
"Verification code sent": "Verification code sent",
"WebAuthn credentials": "WebAuthn credentials",
"input password": "input password"
},
@ -798,15 +794,15 @@
"Events": "Events",
"Events - Tooltip": "Events",
"Headers": "Headers",
"Headers - Tooltip": "HTTP protocol headers (key-value pairs)",
"Headers - Tooltip": "HTTP headers (key-value pairs)",
"Is user extended": "Is user extended",
"Is user extended - Tooltip": "Add extendedUser to JSON to extend the user field",
"Is user extended - Tooltip": "Whether to include the user's extended fields in the JSON",
"Method": "Method",
"Method - Tooltip": "Http method",
"Method - Tooltip": "HTTP method",
"Name": "Name",
"New Webhook": "New Webhook",
"URL": "URL",
"URL - Tooltip": "URL",
"URL - Tooltip": "URL link",
"Value": "Value"
}
}

View File

@ -5,12 +5,12 @@
"Sign Up": "Registrarme"
},
"adapter": {
"Duplicated policy rules": "Duplicated policy rules",
"Edit Adapter": "Edit Adapter",
"Failed to sync policies": "Failed to sync policies",
"New Adapter": "New Adapter",
"Policies": "Policies",
"Policies - Tooltip": "Policies - Tooltip",
"Repeated policy rules": "Repeated policy rules",
"Sync": "Sync",
"Sync policies successfully": "Sync policies successfully"
},
@ -26,14 +26,16 @@
"Copy signin page URL": "Copiar URL de inicio de sesión",
"Copy signup page URL": "Copiar URL de registro de usuarios",
"Edit Application": "Editar Aplicación",
"Enable SAML compress": "Habilitar compresión SAML",
"Enable SAML compress - Tooltip": "Habilitar compresión SAML - Tooltip",
"Enable Email linking": "Enable Email linking",
"Enable Email linking - Tooltip": "Enable Email linking - Tooltip",
"Enable SAML compression": "Habilitar compresión SAML",
"Enable SAML compression - Tooltip": "Habilitar compresión SAML - Tooltip",
"Enable WebAuthn signin": "Habilitar inicio de sesión de WebAuthn",
"Enable WebAuthn signin - Tooltip": "Habilitar inicio de sesión de WebAuthn - Tooltip",
"Enable code signin": "Habilitar inicio de sesión por código",
"Enable code signin - Tooltip": "Habilitar inicio de sesión por código - Tooltip",
"Enable link accounts that with the same email": "Enable link accounts that with the same email",
"Enable link accounts that with the same email - Tooltip": "Enable link accounts that with the same email - Tooltip",
"Enable password": "Constraseña ON",
"Enable password - Tooltip": "Constraseña ON - Tooltip",
"Enable side panel": "Enable side panel",
"Enable signin session - Tooltip": "Enable signin session - Tooltip",
"Enable signup": "Habilitar nuevos registros",
@ -54,8 +56,6 @@
"Logged out successfully": "Logged out successfully",
"New Application": "Nueva Aplicación",
"None": "None",
"Password ON": "Constraseña ON",
"Password ON - Tooltip": "Constraseña ON - Tooltip",
"Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Seleccione un archivo HTML",
@ -68,10 +68,10 @@
"Refresh token expire - Tooltip": "Expiración del Refresh Token - Tooltip",
"Right": "Right",
"Rule": "Rule",
"SAML Reply URL": "SAML Reply URL",
"SAML metadata": "SAML metadata",
"SAML metadata - Tooltip": "SAML metadata - Tooltip",
"SAML metadata URL copied to clipboard successfully": "SAML metadata URL copiado al portapapeles con éxito",
"SAML reply URL": "SAML reply URL",
"Side panel HTML": "Side panel HTML",
"Side panel HTML - Edit": "Side panel HTML - Edit",
"Side panel HTML - Tooltip": "Side panel HTML - Tooltip",
@ -113,9 +113,9 @@
"Type - Tooltip": "Tipo - Tooltip"
},
"code": {
"Code You Received": "Código que recibiste",
"Code you received": "Código que recibiste",
"Email code": "Código de Email",
"Empty Code": "Código requerido",
"Empty code": "Código requerido",
"Enter your code": "Ingrese su código",
"Phone code": "Código de teléfono",
"Please input your phone verification code!": "Ingrese su código de verificación teléfonico!",
@ -207,6 +207,7 @@
"Name": "Nombre",
"Name - Tooltip": "Nombre - Tooltip",
"OAuth providers": "OAuth providers",
"OK": "OK",
"Organization": "Organización",
"Organization - Tooltip": "Organización - Tooltip",
"Organizations": "Organizaciones",
@ -290,17 +291,17 @@
"Email": "Email",
"Enable SSL": "Enable SSL",
"Enable SSL - Tooltip": "Enable SSL - Tooltip",
"Group Id": "Group Id",
"Group ID": "Group ID",
"ID": "ID",
"Last Sync": "Última Sincronización",
"Phone": "Teléfono",
"Server": "Servidor",
"Server Host": "Host de Servidor",
"Server Host - Tooltip": "Host de Servidor - Tooltip",
"Server Name": "Nombre del Servidor",
"Server Name - Tooltip": "Nombre del Servidor - Tooltip",
"Server Port": "Puerto del servidor",
"Server Port - Tooltip": "Puerto del servidor - Tooltip",
"Server host": "Host de Servidor",
"Server host - Tooltip": "Host de Servidor - Tooltip",
"Server name": "Nombre del Servidor",
"Server name - Tooltip": "Nombre del Servidor - Tooltip",
"Server port": "Puerto del servidor",
"Server port - Tooltip": "Puerto del servidor - Tooltip",
"Sync": "Sincronizar",
"The Auto Sync option will sync all users to specify organization": "La opción de sincronización automática sincronizará todos los usuarios para la organización especificada.",
"UidNumber / Uid": "UidNumber / Uid"
@ -324,10 +325,10 @@
"Sign in with WebAuthn": "Iniciar de sesión con WebAuthn",
"Sign in with {type}": "Iniciar de sesión con {type}",
"Signing in...": "Iniciando de sesión...",
"Successfully logged in with webauthn credentials": "Successfully logged in with webauthn credentials",
"The input is not valid Email or Phone!": "El valor ingresado no es un Email o Teléfono válido!",
"Successfully logged in with WebAuthn credentials": "Successfully logged in with WebAuthn credentials",
"The input is not valid Email or phone number!": "El valor ingresado no es un Email o Teléfono válido!",
"To access": "Para ingresar",
"Verification Code": "Verification Code",
"Verification code": "Verification code",
"WebAuthn": "WebAuthn",
"sign up now": "Regístrate ahora",
"username, Email or phone": "nombre de usuario, correo electrónico o teléfono"
@ -345,7 +346,8 @@
"Edit Organization": "Editar Organización",
"Favicon": "Favicon",
"Follow global theme": "Follow global theme",
"InitScore": "InitScore",
"Init score": "Init score",
"Init score - Tooltip": "Init score - Tooltip",
"Is profile public": "Es el perfil publico",
"Is profile public - Tooltip": "Es el perfil publico - Tooltip",
"Modify rule": "Modify rule",
@ -354,7 +356,6 @@
"Soft deletion - Tooltip": "Eliminación Soft - Tooltip",
"Tags": "Etiquetas",
"Tags - Tooltip": "Etiquetas - Tooltip",
"The user's initScore - Tooltip": "The user's initScore - Tooltip",
"View rule": "View rule",
"Visible": "Visible",
"Website URL": "URL del sitio web",
@ -445,8 +446,6 @@
"Buy": "Comprar",
"Buy Product": "Comprar Producto",
"CNY": "CNY",
"Currency": "Moneda",
"Currency - Tooltip": "Moneda - Tooltip",
"Description": "Description",
"Description - Tooltip": "Description - Tooltip",
"Detail": "Detalle",
@ -495,7 +494,7 @@
"Auth URL - Tooltip": "Auth URL - Tooltip",
"Bucket": "Bucket",
"Bucket - Tooltip": "Bucket - Tooltip",
"Can not parse Metadata": "Can not parse Metadata",
"Can not parse metadata": "Can not parse metadata",
"Can signin": "Can signin",
"Can signup": "Can signup",
"Can unlink": "Can unlink",
@ -540,8 +539,9 @@
"Name": "Nombre",
"New Provider": "Nuevo Proveedor",
"Parse": "Parsear",
"Parse Metadata successfully": "Metadata parseada con éxito",
"Parse metadata successfully": "Metadata parseada con éxito",
"Path prefix": "Path prefix",
"Path prefix - Tooltip": "Path prefix - Tooltip",
"Please use WeChat and scan the QR code to sign in": "Please use WeChat and scan the QR code to sign in",
"Port": "Puerto",
"Port - Tooltip": "Puerto - Tooltip",
@ -567,9 +567,9 @@
"Scope": "Scope",
"Scope - Tooltip": "Scope - Tooltip",
"Secret access key": "Secret access key",
"Secret access key - Tooltip": "Secret access key - Tooltip",
"Secret key": "Secret key",
"Secret key - Tooltip": "Secret key - Tooltip",
"SecretAccessKey - Tooltip": "SecretAccessKey - Tooltip",
"Send Testing Email": "Enviar email de prueba",
"Send Testing SMS": "Send Testing SMS",
"Sign Name": "Sign Name",
@ -586,14 +586,13 @@
"Site key - Tooltip": "Site key - Tooltip",
"Sub type": "Sub type",
"Sub type - Tooltip": "Sub type - Tooltip",
"Template Code": "Código de plantilla",
"Template Code - Tooltip": "Código de plantilla - Tooltip",
"Template code": "Código de plantilla",
"Template code - Tooltip": "Código de plantilla - Tooltip",
"Terms of Use": "Términos de Uso",
"Terms of Use - Tooltip": "Términos de Uso - Tooltip",
"Test Connection": "Probar Conexión",
"Test Email": "Probar Email",
"Test Email - Tooltip": "Probar Email - Tooltip",
"The prefix path of the file - Tooltip": "The prefix path of the file - Tooltip",
"Test SMTP Connection": "Probar Conexión",
"Token URL": "Token URL",
"Token URL - Tooltip": "Token URL - Tooltip",
"Type": "Tipo",
@ -601,11 +600,10 @@
"UserInfo URL": "UserInfo URL",
"UserInfo URL - Tooltip": "UserInfo URL - Tooltip",
"Visible": "Visible",
"admin (share)": "admin (share)",
"alertType": "alertType"
"admin (Shared)": "admin (Shared)"
},
"record": {
"Is Triggered": "Esta activado"
"Is triggered": "Esta activado"
},
"resource": {
"Application": "Aplicación",
@ -692,11 +690,11 @@
"An Identity and Access Management (IAM) / Single-Sign-On (SSO) platform with web UI supporting OAuth 2.0, OIDC, SAML and CAS": "An Identity and Access Management (IAM) / Single-Sign-On (SSO) platform with web UI supporting OAuth 2.0, OIDC, SAML and CAS",
"CPU Usage": "CPU Usage",
"Community": "Community",
"Get CPU Usage Failed": "Get CPU Usage Failed",
"Get Memory Usage Failed": "Get Memory Usage Failed",
"Failed to get CPU usage": "Failed to get CPU usage",
"Failed to get memory usage": "Failed to get memory usage",
"Memory Usage": "Memory Usage",
"Official Website": "Official Website",
"Unknown Version": "Unknown Version",
"Official website": "Official website",
"Unknown version": "Unknown version",
"Version": "Version"
},
"theme": {
@ -731,10 +729,8 @@
"Affiliation - Tooltip": "Afiliación - Tooltip",
"Bio": "Acerca de vos",
"Bio - Tooltip": "Acerca de vos - Tooltip",
"Cancel": "Cancelar",
"Captcha Verify Failed": "Fallo la verificación del Captcha",
"Captcha Verify Success": "Captcha verificado con éxito",
"Code Sent": "Código enviado",
"Country code": "Country code",
"Country/Region": "Pais/Región",
"Country/Region - Tooltip": "Pais/Región - Tooltip",
@ -764,7 +760,6 @@
"New Password": "Nueva Contraseña",
"New User": "Nuevo usuario",
"New phone": "Nuevo teléfono",
"OK": "OK",
"Old Password": "Contraseña anterior",
"Password": "Contraseña",
"Password Set": "Password Set",
@ -788,6 +783,7 @@
"Upload (.xlsx)": "Subir archivo (.xlsx)",
"Upload a photo": "Subir foto",
"Values": "Values",
"Verification code sent": "Código enviado",
"WebAuthn credentials": "WebAuthn credentials",
"input password": "input password"
},

View File

@ -5,12 +5,12 @@
"Sign Up": "S'inscrire"
},
"adapter": {
"Duplicated policy rules": "Duplicated policy rules",
"Edit Adapter": "Edit Adapter",
"Failed to sync policies": "Failed to sync policies",
"New Adapter": "New Adapter",
"Policies": "Policies",
"Policies - Tooltip": "Policies - Tooltip",
"Repeated policy rules": "Repeated policy rules",
"Sync": "Sync",
"Sync policies successfully": "Sync policies successfully"
},
@ -26,14 +26,16 @@
"Copy signin page URL": "Copy signin page URL",
"Copy signup page URL": "Copy signup page URL",
"Edit Application": "Modifier l'application",
"Enable SAML compress": "Enable SAML compress",
"Enable SAML compress - Tooltip": "Enable SAML compress - Tooltip",
"Enable Email linking": "Enable Email linking",
"Enable Email linking - Tooltip": "Enable Email linking - Tooltip",
"Enable SAML compression": "Enable SAML compression",
"Enable SAML compression - Tooltip": "Enable SAML compression - Tooltip",
"Enable WebAuthn signin": "Enable WebAuthn signin",
"Enable WebAuthn signin - Tooltip": "Enable WebAuthn signin - Tooltip",
"Enable code signin": "Activer la connexion au code",
"Enable code signin - Tooltip": "Activer la connexion au code - infobulle",
"Enable link accounts that with the same email": "Enable link accounts that with the same email",
"Enable link accounts that with the same email - Tooltip": "Enable link accounts that with the same email - Tooltip",
"Enable password": "Mot de passe activé",
"Enable password - Tooltip": "Whether to allow password login",
"Enable side panel": "Enable side panel",
"Enable signin session - Tooltip": "Activer la session de connexion - infobulle",
"Enable signup": "Activer l'inscription",
@ -54,8 +56,6 @@
"Logged out successfully": "Logged out successfully",
"New Application": "New Application",
"None": "None",
"Password ON": "Mot de passe activé",
"Password ON - Tooltip": "Whether to allow password login",
"Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Veuillez sélectionner un fichier HTML",
@ -68,10 +68,10 @@
"Refresh token expire - Tooltip": "Expiration du jeton d'actualisation - infobulle",
"Right": "Right",
"Rule": "Rule",
"SAML Reply URL": "SAML Reply URL",
"SAML metadata": "SAML metadata",
"SAML metadata - Tooltip": "SAML metadata - Tooltip",
"SAML metadata URL copied to clipboard successfully": "SAML metadata URL copied to clipboard successfully",
"SAML reply URL": "SAML reply URL",
"Side panel HTML": "Side panel HTML",
"Side panel HTML - Edit": "Side panel HTML - Edit",
"Side panel HTML - Tooltip": "Side panel HTML - Tooltip",
@ -113,9 +113,9 @@
"Type - Tooltip": "Type - Infobulle"
},
"code": {
"Code You Received": "Code que vous avez reçu",
"Code you received": "Code que vous avez reçu",
"Email code": "Code de l'e-mail",
"Empty Code": "Code vide",
"Empty code": "Code vide",
"Enter your code": "Entrez votre code",
"Phone code": "Code du téléphone",
"Please input your phone verification code!": "Veuillez entrer le code de vérification de votre téléphone !",
@ -207,6 +207,7 @@
"Name": "Nom",
"Name - Tooltip": "Unique string-style identifier",
"OAuth providers": "Fournisseurs OAuth",
"OK": "OK",
"Organization": "Organisation",
"Organization - Tooltip": "The group the user belongs to",
"Organizations": "Organisations",
@ -290,17 +291,17 @@
"Email": "Courriel",
"Enable SSL": "Enable SSL",
"Enable SSL - Tooltip": "Enable SSL - Tooltip",
"Group Id": "Identifiant du groupe",
"Group ID": "Identifiant du groupe",
"ID": "ID",
"Last Sync": "Dernière synchronisation",
"Phone": "Téléphone",
"Server": "Serveur",
"Server Host": "Hôte du serveur",
"Server Host - Tooltip": "LDAP server host",
"Server Name": "Nom du serveur",
"Server Name - Tooltip": "LDAP server config display name",
"Server Port": "Port du serveur",
"Server Port - Tooltip": "LDAP server port",
"Server host": "Hôte du serveur",
"Server host - Tooltip": "LDAP Server host",
"Server name": "Nom du serveur",
"Server name - Tooltip": "LDAP server config display name",
"Server port": "Port du serveur",
"Server port - Tooltip": "LDAP Server port",
"Sync": "Synchroniser",
"The Auto Sync option will sync all users to specify organization": "L'option de synchronisation automatique synchronisera tous les utilisateurs pour spécifier l'organisation",
"UidNumber / Uid": "Numéro Uid/Uid"
@ -324,10 +325,10 @@
"Sign in with WebAuthn": "Sign in with WebAuthn",
"Sign in with {type}": "Se connecter avec {type}",
"Signing in...": "Connexion en cours...",
"Successfully logged in with webauthn credentials": "Successfully logged in with webauthn credentials",
"The input is not valid Email or Phone!": "L'entrée n'est pas valide Email ou Téléphone !",
"Successfully logged in with WebAuthn credentials": "Successfully logged in with WebAuthn credentials",
"The input is not valid Email or phone number!": "L'entrée n'est pas valide Email ou Téléphone !",
"To access": "Pour accéder à",
"Verification Code": "Verification Code",
"Verification code": "Verification code",
"WebAuthn": "WebAuthn",
"sign up now": "inscrivez-vous maintenant",
"username, Email or phone": "nom d'utilisateur, e-mail ou téléphone"
@ -345,7 +346,8 @@
"Edit Organization": "Modifier l'organisation",
"Favicon": "Favicon",
"Follow global theme": "Follow global theme",
"InitScore": "InitScore",
"Init score": "Init score",
"Init score - Tooltip": "Init score - Tooltip",
"Is profile public": "Is profile public",
"Is profile public - Tooltip": "Is profile public - Tooltip",
"Modify rule": "Modify rule",
@ -354,7 +356,6 @@
"Soft deletion - Tooltip": "Suppression de soft - infobulle",
"Tags": "Tags",
"Tags - Tooltip": "Tags - Tooltip",
"The user's initScore - Tooltip": "The user's initScore - Tooltip",
"View rule": "View rule",
"Visible": "Visible",
"Website URL": "URL du site web",
@ -445,8 +446,6 @@
"Buy": "Buy",
"Buy Product": "Buy Product",
"CNY": "CNY",
"Currency": "Currency",
"Currency - Tooltip": "Currency - Tooltip",
"Description": "Description",
"Description - Tooltip": "Description - Tooltip",
"Detail": "Detail",
@ -495,7 +494,7 @@
"Auth URL - Tooltip": "Auth URL - Tooltip",
"Bucket": "Seau",
"Bucket - Tooltip": "Storage bucket name",
"Can not parse Metadata": "Impossible d'analyser les métadonnées",
"Can not parse metadata": "Impossible d'analyser les métadonnées",
"Can signin": "Can signin",
"Can signup": "Can signup",
"Can unlink": "Can unlink",
@ -540,8 +539,9 @@
"Name": "Nom",
"New Provider": "New Provider",
"Parse": "Parse",
"Parse Metadata successfully": "Analyse des métadonnées réussie",
"Parse metadata successfully": "Analyse des métadonnées réussie",
"Path prefix": "Path prefix",
"Path prefix - Tooltip": "Path prefix - Tooltip",
"Please use WeChat and scan the QR code to sign in": "Please use WeChat and scan the QR code to sign in",
"Port": "Port",
"Port - Tooltip": "Unique string-style identifier",
@ -567,9 +567,9 @@
"Scope": "Scope",
"Scope - Tooltip": "Scope - Tooltip",
"Secret access key": "Clé d'accès secrète",
"Secret access key - Tooltip": "SecretAccessKey - Infobulle",
"Secret key": "Secret key",
"Secret key - Tooltip": "Secret key - Tooltip",
"SecretAccessKey - Tooltip": "SecretAccessKey - Infobulle",
"Send Testing Email": "Send Testing Email",
"Send Testing SMS": "Send Testing SMS",
"Sign Name": "Nom du panneau",
@ -586,14 +586,13 @@
"Site key - Tooltip": "Site key - Tooltip",
"Sub type": "Sub type",
"Sub type - Tooltip": "Sub type - Tooltip",
"Template Code": "Code du modèle",
"Template Code - Tooltip": "Unique string-style identifier",
"Template code": "Code du modèle",
"Template code - Tooltip": "Unique string-style identifier",
"Terms of Use": "Conditions d'utilisation",
"Terms of Use - Tooltip": "Conditions d'utilisation - Info-bulle",
"Test Connection": "Test Smtp Connection",
"Test Email": "Test email config",
"Test Email - Tooltip": "Email Address",
"The prefix path of the file - Tooltip": "The prefix path of the file - Tooltip",
"Test SMTP Connection": "Test Smtp Connection",
"Token URL": "Token URL",
"Token URL - Tooltip": "Token URL - Tooltip",
"Type": "Type de texte",
@ -601,11 +600,10 @@
"UserInfo URL": "UserInfo URL",
"UserInfo URL - Tooltip": "UserInfo URL - Tooltip",
"Visible": "Visible",
"admin (share)": "admin (share)",
"alertType": "Type d'alerte"
"admin (Shared)": "admin (Shared)"
},
"record": {
"Is Triggered": "Est déclenché"
"Is triggered": "Est déclenché"
},
"resource": {
"Application": "Application",
@ -692,11 +690,11 @@
"An Identity and Access Management (IAM) / Single-Sign-On (SSO) platform with web UI supporting OAuth 2.0, OIDC, SAML and CAS": "An Identity and Access Management (IAM) / Single-Sign-On (SSO) platform with web UI supporting OAuth 2.0, OIDC, SAML and CAS",
"CPU Usage": "CPU Usage",
"Community": "Community",
"Get CPU Usage Failed": "Get CPU Usage Failed",
"Get Memory Usage Failed": "Get Memory Usage Failed",
"Failed to get CPU usage": "Failed to get CPU usage",
"Failed to get memory usage": "Failed to get memory usage",
"Memory Usage": "Memory Usage",
"Official Website": "Official Website",
"Unknown Version": "Unknown Version",
"Official website": "Official website",
"Unknown version": "Unknown version",
"Version": "Version"
},
"theme": {
@ -731,10 +729,8 @@
"Affiliation - Tooltip": "Unique string-style identifier",
"Bio": "Bio",
"Bio - Tooltip": "Bio - Infobulle",
"Cancel": "Abandonner",
"Captcha Verify Failed": "Captcha Verify Failed",
"Captcha Verify Success": "Captcha Verify Success",
"Code Sent": "Code envoyé",
"Country code": "Country code",
"Country/Region": "Pays/Région",
"Country/Region - Tooltip": "Country/Region",
@ -764,7 +760,6 @@
"New Password": "Nouveau mot de passe",
"New User": "New User",
"New phone": "Nouveau téléphone",
"OK": "Ok",
"Old Password": "Ancien mot de passe",
"Password": "Mot de passe",
"Password Set": "Mot de passe défini",
@ -788,6 +783,7 @@
"Upload (.xlsx)": "Télécharger (.xlsx)",
"Upload a photo": "Télécharger une photo",
"Values": "Values",
"Verification code sent": "Code envoyé",
"WebAuthn credentials": "WebAuthn credentials",
"input password": "saisir le mot de passe"
},

View File

@ -5,12 +5,12 @@
"Sign Up": "新規登録"
},
"adapter": {
"Duplicated policy rules": "Duplicated policy rules",
"Edit Adapter": "Edit Adapter",
"Failed to sync policies": "Failed to sync policies",
"New Adapter": "New Adapter",
"Policies": "Policies",
"Policies - Tooltip": "Policies - Tooltip",
"Repeated policy rules": "Repeated policy rules",
"Sync": "Sync",
"Sync policies successfully": "Sync policies successfully"
},
@ -26,14 +26,16 @@
"Copy signin page URL": "Copy signin page URL",
"Copy signup page URL": "Copy signup page URL",
"Edit Application": "アプリケーションを編集",
"Enable SAML compress": "Enable SAML compress",
"Enable SAML compress - Tooltip": "Enable SAML compress - Tooltip",
"Enable Email linking": "Enable Email linking",
"Enable Email linking - Tooltip": "Enable Email linking - Tooltip",
"Enable SAML compression": "Enable SAML compression",
"Enable SAML compression - Tooltip": "Enable SAML compression - Tooltip",
"Enable WebAuthn signin": "Enable WebAuthn signin",
"Enable WebAuthn signin - Tooltip": "Enable WebAuthn signin - Tooltip",
"Enable code signin": "コードサインインを有効にする",
"Enable code signin - Tooltip": "Enable code signin - Tooltip",
"Enable link accounts that with the same email": "Enable link accounts that with the same email",
"Enable link accounts that with the same email - Tooltip": "Enable link accounts that with the same email - Tooltip",
"Enable password": "パスワードON",
"Enable password - Tooltip": "Whether to allow password login",
"Enable side panel": "Enable side panel",
"Enable signin session - Tooltip": "Enable signin session - Tooltip",
"Enable signup": "サインアップを有効にする",
@ -54,8 +56,6 @@
"Logged out successfully": "Logged out successfully",
"New Application": "New Application",
"None": "None",
"Password ON": "パスワードON",
"Password ON - Tooltip": "Whether to allow password login",
"Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!",
"Please select a HTML file": "HTMLファイルを選択してください",
@ -68,10 +68,10 @@
"Refresh token expire - Tooltip": "トークンの有効期限を更新する - ツールチップ",
"Right": "Right",
"Rule": "Rule",
"SAML Reply URL": "SAML Reply URL",
"SAML metadata": "SAML metadata",
"SAML metadata - Tooltip": "SAML metadata - Tooltip",
"SAML metadata URL copied to clipboard successfully": "SAML metadata URL copied to clipboard successfully",
"SAML reply URL": "SAML reply URL",
"Side panel HTML": "Side panel HTML",
"Side panel HTML - Edit": "Side panel HTML - Edit",
"Side panel HTML - Tooltip": "Side panel HTML - Tooltip",
@ -113,9 +113,9 @@
"Type - Tooltip": "タイプ → ツールチップ"
},
"code": {
"Code You Received": "受け取ったコード",
"Code you received": "受け取ったコード",
"Email code": "Emailコード",
"Empty Code": "空のコード",
"Empty code": "空のコード",
"Enter your code": "コードを入力してください",
"Phone code": "電話番号",
"Please input your phone verification code!": "電話番号を入力してください!",
@ -207,6 +207,7 @@
"Name": "名前",
"Name - Tooltip": "Unique string-style identifier",
"OAuth providers": "OAuthプロバイダー",
"OK": "OK",
"Organization": "組織",
"Organization - Tooltip": "The group the user belongs to",
"Organizations": "組織",
@ -290,17 +291,17 @@
"Email": "Eメールアドレス",
"Enable SSL": "Enable SSL",
"Enable SSL - Tooltip": "Enable SSL - Tooltip",
"Group Id": "グループ ID",
"Group ID": "グループ ID",
"ID": "ID",
"Last Sync": "前回の同期",
"Phone": "電話番号",
"Server": "サーバー",
"Server Host": "サーバーホスト",
"Server Host - Tooltip": "LDAP server host",
"Server Name": "サーバー名",
"Server Name - Tooltip": "LDAP server config display name",
"Server Port": "サーバーポート",
"Server Port - Tooltip": "LDAP server port",
"Server host": "サーバーホスト",
"Server host - Tooltip": "LDAP Server host",
"Server name": "サーバー名",
"Server name - Tooltip": "LDAP server config display name",
"Server port": "サーバーポート",
"Server port - Tooltip": "LDAP Server port",
"Sync": "同期",
"The Auto Sync option will sync all users to specify organization": "自動同期オプションは、組織を指定するためにすべてのユーザーを同期します",
"UidNumber / Uid": "UidNumber / Uid"
@ -324,10 +325,10 @@
"Sign in with WebAuthn": "Sign in with WebAuthn",
"Sign in with {type}": "{type} でサインイン",
"Signing in...": "サインイン中...",
"Successfully logged in with webauthn credentials": "Successfully logged in with webauthn credentials",
"The input is not valid Email or Phone!": "入力されたメールアドレスまたは電話番号が正しくありません。",
"Successfully logged in with WebAuthn credentials": "Successfully logged in with WebAuthn credentials",
"The input is not valid Email or phone number!": "入力されたメールアドレスまたは電話番号が正しくありません。",
"To access": "アクセスするには",
"Verification Code": "Verification Code",
"Verification code": "Verification code",
"WebAuthn": "WebAuthn",
"sign up now": "今すぐサインアップ",
"username, Email or phone": "ユーザー名、メールアドレスまたは電話番号"
@ -345,7 +346,8 @@
"Edit Organization": "組織を編集",
"Favicon": "ファビコン",
"Follow global theme": "Follow global theme",
"InitScore": "InitScore",
"Init score": "Init score",
"Init score - Tooltip": "Init score - Tooltip",
"Is profile public": "Is profile public",
"Is profile public - Tooltip": "Is profile public - Tooltip",
"Modify rule": "Modify rule",
@ -354,7 +356,6 @@
"Soft deletion - Tooltip": "ソフト削除 - ツールチップ",
"Tags": "Tags",
"Tags - Tooltip": "Tags - Tooltip",
"The user's initScore - Tooltip": "The user's initScore - Tooltip",
"View rule": "View rule",
"Visible": "Visible",
"Website URL": "Website URL",
@ -445,8 +446,6 @@
"Buy": "Buy",
"Buy Product": "Buy Product",
"CNY": "CNY",
"Currency": "Currency",
"Currency - Tooltip": "Currency - Tooltip",
"Description": "Description",
"Description - Tooltip": "Description - Tooltip",
"Detail": "Detail",
@ -495,7 +494,7 @@
"Auth URL - Tooltip": "Auth URL - Tooltip",
"Bucket": "バケツ入りバケツ",
"Bucket - Tooltip": "Storage bucket name",
"Can not parse Metadata": "メタデータをパースできません",
"Can not parse metadata": "メタデータをパースできません",
"Can signin": "Can signin",
"Can signup": "Can signup",
"Can unlink": "Can unlink",
@ -540,8 +539,9 @@
"Name": "名前",
"New Provider": "New Provider",
"Parse": "Parse",
"Parse Metadata successfully": "メタデータの解析に成功",
"Parse metadata successfully": "メタデータの解析に成功",
"Path prefix": "Path prefix",
"Path prefix - Tooltip": "Path prefix - Tooltip",
"Please use WeChat and scan the QR code to sign in": "Please use WeChat and scan the QR code to sign in",
"Port": "ポート",
"Port - Tooltip": "Unique string-style identifier",
@ -567,9 +567,9 @@
"Scope": "Scope",
"Scope - Tooltip": "Scope - Tooltip",
"Secret access key": "シークレットアクセスキー",
"Secret access key - Tooltip": "シークレットアクセスキー - ツールチップ",
"Secret key": "Secret key",
"Secret key - Tooltip": "Secret key - Tooltip",
"SecretAccessKey - Tooltip": "シークレットアクセスキー - ツールチップ",
"Send Testing Email": "Send Testing Email",
"Send Testing SMS": "Send Testing SMS",
"Sign Name": "署名名",
@ -586,14 +586,13 @@
"Site key - Tooltip": "Site key - Tooltip",
"Sub type": "Sub type",
"Sub type - Tooltip": "Sub type - Tooltip",
"Template Code": "テンプレートコード",
"Template Code - Tooltip": "Unique string-style identifier",
"Template code": "テンプレートコード",
"Template code - Tooltip": "Unique string-style identifier",
"Terms of Use": "利用規約",
"Terms of Use - Tooltip": "利用規約 - ツールチップ",
"Test Connection": "Test Smtp Connection",
"Test Email": "Test email config",
"Test Email - Tooltip": "Email Address",
"The prefix path of the file - Tooltip": "The prefix path of the file - Tooltip",
"Test SMTP Connection": "Test Smtp Connection",
"Token URL": "Token URL",
"Token URL - Tooltip": "Token URL - Tooltip",
"Type": "タイプ",
@ -601,11 +600,10 @@
"UserInfo URL": "UserInfo URL",
"UserInfo URL - Tooltip": "UserInfo URL - Tooltip",
"Visible": "Visible",
"admin (share)": "admin (share)",
"alertType": "alertType"
"admin (Shared)": "admin (Shared)"
},
"record": {
"Is Triggered": "トリガーされます"
"Is triggered": "トリガーされます"
},
"resource": {
"Application": "アプリケーション",
@ -692,11 +690,11 @@
"An Identity and Access Management (IAM) / Single-Sign-On (SSO) platform with web UI supporting OAuth 2.0, OIDC, SAML and CAS": "An Identity and Access Management (IAM) / Single-Sign-On (SSO) platform with web UI supporting OAuth 2.0, OIDC, SAML and CAS",
"CPU Usage": "CPU Usage",
"Community": "Community",
"Get CPU Usage Failed": "Get CPU Usage Failed",
"Get Memory Usage Failed": "Get Memory Usage Failed",
"Failed to get CPU usage": "Failed to get CPU usage",
"Failed to get memory usage": "Failed to get memory usage",
"Memory Usage": "Memory Usage",
"Official Website": "Official Website",
"Unknown Version": "Unknown Version",
"Official website": "Official website",
"Unknown version": "Unknown version",
"Version": "Version"
},
"theme": {
@ -731,10 +729,8 @@
"Affiliation - Tooltip": "Unique string-style identifier",
"Bio": "略歴",
"Bio - Tooltip": "バイオチップ(ツールチップ)",
"Cancel": "キャンセル",
"Captcha Verify Failed": "Captcha Verify Failed",
"Captcha Verify Success": "Captcha Verify Success",
"Code Sent": "コードを送信しました",
"Country code": "Country code",
"Country/Region": "国/地域",
"Country/Region - Tooltip": "Country/Region",
@ -764,7 +760,6 @@
"New Password": "新しいパスワード",
"New User": "New User",
"New phone": "新しい電話番号",
"OK": "OK",
"Old Password": "古いパスワード",
"Password": "パスワード",
"Password Set": "パスワード設定",
@ -788,6 +783,7 @@
"Upload (.xlsx)": "アップロード (.xlsx)",
"Upload a photo": "写真をアップロード",
"Values": "Values",
"Verification code sent": "コードを送信しました",
"WebAuthn credentials": "WebAuthn credentials",
"input password": "パスワードを入力"
},

View File

@ -5,12 +5,12 @@
"Sign Up": "Sign Up"
},
"adapter": {
"Duplicated policy rules": "Duplicated policy rules",
"Edit Adapter": "Edit Adapter",
"Failed to sync policies": "Failed to sync policies",
"New Adapter": "New Adapter",
"Policies": "Policies",
"Policies - Tooltip": "Policies - Tooltip",
"Repeated policy rules": "Repeated policy rules",
"Sync": "Sync",
"Sync policies successfully": "Sync policies successfully"
},
@ -26,14 +26,16 @@
"Copy signin page URL": "Copy signin page URL",
"Copy signup page URL": "Copy signup page URL",
"Edit Application": "Edit Application",
"Enable SAML compress": "Enable SAML compress",
"Enable SAML compress - Tooltip": "Enable SAML compress - Tooltip",
"Enable Email linking": "Enable Email linking",
"Enable Email linking - Tooltip": "Enable Email linking - Tooltip",
"Enable SAML compression": "Enable SAML compression",
"Enable SAML compression - Tooltip": "Enable SAML compression - Tooltip",
"Enable WebAuthn signin": "Enable WebAuthn signin",
"Enable WebAuthn signin - Tooltip": "Enable WebAuthn signin - Tooltip",
"Enable code signin": "Enable code signin",
"Enable code signin - Tooltip": "Enable code signin - Tooltip",
"Enable link accounts that with the same email": "Enable link accounts that with the same email",
"Enable link accounts that with the same email - Tooltip": "Enable link accounts that with the same email - Tooltip",
"Enable password": "Enable password",
"Enable password - Tooltip": "Whether to allow password login",
"Enable side panel": "Enable side panel",
"Enable signin session - Tooltip": "Enable signin session - Tooltip",
"Enable signup": "Enable signup",
@ -54,8 +56,6 @@
"Logged out successfully": "Logged out successfully",
"New Application": "New Application",
"None": "None",
"Password ON": "Password ON",
"Password ON - Tooltip": "Whether to allow password login",
"Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Please select a HTML file",
@ -68,10 +68,10 @@
"Refresh token expire - Tooltip": "Refresh token expire - Tooltip",
"Right": "Right",
"Rule": "Rule",
"SAML Reply URL": "SAML Reply URL",
"SAML metadata": "SAML metadata",
"SAML metadata - Tooltip": "SAML metadata - Tooltip",
"SAML metadata URL copied to clipboard successfully": "SAML metadata URL copied to clipboard successfully",
"SAML reply URL": "SAML reply URL",
"Side panel HTML": "Side panel HTML",
"Side panel HTML - Edit": "Side panel HTML - Edit",
"Side panel HTML - Tooltip": "Side panel HTML - Tooltip",
@ -113,9 +113,9 @@
"Type - Tooltip": "Type - Tooltip"
},
"code": {
"Code You Received": "Code You Received",
"Code you received": "Code you received",
"Email code": "Email code",
"Empty Code": "Empty Code",
"Empty code": "Empty code",
"Enter your code": "Enter your code",
"Phone code": "Phone code",
"Please input your phone verification code!": "Please input your phone verification code!",
@ -207,6 +207,7 @@
"Name": "Name",
"Name - Tooltip": "Unique string-style identifier",
"OAuth providers": "OAuth providers",
"OK": "OK",
"Organization": "Organization",
"Organization - Tooltip": "The group the user belongs to",
"Organizations": "Organizations",
@ -290,17 +291,17 @@
"Email": "Email",
"Enable SSL": "Enable SSL",
"Enable SSL - Tooltip": "Enable SSL - Tooltip",
"Group Id": "Group Id",
"Group ID": "Group ID",
"ID": "ID",
"Last Sync": "Last Sync",
"Phone": "Phone",
"Server": "Server",
"Server Host": "Server Host",
"Server Host - Tooltip": "LDAP server host",
"Server Name": "Server Name",
"Server Name - Tooltip": "LDAP server config display name",
"Server Port": "Server Port",
"Server Port - Tooltip": "LDAP server port",
"Server host": "Server host",
"Server host - Tooltip": "LDAP Server host",
"Server name": "Server name",
"Server name - Tooltip": "LDAP server config display name",
"Server port": "Server port",
"Server port - Tooltip": "LDAP Server port",
"Sync": "Sync",
"The Auto Sync option will sync all users to specify organization": "The Auto Sync option will sync all users to specify organization",
"UidNumber / Uid": "UidNumber / Uid"
@ -324,10 +325,10 @@
"Sign in with WebAuthn": "Sign in with WebAuthn",
"Sign in with {type}": "Sign in with {type}",
"Signing in...": "Signing in...",
"Successfully logged in with webauthn credentials": "Successfully logged in with webauthn credentials",
"The input is not valid Email or Phone!": "The input is not valid Email or Phone!",
"Successfully logged in with WebAuthn credentials": "Successfully logged in with WebAuthn credentials",
"The input is not valid Email or phone number!": "The input is not valid Email or phone number!",
"To access": "To access",
"Verification Code": "Verification Code",
"Verification code": "Verification code",
"WebAuthn": "WebAuthn",
"sign up now": "sign up now",
"username, Email or phone": "username, Email or phone"
@ -345,7 +346,8 @@
"Edit Organization": "Edit Organization",
"Favicon": "Favicon",
"Follow global theme": "Follow global theme",
"InitScore": "InitScore",
"Init score": "Init score",
"Init score - Tooltip": "Init score - Tooltip",
"Is profile public": "Is profile public",
"Is profile public - Tooltip": "Is profile public - Tooltip",
"Modify rule": "Modify rule",
@ -354,7 +356,6 @@
"Soft deletion - Tooltip": "Soft deletion - Tooltip",
"Tags": "Tags",
"Tags - Tooltip": "Tags - Tooltip",
"The user's initScore - Tooltip": "The user's initScore - Tooltip",
"View rule": "View rule",
"Visible": "Visible",
"Website URL": "Website URL",
@ -445,8 +446,6 @@
"Buy": "Buy",
"Buy Product": "Buy Product",
"CNY": "CNY",
"Currency": "Currency",
"Currency - Tooltip": "Currency - Tooltip",
"Description": "Description",
"Description - Tooltip": "Description - Tooltip",
"Detail": "Detail",
@ -495,7 +494,7 @@
"Auth URL - Tooltip": "Auth URL - Tooltip",
"Bucket": "Bucket",
"Bucket - Tooltip": "Storage bucket name",
"Can not parse Metadata": "Can not parse Metadata",
"Can not parse metadata": "Can not parse metadata",
"Can signin": "Can signin",
"Can signup": "Can signup",
"Can unlink": "Can unlink",
@ -540,8 +539,9 @@
"Name": "Name",
"New Provider": "New Provider",
"Parse": "Parse",
"Parse Metadata successfully": "Parse Metadata successfully",
"Parse metadata successfully": "Parse metadata successfully",
"Path prefix": "Path prefix",
"Path prefix - Tooltip": "Path prefix - Tooltip",
"Please use WeChat and scan the QR code to sign in": "Please use WeChat and scan the QR code to sign in",
"Port": "Port",
"Port - Tooltip": "Unique string-style identifier",
@ -567,9 +567,9 @@
"Scope": "Scope",
"Scope - Tooltip": "Scope - Tooltip",
"Secret access key": "Secret access key",
"Secret access key - Tooltip": "Secret access key - Tooltip",
"Secret key": "Secret key",
"Secret key - Tooltip": "Secret key - Tooltip",
"SecretAccessKey - Tooltip": "SecretAccessKey - Tooltip",
"Send Testing Email": "Send Testing Email",
"Send Testing SMS": "Send Testing SMS",
"Sign Name": "Sign Name",
@ -586,14 +586,13 @@
"Site key - Tooltip": "Site key - Tooltip",
"Sub type": "Sub type",
"Sub type - Tooltip": "Sub type - Tooltip",
"Template Code": "Template Code",
"Template Code - Tooltip": "Unique string-style identifier",
"Template code": "Template code",
"Template code - Tooltip": "Unique string-style identifier",
"Terms of Use": "Terms of Use",
"Terms of Use - Tooltip": "Terms of Use - Tooltip",
"Test Connection": "Test Smtp Connection",
"Test Email": "Test email config",
"Test Email - Tooltip": "Email Address",
"The prefix path of the file - Tooltip": "The prefix path of the file - Tooltip",
"Test SMTP Connection": "Test Smtp Connection",
"Token URL": "Token URL",
"Token URL - Tooltip": "Token URL - Tooltip",
"Type": "Type",
@ -601,11 +600,10 @@
"UserInfo URL": "UserInfo URL",
"UserInfo URL - Tooltip": "UserInfo URL - Tooltip",
"Visible": "Visible",
"admin (share)": "admin (share)",
"alertType": "alertType"
"admin (Shared)": "admin (Shared)"
},
"record": {
"Is Triggered": "Is Triggered"
"Is triggered": "Is triggered"
},
"resource": {
"Application": "Application",
@ -692,11 +690,11 @@
"An Identity and Access Management (IAM) / Single-Sign-On (SSO) platform with web UI supporting OAuth 2.0, OIDC, SAML and CAS": "An Identity and Access Management (IAM) / Single-Sign-On (SSO) platform with web UI supporting OAuth 2.0, OIDC, SAML and CAS",
"CPU Usage": "CPU Usage",
"Community": "Community",
"Get CPU Usage Failed": "Get CPU Usage Failed",
"Get Memory Usage Failed": "Get Memory Usage Failed",
"Failed to get CPU usage": "Failed to get CPU usage",
"Failed to get memory usage": "Failed to get memory usage",
"Memory Usage": "Memory Usage",
"Official Website": "Official Website",
"Unknown Version": "Unknown Version",
"Official website": "Official website",
"Unknown version": "Unknown version",
"Version": "Version"
},
"theme": {
@ -731,10 +729,8 @@
"Affiliation - Tooltip": "Unique string-style identifier",
"Bio": "Bio",
"Bio - Tooltip": "Bio - Tooltip",
"Cancel": "Cancel",
"Captcha Verify Failed": "Captcha Verify Failed",
"Captcha Verify Success": "Captcha Verify Success",
"Code Sent": "Code Sent",
"Country code": "Country code",
"Country/Region": "Country/Region",
"Country/Region - Tooltip": "Country/Region",
@ -764,7 +760,6 @@
"New Password": "New Password",
"New User": "New User",
"New phone": "New phone",
"OK": "OK",
"Old Password": "Old Password",
"Password": "Password",
"Password Set": "Password Set",
@ -788,6 +783,7 @@
"Upload (.xlsx)": "Upload (.xlsx)",
"Upload a photo": "Upload a photo",
"Values": "Values",
"Verification code sent": "Verification code sent",
"WebAuthn credentials": "WebAuthn credentials",
"input password": "input password"
},

View File

@ -5,12 +5,12 @@
"Sign Up": "Регистрация"
},
"adapter": {
"Duplicated policy rules": "Duplicated policy rules",
"Edit Adapter": "Edit Adapter",
"Failed to sync policies": "Failed to sync policies",
"New Adapter": "New Adapter",
"Policies": "Policies",
"Policies - Tooltip": "Policies - Tooltip",
"Repeated policy rules": "Repeated policy rules",
"Sync": "Sync",
"Sync policies successfully": "Sync policies successfully"
},
@ -26,14 +26,16 @@
"Copy signin page URL": "Скопировать URL-адрес страницы входа",
"Copy signup page URL": "Скопировать URL-адрес страницы регистрации",
"Edit Application": "Изменить приложение",
"Enable SAML compress": "Включить сжатие SAML",
"Enable SAML compress - Tooltip": "Включить SAML сжатие - Подсказка",
"Enable Email linking": "Enable Email linking",
"Enable Email linking - Tooltip": "Enable Email linking - Tooltip",
"Enable SAML compression": "Включить сжатие SAML",
"Enable SAML compression - Tooltip": "Включить SAML сжатие - Подсказка",
"Enable WebAuthn signin": "Включить вход через WebAuthn",
"Enable WebAuthn signin - Tooltip": "Включить вход с WebAuthn - Подсказка",
"Enable code signin": "Включить кодовый вход",
"Enable code signin - Tooltip": "Включить вход с кодом - Tooltip",
"Enable link accounts that with the same email": "Enable link accounts that with the same email",
"Enable link accounts that with the same email - Tooltip": "Enable link accounts that with the same email - Tooltip",
"Enable password": "Пароль ВКЛ",
"Enable password - Tooltip": "Whether to allow password login",
"Enable side panel": "Enable side panel",
"Enable signin session - Tooltip": "Включить сеанс входа - Подсказка",
"Enable signup": "Включить регистрацию",
@ -54,8 +56,6 @@
"Logged out successfully": "Logged out successfully",
"New Application": "Новое приложение",
"None": "None",
"Password ON": "Пароль ВКЛ",
"Password ON - Tooltip": "Whether to allow password login",
"Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Пожалуйста, выберите HTML-файл",
@ -68,10 +68,10 @@
"Refresh token expire - Tooltip": "Срок обновления токена истекает - Подсказка",
"Right": "Right",
"Rule": "правило",
"SAML Reply URL": "SAML Reply URL",
"SAML metadata": "Метаданные SAML",
"SAML metadata - Tooltip": "Метаданные SAML - Подсказка",
"SAML metadata URL copied to clipboard successfully": "Адрес метаданных SAML скопирован в буфер обмена",
"SAML reply URL": "SAML reply URL",
"Side panel HTML": "Side panel HTML",
"Side panel HTML - Edit": "Side panel HTML - Edit",
"Side panel HTML - Tooltip": "Side panel HTML - Tooltip",
@ -113,9 +113,9 @@
"Type - Tooltip": "Тип - Подсказка"
},
"code": {
"Code You Received": "Полученный код",
"Code you received": "Полученный код",
"Email code": "Код эл. почты",
"Empty Code": "Пустой код",
"Empty code": "Пустой код",
"Enter your code": "Введите ваш код",
"Phone code": "Телефон",
"Please input your phone verification code!": "Пожалуйста, введите код подтверждения!",
@ -207,6 +207,7 @@
"Name": "Наименование",
"Name - Tooltip": "Unique string-style identifier",
"OAuth providers": "Поставщики OAuth",
"OK": "OK",
"Organization": "Организация",
"Organization - Tooltip": "The group the user belongs to",
"Organizations": "Организации",
@ -290,17 +291,17 @@
"Email": "Почта",
"Enable SSL": "Enable SSL",
"Enable SSL - Tooltip": "Enable SSL - Tooltip",
"Group Id": "ID группы",
"Group ID": "ID группы",
"ID": "ID",
"Last Sync": "Последняя синхронизация",
"Phone": "Телефон",
"Server": "Сервер",
"Server Host": "Сервер хоста",
"Server Host - Tooltip": "LDAP server host",
"Server Name": "Имя сервера",
"Server Name - Tooltip": "LDAP server config display name",
"Server Port": "Порт Сервера",
"Server Port - Tooltip": "LDAP server port",
"Server host": "Сервер хоста",
"Server host - Tooltip": "LDAP Server host",
"Server name": "Имя сервера",
"Server name - Tooltip": "LDAP server config display name",
"Server port": "Порт Сервера",
"Server port - Tooltip": "LDAP Server port",
"Sync": "Синхр.",
"The Auto Sync option will sync all users to specify organization": "Опция Автосинхронизация синхронизирует всех пользователей для указания организации",
"UidNumber / Uid": "UidNumber / Uid"
@ -324,10 +325,10 @@
"Sign in with WebAuthn": "Sign in with WebAuthn",
"Sign in with {type}": "Войти с помощью {type}",
"Signing in...": "Вход...",
"Successfully logged in with webauthn credentials": "Successfully logged in with webauthn credentials",
"The input is not valid Email or Phone!": "Введен неверный адрес электронной почты или телефон!",
"Successfully logged in with WebAuthn credentials": "Successfully logged in with WebAuthn credentials",
"The input is not valid Email or phone number!": "Введен неверный адрес электронной почты или телефон!",
"To access": "На доступ",
"Verification Code": "Verification Code",
"Verification code": "Verification code",
"WebAuthn": "WebAuthn",
"sign up now": "зарегистрироваться",
"username, Email or phone": "имя пользователя, адрес электронной почты или телефон"
@ -345,7 +346,8 @@
"Edit Organization": "Изменить организацию",
"Favicon": "Иконка",
"Follow global theme": "Follow global theme",
"InitScore": "InitScore",
"Init score": "Init score",
"Init score - Tooltip": "Init score - Tooltip",
"Is profile public": "Is profile public",
"Is profile public - Tooltip": "Is profile public - Tooltip",
"Modify rule": "Modify rule",
@ -354,7 +356,6 @@
"Soft deletion - Tooltip": "Мягкое удаление - Подсказка",
"Tags": "Tags",
"Tags - Tooltip": "Tags - Tooltip",
"The user's initScore - Tooltip": "The user's initScore - Tooltip",
"View rule": "View rule",
"Visible": "Visible",
"Website URL": "URL сайта",
@ -445,8 +446,6 @@
"Buy": "Купить",
"Buy Product": "Купить товар",
"CNY": "CNY",
"Currency": "Currency",
"Currency - Tooltip": "Currency - Tooltip",
"Description": "Description",
"Description - Tooltip": "Description - Tooltip",
"Detail": "Сведения",
@ -495,7 +494,7 @@
"Auth URL - Tooltip": "Auth URL - Tooltip",
"Bucket": "Ведро",
"Bucket - Tooltip": "Storage bucket name",
"Can not parse Metadata": "Невозможно разобрать метаданные",
"Can not parse metadata": "Невозможно разобрать метаданные",
"Can signin": "Can signin",
"Can signup": "Can signup",
"Can unlink": "Can unlink",
@ -540,8 +539,9 @@
"Name": "Наименование",
"New Provider": "New Provider",
"Parse": "Parse",
"Parse Metadata successfully": "Анализ метаданных успешно завершен",
"Parse metadata successfully": "Анализ метаданных успешно завершен",
"Path prefix": "Path prefix",
"Path prefix - Tooltip": "Path prefix - Tooltip",
"Please use WeChat and scan the QR code to sign in": "Please use WeChat and scan the QR code to sign in",
"Port": "Порт",
"Port - Tooltip": "Unique string-style identifier",
@ -567,9 +567,9 @@
"Scope": "Scope",
"Scope - Tooltip": "Scope - Tooltip",
"Secret access key": "Секретный ключ доступа",
"Secret access key - Tooltip": "SecretAccessKey - Подсказка",
"Secret key": "Secret key",
"Secret key - Tooltip": "Secret key - Tooltip",
"SecretAccessKey - Tooltip": "SecretAccessKey - Подсказка",
"Send Testing Email": "Send Testing Email",
"Send Testing SMS": "Send Testing SMS",
"Sign Name": "Имя подписи",
@ -586,14 +586,13 @@
"Site key - Tooltip": "Site key - Tooltip",
"Sub type": "Sub type",
"Sub type - Tooltip": "Sub type - Tooltip",
"Template Code": "Код шаблона",
"Template Code - Tooltip": "Unique string-style identifier",
"Template code": "Код шаблона",
"Template code - Tooltip": "Unique string-style identifier",
"Terms of Use": "Условия использования",
"Terms of Use - Tooltip": "Условия использования - Tooltip",
"Test Connection": "Test Smtp Connection",
"Test Email": "Test email config",
"Test Email - Tooltip": "Email Address",
"The prefix path of the file - Tooltip": "The prefix path of the file - Tooltip",
"Test SMTP Connection": "Test Smtp Connection",
"Token URL": "Token URL",
"Token URL - Tooltip": "Token URL - Tooltip",
"Type": "Тип",
@ -601,11 +600,10 @@
"UserInfo URL": "UserInfo URL",
"UserInfo URL - Tooltip": "UserInfo URL - Tooltip",
"Visible": "Visible",
"admin (share)": "admin (share)",
"alertType": "тип оповещения"
"admin (Shared)": "admin (Shared)"
},
"record": {
"Is Triggered": "Срабатывает"
"Is triggered": "Срабатывает"
},
"resource": {
"Application": "Приложение",
@ -692,11 +690,11 @@
"An Identity and Access Management (IAM) / Single-Sign-On (SSO) platform with web UI supporting OAuth 2.0, OIDC, SAML and CAS": "An Identity and Access Management (IAM) / Single-Sign-On (SSO) platform with web UI supporting OAuth 2.0, OIDC, SAML and CAS",
"CPU Usage": "CPU Usage",
"Community": "Community",
"Get CPU Usage Failed": "Get CPU Usage Failed",
"Get Memory Usage Failed": "Get Memory Usage Failed",
"Failed to get CPU usage": "Failed to get CPU usage",
"Failed to get memory usage": "Failed to get memory usage",
"Memory Usage": "Memory Usage",
"Official Website": "Official Website",
"Unknown Version": "Unknown Version",
"Official website": "Official website",
"Unknown version": "Unknown version",
"Version": "Version"
},
"theme": {
@ -731,10 +729,8 @@
"Affiliation - Tooltip": "Unique string-style identifier",
"Bio": "Био",
"Bio - Tooltip": "Био - Подсказка",
"Cancel": "Отмена",
"Captcha Verify Failed": "Captcha Verify Failed",
"Captcha Verify Success": "Captcha Verify Success",
"Code Sent": "Код отправлен",
"Country code": "Country code",
"Country/Region": "Страна/регион",
"Country/Region - Tooltip": "Country/Region",
@ -764,7 +760,6 @@
"New Password": "Новый пароль",
"New User": "New User",
"New phone": "Новый телефон",
"OK": "ОК",
"Old Password": "Старый пароль",
"Password": "Пароль",
"Password Set": "Пароль установлен",
@ -788,6 +783,7 @@
"Upload (.xlsx)": "Загрузить (.xlsx)",
"Upload a photo": "Загрузить фото",
"Values": "Values",
"Verification code sent": "Код отправлен",
"WebAuthn credentials": "WebAuthn credentials",
"input password": "пароль для ввода"
},

View File

@ -5,12 +5,12 @@
"Sign Up": "Sign Up"
},
"adapter": {
"Duplicated policy rules": "Duplicated policy rules",
"Edit Adapter": "Edit Adapter",
"Failed to sync policies": "Failed to sync policies",
"New Adapter": "New Adapter",
"Policies": "Policies",
"Policies - Tooltip": "Policies - Tooltip",
"Repeated policy rules": "Repeated policy rules",
"Sync": "Sync",
"Sync policies successfully": "Sync policies successfully"
},
@ -26,14 +26,16 @@
"Copy signin page URL": "Copy signin page URL",
"Copy signup page URL": "Copy signup page URL",
"Edit Application": "Edit Application",
"Enable SAML compress": "Enable SAML compress",
"Enable SAML compress - Tooltip": "Enable SAML compress - Tooltip",
"Enable Email linking": "Enable Email linking",
"Enable Email linking - Tooltip": "Enable Email linking - Tooltip",
"Enable SAML compression": "Enable SAML compression",
"Enable SAML compression - Tooltip": "Enable SAML compression - Tooltip",
"Enable WebAuthn signin": "Enable WebAuthn signin",
"Enable WebAuthn signin - Tooltip": "Enable WebAuthn signin - Tooltip",
"Enable code signin": "Enable code signin",
"Enable code signin - Tooltip": "Enable code signin - Tooltip",
"Enable link accounts that with the same email": "Enable link accounts that with the same email",
"Enable link accounts that with the same email - Tooltip": "Enable link accounts that with the same email - Tooltip",
"Enable password": "Enable password",
"Enable password - Tooltip": "Enable password - Tooltip",
"Enable side panel": "Enable side panel",
"Enable signin session - Tooltip": "Enable signin session - Tooltip",
"Enable signup": "Enable signup",
@ -54,8 +56,6 @@
"Logged out successfully": "Logged out successfully",
"New Application": "New Application",
"None": "None",
"Password ON": "Password ON",
"Password ON - Tooltip": "Password ON - Tooltip",
"Please input your application!": "Please input your application!",
"Please input your organization!": "Please input your organization!",
"Please select a HTML file": "Please select a HTML file",
@ -68,10 +68,10 @@
"Refresh token expire - Tooltip": "Refresh token expire - Tooltip",
"Right": "Right",
"Rule": "Rule",
"SAML Reply URL": "SAML Reply URL",
"SAML metadata": "SAML metadata",
"SAML metadata - Tooltip": "SAML metadata - Tooltip",
"SAML metadata URL copied to clipboard successfully": "SAML metadata URL copied to clipboard successfully",
"SAML reply URL": "SAML reply URL",
"Side panel HTML": "Side panel HTML",
"Side panel HTML - Edit": "Side panel HTML - Edit",
"Side panel HTML - Tooltip": "Side panel HTML - Tooltip",
@ -113,9 +113,9 @@
"Type - Tooltip": "Type - Tooltip"
},
"code": {
"Code You Received": "Code You Received",
"Code you received": "Code you received",
"Email code": "Email code",
"Empty Code": "Empty Code",
"Empty code": "Empty code",
"Enter your code": "Enter your code",
"Phone code": "Phone code",
"Please input your phone verification code!": "Please input your phone verification code!",
@ -207,6 +207,7 @@
"Name": "Name",
"Name - Tooltip": "Name - Tooltip",
"OAuth providers": "OAuth providers",
"OK": "OK",
"Organization": "Organization",
"Organization - Tooltip": "Organization - Tooltip",
"Organizations": "Organizations",
@ -290,17 +291,17 @@
"Email": "Email",
"Enable SSL": "Enable SSL",
"Enable SSL - Tooltip": "Enable SSL - Tooltip",
"Group Id": "Group Id",
"Group ID": "Group ID",
"ID": "ID",
"Last Sync": "Last Sync",
"Phone": "Phone",
"Server": "Server",
"Server Host": "Server Host",
"Server Host - Tooltip": "Server Host - Tooltip",
"Server Name": "Server Name",
"Server Name - Tooltip": "Server Name - Tooltip",
"Server Port": "Server Port",
"Server Port - Tooltip": "Server Port - Tooltip",
"Server host": "Server host",
"Server host - Tooltip": "Server host - Tooltip",
"Server name": "Server name",
"Server name - Tooltip": "Server name - Tooltip",
"Server port": "Server port",
"Server port - Tooltip": "Server port - Tooltip",
"Sync": "Sync",
"The Auto Sync option will sync all users to specify organization": "The Auto Sync option will sync all users to specify organization",
"UidNumber / Uid": "UidNumber / Uid"
@ -324,10 +325,10 @@
"Sign in with WebAuthn": "Sign in with WebAuthn",
"Sign in with {type}": "Sign in with {type}",
"Signing in...": "Signing in...",
"Successfully logged in with webauthn credentials": "Successfully logged in with webauthn credentials",
"The input is not valid Email or Phone!": "The input is not valid Email or Phone!",
"Successfully logged in with WebAuthn credentials": "Successfully logged in with WebAuthn credentials",
"The input is not valid Email or phone number!": "The input is not valid Email or phone number!",
"To access": "To access",
"Verification Code": "Verification Code",
"Verification code": "Verification code",
"WebAuthn": "WebAuthn",
"sign up now": "sign up now",
"username, Email or phone": "username, Email or phone"
@ -345,7 +346,8 @@
"Edit Organization": "Edit Organization",
"Favicon": "Favicon",
"Follow global theme": "Follow global theme",
"InitScore": "InitScore",
"Init score": "Init score",
"Init score - Tooltip": "Init score - Tooltip",
"Is profile public": "Is profile public",
"Is profile public - Tooltip": "Is profile public - Tooltip",
"Modify rule": "Modify rule",
@ -354,7 +356,6 @@
"Soft deletion - Tooltip": "Soft deletion - Tooltip",
"Tags": "Tags",
"Tags - Tooltip": "Tags - Tooltip",
"The user's initScore - Tooltip": "The user's initScore - Tooltip",
"View rule": "View rule",
"Visible": "Visible",
"Website URL": "Website URL",
@ -445,8 +446,6 @@
"Buy": "Buy",
"Buy Product": "Buy Product",
"CNY": "CNY",
"Currency": "Currency",
"Currency - Tooltip": "Currency - Tooltip",
"Description": "Description",
"Description - Tooltip": "Description - Tooltip",
"Detail": "Detail",
@ -495,7 +494,7 @@
"Auth URL - Tooltip": "Auth URL - Tooltip",
"Bucket": "Bucket",
"Bucket - Tooltip": "Bucket - Tooltip",
"Can not parse Metadata": "Can not parse Metadata",
"Can not parse metadata": "Can not parse metadata",
"Can signin": "Can signin",
"Can signup": "Can signup",
"Can unlink": "Can unlink",
@ -540,8 +539,9 @@
"Name": "Name",
"New Provider": "New Provider",
"Parse": "Parse",
"Parse Metadata successfully": "Parse Metadata successfully",
"Parse metadata successfully": "Parse metadata successfully",
"Path prefix": "Path prefix",
"Path prefix - Tooltip": "Path prefix - Tooltip",
"Please use WeChat and scan the QR code to sign in": "Please use WeChat and scan the QR code to sign in",
"Port": "Port",
"Port - Tooltip": "Port - Tooltip",
@ -567,9 +567,9 @@
"Scope": "Scope",
"Scope - Tooltip": "Scope - Tooltip",
"Secret access key": "Secret access key",
"Secret access key - Tooltip": "Secret access key - Tooltip",
"Secret key": "Secret key",
"Secret key - Tooltip": "Secret key - Tooltip",
"SecretAccessKey - Tooltip": "SecretAccessKey - Tooltip",
"Send Testing Email": "Send Testing Email",
"Send Testing SMS": "Send Testing SMS",
"Sign Name": "Sign Name",
@ -586,14 +586,13 @@
"Site key - Tooltip": "Site key - Tooltip",
"Sub type": "Sub type",
"Sub type - Tooltip": "Sub type - Tooltip",
"Template Code": "Template Code",
"Template Code - Tooltip": "Template Code - Tooltip",
"Template code": "Template code",
"Template code - Tooltip": "Template code - Tooltip",
"Terms of Use": "Terms of Use",
"Terms of Use - Tooltip": "Terms of Use - Tooltip",
"Test Connection": "Test Connection",
"Test Email": "Test Email",
"Test Email - Tooltip": "Test Email - Tooltip",
"The prefix path of the file - Tooltip": "The prefix path of the file - Tooltip",
"Test SMTP Connection": "Test SMTP Connection",
"Token URL": "Token URL",
"Token URL - Tooltip": "Token URL - Tooltip",
"Type": "Type",
@ -601,11 +600,10 @@
"UserInfo URL": "UserInfo URL",
"UserInfo URL - Tooltip": "UserInfo URL - Tooltip",
"Visible": "Visible",
"admin (share)": "admin (share)",
"alertType": "alertType"
"admin (Shared)": "admin (Shared)"
},
"record": {
"Is Triggered": "Is Triggered"
"Is triggered": "Is triggered"
},
"resource": {
"Application": "Application",
@ -692,11 +690,11 @@
"An Identity and Access Management (IAM) / Single-Sign-On (SSO) platform with web UI supporting OAuth 2.0, OIDC, SAML and CAS": "An Identity and Access Management (IAM) / Single-Sign-On (SSO) platform with web UI supporting OAuth 2.0, OIDC, SAML and CAS",
"CPU Usage": "CPU Usage",
"Community": "Community",
"Get CPU Usage Failed": "Get CPU Usage Failed",
"Get Memory Usage Failed": "Get Memory Usage Failed",
"Failed to get CPU usage": "Failed to get CPU usage",
"Failed to get memory usage": "Failed to get memory usage",
"Memory Usage": "Memory Usage",
"Official Website": "Official Website",
"Unknown Version": "Unknown Version",
"Official website": "Official website",
"Unknown version": "Unknown version",
"Version": "Version"
},
"theme": {
@ -731,10 +729,8 @@
"Affiliation - Tooltip": "Affiliation - Tooltip",
"Bio": "Bio",
"Bio - Tooltip": "Bio - Tooltip",
"Cancel": "Cancel",
"Captcha Verify Failed": "Captcha Verify Failed",
"Captcha Verify Success": "Captcha Verify Success",
"Code Sent": "Code Sent",
"Country code": "Country code",
"Country/Region": "Country/Region",
"Country/Region - Tooltip": "Country/Region - Tooltip",
@ -764,7 +760,6 @@
"New Password": "New Password",
"New User": "New User",
"New phone": "New phone",
"OK": "OK",
"Old Password": "Old Password",
"Password": "Password",
"Password Set": "Password Set",
@ -788,6 +783,7 @@
"Upload (.xlsx)": "Upload (.xlsx)",
"Upload a photo": "Upload a photo",
"Values": "Values",
"Verification code sent": "Verification code sent",
"WebAuthn credentials": "WebAuthn credentials",
"input password": "input password"
},

View File

@ -5,12 +5,12 @@
"Sign Up": "注册"
},
"adapter": {
"Duplicated policy rules": "重复的策略",
"Edit Adapter": "编辑适配器",
"Failed to sync policies": "同步策略失败",
"New Adapter": "添加适配器",
"Policies": "策略",
"Policies - Tooltip": "策略",
"Repeated policy rules": "重复的策略",
"Policies - Tooltip": "Casbin策略规则",
"Sync": "同步",
"Sync policies successfully": "同步策略成功"
},
@ -26,14 +26,16 @@
"Copy signin page URL": "复制登录页面URL",
"Copy signup page URL": "复制注册页面URL",
"Edit Application": "编辑应用",
"Enable SAML compress": "压缩SAML响应",
"Enable SAML compress - Tooltip": "Casdoor作为SAML IdP时是否压缩SAML响应信息",
"Enable Email linking": "自动关联邮箱相同的账号",
"Enable Email linking - Tooltip": "使用第三方授权登录时,如果组织中存在与授权用户邮箱相同的用户,会自动关联该第三方登录方式到该用户",
"Enable SAML compression": "压缩SAML响应",
"Enable SAML compression - Tooltip": "Casdoor作为SAML IdP时是否压缩SAML响应信息",
"Enable WebAuthn signin": "启用WebAuthn登录",
"Enable WebAuthn signin - Tooltip": "是否支持用户在登录页面通过WebAuthn方式登录",
"Enable code signin": "启用验证码登录",
"Enable code signin - Tooltip": "是否允许用手机或邮箱验证码登录",
"Enable link accounts that with the same email": "自动关联邮箱相同的账号",
"Enable link accounts that with the same email - Tooltip": "使用第三方授权登录时,如果组织中存在与授权用户邮箱相同的用户,会自动关联该第三方登录方式到该用户",
"Enable password": "开启密码",
"Enable password - Tooltip": "是否允许密码登录",
"Enable side panel": "启用侧面板",
"Enable signin session - Tooltip": "从应用登录Casdoor后Casdoor是否保持会话",
"Enable signup": "启用注册",
@ -44,18 +46,16 @@
"Follow organization theme": "使用组织主题",
"Form CSS": "表单CSS",
"Form CSS - Edit": "编辑表单CSS",
"Form CSS - Tooltip": "表单的CSS样式如增加边框和阴影",
"Form CSS - Tooltip": "注册、登录、忘记密码等表单的CSS样式如增加边框和阴影",
"Form position": "表单位置",
"Form position - Tooltip": "注册、登录、忘记密码等表单的位置",
"Grant types": "OAuth授权类型",
"Grant types - Tooltip": "选择允许哪些OAuth协议中的Grant types",
"Grant types - Tooltip": "选择允许哪些OAuth协议中的grant types",
"Left": "居左",
"Logged in successfully": "登录成功",
"Logged out successfully": "登出成功",
"New Application": "添加应用",
"None": "关闭",
"Password ON": "开启密码",
"Password ON - Tooltip": "是否允许密码登录",
"Please input your application!": "请输入你的应用",
"Please input your organization!": "请输入你的组织",
"Please select a HTML file": "请选择一个HTML文件",
@ -63,18 +63,18 @@
"Redirect URL": "重定向 URL",
"Redirect URL (Assertion Consumer Service POST Binding URL) - Tooltip": "回复 URL (断言使用者服务 URL, 使用POST请求返回响应) - Tooltip",
"Redirect URLs": "重定向 URLs",
"Redirect URLs - Tooltip": "登录成功后重定向地址列表",
"Redirect URLs - Tooltip": "允许的重定向URL列表支持正则匹配不在列表中的URL将会跳转失败",
"Refresh token expire": "Refresh Token过期",
"Refresh token expire - Tooltip": "Refresh Token过期时间",
"Right": "居右",
"Rule": "规则",
"SAML Reply URL": "SAML回复 URL",
"SAML metadata": "SAML元数据",
"SAML metadata - Tooltip": "SAML协议的元数据Metadata信息",
"SAML metadata URL copied to clipboard successfully": "SAML元数据URL已成功复制到剪贴板",
"Side panel HTML": "侧面板 HTML",
"Side panel HTML - Edit": "侧面板 HTML - 编辑",
"Side panel HTML - Tooltip": "侧面板 HTML - Tooltip",
"SAML reply URL": "SAML回复 URL",
"Side panel HTML": "侧面板HTML",
"Side panel HTML - Edit": "侧面板HTML - 编辑",
"Side panel HTML - Tooltip": "自定义登录页面侧面板的HTML代码",
"Sign Up Error": "注册错误",
"Signin page URL copied to clipboard successfully, please paste it into the incognito window or another browser": "登录页面URL已成功复制到剪贴板请粘贴到当前浏览器的隐身模式窗口或另一个浏览器访问",
"Signin session": "保持登录会话",
@ -86,36 +86,36 @@
"Token expire - Tooltip": "Access Token过期时间",
"Token format": "Access Token格式",
"Token format - Tooltip": "Access Token格式",
"You are unexpected to see this prompt page": "错误跳转至提醒页面"
"You are unexpected to see this prompt page": "错误:该提醒页面不应出现"
},
"cert": {
"Bit size": "位大小",
"Bit size - Tooltip": "秘钥长度",
"Certificate": "证书",
"Certificate - Tooltip": "在你的服务器上配置的公钥,用于解密签名",
"Certificate - Tooltip": "公钥证书,用于解密Access Token的JWT签名该证书通常需要部署到Casdoor SDK测即应用来解析JWT",
"Certificate copied to clipboard successfully": "证书已成功复制到剪贴板",
"Copy certificate": "复制证书",
"Copy private key": "复制私钥",
"Crypto algorithm": "加密算法",
"Crypto algorithm - Tooltip": "加密算法",
"Crypto algorithm - Tooltip": "公钥证书所使用的加密算法",
"Download certificate": "下载证书",
"Download private key": "下载私钥",
"Edit Cert": "编辑证书",
"Expire in years": "有效期(年)",
"Expire in years - Tooltip": "到期年份",
"Expire in years - Tooltip": "公钥证书的有效期,以年为单位",
"New Cert": "添加证书",
"Private key": "私钥",
"Private key - Tooltip": "钥用于生成秘钥",
"Private key - Tooltip": "公钥证书对应的私钥",
"Private key copied to clipboard successfully": "私钥已成功复制到剪贴板",
"Scope": "用途",
"Scope - Tooltip": "证书作用范围",
"Scope - Tooltip": "公钥证书的使用场景",
"Type": "类型",
"Type - Tooltip": "证书的类型"
"Type - Tooltip": "公钥证书的类型"
},
"code": {
"Code You Received": "验证码",
"Code you received": "验证码",
"Email code": "邮箱验证码",
"Empty Code": "验证码为空",
"Empty code": "验证码为空",
"Enter your code": "输入你的验证码",
"Phone code": "手机验证码",
"Please input your phone verification code!": "请输入您的手机验证码!",
@ -144,12 +144,12 @@
"Adapters": "适配器",
"Add": "添加",
"Affiliation URL": "工作单位URL",
"Affiliation URL - Tooltip": "工作单位URL",
"Affiliation URL - Tooltip": "工作单位的官网URL",
"Application": "应用",
"Applications": "应用",
"Applications that require authentication": "需要鉴权的应用",
"Applications that require authentication": "需要认证和鉴权的应用",
"Avatar": "头像",
"Avatar - Tooltip": "向其他人展示的头像",
"Avatar - Tooltip": "公开展示的用户头像",
"Back Home": "返回到首页",
"Cancel": "取消",
"Captcha": "人机验证码",
@ -161,27 +161,27 @@
"Close": "关闭",
"Created time": "创建时间",
"Default application": "默认应用",
"Default application - Tooltip": "默认应用",
"Default application - Tooltip": "直接从组织页面注册的用户默认所属的应用",
"Default avatar": "默认头像",
"Default avatar - Tooltip": "默认头像",
"Default avatar - Tooltip": "新注册用户没有设置头像时所采用的默认头像",
"Delete": "删除",
"Description": "描述信息",
"Description - Tooltip": "与此有关的描述信息",
"Description - Tooltip": "供人参考的详细描述信息Casdoor平台本身不会使用",
"Display name": "显示名称",
"Display name - Tooltip": "显示名称",
"Display name - Tooltip": "在界面里公开显示的、易读的名称",
"Down": "下移",
"Edit": "编辑",
"Email": "电子邮箱",
"Email - Tooltip": "电子邮件:",
"Email - Tooltip": "合法的电子邮件地址",
"Failed to add": "添加失败",
"Failed to connect to server": "连接服务器失败",
"Failed to delete": "删除失败",
"Failed to save": "保存失败",
"Favicon": "网站图标",
"Favicon - Tooltip": "网站的Favicon图标",
"Favicon": "组织Favicon",
"Favicon - Tooltip": "该组织所有Casdoor页面中所使用的Favicon图标URL",
"First name": "名字",
"Forget URL": "忘记密码URL",
"Forget URL - Tooltip": "忘记密码URL",
"Forget URL - Tooltip": "自定义忘记密码页面的URL不设置时采用Casdoor默认的忘记密码页面设置后Casdoor各类页面的忘记密码链接会跳转到该URL",
"Found some texts still not translated? Please help us translate at": "发现有些文字尚未翻译?请移步这里帮我们翻译:",
"Go to writable demo site?": "跳转至可写演示站点?",
"Home": "首页",
@ -202,48 +202,49 @@
"Menu": "目录",
"Method": "方法",
"Model": "模型",
"Model - Tooltip": "Casbin模型",
"Model - Tooltip": "Casbin的访问控制模型",
"Models": "模型",
"Name": "名称",
"Name - Tooltip": "唯一的、字符串式的ID",
"OAuth providers": "OAuth提供方",
"OK": "OK",
"Organization": "组织",
"Organization - Tooltip": "组织",
"Organization - Tooltip": "类似于租户、用户池等概念,每个用户和应用都从属于一个组织",
"Organizations": "组织",
"Password": "密码",
"Password - Tooltip": "密码",
"Password - Tooltip": "请确认密码正确",
"Password salt": "密码Salt值",
"Password salt - Tooltip": "用于密码加密的随机参数",
"Password type": "密码类型",
"Password type - Tooltip": "密码在数据库中存储的形式",
"Password type - Tooltip": "密码在数据库中的存储格式",
"Payments": "付款",
"Permissions": "权限",
"Permissions - Tooltip": "权限",
"Permissions - Tooltip": "该用户所拥有的权限",
"Phone": "手机号",
"Phone - Tooltip": "手机号",
"Preview": "预览",
"Preview - Tooltip": "预览",
"Preview - Tooltip": "预览所配置的效果",
"Products": "商品",
"Provider": "提供商",
"Provider - Tooltip": "第三方登录需要配置的提供方",
"Provider - Tooltip": "需要配置的支付提供商包括Paypal、支付宝、微信支付等",
"Providers": "提供商",
"Providers - Tooltip": "第三方登录需要配置的提供方",
"Providers - Tooltip": "需要配置的提供商,包括第三登录、对象存储、验证码等",
"Real name": "姓名",
"Records": "日志",
"Request URI": "请求URI",
"Resources": "资源",
"Roles": "角色",
"Roles - Tooltip": "角色",
"Roles - Tooltip": "用户所属的角色",
"Save": "保存",
"Save & Exit": "保存 & 退出",
"Session ID": "会话 ID",
"Session ID": "会话ID",
"Sessions": "会话",
"Signin URL": "登录URL",
"Signin URL - Tooltip": "用户的登录地址",
"Signin URL - Tooltip": "自定义登录页面的URL不设置时采用Casdoor默认的登录页面设置后Casdoor各类页面的登录链接会跳转到该URL",
"Signup URL": "注册URL",
"Signup URL - Tooltip": "展示给用户的注册地址",
"Signup URL - Tooltip": "自定义注册页面的URL不设置时采用Casdoor默认的注册页面设置后Casdoor各类页面的注册链接会跳转到该URL",
"Signup application": "注册应用",
"Signup application - Tooltip": "表示用户注册时通过哪个应用注册的",
"Signup application - Tooltip": "用户注册时通过哪个应用注册的",
"Sorry, the page you visited does not exist.": "抱歉,您访问的页面不存在",
"Sorry, the user you visited does not exist or you are not authorized to access this user.": "抱歉,您访问的用户不存在或您无权访问该用户",
"Sorry, you do not have permission to access this page or logged in status invalid.": "抱歉,您无权访问该页面或登录状态失效",
@ -253,7 +254,7 @@
"Successfully deleted": "删除成功",
"Successfully saved": "保存成功",
"Supported country codes": "支持的国家代码",
"Supported country codes - Tooltip": "支持发送短信的国家",
"Supported country codes - Tooltip": "该组织所支持的国家代码,发送短信验证码时可以选择这些国家的代码前缀",
"Sure to delete": "确定删除",
"Swagger": "API文档",
"Sync": "同步",
@ -266,10 +267,10 @@
"URL - Tooltip": "URL链接",
"Up": "上移",
"User": "用户",
"User - Tooltip": "用户 - 工具提示",
"User containers": "用户容器",
"User - Tooltip": "请确保用户名正确",
"User containers": "用户",
"User type": "用户类型",
"User type - Tooltip": "具有不同权限的用户角色",
"User type - Tooltip": "用户所属的标签,默认为\"normal-user\"",
"Users": "用户",
"Users under all organizations": "所有组织里的用户",
"Webhooks": "Webhooks",
@ -284,23 +285,23 @@
"Auto Sync": "自动同步",
"Auto Sync - Tooltip": "自动同步配置为0时禁用",
"Base DN": "基本DN",
"Base DN - Tooltip": "LDAP搜索时的基 DN",
"Base DN - Tooltip": "LDAP搜索时的基DN",
"CN": "CN",
"Edit LDAP": "编辑LDAP",
"Email": "电子邮件",
"Enable SSL": "启用 SSL",
"Enable SSL - Tooltip": "启用 SSL",
"Group Id": "组ID",
"Enable SSL": "启用SSL",
"Enable SSL - Tooltip": "是否启用SSL",
"Group ID": "组ID",
"ID": "ID",
"Last Sync": "最近同步",
"Phone": "电话",
"Server": "服务器",
"Server Host": "域名",
"Server Host - Tooltip": "LDAP服务器地址",
"Server Name": "LDAP服务器",
"Server Name - Tooltip": "LDAP服务器配置显示名称",
"Server Port": "端口",
"Server Port - Tooltip": "LDAP服务器端口号",
"Server host": "域名",
"Server host - Tooltip": "LDAP服务器地址",
"Server name": "LDAP服务器",
"Server name - Tooltip": "LDAP服务器配置显示名称",
"Server port": "端口",
"Server port - Tooltip": "LDAP服务器端口号",
"Sync": "同步",
"The Auto Sync option will sync all users to specify organization": "自动同步选项将同步所有用户以指定组织",
"UidNumber / Uid": "Uid号码 / Uid"
@ -324,41 +325,41 @@
"Sign in with WebAuthn": "WebAuthn登录",
"Sign in with {type}": "{type}登录",
"Signing in...": "正在登录...",
"Successfully logged in with webauthn credentials": "成功使用WebAuthn证书登录",
"The input is not valid Email or Phone!": "您输入的电子邮箱格式或手机号有误!",
"Successfully logged in with WebAuthn credentials": "成功使用WebAuthn证书登录",
"The input is not valid Email or phone number!": "您输入的电子邮箱格式或手机号有误!",
"To access": "访问",
"Verification Code": "验证码",
"WebAuthn": "Web身份验证",
"Verification code": "验证码",
"WebAuthn": "WebAuthn",
"sign up now": "立即注册",
"username, Email or phone": "用户名、Email或手机号"
},
"model": {
"Edit Model": "编辑模型",
"Model text": "模型文本",
"Model text - Tooltip": "Casbin访问控制模型",
"Model text - Tooltip": "Casbin访问控制模型支持ACL、RBAC、ABAC、RESTful等内置模型也可以自定义模型具体请查看Casbin官网",
"New Model": "添加模型"
},
"organization": {
"Account items": "个人页设置项",
"Account items - Tooltip": "个人设置页面中的项",
"Account items - Tooltip": "用户的个人设置页面中可配置项",
"Default avatar": "默认头像",
"Edit Organization": "编辑组织",
"Favicon": "图标",
"Follow global theme": "使用全局默认主题",
"InitScore": "初始积分",
"Is profile public": "用户个人页公开",
"Is profile public - Tooltip": "关闭后,只有全局管理员或同组织用户才能访问用户主页",
"Init score": "初始积分",
"Init score - Tooltip": "用户注册后所拥有的初始积分",
"Is profile public": "是否公开用户个人页",
"Is profile public - Tooltip": "关闭后只有全局管理员或同组织用户才能访问用户主页",
"Modify rule": "修改规则",
"New Organization": "添加组织",
"Soft deletion": "软删除",
"Soft deletion - Tooltip": "启用后,删除用户信息时不会在数据库彻底清除,只会标记为已删除状态",
"Soft deletion - Tooltip": "启用后,删除一个用户时不会在数据库彻底清除,只会标记为已删除状态",
"Tags": "标签集合",
"Tags - Tooltip": "可供用户选择的标签的集合",
"The user's initScore - Tooltip": "用户的初始积分",
"Tags - Tooltip": "可供用户选择的标签集合",
"View rule": "查看规则",
"Visible": "是否可见",
"Website URL": "页地址",
"Website URL - Tooltip": "网页地址"
"Website URL": "页地址",
"Website URL - Tooltip": "组织的主页地址URL该字段在Casdoor平台中未被使用"
},
"payment": {
"Confirm your invoice information": "确认您的发票信息",
@ -414,7 +415,7 @@
},
"permission": {
"Actions": "动作",
"Actions - Tooltip": "授权的动作",
"Actions - Tooltip": "被授权的操作",
"Admin": "管理员权限",
"Allow": "允许",
"Approve time": "审批时间",
@ -445,35 +446,33 @@
"Buy": "购买",
"Buy Product": "购买商品",
"CNY": "人民币",
"Currency": "币种",
"Currency - Tooltip": "币种 - 工具提示",
"Description": "描述",
"Description - Tooltip": "描述 - 工具提示",
"Description - Tooltip": "商品描述",
"Detail": "详情",
"Detail - Tooltip": "详情 - 工具提示",
"Detail - Tooltip": "商品详情",
"Edit Product": "编辑商品",
"I have completed the payment": "支付完成",
"Image": "图片",
"Image - Tooltip": "图片 - 工具提示",
"Image - Tooltip": "商品图片",
"New Product": "添加商品",
"Pay": "支付方式",
"Payment providers": "支付提供商",
"Payment providers - Tooltip": "支付提供商 - 工具提示",
"Paypal": "PayPal(贝宝)",
"Payment providers - Tooltip": "支持的支付提供商包括PayPal、支付宝、微信支付等",
"Paypal": "PayPal",
"Placing order...": "正在下单...",
"Please provide your username in the remark": "Please provide your username in the remark",
"Please provide your username in the remark": "请在备注中提供您的用户名",
"Please scan the QR code to pay": "请扫描二维码支付",
"Price": "价格",
"Price - Tooltip": "价格 - 工具提示",
"Price - Tooltip": "产品价格",
"Quantity": "库存",
"Quantity - Tooltip": "库存 - 工具提示",
"Quantity - Tooltip": "库存的数量",
"Return URL": "返回URL",
"Return URL - Tooltip": "返回URL - 工具提示",
"Return URL - Tooltip": "购买成功后返回URL",
"SKU": "货号",
"Sold": "售出",
"Sold - Tooltip": "售出 - 工具提示",
"Sold - Tooltip": "已售出的数量",
"Tag": "类别",
"Tag - Tooltip": "类别 - 工具提示",
"Tag - Tooltip": "商品类别",
"Test buy page..": "测试购买页面..",
"There is no payment channel for this product.": "该商品没有付款方式。",
"This product is currently not in sale.": "该商品目前未在售。",
@ -481,75 +480,76 @@
"WeChat Pay": "微信支付"
},
"provider": {
"Access key": "访问密钥",
"Access key": "Access key",
"Access key - Tooltip": "Access key",
"Agent ID": "Agent ID",
"Agent ID - Tooltip": "Agent ID - Tooltip",
"Agent ID - Tooltip": "Agent ID",
"App ID": "App ID",
"App ID - Tooltip": "App ID - Tooltip",
"App ID - Tooltip": "App ID",
"App key": "App key",
"App key - Tooltip": "App key - Tooltip",
"App key - Tooltip": "App key",
"App secret": "App secret",
"AppSecret - Tooltip": "AppSecret - Tooltip",
"AppSecret - Tooltip": "App secret",
"Auth URL": "Auth URL",
"Auth URL - Tooltip": "Auth URL - 工具提示",
"Auth URL - Tooltip": "Auth URL",
"Bucket": "存储桶",
"Bucket - Tooltip": "Bucket名称",
"Can not parse Metadata": "无法解析元数据",
"Can not parse metadata": "无法解析元数据",
"Can signin": "可用于登录",
"Can signup": "可用于注册",
"Can unlink": "可解绑定",
"Category": "分类",
"Category - Tooltip": "分类",
"Channel No.": "Channel No.",
"Channel No. - Tooltip": "Channel No. - Tooltip",
"Client ID": "客户端ID",
"Channel No.": "Channel号码",
"Channel No. - Tooltip": "Channel号码",
"Client ID": "Client ID",
"Client ID - Tooltip": "Client ID",
"Client ID 2": "客户端 ID 2",
"Client ID 2 - Tooltip": "客户端 ID 2 - 工具提示",
"Client secret": "客户端密钥",
"Client ID 2": "Client ID 2",
"Client ID 2 - Tooltip": "第二个Client ID",
"Client secret": "Client secret",
"Client secret - Tooltip": "Client secret",
"Client secret 2": "客户端密钥 2",
"Client secret 2 - Tooltip": "客户端密钥 2 - 工具提示",
"Client secret 2": "Client secret 2",
"Client secret 2 - Tooltip": "第二个Client secret",
"Copy": "复制",
"Disable SSL": "禁用SSL",
"Disable SSL - Tooltip": "与STMP服务器通信时是否禁用SSL安全协议",
"Disable SSL - Tooltip": "与STMP服务器通信时是否禁用SSL协议",
"Domain": "域名",
"Domain - Tooltip": "存储节点自定义域名",
"Domain - Tooltip": "对象存储的自定义域名",
"Edit Provider": "编辑提供商",
"Email content": "邮件内容",
"Email content - Tooltip": "邮件内容",
"Email sent successfully": "邮件发送成功",
"Email title": "邮件标题",
"Email title - Tooltip": "邮件标题",
"Enable QR code": "扫码登",
"Enable QR code - Tooltip": "扫码登陆 - 工具提示",
"Enable QR code": "扫码登",
"Enable QR code - Tooltip": "是否允许扫描二维码登录",
"Endpoint": "地域节点 (外网)",
"Endpoint (Intranet)": "地域节点 (内网)",
"Host": "主机",
"Host - Tooltip": "主机",
"Host - Tooltip": "主机",
"IdP": "IdP",
"IdP certificate": "IdP 公钥",
"Issuer URL": "发行者网址",
"Issuer URL - Tooltip": "发行者URL - 工具提示",
"IdP certificate": "IdP公钥证书",
"Issuer URL": "Issuer链接",
"Issuer URL - Tooltip": "Issuer链接URL",
"Link copied to clipboard successfully": "链接已成功复制到剪贴板",
"Metadata": "元数据",
"Metadata - Tooltip": "元数据 - 工具提示",
"Metadata - Tooltip": "SAML元数据",
"Method": "方法",
"Method - Tooltip": "登录行为,二维码或者静默授权登录",
"Method - Tooltip": "登录方法,二维码或者静默授权登录",
"Name": "名称",
"New Provider": "添加提供商",
"Parse": "Parse",
"Parse Metadata successfully": "解析元数据成功",
"Parse": "解析",
"Parse metadata successfully": "解析元数据成功",
"Path prefix": "路径前缀",
"Path prefix - Tooltip": "对象存储的Bucket路径前缀",
"Please use WeChat and scan the QR code to sign in": "请使用微信扫描二维码登录",
"Port": "端口",
"Port - Tooltip": "端口号",
"Port - Tooltip": "请确保端口号打开",
"Prompted": "注册后提醒绑定",
"Provider URL": "提供商URL",
"Provider URL - Tooltip": "提供商URL",
"Provider URL - Tooltip": "提供商网址配置对应的URL该字段仅用来方便跳转在Casdoor平台中未使用",
"Region ID": "地域ID",
"Region ID - Tooltip": "地域ID",
"Region ID - Tooltip": "提供商服务所属的地域ID",
"Region endpoint for Internet": "地域节点 (外网)",
"Region endpoint for Intranet": "地域节点 (内网)",
"Required": "是否必填项",
@ -557,25 +557,25 @@
"SMS Test": "测试短信配置",
"SMS Test - Tooltip": "请输入测试手机号",
"SMS account": "SMS account",
"SMS account - Tooltip": "SMS account - Tooltip",
"SMS account - Tooltip": "SMS account",
"SMS sent successfully": "短信发送成功",
"SP ACS URL": "SP ACS URL",
"SP ACS URL - Tooltip": "SP ACS URL - 工具提示",
"SP Entity ID": "SP 实体 ID",
"SP ACS URL - Tooltip": "SP ACS URL",
"SP Entity ID": "SP Entity ID",
"Scene": "Scene",
"Scene - Tooltip": "Scene - Tooltip",
"Scene - Tooltip": "Scene",
"Scope": "Scope",
"Scope - Tooltip": "Scope - 工具提示",
"Secret access key": "秘密访问密钥",
"Scope - Tooltip": "Scope",
"Secret access key": "Secret access key",
"Secret access key - Tooltip": "Secret access key",
"Secret key": "Secret key",
"Secret key - Tooltip": "用于服务端调用验证码提供商API进行验证",
"SecretAccessKey - Tooltip": "访问密钥-工具提示",
"Send Testing Email": "发送测试邮件",
"Send Testing SMS": "发送测试短信",
"Sign Name": "签名名称",
"Sign Name - Tooltip": "签名名称",
"Sign request": "签名请求",
"Sign request - Tooltip": "签名请求 - 工具提示",
"Sign request - Tooltip": "是否需要对请求签名",
"Signin HTML": "登录页面HTML",
"Signin HTML - Edit": "登录页面 - 编辑",
"Signin HTML - Tooltip": "自定义HTML用于替换默认的登录页面样式",
@ -583,29 +583,27 @@
"Signup HTML - Edit": "注册页面HTML - 编辑",
"Signup HTML - Tooltip": "自定义HTML用于替换默认的注册页面样式",
"Site key": "Site key",
"Site key - Tooltip": "用于前端嵌入页面",
"Site key - Tooltip": "Site key",
"Sub type": "子类型",
"Sub type - Tooltip": "子类型",
"Template Code": "模板代码",
"Template Code - Tooltip": "模板代码",
"Template code": "模板代码",
"Template code - Tooltip": "模板代码",
"Terms of Use": "使用条款",
"Terms of Use - Tooltip": "使用条款 - 工具提示",
"Test Connection": "测试SMTP连接",
"Terms of Use - Tooltip": "用户注册时需要阅读并同意的使用条款",
"Test Email": "测试Email配置",
"Test Email - Tooltip": "邮箱地址",
"The prefix path of the file - Tooltip": "文件的路径前缀 - 工具提示",
"Test Email - Tooltip": "接收测试邮件的Email邮箱",
"Test SMTP Connection": "测试SMTP连接",
"Token URL": "Token URL",
"Token URL - Tooltip": "Token URL - 工具提示",
"Token URL - Tooltip": "自定义OAuth的Token URL",
"Type": "类型",
"Type - Tooltip": "类型",
"UserInfo URL": "UserInfo URL",
"UserInfo URL - Tooltip": "UserInfo URL - 工具提示",
"UserInfo URL - Tooltip": "自定义OAuth的UserInfo URL",
"Visible": "是否可见",
"admin (share)": "admin (share)",
"alertType": "警报类型"
"admin (Shared)": "admin共享"
},
"record": {
"Is Triggered": "已触发"
"Is triggered": "已触发"
},
"resource": {
"Application": "应用",
@ -649,33 +647,33 @@
"Please input your last name!": "请输入您的姓氏!",
"Please input your phone number!": "请输入您的手机号码!",
"Please input your real name!": "请输入您的姓名!",
"Please select your country code!": "请选择国家代码!",
"Please select your country/region!": "请选择您的国家/地区",
"Please select your country code!": "请选择国家代码",
"Please select your country/region!": "请选择您的国家地区",
"Terms of Use": "《用户协议》",
"The input is not invoice Tax ID!": "您输入的纳税人识别号有误!",
"The input is not invoice title!": "您输入的发票抬头有误!",
"The input is not valid Email!": "您输入的电子邮箱格式有误!",
"The input is not valid Phone!": "您输入的手机号格式有误!",
"Username": "用户名",
"Your account has been created!": "您的账号已创建!",
"Your account has been created!": "您的账号已成功创建!",
"Your confirmed password is inconsistent with the password!": "您两次输入的密码不一致!",
"sign in now": "立即登录"
},
"syncer": {
"Affiliation table": "工作单位表",
"Affiliation table - Tooltip": "工作单位的数据库表名",
"Avatar base URL": "头像基URL",
"Avatar base URL - Tooltip": "头像URL前缀",
"Avatar base URL": "头像基URL",
"Avatar base URL - Tooltip": "头像图片的URL前缀",
"Casdoor column": "Casdoor列名",
"Column name": "列名",
"Column type": "列类型",
"Database": "数据库",
"Database - Tooltip": "数据库名称",
"Database type": "数据库类型",
"Database type - Tooltip": "数据库类型",
"Database type - Tooltip": "数据库类型支持XORM所支持的所有数据库如MySQL, PostgreSQL, SQL Server, Oracle, SQLite等",
"Edit Syncer": "编辑同步器",
"Error text": "错误信息",
"Error text - Tooltip": "同步器连接数据库时发生的错误",
"Error text - Tooltip": "错误信息",
"Is hashed": "是否参与哈希计算",
"New Syncer": "添加同步器",
"Sync interval": "同步间隔",
@ -685,18 +683,18 @@
"Table columns": "表格列",
"Table columns - Tooltip": "参与数据同步的表格列,不参与同步的列不需要添加",
"Table primary key": "表主键",
"Table primary key - Tooltip": "表主键如id"
"Table primary key - Tooltip": "表主键如id"
},
"system": {
"About Casdoor": "关于 Casdoor",
"An Identity and Access Management (IAM) / Single-Sign-On (SSO) platform with web UI supporting OAuth 2.0, OIDC, SAML and CAS": "一个支持 OAuth 2.0、OIDC、SAML 和 CAS 的 Web UI 的身份和访问管理 (IAM)/单点登录 (SSO) 平台",
"About Casdoor": "关于Casdoor",
"An Identity and Access Management (IAM) / Single-Sign-On (SSO) platform with web UI supporting OAuth 2.0, OIDC, SAML and CAS": "一个支持OAuth 2.0、OIDC、SAML和CAS的Web UI优先的身份和访问管理IAM/单点登录SSO平台",
"CPU Usage": "CPU使用率",
"Community": "社区",
"Get CPU Usage Failed": "获取CPU使用率失败",
"Get Memory Usage Failed": "获取内存使用率失败",
"Failed to get CPU usage": "获取CPU使用率失败",
"Failed to get memory usage": "获取内存使用率失败",
"Memory Usage": "内存使用率",
"Official Website": "官方网站",
"Unknown Version": "未知版本",
"Official website": "官方网站",
"Unknown version": "未知版本",
"Version": "版本"
},
"theme": {
@ -708,9 +706,9 @@
"Default": "默认",
"Document": "知识协作",
"Is compact": "宽松度",
"Primary color": "主色",
"Primary color": "主色",
"Theme": "主题",
"Theme - Tooltip": "为你的应用设置主题"
"Theme - Tooltip": "应用的样式主题"
},
"token": {
"Access token": "访问令牌",
@ -724,20 +722,18 @@
"user": {
"\" + destType + \" reset": "重设\" + destType + \"",
"3rd-party logins": "第三方登录",
"3rd-party logins - Tooltip": "使用第三方应用程序登录",
"3rd-party logins - Tooltip": "用户所绑定的社会化登录",
"Address": "地址",
"Address - Tooltip": "平时的居住地址",
"Address - Tooltip": "居住地址",
"Affiliation": "工作单位",
"Affiliation - Tooltip": "工作单位,如公司名称",
"Affiliation - Tooltip": "工作单位,如公司、组织名称",
"Bio": "自我介绍",
"Bio - Tooltip": "自我介绍",
"Cancel": "取消",
"Bio - Tooltip": "用户的自我介绍",
"Captcha Verify Failed": "验证码校验失败",
"Captcha Verify Success": "验证码校验成功",
"Code Sent": "验证码已发送",
"Country code": "国家代码",
"Country/Region": "国家/地区",
"Country/Region - Tooltip": "国家/地区",
"Country/Region - Tooltip": "国家地区",
"Edit User": "编辑用户",
"Email cannot be empty": "邮箱不能为空",
"Empty input!": "输入为空!",
@ -746,14 +742,14 @@
"ID card": "身份证号",
"Input your email": "请输入邮箱",
"Input your phone number": "输入手机号",
"Is admin": "是管理员",
"Is admin - Tooltip": "是应用程序管理员",
"Is admin": "是组织管理员",
"Is admin - Tooltip": "是用户所属组织的管理员",
"Is deleted": "被删除",
"Is deleted - Tooltip": "账户是否已被删除",
"Is deleted - Tooltip": "删除的用户只保留数据库记录,无法进行任何操作",
"Is forbidden": "被禁用",
"Is forbidden - Tooltip": "账户是否已被禁用",
"Is forbidden - Tooltip": "被禁用的用户无法再登录",
"Is global admin": "是全局管理员",
"Is global admin - Tooltip": "是应用程序管理员",
"Is global admin - Tooltip": "是Casdoor平台的管理员",
"Keys": "键",
"Link": "绑定",
"Location": "城市",
@ -764,14 +760,13 @@
"New Password": "新密码",
"New User": "添加用户",
"New phone": "新手机号",
"OK": "确定",
"Old Password": "旧密码",
"Password": "密码",
"Password Set": "密码已设置",
"Phone cannot be empty": "手机号不能为空",
"Please select avatar from resources": "从资源中选择...",
"Properties": "属性",
"Properties - Tooltip": "属性",
"Properties - Tooltip": "用户的属性",
"Re-enter New": "重复新密码",
"Reset Email...": "重置邮箱...",
"Reset Phone...": "重置手机号...",
@ -780,14 +775,15 @@
"Set new profile picture": "设置新头像",
"Set password...": "设置密码...",
"Tag": "标签",
"Tag - Tooltip": "标签",
"Tag - Tooltip": "用户的标签",
"Title": "职务",
"Title - Tooltip": "在单位/公司的职务",
"Title - Tooltip": "在工作单位担任的职务",
"Two passwords you typed do not match.": "两次输入的密码不匹配。",
"Unlink": "解绑",
"Upload (.xlsx)": "上传(.xlsx",
"Upload a photo": "上传头像",
"Values": "值",
"Verification code sent": "验证码已发送",
"WebAuthn credentials": "WebAuthn凭据",
"input password": "输入密码"
},
@ -800,13 +796,13 @@
"Headers": "协议头",
"Headers - Tooltip": "HTTP协议头键值对",
"Is user extended": "扩展用户字段",
"Is user extended - Tooltip": "JSON里加入extendedUser来扩展用户字段",
"Is user extended - Tooltip": "是否在JSON里加入用户的扩展字段",
"Method": "方法",
"Method - Tooltip": "HTTP方法",
"Name": "名称",
"New Webhook": "添加Webhook",
"URL": "网址",
"URL - Tooltip": "URL",
"URL": "链接",
"URL - Tooltip": "URL链接",
"Value": "值"
}
}