We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 656299a commit 4ce57ddCopy full SHA for 4ce57dd
src/i18n/i18n.ts
@@ -3,6 +3,8 @@ import { initReactI18next } from "react-i18next";
3
import esTranslation from "./es";
4
import frTranslation from "./fr";
5
import itTranslations from "./it";
6
+import deTranslations from "./de";
7
+
8
const resources: Resource = {
9
en: {
10
translation: {},
@@ -16,6 +18,9 @@ const resources: Resource = {
16
18
it: {
17
19
translation: itTranslations,
20
},
21
+ de: {
22
+ translation: deTranslations,
23
+ },
24
};
25
26
i18.use(initReactI18next).init({
0 commit comments