m2pool_web_frontend/mining-pool/src/i18n/announcements.js

190 lines
4.3 KiB
JavaScript
Raw Normal View History

/**
* 公告中心页面国际化文件
* 包含公告中心页面相关的中英文翻译
*/
// 中文翻译
export const announcements_zh = {
// 页面标题和导航
title: '公告中心',
latestTitle: '最新公告',
searchPlaceholder: '搜索',
// 面包屑导航
homeCenter: '首页中心',
// 公告相关
viewAll: '查看所有',
articles: '篇文章',
noData: '暂无公告',
loadError: '加载公告失败',
// 公告类型
importantNotice: '重要通知',
systemAnnouncement: '系统公告',
marketDynamic: '市场动态',
serviceNotice: '服务通知',
faultDescription: '故障说明',
offlineNotice: '下线通知',
// 时间相关
today: '今天',
yesterday: '昨天',
daysAgo: '天前',
// 操作
back: '返回',
refresh: '刷新',
search: '搜索',
reset: '重置',
// 分页
total: '共',
page: '页',
items: '条',
goToPage: '跳至',
// 错误信息
networkError: '网络连接失败,请检查网络设置',
serverError: '服务器异常,请稍后重试',
dataError: '数据加载失败',
// 提示信息
searchTip: '请输入关键词进行搜索',
noSearchResult: '未找到相关公告',
loadingTip: '正在加载...',
// 公告状态
published: '已发布',
draft: '草稿',
archived: '已归档',
// 公告详情
detail: '详情',
content: '内容',
publishTime: '发布时间',
updateTime: '更新时间',
author: '作者',
category: '分类',
tags: '标签',
readCount: '阅读量',
// 操作按钮
viewDetail: '查看详情',
share: '分享',
favorite: '收藏',
print: '打印',
download: '下载',
// 筛选和排序
filter: '筛选',
sort: '排序',
sortByTime: '按时间排序',
sortByPopularity: '按热度排序',
filterByType: '按类型筛选',
filterByDate: '按日期筛选',
allTypes: '全部类型',
allDates: '全部日期',
// 高级搜索
advancedSearch: '高级搜索',
searchByTitle: '按标题搜索',
searchByContent: '按内容搜索',
searchByAuthor: '按作者搜索',
dateRange: '日期范围',
startDate: '开始日期',
endDate: '结束日期'
};
// 英文翻译
export const announcements_en = {
// 页面标题和导航
title: 'Announcement Center',
latestTitle: 'Latest Announcements',
searchPlaceholder: 'Search',
// 面包屑导航
homeCenter: 'Home Center',
// 公告相关
viewAll: 'View All',
articles: 'Articles',
noData: 'No announcements',
loadError: 'Failed to load announcements',
// 公告类型
importantNotice: 'Important Notice',
systemAnnouncement: 'System Announcement',
marketDynamic: 'Market Dynamic',
serviceNotice: 'Service Notice',
faultDescription: 'Fault Description',
offlineNotice: 'Offline Notice',
// 时间相关
today: 'Today',
yesterday: 'Yesterday',
daysAgo: 'days ago',
// 操作
back: 'Back',
refresh: 'Refresh',
search: 'Search',
reset: 'Reset',
// 分页
total: 'Total',
page: 'Page',
items: 'Items',
goToPage: 'Go to',
// 错误信息
networkError: 'Network connection failed, please check network settings',
serverError: 'Server error, please try again later',
dataError: 'Data loading failed',
// 提示信息
searchTip: 'Please enter keywords to search',
noSearchResult: 'No related announcements found',
loadingTip: 'Loading...',
// 公告状态
published: 'Published',
draft: 'Draft',
archived: 'Archived',
// 公告详情
detail: 'Detail',
content: 'Content',
publishTime: 'Publish Time',
updateTime: 'Update Time',
author: 'Author',
category: 'Category',
tags: 'Tags',
readCount: 'Read Count',
// 操作按钮
viewDetail: 'View Detail',
share: 'Share',
favorite: 'Favorite',
print: 'Print',
download: 'Download',
// 筛选和排序
filter: 'Filter',
sort: 'Sort',
sortByTime: 'Sort by Time',
sortByPopularity: 'Sort by Popularity',
filterByType: 'Filter by Type',
filterByDate: 'Filter by Date',
allTypes: 'All Types',
allDates: 'All Dates',
// 高级搜索
advancedSearch: 'Advanced Search',
searchByTitle: 'Search by Title',
searchByContent: 'Search by Content',
searchByAuthor: 'Search by Author',
dateRange: 'Date Range',
startDate: 'Start Date',
endDate: 'End Date'
};