i18n.ts•2.38 kB
import { url } from "inspector"
export const zh_CN = {
user: {
profile: "个人主页",
uid: "UID",
nickname: "昵称",
followers: "粉丝数",
following: "关注数",
level: "等级",
avatar: "头像",
bio: "个人简介",
birthday: "生日",
tags: "标签",
verification: "认证",
verificationDesc: "认证简介",
vipStatus: "会员状态",
annualVip: "年度大会员",
monthlyVip: "月度大会员",
liveRoomUrl: "直播间地址",
liveStatus: "当前开播状态",
liveOn: "开播中",
liveOff: "未开播",
},
video: {
title: "标题",
uploader: "UP主",
uplpaderUID: "UID",
url: "视频地址",
aid: "视频ID",
stats: "统计信息",
views: "播放量",
danmaku: "弹幕数",
likes: "点赞数",
coins: "投币数",
favorites: "收藏数",
shares: "分享数",
comments: "评论数",
publishDate: "发布日期",
duration: "时长",
description: "视频简介",
tags: "标签",
},
search: {
noResults: "没有找到相关结果",
searchPlaceholder: "搜索视频、用户...",
filterByType: "按类型筛选",
},
}
export const en_US = {
user: {
profile: "Profile",
uid: "UID",
nickname: "Nickname",
followers: "Followers",
following: "Following",
level: "Level",
avatar: "Avatar",
bio: "Bio",
birthday: "Birthday",
tags: "Tags",
verification: "Verification",
verificationDesc: "Verification Description",
vipStatus: "VIP Status",
annualVip: "Annual VIP",
monthlyVip: "Monthly VIP",
liveRoomUrl: "Live Room URL",
liveStatus: "Live Status",
liveOn: "Live Now",
liveOff: "Not Live",
},
video: {
title: "Title",
uploader: "Uploader",
uploaderUID: "UID",
url: "URL",
aid: "AID",
stats: "Stats",
views: "Views",
danmaku: "Danmaku Count",
likes: "Likes",
coins: "Coins",
favorites: "Favorites",
shares: "Shares",
comments: "Comments",
publishDate: "Publish Date",
duration: "Duration",
description: "Description",
tags: "Tags",
},
search: {
noResults: "No results found",
searchPlaceholder: "Search videos, users...",
filterByType: "Filter by type",
},
}
export default en_US
export const languages = {
"zh-CN": zh_CN,
"en-US": en_US,
}