X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=resources%2Fjs%2Fi18n%2Findex.js;h=63803cd4c31b7dd3f6570085951ca22f85aa1539;hb=1326baff1f13e252d9c60cae03680f70a87a17e9;hp=ee366fe689cbc120fe84e584a0b9bb7339f7f4c8;hpb=f642f1eda2a68ad5e09b71ccdae1499bc9d31e4f;p=alttp.git diff --git a/resources/js/i18n/index.js b/resources/js/i18n/index.js index ee366fe..63803cd 100644 --- a/resources/js/i18n/index.js +++ b/resources/js/i18n/index.js @@ -5,11 +5,13 @@ import numeral from 'numeral'; import { initReactI18next } from 'react-i18next'; import de from './de'; +import en from './en'; import 'numeral/locales/de'; import 'moment/locale/de'; const supportedLocales = [ 'de', + 'en', ]; const resolveLocale = (loc) => { @@ -38,6 +40,7 @@ i18n }, resources: { de, + en, }, supportedLngs: supportedLocales, });