From b581c0d8966041bb68473c132a9b40c8b0bf732c Mon Sep 17 00:00:00 2001 From: schroda <50052685+schroda@users.noreply.github.com> Date: Sat, 11 May 2024 01:28:25 +0200 Subject: [PATCH] Add new languages to resources --- src/i18n/index.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/i18n/index.ts b/src/i18n/index.ts index fba29835..67232d27 100644 --- a/src/i18n/index.ts +++ b/src/i18n/index.ts @@ -14,9 +14,14 @@ import HttpBackend from 'i18next-http-backend'; /** * Keys have to match {@link ISOLanguages} codes, they're used for showing the language name in the dropdown in the {@link Settings}.
* In case there is no language code for the key in {@link ISOLanguages}, the corresponding language has to be added + * + * **IMPORTANT:** + * + * This is generated by the `i18n:gen-resources` script */ export const i18nResources = [ 'ar', + 'bn', 'de', 'en', 'es', @@ -27,6 +32,7 @@ export const i18nResources = [ 'ko', 'nb-NO', 'pt', + 'ru', 'sv', 'tr', 'uk',