mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-07 14:08:47 +00:00
67 lines
1.4 KiB
TypeScript
67 lines
1.4 KiB
TypeScript
"use client"
|
|
|
|
import {
|
|
useTranslation,
|
|
type Translations,
|
|
} from "@/components/language-selector"
|
|
import { Button } from "@/styles/radix-nova/ui-rtl/button"
|
|
import {
|
|
Tooltip,
|
|
TooltipContent,
|
|
TooltipTrigger,
|
|
} from "@/styles/radix-nova/ui-rtl/tooltip"
|
|
|
|
const translations: Translations = {
|
|
en: {
|
|
dir: "ltr",
|
|
values: {
|
|
content: "Add to library",
|
|
left: "Left",
|
|
top: "Top",
|
|
bottom: "Bottom",
|
|
right: "Right",
|
|
},
|
|
},
|
|
ar: {
|
|
dir: "rtl",
|
|
values: {
|
|
content: "إضافة إلى المكتبة",
|
|
left: "يسار",
|
|
top: "أعلى",
|
|
bottom: "أسفل",
|
|
right: "يمين",
|
|
},
|
|
},
|
|
he: {
|
|
dir: "rtl",
|
|
values: {
|
|
content: "הוסף לספרייה",
|
|
left: "שמאל",
|
|
top: "למעלה",
|
|
bottom: "למטה",
|
|
right: "ימין",
|
|
},
|
|
},
|
|
}
|
|
|
|
const sides = ["left", "top", "bottom", "right"] as const
|
|
|
|
export function TooltipRtl() {
|
|
const { t } = useTranslation(translations, "ar")
|
|
|
|
return (
|
|
<div className="flex flex-wrap gap-2">
|
|
{sides.map((side) => (
|
|
<Tooltip key={side}>
|
|
<TooltipTrigger asChild>
|
|
<Button variant="outline" className="w-fit capitalize">
|
|
{t[side]}
|
|
</Button>
|
|
</TooltipTrigger>
|
|
<TooltipContent side={side}>{t.content}</TooltipContent>
|
|
</Tooltip>
|
|
))}
|
|
</div>
|
|
)
|
|
}
|