Skip to content

Commit

Permalink
Merge pull request #76 from VampireChicken12/dev
Browse files Browse the repository at this point in the history
Add "de-DE" locale to availableLocales array.
  • Loading branch information
VampireChicken12 authored Nov 12, 2023
2 parents 1fb9533 + b649e52 commit 7fb2a71
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 7fb2a71

Please sign in to comment.