Add chinese translation (#2074)

* add chinese translation
* fix prettier problem
This commit is contained in:
Zachary Jia
2022-04-12 21:19:14 +08:00
committed by GitHub
parent d1e8243c47
commit 08e843549c
14 changed files with 382 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
import type { BaseTranslation } from "../i18n-types";
const report: BaseTranslation = {
block: {
title: "屏蔽",
content: "屏蔽任何来自 {userName} 的通信。该操作是可逆的。",
unblock: "解除屏蔽该用户",
block: "屏蔽该用户",
},
title: "举报",
content: "发送举报信息给这个房间的管理员,他们后续可能禁用该用户。",
message: {
title: "举报信息: ",
empty: "举报信息不能为空.",
},
submit: "举报该用户",
moderate: {
title: "Moderate {userName}",
block: "屏蔽",
report: "举报",
noSelect: "错误:未选择行为。",
},
};
export default report;