]> Untitled Git - lemmy-ui.git/blobdiff - src/shared/i18next.ts
Running newer prettier.
[lemmy-ui.git] / src / shared / i18next.ts
index 193f57c1b2dd807737b932ba49afb8636399f08c..99289032e6a47dcb690052cf9d8c68e47862c486 100644 (file)
@@ -1,36 +1,36 @@
-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';
-import { fr } from './translations/fr';
-import { sv } from './translations/sv';
-import { ru } from './translations/ru';
-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 { da } from './translations/da';
-import { oc } from './translations/oc';
-import { hr } from './translations/hr';
+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";
+import { fr } from "./translations/fr";
+import { sv } from "./translations/sv";
+import { ru } from "./translations/ru";
+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 { da } from "./translations/da";
+import { oc } from "./translations/oc";
+import { hr } from "./translations/hr";
 
 // https://github.com/nimbusec-oss/inferno-i18next/blob/master/tests/T.test.js#L66
 const resources = {
@@ -68,7 +68,7 @@ const resources = {
 };
 
 function format(value: any, format: any): any {
-  return format === 'uppercase' ? value.toUpperCase() : value;
+  return format === "uppercase" ? value.toUpperCase() : value;
 }
 
 i18next.init({
@@ -77,7 +77,7 @@ i18next.init({
 
   // initImmediate: false,
   lng: getLanguage(),
-  fallbackLng: 'en',
+  fallbackLng: "en",
   resources,
   interpolation: { format },
 });