2021-03-01 20:33:57 +00:00
|
|
|
import i18next, { i18nTyped } from "i18next";
|
2021-02-22 02:39:04 +00:00
|
|
|
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";
|
2021-03-01 21:20:08 +00:00
|
|
|
import { th } from "./translations/th";
|
2021-04-02 14:14:33 +00:00
|
|
|
import { bg } from "./translations/bg";
|
2020-09-06 16:15:25 +00:00
|
|
|
|
|
|
|
// https://github.com/nimbusec-oss/inferno-i18next/blob/master/tests/T.test.js#L66
|
|
|
|
const resources = {
|
|
|
|
en,
|
|
|
|
el,
|
|
|
|
eu,
|
|
|
|
eo,
|
|
|
|
es,
|
|
|
|
ka,
|
|
|
|
hi,
|
|
|
|
de,
|
2020-09-22 15:23:22 +00:00
|
|
|
zh,
|
2020-09-06 16:15:25 +00:00
|
|
|
fr,
|
|
|
|
sv,
|
|
|
|
ru,
|
|
|
|
nl,
|
|
|
|
it,
|
|
|
|
fi,
|
|
|
|
ca,
|
|
|
|
fa,
|
|
|
|
pl,
|
|
|
|
pt_BR,
|
|
|
|
ja,
|
|
|
|
gl,
|
|
|
|
tr,
|
|
|
|
hu,
|
|
|
|
uk,
|
|
|
|
sq,
|
|
|
|
km,
|
|
|
|
ga,
|
|
|
|
sr_Latn,
|
2020-12-09 15:15:53 +00:00
|
|
|
da,
|
2021-01-15 21:57:45 +00:00
|
|
|
oc,
|
2021-02-05 18:13:39 +00:00
|
|
|
hr,
|
2021-03-01 21:20:08 +00:00
|
|
|
th,
|
2021-04-02 14:14:33 +00:00
|
|
|
bg,
|
2020-09-06 16:15:25 +00:00
|
|
|
};
|
|
|
|
|
2020-10-24 17:12:13 +00:00
|
|
|
function format(value: any, format: any): any {
|
2021-02-22 02:39:04 +00:00
|
|
|
return format === "uppercase" ? value.toUpperCase() : value;
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
i18next.init({
|
|
|
|
debug: false,
|
|
|
|
// load: 'languageOnly',
|
|
|
|
|
|
|
|
// initImmediate: false,
|
|
|
|
lng: getLanguage(),
|
2021-02-22 02:39:04 +00:00
|
|
|
fallbackLng: "en",
|
2020-09-06 16:15:25 +00:00
|
|
|
resources,
|
|
|
|
interpolation: { format },
|
|
|
|
});
|
|
|
|
|
2021-03-01 20:33:57 +00:00
|
|
|
export const i18n = i18next as i18nTyped;
|
|
|
|
|
|
|
|
export { resources };
|