Add germanm support

This commit is contained in:
LukeGus
2025-10-07 15:37:28 -05:00
parent 3eb9b03bc7
commit 2cae7ae650
3 changed files with 7 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
import React from "react";
import { cn } from "@/lib/utils";
import { cn } from "@/lib/utils.ts";
import { useTranslation } from "react-i18next";
import {
Download,

View File

@@ -12,6 +12,7 @@ import { Globe } from "lucide-react";
const languages = [
{ code: "en", name: "English", nativeName: "English" },
{ code: "zh", name: "Chinese", nativeName: "中文" },
{ code: "de", name: "German", nativeName: "Deutsch" },
];
export function LanguageSwitcher() {