mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-24 21:25:55 +00:00
* feat: rtl * feat * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * feat: add sidebar * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * chore: changeset * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix
58 lines
1.4 KiB
TypeScript
58 lines
1.4 KiB
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
import {
|
|
Field,
|
|
FieldContent,
|
|
FieldDescription,
|
|
FieldLabel,
|
|
} from "@/examples/base/ui-rtl/field"
|
|
import { Switch } from "@/examples/base/ui-rtl/switch"
|
|
|
|
import {
|
|
useTranslation,
|
|
type Translations,
|
|
} from "@/components/language-selector"
|
|
|
|
const translations: Translations = {
|
|
en: {
|
|
dir: "ltr",
|
|
values: {
|
|
label: "Share across devices",
|
|
description:
|
|
"Focus is shared across devices, and turns off when you leave the app.",
|
|
},
|
|
},
|
|
ar: {
|
|
dir: "rtl",
|
|
values: {
|
|
label: "المشاركة عبر الأجهزة",
|
|
description:
|
|
"يتم مشاركة التركيز عبر الأجهزة، ويتم إيقاف تشغيله عند مغادرة التطبيق.",
|
|
},
|
|
},
|
|
he: {
|
|
dir: "rtl",
|
|
values: {
|
|
label: "שיתוף בין מכשירים",
|
|
description: "המיקוד משותף בין מכשירים, וכבה כשאתה עוזב את האפליקציה.",
|
|
},
|
|
},
|
|
}
|
|
|
|
export function SwitchRtl() {
|
|
const { dir, t } = useTranslation(translations, "ar")
|
|
|
|
return (
|
|
<Field orientation="horizontal" className="max-w-sm" dir={dir}>
|
|
<FieldContent>
|
|
<FieldLabel htmlFor="switch-focus-mode-rtl" dir={dir}>
|
|
{t.label}
|
|
</FieldLabel>
|
|
<FieldDescription dir={dir}>{t.description}</FieldDescription>
|
|
</FieldContent>
|
|
<Switch id="switch-focus-mode-rtl" dir={dir} />
|
|
</Field>
|
|
)
|
|
}
|