mirror of
https://github.com/upscayl/upscayl.git
synced 2024-12-19 02:45:54 +01:00
37 lines
952 B
TypeScript
37 lines
952 B
TypeScript
|
import { localeAtom, translationAtom } from "@/atoms/translations-atom";
|
||
|
import { useAtomValue, useSetAtom } from "jotai";
|
||
|
|
||
|
const locales = {
|
||
|
en: "English",
|
||
|
ru: "Русский",
|
||
|
};
|
||
|
|
||
|
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")}</p>
|
||
|
<select
|
||
|
data-choose-theme
|
||
|
className="select select-primary"
|
||
|
onChange={(e) => setLocale(e.target.value as any)}
|
||
|
>
|
||
|
{Object.entries(locales).map((entry) => {
|
||
|
const [locale, label] = entry;
|
||
|
return (
|
||
|
<option value={locale} key={locale}>
|
||
|
{label.toLocaleUpperCase()}
|
||
|
</option>
|
||
|
);
|
||
|
})}
|
||
|
</select>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default LanguageSwitcher;
|