mirror of
https://github.com/schroinerxy/cloud-mail.git
synced 2026-06-21 19:35:50 +08:00
106 lines
4.6 KiB
JavaScript
106 lines
4.6 KiB
JavaScript
const en = {
|
|
IncorrectPwd: 'Incorrect password',
|
|
addAccountDisabled: 'Add Email Address feature is disabled',
|
|
regDisabled: 'Sign up is disabled',
|
|
emptyEmail: 'Email cannot be empty',
|
|
notEmail: 'Invalid email',
|
|
notExistDomain: 'Email domain does not exist',
|
|
isDelAccount: 'This Email has been deleted',
|
|
isRegAccount: 'This Email is already registered',
|
|
accountLimit: 'Email address limit reached',
|
|
delMyAccount: 'Cannot delete your own email',
|
|
noUserAccount: 'This email does not belong to the current user',
|
|
usernameLengthLimit: 'Username length exceeds the limit',
|
|
noOsSendPic: 'Cannot send body images: object storage not configured',
|
|
noOsDomainSendAtt: 'Cannot send attachments: object storage domain not configured',
|
|
noOsSendAtt: 'Cannot send attachments: object storage not configured',
|
|
disabledSend: 'Email sending feature is disabled',
|
|
daySendLimit: 'Daily send limit reached',
|
|
totalSendLimit: 'Total send limit reached',
|
|
daySendLack: 'Not enough remaining sends today',
|
|
totalSendLack: 'Not enough total remaining sends',
|
|
senderAccountNotExist: 'Sender email does not exist',
|
|
noResendToken: 'Resend API token not configured',
|
|
sendEmailNotCurUser: 'Sender email does not belong to current user',
|
|
notExistEmailReply: 'Mail does not exist and cannot be replied to',
|
|
imageAttLimit: 'The maximum number of image attachments is 10',
|
|
attLimit: 'The maximum number of attachments is 10.',
|
|
pwdLengthLimit: 'Password length exceeds the limit',
|
|
emailLengthLimit: 'Email length exceeds the limit',
|
|
minEmailPrefix: 'Email must be at least {{msg}} characters',
|
|
banEmailPrefix: 'Invalid characters in email address',
|
|
pwdMinLength: 'Password must be at least 6 characters',
|
|
notEmailDomain: 'Invalid email domain',
|
|
emptyRegKey: 'Invite code cannot be empty',
|
|
notExistRegKey: 'Invite code does not exist',
|
|
noRegKeyTotal: 'Invite code usage limit reached',
|
|
regKeyExpire: 'Invite code has expired',
|
|
emailAndPwdEmpty: 'Email and password cannot be empty',
|
|
notExistUser: 'Email does not exist',
|
|
isDelUser: 'This email has been deleted',
|
|
isBanUser: 'This email has been banned',
|
|
regKeyUseCount: 'Usage count cannot be empty',
|
|
emptyRegKeyExpire: 'Valid until time cannot be empty',
|
|
isExistRegKye: 'Invite code already exists',
|
|
roleNotExist: 'Role does not exist',
|
|
emptyRoleName: 'Role name cannot be empty',
|
|
roleNameExist: 'Role name already exists',
|
|
delDefRole: 'Default role cannot be deleted',
|
|
notJsonDomain: 'Environment variable "domain" must be in JSON format',
|
|
noDomainVariable: 'Environment variable domain cannot be empty',
|
|
noOsUpBack: 'Cannot upload background: object storage not configured',
|
|
noOsDomainUpBack: 'Cannot upload background: object storage domain not configured',
|
|
starNotExistEmail: 'Starred email does not exist',
|
|
emptyBotToken: 'Please verify that you are human',
|
|
botVerifyFail: 'Bot verification failed, please try again',
|
|
authExpired: 'Authentication has expired. Please sign in again',
|
|
unauthorized: 'Unauthorized',
|
|
bannedSend: 'You can only send emails to internal mailboxes',
|
|
onlyInternalSend: 'Your current role allows sending internal emails only',
|
|
noDomainPermAdd: "No permission to add this domain email",
|
|
noDomainPermReg: "No permission to register this domain email",
|
|
noDomainPermRegKey: "Registration code not valid for this domain",
|
|
noDomainPermSend: "No permission to send from this domain email",
|
|
publicTokenFail: 'Token validation failed',
|
|
notAdmin: 'The entered email is not an administrator email',
|
|
emailExistDatabase: 'Email already exists in the database',
|
|
notConfigOss: 'Object storage not configured',
|
|
perms: {
|
|
"邮件": "Emails",
|
|
"邮件发送": "Send Email",
|
|
"邮件删除": "Delete Email",
|
|
"邮箱侧栏": "Email Address",
|
|
"邮箱查看": "View Email",
|
|
"邮箱添加": "Add Email",
|
|
"邮箱删除": "Delete Email",
|
|
"个人设置": "Settings",
|
|
"用户注销": "Delete User",
|
|
"分析页": "Analytics",
|
|
"数据查看": "View Data",
|
|
"用户信息": "All Users",
|
|
"用户查看": "View User",
|
|
"用户添加": "Add User",
|
|
"密码修改": "Change Password",
|
|
"状态修改": "Change Status",
|
|
"权限修改": "Change Role",
|
|
"用户删除": "Delete User",
|
|
"邮件列表": "All Mail",
|
|
"邮件查看": "View Email",
|
|
"权限控制": "Role",
|
|
"身份添加": "Add Role",
|
|
"身份查看": "View Role",
|
|
"身份修改": "Change Role",
|
|
"身份删除": "Delete Role",
|
|
"注册密钥": "Invite Code",
|
|
"密钥查看": "View Code",
|
|
"密钥添加": "Add Code",
|
|
"密钥删除": "Delete Code",
|
|
"系统设置": "System Settings",
|
|
"设置查看": "View Settings",
|
|
"设置修改": "Change Settings",
|
|
"发件重置": "Reset Send Count"
|
|
}
|
|
};
|
|
|
|
export default en;
|