Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
m1k1o
GitHub Repository: m1k1o/neko
Path: blob/master/client/src/locale/zh-cn.ts
1301 views
1
export const logout = '登出'
2
export const unsupported = '你的浏览器不支持 WebRTC'
3
export const admin_loggedin = '您以管理钻身份登陆'
4
export const you = '你'
5
export const somebody = '某人'
6
export const send_a_message = '发送消息'
7
8
export const side = {
9
chat: '聊天',
10
files: '文件',
11
settings: '设置',
12
}
13
14
export const connect = {
15
login_title: '登录',
16
invitation_title: '你已被邀请到这个房间',
17
displayname: '您的姓名',
18
password: '密码',
19
connect: '连接',
20
error: '登录错误',
21
empty_displayname: '显示名称不能为空',
22
}
23
24
export const context = {
25
ignore: '忽略',
26
unignore: '取消忽略',
27
mute: '静音',
28
unmute: '取消静音',
29
release: '强制释放控制',
30
take: '牵制控制',
31
give: '给予控制',
32
kick: '踢出',
33
ban: '禁止 IP',
34
confirm: {
35
kick_title: '踢出 {name}?',
36
kick_text: '你确定你要替 {name}?',
37
ban_title: '禁止 {name}?',
38
ban_text: '你是否想禁止 {name}? 你将需要重新启动服务器来撤销这一做法.',
39
mute_title: '静音 {name}?',
40
mute_text: '你确定你要精印吗 {name}?',
41
unmute_title: '取消静音 {name}?',
42
unmute_text: '你想去下静音吗 {name}?',
43
button_yes: '是',
44
button_cancel: '取消',
45
},
46
}
47
48
export const controls = {
49
release: '释放控制',
50
request: '请求控制',
51
lock: '锁定控制',
52
unlock: '解锁控制',
53
has: '你有控制',
54
hasnot: '你没有控制',
55
}
56
57
export const locks = {
58
control: {
59
lock: '对所有用户进行锁定控制',
60
unlock: '对所有用户进行解锁控制',
61
locked: '锁定的控制装置',
62
unlocked: '解锁的控制装置',
63
notif_locked: '为用户锁定控制',
64
notif_unlocked: '为用户解锁控制',
65
},
66
login: {
67
lock: '所有用户的锁定室',
68
unlock: '所有用户的解锁室',
69
locked: '为所有用户锁定的房间',
70
unlocked: '为所有用户解锁的房间',
71
notif_locked: '锁上房间',
72
notif_unlocked: '解锁房间',
73
},
74
// TODO
75
//file_transfer: {
76
// lock: 'Lock File Transfer (for users)',
77
// unlock: 'Unlock File Transfer (for users)',
78
// locked: 'File Transfer Locked (for users)',
79
// unlocked: 'File Transfer Unlocked (for users)',
80
// notif_locked: 'locked file transfer',
81
// notif_unlocked: 'unlocked file transfer',
82
//},
83
}
84
85
export const setting = {
86
scroll: '滚动敏感度',
87
scroll_invert: '反转滚动敏感度',
88
autoplay: '自动播放视频',
89
ignore_emotes: '忽略表情符号',
90
chat_sound: '播放聊天声音',
91
keyboard_layout: '键盘布局',
92
broadcast_title: '现场流媒体',
93
}
94
95
export const connection = {
96
logged_out: '你已登出',
97
reconnecting: '正在重新连接',
98
connected: '已连接',
99
disconnected: '已断开',
100
kicked: '你已被踢出',
101
button_confirm: '好的',
102
}
103
104
export const notifications = {
105
connected: '{name} 已连接',
106
disconnected: '{name} 已断开',
107
controls_taken: '{name} 采取了控制',
108
controls_taken_force: '被迫接受控制',
109
controls_taken_steal: '掌握控制权 从 {name}',
110
controls_released: '{name} 释放控制',
111
controls_released_force: '强制解除控制',
112
controls_released_steal: '强制解除控制 从 {name}',
113
controls_given: '将控制权交给 {name}',
114
controls_has: '{name} 拥有控制权',
115
controls_has_alt: '但我让那个人知道你想要它',
116
controls_requesting: '{name} 正在请求控制',
117
resolution: '将分辨率改为 {width}x{height}@{rate}',
118
banned: '被禁止 {name}',
119
kicked: '被踢的 {name}',
120
muted: '鸟粪 {name}',
121
unmuted: '取消静音 {name}',
122
}
123
124
export const files = {
125
downloads: '下载',
126
uploads: '上传',
127
upload_here: '点击或拖动文件到这里来上传',
128
}
129
130