Browse Source

Merge branch 'staging' of https://git.nwhco.ir/sina_sajjadi/marriage into staging

staging
Ali Alavi 6 days ago
parent
commit
d3b911bd8a
  1. 4
      src/app/questions-list/[slug]/question-detail-client.tsx
  2. 25
      src/components/Componentes/test-questions-flow.tsx
  3. 4
      src/translations/locales/ar.json
  4. 4
      src/translations/locales/az.json
  5. 4
      src/translations/locales/bn.json
  6. 8
      src/translations/locales/da.json
  7. 8
      src/translations/locales/de.json
  8. 7
      src/translations/locales/en.json
  9. 8
      src/translations/locales/es.json
  10. 4
      src/translations/locales/fa.json
  11. 8
      src/translations/locales/fr.json
  12. 8
      src/translations/locales/gu.json
  13. 8
      src/translations/locales/ha.json
  14. 4
      src/translations/locales/he.json
  15. 8
      src/translations/locales/hi.json
  16. 4
      src/translations/locales/id.json
  17. 4
      src/translations/locales/ks.json
  18. 4
      src/translations/locales/pt.json
  19. 6
      src/translations/locales/ru.json
  20. 4
      src/translations/locales/sw.json
  21. 4
      src/translations/locales/tg.json
  22. 4
      src/translations/locales/tr.json
  23. 4
      src/translations/locales/ul.json
  24. 4
      src/translations/locales/ur.json
  25. 4
      src/translations/locales/uz.json
  26. 8
      src/translations/locales/zh.json

4
src/app/questions-list/[slug]/question-detail-client.tsx

@ -745,6 +745,10 @@ export default function QuestionDetailClient({
questions={activeTestQuestions} questions={activeTestQuestions}
closeLabel={closeLabel} closeLabel={closeLabel}
informationLabel={informationLabel} informationLabel={informationLabel}
previousLabel={t["Previous"] || (locale === "fa" ? "قبلی" : "Previous")}
nextLabel={t["Next"] || (locale === "fa" ? "بعدی" : "Next")}
finishLabel={t["Finish"] || (locale === "fa" ? "پایان" : "Finish")}
stepsLabel={t["Steps"] || "Steps"}
onClose={() => { onClose={() => {
setIsTestStarted(false); setIsTestStarted(false);
handleExit(); handleExit();

25
src/components/Componentes/test-questions-flow.tsx

@ -32,6 +32,7 @@ type TestQuestionsFlowProps = {
closeLabel: string; closeLabel: string;
informationLabel: string; informationLabel: string;
previousLabel?: string; previousLabel?: string;
nextLabel?: string;
finishLabel?: string; finishLabel?: string;
stepsLabel?: string; stepsLabel?: string;
onFinish?: (answers: Record<number, string | number>) => void; onFinish?: (answers: Record<number, string | number>) => void;
@ -79,15 +80,23 @@ export default function TestQuestionsFlow({
questions, questions,
closeLabel, closeLabel,
informationLabel, informationLabel,
previousLabel = "Previous",
finishLabel = "Finish",
stepsLabel = "Steps",
previousLabel,
nextLabel,
finishLabel,
stepsLabel,
onFinish, onFinish,
onClose, onClose,
draftStorageKey, draftStorageKey,
}: TestQuestionsFlowProps) { }: TestQuestionsFlowProps) {
const router = useRouter(); const router = useRouter();
const { locale } = useI18n();
const { locale, dictionary: t } = useI18n();
const resolvedStepsLabel = stepsLabel ?? (t["Steps"] || "Steps");
const resolvedPreviousLabel =
previousLabel ?? (t["Previous"] || (locale === "fa" ? "قبلی" : "Previous"));
const resolvedNextLabel =
nextLabel ?? (t["Next"] || (locale === "fa" ? "بعدی" : "Next"));
const resolvedFinishLabel =
finishLabel ?? (t["Finish"] || (locale === "fa" ? "پایان" : "Finish"));
const [currentIndex, setCurrentIndex] = useState(0); const [currentIndex, setCurrentIndex] = useState(0);
const [answers, setAnswers] = useState<Record<number, string | number>>({}); const [answers, setAnswers] = useState<Record<number, string | number>>({});
const [isSubmitting, setIsSubmitting] = useState(false); const [isSubmitting, setIsSubmitting] = useState(false);
@ -261,7 +270,7 @@ export default function TestQuestionsFlow({
{/* Progress Section */} {/* Progress Section */}
<div className="shrink-0"> <div className="shrink-0">
<div className="flex items-center justify-between group-12 font-medium text-[#7A7A7A] mb-2"> <div className="flex items-center justify-between group-12 font-medium text-[#7A7A7A] mb-2">
<span>{stepsLabel}</span>
<span>{resolvedStepsLabel}</span>
<span> <span>
{currentIndex + 1} /{totalQuestions} {currentIndex + 1} /{totalQuestions}
</span> </span>
@ -384,7 +393,7 @@ export default function TestQuestionsFlow({
className="flex items-center gap-1.5 group-14 font-semibold text-[#4A4A4A] disabled:opacity-30 disabled:pointer-events-none transition-opacity py-2 px-1" className="flex items-center gap-1.5 group-14 font-semibold text-[#4A4A4A] disabled:opacity-30 disabled:pointer-events-none transition-opacity py-2 px-1"
> >
<Ic name="arrowLeft" className="size-5 rtl:rotate-180" /> <Ic name="arrowLeft" className="size-5 rtl:rotate-180" />
<span>{locale === "fa" ? "قبلی" : previousLabel}</span>
<span>{resolvedPreviousLabel}</span>
</button> </button>
{/* Next Button */} {/* Next Button */}
@ -397,7 +406,7 @@ export default function TestQuestionsFlow({
onClick={handleNext} onClick={handleNext}
className="flex items-center gap-1.5 group-14 font-semibold text-[#4A4A4A] transition-opacity py-2 px-1" className="flex items-center gap-1.5 group-14 font-semibold text-[#4A4A4A] transition-opacity py-2 px-1"
> >
<span>{locale === "fa" ? "بعدی" : "Next"}</span>
<span>{resolvedNextLabel}</span>
<Ic name="arrowRight" className="size-5 rtl:rotate-180" /> <Ic name="arrowRight" className="size-5 rtl:rotate-180" />
</button> </button>
)} )}
@ -414,7 +423,7 @@ export default function TestQuestionsFlow({
isLoading={isSubmitting} isLoading={isSubmitting}
onClick={handleFinishSubmit} onClick={handleFinishSubmit}
> >
{finishLabel}
{resolvedFinishLabel}
</Button> </Button>
) : null} ) : null}
</div> </div>

4
src/translations/locales/ar.json

@ -2099,5 +2099,7 @@
"This option will become active 48 hours after contact details are shared.": "سيكون هذا الخيار متاحاً بعد مرور 48 ساعة على مشاركة بيانات الاتصال.", "This option will become active 48 hours after contact details are shared.": "سيكون هذا الخيار متاحاً بعد مرور 48 ساعة على مشاركة بيانات الاتصال.",
"The 'Share Result' option will become active after 48 hours.": "سيكون خيار «تسجيل النتيجة» متاحاً بعد مرور 48 ساعة.", "The 'Share Result' option will become active after 48 hours.": "سيكون خيار «تسجيل النتيجة» متاحاً بعد مرور 48 ساعة.",
"Advisors": "المستشارون", "Advisors": "المستشارون",
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "إذا واجهت أي مشكلات، فلا تتردد في الاتصال بمستشارينا في WhatsApp"
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "إذا واجهت أي مشكلات، فلا تتردد في الاتصال بمستشارينا في WhatsApp",
"Steps": "الخطوات",
"Previous": "السابق"
} }

4
src/translations/locales/az.json

@ -2097,5 +2097,7 @@
"The 'Share Result' option will become active after 48 hours.": "«Nəticəni paylaşın» seçimi 48 saatdan sonra aktivləşəcək.", "The 'Share Result' option will become active after 48 hours.": "«Nəticəni paylaşın» seçimi 48 saatdan sonra aktivləşəcək.",
"Advisors": "Məsləhətçilər", "Advisors": "Məsləhətçilər",
"Contact Advisors": "Məsləhətçilərlə əlaqə saxlayın", "Contact Advisors": "Məsləhətçilərlə əlaqə saxlayın",
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Hər hansı problemlə qarşılaşsanız, WhatsApp-da məsləhətçilərimizlə əlaqə saxlayın"
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Hər hansı problemlə qarşılaşsanız, WhatsApp-da məsləhətçilərimizlə əlaqə saxlayın",
"Steps": "Addımlar",
"Previous": "Əvvəlki"
} }

4
src/translations/locales/bn.json

@ -2097,5 +2097,7 @@
"The 'Share Result' option will become active after 48 hours.": "৪৮ ঘণ্টা পর 'ফলাফল শেয়ার করুন' বিকল্পটি সক্রিয় হবে।", "The 'Share Result' option will become active after 48 hours.": "৪৮ ঘণ্টা পর 'ফলাফল শেয়ার করুন' বিকল্পটি সক্রিয় হবে।",
"Advisors": "পরামর্শক", "Advisors": "পরামর্শক",
"Contact Advisors": "পরামর্শকদের সাথে যোগাযোগ করুন", "Contact Advisors": "পরামর্শকদের সাথে যোগাযোগ করুন",
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "আপনি যদি কোনো সমস্যার সম্মুখীন হন, অনুগ্রহ করে WhatsApp-এ আমাদের পরামর্শকদের সাথে নির্দ্বিধায় যোগাযোগ করুন"
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "আপনি যদি কোনো সমস্যার সম্মুখীন হন, অনুগ্রহ করে WhatsApp-এ আমাদের পরামর্শকদের সাথে নির্দ্বিধায় যোগাযোগ করুন",
"Steps": "ধাপ",
"Previous": "পূর্ববর্তী"
} }

8
src/translations/locales/da.json

@ -225,7 +225,7 @@
"Final Match Introduction": "Final Match Introduction", "Final Match Introduction": "Final Match Introduction",
"Final Notice": "Final Notice", "Final Notice": "Final Notice",
"Find Matches": "Find Matches", "Find Matches": "Find Matches",
"Finish": "Finish",
"Finish": "Afslut",
"Fit/Average": "Fit/Gennemsnit", "Fit/Average": "Fit/Gennemsnit",
"Flexible": "Fleksibel", "Flexible": "Fleksibel",
"Form Sections Data": "Form Sections Data", "Form Sections Data": "Form Sections Data",
@ -372,7 +372,7 @@
"Never used": "Aldrig brugt", "Never used": "Aldrig brugt",
"New Marriage Proposal": "Nyt Ægteskabsforslag", "New Marriage Proposal": "Nyt Ægteskabsforslag",
"New Match": "New Match", "New Match": "New Match",
"Next": "Next",
"Next": "Næste",
"Next Page": "Next Page", "Next Page": "Next Page",
"No Active Subscription": "Intet aktivt abonnement", "No Active Subscription": "Intet aktivt abonnement",
"No Contact Received": "Ingen kontakt modtaget", "No Contact Received": "Ingen kontakt modtaget",
@ -2097,5 +2097,7 @@
"The 'Share Result' option will become active after 48 hours.": "Valgmuligheden 'Del resultat' bliver aktiv efter 48 timer.", "The 'Share Result' option will become active after 48 hours.": "Valgmuligheden 'Del resultat' bliver aktiv efter 48 timer.",
"Advisors": "Rådgivere", "Advisors": "Rådgivere",
"Contact Advisors": "Kontakt rådgivere", "Contact Advisors": "Kontakt rådgivere",
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Hvis du støder på problemer, er du velkommen til at kontakte vores rådgivere på WhatsApp"
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Hvis du støder på problemer, er du velkommen til at kontakte vores rådgivere på WhatsApp",
"Steps": "Trin",
"Previous": "Forrige"
} }

8
src/translations/locales/de.json

@ -225,7 +225,7 @@
"Final Match Introduction": "Final Match Introduction", "Final Match Introduction": "Final Match Introduction",
"Final Notice": "Final Notice", "Final Notice": "Final Notice",
"Find Matches": "Find Matches", "Find Matches": "Find Matches",
"Finish": "Finish",
"Finish": "Abschließen",
"Fit/Average": "Fit/Durchschnitt", "Fit/Average": "Fit/Durchschnitt",
"Flexible": "Flexibel", "Flexible": "Flexibel",
"Form Sections Data": "Form Sections Data", "Form Sections Data": "Form Sections Data",
@ -372,7 +372,7 @@
"Never used": "Nie benutzt", "Never used": "Nie benutzt",
"New Marriage Proposal": "Neuer Heiratsantrag", "New Marriage Proposal": "Neuer Heiratsantrag",
"New Match": "New Match", "New Match": "New Match",
"Next": "Next",
"Next": "Weiter",
"Next Page": "Next Page", "Next Page": "Next Page",
"No Active Subscription": "Kein aktives Abonnement", "No Active Subscription": "Kein aktives Abonnement",
"No Contact Received": "Kein Kontakt erhalten", "No Contact Received": "Kein Kontakt erhalten",
@ -2097,5 +2097,7 @@
"The 'Share Result' option will become active after 48 hours.": "Die Option 'Ergebnis teilen' wird nach 48 Stunden aktiviert.", "The 'Share Result' option will become active after 48 hours.": "Die Option 'Ergebnis teilen' wird nach 48 Stunden aktiviert.",
"Advisors": "Berater", "Advisors": "Berater",
"Contact Advisors": "Berater kontaktieren", "Contact Advisors": "Berater kontaktieren",
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Bei Problemen kontaktieren Sie bitte unsere Berater über WhatsApp"
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Bei Problemen kontaktieren Sie bitte unsere Berater über WhatsApp",
"Steps": "Schritte",
"Previous": "Zurück"
} }

7
src/translations/locales/en.json

@ -2009,7 +2009,7 @@
"Cooperation with Law Enforcement": "Cooperation with Law Enforcement", "Cooperation with Law Enforcement": "Cooperation with Law Enforcement",
"In the event of cybercrimes, fraud, or threats, the application will refer the necessary information to judicial and law enforcement authorities.": "In the event of cybercrimes, fraud, or threats, the application will refer the necessary information to judicial and law enforcement authorities.", "In the event of cybercrimes, fraud, or threats, the application will refer the necessary information to judicial and law enforcement authorities.": "In the event of cybercrimes, fraud, or threats, the application will refer the necessary information to judicial and law enforcement authorities.",
"Dispute Resolution": "Dispute Resolution", "Dispute Resolution": "Dispute Resolution",
"Any legal dispute must first be pursued through application support. If no agreement is reached, the competent authority will be the courts of the city where the application is registered.": "Any legal dispute must first be pursued through application support. If no agreement is reached, the competent authority will be the courts of the city where the application is registered.",
"Any legal dispute must first be pursued through application support. If no agreement is reached, the competent authority will be the courts of the city where the application is registered.": "Any legal dispute must first be pursued through application advisors. If no agreement is reached, the competent authority will be the courts of the city where the application is registered.",
"7. Disclaimer and In-Person Meetings": "7. Disclaimer and In-Person Meetings", "7. Disclaimer and In-Person Meetings": "7. Disclaimer and In-Person Meetings",
"Role of the Application": "Role of the Application", "Role of the Application": "Role of the Application",
"This platform is only a facilitator for initial communication and does not replace family background research, counseling, and pre-marital investigations.": "This platform is only a facilitator for initial communication and does not replace family background research, counseling, and pre-marital investigations.", "This platform is only a facilitator for initial communication and does not replace family background research, counseling, and pre-marital investigations.": "This platform is only a facilitator for initial communication and does not replace family background research, counseling, and pre-marital investigations.",
@ -2081,7 +2081,6 @@
"ACCOUNT SUSPENDED": "ACCOUNT SUSPENDED", "ACCOUNT SUSPENDED": "ACCOUNT SUSPENDED",
"Account Suspended": "Account Suspended", "Account Suspended": "Account Suspended",
"Account Suspended Notice": "In accordance with platform guidelines and supervisory review, access to your account services has been suspended. For further details or inquiries, please contact our advisors.", "Account Suspended Notice": "In accordance with platform guidelines and supervisory review, access to your account services has been suspended. For further details or inquiries, please contact our advisors.",
"Any legal dispute must first be pursued through application support. If no agreement is reached, the competent authority will be the courts of the city where the application is registered.": "Any legal dispute must first be pursued through application advisors. If no agreement is reached, the competent authority will be the courts of the city where the application is registered.",
"Any legal dispute must first be pursued through application advisors. If no agreement is reached, the competent authority will be the courts of the city where the application is registered.": "Any legal dispute must first be pursued through application advisors. If no agreement is reached, the competent authority will be the courts of the city where the application is registered.", "Any legal dispute must first be pursued through application advisors. If no agreement is reached, the competent authority will be the courts of the city where the application is registered.": "Any legal dispute must first be pursued through application advisors. If no agreement is reached, the competent authority will be the courts of the city where the application is registered.",
"Ban Reason": "Suspension Reason:", "Ban Reason": "Suspension Reason:",
"Profile editing is temporarily disabled": "Profile editing is disabled during account suspension.", "Profile editing is temporarily disabled": "Profile editing is disabled during account suspension.",
@ -2090,5 +2089,7 @@
"unserious_intent": "Lack of serious intention regarding marriage", "unserious_intent": "Lack of serious intention regarding marriage",
"harassment_complaint": "Reports or complaints regarding inappropriate conduct", "harassment_complaint": "Reports or complaints regarding inappropriate conduct",
"commercial_activity": "Commercial, promotional, or non-marriage activities", "commercial_activity": "Commercial, promotional, or non-marriage activities",
"admin_discretion": "Administrative and supervisory team discretion"
"admin_discretion": "Administrative and supervisory team discretion",
"Steps": "Steps",
"Previous": "Previous"
} }

8
src/translations/locales/es.json

@ -225,7 +225,7 @@
"Final Match Introduction": "Final Match Introduction", "Final Match Introduction": "Final Match Introduction",
"Final Notice": "Final Notice", "Final Notice": "Final Notice",
"Find Matches": "Find Matches", "Find Matches": "Find Matches",
"Finish": "Finish",
"Finish": "Finalizar",
"Fit/Average": "Ajuste/Promedio", "Fit/Average": "Ajuste/Promedio",
"Flexible": "Flexibles", "Flexible": "Flexibles",
"Form Sections Data": "Form Sections Data", "Form Sections Data": "Form Sections Data",
@ -372,7 +372,7 @@
"Never used": "Nunca usado", "Never used": "Nunca usado",
"New Marriage Proposal": "Nueva propuesta de matrimonio", "New Marriage Proposal": "Nueva propuesta de matrimonio",
"New Match": "New Match", "New Match": "New Match",
"Next": "Next",
"Next": "Siguiente",
"Next Page": "Next Page", "Next Page": "Next Page",
"No Active Subscription": "Sin suscripción activa", "No Active Subscription": "Sin suscripción activa",
"No Contact Received": "Contacto no recibido", "No Contact Received": "Contacto no recibido",
@ -2097,5 +2097,7 @@
"The 'Share Result' option will become active after 48 hours.": "La opción 'Compartir resultado' se activará después de 48 horas.", "The 'Share Result' option will become active after 48 hours.": "La opción 'Compartir resultado' se activará después de 48 horas.",
"Advisors": "Consejeros", "Advisors": "Consejeros",
"Contact Advisors": "Contactar consejeros", "Contact Advisors": "Contactar consejeros",
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Si tiene algún problema, no dude en ponerse en contacto con nuestros consejeros en WhatsApp"
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Si tiene algún problema, no dude en ponerse en contacto con nuestros consejeros en WhatsApp",
"Steps": "Pasos",
"Previous": "Anterior"
} }

4
src/translations/locales/fa.json

@ -2109,5 +2109,7 @@
"unserious_intent": "عدم جدیت در امر ازدواج و نقض اهداف سامانه", "unserious_intent": "عدم جدیت در امر ازدواج و نقض اهداف سامانه",
"harassment_complaint": "گزارش نارضایتی یا ایجاد مزاحمت برای سایر کاربران", "harassment_complaint": "گزارش نارضایتی یا ایجاد مزاحمت برای سایر کاربران",
"commercial_activity": "فعالیت تجاری، تبلیغاتی یا مقاصد غیرمرتبط", "commercial_activity": "فعالیت تجاری، تبلیغاتی یا مقاصد غیرمرتبط",
"admin_discretion": "صلاحدید و تصمیم کارشناسی مدیریت سامانه"
"admin_discretion": "صلاحدید و تصمیم کارشناسی مدیریت سامانه",
"Steps": "مراحل",
"Previous": "قبلی"
} }

8
src/translations/locales/fr.json

@ -225,7 +225,7 @@
"Final Match Introduction": "Final Match Introduction", "Final Match Introduction": "Final Match Introduction",
"Final Notice": "Final Notice", "Final Notice": "Final Notice",
"Find Matches": "Find Matches", "Find Matches": "Find Matches",
"Finish": "Finish",
"Finish": "Terminer",
"Fit/Average": "Ajustement/Moyenne", "Fit/Average": "Ajustement/Moyenne",
"Flexible": "Flexible", "Flexible": "Flexible",
"Form Sections Data": "Form Sections Data", "Form Sections Data": "Form Sections Data",
@ -372,7 +372,7 @@
"Never used": "Jamais utilisé", "Never used": "Jamais utilisé",
"New Marriage Proposal": "Nouvelle demande en mariage", "New Marriage Proposal": "Nouvelle demande en mariage",
"New Match": "New Match", "New Match": "New Match",
"Next": "Next",
"Next": "Suivant",
"Next Page": "Next Page", "Next Page": "Next Page",
"No Active Subscription": "Aucun abonnement actif", "No Active Subscription": "Aucun abonnement actif",
"No Contact Received": "Aucun contact reçu", "No Contact Received": "Aucun contact reçu",
@ -2097,5 +2097,7 @@
"The 'Share Result' option will become active after 48 hours.": "L'option « Partager le résultat » sera activée après 48 heures.", "The 'Share Result' option will become active after 48 hours.": "L'option « Partager le résultat » sera activée après 48 heures.",
"Advisors": "Conseillers", "Advisors": "Conseillers",
"Contact Advisors": "Contacter les conseillers", "Contact Advisors": "Contacter les conseillers",
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Si vous rencontrez des problèmes, n'hésitez pas à contacter nos conseillers sur WhatsApp"
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Si vous rencontrez des problèmes, n'hésitez pas à contacter nos conseillers sur WhatsApp",
"Steps": "Étapes",
"Previous": "Précédent"
} }

8
src/translations/locales/gu.json

@ -225,7 +225,7 @@
"Final Match Introduction": "Final Match Introduction", "Final Match Introduction": "Final Match Introduction",
"Final Notice": "Final Notice", "Final Notice": "Final Notice",
"Find Matches": "Find Matches", "Find Matches": "Find Matches",
"Finish": "Finish",
"Finish": "સમાપ્ત",
"Fit/Average": "ફિટ/સરેરાશ", "Fit/Average": "ફિટ/સરેરાશ",
"Flexible": "લવચીક", "Flexible": "લવચીક",
"Form Sections Data": "Form Sections Data", "Form Sections Data": "Form Sections Data",
@ -372,7 +372,7 @@
"Never used": "ક્યારેય ઉપયોગ કર્યો નથી", "Never used": "ક્યારેય ઉપયોગ કર્યો નથી",
"New Marriage Proposal": "લગ્નનો નવો પ્રસ્તાવ", "New Marriage Proposal": "લગ્નનો નવો પ્રસ્તાવ",
"New Match": "New Match", "New Match": "New Match",
"Next": "Next",
"Next": "આગળ",
"Next Page": "Next Page", "Next Page": "Next Page",
"No Active Subscription": "કોઈ સક્રિય સબ્સ્ક્રિપ્શન નથી", "No Active Subscription": "કોઈ સક્રિય સબ્સ્ક્રિપ્શન નથી",
"No Contact Received": "કોઈ સંપર્ક મળ્યો નથી", "No Contact Received": "કોઈ સંપર્ક મળ્યો નથી",
@ -2099,5 +2099,7 @@
"The 'Share Result' option will become active after 48 hours.": "'પરિણામ શેર કરો' વિકલ્પ 48 કલાક પછી સક્રિય થશે.", "The 'Share Result' option will become active after 48 hours.": "'પરિણામ શેર કરો' વિકલ્પ 48 કલાક પછી સક્રિય થશે.",
"Advisors": "સલાહકારો", "Advisors": "સલાહકારો",
"Contact Advisors": "સલાહકારોનો સંપર્ક કરો", "Contact Advisors": "સલાહકારોનો સંપર્ક કરો",
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "જો તમને કોઈ સમસ્યા આવે, તો કૃપા કરીને WhatsApp પર અમારા સલાહકારોનો સંપર્ક કરો"
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "જો તમને કોઈ સમસ્યા આવે, તો કૃપા કરીને WhatsApp પર અમારા સલાહકારોનો સંપર્ક કરો",
"Steps": "પગલાં",
"Previous": "પાછલું"
} }

8
src/translations/locales/ha.json

@ -225,7 +225,7 @@
"Final Match Introduction": "Final Match Introduction", "Final Match Introduction": "Final Match Introduction",
"Final Notice": "Final Notice", "Final Notice": "Final Notice",
"Find Matches": "Find Matches", "Find Matches": "Find Matches",
"Finish": "Finish",
"Finish": "Kammala",
"Fit/Average": "Fit/Matsakaici", "Fit/Average": "Fit/Matsakaici",
"Flexible": "M", "Flexible": "M",
"Form Sections Data": "Form Sections Data", "Form Sections Data": "Form Sections Data",
@ -372,7 +372,7 @@
"Never used": "Ba a taɓa amfani da shi ba", "Never used": "Ba a taɓa amfani da shi ba",
"New Marriage Proposal": "Sabuwar Shawarar Aure", "New Marriage Proposal": "Sabuwar Shawarar Aure",
"New Match": "New Match", "New Match": "New Match",
"Next": "Next",
"Next": "Na gaba",
"Next Page": "Next Page", "Next Page": "Next Page",
"No Active Subscription": "Babu Biyan Kuɗi Mai Aiki", "No Active Subscription": "Babu Biyan Kuɗi Mai Aiki",
"No Contact Received": "Ba a karɓi tuntuɓa ba", "No Contact Received": "Ba a karɓi tuntuɓa ba",
@ -2097,5 +2097,7 @@
"The 'Share Result' option will become active after 48 hours.": "Za a kunna zaɓin 'Raba Sakamako' bayan awanni 48.", "The 'Share Result' option will become active after 48 hours.": "Za a kunna zaɓin 'Raba Sakamako' bayan awanni 48.",
"Advisors": "Masu ba da shawara", "Advisors": "Masu ba da shawara",
"Contact Advisors": "Tuntuɓi masu ba da shawara", "Contact Advisors": "Tuntuɓi masu ba da shawara",
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Idan kun ci karo da matsala, ku tuntuɓi masu ba da shawara a WhatsApp"
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Idan kun ci karo da matsala, ku tuntuɓi masu ba da shawara a WhatsApp",
"Steps": "Matakai",
"Previous": "Baya"
} }

4
src/translations/locales/he.json

@ -2362,5 +2362,7 @@
"The 'Share Result' option will become active after 48 hours.": "האפשרות 'שתף תוצאה' תופעל לאחר 48 שעות.", "The 'Share Result' option will become active after 48 hours.": "האפשרות 'שתף תוצאה' תופעל לאחר 48 שעות.",
"Advisors": "יועצים", "Advisors": "יועצים",
"Contact Advisors": "פנייה ליועצים", "Contact Advisors": "פנייה ליועצים",
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "אם נתקלת בבעיה כלשהי, ניתן לפנות ליועצים שלנו בוואטסאפ."
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "אם נתקלת בבעיה כלשהי, ניתן לפנות ליועצים שלנו בוואטסאפ.",
"Steps": "שלבים",
"Previous": "הקודם"
} }

8
src/translations/locales/hi.json

@ -225,7 +225,7 @@
"Final Match Introduction": "Final Match Introduction", "Final Match Introduction": "Final Match Introduction",
"Final Notice": "Final Notice", "Final Notice": "Final Notice",
"Find Matches": "Find Matches", "Find Matches": "Find Matches",
"Finish": "Finish",
"Finish": "समाप्त",
"Fit/Average": "फ़िट/औसत", "Fit/Average": "फ़िट/औसत",
"Flexible": "लचीला", "Flexible": "लचीला",
"Form Sections Data": "Form Sections Data", "Form Sections Data": "Form Sections Data",
@ -372,7 +372,7 @@
"Never used": "कभी उपयोग नहीं किया गया", "Never used": "कभी उपयोग नहीं किया गया",
"New Marriage Proposal": "नये विवाह का प्रस्ताव", "New Marriage Proposal": "नये विवाह का प्रस्ताव",
"New Match": "New Match", "New Match": "New Match",
"Next": "Next",
"Next": "आगे",
"Next Page": "Next Page", "Next Page": "Next Page",
"No Active Subscription": "कोई सक्रिय सदस्यता नहीं", "No Active Subscription": "कोई सक्रिय सदस्यता नहीं",
"No Contact Received": "कोई संपर्क प्राप्त नहीं हुआ", "No Contact Received": "कोई संपर्क प्राप्त नहीं हुआ",
@ -2097,5 +2097,7 @@
"The 'Share Result' option will become active after 48 hours.": "'परिणाम साझा करें' विकल्प 48 घंटे बाद सक्रिय हो जाएगा।", "The 'Share Result' option will become active after 48 hours.": "'परिणाम साझा करें' विकल्प 48 घंटे बाद सक्रिय हो जाएगा।",
"Advisors": "सलाहकार", "Advisors": "सलाहकार",
"Contact Advisors": "सलाहकारों से संपर्क करें", "Contact Advisors": "सलाहकारों से संपर्क करें",
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "किसी भी समस्या के लिए, कृपया व्हाट्सएप पर हमारे सलाहकारों से संपर्क करें"
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "किसी भी समस्या के लिए, कृपया व्हाट्सएप पर हमारे सलाहकारों से संपर्क करें",
"Steps": "चरण",
"Previous": "पिछला"
} }

4
src/translations/locales/id.json

@ -2362,5 +2362,7 @@
"The 'Share Result' option will become active after 48 hours.": "Opsi 'Bagikan Hasil' akan aktif setelah 48 jam.", "The 'Share Result' option will become active after 48 hours.": "Opsi 'Bagikan Hasil' akan aktif setelah 48 jam.",
"Advisors": "Penasihat", "Advisors": "Penasihat",
"Contact Advisors": "Hubungi Penasihat", "Contact Advisors": "Hubungi Penasihat",
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Jika Anda mengalami kendala, jangan ragu untuk menghubungi penasihat kami di WhatsApp."
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Jika Anda mengalami kendala, jangan ragu untuk menghubungi penasihat kami di WhatsApp.",
"Steps": "Langkah",
"Previous": "Sebelumnya"
} }

4
src/translations/locales/ks.json

@ -2362,5 +2362,7 @@
"The 'Share Result' option will become active after 48 hours.": "'نتیجہ شیئر کٔرِو' آپشن گژھِ ۴۸ گنٛٹن پتہٕ فعال۔", "The 'Share Result' option will become active after 48 hours.": "'نتیجہ شیئر کٔرِو' آپشن گژھِ ۴۸ گنٛٹن پتہٕ فعال۔",
"Advisors": "مشیر", "Advisors": "مشیر",
"Contact Advisors": "مشیرن سٟتؠ رابطہ کٔریو", "Contact Advisors": "مشیرن سٟتؠ رابطہ کٔریو",
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "کانہہ دشواری پیش یِنہٕ وزِ ہیکیو واٹس ایپ پؠٹھ مشیرن سٟتؠ رابطہ کٔرِتھ۔"
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "کانہہ دشواری پیش یِنہٕ وزِ ہیکیو واٹس ایپ پؠٹھ مشیرن سٟتؠ رابطہ کٔرِتھ۔",
"Steps": "مراحل",
"Previous": "پچھلا"
} }

4
src/translations/locales/pt.json

@ -2362,5 +2362,7 @@
"The 'Share Result' option will become active after 48 hours.": "A opção 'Compartilhar resultado' ficará ativa após 48 horas.", "The 'Share Result' option will become active after 48 hours.": "A opção 'Compartilhar resultado' ficará ativa após 48 horas.",
"Advisors": "Consultores", "Advisors": "Consultores",
"Contact Advisors": "Contatar consultores", "Contact Advisors": "Contatar consultores",
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Se encontrar algum problema, entre em contato com nossos consultores no WhatsApp."
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Se encontrar algum problema, entre em contato com nossos consultores no WhatsApp.",
"Steps": "Etapas",
"Previous": "Anterior"
} }

6
src/translations/locales/ru.json

@ -227,7 +227,7 @@
"Final Match Introduction": "Введение в финальный матч", "Final Match Introduction": "Введение в финальный матч",
"Final Notice": "Последнее уведомление", "Final Notice": "Последнее уведомление",
"Find Matches": "Найти совпадения", "Find Matches": "Найти совпадения",
"Finish": "Заканчивать",
"Finish": "Завершить",
"Fit/Average": "Подходит/Средний", "Fit/Average": "Подходит/Средний",
"Flexible": "Гибкий", "Flexible": "Гибкий",
"Form Sections Data": "Данные разделов формы", "Form Sections Data": "Данные разделов формы",
@ -2093,5 +2093,7 @@
"The 'Share Result' option will become active after 48 hours.": "Опция «Поделиться результатом» станет активна через 48 часов.", "The 'Share Result' option will become active after 48 hours.": "Опция «Поделиться результатом» станет активна через 48 часов.",
"Advisors": "Консультанты", "Advisors": "Консультанты",
"Contact Advisors": "Связаться с консультантами", "Contact Advisors": "Связаться с консультантами",
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Если у вас возникнут какие-либо проблемы, пожалуйста, свяжитесь с нашими консультантами в WhatsApp."
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Если у вас возникнут какие-либо проблемы, пожалуйста, свяжитесь с нашими консультантами в WhatsApp.",
"Steps": "Шаги",
"Previous": "Предыдущий"
} }

4
src/translations/locales/sw.json

@ -2362,5 +2362,7 @@
"The 'Share Result' option will become active after 48 hours.": "Chaguo la 'Shiriki Matokeo' litafanya kazi baada ya saa 48.", "The 'Share Result' option will become active after 48 hours.": "Chaguo la 'Shiriki Matokeo' litafanya kazi baada ya saa 48.",
"Advisors": "Washauri", "Advisors": "Washauri",
"Contact Advisors": "Wasiliana na Washauri", "Contact Advisors": "Wasiliana na Washauri",
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Ukikumbana na changamoto yoyote, jisikie huru kuwasiliana na washauri wetu kupitia WhatsApp."
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Ukikumbana na changamoto yoyote, jisikie huru kuwasiliana na washauri wetu kupitia WhatsApp.",
"Steps": "Hatua",
"Previous": "Iliyopita"
} }

4
src/translations/locales/tg.json

@ -2362,5 +2362,7 @@
"The 'Share Result' option will become active after 48 hours.": "Гузинаи «Сабти натиҷа» баъд аз 48 соат фаъол хоҳад шуд.", "The 'Share Result' option will become active after 48 hours.": "Гузинаи «Сабти натиҷа» баъд аз 48 соат фаъол хоҳад шуд.",
"Advisors": "Мушовирон", "Advisors": "Мушовирон",
"Contact Advisors": "Тамос бо мушовирон", "Contact Advisors": "Тамос бо мушовирон",
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Агар мушкиле пеш ояд, лутфан ба мушовирони мо дар WhatsApp муроҷиат кунед."
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Агар мушкиле пеш ояд, лутфан ба мушовирони мо дар WhatsApp муроҷиат кунед.",
"Steps": "Марҳилаҳо",
"Previous": "Қаблӣ"
} }

4
src/translations/locales/tr.json

@ -2362,5 +2362,7 @@
"The 'Share Result' option will become active after 48 hours.": "'Sonucu Paylaş' seçeneği 48 saat sonra aktif olacaktır.", "The 'Share Result' option will become active after 48 hours.": "'Sonucu Paylaş' seçeneği 48 saat sonra aktif olacaktır.",
"Advisors": "Danışmanlar", "Advisors": "Danışmanlar",
"Contact Advisors": "Danışmanlarla İletişime Geçin", "Contact Advisors": "Danışmanlarla İletişime Geçin",
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Herhangi bir sorunla karşılaşırsanız WhatsApp üzerinden danışmanlarımızla iletişime geçebilirsiniz."
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Herhangi bir sorunla karşılaşırsanız WhatsApp üzerinden danışmanlarımızla iletişime geçebilirsiniz.",
"Steps": "Adımlar",
"Previous": "Önceki"
} }

4
src/translations/locales/ul.json

@ -2362,5 +2362,7 @@
"The 'Share Result' option will become active after 48 hours.": "«نەتىجىنى ھەمبەھىرلەش» تاللىشى 48 سائەتتىن كېيىن ئاكتىپلىنىدۇ.", "The 'Share Result' option will become active after 48 hours.": "«نەتىجىنى ھەمبەھىرلەش» تاللىشى 48 سائەتتىن كېيىن ئاكتىپلىنىدۇ.",
"Advisors": "Musheeran", "Advisors": "Musheeran",
"Contact Advisors": "Musheeran se Rabta Karein", "Contact Advisors": "Musheeran se Rabta Karein",
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Agar koi masla darpesh ho to WhatsApp par hamare musheeran se bila-jhijhak rabta karein."
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Agar koi masla darpesh ho to WhatsApp par hamare musheeran se bila-jhijhak rabta karein.",
"Steps": "Marahil",
"Previous": "Pichla"
} }

4
src/translations/locales/ur.json

@ -2362,5 +2362,7 @@
"The 'Share Result' option will become active after 48 hours.": "'نتیجہ شیئر کریں' کا آپشن 48 گھنٹے بعد فعال ہو جائے گا۔", "The 'Share Result' option will become active after 48 hours.": "'نتیجہ شیئر کریں' کا آپشن 48 گھنٹے بعد فعال ہو جائے گا۔",
"Advisors": "مشیران", "Advisors": "مشیران",
"Contact Advisors": "مشیروں سے رابطہ کریں", "Contact Advisors": "مشیروں سے رابطہ کریں",
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "اگر کوئی مسئلہ درپیش ہو تو واٹس ایپ پر ہمارے مشیروں سے بلا جھجھک رابطہ کریں۔"
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "اگر کوئی مسئلہ درپیش ہو تو واٹس ایپ پر ہمارے مشیروں سے بلا جھجھک رابطہ کریں۔",
"Steps": "مراحل",
"Previous": "پچھلا"
} }

4
src/translations/locales/uz.json

@ -2362,5 +2362,7 @@
"The 'Share Result' option will become active after 48 hours.": "'Natijani ulashish' opsiyasi 48 soatdan keyin faollashadi.", "The 'Share Result' option will become active after 48 hours.": "'Natijani ulashish' opsiyasi 48 soatdan keyin faollashadi.",
"Advisors": "Maslahatchilar", "Advisors": "Maslahatchilar",
"Contact Advisors": "Maslahatchilar bilan bog'lanish", "Contact Advisors": "Maslahatchilar bilan bog'lanish",
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Agar biron bir muammo yuzaga kelsa, WhatsApp orqali maslahatchilarimiz bilan bog'laning."
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "Agar biron bir muammo yuzaga kelsa, WhatsApp orqali maslahatchilarimiz bilan bog'laning.",
"Steps": "Bosqichlar",
"Previous": "Oldingi"
} }

8
src/translations/locales/zh.json

@ -225,7 +225,7 @@
"Final Match Introduction": "Final Match Introduction", "Final Match Introduction": "Final Match Introduction",
"Final Notice": "Final Notice", "Final Notice": "Final Notice",
"Find Matches": "Find Matches", "Find Matches": "Find Matches",
"Finish": "Finish",
"Finish": "完成",
"Fit/Average": "适合/平均", "Fit/Average": "适合/平均",
"Flexible": "灵活", "Flexible": "灵活",
"Form Sections Data": "Form Sections Data", "Form Sections Data": "Form Sections Data",
@ -372,7 +372,7 @@
"Never used": "从未使用过", "Never used": "从未使用过",
"New Marriage Proposal": "新求婚", "New Marriage Proposal": "新求婚",
"New Match": "New Match", "New Match": "New Match",
"Next": "Next",
"Next": "下一步",
"Next Page": "Next Page", "Next Page": "Next Page",
"No Active Subscription": "没有活跃订阅", "No Active Subscription": "没有活跃订阅",
"No Contact Received": "未收到联系", "No Contact Received": "未收到联系",
@ -2097,5 +2097,7 @@
"The 'Share Result' option will become active after 48 hours.": "“分享结果”选项将在48小时后启用。", "The 'Share Result' option will become active after 48 hours.": "“分享结果”选项将在48小时后启用。",
"Advisors": "顾问", "Advisors": "顾问",
"Contact Advisors": "联系顾问", "Contact Advisors": "联系顾问",
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "如果遇到任何问题,请随时通过 WhatsApp 联系我们的顾问"
"If you encounter any issues, please feel free to contact our advisors in WhatsApp": "如果遇到任何问题,请随时通过 WhatsApp 联系我们的顾问",
"Steps": "步骤",
"Previous": "上一步"
} }
Loading…
Cancel
Save