mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-23 20:55:47 +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
59 lines
1.3 KiB
TypeScript
59 lines
1.3 KiB
TypeScript
"use client"
|
|
|
|
import * as React from "react"
|
|
import {
|
|
Field,
|
|
FieldDescription,
|
|
FieldLabel,
|
|
} from "@/examples/base/ui-rtl/field"
|
|
import { Input } from "@/examples/base/ui-rtl/input"
|
|
|
|
import {
|
|
useTranslation,
|
|
type Translations,
|
|
} from "@/components/language-selector"
|
|
|
|
const translations: Translations = {
|
|
en: {
|
|
dir: "ltr",
|
|
values: {
|
|
apiKey: "API Key",
|
|
placeholder: "sk-...",
|
|
description: "Your API key is encrypted and stored securely.",
|
|
},
|
|
},
|
|
ar: {
|
|
dir: "rtl",
|
|
values: {
|
|
apiKey: "مفتاح API",
|
|
placeholder: "sk-...",
|
|
description: "مفتاح API الخاص بك مشفر ومخزن بأمان.",
|
|
},
|
|
},
|
|
he: {
|
|
dir: "rtl",
|
|
values: {
|
|
apiKey: "מפתח API",
|
|
placeholder: "sk-...",
|
|
description: "מפתח ה-API שלך מוצפן ונשמר בצורה מאובטחת.",
|
|
},
|
|
},
|
|
}
|
|
|
|
export function InputRtl() {
|
|
const { dir, t } = useTranslation(translations, "ar")
|
|
|
|
return (
|
|
<Field dir={dir}>
|
|
<FieldLabel htmlFor="input-rtl-api-key">{t.apiKey}</FieldLabel>
|
|
<Input
|
|
id="input-rtl-api-key"
|
|
type="password"
|
|
placeholder={t.placeholder}
|
|
dir={dir}
|
|
/>
|
|
<FieldDescription>{t.description}</FieldDescription>
|
|
</Field>
|
|
)
|
|
}
|