Add Dutch to the language list
This commit is contained in:
parent
cfcdaf4814
commit
ee713eb7f3
1 changed files with 3 additions and 0 deletions
|
@ -10,6 +10,7 @@ import de from "./translations/de.json";
|
||||||
import en from "./translations/en.json";
|
import en from "./translations/en.json";
|
||||||
import es from "./translations/es.json";
|
import es from "./translations/es.json";
|
||||||
import fr from "./translations/fr.json";
|
import fr from "./translations/fr.json";
|
||||||
|
import nl from "./translations/nl.json";
|
||||||
import ru from "./translations/ru.json";
|
import ru from "./translations/ru.json";
|
||||||
|
|
||||||
export const languages = {
|
export const languages = {
|
||||||
|
@ -17,6 +18,7 @@ export const languages = {
|
||||||
de: "Deutsch",
|
de: "Deutsch",
|
||||||
es: "Español",
|
es: "Español",
|
||||||
fr: "Français",
|
fr: "Français",
|
||||||
|
nl: "Nederlands",
|
||||||
ru: "Русский",
|
ru: "Русский",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -25,6 +27,7 @@ export const strings: Record<keyof typeof languages, Record<string, string>> = {
|
||||||
de,
|
de,
|
||||||
es,
|
es,
|
||||||
fr,
|
fr,
|
||||||
|
nl,
|
||||||
ru,
|
ru,
|
||||||
} as const;
|
} as const;
|
||||||
|
|
||||||
|
|
Reference in a new issue