From 6897bf1254dac3ebe4f05d4617b1e6ed33a7105a Mon Sep 17 00:00:00 2001 From: ki-ask Date: Wed, 5 Jul 2023 23:39:22 +0600 Subject: [PATCH] Added support for Bangla language --- app/locales/bn.ts | 2 +- app/locales/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/locales/bn.ts b/app/locales/bn.ts index 5f24d5c1..e6d20486 100644 --- a/app/locales/bn.ts +++ b/app/locales/bn.ts @@ -108,7 +108,7 @@ const bn: RequiredLocaleType = { ConfirmClearAll: "আপনি কি নিশ্চিত যে আপনি সমস্ত ডেটা পুনরায় সেট করতে চান?", }, Lang: { - Name: "বাংলা", // ATTENTION: if you wanna add a new translation, please do not translate this value, leave it as `Language` + Name: "Bangla", // ATTENTION: if you wanna add a new translation, please do not translate this value, leave it as `Language` All: "সমস্ত ভাষা", }, Avatar: "অবতার", diff --git a/app/locales/index.ts b/app/locales/index.ts index 7ece4583..56538176 100644 --- a/app/locales/index.ts +++ b/app/locales/index.ts @@ -58,7 +58,7 @@ export const ALL_LANG_OPTIONS: Record = { cs: "Čeština", no: "Nynorsk", ar: "العربية", - bn: "বাংলা", + bn: "Bangla", }; const LANG_KEY = "lang";