Skip to content

Commit

Permalink
Add "de-DE" locale to availableLocales array.
Browse files Browse the repository at this point in the history
  • Loading branch information
VampireChicken12 committed Nov 12, 2023
1 parent 1fb9533 commit b649e52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/i18n/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import i18next, { createInstance, type Resource } from "i18next";
import { waitForSpecificMessage } from "../utils/utilities";
export const availableLocales = ["en-US", "es-ES"] as const;
export const availableLocales = ["en-US", "es-ES", "de-DE"] as const;
export type AvailableLocales = (typeof availableLocales)[number];
export type i18nInstanceType = ReturnType<typeof createInstance>;

Expand Down

0 comments on commit b649e52

Please sign in to comment.