feat(i18n): change location of translation files

This commit is contained in:
Amruth Pillai
2023-11-10 09:29:52 +01:00
parent c52a0d4da7
commit 69d3cd899c
4 changed files with 12 additions and 7 deletions
+3 -2
View File
@@ -1,11 +1,12 @@
import type { LinguiConfig } from "@lingui/conf";
const config: LinguiConfig = {
locales: ["en-US", "de-DE"],
format: "po",
sourceLocale: "en-US",
locales: ["en-US", "de-DE"],
catalogs: [
{
path: "<rootDir>/apps/client/src/locales/{locale}",
path: "<rootDir>/apps/client/src/locales/{locale}/messages",
include: ["<rootDir>/apps/client/src"],
},
],