fix chinese i18n types (#2080)

This commit is contained in:
Lukas
2022-04-13 12:05:15 +02:00
committed by GitHub
parent 08e843549c
commit 348f6f68cd
14 changed files with 30 additions and 28 deletions
+4 -2
View File
@@ -1,4 +1,5 @@
import type { BaseTranslation } from "../i18n-types";
import en_US from "../en-US";
import type { Translation } from "../i18n-types";
import audio from "./audio";
import camera from "./camera";
import chat from "./chat";
@@ -13,7 +14,8 @@ import warning from "./warning";
import emoji from "./emoji";
import trigger from "./trigger";
const zh_CN: BaseTranslation = {
const zh_CN: Translation = {
...(en_US as Translation),
language: "中文",
country: "中国",
audio,