import type { Locale } from "@/lib/locales";

export const demoCopy: Record<
  Locale,
  {
    cancel: string;
    close: string;
    date: string;
    description: string;
    descriptionPlaceholder: string;
    email: string;
    name: string;
    phone: string;
    privacy: string;
    sending: string;
    submit: string;
    subtitle: string;
    success: string;
    time: string;
    title: string;
  }
> = {
  en: {
    cancel: "Cancel",
    close: "Close demo form",
    date: "Demo Date",
    description: "Description",
    descriptionPlaceholder: "Tell us what you want to explore",
    email: "Email",
    name: "Full Name",
    phone: "Phone Number",
    privacy: "Your product is selected automatically from the page you are viewing.",
    sending: "Sending...",
    submit: "Book Demo",
    subtitle: "Choose a convenient time and our team will prepare a focused walkthrough.",
    success: "Your demo request is ready. Our team will contact you shortly.",
    time: "Demo Time",
    title: "Book a Product Demo",
  },
  hi: {
    cancel: "रद्द करें",
    close: "डेमो फॉर्म बंद करें",
    date: "डेमो की तारीख",
    description: "विवरण",
    descriptionPlaceholder: "बताएं कि आप क्या देखना चाहते हैं",
    email: "ईमेल",
    name: "पूरा नाम",
    phone: "फोन नंबर",
    privacy: "आप जिस पेज पर हैं उसके अनुसार प्रोडक्ट अपने आप चुना जाता है।",
    sending: "भेज रहे हैं...",
    submit: "डेमो बुक करें",
    subtitle: "सुविधाजनक समय चुनें। हमारी टीम आपके लिए सही वॉकथ्रू तैयार करेगी।",
    success: "आपका डेमो अनुरोध तैयार है। हमारी टीम जल्द संपर्क करेगी।",
    time: "डेमो का समय",
    title: "प्रोडक्ट डेमो बुक करें",
  },
  gu: {
    cancel: "રદ કરો",
    close: "ડેમો ફોર્મ બંધ કરો",
    date: "ડેમોની તારીખ",
    description: "વિગત",
    descriptionPlaceholder: "તમે શું જોવા માંગો છો તે જણાવો",
    email: "ઇમેઇલ",
    name: "પૂરું નામ",
    phone: "ફોન નંબર",
    privacy: "તમે જે પેજ પર છો તેના આધારે પ્રોડક્ટ આપમેળે પસંદ થાય છે.",
    sending: "મોકલી રહ્યા છીએ...",
    submit: "ડેમો બુક કરો",
    subtitle: "અનુકૂળ સમય પસંદ કરો. અમારી ટીમ યોગ્ય વોકથ્રૂ તૈયાર કરશે.",
    success: "તમારી ડેમો વિનંતી તૈયાર છે. અમારી ટીમ ટૂંક સમયમાં સંપર્ક કરશે.",
    time: "ડેમોનો સમય",
    title: "પ્રોડક્ટ ડેમો બુક કરો",
  },
};
