From 01b29dc2a6bbb3de210c3d5d73e0a7733e7d2433 Mon Sep 17 00:00:00 2001 From: "Abdallah A. Zaqout" <26047413+zaqoutabed@users.noreply.github.com> Date: Thu, 29 Jun 2023 16:25:26 -0700 Subject: [PATCH] fix translations path in dev --- main/getLanguageMap.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/getLanguageMap.ts b/main/getLanguageMap.ts index 917d3682..d2919bf9 100644 --- a/main/getLanguageMap.ts +++ b/main/getLanguageMap.ts @@ -159,7 +159,7 @@ async function getTranslationFilePath(code: string) { /** * This will be used for in Development mode */ - filePath = path.join(__dirname, `../translations/${code}.csv`); + filePath = path.join(__dirname, `../../translations/${code}.csv`); } try {