Add Dutch to the language list

This commit is contained in:
Nikita Karamov 2023-09-09 20:12:31 +02:00
parent cfcdaf4814
commit ee713eb7f3
No known key found for this signature in database
GPG key ID: 41D6F71EE78E77CD

View file

@ -10,6 +10,7 @@ import de from "./translations/de.json";
import en from "./translations/en.json";
import es from "./translations/es.json";
import fr from "./translations/fr.json";
import nl from "./translations/nl.json";
import ru from "./translations/ru.json";
export const languages = {
@ -17,6 +18,7 @@ export const languages = {
de: "Deutsch",
es: "Español",
fr: "Français",
nl: "Nederlands",
ru: "Русский",
};
@ -25,6 +27,7 @@ export const strings: Record<keyof typeof languages, Record<string, string>> = {
de,
es,
fr,
nl,
ru,
} as const;