新增邮件和用户列表右键菜单

This commit is contained in:
eoao
2026-01-22 23:50:00 +08:00
parent 31dbf1a9e6
commit d7c3cf27b0
17 changed files with 530 additions and 131 deletions

View File

@@ -12,10 +12,10 @@ const en = {
SystemSettings: 'System Settings',
noMoreData: 'No more data',
noMessagesFound: 'No messages found',
addAccount: 'Add Account',
addAccount: 'Add Email Address',
emailAccount: 'Email',
account: 'Account',
userAccount: 'User Accounts',
account: 'Address',
userAccount: 'User Email Address',
deleteUser: 'Delete Account',
deleteUserBtn: 'Delete',
changePassword: 'Change Password',
@@ -35,7 +35,7 @@ const en = {
delAccountMsg: 'This will permanently delete your account and data. It cannot be reactivated',
totalReceived: 'Total Received',
totalSent: 'Total Sent',
totalMailboxes: 'Total Accounts',
totalMailboxes: 'Total Email Addresses',
totalUsers: 'Total Users',
deleted: 'Deleted',
selectDeleted: 'Deleted',
@@ -52,7 +52,7 @@ const en = {
tabEmailAddress: 'Email',
tabReceived: 'Received',
tabSent: 'Sent',
tabMailboxes: 'Accounts',
tabMailboxes: 'Addresses',
tabRegisteredAt: 'Registered at',
tabStatus: 'Status',
tabRole: 'Role',
@@ -73,9 +73,9 @@ const en = {
unauthorized: 'Unauthorized',
unlimited: 'Unlimited',
sendCount: 'Send email : ',
accountCount: 'Add account : ',
accountCount: 'Add Address : ',
action: 'Action',
chgPwd: 'Pwd',
chgPwd: 'Password',
perm: 'Role',
btnBan: 'Ban',
admin: 'Admin',
@@ -136,8 +136,8 @@ const en = {
websiteSetting: 'Website',
websiteReg: 'Sign Up',
loginDomain: 'Sign-In Box Domain',
multipleEmail: 'Multiple Accounts',
multipleEmailDesc: 'Enable this feature to allow users to add multiple accounts',
multipleEmail: 'Multiple Email Address',
multipleEmailDesc: 'Enable this feature to allow users to add multiple email',
customization: 'Customization',
websiteTitle: 'Title',
loginBoxOpacity: 'Login Box Opacity',
@@ -161,7 +161,7 @@ const en = {
rules: 'Rules',
turnstileSetting: 'Turnstile',
signUpVerification: 'Sign Up Verification',
addEmailVerification: 'Add Account Verification',
addEmailVerification: 'Add Email Verification',
about: 'About',
version: 'Version',
community: 'Community',
@@ -207,6 +207,7 @@ const en = {
emptyCountMsg: 'Available count cannot be empty',
addSuccessMsg: 'Addition successful',
delConfirm: 'Confirm deleting {msg}?',
delUsersConfirm: 'Confirm deletion of selected users?',
emptyRoleNameMsg: 'Role name cannot be empty',
saveSuccessMsg: 'Saved successfully',
changeRoleTitle: 'Change Role',
@@ -237,7 +238,8 @@ const en = {
sendSuccessMsg: 'Send successful',
sendFailMsg: 'Send failed',
saveDraftConfirm: 'Save draft?',
delEmailsConfirm: 'Confirm batch delete these emails?',
delEmailsConfirm: 'Confirm deletion of selected emails?',
delOneEmailConfirm: 'Confirm deletion of this email?',
sending: 'Sending email...',
sendingErrorMsg: 'Sending in progress',
networkErrorMsg: 'Network error. Check your internet',
@@ -312,7 +314,18 @@ const en = {
mustNotContainDesc: 'Separate with commas',
setSuccess: 'Settings saved successfully',
details: 'Details',
userDetails: 'User Details'
userDetails: 'User Details',
markAsRead: 'Mark as Read',
star: 'Star',
setRole: 'Set Role',
adminDeleteUser: 'Delete User',
banUser: 'Ban User',
enableUser: 'Enable User',
restoreUser: 'Restore User',
searchUser: 'Search by user',
searchEmail: 'Search by Email',
searchSender: 'Search by Sender',
userEmail: 'Email Address'
}
export default en

View File

@@ -207,6 +207,7 @@ const zh = {
emptyCountMsg: '可用次数不能为空',
addSuccessMsg: '添加成功',
delConfirm: '确认删除{msg}吗?',
delUsersConfirm: '确定删除选中的用户吗?',
emptyRoleNameMsg: '身份名不能为空',
saveSuccessMsg: '保存成功',
changeRoleTitle: '修改身份',
@@ -237,7 +238,8 @@ const zh = {
sendSuccessMsg: '发送成功',
sendFailMsg: '发送失败',
saveDraftConfirm: '是否保存草稿?',
delEmailsConfirm: '确认批量删除这些邮件吗?',
delEmailsConfirm: '确认删除选中的邮件吗?',
delOneEmailConfirm: '确认删除这个邮件吗?',
sending: '邮件正在发送中',
sendingErrorMsg: '邮件正在发送中',
networkErrorMsg: '网络错误,请检查网络连接',
@@ -312,6 +314,17 @@ const zh = {
mustNotContainDesc: '输入多个值用,分开',
setSuccess: '设置成功',
details: '详情',
userDetails: '用户详情'
userDetails: '用户详情',
markAsRead: '标为已读',
star: '星标',
setRole: '设置权限',
adminDeleteUser: '删除用户',
banUser: '封禁用户',
enableUser: '启动用户',
restoreUser: '恢复用户',
searchUser: '搜索用户',
searchEmail: '搜索邮箱',
searchSender: '搜索发件人',
userEmail: '用户邮箱'
}
export default zh