]> Untitled Git - lemmy.git/blobdiff - ui/src/i18next.ts
routes.api: fix get_captcha endpoint (#1135)
[lemmy.git] / ui / src / i18next.ts
index 065d63c84b1d94444b8932622b234f39342ff005..39f7d65ccc08ef481847287aae7a522bb910651e 100644 (file)
@@ -1,6 +1,8 @@
 import i18next from 'i18next';
 import { getLanguage } from './utils';
 import { en } from './translations/en';
+import { el } from './translations/el';
+import { eu } from './translations/eu';
 import { eo } from './translations/eo';
 import { es } from './translations/es';
 import { de } from './translations/de';
@@ -11,12 +13,32 @@ import { zh } from './translations/zh';
 import { nl } from './translations/nl';
 import { it } from './translations/it';
 import { fi } from './translations/fi';
+import { ca } from './translations/ca';
+import { fa } from './translations/fa';
+import { hi } from './translations/hi';
+import { pl } from './translations/pl';
+import { pt_BR } from './translations/pt_BR';
+import { ja } from './translations/ja';
+import { ka } from './translations/ka';
+import { gl } from './translations/gl';
+import { tr } from './translations/tr';
+import { hu } from './translations/hu';
+import { uk } from './translations/uk';
+import { sq } from './translations/sq';
+import { km } from './translations/km';
+import { ga } from './translations/ga';
+import { sr_Latn } from './translations/sr_Latn';
+import { ko } from './translations/ko';
 
 // https://github.com/nimbusec-oss/inferno-i18next/blob/master/tests/T.test.js#L66
 const resources = {
   en,
+  el,
+  eu,
   eo,
   es,
+  ka,
+  hi,
   de,
   zh,
   fr,
@@ -25,9 +47,25 @@ const resources = {
   nl,
   it,
   fi,
+  ca,
+  fa,
+  pl,
+  pt_BR,
+  ja,
+  gl,
+  tr,
+  hu,
+  uk,
+  sq,
+  km,
+  ga,
+  sr_Latn,
+  ko,
 };
 
-const format = (value: any, format: any, lng: any) => format === 'uppercase' ? value.toUpperCase() : value;
+function format(value: any, format: any, lng: any): any {
+  return format === 'uppercase' ? value.toUpperCase() : value;
+}
 
 i18next.init({
   debug: false,