1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-12-19 10:55:53 +01:00
upscayl/renderer/components/settings-tab/language-switcher.tsx

41 lines
1.0 KiB
TypeScript
Raw Normal View History

import { localeAtom, translationAtom } from "@/atoms/translations-atom";
import { useAtomValue, useSetAtom } from "jotai";
const locales = {
en: "English",
ru: "Русский",
ja: "日本語",
2024-09-05 03:06:35 +02:00
zh: "简体中文",
es: "Español",
fr: "Français",
};
const LanguageSwitcher = () => {
const setLocale = useSetAtom(localeAtom);
const t = useAtomValue(translationAtom);
return (
<div>
<div className="flex flex-col gap-2">
<p className="text-sm font-medium">{t("SETTINGS.LANGUAGE.TITLE")}</p>
<select
data-choose-theme
className="select select-primary"
onChange={(e) => setLocale(e.target.value as keyof typeof locales)}
>
{Object.entries(locales).map((entry) => {
const [locale, label] = entry;
return (
<option value={locale} key={locale}>
{label.toLocaleUpperCase()}
</option>
);
})}
</select>
</div>
</div>
);
};
export default LanguageSwitcher;