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
+18
View File
@@ -0,0 +1,18 @@
import type { BaseTranslation } from "../i18n-types";
import { ADMIN_URL } from "../../Enum/EnvironmentVariable";
const upgradeLink = ADMIN_URL + "/pricing";
const warning: BaseTranslation = {
title: "警告!",
content: `该世界已接近容量限制!你可以 <a href="${upgradeLink}" target="_blank">点击这里</a> 升级它的容量`,
limit: "该世界已接近容量限制!",
accessDenied: {
camera: "摄像头访问权限被拒绝。点击这里检查你的浏览器权限。",
screenSharing: "屏幕共享权限被拒绝。点击这里检查你的浏览器权限。",
},
importantMessage: "重要消息",
connectionLost: "连接丢失。重新连接中...",
};
export default warning;