about summary refs log tree commit diff
path: root/src/locale/i18n.web.ts
diff options
context:
space:
mode:
authorxurxogp <xguerrap@gmail.com>2024-11-24 00:54:59 +0100
committerGitHub <noreply@github.com>2024-11-23 15:54:59 -0800
commit7e7910edf77427fb0cbd9ed47b2722f18532def6 (patch)
tree1ecc612d91a54e3bffa24a383ec60bfae0b310be /src/locale/i18n.web.ts
parentaf4db872b5226e8803a3d27b5be968cdccf73448 (diff)
downloadvoidsky-7e7910edf77427fb0cbd9ed47b2722f18532def6.tar.zst
Added Galician language localization (#6463)
* Update languages.ts

added galician language

* Update i18n.web.ts

added import of galician translations file

* Update i18n.ts

added galician language

* Update helpers.ts

added galician to sanitizeLanguage function

* galician messages

First commit

* Second commit

* Third commit

* fourth commit

* fifth commit

* Update lingui.config.js

change to make available Galician language

* galician translation by Carlos Vieito and Alexandre Espinosa

---------

Co-authored-by: Alexandre Espinosa Menor <aemenor@gmail.com>
Diffstat (limited to 'src/locale/i18n.web.ts')
-rw-r--r--src/locale/i18n.web.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/locale/i18n.web.ts b/src/locale/i18n.web.ts
index 2f3dfe390..b4f29e96a 100644
--- a/src/locale/i18n.web.ts
+++ b/src/locale/i18n.web.ts
@@ -40,6 +40,10 @@ export async function dynamicActivate(locale: AppLanguage) {
       mod = await import(`./locales/ga/messages`)
       break
     }
+    case AppLanguage.gl: {
+      mod = await import(`./locales/gl/messages`)
+      break
+    }
     case AppLanguage.hi: {
       mod = await import(`./locales/hi/messages`)
       break