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
+34
View File
@@ -0,0 +1,34 @@
import type { BaseTranslation } from "../i18n-types";
import audio from "./audio";
import camera from "./camera";
import chat from "./chat";
import companion from "./companion";
import woka from "./woka";
import error from "./error";
import follow from "./follow";
import login from "./login";
import menu from "./menu";
import report from "./report";
import warning from "./warning";
import emoji from "./emoji";
import trigger from "./trigger";
const zh_CN: BaseTranslation = {
language: "中文",
country: "中国",
audio,
camera,
chat,
companion,
woka,
error,
follow,
login,
menu,
report,
warning,
emoji,
trigger,
};
export default zh_CN;