Files
partey_workadventure/front/src/i18n/zh-CN/report.ts
T
Zachary Jia 08e843549c Add chinese translation (#2074)
* add chinese translation
* fix prettier problem
2022-04-12 15:19:14 +02:00

26 lines
737 B
TypeScript

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;