From a44bd71043d5550f751ff6d06d6ea16ac2742118 Mon Sep 17 00:00:00 2001 From: watchakorn-18k <74919942+watchakorn-18k@users.noreply.github.com> Date: Fri, 31 Mar 2023 01:00:58 +0700 Subject: [PATCH] Add thai language i18n (#6103) --- src/node/i18n/index.ts | 5 ++++- src/node/i18n/locales/th.json | 13 +++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 src/node/i18n/locales/th.json diff --git a/src/node/i18n/index.ts b/src/node/i18n/index.ts index b3b280b4d..2bd7b18e9 100644 --- a/src/node/i18n/index.ts +++ b/src/node/i18n/index.ts @@ -1,7 +1,7 @@ import i18next, { init } from "i18next" import * as en from "./locales/en.json" import * as zhCn from "./locales/zh-cn.json" - +import * as th from "./locales/th.json" init({ lng: "en", fallbackLng: "en", // language to use if translations in user language are not available. @@ -15,6 +15,9 @@ init({ "zh-cn": { translation: zhCn, }, + th: { + translation: th, + }, }, }) diff --git a/src/node/i18n/locales/th.json b/src/node/i18n/locales/th.json new file mode 100644 index 000000000..e5cd2cf14 --- /dev/null +++ b/src/node/i18n/locales/th.json @@ -0,0 +1,13 @@ +{ + "LOGIN_TITLE": "เข้าสู่ระบบ {{app}}", + "LOGIN_BELOW": "กรุณาเข้าสู่ระบบด้านล่าง", + "WELCOME": "ยินดีต้อนรับสู่ {{app}}", + "LOGIN_PASSWORD": "ตรวจสอบไฟล์กำหนดค่าที่ {{configFile}} เพื่อดูรหัสผ่าน", + "LOGIN_USING_ENV_PASSWORD": "รหัสผ่านถูกกำหนดเป็น $PASSWORD", + "LOGIN_USING_HASHED_PASSWORD": "รรหัสผ่านถูกกำหนดเป็น $HASHED_PASSWORD", + "SUBMIT": "ส่ง", + "PASSWORD_PLACEHOLDER": "รหัสผ่าน", + "LOGIN_RATE_LIMIT": "ถึงขีดจำกัดอัตราการเข้าสู่ระบบ!", + "MISS_PASSWORD": "รหัสผ่านหายไป", + "INCORRECT_PASSWORD": "รหัสผ่านไม่ถูกต้อง" +}