"use client" import * as React from "react" import { Search } from "lucide-react" import { useTranslation, type Translations, } from "@/components/language-selector" import { Field, FieldDescription, FieldGroup, FieldLabel, } from "@/styles/base-nova/ui-rtl/field" import { InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, } from "@/styles/base-nova/ui-rtl/input-group" import { Spinner } from "@/styles/base-nova/ui-rtl/spinner" const translations: Translations = { en: { dir: "ltr", values: { placeholder: "Search...", results: "12 results", searching: "Searching...", saving: "Saving...", savingChanges: "Saving changes...", textareaLabel: "Textarea", textareaPlaceholder: "Write a comment...", characterCount: "0/280", post: "Post", textareaDescription: "Footer positioned below the textarea.", }, }, ar: { dir: "rtl", values: { placeholder: "بحث...", results: "١٢ نتيجة", searching: "جاري البحث...", saving: "جاري الحفظ...", savingChanges: "جاري حفظ التغييرات...", textareaLabel: "منطقة النص", textareaPlaceholder: "اكتب تعليقًا...", characterCount: "٠/٢٨٠", post: "نشر", textareaDescription: "تذييل موضع أسفل منطقة النص.", }, }, he: { dir: "rtl", values: { placeholder: "חפש...", results: "12 תוצאות", searching: "מחפש...", saving: "שומר...", savingChanges: "שומר שינויים...", textareaLabel: "אזור טקסט", textareaPlaceholder: "כתוב תגובה...", characterCount: "0/280", post: "פרסם", textareaDescription: "כותרת תחתונה ממוקמת מתחת לאזור הטקסט.", }, }, } export function InputGroupRtl() { const { dir, t } = useTranslation(translations, "ar") return (
{t.results} {t.saving} {t.textareaLabel} {t.characterCount} {t.post} {t.textareaDescription}
) }