Browse Source

fix webview

master
mortezaei 8 hours ago
parent
commit
0c9208fee9
  1. 5
      src/app/globals.css
  2. 7
      src/app/layout.tsx
  3. 84
      src/components/Componentes/navigation-button.tsx
  4. 19
      src/components/Componentes/page-header.tsx
  5. 7
      src/translations/locales/ar.json
  6. 7
      src/translations/locales/az.json
  7. 7
      src/translations/locales/bn.json
  8. 7
      src/translations/locales/da.json
  9. 7
      src/translations/locales/de.json
  10. 7
      src/translations/locales/en.json
  11. 7
      src/translations/locales/es.json
  12. 7
      src/translations/locales/fa.json
  13. 7
      src/translations/locales/fr.json
  14. 7
      src/translations/locales/gu.json
  15. 7
      src/translations/locales/ha.json
  16. 13
      src/translations/locales/he.json
  17. 7
      src/translations/locales/hi.json
  18. 13
      src/translations/locales/id.json
  19. 13
      src/translations/locales/ks.json
  20. 13
      src/translations/locales/pt.json
  21. 7
      src/translations/locales/ru.json
  22. 13
      src/translations/locales/sw.json
  23. 13
      src/translations/locales/tg.json
  24. 13
      src/translations/locales/tr.json
  25. 13
      src/translations/locales/ul.json
  26. 13
      src/translations/locales/ur.json
  27. 13
      src/translations/locales/uz.json
  28. 7
      src/translations/locales/zh.json

5
src/app/globals.css

@ -1,6 +1,7 @@
@import "tailwindcss";
:root {
--background: #F5F5F5;
--default-page-background-image: url("/assets/images/home-Checkups-List.svg");
--safe-top: env(safe-area-inset-top, 0px);
--safe-bottom: env(safe-area-inset-bottom, 0px);
@ -144,7 +145,9 @@
font-size: 16px;
}
html {
html,
body {
background-color: #F5F5F5;
width: 100%;
height: 100%;
overflow: hidden;

7
src/app/layout.tsx

@ -61,7 +61,7 @@ export const viewport: Viewport = {
maximumScale: 1,
userScalable: false,
viewportFit: "cover",
themeColor: "#ffffff",
themeColor: "#F5F5F5",
interactiveWidget: "overlays-content",
};
@ -92,6 +92,11 @@ export default async function RootLayout({
suppressHydrationWarning
>
<head>
<style
dangerouslySetInnerHTML={{
__html: `html, body { background-color: #F5F5F5 !important; }`,
}}
/>
<link rel="preconnect" href="https://habibapp.com" />
<link rel="dns-prefetch" href="https://habibapp.com" />
<script

84
src/components/Componentes/navigation-button.tsx

@ -60,6 +60,8 @@ export function NavigationButton({
const isRtl = locale === "fa" || locale === "ar" || locale === "ur";
const [isHelpOpen, setIsHelpOpen] = useState(false);
const [isSupportOpen, setIsSupportOpen] = useState(false);
const [isRulesOpen, setIsRulesOpen] = useState(false);
const [isAboutOpen, setIsAboutOpen] = useState(false);
const [isSubscriptionInfoOpen, setIsSubscriptionInfoOpen] = useState(false);
const [isSubscriptionLoading, setIsSubscriptionLoading] = useState(false);
const [isDropdownOpen, setIsDropdownOpen] = useState(false);
@ -173,10 +175,6 @@ export function NavigationButton({
const canAccessSupport = hasSupportAccess(profile);
if (icon === "subscription" && isFemale) {
return <div className="size-10" />;
}
if (icon === "support" && !canAccessSupport) {
return <div className="size-10" />;
}
@ -306,44 +304,50 @@ export function NavigationButton({
</button>
{isDropdownOpen && (
<div className="absolute right-0 mt-2 w-48 origin-top-right rounded-2xl bg-white shadow-[0_12px_30px_rgba(0,0,0,0.15)] ring-1 ring-black/5 focus:outline-hidden z-50 overflow-hidden divide-y divide-gray-100 animate-in fade-in slide-in-from-top-2 duration-200">
<div className="py-1">
{canAccessSupport && (
<div
data-slot="flutter-popup-menu"
className="absolute rtl:left-0 rtl:right-auto ltr:right-0 ltr:left-auto top-full mt-2 w-52 origin-top rounded-[18px] bg-white border border-[#E5E7EB]/80 shadow-[0_12px_36px_rgba(0,0,0,0.12),0_4px_12px_rgba(0,0,0,0.06)] ring-1 ring-black/5 focus:outline-hidden z-50 overflow-hidden p-1.5 animate-in fade-in zoom-in-95 duration-150"
>
<button
type="button"
onClick={() => {
setIsDropdownOpen(false);
setIsRulesOpen(true);
}}
className="flex w-full items-center gap-3 px-3.5 py-2.5 rounded-[12px] text-start font-medium text-[13.5px] text-[#1F2937] hover:bg-[#F3F4F6] active:bg-[#E5E7EB] transition-colors cursor-pointer border-0 bg-transparent"
>
<Ic name="document" className="size-5 shrink-0 text-[#4B5563]" />
<span className="truncate">
{t["Rules"] || t["terms & conditions"] || "Rules"}
</span>
</button>
<button
type="button"
onClick={() => {
setIsDropdownOpen(false);
setIsSupportOpen(true);
}}
className="flex w-full items-center gap-3 px-4 py-3 text-start text-sm font-semibold text-gray-700 hover:bg-gray-50 cursor-pointer border-0 bg-transparent"
className="flex w-full items-center gap-3 px-3.5 py-2.5 rounded-[12px] text-start font-medium text-[13.5px] text-[#1F2937] hover:bg-[#F3F4F6] active:bg-[#E5E7EB] transition-colors cursor-pointer border-0 bg-transparent"
>
<UiIcon
name="support"
className="size-5 shrink-0 text-gray-700"
/>
<span>{t["Support"]}</span>
<UiIcon name="support" className="size-5 shrink-0 text-[#4B5563]" />
<span className="truncate">{t["Support"] || "Support"}</span>
</button>
)}
<button
type="button"
onClick={() => {
setIsDropdownOpen(false);
handleOpenSubscriptionModal();
setIsAboutOpen(true);
}}
className="flex w-full items-center gap-3 px-4 py-3 text-start text-sm font-semibold text-gray-700 hover:bg-gray-50 cursor-pointer border-0 bg-transparent"
className="flex w-full items-center gap-3 px-3.5 py-2.5 rounded-[12px] text-start font-medium text-[13.5px] text-[#1F2937] hover:bg-[#F3F4F6] active:bg-[#E5E7EB] transition-colors cursor-pointer border-0 bg-transparent"
>
<Image
src="/assets/images/diamond-color.svg"
alt=""
width={20}
height={20}
className="size-5 shrink-0"
/>
<span>{t["Subscription"]}</span>
<Ic name="info" className="size-5 shrink-0 text-[#4B5563]" />
<span className="truncate">
{t["About Marriage"] || "About Marriage"}
</span>
</button>
</div>
</div>
)}
<SupportSheet
@ -351,6 +355,36 @@ export function NavigationButton({
onClose={() => setIsSupportOpen(false)}
/>
{isRulesOpen && (
<InformationSheet
icon="document"
title={t["Rules"] || t["terms & conditions"] || "Rules"}
description={
t[
"Dear user, while welcoming you to the Habib Marij application, please read the following rules and regulations carefully before using the services of this platform. Your registration and use of this application constitutes full acceptance of these rules."
] ||
"All introduction and communication processes in the Habib Marriage platform are conducted with the awareness and direct supervision of families, honesty in information, and mutual respect."
}
buttons={t["Got it"] || t["Back"] || "Back"}
onClose={() => setIsRulesOpen(false)}
/>
)}
{isAboutOpen && (
<InformationSheet
icon="info"
title={t["About Marriage"] || "About Marriage"}
description={
t[
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus."
] ||
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus."
}
buttons={t["Got it"] || t["Back"] || "Back"}
onClose={() => setIsAboutOpen(false)}
/>
)}
{renderSubscriptionModal()}
</div>
);

19
src/components/Componentes/page-header.tsx

@ -89,32 +89,25 @@ export function PageHeader({
{isCustomRightButton ? (
<NavigationButton
icon={iconFromProp || "support"}
icon={iconFromProp || "more"}
profile={profile}
{...(iconFromProp === "support" ? { iconLabel: t["Support"] } : {})}
{...rightButtonRest}
/>
) : isMale ? (
<div className="flex items-center gap-2">
) : (
<div className="flex items-center gap-2 shrink-0">
<NavigationButton
icon="subscription"
profile={profile}
iconLabel={t["Subscription Status"] || "Subscription"}
iconLabel={(t as Record<string, string>)["Subscription Status"] || (t as Record<string, string>)["Subscription"] || "Subscription"}
/>
<NavigationButton
icon="support"
icon="more"
profile={profile}
iconLabel={t["Support"]}
iconLabel={(t as Record<string, string>)["More"] || "More"}
{...rightButtonRest}
/>
</div>
) : (
<NavigationButton
icon="support"
profile={profile}
iconLabel={t["Support"]}
{...rightButtonRest}
/>
)}
</div>
</header>

7
src/translations/locales/ar.json

@ -1,4 +1,5 @@
{
"1": "1",
"2": "2",
"70": "70",
"175": "175",
@ -1497,7 +1498,6 @@
"Moderate": "متوسط",
"High": "مرتفع",
"Very High": "مرتفع جداً",
"1": "1",
"1 child": "1 طفل",
"1 to 3 years": "من 1 إلى 3 سنوات",
"160 to 170 cm": "160 إلى 170 سم",
@ -1962,5 +1962,8 @@
"Yes, they live with me permanently": "نعم، إنهم يعيشون معي بشكل دائم",
"Yes, they live with me temporarily or periodically": "نعم، يعيشون معي بشكل مؤقت أو دوري",
"e.g. Computer Science": "على سبيل المثال علوم الكمبيوتر",
"Marriage Profile Questionnaire": "استبيان الملف الشخصي للزواج"
"Marriage Profile Questionnaire": "استبيان الملف الشخصي للزواج",
"Rules": "القوانين واللوائح",
"About Marriage": "حول زواج حبيب",
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus.": "منصة زواج حبيب هي منصة آمنة وأخلاقية وذكية لتسهيل الزواج الدائم مع الحفاظ الكامل على الخصوصية وإشراف العائلات."
}

7
src/translations/locales/az.json

@ -1,4 +1,5 @@
{
"1": "1",
"2": "2",
"70": "70",
"175": "175",
@ -1497,7 +1498,6 @@
"Moderate": "Moderate",
"High": "High",
"Very High": "Very High",
"1": "1",
"1 child": "1 uşaq",
"1 to 3 years": "1 ildən 3 ilə qədər",
"160 to 170 cm": "160 ilə 170 sm arasında",
@ -1962,5 +1962,8 @@
"Yes, they live with me permanently": "Bəli, onlar daimi mənimlə yaşayırlar",
"Yes, they live with me temporarily or periodically": "Bəli, müvəqqəti və ya vaxtaşırı mənimlə yaşayırlar",
"e.g. Computer Science": "məs. Kompüter Elmləri",
"Marriage Profile Questionnaire": "Evlilik profili sorğusu"
"Marriage Profile Questionnaire": "Evlilik profili sorğusu",
"Rules": "Qaydalar",
"About Marriage": "Həbib Evlilik Haqqında",
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus.": "Həbib Evlilik platforması məxfiliyin tam qorunması və ailələrin nəzarəti ilə daimi nikahı asanlaşdıran təhlükəsiz və ağıllı bir platformadır."
}

7
src/translations/locales/bn.json

@ -1,4 +1,5 @@
{
"1": "1",
"2": "2",
"70": "70",
"175": "175",
@ -1497,7 +1498,6 @@
"Moderate": "Moderate",
"High": "High",
"Very High": "Very High",
"1": "1",
"1 child": "1 সন্তান",
"1 to 3 years": "1 থেকে 3 বছর",
"160 to 170 cm": "160 থেকে 170 সেমি",
@ -1962,5 +1962,8 @@
"Yes, they live with me permanently": "হ্যাঁ, তারা আমার সাথে স্থায়ীভাবে বসবাস করে",
"Yes, they live with me temporarily or periodically": "হ্যাঁ, তারা অস্থায়ীভাবে বা পর্যায়ক্রমে আমার সাথে থাকে",
"e.g. Computer Science": "যেমন কম্পিউটার সায়েন্স",
"Marriage Profile Questionnaire": "বিবাহ প্রোফাইল প্রশ্নাবলী"
"Marriage Profile Questionnaire": "বিবাহ প্রোফাইল প্রশ্নাবলী",
"Rules": "নিয়মাবলী",
"About Marriage": "হাবিব বিবাহ সম্পর্কে",
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus.": "হাবিব বিবাহ প্ল্যাটফর্ম সম্পূর্ণ গোপনীয়তা এবং পরিবারের তত্ত্বাবধানে স্থায়ী বিবাহ সহজতর করার জন্য একটি নিরাপদ ও স্মার্ট প্ল্যাটফর্ম।"
}

7
src/translations/locales/da.json

@ -1,4 +1,5 @@
{
"1": "1",
"2": "2",
"70": "70",
"175": "175",
@ -1497,7 +1498,6 @@
"Moderate": "Moderate",
"High": "High",
"Very High": "Very High",
"1": "1",
"1 child": "1 child",
"1 to 3 years": "1 to 3 years",
"160 to 170 cm": "160 to 170 cm",
@ -1962,5 +1962,8 @@
"Yes, they live with me permanently": "Yes, they live with me permanently",
"Yes, they live with me temporarily or periodically": "Yes, they live with me temporarily or periodically",
"e.g. Computer Science": "e.g. Computer Science",
"Marriage Profile Questionnaire": "Spørgeskema om ægteskabsprofil"
"Marriage Profile Questionnaire": "Spørgeskema om ægteskabsprofil",
"Rules": "Regler",
"About Marriage": "Om Habib Ægteskab",
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus.": "Habib Marriage-platformen er en sikker, etisk og intelligent platform til at lette permanent ægteskab under fuld respekt for privatlivets fred og familiens tilsyn."
}

7
src/translations/locales/de.json

@ -1,4 +1,5 @@
{
"1": "1",
"2": "2",
"70": "70",
"175": "175",
@ -1497,7 +1498,6 @@
"Moderate": "Mittel",
"High": "Hoch",
"Very High": "Sehr hoch",
"1": "1",
"1 child": "1 child",
"1 to 3 years": "1 to 3 years",
"160 to 170 cm": "160 to 170 cm",
@ -1962,5 +1962,8 @@
"Yes, they live with me permanently": "Yes, they live with me permanently",
"Yes, they live with me temporarily or periodically": "Yes, they live with me temporarily or periodically",
"e.g. Computer Science": "e.g. Computer Science",
"Marriage Profile Questionnaire": "Fragebogen zum Heiratsprofil"
"Marriage Profile Questionnaire": "Fragebogen zum Heiratsprofil",
"Rules": "Regeln",
"About Marriage": "Über Habib Heirat",
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus.": "Die Habib-Heiratsplattform ist eine sichere, ethische und intelligente Plattform zur Erleichterung dauerhafter Ehen unter vollständiger Wahrung der Privatsphäre und Aufsicht der Familien."
}

7
src/translations/locales/en.json

@ -1,4 +1,5 @@
{
"1": "1",
"2": "2",
"70": "70",
"175": "175",
@ -1473,7 +1474,6 @@
"Moderate": "Moderate",
"High": "High",
"Very High": "Very High",
"1": "1",
"1 child": "1 child",
"1 to 3 years": "1 to 3 years",
"160 to 170 cm": "160 to 170 cm",
@ -1938,5 +1938,8 @@
"Yes, they live with me permanently": "Yes, they live with me permanently",
"Yes, they live with me temporarily or periodically": "Yes, they live with me temporarily or periodically",
"e.g. Computer Science": "e.g. Computer Science",
"Marriage Profile Questionnaire": "Marriage Profile Questionnaire"
"Marriage Profile Questionnaire": "Marriage Profile Questionnaire",
"Rules": "Rules",
"About Marriage": "About Marriage",
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus.": "Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus."
}

7
src/translations/locales/es.json

@ -1,4 +1,5 @@
{
"1": "1",
"2": "2",
"70": "70",
"175": "175",
@ -1497,7 +1498,6 @@
"Moderate": "Moderado",
"High": "Alto",
"Very High": "Muy alto",
"1": "1",
"1 child": "1 child",
"1 to 3 years": "1 to 3 years",
"160 to 170 cm": "160 to 170 cm",
@ -1962,5 +1962,8 @@
"Yes, they live with me permanently": "Yes, they live with me permanently",
"Yes, they live with me temporarily or periodically": "Yes, they live with me temporarily or periodically",
"e.g. Computer Science": "e.g. Computer Science",
"Marriage Profile Questionnaire": "Cuestionario de perfil de matrimonio"
"Marriage Profile Questionnaire": "Cuestionario de perfil de matrimonio",
"Rules": "Reglas",
"About Marriage": "Acerca del Matrimonio Habib",
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus.": "La plataforma de Matrimonio Habib es una plataforma segura, ética e inteligente para facilitar el matrimonio permanente con total privacidad y consenso familiar."
}

7
src/translations/locales/fa.json

@ -1,4 +1,5 @@
{
"1": "۱",
"2": "۲",
"70": "۷۰",
"175": "۱۷۵",
@ -1493,7 +1494,6 @@
"Moderate": "متوسط",
"High": "زیاد",
"Very High": "خیلی زیاد",
"1": "۱",
"1 child": "۱ فرزند",
"1 to 3 years": "۱ تا ۳ سال",
"160 to 170 cm": "۱۶۰ تا ۱۷۰",
@ -1958,5 +1958,8 @@
"Yes, they live with me permanently": "بله، به‌صورت دائم با من زندگی می‌کنند",
"Yes, they live with me temporarily or periodically": "بله، به‌صورت موقت یا دوره‌ای با من زندگی می‌کنند",
"e.g. Computer Science": "مثال: مهندسی کامپیوتر",
"Marriage Profile Questionnaire": "پرسشنامه پروفایل ازدواج"
"Marriage Profile Questionnaire": "پرسشنامه پروفایل ازدواج",
"Rules": "قوانین و مقررات",
"About Marriage": "درباره ازدواج حبیب",
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus.": "سامانه ازدواج حبیب بستری امن، اخلاق‌مدار و هوشمند جهت تسهیل امر ازدواج دائم با حفظ کامل حریم خصوصی و نظارت خانواده‌ها می‌باشد."
}

7
src/translations/locales/fr.json

@ -1,4 +1,5 @@
{
"1": "1",
"2": "2",
"70": "70",
"175": "175",
@ -1497,7 +1498,6 @@
"Moderate": "Modéré",
"High": "Élevé",
"Very High": "Très élevé",
"1": "1",
"1 child": "1 child",
"1 to 3 years": "1 to 3 years",
"160 to 170 cm": "160 to 170 cm",
@ -1962,5 +1962,8 @@
"Yes, they live with me permanently": "Yes, they live with me permanently",
"Yes, they live with me temporarily or periodically": "Yes, they live with me temporarily or periodically",
"e.g. Computer Science": "e.g. Computer Science",
"Marriage Profile Questionnaire": "Questionnaire de profil de mariage"
"Marriage Profile Questionnaire": "Questionnaire de profil de mariage",
"Rules": "Règles",
"About Marriage": "À propos du Mariage Habib",
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus.": "La plateforme de Mariage Habib est une plateforme sécurisée, éthique et intelligente facilitant le mariage permanent dans le respect total de la vie privée et sous la supervision des familles."
}

7
src/translations/locales/gu.json

@ -1,4 +1,5 @@
{
"1": "1",
"2": "2",
"70": "70",
"175": "175",
@ -1499,7 +1500,6 @@
"Moderate": "Moderate",
"High": "High",
"Very High": "Very High",
"1": "1",
"1 child": "1 child",
"1 to 3 years": "1 to 3 years",
"160 to 170 cm": "160 to 170 cm",
@ -1964,5 +1964,8 @@
"Yes, they live with me permanently": "Yes, they live with me permanently",
"Yes, they live with me temporarily or periodically": "Yes, they live with me temporarily or periodically",
"e.g. Computer Science": "e.g. Computer Science",
"Marriage Profile Questionnaire": "લગ્ન પ્રોફાઇલ પ્રશ્નાવલી"
"Marriage Profile Questionnaire": "લગ્ન પ્રોફાઇલ પ્રશ્નાવલી",
"Rules": "નિયમો",
"About Marriage": "હબીબ લગ્ન વિશે",
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus.": "હબીબ લગ્ન પ્લેટફોર્મ એ સંપૂર્ણ ગોપનીયતા અને પરિવારોની દેખરેખ સાથે કાયમી લગ્નને સરળ બનાવવા માટેનું એક સુરક્ષિત અને બુદ્ધિશાળી પ્લેટફોર્મ છે."
}

7
src/translations/locales/ha.json

@ -1,4 +1,5 @@
{
"1": "1",
"2": "2",
"70": "70",
"175": "175",
@ -1497,7 +1498,6 @@
"Moderate": "Moderate",
"High": "High",
"Very High": "Very High",
"1": "1",
"1 child": "1 child",
"1 to 3 years": "1 to 3 years",
"160 to 170 cm": "160 to 170 cm",
@ -1962,5 +1962,8 @@
"Yes, they live with me permanently": "Yes, they live with me permanently",
"Yes, they live with me temporarily or periodically": "Yes, they live with me temporarily or periodically",
"e.g. Computer Science": "e.g. Computer Science",
"Marriage Profile Questionnaire": "Tambayoyin Bayanin Aure"
"Marriage Profile Questionnaire": "Tambayoyin Bayanin Aure",
"Rules": "Dokoki",
"About Marriage": "Game da Auren Habib",
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus.": "Dandalin Auren Habib dandamali ne mai aminci da fasaha don sauƙaƙe auren dindindin tare da cikakken sirri da sa idon iyali."
}

13
src/translations/locales/he.json

@ -1,4 +1,8 @@
{
"1": "1",
"2": "2",
"70": "70",
"175": "175",
"Contact Received": "התקבל קשר",
"No Contact Received": "לא התקבל קשר",
"No contact has been made with you in any way or by any party.": "לא נוצר עמך קשר בשום דרך או על ידי שום גורם.",
@ -786,9 +790,6 @@
"Ukrainian": "אוקראינית",
"Urdu": "Urdu",
"Urdu Roman (Latin)": "אורדו רומאית (לטינית)",
"2": "2",
"70": "70",
"175": "175",
"### Family Religious Atmosphere Options * **Religious and Strictly Observant:** This specifies a family highly dedicated to performing all **obligatory duties**, strictly maintaining **religious boundaries** (such as Mahram rules), and upholding **religious rituals and teachings** across all aspects of life. * **Religious (Observant of Obligations):** This indicates a family committed to core **religious duties** (such as prayer and fasting) and **Islamic ethics**, living within the standard frameworks of a religious society. * **Traditional (Respectful of Religious Values):** This describes a family that holds devotion to moral values and **respects religion**, but may not strictly execute every specific **religious law** or obligation. * **Non-religious / Secular:** This represents a family where **religious rituals and frameworks** do not significantly influence their daily **lifestyle, relationships, or decisions**, despite holding a general respect for religion.": "### אפשרויות אווירה דתית במשפחה * **דתיים ומקפידים מאוד:** משפחה המסורה לקיום כל **חובות הדת**, שמירה קפדנית על **גבולות ההלכה** וקיום **מצוות ומנהגים** בכל תחומי החיים. * **דתיים (שומרי חובות בסיסיות):** משפחה המחויבת ל**חובות הדת העיקריות** (כגון תפילה וצום) ול**מוסר וערכים**, במסגרת חברה מסורתית-דתית. * **מסורתיים (מכבדי ערכי הדת):** משפחה הדבקה בערכי מוסר ו**מכבדת את הדת**, אך אינה מקפידה על כל פרט הלכתי. * **חילוניים / שאינם דתיים:** משפחה שבה **המסגרת הדתית** אינה מהווה גורם מרכזי ב**אורח החיים, בקשרים או בהחלטות**.",
"(Complete Required Forms)": "(מילוי טפסים נדרשים)",
"(after 2 days)": "(לאחר יומיים)",
@ -1762,7 +1763,6 @@
"Moderate": "Moderate",
"High": "High",
"Very High": "Very High",
"1": "1",
"1 child": "1 child",
"1 to 3 years": "1 to 3 years",
"160 to 170 cm": "160 to 170 cm",
@ -2227,5 +2227,8 @@
"Yes, they live with me permanently": "Yes, they live with me permanently",
"Yes, they live with me temporarily or periodically": "Yes, they live with me temporarily or periodically",
"e.g. Computer Science": "e.g. Computer Science",
"Marriage Profile Questionnaire": "שאלון פרופיל נישואין"
"Marriage Profile Questionnaire": "שאלון פרופיל נישואין",
"Rules": "כללים",
"About Marriage": "אודות נישואי חביב",
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus.": "פלטפורמת הנישואין חביב היא פלטפורמה מאובטחת, מוסרית וחכמה להקלת נישואין קבועים תוך שמירה מלאה על פרטיות והסכמת המשפחות."
}

7
src/translations/locales/hi.json

@ -1,4 +1,5 @@
{
"1": "1",
"2": "2",
"70": "70",
"175": "175",
@ -1497,7 +1498,6 @@
"Moderate": "Moderate",
"High": "High",
"Very High": "Very High",
"1": "1",
"1 child": "1 child",
"1 to 3 years": "1 to 3 years",
"160 to 170 cm": "160 to 170 cm",
@ -1962,5 +1962,8 @@
"Yes, they live with me permanently": "Yes, they live with me permanently",
"Yes, they live with me temporarily or periodically": "Yes, they live with me temporarily or periodically",
"e.g. Computer Science": "e.g. Computer Science",
"Marriage Profile Questionnaire": "विवाह प्रोफ़ाइल प्रश्नावली"
"Marriage Profile Questionnaire": "विवाह प्रोफ़ाइल प्रश्नावली",
"Rules": "नियम",
"About Marriage": "हबीब विवाह के बारे में",
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus.": "हबीब विवाह मंच पूर्ण गोपनीयता और परिवारों की देखरेख के साथ स्थायी विवाह को सुगम बनाने के लिए एक सुरक्षित और बुद्धिमान मंच है।"
}

13
src/translations/locales/id.json

@ -1,4 +1,8 @@
{
"1": "1",
"2": "2",
"70": "70",
"175": "175",
"Contact Received": "Kontak Diterima",
"No Contact Received": "Tidak Ada Kontak Diterima",
"No contact has been made with you in any way or by any party.": "Tidak ada kontak yang dilakukan dengan Anda dengan cara apa pun atau oleh pihak mana pun.",
@ -786,9 +790,6 @@
"Ukrainian": "Ukraina",
"Urdu": "Urdu",
"Urdu Roman (Latin)": "Urdu Latin",
"2": "2",
"70": "70",
"175": "175",
"### Family Religious Atmosphere Options * **Religious and Strictly Observant:** This specifies a family highly dedicated to performing all **obligatory duties**, strictly maintaining **religious boundaries** (such as Mahram rules), and upholding **religious rituals and teachings** across all aspects of life. * **Religious (Observant of Obligations):** This indicates a family committed to core **religious duties** (such as prayer and fasting) and **Islamic ethics**, living within the standard frameworks of a religious society. * **Traditional (Respectful of Religious Values):** This describes a family that holds devotion to moral values and **respects religion**, but may not strictly execute every specific **religious law** or obligation. * **Non-religious / Secular:** This represents a family where **religious rituals and frameworks** do not significantly influence their daily **lifestyle, relationships, or decisions**, despite holding a general respect for religion.": "### Pilihan Suasana Religius Keluarga * **Sangat Religius dan Taat:** Keluarga yang berdedikasi tinggi dalam menjalankan semua **kewajiban agama**, menjaga **batasan syariah** (seperti mahram), dan menjunjung tinggi **ajaran agama** dalam seluruh aspek kehidupan. * **Religius (Taat Kewajiban):** Keluarga yang berkomitmen pada **kewajiban utama agama** (seperti salat dan puasa) serta **akhlak Islami**. * **Tradisional (Menghormati Nilai Agama):** Keluarga yang memegang nilai-nilai moral dan **menghormati agama**, namun tidak secara ketat menjalankan setiap aturan fikih. * **Non-religius / Sekuler:** Keluarga di mana **kerangka agama** tidak secara signifikan memengaruhi **gaya hidup atau keputusan** sehari-hari.",
"(Complete Required Forms)": "(Lengkapi Formulir yang Diperlukan)",
"(after 2 days)": "(setelah 2 hari)",
@ -1762,7 +1763,6 @@
"Moderate": "Moderate",
"High": "High",
"Very High": "Very High",
"1": "1",
"1 child": "1 child",
"1 to 3 years": "1 to 3 years",
"160 to 170 cm": "160 to 170 cm",
@ -2227,5 +2227,8 @@
"Yes, they live with me permanently": "Yes, they live with me permanently",
"Yes, they live with me temporarily or periodically": "Yes, they live with me temporarily or periodically",
"e.g. Computer Science": "e.g. Computer Science",
"Marriage Profile Questionnaire": "Kuesioner Profil Pernikahan"
"Marriage Profile Questionnaire": "Kuesioner Profil Pernikahan",
"Rules": "Aturan",
"About Marriage": "Tentang Pernikahan Habib",
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus.": "Platform Pernikahan Habib adalah platform yang aman, etis, dan cerdas untuk memfasilitasi pernikahan permanen dengan menjaga privasi penuh dan persetujuan keluarga."
}

13
src/translations/locales/ks.json

@ -1,4 +1,8 @@
{
"1": "1",
"2": "2",
"70": "70",
"175": "175",
"Contact Received": "رابطہ موصول ہوا",
"No Contact Received": "نہ رابطہ موصول ہوا",
"No contact has been made with you in any way or by any party.": "تُہہ سٟتؠ چھُ نہٕ کٲنٛسہِ ہِنٛدِ طرفہٕ کجِہ تہِ طریقہٕ رابطہ کرنہٕ آمُت۔",
@ -786,9 +790,6 @@
"Ukrainian": "یوکرینی",
"Urdu": "Urdu",
"Urdu Roman (Latin)": "اردو رومن (لاطینی)",
"2": "2",
"70": "70",
"175": "175",
"### Family Religious Atmosphere Options * **Religious and Strictly Observant:** This specifies a family highly dedicated to performing all **obligatory duties**, strictly maintaining **religious boundaries** (such as Mahram rules), and upholding **religious rituals and teachings** across all aspects of life. * **Religious (Observant of Obligations):** This indicates a family committed to core **religious duties** (such as prayer and fasting) and **Islamic ethics**, living within the standard frameworks of a religious society. * **Traditional (Respectful of Religious Values):** This describes a family that holds devotion to moral values and **respects religion**, but may not strictly execute every specific **religious law** or obligation. * **Non-religious / Secular:** This represents a family where **religious rituals and frameworks** do not significantly influence their daily **lifestyle, relationships, or decisions**, despite holding a general respect for religion.": "### خاندانی مذہبی ماحولک اختیارات * **واریاہ مذہبی تہٕ سخت پابند:** اکھ یژھ خاندان یُس سارنی **واجباتن** پؠٹھ عمل کران چھُ، **محرم و نامحرم کین حدودن** ہنٛز سختی سان پاسداری کران چھُ، تہٕ **دینی تعلیمات** پؠٹھ چلان چھُ۔ * **مذہبی (واجباتک پابند):** اکھ یژھ خاندان یُس **دینی فرائضن** تہٕ **اسلامی اخلاقیاتن** پؠٹھ کاربند چھُ۔ * **روایتی (دینی اقدارک احترام کرن وول):** اکھ یژھ خاندان یُس **دینچ عزت** کران چھُ۔ * **غیر مذہبی / سیکولر:** اکھ یژھ خاندان یتھ مَنٛز **مذہبی رسومات** روزمرہ کین **فیصلن** پؠٹھ اثر انداز گژھان چھِ نہٕ۔",
"(Complete Required Forms)": "(لازمی فارم پر کٔریو)",
"(after 2 days)": "(۲ دوہن پتہ)",
@ -1762,7 +1763,6 @@
"Moderate": "Moderate",
"High": "High",
"Very High": "Very High",
"1": "1",
"1 child": "1 child",
"1 to 3 years": "1 to 3 years",
"160 to 170 cm": "160 to 170 cm",
@ -2227,5 +2227,8 @@
"Yes, they live with me permanently": "Yes, they live with me permanently",
"Yes, they live with me temporarily or periodically": "Yes, they live with me temporarily or periodically",
"e.g. Computer Science": "e.g. Computer Science",
"Marriage Profile Questionnaire": "نکاح پروفائل سوالنامہ"
"Marriage Profile Questionnaire": "نکاح پروفائل سوالنامہ",
"Rules": "قوٲعد",
"About Marriage": "حبیب خاندر بارس منز",
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus.": "حبیب خاندر پلیٹ فارم چھ اکھ محفوظ تہ ذہین پلیٹ فارم یس خاندانس آسان بناوان چھ۔"
}

13
src/translations/locales/pt.json

@ -1,4 +1,8 @@
{
"1": "1",
"2": "2",
"70": "70",
"175": "175",
"Contact Received": "Contato recebido",
"No Contact Received": "Nenhum contato recebido",
"No contact has been made with you in any way or by any party.": "Nenhum contato foi feito com você de forma alguma ou por qualquer parte.",
@ -786,9 +790,6 @@
"Ukrainian": "Ucraniano",
"Urdu": "Urdu",
"Urdu Roman (Latin)": "Urdu Latino",
"2": "2",
"70": "70",
"175": "175",
"### Family Religious Atmosphere Options * **Religious and Strictly Observant:** This specifies a family highly dedicated to performing all **obligatory duties**, strictly maintaining **religious boundaries** (such as Mahram rules), and upholding **religious rituals and teachings** across all aspects of life. * **Religious (Observant of Obligations):** This indicates a family committed to core **religious duties** (such as prayer and fasting) and **Islamic ethics**, living within the standard frameworks of a religious society. * **Traditional (Respectful of Religious Values):** This describes a family that holds devotion to moral values and **respects religion**, but may not strictly execute every specific **religious law** or obligation. * **Non-religious / Secular:** This represents a family where **religious rituals and frameworks** do not significantly influence their daily **lifestyle, relationships, or decisions**, despite holding a general respect for religion.": "### Opções de Ambiente Religioso Familiar * **Religioso e Estritamente Observante:** Família altamente dedicada ao cumprimento de todos os **deveres obrigatórios**, mantendo rigorosamente os **limites religiosos** e vivenciando os **ensinamentos religiosos**. * **Religioso (Praticante das Obrigações):** Família comprometida com os **deveres essenciais** e a **ética islâmica**. * **Tradicional (Respeita Valores Religiosos):** Família apegada aos valores morais e que **respeita a religião**. * **Não Religioso / Secular:** Família onde os **preceitos religiosos** não influenciam de forma determinante o **estilo de vida ou decisões** cotidianas.",
"(Complete Required Forms)": "(Preencher Formulários Obrigatórios)",
"(after 2 days)": "(após 2 dias)",
@ -1762,7 +1763,6 @@
"Moderate": "Moderate",
"High": "High",
"Very High": "Very High",
"1": "1",
"1 child": "1 child",
"1 to 3 years": "1 to 3 years",
"160 to 170 cm": "160 to 170 cm",
@ -2227,5 +2227,8 @@
"Yes, they live with me permanently": "Yes, they live with me permanently",
"Yes, they live with me temporarily or periodically": "Yes, they live with me temporarily or periodically",
"e.g. Computer Science": "e.g. Computer Science",
"Marriage Profile Questionnaire": "Questionário de perfil de casamento"
"Marriage Profile Questionnaire": "Questionário de perfil de casamento",
"Rules": "Regras",
"About Marriage": "Sobre o Casamento Habib",
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus.": "A plataforma de Casamento Habib é uma plataforma segura, ética e inteligente para facilitar o casamento permanente com total privacidade e supervisão familiar."
}

7
src/translations/locales/ru.json

@ -1,4 +1,5 @@
{
"1": "1",
"2": "2",
"70": "70",
"175": "175",
@ -1750,7 +1751,6 @@
"No, I do not have ongoing responsibilities": "No, I do not have ongoing responsibilities",
"State your job title, specialization, or industry field.": "State your job title, specialization, or industry field.",
"Medium / Tan": "Medium / Tan",
"1": "1",
"Aims to understand everyday style for matching expectations.": "Aims to understand everyday style for matching expectations.",
"Physical appearance and attraction are extremely important": "Physical appearance and attraction are extremely important",
"Select hobbies": "Select hobbies",
@ -1958,5 +1958,8 @@
"Doctorate or above preferred": "Doctorate or above preferred",
"What is your current communication status with your ex-spouse / child's other parent?": "What is your current communication status with your ex-spouse / child's other parent?",
"Very important; religious upbringing must be integral from early childhood": "Very important; religious upbringing must be integral from early childhood",
"Marriage Profile Questionnaire": "Анкета профиля брака"
"Marriage Profile Questionnaire": "Анкета профиля брака",
"Rules": "Правила",
"About Marriage": "О браке Хабиб",
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus.": "Платформа брака Хабиб — это безопасная, этичная и умная платформа для содействия постоянному браку при полном сохранении конфиденциальности и согласии семей."
}

13
src/translations/locales/sw.json

@ -1,4 +1,8 @@
{
"1": "1",
"2": "2",
"70": "70",
"175": "175",
"Contact Received": "Mawasiliano yamepokelewa",
"No Contact Received": "Hakuna mawasiliano yaliyopokelewa",
"No contact has been made with you in any way or by any party.": "Hakuna mawasiliano yoyote yaliyofanywa nawe kwa njia yoyote au na upande wowote.",
@ -786,9 +790,6 @@
"Ukrainian": "Kiukraine",
"Urdu": "Urdu",
"Urdu Roman (Latin)": "Kiurdu cha Kilatini",
"2": "2",
"70": "70",
"175": "175",
"### Family Religious Atmosphere Options * **Religious and Strictly Observant:** This specifies a family highly dedicated to performing all **obligatory duties**, strictly maintaining **religious boundaries** (such as Mahram rules), and upholding **religious rituals and teachings** across all aspects of life. * **Religious (Observant of Obligations):** This indicates a family committed to core **religious duties** (such as prayer and fasting) and **Islamic ethics**, living within the standard frameworks of a religious society. * **Traditional (Respectful of Religious Values):** This describes a family that holds devotion to moral values and **respects religion**, but may not strictly execute every specific **religious law** or obligation. * **Non-religious / Secular:** This represents a family where **religious rituals and frameworks** do not significantly influence their daily **lifestyle, relationships, or decisions**, despite holding a general respect for religion.": "### Chaguzi za Mazingira ya Kidini ya Familia * **Mshika Dini na Mzingatiaji Madhubuti:** Familia iliyojitolea sana kutekeleza **wajibu wote wa kidini**, kudumisha **mipaka ya kidini**, na kufuata **mafundisho ya kidini**. * **Mshika Dini (Mzingatiaji wa Faradhi):** Familia inayotimiza **wajibu wa kimsingi wa kidini** na **maadili ya Kiislamu**. * **Wa Jadi (Mwenye Kuheshimu Maadili ya Dini):** Familia inayozingatia maadili mema na **kuheshimu dini**. * **Asiye na Dini / Wa Kawaida (Sekula):** Familia ambayo **misingi ya kidini** haiathiri maisha au maamuzi yao ya kila siku.",
"(Complete Required Forms)": "(Kamilisha Fomu Zinazohitajika)",
"(after 2 days)": "(baada ya siku 2)",
@ -2019,7 +2020,6 @@
"No, I do not have ongoing responsibilities": "No, I do not have ongoing responsibilities",
"State your job title, specialization, or industry field.": "State your job title, specialization, or industry field.",
"Medium / Tan": "Medium / Tan",
"1": "1",
"Aims to understand everyday style for matching expectations.": "Aims to understand everyday style for matching expectations.",
"Physical appearance and attraction are extremely important": "Physical appearance and attraction are extremely important",
"Select hobbies": "Select hobbies",
@ -2227,5 +2227,8 @@
"Doctorate or above preferred": "Doctorate or above preferred",
"What is your current communication status with your ex-spouse / child's other parent?": "What is your current communication status with your ex-spouse / child's other parent?",
"Very important; religious upbringing must be integral from early childhood": "Very important; religious upbringing must be integral from early childhood",
"Marriage Profile Questionnaire": "Hojaji ya Wasifu wa Ndoa"
"Marriage Profile Questionnaire": "Hojaji ya Wasifu wa Ndoa",
"Rules": "Kanuni",
"About Marriage": "Kuhusu Ndoa ya Habib",
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus.": "Jukwaa la Ndoa ya Habib ni jukwaa salama na la busara linalowezesha ndoa ya kudumu huku likihakikisha faragha kamili na idhini ya familia."
}

13
src/translations/locales/tg.json

@ -1,4 +1,8 @@
{
"1": "1",
"2": "2",
"70": "70",
"175": "175",
"Contact Received": "Тамос гирифта шуд",
"No Contact Received": "Тамос гирифта нашуд",
"No contact has been made with you in any way or by any party.": "Бо шумо ба ҳеҷ ваҷҳ ва аз ҷониби ягон тараф тамос гирифта нашудааст.",
@ -786,9 +790,6 @@
"Ukrainian": "Украинӣ",
"Urdu": "Urdu",
"Urdu Roman (Latin)": "Урду (лотинии лотинӣ)",
"2": "2",
"70": "70",
"175": "175",
"### Family Religious Atmosphere Options * **Religious and Strictly Observant:** This specifies a family highly dedicated to performing all **obligatory duties**, strictly maintaining **religious boundaries** (such as Mahram rules), and upholding **religious rituals and teachings** across all aspects of life. * **Religious (Observant of Obligations):** This indicates a family committed to core **religious duties** (such as prayer and fasting) and **Islamic ethics**, living within the standard frameworks of a religious society. * **Traditional (Respectful of Religious Values):** This describes a family that holds devotion to moral values and **respects religion**, but may not strictly execute every specific **religious law** or obligation. * **Non-religious / Secular:** This represents a family where **religious rituals and frameworks** do not significantly influence their daily **lifestyle, relationships, or decisions**, despite holding a general respect for religion.": "### Вариантҳои фазои динии оила * **Хеле диндор ва пойбанди комил:** Оилае, ки ба ҳамаи **воҷибот** амал карда, **ҳудуди маҳраму номаҳрамро** риоя мекунад ва **таълимоти диниро** дар тамоми бахшҳои зиндагӣ пайравӣ менамояд. * **Диндор (пойбанди воҷибот):** Оилае, ки ба **фароизи аслӣ** (намоз, рӯза) ва **ахлоқи исломӣ** пойбанд аст. * **Суннатӣ (эҳтиромкунандаи арзишҳои динӣ):** Оилае, ки ба арзишҳои ахлоқӣ ва **дину суннатҳо** эҳтиром мегузорад. * **Ғайридинӣ / Дунявӣ (Секуляр):** Оилае, ки **аҳкоми динӣ** дар рафтори ҳаррӯза ва **қарорҳояшон** нақши муҳим намебозад.",
"(Complete Required Forms)": "(Пур кардани шаклҳои ҳатмӣ)",
"(after 2 days)": "(пас аз 2 рӯз)",
@ -2019,7 +2020,6 @@
"No, I do not have ongoing responsibilities": "No, I do not have ongoing responsibilities",
"State your job title, specialization, or industry field.": "State your job title, specialization, or industry field.",
"Medium / Tan": "Medium / Tan",
"1": "1",
"Aims to understand everyday style for matching expectations.": "Aims to understand everyday style for matching expectations.",
"Physical appearance and attraction are extremely important": "Physical appearance and attraction are extremely important",
"Select hobbies": "Select hobbies",
@ -2227,5 +2227,8 @@
"Doctorate or above preferred": "Doctorate or above preferred",
"What is your current communication status with your ex-spouse / child's other parent?": "What is your current communication status with your ex-spouse / child's other parent?",
"Very important; religious upbringing must be integral from early childhood": "Very important; religious upbringing must be integral from early childhood",
"Marriage Profile Questionnaire": "Саволномаи профили издивоҷ"
"Marriage Profile Questionnaire": "Саволномаи профили издивоҷ",
"Rules": "Қоидаҳо",
"About Marriage": "Дар бораи издивоҷи Ҳабиб",
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus.": "Платформаи издивоҷи Ҳабиб як платформаи амн ва ҳушманд барои осон кардани издивоҷи доимӣ бо ҳифзи махфият ва назорати оилаҳо мебошад."
}

13
src/translations/locales/tr.json

@ -1,4 +1,8 @@
{
"1": "1",
"2": "2",
"70": "70",
"175": "175",
"Contact Received": "İletişim alındı",
"No Contact Received": "İletişim alınmadı",
"No contact has been made with you in any way or by any party.": "Sizinle hiçbir şekilde veya hiçbir tarafça iletişime geçilmemiştir.",
@ -786,9 +790,6 @@
"Ukrainian": "Ukraynaca",
"Urdu": "Urdu",
"Urdu Roman (Latin)": "Latin Harfli Urduca",
"2": "2",
"70": "70",
"175": "175",
"### Family Religious Atmosphere Options * **Religious and Strictly Observant:** This specifies a family highly dedicated to performing all **obligatory duties**, strictly maintaining **religious boundaries** (such as Mahram rules), and upholding **religious rituals and teachings** across all aspects of life. * **Religious (Observant of Obligations):** This indicates a family committed to core **religious duties** (such as prayer and fasting) and **Islamic ethics**, living within the standard frameworks of a religious society. * **Traditional (Respectful of Religious Values):** This describes a family that holds devotion to moral values and **respects religion**, but may not strictly execute every specific **religious law** or obligation. * **Non-religious / Secular:** This represents a family where **religious rituals and frameworks** do not significantly influence their daily **lifestyle, relationships, or decisions**, despite holding a general respect for religion.": "### Aile Dini Atmosferi Seçenekleri * **Çok Dindar ve Tam Anlamıyla Bağlı:** Tüm **dini vecibeleri** yerine getiren, **mahremiyet sınırlarını** titizlikle koruyan ve **dini öğretileri** yaşayan bir aile. * **Dindar (Farzları Yerine Getiren):** Temel **dini görevlerine** ve **İslami ahlaka** bağlı bir aile. * **Geleneksel (Dini Değerlere Saygılı):** Manevi değerlere bağlı ve **dine saygı duyan** bir aile. * **Dindar Olmayan / Seküler:** **Dini kuralların** günlük **yaşam tarzı veya kararlarında** belirleyici olmadığı bir aile.",
"(Complete Required Forms)": "(Zorunlu Formları Doldurun)",
"(after 2 days)": "(2 gün sonra)",
@ -2019,7 +2020,6 @@
"No, I do not have ongoing responsibilities": "No, I do not have ongoing responsibilities",
"State your job title, specialization, or industry field.": "State your job title, specialization, or industry field.",
"Medium / Tan": "Medium / Tan",
"1": "1",
"Aims to understand everyday style for matching expectations.": "Aims to understand everyday style for matching expectations.",
"Physical appearance and attraction are extremely important": "Physical appearance and attraction are extremely important",
"Select hobbies": "Select hobbies",
@ -2227,5 +2227,8 @@
"Doctorate or above preferred": "Doctorate or above preferred",
"What is your current communication status with your ex-spouse / child's other parent?": "What is your current communication status with your ex-spouse / child's other parent?",
"Very important; religious upbringing must be integral from early childhood": "Very important; religious upbringing must be integral from early childhood",
"Marriage Profile Questionnaire": "Evlilik Profili Anketi"
"Marriage Profile Questionnaire": "Evlilik Profili Anketi",
"Rules": "Kurallar",
"About Marriage": "Habib Evlilik Hakkında",
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus.": "Habib Evlilik platformu, tam gizlilik ve ailelerin gözetimi altında kalıcı evliliği kolaylaştıran güvenli, ahlaki ve akıllı bir platformdur."
}

13
src/translations/locales/ul.json

@ -1,4 +1,8 @@
{
"1": "1",
"2": "2",
"70": "70",
"175": "175",
"Contact Received": "Rabta mil gaya",
"No Contact Received": "Rabta nahi mila",
"No contact has been made with you in any way or by any party.": "Aap se kisi bhi tarah ya kisi bhi taraf se rabta nahi kiya gaya hai.",
@ -786,9 +790,6 @@
"Ukrainian": "Ukrainian",
"Urdu": "Urdu",
"Urdu Roman (Latin)": "Roman Urdu (Latin)",
"2": "2",
"70": "70",
"175": "175",
"### Family Religious Atmosphere Options * **Religious and Strictly Observant:** This specifies a family highly dedicated to performing all **obligatory duties**, strictly maintaining **religious boundaries** (such as Mahram rules), and upholding **religious rituals and teachings** across all aspects of life. * **Religious (Observant of Obligations):** This indicates a family committed to core **religious duties** (such as prayer and fasting) and **Islamic ethics**, living within the standard frameworks of a religious society. * **Traditional (Respectful of Religious Values):** This describes a family that holds devotion to moral values and **respects religion**, but may not strictly execute every specific **religious law** or obligation. * **Non-religious / Secular:** This represents a family where **religious rituals and frameworks** do not significantly influence their daily **lifestyle, relationships, or decisions**, despite holding a general respect for religion.": "### Khandani Mazhabi Mahaul ke Ikhtiyaraat * **Intihai Mazhabi aur Mukammal Paband:** Tamam **wajibaat** par sakhti se amal paira, **mehram-o-na-mehram ki hudood** ka paasdar aur zindagi mein **deeni taleemat** par amal karne wala khandan. * **Mazhabi (Wajibaat ka Paband):** Bunyadi **shar'i faraiz** aur **Islami akhlaqiat** ka paband khandan. * **Riwayati (Mazhabi Iqdaar ka Ehtram Karne Wala):** Akhlaqi aur **riwayati deeni iqdaar** ka ehtram karne wala khandan. * **Ghair Mazhabi / Secular:** Rozmarrah ke **tarz-e-zindagi aur faislon** mein deeni ahkam ko bunyadi ahmiyat na dene wala khandan.",
"(Complete Required Forms)": "(Laazmi Forms Mukammal Karein)",
"(after 2 days)": "(2 din baad)",
@ -2019,7 +2020,6 @@
"No, I do not have ongoing responsibilities": "No, I do not have ongoing responsibilities",
"State your job title, specialization, or industry field.": "State your job title, specialization, or industry field.",
"Medium / Tan": "Medium / Tan",
"1": "1",
"Aims to understand everyday style for matching expectations.": "Aims to understand everyday style for matching expectations.",
"Physical appearance and attraction are extremely important": "Physical appearance and attraction are extremely important",
"Select hobbies": "Select hobbies",
@ -2227,5 +2227,8 @@
"Doctorate or above preferred": "Doctorate or above preferred",
"What is your current communication status with your ex-spouse / child's other parent?": "What is your current communication status with your ex-spouse / child's other parent?",
"Very important; religious upbringing must be integral from early childhood": "Very important; religious upbringing must be integral from early childhood",
"Marriage Profile Questionnaire": "Nikoh profili soʻrovnomasi"
"Marriage Profile Questionnaire": "Nikoh profili soʻrovnomasi",
"Rules": "قائيدىلەر",
"About Marriage": "ھەبىب تويلىشىش ھەققىدە",
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus.": "ھەبىب تويلىشىش سۇپىسى مەخپىيەتلىك ۋە ئائىلىلەرنىڭ نازارىتى ئاستىدا دائىملىق توينى ئاسانلاشتۇرىدىغان بىخەتەر سۇپىدۇر."
}

13
src/translations/locales/ur.json

@ -1,4 +1,8 @@
{
"1": "1",
"2": "2",
"70": "70",
"175": "175",
"Contact Received": "رابطہ موصول ہوا",
"No Contact Received": "کوئی رابطہ موصول نہیں ہوا",
"No contact has been made with you in any way or by any party.": "آپ سے کسی بھی طرح یا کسی بھی فریق کی طرف سے رابطہ نہیں کیا گیا ہے۔",
@ -786,9 +790,6 @@
"Ukrainian": "یوکرینی",
"Urdu": "Urdu",
"Urdu Roman (Latin)": "رومن اردو (لاطینی)",
"2": "2",
"70": "70",
"175": "175",
"### Family Religious Atmosphere Options * **Religious and Strictly Observant:** This specifies a family highly dedicated to performing all **obligatory duties**, strictly maintaining **religious boundaries** (such as Mahram rules), and upholding **religious rituals and teachings** across all aspects of life. * **Religious (Observant of Obligations):** This indicates a family committed to core **religious duties** (such as prayer and fasting) and **Islamic ethics**, living within the standard frameworks of a religious society. * **Traditional (Respectful of Religious Values):** This describes a family that holds devotion to moral values and **respects religion**, but may not strictly execute every specific **religious law** or obligation. * **Non-religious / Secular:** This represents a family where **religious rituals and frameworks** do not significantly influence their daily **lifestyle, relationships, or decisions**, despite holding a general respect for religion.": "### خاندانی مذہبی ماحول کے اختیارات * **انتہائی مذہبی اور مکمل پابند:** تمام **واجبات** پر سختی سے عمل پیرا، **محرم و نامحرم کی حدود** کا پاسدار اور زندگی میں **دینی تعلیمات** پر عمل کرنے والا خاندان۔ * **مذہبی (واجبات کا پابند):** بنیادی **شرعی فرائض** اور **اسلامی اخلاقیات** کا پابند خاندان۔ * **روایتی (مذہبی اقدار کا احترام کرنے والا):** اخلاقی اور **روایتی دینی اقدار** کا احترام کرنے والا خاندان۔ * **غیر مذہبی / سیکولر:** روزمرہ کے **طرز زندگی اور فیصلوں** میں دینی احکام کو بنیادی اہمیت نہ دینے والا خاندان۔",
"(Complete Required Forms)": "(لازمی فارم مکمل کریں)",
"(after 2 days)": "(2 دن بعد)",
@ -2019,7 +2020,6 @@
"No, I do not have ongoing responsibilities": "No, I do not have ongoing responsibilities",
"State your job title, specialization, or industry field.": "State your job title, specialization, or industry field.",
"Medium / Tan": "Medium / Tan",
"1": "1",
"Aims to understand everyday style for matching expectations.": "Aims to understand everyday style for matching expectations.",
"Physical appearance and attraction are extremely important": "Physical appearance and attraction are extremely important",
"Select hobbies": "Select hobbies",
@ -2227,5 +2227,8 @@
"Doctorate or above preferred": "Doctorate or above preferred",
"What is your current communication status with your ex-spouse / child's other parent?": "What is your current communication status with your ex-spouse / child's other parent?",
"Very important; religious upbringing must be integral from early childhood": "Very important; religious upbringing must be integral from early childhood",
"Marriage Profile Questionnaire": "شادی کے پروفائل کا سوالنامہ"
"Marriage Profile Questionnaire": "شادی کے پروفائل کا سوالنامہ",
"Rules": "قوانین",
"About Marriage": "حبیب شادی کے بارے میں",
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus.": "حبیب شادی پلیٹ فارم مکمل پرائیویسی اور خاندانوں کی نگرانی کے ساتھ مستقل شادی کو آسان بنانے کے لیے ایک محفوظ اور ہوشمند پلیٹ فارم ہے۔"
}

13
src/translations/locales/uz.json

@ -1,4 +1,8 @@
{
"1": "1",
"2": "2",
"70": "70",
"175": "175",
"Contact Received": "Aloqa qabul qilindi",
"No Contact Received": "Aloqa qabul qilinmadi",
"No contact has been made with you in any way or by any party.": "Siz bilan hech qanday tarzda yoki biron bir tomonlama aloqa o'rnatilmagan.",
@ -786,9 +790,6 @@
"Ukrainian": "Ukraincha",
"Urdu": "Urdu",
"Urdu Roman (Latin)": "Urdu (Lotin yozuvida)",
"2": "2",
"70": "70",
"175": "175",
"### Family Religious Atmosphere Options * **Religious and Strictly Observant:** This specifies a family highly dedicated to performing all **obligatory duties**, strictly maintaining **religious boundaries** (such as Mahram rules), and upholding **religious rituals and teachings** across all aspects of life. * **Religious (Observant of Obligations):** This indicates a family committed to core **religious duties** (such as prayer and fasting) and **Islamic ethics**, living within the standard frameworks of a religious society. * **Traditional (Respectful of Religious Values):** This describes a family that holds devotion to moral values and **respects religion**, but may not strictly execute every specific **religious law** or obligation. * **Non-religious / Secular:** This represents a family where **religious rituals and frameworks** do not significantly influence their daily **lifestyle, relationships, or decisions**, despite holding a general respect for religion.": "### Oila diniy muhiti variantlari * **Juda dindor va to'liq sodiq:** Barcha **vojibotlarni** bajaradigan, **mahram-nomahram chegaralariga** qat'iy rioya qiladigan va hayotda **diniy ko'rsatmalarga** amal qiladigan oila. * **Dindor (Farzlarni bajaruvchi):** Asosiy **shariat farzlari** (namoz, ro'za) va **islomiy axloqqa** sodiq oila. * **An'anaviy (Diniy qadriyatlarni hurmat qiluvchi):** Axloqiy va **an'anaviy qadriyatlarni** hurmat qiladigan oila. * **Dindor bo'lmagan / Dunyoviy:** Kundalik **hayot tarzi va qarorlarida** diniy ko'rsatmalar asosiy o'rin tutmaydigan oila.",
"(Complete Required Forms)": "(Majburiy shakllarni to'ldiring)",
"(after 2 days)": "(2 kundan keyin)",
@ -2019,7 +2020,6 @@
"No, I do not have ongoing responsibilities": "No, I do not have ongoing responsibilities",
"State your job title, specialization, or industry field.": "State your job title, specialization, or industry field.",
"Medium / Tan": "Medium / Tan",
"1": "1",
"Aims to understand everyday style for matching expectations.": "Aims to understand everyday style for matching expectations.",
"Physical appearance and attraction are extremely important": "Physical appearance and attraction are extremely important",
"Select hobbies": "Select hobbies",
@ -2227,5 +2227,8 @@
"Doctorate or above preferred": "Doctorate or above preferred",
"What is your current communication status with your ex-spouse / child's other parent?": "What is your current communication status with your ex-spouse / child's other parent?",
"Very important; religious upbringing must be integral from early childhood": "Very important; religious upbringing must be integral from early childhood",
"Marriage Profile Questionnaire": "Nikoh profili soʻrovnomasi"
"Marriage Profile Questionnaire": "Nikoh profili soʻrovnomasi",
"Rules": "Qoidalar",
"About Marriage": "Habib Nikoh Haqida",
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus.": "Habib Nikoh platformasi maxfiylikni to'liq saqlagan holda va oilalar nazorati ostida doimiy nikohni osonlashtiradigan xavfsiz va aqlli platformadir."
}

7
src/translations/locales/zh.json

@ -1,4 +1,5 @@
{
"1": "1",
"2": "2",
"70": "70",
"175": "175",
@ -1497,7 +1498,6 @@
"Moderate": "Moderate",
"High": "High",
"Very High": "Very High",
"1": "1",
"1 child": "1 名儿童",
"1 to 3 years": "1至3年",
"160 to 170 cm": "160 至 170 厘米",
@ -1962,5 +1962,8 @@
"Yes, they live with me permanently": "Yes, they live with me permanently",
"Yes, they live with me temporarily or periodically": "Yes, they live with me temporarily or periodically",
"e.g. Computer Science": "e.g. Computer Science",
"Marriage Profile Questionnaire": "婚姻资料问卷"
"Marriage Profile Questionnaire": "婚姻资料问卷",
"Rules": "规则",
"About Marriage": "关于哈比卜婚姻",
"Habib Marriage platform is a secure, ethical, and intelligent platform to facilitate permanent marriage while ensuring full privacy and family consensus.": "哈比卜婚姻平台是一个安全、合乎道德且智能的平台,旨在在完全保护隐私和家庭共识的前提下促进永久婚姻。"
}
Loading…
Cancel
Save