56 changed files with 23544 additions and 7014 deletions
-
9src/app/finding-match/finding-match-client.tsx
-
28src/app/globals.css
-
3src/app/marriage-advisors/page.tsx
-
32src/app/new-match/new-match-client.tsx
-
4src/app/questions-list/questions-list-client.tsx
-
4src/app/questions-list/sections-request.tsx
-
4src/components/Componentes/booking-terms-card.tsx
-
5src/components/Componentes/button.tsx
-
4src/components/Componentes/error-toast.tsx
-
295src/components/Componentes/multi-select-e2e.integration.test.tsx
-
50src/components/Componentes/navigation-button.tsx
-
45src/components/Componentes/question-answer-storage.tsx
-
53src/components/Componentes/question-birthplace.tsx
-
4src/components/Componentes/question-button.tsx
-
4src/components/Componentes/question-card.tsx
-
54src/components/Componentes/question-dropdown.tsx
-
50src/components/Componentes/question-file.test.tsx
-
35src/components/Componentes/question-file.tsx
-
40src/components/Componentes/question-phone.tsx
-
73src/components/Componentes/question-photo.tsx
-
6src/components/Componentes/question-section-flow.tsx
-
118src/components/Componentes/question-sheet.test.tsx
-
12src/components/Componentes/question-sheet.tsx
-
7src/components/Componentes/question-title.tsx
-
8src/components/Componentes/required-steps-card.tsx
-
6src/components/Componentes/support-sheet.tsx
-
4src/components/Componentes/test-intro-page.tsx
-
6src/components/Componentes/test-questions-flow.tsx
-
19src/components/Componentes/token-switcher.tsx
-
104src/icons.tsx
-
18src/lib/webview-actions.ts
-
841src/translations/locales/ar.json
-
869src/translations/locales/az.json
-
841src/translations/locales/bn.json
-
1327src/translations/locales/da.json
-
1363src/translations/locales/de.json
-
735src/translations/locales/en.json
-
1399src/translations/locales/es.json
-
767src/translations/locales/fa.json
-
1409src/translations/locales/fr.json
-
1529src/translations/locales/gu.json
-
1485src/translations/locales/ha.json
-
1311src/translations/locales/he.json
-
1527src/translations/locales/hi.json
-
1095src/translations/locales/id.json
-
1313src/translations/locales/ks.json
-
1207src/translations/locales/pt.json
-
1147src/translations/locales/ru.json
-
1065src/translations/locales/sw.json
-
1311src/translations/locales/tg.json
-
1213src/translations/locales/tr.json
-
913src/translations/locales/ul.json
-
1309src/translations/locales/ur.json
-
1249src/translations/locales/uz.json
-
1379src/translations/locales/zh.json
-
770سوالات مریج.md
@ -0,0 +1,295 @@ |
|||||
|
import React from "react"; |
||||
|
import { render, screen, fireEvent, waitFor, cleanup } from "@testing-library/react"; |
||||
|
import { describe, it, expect, afterEach, vi } from "vitest"; |
||||
|
import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; |
||||
|
import { QuestionAnswersProvider, useQuestionAnswers } from "./question-answer-storage"; |
||||
|
import { QuestionSheet } from "./question-sheet"; |
||||
|
import { mapBackendQuestionToFrontend } from "@/lib/schema-adapter"; |
||||
|
import type { QuestionField } from "@/lib/schema-adapter"; |
||||
|
|
||||
|
vi.mock("@/translations/provider", () => ({ |
||||
|
useI18n: vi.fn(() => ({ |
||||
|
locale: "fa", |
||||
|
dictionary: { |
||||
|
Confirm: "تایید", |
||||
|
Select: "انتخاب کنید", |
||||
|
}, |
||||
|
})), |
||||
|
})); |
||||
|
|
||||
|
vi.mock("@/hooks/marriage/use-profile-main", () => ({ |
||||
|
useMarriageProfileQuery: vi.fn(() => ({ |
||||
|
data: { id: 1, can_edit_profile: true }, |
||||
|
isLoading: false, |
||||
|
})), |
||||
|
})); |
||||
|
|
||||
|
vi.mock("@/hooks/marriage/use-section-data", () => ({ |
||||
|
applyProfilePatchResultToCache: vi.fn(), |
||||
|
useMarriageSectionDataQuery: vi.fn(() => ({ |
||||
|
data: undefined, |
||||
|
isLoading: false, |
||||
|
})), |
||||
|
useUpdateMarriageSectionDataMutation: vi.fn(() => ({ |
||||
|
mutateAsync: vi.fn().mockResolvedValue({ status: "success" }), |
||||
|
isPending: false, |
||||
|
})), |
||||
|
})); |
||||
|
|
||||
|
describe("Multi-Select End-to-End & Integration Tests", () => { |
||||
|
afterEach(() => { |
||||
|
cleanup(); |
||||
|
document.body.classList.remove("dropdown-open"); |
||||
|
document.body.classList.remove("question-sheet-open"); |
||||
|
document.body.classList.remove("question-keyboard-open"); |
||||
|
}); |
||||
|
|
||||
|
const queryClient = new QueryClient({ |
||||
|
defaultOptions: { queries: { retry: false } }, |
||||
|
}); |
||||
|
|
||||
|
it("E2E Scenario 1: Adapts backend multi-select schema and preserves ui_config.is_multi & max_select", () => { |
||||
|
const rawBackendSection = { |
||||
|
id: "beliefs_lifestyle", |
||||
|
slug: "beliefs_lifestyle", |
||||
|
title: "اعتقادات، ارزشها، سبک زندگی و شخصیت", |
||||
|
order: 7, |
||||
|
is_required: true, |
||||
|
cards: [ |
||||
|
{ |
||||
|
id: "card_beliefs", |
||||
|
slug: "beliefs_lifestyle_card", |
||||
|
title: "سبک زندگی و شخصیت", |
||||
|
order: 1, |
||||
|
questions: [ |
||||
|
{ |
||||
|
id: "beliefs_lifestyle.what_are_your_prominent_personality_traits", |
||||
|
slug: "beliefs_lifestyle.what_are_your_prominent_personality_traits", |
||||
|
title: "ویژگیهای شخصیتی شما چیست؟", |
||||
|
type: "dropdown", |
||||
|
order: 1, |
||||
|
required: true, |
||||
|
is_required: true, |
||||
|
is_visible: true, |
||||
|
validation: { max: 5 }, |
||||
|
ui_config: { |
||||
|
is_multi: true, |
||||
|
max_select: 5, |
||||
|
placeholder_fa: "انتخاب حداکثر ۵ مورد", |
||||
|
placeholder_en: "Select up to 5 traits", |
||||
|
noSearch: true, |
||||
|
private: false, |
||||
|
}, |
||||
|
options: [ |
||||
|
{ id: "calm", value: "calm", label: "آرام و درونگرا", order: 1 }, |
||||
|
{ id: "social", value: "social", label: "اجتماعی و برونگرا", order: 2 }, |
||||
|
{ id: "patient", value: "patient", label: "صبور", order: 3 }, |
||||
|
{ id: "logical", value: "logical", label: "منطقی", order: 4 }, |
||||
|
{ id: "independent", value: "independent", label: "مستقل", order: 5 }, |
||||
|
{ id: "responsible", value: "responsible", label: "مسئولیتپذیر", order: 6 }, |
||||
|
], |
||||
|
}, |
||||
|
], |
||||
|
}, |
||||
|
], |
||||
|
}; |
||||
|
|
||||
|
const adapted = mapBackendQuestionToFrontend( |
||||
|
rawBackendSection.cards[0].questions[0] as any, |
||||
|
0 |
||||
|
); |
||||
|
|
||||
|
expect(adapted).toBeDefined(); |
||||
|
expect(adapted.ui_config?.is_multi).toBe(true); |
||||
|
expect(adapted.ui_config?.max_select).toBe(5); |
||||
|
expect(adapted.validation?.max).toBe(5); |
||||
|
expect(adapted.options?.length).toBe(6); |
||||
|
}); |
||||
|
|
||||
|
it("E2E Scenario 2: User selects multiple items, UI updates, and payload serializes cleanly as array of System Keys", async () => { |
||||
|
let currentAnswers: any = null; |
||||
|
|
||||
|
function TestSubmitContainer({ question }: { question: QuestionField }) { |
||||
|
const { answers, getAnswerValue } = useQuestionAnswers(); |
||||
|
const val = getAnswerValue(question); |
||||
|
currentAnswers = answers; |
||||
|
|
||||
|
return ( |
||||
|
<div> |
||||
|
<QuestionSheet question={question} /> |
||||
|
<div data-testid="answered-status"> |
||||
|
{Array.isArray(val) && val.length > 0 ? "ANSWERED" : "UNANSWERED"} |
||||
|
</div> |
||||
|
<div data-testid="answer-value">{JSON.stringify(val)}</div> |
||||
|
</div> |
||||
|
); |
||||
|
} |
||||
|
|
||||
|
const question: QuestionField = { |
||||
|
id: "beliefs_lifestyle.what_are_your_prominent_personality_traits", |
||||
|
title: "ویژگیهای شخصیتی شما چیست؟", |
||||
|
type: "dropdown", |
||||
|
order: 1, |
||||
|
required: true, |
||||
|
isVisible: true, |
||||
|
description: "", |
||||
|
tooltip: "", |
||||
|
extras: { placeHolder: "انتخاب حداکثر ۵ مورد" }, |
||||
|
options: [ |
||||
|
{ id: "calm_and_introverted", value: "calm_and_introverted", label: "آرام و درونگرا", order: 1 }, |
||||
|
{ id: "social_and_extroverted", value: "social_and_extroverted", label: "اجتماعی و برونگرا", order: 2 }, |
||||
|
{ id: "patient", value: "patient", label: "صبور", order: 3 }, |
||||
|
{ id: "logical", value: "logical", label: "منطقی", order: 4 }, |
||||
|
{ id: "independent", value: "independent", label: "مستقل", order: 5 }, |
||||
|
], |
||||
|
ui_config: { is_multi: true, max_select: 5 }, |
||||
|
validation: { max: 5 }, |
||||
|
}; |
||||
|
|
||||
|
render( |
||||
|
<QueryClientProvider client={queryClient}> |
||||
|
<QuestionAnswersProvider slug="beliefs_lifestyle" questions={[question]}> |
||||
|
<TestSubmitContainer question={question} /> |
||||
|
</QuestionAnswersProvider> |
||||
|
</QueryClientProvider> |
||||
|
); |
||||
|
|
||||
|
// Initial state: unanswered
|
||||
|
expect(screen.getByTestId("answered-status").textContent).toBe("UNANSWERED"); |
||||
|
|
||||
|
// Open sheet
|
||||
|
fireEvent.click(screen.getByRole("button", { name: "انتخاب حداکثر ۵ مورد" })); |
||||
|
expect(screen.getByRole("dialog")).toBeDefined(); |
||||
|
|
||||
|
// Select 3 options: calm, patient, logical
|
||||
|
fireEvent.click(screen.getByRole("button", { name: "آرام و درونگرا" })); |
||||
|
fireEvent.click(screen.getByRole("button", { name: "صبور" })); |
||||
|
fireEvent.click(screen.getByRole("button", { name: "منطقی" })); |
||||
|
|
||||
|
// Confirm button displays count (3)
|
||||
|
const confirmBtn = screen.getByRole("button", { name: /تایید/ }); |
||||
|
expect(confirmBtn.textContent).toContain("3"); |
||||
|
fireEvent.click(confirmBtn); |
||||
|
|
||||
|
// Dialog closes
|
||||
|
await waitFor(() => { |
||||
|
expect(screen.queryByRole("dialog")).toBeNull(); |
||||
|
}); |
||||
|
|
||||
|
// Question status becomes answered
|
||||
|
expect(screen.getByTestId("answered-status").textContent).toBe("ANSWERED"); |
||||
|
|
||||
|
// Trigger button now displays comma-separated labels
|
||||
|
expect(screen.getByText("آرام و درونگرا, صبور, منطقی")).toBeDefined(); |
||||
|
|
||||
|
// Answer value in state is an array of system keys
|
||||
|
expect(currentAnswers["beliefs_lifestyle.what_are_your_prominent_personality_traits"]).toBeDefined(); |
||||
|
const storedField = currentAnswers["beliefs_lifestyle.what_are_your_prominent_personality_traits"]; |
||||
|
expect(storedField.value).toEqual(["calm_and_introverted", "patient", "logical"]); |
||||
|
expect(storedField.option_id).toEqual(["calm_and_introverted", "patient", "logical"]); |
||||
|
}); |
||||
|
|
||||
|
it("E2E Scenario 3: Deselection and empty selection behavior", async () => { |
||||
|
const question: QuestionField = { |
||||
|
id: "spouse_criteria.desired_height_range_of_future_spouse", |
||||
|
title: "بازه قدی مطلوب همسر آینده", |
||||
|
type: "dropdown", |
||||
|
order: 1, |
||||
|
required: true, |
||||
|
isVisible: true, |
||||
|
description: "", |
||||
|
tooltip: "", |
||||
|
extras: { placeHolder: "انتخاب کنید" }, |
||||
|
options: [ |
||||
|
{ id: "160_to_170", value: "160_to_170", label: "۱۶۰ تا ۱۷۰", order: 1 }, |
||||
|
{ id: "170_to_180", value: "170_to_180", label: "۱۷۰ تا ۱۸۰", order: 2 }, |
||||
|
{ id: "180_to_190", value: "180_to_190", label: "۱۸۰ تا ۱۹۰", order: 3 }, |
||||
|
], |
||||
|
ui_config: { is_multi: true }, |
||||
|
}; |
||||
|
|
||||
|
render( |
||||
|
<QueryClientProvider client={queryClient}> |
||||
|
<QuestionAnswersProvider slug="spouse_criteria" questions={[question]}> |
||||
|
<QuestionSheet question={question} /> |
||||
|
</QuestionAnswersProvider> |
||||
|
</QueryClientProvider> |
||||
|
); |
||||
|
|
||||
|
// Open sheet
|
||||
|
fireEvent.click(screen.getByRole("button", { name: "انتخاب کنید" })); |
||||
|
|
||||
|
// Select 2 options
|
||||
|
fireEvent.click(screen.getByRole("button", { name: "۱۶۰ تا ۱۷۰" })); |
||||
|
fireEvent.click(screen.getByRole("button", { name: "۱۷۰ تا ۱۸۰" })); |
||||
|
|
||||
|
// Deselect one option
|
||||
|
fireEvent.click(screen.getByRole("button", { name: "۱۶۰ تا ۱۷۰" })); |
||||
|
|
||||
|
// Confirm
|
||||
|
fireEvent.click(screen.getByRole("button", { name: /تایید/ })); |
||||
|
|
||||
|
await waitFor(() => { |
||||
|
expect(screen.queryByRole("dialog")).toBeNull(); |
||||
|
}); |
||||
|
|
||||
|
// Only remaining selected option is displayed
|
||||
|
expect(screen.getByText("۱۷۰ تا ۱۸۰")).toBeDefined(); |
||||
|
expect(screen.queryByText("۱۶۰ تا ۱۷۰")).toBeNull(); |
||||
|
}); |
||||
|
|
||||
|
it("E2E Scenario 4: QuestionDropdown multi-select behavior and max_select enforcement", async () => { |
||||
|
const { QuestionDropdown } = await import("./question-dropdown"); |
||||
|
let currentAnswers: any = null; |
||||
|
|
||||
|
function TestDropdownContainer({ question }: { question: QuestionField }) { |
||||
|
const { answers } = useQuestionAnswers(); |
||||
|
currentAnswers = answers; |
||||
|
return <QuestionDropdown question={question} />; |
||||
|
} |
||||
|
|
||||
|
const question: QuestionField = { |
||||
|
id: "beliefs_lifestyle.what_is_your_status_regarding_smoking_alcohol_or_substances", |
||||
|
title: "وضعیت شما در خصوص دخانیات و الکل", |
||||
|
type: "dropdown", |
||||
|
order: 1, |
||||
|
required: true, |
||||
|
isVisible: true, |
||||
|
description: "", |
||||
|
tooltip: "", |
||||
|
extras: { placeHolder: "انتخاب کنید" }, |
||||
|
options: [ |
||||
|
{ id: "no_tobacco", value: "no_tobacco", label: "هیچکدام (عدم مصرف)", order: 1 }, |
||||
|
{ id: "hookah_rarely", value: "hookah_rarely", label: "قلیان گهگاه", order: 2 }, |
||||
|
{ id: "cigarettes_rarely", value: "cigarettes_rarely", label: "سیگار گهگاه", order: 3 }, |
||||
|
], |
||||
|
ui_config: { is_multi: true }, |
||||
|
}; |
||||
|
|
||||
|
render( |
||||
|
<QueryClientProvider client={queryClient}> |
||||
|
<QuestionAnswersProvider slug="beliefs_lifestyle" questions={[question]}> |
||||
|
<TestDropdownContainer question={question} /> |
||||
|
</QuestionAnswersProvider> |
||||
|
</QueryClientProvider> |
||||
|
); |
||||
|
|
||||
|
// Open dropdown
|
||||
|
const trigger = screen.getByRole("button", { name: "انتخاب کنید" }); |
||||
|
fireEvent.click(trigger); |
||||
|
|
||||
|
// Select options (instant inline multi-select toggle)
|
||||
|
fireEvent.click(screen.getByRole("button", { name: "قلیان گهگاه" })); |
||||
|
fireEvent.click(screen.getByRole("button", { name: "سیگار گهگاه" })); |
||||
|
|
||||
|
// Trigger instantly shows both selected items
|
||||
|
expect(screen.getByRole("button", { name: /قلیان گهگاه, سیگار گهگاه/ })).toBeDefined(); |
||||
|
|
||||
|
// Check saved state
|
||||
|
const storedField = currentAnswers["beliefs_lifestyle.what_is_your_status_regarding_smoking_alcohol_or_substances"]; |
||||
|
expect(storedField).toBeDefined(); |
||||
|
expect(storedField.value).toEqual(["hookah_rarely", "cigarettes_rarely"]); |
||||
|
expect(storedField.option_id).toEqual(["hookah_rarely", "cigarettes_rarely"]); |
||||
|
}); |
||||
|
}); |
||||
|
|
||||
@ -0,0 +1,104 @@ |
|||||
|
import * as React from "react"; |
||||
|
import { useId } from "react"; |
||||
|
|
||||
|
const PATHS: Record<string, string> = { |
||||
|
/* Navigation & Arrows */ |
||||
|
arrowLeft: '<path d="M19 12H5"/><path d="m12 19-7-7 7-7"/>', |
||||
|
arrowRight: '<path d="M5 12h14"/><path d="m12 5 7 7-7 7"/>', |
||||
|
back: '<path d="M19 12H5"/><path d="m12 19-7-7 7-7"/>', |
||||
|
next: '<path d="M5 12h14"/><path d="m12 5 7 7-7 7"/>', |
||||
|
chevronLeft: '<path d="M15 18l-6-6 6-6"/>', |
||||
|
chevronRight: '<path d="M9 18l6-6-6-6"/>', |
||||
|
chevDown: '<path d="m6 9 6 6 6-6"/>', |
||||
|
chevUp: '<path d="m6 15 6-6 6 6"/>', |
||||
|
chevronsLeft: '<path d="M11 17l-5-5 5-5"/><path d="M18 17l-5-5 5-5"/>', |
||||
|
chevronsRight: '<path d="M13 17l5-5-5-5"/><path d="M6 17l5-5-5-5"/>', |
||||
|
|
||||
|
/* Common UI Actions */ |
||||
|
search: '<circle cx="11" cy="11" r="7"/><line x1="21" y1="21" x2="16.5" y2="16.5"/>', |
||||
|
x: '<line x1="5" y1="5" x2="19" y2="19"/><line x1="19" y1="5" x2="5" y2="19"/>', |
||||
|
close: '<line x1="5" y1="5" x2="19" y2="19"/><line x1="19" y1="5" x2="5" y2="19"/>', |
||||
|
plus: '<line x1="12" y1="5" x2="12" y2="19"/><line x1="5" y1="12" x2="19" y2="12"/>', |
||||
|
check: '<path d="m4 12.5 5 5L20 6.5"/>', |
||||
|
checkmark: '<path d="m4 12.5 5 5L20 6.5"/>', |
||||
|
dots: '<circle cx="12" cy="5" r="1.5"/><circle cx="12" cy="12" r="1.5"/><circle cx="12" cy="19" r="1.5"/>', |
||||
|
moreVertical: '<circle cx="12" cy="5" r="1.5"/><circle cx="12" cy="12" r="1.5"/><circle cx="12" cy="19" r="1.5"/>', |
||||
|
moreHorizontal: '<circle cx="5" cy="12" r="1.5"/><circle cx="12" cy="12" r="1.5"/><circle cx="19" cy="12" r="1.5"/>', |
||||
|
pencil: '<path d="M17 3a2.8 2.8 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z"/>', |
||||
|
edit: '<path d="M17 3a2.8 2.8 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5Z"/>', |
||||
|
trash: '<path d="M3 6h18"/><path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6"/><path d="M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"/>', |
||||
|
refresh: '<path d="M21 12a9 9 0 1 1-2.64-6.36"/><path d="M21 4v5h-5"/>', |
||||
|
filter: '<path d="M3 5h18l-7 8v6l-4 2v-8Z"/>', |
||||
|
share: '<circle cx="18" cy="5" r="3"/><circle cx="6" cy="12" r="3"/><circle cx="18" cy="19" r="3"/><line x1="8.6" y1="10.5" x2="15.4" y2="6.5"/><line x1="8.6" y1="13.5" x2="15.4" y2="17.5"/>', |
||||
|
|
||||
|
/* Info, Status & Security */ |
||||
|
info: '<circle cx="12" cy="12" r="9"/><line x1="12" y1="16" x2="12" y2="12"/><line x1="12" y1="8" x2="12.01" y2="8"/>', |
||||
|
alert: '<path d="M10.3 3.3 1.8 18a2 2 0 0 0 1.7 3h17a2 2 0 0 0 1.7-3L13.7 3.3a2 2 0 0 0-3.4 0Z"/><line x1="12" y1="9" x2="12" y2="13.5"/><circle cx="12" cy="17" r=".6" fill="currentColor"/>', |
||||
|
alertCircle: '<circle cx="12" cy="12" r="9"/><line x1="12" y1="8" x2="12" y2="12"/><line x1="12" y1="16" x2="12.01" y2="16"/>', |
||||
|
lock: '<rect x="3" y="11" width="18" height="11" rx="2" ry="2"/><path d="M7 11V7a5 5 0 0 1 10 0v4"/>', |
||||
|
key: '<path d="m21 2-2 2m-1.5 1.5L14 9l-2-2-4 4 2 2-3 3H3v4h4v-2h2v-2l2.5-2.5"/><circle cx="15.5" cy="8.5" r="2.5"/>', |
||||
|
clock: '<circle cx="12" cy="12" r="9"/><path d="M12 7v5l3 2"/>', |
||||
|
calendar: '<rect x="3" y="4" width="18" height="18" rx="2"/><line x1="16" y1="2" x2="16" y2="6"/><line x1="8" y1="2" x2="8" y2="6"/><line x1="3" y1="10" x2="21" y2="10"/>', |
||||
|
calendarDays: '<rect x="3" y="4" width="18" height="18" rx="2"/><line x1="16" y1="2" x2="16" y2="6"/><line x1="8" y1="2" x2="8" y2="6"/><line x1="3" y1="10" x2="21" y2="10"/><path d="M8 14h.01M12 14h.01M16 14h.01M8 18h.01M12 18h.01M16 18h.01"/>', |
||||
|
calendarDot: '<rect x="3" y="4" width="18" height="18" rx="2"/><line x1="16" y1="2" x2="16" y2="6"/><line x1="8" y1="2" x2="8" y2="6"/><line x1="3" y1="10" x2="21" y2="10"/><circle cx="12" cy="15" r="1"/>', |
||||
|
clipboardCheck: '<rect x="8" y="2" width="8" height="4" rx="1"/><path d="M9 4H6.5A1.5 1.5 0 0 0 5 5.5v15A1.5 1.5 0 0 0 6.5 22h11a1.5 1.5 0 0 0 1.5-1.5v-15A1.5 1.5 0 0 0 17.5 4H15"/><path d="m9 14 2 2 4-4"/>', |
||||
|
graduationCap: '<path d="M22 10v6M2 10l10-5 10 5-10 5z"/><path d="M6 12v5c3 3 9 3 12 0v-5"/>', |
||||
|
bookOpen: '<path d="M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z"/><path d="M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z"/>', |
||||
|
briefcase: '<rect x="2" y="7" width="20" height="14" rx="2" ry="2"/><path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"/>', |
||||
|
location: '<path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"/><circle cx="12" cy="10" r="3"/>', |
||||
|
|
||||
|
/* Communication & Support */ |
||||
|
headphones: '<path d="M3 18v-6a9 9 0 0 1 18 0v6"/><path d="M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z"/>', |
||||
|
support: '<path d="M3 18v-6a9 9 0 0 1 18 0v6"/><path d="M21 19a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3zM3 19a2 2 0 0 0 2 2h1a2 2 0 0 0 2-2v-3a2 2 0 0 0-2-2H3z"/>', |
||||
|
phone: '<path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z"/>', |
||||
|
messageSquare: '<path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"/>', |
||||
|
video: '<rect x="2" y="6" width="13" height="12" rx="2"/><path d="m15 11 7-4v10l-7-4Z"/>', |
||||
|
mic: '<rect x="9" y="2" width="6" height="11" rx="3"/><path d="M5 10a7 7 0 0 0 14 0"/><line x1="12" y1="17" x2="12" y2="21"/>', |
||||
|
mic2: '<path d="M12 1a4 4 0 0 0-4 4v6a4 4 0 0 0 8 0V5a4 4 0 0 0-4-4Z"/><path d="M19 11a7 7 0 0 1-14 0"/><line x1="12" y1="18" x2="12" y2="22"/>', |
||||
|
|
||||
|
/* People & Match */ |
||||
|
users: '<path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 0 0-3-3.9"/><path d="M16 3.1a4 4 0 0 1 0 7.8"/>', |
||||
|
switchAccount: '<path d="M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M22 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/>', |
||||
|
eye: '<path d="M2 12s3.5-7 10-7 10 7 10 7-3.5 7-10 7-10-7-10-7Z"/><circle cx="12" cy="12" r="3"/>', |
||||
|
eyeOff: '<path d="M9.9 4.24A9.1 9.1 0 0 1 12 4c6.5 0 10 7 10 7a13 13 0 0 1-2.16 3.19"/><path d="M6.6 6.6A13 13 0 0 0 2 11s3.5 7 10 7a9 9 0 0 0 5.4-1.6"/><path d="m2 2 20 20"/><path d="M9.5 9.5a3 3 0 0 0 4.2 4.2"/>', |
||||
|
heart: '<path d="M19 14c1.5-1.5 3-3.4 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.8 0-3.4 1-4.5 2.5C10.9 4 9.3 3 7.5 3A5.5 5.5 0 0 0 2 8.5c0 2.1 1.5 4 3 5.5l7 7Z"/>', |
||||
|
star: '<polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"/>', |
||||
|
diamond: '<path d="M6 3h12l4 7-10 11L2 10z"/><path d="M2 10h20"/><path d="m12 21 4-11-4-7-4 7z"/>', |
||||
|
|
||||
|
/* Documents, Media & Location */ |
||||
|
file: '<path d="M14 3H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V8Z"/><path d="M14 3v5h5"/>', |
||||
|
document: '<path d="M14 3H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V8Z"/><path d="M14 3v5h5"/><line x1="8" y1="13" x2="16" y2="13"/><line x1="8" y1="17" x2="13" y2="17"/>', |
||||
|
mapPin: '<path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"/><circle cx="12" cy="10" r="3"/>', |
||||
|
upload: '<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><path d="m7 9 5-5 5 5"/><line x1="12" y1="4" x2="12" y2="16"/>', |
||||
|
download: '<path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><path d="m7 11 5 5 5-5"/><line x1="12" y1="4" x2="12" y2="16"/>', |
||||
|
tag: '<path d="M12 2H2v10l10 10 10-10Z"/><circle cx="6.5" cy="6.5" r="1.5"/>', |
||||
|
globe: '<circle cx="12" cy="12" r="9"/><path d="M3 12h18M12 3a14 14 0 0 1 0 18M12 3a14 14 0 0 0 0 18"/>', |
||||
|
home: '<path d="M3 10.5 12 3l9 7.5"/><path d="M5 9.5V21h14V9.5"/>', |
||||
|
play: '<path d="M7 4.5 19 12 7 19.5Z"/>', |
||||
|
pause: '<rect x="6" y="4" width="4" height="16" rx="1"/><rect x="14" y="4" width="4" height="16" rx="1"/>', |
||||
|
}; |
||||
|
|
||||
|
export type IconName = keyof typeof PATHS; |
||||
|
|
||||
|
export type IcProps = React.ComponentProps<"svg"> & { |
||||
|
name: IconName; |
||||
|
}; |
||||
|
|
||||
|
export function Ic({ name, className, ...rest }: IcProps) { |
||||
|
const path = PATHS[name] || PATHS.info; |
||||
|
return ( |
||||
|
<svg |
||||
|
viewBox="0 0 24 24" |
||||
|
fill="none" |
||||
|
stroke="currentColor" |
||||
|
strokeWidth="1.8" |
||||
|
strokeLinecap="round" |
||||
|
strokeLinejoin="round" |
||||
|
className={className} |
||||
|
dangerouslySetInnerHTML={{ __html: path }} |
||||
|
{...rest} |
||||
|
/> |
||||
|
); |
||||
|
} |
||||
|
|
||||
|
export default Ic; |
||||
841
src/translations/locales/ar.json
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
869
src/translations/locales/az.json
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
841
src/translations/locales/bn.json
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1327
src/translations/locales/da.json
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1363
src/translations/locales/de.json
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -154,7 +154,7 @@ |
|||||
"Dark / Black": "Dark / Black", |
"Dark / Black": "Dark / Black", |
||||
"Dark Tan / Brown": "Dark Tan / Brown", |
"Dark Tan / Brown": "Dark Tan / Brown", |
||||
"Date of Birth": "Date of Birth", |
"Date of Birth": "Date of Birth", |
||||
"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.": "Dear user, welcome to the Habib Marriage application. Please read the following rules and regulations carefully before using the services of this platform. Your registration and use of this application constitute full acceptance of these rules.", |
|
||||
|
"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.": "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.", |
||||
"Decline": "Decline", |
"Decline": "Decline", |
||||
"Dedicated to Personal Growth": "Dedicated to Personal Growth", |
"Dedicated to Personal Growth": "Dedicated to Personal Growth", |
||||
"Depends on reason, duration, and conditions": "Depends on reason, duration, and conditions", |
"Depends on reason, duration, and conditions": "Depends on reason, duration, and conditions", |
||||
@ -162,7 +162,7 @@ |
|||||
"Depends on the country and future residence": "Depends on the country and future residence", |
"Depends on the country and future residence": "Depends on the country and future residence", |
||||
"Desired Age Range of Future Spouse": "Desired Age Range of Future Spouse", |
"Desired Age Range of Future Spouse": "Desired Age Range of Future Spouse", |
||||
"Desired Body Type of Future Spouse": "Desired Body Type of Future Spouse", |
"Desired Body Type of Future Spouse": "Desired Body Type of Future Spouse", |
||||
"Desired Clothing style for Future Spouse": "Desired Clothing Style for Future Spouse", |
|
||||
|
"Desired Clothing style for Future Spouse": "Desired Clothing style for Future Spouse", |
||||
"Desired Employment Status of Future Spouse": "Desired Employment Status of Future Spouse", |
"Desired Employment Status of Future Spouse": "Desired Employment Status of Future Spouse", |
||||
"Desired Ethnicity, Language, or Nationality of Future Spouse": "Desired Ethnicity, Language, or Nationality of Future Spouse", |
"Desired Ethnicity, Language, or Nationality of Future Spouse": "Desired Ethnicity, Language, or Nationality of Future Spouse", |
||||
"Desired Height Range of Future Spouse": "Desired Height Range of Future Spouse", |
"Desired Height Range of Future Spouse": "Desired Height Range of Future Spouse", |
||||
@ -248,8 +248,8 @@ |
|||||
"General Health:": "General Health:", |
"General Health:": "General Health:", |
||||
"German": "German", |
"German": "German", |
||||
"Germany": "Germany", |
"Germany": "Germany", |
||||
"Get Advisor": "Talk to Advisor", |
|
||||
"Get an advisor": "Need Marriage Guidance?", |
|
||||
|
"Get Advisor": "Get Advisor", |
||||
|
"Get an advisor": "Get an advisor", |
||||
"Glasser 5 Needs Test": "Glasser 5 Needs Test", |
"Glasser 5 Needs Test": "Glasser 5 Needs Test", |
||||
"Go back": "Go back", |
"Go back": "Go back", |
||||
"Good": "Good", |
"Good": "Good", |
||||
@ -290,7 +290,7 @@ |
|||||
"Identity & Demographics": "Identity & Demographics", |
"Identity & Demographics": "Identity & Demographics", |
||||
"Identity Verification and Documents": "Identity Verification and Documents", |
"Identity Verification and Documents": "Identity Verification and Documents", |
||||
"Identity Verification:": "Identity Verification:", |
"Identity Verification:": "Identity Verification:", |
||||
"If you encounter any issues, please feel free to contact our support specialists in WhatsApp": "If you encounter any issues, please feel free to contact our support specialists on WhatsApp.", |
|
||||
|
"If you encounter any issues, please feel free to contact our support specialists in WhatsApp": "If you encounter any issues, please feel free to contact our support specialists in WhatsApp", |
||||
"If you have any special conditions regarding work, income, renting, home buying, migration, or future place of residence, please explain briefly.": "If you have any special conditions regarding work, income, renting, home buying, migration, or future place of residence, please explain briefly.", |
"If you have any special conditions regarding work, income, renting, home buying, migration, or future place of residence, please explain briefly.": "If you have any special conditions regarding work, income, renting, home buying, migration, or future place of residence, please explain briefly.", |
||||
"If you proceed, we will notify the other party, and upon their approval, you can view each other's contact information.": "If you proceed, we will notify the other party, and upon their approval, you can view each other's contact information.", |
"If you proceed, we will notify the other party, and upon their approval, you can view each other's contact information.": "If you proceed, we will notify the other party, and upon their approval, you can view each other's contact information.", |
||||
"Important Note": "Important Note", |
"Important Note": "Important Note", |
||||
@ -407,7 +407,7 @@ |
|||||
"Not a good personal fit": "Not a good personal fit", |
"Not a good personal fit": "Not a good personal fit", |
||||
"Not committed": "Not committed", |
"Not committed": "Not committed", |
||||
"Not important": "Not important", |
"Not important": "Not important", |
||||
"Not sure what to do next? Our psychology section is here to guide you at every step.": "Unsure about your next step? Our expert counselors are here to help you make confident decisions.", |
|
||||
|
"Not sure what to do next? Our psychology section is here to guide you at every step.": "Not sure what to do next? Our psychology section is here to guide you at every step.", |
||||
"Nothing is shared without your consent.": "Nothing is shared without your consent.", |
"Nothing is shared without your consent.": "Nothing is shared without your consent.", |
||||
"Number of Children": "Number of Children", |
"Number of Children": "Number of Children", |
||||
"Number of Siblings": "Number of Siblings", |
"Number of Siblings": "Number of Siblings", |
||||
@ -503,7 +503,7 @@ |
|||||
"Qatar": "Qatar", |
"Qatar": "Qatar", |
||||
"Quitting": "Quitting", |
"Quitting": "Quitting", |
||||
"Quran Recitation and Religious Studies": "Quran Recitation and Religious Studies", |
"Quran Recitation and Religious Studies": "Quran Recitation and Religious Studies", |
||||
"Read the terms and conditions carefully so that you don't run into any problems in the next process - reading this section is mandatory.": "Please read the terms and conditions carefully to avoid any issues in subsequent steps — reading this section is mandatory.", |
|
||||
|
"Read the terms and conditions carefully so that you don't run into any problems in the next process - reading this section is mandatory.": "Read the terms and conditions carefully so that you don't run into any problems in the next process - reading this section is mandatory.", |
||||
"Reading": "Reading", |
"Reading": "Reading", |
||||
"Reason for Separation": "Reason for Separation", |
"Reason for Separation": "Reason for Separation", |
||||
"Receiving child support regularly.": "Receiving child support regularly.", |
"Receiving child support regularly.": "Receiving child support regularly.", |
||||
@ -626,7 +626,7 @@ |
|||||
"Swipe to confirm rejection": "Swipe to confirm rejection", |
"Swipe to confirm rejection": "Swipe to confirm rejection", |
||||
"Swipe to continue": "Swipe to continue", |
"Swipe to continue": "Swipe to continue", |
||||
"Swipe to pay 50 Habib Coins": "Swipe to pay 50 Habib Coins", |
"Swipe to pay 50 Habib Coins": "Swipe to pay 50 Habib Coins", |
||||
"Taking this test is not mandatory, but it will help you better search for a spouse. The Personality test is a test for self-knowledge and better understanding of your spouse.": "Taking this test is not mandatory, but it will help you search for a compatible spouse. The personality test provides deeper self-knowledge and mutual understanding with your future spouse.", |
|
||||
|
"Taking this test is not mandatory, but it will help you better search for a spouse. The Personality test is a test for self-knowledge and better understanding of your spouse.": "Taking this test is not mandatory, but it will help you better search for a spouse. The Personality test is a test for self-knowledge and better understanding of your spouse.", |
||||
"Taking this test is not mandatory, but it will help you better understand your priorities and find a more compatible spouse.": "Taking this test is not mandatory, but it will help you better understand your priorities and find a more compatible spouse.", |
"Taking this test is not mandatory, but it will help you better understand your priorities and find a more compatible spouse.": "Taking this test is not mandatory, but it will help you better understand your priorities and find a more compatible spouse.", |
||||
"Technical or Vocational Training": "Technical or Vocational Training", |
"Technical or Vocational Training": "Technical or Vocational Training", |
||||
"Technical prevention of screenshots from profiles and chat environments.": "Technical prevention of screenshots from profiles and chat environments.", |
"Technical prevention of screenshots from profiles and chat environments.": "Technical prevention of screenshots from profiles and chat environments.", |
||||
@ -634,10 +634,10 @@ |
|||||
"Tehran": "Tehran", |
"Tehran": "Tehran", |
||||
"Temporary Residence": "Temporary Residence", |
"Temporary Residence": "Temporary Residence", |
||||
"Temporary conditions": "Temporary conditions", |
"Temporary conditions": "Temporary conditions", |
||||
"Temporary with family okay": "Living temporarily with family is acceptable", |
|
||||
"Thank you for giving us feedback, we would be very happy if you also let us know the final result.": "Thank you for your feedback. We would appreciate it if you could also let us know the final result.", |
|
||||
"Thank you for your feedback. Our support team will investigate the matter and notify you of the result. Please wait patiently during the review; our support will contact you.": "Thank you for your feedback. Our support team will investigate the matter and notify you of the result. Please wait patiently during the review; our support team will contact you.", |
|
||||
"Thank you for your feedback. To complete the process, please submit the final outcome of this introduction/contact so that the final status can be determined. If the final status is not yet determined, you can stay in this state until it is finalized.": "Thank you for your feedback. To complete the process, please submit the final outcome of this introduction/contact so that the final status can be determined. If the final status is not yet determined, you can remain in this state until it is finalized.", |
|
||||
|
"Temporary with family okay": "Temporary with family okay", |
||||
|
"Thank you for giving us feedback, we would be very happy if you also let us know the final result.": "Thank you for giving us feedback, we would be very happy if you also let us know the final result.", |
||||
|
"Thank you for your feedback. Our support team will investigate the matter and notify you of the result. Please wait patiently during the review; our support will contact you.": "Thank you for your feedback. Our support team will investigate the matter and notify you of the result. Please wait patiently during the review; our support will contact you.", |
||||
|
"Thank you for your feedback. To complete the process, please submit the final outcome of this introduction/contact so that the final status can be determined. If the final status is not yet determined, you can stay in this state until it is finalized.": "Thank you for your feedback. To complete the process, please submit the final outcome of this introduction/contact so that the final status can be determined. If the final status is not yet determined, you can stay in this state until it is finalized.", |
||||
"The call may start 10-15 minutes earlier or later than scheduled.": "The call may start 10-15 minutes earlier or later than scheduled.", |
"The call may start 10-15 minutes earlier or later than scheduled.": "The call may start 10-15 minutes earlier or later than scheduled.", |
||||
"The selected candidate will contact your family shortly.": "The selected candidate will contact your family shortly.", |
"The selected candidate will contact your family shortly.": "The selected candidate will contact your family shortly.", |
||||
"The value entered seems incorrect. Please provide a realistic value.": "The value entered seems incorrect. Please provide a realistic value.", |
"The value entered seems incorrect. Please provide a realistic value.": "The value entered seems incorrect. Please provide a realistic value.", |
||||
@ -691,10 +691,10 @@ |
|||||
"Very religious and committed": "Very religious and committed", |
"Very religious and committed": "Very religious and committed", |
||||
"View Contact": "View Contact", |
"View Contact": "View Contact", |
||||
"View Contact Details": "View Contact Details", |
"View Contact Details": "View Contact Details", |
||||
"View More Details": "View Full Profile", |
|
||||
|
"View More Details": "View More Details", |
||||
"View Profile": "View Profile", |
"View Profile": "View Profile", |
||||
"View contact number": "View contact number", |
"View contact number": "View contact number", |
||||
"View more details": "View Full Profile", |
|
||||
|
"View more details": "View more details", |
||||
"View profile": "View profile", |
"View profile": "View profile", |
||||
"Watch Video": "Watch Video", |
"Watch Video": "Watch Video", |
||||
"We are in the acquaintance/proposal process and nothing is finalized yet": "We are in the acquaintance/proposal process and nothing is finalized yet", |
"We are in the acquaintance/proposal process and nothing is finalized yet": "We are in the acquaintance/proposal process and nothing is finalized yet", |
||||
@ -719,7 +719,7 @@ |
|||||
"Work Location": "Work Location", |
"Work Location": "Work Location", |
||||
"Work Visa": "Work Visa", |
"Work Visa": "Work Visa", |
||||
"Working Student": "Working Student", |
"Working Student": "Working Student", |
||||
"Write any important point that was not covered in the options above here.": "Please write any important points not covered in the options above here.", |
|
||||
|
"Write any important point that was not covered in the options above here.": "Write any important point that was not covered in the options above here.", |
||||
"Write other options...": "Write other options...", |
"Write other options...": "Write other options...", |
||||
"YOU HAVE A NEW MATCH!": "YOU HAVE A NEW MATCH!", |
"YOU HAVE A NEW MATCH!": "YOU HAVE A NEW MATCH!", |
||||
"YYYY-MM-DD": "YYYY-MM-DD", |
"YYYY-MM-DD": "YYYY-MM-DD", |
||||
@ -733,10 +733,10 @@ |
|||||
"You can now view their family's contact details and arrange further steps.": "You can now view their family's contact details and arrange further steps.", |
"You can now view their family's contact details and arrange further steps.": "You can now view their family's contact details and arrange further steps.", |
||||
"You can pause the survey anytime and resume later. Your progress is saved automatically.": "You can pause the survey anytime and resume later. Your progress is saved automatically.", |
"You can pause the survey anytime and resume later. Your progress is saved automatically.": "You can pause the survey anytime and resume later. Your progress is saved automatically.", |
||||
"You can't edit your profile while we're searching for matches": "You can't edit your profile while we're searching for matches", |
"You can't edit your profile while we're searching for matches": "You can't edit your profile while we're searching for matches", |
||||
"You currently do not have an active subscription. Activation of subscription is only possible when your first case is introduced to you.": "You currently do not have an active subscription. Subscription activation is only possible once your first match is introduced to you.", |
|
||||
|
"You currently do not have an active subscription. Activation of subscription is only possible when your first case is introduced to you.": "You currently do not have an active subscription. Activation of subscription is only possible when your first case is introduced to you.", |
||||
"You have active access to view candidates.": "You have active access to view candidates.", |
"You have active access to view candidates.": "You have active access to view candidates.", |
||||
"You will be contacted by your consultant.": "You will be contacted by your consultant.", |
"You will be contacted by your consultant.": "You will be contacted by your consultant.", |
||||
"You've completed all required fields. However, filling in all sections will help us find better matches for you": "You've completed all required fields. However, filling in all sections will help us find better matches for you.", |
|
||||
|
"You've completed all required fields. However, filling in all sections will help us find better matches for you": "You've completed all required fields. However, filling in all sections will help us find better matches for you", |
||||
"Your Hobbies and Main Interests": "Your Hobbies and Main Interests", |
"Your Hobbies and Main Interests": "Your Hobbies and Main Interests", |
||||
"Your Personality Traits": "Your Personality Traits", |
"Your Personality Traits": "Your Personality Traits", |
||||
"Your details are only used for the matching process.": "Your details are only used for the matching process.", |
"Your details are only used for the matching process.": "Your details are only used for the matching process.", |
||||
@ -753,7 +753,7 @@ |
|||||
"marriages": "marriages", |
"marriages": "marriages", |
||||
"matches": "matches", |
"matches": "matches", |
||||
"play": "play", |
"play": "play", |
||||
"terms & conditions": "Terms & Conditions", |
|
||||
|
"terms & conditions": "terms & conditions", |
||||
"user profiles": "user profiles", |
"user profiles": "user profiles", |
||||
"[email protected]": "[email protected]", |
"[email protected]": "[email protected]", |
||||
"video": "video", |
"video": "video", |
||||
@ -838,7 +838,7 @@ |
|||||
"General Information & Personal Details": "General Information & Personal Details", |
"General Information & Personal Details": "General Information & Personal Details", |
||||
"I currently have no specific illness or physical limitation.": "I currently have no specific illness or physical limitation.", |
"I currently have no specific illness or physical limitation.": "I currently have no specific illness or physical limitation.", |
||||
"I have a disability or physical limitation.": "I have a disability or physical limitation.", |
"I have a disability or physical limitation.": "I have a disability or physical limitation.", |
||||
"I have other illness or physical conditions.": "I have other illnesses or physical conditions.", |
|
||||
|
"I have other illness or physical conditions.": "I have other illness or physical conditions.", |
||||
"Please briefly describe your illness, limitation, or physical condition.": "Please briefly describe your illness, limitation, or physical condition.", |
"Please briefly describe your illness, limitation, or physical condition.": "Please briefly describe your illness, limitation, or physical condition.", |
||||
"Are you currently undergoing counseling or treatment related to mental health?": "Are you currently undergoing counseling or treatment related to mental health?", |
"Are you currently undergoing counseling or treatment related to mental health?": "Are you currently undergoing counseling or treatment related to mental health?", |
||||
"Are you currently taking medication for mental health-related issues?": "Are you currently taking medication for mental health-related issues?", |
"Are you currently taking medication for mental health-related issues?": "Are you currently taking medication for mental health-related issues?", |
||||
@ -1243,5 +1243,700 @@ |
|||||
"Some required fields are missing or invalid. Please check your answers.": "Some required fields are missing or invalid. Please check your answers.", |
"Some required fields are missing or invalid. Please check your answers.": "Some required fields are missing or invalid. Please check your answers.", |
||||
"Tips": "Tips", |
"Tips": "Tips", |
||||
"Please complete the required fields: {fields}": "Please complete the required fields: {fields}", |
"Please complete the required fields: {fields}": "Please complete the required fields: {fields}", |
||||
"Session expired. Please log in again.": "Session expired. Please log in again." |
|
||||
|
"Session expired. Please log in again.": "Session expired. Please log in again.", |
||||
|
"To complete this assessment, you must answer all 187 questions by selecting the The instructions for this test are clear to me": "To complete this assessment, you must answer all 187 questions by selecting the The instructions for this test are clear to me", |
||||
|
"I am ready to answer each question as honestly as possible": "I am ready to answer each question as honestly as possible", |
||||
|
"I would prefer to have a house": "I would prefer to have a house", |
||||
|
"A": "true", |
||||
|
"B": "between the two", |
||||
|
"C": "false", |
||||
|
"I am able to find the necessary energy to face the difficulties I encounter": "I am able to find the necessary energy to face the difficulties I encounter", |
||||
|
"I feel a little uneasy in front of wild animals even if they are enclosed in secure cages": "I feel a little uneasy in front of wild animals even if they are enclosed in secure cages", |
||||
|
"I refrain from criticizing people, their ideas and opinions": "I refrain from criticizing people, their ideas and opinions", |
||||
|
"I make scathing remarks to people when I think they deserve it": "I make scathing remarks to people when I think they deserve it", |
||||
|
"I prefer classical music to popular music": "I prefer classical music to popular music", |
||||
|
"If I saw two neighbor children about to fight": "If I saw two neighbor children about to fight", |
||||
|
"In society": "In society", |
||||
|
"It's more interesting to be": "It's more interesting to be", |
||||
|
"On the street, I would prefer to stop to watch an artist painting rather than watch and listen to people arguing": "On the street, I would prefer to stop to watch an artist painting rather than watch and listen to people arguing", |
||||
|
"I generally manage to get along with demanding people, even if they boast or seem too self-satisfied": "I generally manage to get along with demanding people, even if they boast or seem too self-satisfied", |
||||
|
"I can almost always tell from a person's face if they are dishonest": "I can almost always tell from a person's face if they are dishonest", |
||||
|
"It would be good for everyone if vacations (holidays) were longer and everyone was obliged to take them": "It would be good for everyone if vacations (holidays) were longer and everyone was obliged to take them", |
||||
|
"I would prefer to take the risk of a job where I could earn irregularly but a lot, rather than accept a job where I would earn regularly but little": "I would prefer to take the risk of a job where I could earn irregularly but a lot, rather than accept a job where I would earn regularly but little", |
||||
|
"I talk about what I feel": "I talk about what I feel", |
||||
|
"I occasionally have a feeling of vague danger or become afraid for reasons I can't explain": "I occasionally have a feeling of vague danger or become afraid for reasons I can't explain", |
||||
|
"If I am unjustly criticized for an action I didn't commit, but which is attributed to me": "If I am unjustly criticized for an action I didn't commit, but which is attributed to me", |
||||
|
"With money you can get anything or almost anything": "With money you can get anything or almost anything", |
||||
|
"My decisions are dictated more by": "My decisions are dictated more by", |
||||
|
"Most people would be happier if they lived more among their peers and behaved like them": "Most people would be happier if they lived more among their peers and behaved like them", |
||||
|
"When I look in the mirror, I sometimes don't know where my right and left are": "When I look in the mirror, I sometimes don't know where my right and left are", |
||||
|
"When I speak, I like to": "When I speak, I like to", |
||||
|
"When something angers me, I calm down very quickly": "When something angers me, I calm down very quickly", |
||||
|
"Working the same number of hours and with equal pay, it's better to be": "Working the same number of hours and with equal pay, it's better to be", |
||||
|
"I have been designated to fulfill": "I have been designated to fulfill", |
||||
|
"Shovel\" is to \"to dig\" as \"knife\" is to\"": "Shovel\" is to \"to dig\" as \"knife\" is to\"", |
||||
|
"It happens that I can't fall asleep because an idea haunts me": "It happens that I can't fall asleep because an idea haunts me", |
||||
|
"In my personal life, I achieve the goals I set for myself": "In my personal life, I achieve the goals I set for myself", |
||||
|
"An outdated law should be changed": "An outdated law should be changed", |
||||
|
"I am not comfortable (I don't feel good) when working on a project that requires rapid action involving other people": "I am not comfortable (I don't feel good) when working on a project that requires rapid action involving other people", |
||||
|
"It seems to me that most people I know consider me an amusing conversation partner": "It seems to me that most people I know consider me an amusing conversation partner", |
||||
|
"When I see people with a disorderly, negligent appearance": "When I see people with a disorderly, negligent appearance", |
||||
|
"I feel a little embarrassed if I suddenly become the center of general attention in a social group": "I feel a little embarrassed if I suddenly become the center of general attention in a social group", |
||||
|
"I am always happy to take part in, for example, a large gathering, reception, ball or public assembly": "I am always happy to take part in, for example, a large gathering, reception, ball or public assembly", |
||||
|
"At school I preferred or prefer": "At school I preferred or prefer", |
||||
|
"When I am entrusted with responsibility in an area, I demand that my directives be followed or otherwise I resign": "When I am entrusted with responsibility in an area, I demand that my directives be followed or otherwise I resign", |
||||
|
"For parents, it is more important": "For parents, it is more important", |
||||
|
"In teamwork, I would prefer": "In teamwork, I would prefer", |
||||
|
"I feel the need to engage in a physical activity that requires a special effort": "I feel the need to engage in a physical activity that requires a special effort", |
||||
|
"I prefer to deal with well-mannered, polite people rather than with uneducated people": "I prefer to deal with well-mannered, polite people rather than with uneducated people", |
||||
|
"I feel very depressed when people criticize me": "I feel very depressed when people criticize me", |
||||
|
"When the boss calls me": "When the boss calls me", |
||||
|
"The world we live in needs": "The world we live in needs", |
||||
|
"In the texts I read, I perceive hidden intentions, not directly expressed": "In the texts I read, I perceive hidden intentions, not directly expressed", |
||||
|
"When I was a teenager, I participated in school sports activities": "When I was a teenager, I participated in school sports activities", |
||||
|
"My room is well-arranged and, in general, I know exactly where my things are": "My room is well-arranged and, in general, I know exactly where my things are", |
||||
|
"I sometimes get into a state of tension and irritation when I think about the events that happened during the day": "I sometimes get into a state of tension and irritation when I think about the events that happened during the day", |
||||
|
"When talking to people, I wonder if what I'm saying really interests them": "When talking to people, I wonder if what I'm saying really interests them", |
||||
|
"If I had to choose, I would prefer to be": "If I had to choose, I would prefer to be", |
||||
|
"On certain festive occasions and important anniversaries": "On certain festive occasions and important anniversaries", |
||||
|
"Tired\" is to \"work\" as \"proud\" is to\"": "Tired\" is to \"work\" as \"proud\" is to\"", |
||||
|
"Which of the following 3 things does not agree with the other two": "Which of the following 3 things does not agree with the other two", |
||||
|
"Friends have abandoned me": "Friends have abandoned me", |
||||
|
"Through some personal qualities, I feel superior to most people": "Through some personal qualities, I feel superior to most people", |
||||
|
"When something disturbs me, I try to hide what I feel from others": "When something disturbs me, I try to hide what I feel from others", |
||||
|
"I like to go to shows or have fun": "I like to go to shows or have fun", |
||||
|
"I believe that a very high degree of freedom is more valuable than good manners and respect for the law": "I believe that a very high degree of freedom is more valuable than good manners and respect for the law", |
||||
|
"In the presence of responsible people (with more experience, older or in important positions), I tend not to speak": "In the presence of responsible people (with more experience, older or in important positions), I tend not to speak", |
||||
|
"I find it difficult to address a large group of people or make a presentation in front of them": "I find it difficult to address a large group of people or make a presentation in front of them", |
||||
|
"I have a well-developed sense of direction when I am in an unfamiliar place": "I have a well-developed sense of direction when I am in an unfamiliar place", |
||||
|
"If someone gets angry with me": "If someone gets angry with me", |
||||
|
"When I read an article in a magazine that presents things in a distorted way, I tend to forget it rather than wanting to say how I see things": "When I read an article in a magazine that presents things in a distorted way, I tend to forget it rather than wanting to say how I see things", |
||||
|
".I don't remember unimportant things like the names of streets, shops, etc": ".I don't remember unimportant things like the names of streets, shops, etc", |
||||
|
"I would have liked the life of a veterinarian who takes care of sick or injured animals": "I would have liked the life of a veterinarian who takes care of sick or injured animals", |
||||
|
"I eat with appetite and always as neatly and cleanly as other people": "I eat with appetite and always as neatly and cleanly as other people", |
||||
|
"There are days when I'm in a bad mood and don't like to see anyone": "There are days when I'm in a bad mood and don't like to see anyone", |
||||
|
"I have sometimes been told that I show too much enthusiasm in my voice and gestures": "I have sometimes been told that I show too much enthusiasm in my voice and gestures", |
||||
|
"In adolescence, if I had a different opinion from my parents": "In adolescence, if I had a different opinion from my parents", |
||||
|
"I would prefer to have an office just for myself without sharing it with someone else": "I would prefer to have an office just for myself without sharing it with someone else", |
||||
|
"I prefer to enjoy life quietly in my own way, rather than being admired for my achievements": "I prefer to enjoy life quietly in my own way, rather than being admired for my achievements", |
||||
|
"I consider myself mature in many respects": "I consider myself mature in many respects", |
||||
|
"The way most people criticize discourages me more than it helps me": "The way most people criticize discourages me more than it helps me", |
||||
|
"I always manage to perfectly control the expression of my feelings": "I always manage to perfectly control the expression of my feelings", |
||||
|
"If I had the idea for an invention, I would prefer": "If I had the idea for an invention, I would prefer", |
||||
|
"Surprise\" is to \"strange\" as \"fear\" is to\"": "Surprise\" is to \"strange\" as \"fear\" is to\"", |
||||
|
"Which of the following 3 fractions does not belong to the category of the other 2": "Which of the following 3 fractions does not belong to the category of the other 2", |
||||
|
"Some people seem to ignore or avoid me and I don't see why": "Some people seem to ignore or avoid me and I don't see why", |
||||
|
"People treat me less kindly than I deserve for my good intentions": "People treat me less kindly than I deserve for my good intentions", |
||||
|
"The use of coarse words, even when there are no men and women together in the group": "The use of coarse words, even when there are no men and women together in the group", |
||||
|
"I have fewer friends than most people": "I have fewer friends than most people", |
||||
|
"I hate being in a place where there aren't many people to talk to": "I hate being in a place where there aren't many people to talk to", |
||||
|
"Although people sometimes consider me a joker, they still find me likeable": "Although people sometimes consider me a joker, they still find me likeable", |
||||
|
"I have experienced stage fright in social situations on various occasions": "I have experienced stage fright in social situations on various occasions", |
||||
|
"When I'm in a small group of people, I'm content to stay \"in the background,\" letting others carry on the conversation": "When I'm in a small group of people, I'm content to stay \"in the background,\" letting others carry on the conversation", |
||||
|
"I prefer to read": "I prefer to read", |
||||
|
"When authoritative people try to put pressure on me, I act according to their wishes": "When authoritative people try to put pressure on me, I act according to their wishes", |
||||
|
"My superiors and family members usually only make comments to me when they are truly justified": "My superiors and family members usually only make comments to me when they are truly justified", |
||||
|
"I dislike the way some people look at others on the street or in shops": "I dislike the way some people look at others on the street or in shops", |
||||
|
"I would prefer that during a long journey": "I would prefer that during a long journey", |
||||
|
"In situations that could have serious consequences if we are not understood, we should not hesitate to make jokes and make ourselves understood even at the expense of politeness and calmness": "In situations that could have serious consequences if we are not understood, we should not hesitate to make jokes and make ourselves understood even at the expense of politeness and calmness", |
||||
|
"If there are people in my circle of acquaintances who don't like me and let me know that I'm not to their liking": "If there are people in my circle of acquaintances who don't like me and let me know that I'm not to their liking", |
||||
|
"I feel embarrassed when I receive praise or compliments": "I feel embarrassed when I receive praise or compliments", |
||||
|
"I would prefer to have a salary": "I would prefer to have a salary", |
||||
|
"work To be constantly informed, up to date with what's happening, I prefer": "work To be constantly informed, up to date with what's happening, I prefer", |
||||
|
"I like to actively participate in social activities, to work on committees": "I like to actively participate in social activities, to work on committees", |
||||
|
"For the completion of a work task, I am only satisfied when the smallest details have been closely examined": "For the completion of a work task, I am only satisfied when the smallest details have been closely examined", |
||||
|
"It happens that very small things annoy me a lot": "It happens that very small things annoy me a lot", |
||||
|
"I sleep well without being agitated and without talking in my sleep": "I sleep well without being agitated and without talking in my sleep", |
||||
|
"If I had to choose, I would prefer in my professional activity": "If I had to choose, I would prefer in my professional activity", |
||||
|
"Size\" is to \"width\" as \"dishonesty\" is to\"": "Size\" is to \"width\" as \"dishonesty\" is to\"", |
||||
|
"AB\" is to \"DC\" as \"SR\" is to\"": "AB\" is to \"DC\" as \"SR\" is to\"", |
||||
|
"When people do or say things that are unreasonable": "When people do or say things that are unreasonable", |
||||
|
"When people talk loudly while I'm listening to music": "When people talk loudly while I'm listening to music", |
||||
|
"I think I could be considered as being": "I think I could be considered as being", |
||||
|
"I only attend meetings when I'm obliged to": "I only attend meetings when I'm obliged to", |
||||
|
"It's better to be realistic and not expect too much than to believe that everything will resolve itself": "It's better to be realistic and not expect too much than to believe that everything will resolve itself", |
||||
|
"When I think about the difficulties that will arise in my activity": "When I think about the difficulties that will arise in my activity", |
||||
|
"I easily approach people at gatherings": "I easily approach people at gatherings", |
||||
|
"When a little diplomacy or persuasive work is needed to get people to do something, I am called upon": "When a little diplomacy or persuasive work is needed to get people to do something, I am called upon", |
||||
|
"I think it's more interesting to be": "I think it's more interesting to be", |
||||
|
"If I am certain that someone is unfair or selfish, I tell them so even if it causes me inconvenience": "If I am certain that someone is unfair or selfish, I tell them so even if it causes me inconvenience", |
||||
|
"I say absurd things, jokingly, for the sake of play, just to amaze people and see how they react": "I say absurd things, jokingly, for the sake of play, just to amaze people and see how they react", |
||||
|
"I would like to write for a magazine in the entertainment section (theater, concert, )opera": "I would like to write for a magazine in the entertainment section (theater, concert, )opera", |
||||
|
"I never feel the need to scribble or fidget when I'm forced to sit still during a meeting": "I never feel the need to scribble or fidget when I'm forced to sit still during a meeting", |
||||
|
"If someone tells me something that I know doesn't correspond to reality, I immediately form the opinion that": "If someone tells me something that I know doesn't correspond to reality, I immediately form the opinion that", |
||||
|
"I have a feeling of a vague threat of punishment, even when I have done no wrong": "I have a feeling of a vague threat of punishment, even when I have done no wrong", |
||||
|
"The idea that an illness can be both psychological and physical in nature is exaggerated": "The idea that an illness can be both psychological and physical in nature is exaggerated", |
||||
|
"The pomp (grandeur) and splendor of major official ceremonies are customs that should be maintained": "The pomp (grandeur) and splendor of major official ceremonies are customs that should be maintained", |
||||
|
"If people thought I was too dreamy or too original, I would be upset": "If people thought I was too dreamy or too original, I would be upset", |
||||
|
"To accomplish something, I would prefer to work": "To accomplish something, I would prefer to work", |
||||
|
"I go through periods where it's hard for me to refrain from feeling sorry for myself": "I go through periods where it's hard for me to refrain from feeling sorry for myself", |
||||
|
"I get angry with people too quickly": "I get angry with people too quickly", |
||||
|
"I can easily give up some habits without having to take them up again": "I can easily give up some habits without having to take them up again", |
||||
|
"For equal pay, I would prefer to be": "For equal pay, I would prefer to be", |
||||
|
"Better\" is to \"worst\" as \"slower\" is to\"": "Better\" is to \"worst\" as \"slower\" is to\"", |
||||
|
"Which of the 3 answers below should be placed after the following group of letters: XOOOOXXOOOXXX": "Which of the 3 answers below should be placed after the following group of letters: XOOOOXXOOOXXX", |
||||
|
"It happens that when the time comes to do what was proposed to me and which I was happy about before, I no longer feel like working": "It happens that when the time comes to do what was proposed to me and which I was happy about before, I no longer feel like working", |
||||
|
"In most things I do, I manage to stay focused without being disturbed by people making a lot of noise around me": "In most things I do, I manage to stay focused without being disturbed by people making a lot of noise around me", |
||||
|
"I sometimes find myself telling strangers things that seem important to me, even if they haven't asked me anything": "I sometimes find myself telling strangers things that seem important to me, even if they haven't asked me anything", |
||||
|
"I spend many of my free hours discussing with friends about pleasant moments we have experienced together in the past": "I spend many of my free hours discussing with friends about pleasant moments we have experienced together in the past", |
||||
|
"I like to indulge in brave, even reckless acts just for fun": "I like to indulge in brave, even reckless acts just for fun", |
||||
|
"A messy room": "A messy room", |
||||
|
"I consider myself a very sociable person who visits many people": "I consider myself a very sociable person who visits many people", |
||||
|
"In conversations and discussions": "In conversations and discussions", |
||||
|
"I prefer music": "I prefer music", |
||||
|
"I appreciate the beauty of a poem more than that of a perfected weapon": "I appreciate the beauty of a poem more than that of a perfected weapon", |
||||
|
"If a well-placed observation of mine goes unnoticed": "If a well-placed observation of mine goes unnoticed", |
||||
|
"I would like to work in a rehabilitation service for offenders on provisional release": "I would like to work in a rehabilitation service for offenders on provisional release", |
||||
|
"When you have relationships with various strangers, you must be cautious because there are risks of contamination and other dangers that may arise": "When you have relationships with various strangers, you must be cautious because there are risks of contamination and other dangers that may arise", |
||||
|
"I prefer to travel abroad through a tourist organization on an itinerary (route) established by it, rather than deciding for myself on the places I will visit": "I prefer to travel abroad through a tourist organization on an itinerary (route) established by it, rather than deciding for myself on the places I will visit", |
||||
|
"I am rightly considered a stubborn, hardworking person, but not very successful": "I am rightly considered a stubborn, hardworking person, but not very successful", |
||||
|
"If it happens that people take advantage of my kindness, I don't get upset and forget quickly": "If it happens that people take advantage of my kindness, I don't get upset and forget quickly", |
||||
|
"If I were to witness a heated controversy arising during a discussion in a group": "If I were to witness a heated controversy arising during a discussion in a group", |
||||
|
"I like to organize what I have to do by myself, without others interrupting me or giving me advice": "I like to organize what I have to do by myself, without others interrupting me or giving me advice", |
||||
|
"In my actions, I am influenced by feelings of jealousy": "In my actions, I am influenced by feelings of jealousy", |
||||
|
"I completely agree with the following statement: \"Even if he's wrong, the boss is \".still the boss": "I completely agree with the following statement: \"Even if he's wrong, the boss is \".still the boss", |
||||
|
"I feel anxious when I think about all the things I have to do": "I feel anxious when I think about all the things I have to do", |
||||
|
"When I'm engaged in a game, the advice given to me by those around me doesn't bother me": "When I'm engaged in a game, the advice given to me by those around me doesn't bother me", |
||||
|
"Which of the following 3 words does not belong to the same category as the other 2": "Which of the following 3 words does not belong to the same category as the other 2", |
||||
|
"Flame\" is to \"heat\" as \"rose\" is to\"": "Flame\" is to \"heat\" as \"rose\" is to\"", |
||||
|
"I have agitated dreams that disturb my sleep": "I have agitated dreams that disturb my sleep", |
||||
|
"Even if the circumstances are truly unfavorable to the success of something, I still believe that I must try everything to succeed": "Even if the circumstances are truly unfavorable to the success of something, I still believe that I must try everything to succeed", |
||||
|
"I like to be in situations where, knowing very well what the group has to do, I naturally become the leader": "I like to be in situations where, knowing very well what the group has to do, I naturally become the leader", |
||||
|
"I would prefer to be dressed soberly and classically rather than stand out with an original, fashionable style": "I would prefer to be dressed soberly and classically rather than stand out with an original, fashionable style", |
||||
|
"A quiet evening dedicated to a favorite activity is more enjoyable to me than participating in a lively gathering": "A quiet evening dedicated to a favorite activity is more enjoyable to me than participating in a lively gathering", |
||||
|
"I remain resistant to the well-meaning suggestions of others, even when I realize I'm wrong": "I remain resistant to the well-meaning suggestions of others, even when I realize I'm wrong", |
||||
|
"In all the decisions I make, I always make it a duty to be guided by the fundamental rules of right and wrong": "In all the decisions I make, I always make it a duty to be guided by the fundamental rules of right and wrong", |
||||
|
"I feel somewhat uncomfortable when a group of people watches me while I work": "I feel somewhat uncomfortable when a group of people watches me while I work", |
||||
|
"What do you think about the following statement: \"Given that it's not always possible to work wisely, it's sometimes necessary to resort to coercion without \".unpleasantness": "What do you think about the following statement: \"Given that it's not always possible to work wisely, it's sometimes necessary to resort to coercion without \".unpleasantness", |
||||
|
"At school, I preferred": "At school, I preferred", |
||||
|
"It has sometimes happened to me that I got angry because people behind my back were saying malicious things about me that were entirely made up": "It has sometimes happened to me that I got angry because people behind my back were saying malicious things about me that were entirely made up", |
||||
|
"Conversations with ordinary people who conform to laws and customs": "Conversations with ordinary people who conform to laws and customs", |
||||
|
"Some things upset me so much that I prefer not to talk about them anymore": "Some things upset me so much that I prefer not to talk about them anymore", |
||||
|
"In a child's education, it is more important": "In a child's education, it is more important", |
||||
|
"People consider me a person of integrity (all of a piece), balanced and unaffected by life's successes and failures": "People consider me a person of integrity (all of a piece), balanced and unaffected by life's successes and failures", |
||||
|
"I believe that society should have the wisdom to change its habits and even abandon outdated ones": "I believe that society should have the wisdom to change its habits and even abandon outdated ones", |
||||
|
"I believe that in the modern world it is more important to solve": "I believe that in the modern world it is more important to solve", |
||||
|
"I enjoy more": "I enjoy more", |
||||
|
"I prefer to do something as I please rather than conform to established rules": "I prefer to do something as I please rather than conform to established rules", |
||||
|
"Before arguing something, I try to ensure the accuracy of what I'm going to say": "Before arguing something, I try to ensure the accuracy of what I'm going to say", |
||||
|
"Sometimes some small things \"get on my nerves\" in an unbearable way, even though I know they are unimportant": "Sometimes some small things \"get on my nerves\" in an unbearable way, even though I know they are unimportant", |
||||
|
"It rarely happens that under the influence of a momentary impulse I say things that are completely regrettable": "It rarely happens that under the influence of a momentary impulse I say things that are completely regrettable", |
||||
|
"If I were asked to participate in a charity event": "If I were asked to participate in a charity event", |
||||
|
"Which of the following 3 words does not belong to the same category as the other two": "Which of the following 3 words does not belong to the same category as the other two", |
||||
|
"Soon\" is to \"never\" what \"almost\" is to\"": "Soon\" is to \"never\" what \"almost\" is to\"", |
||||
|
"If I make a blunder in society, I manage to forget it quickly": "If I make a blunder in society, I manage to forget it quickly", |
||||
|
"I am considered a \"creative\" person who almost always has something to propose for the problems that arise": "I am considered a \"creative\" person who almost always has something to propose for the problems that arise", |
||||
|
"I believe I am": "I believe I am", |
||||
|
"I am considered a person who gets easily enthusiastic": "I am considered a person who gets easily enthusiastic", |
||||
|
"I like work that offers opportunities for change, varied tasks, travel even if this work involves risks": "I like work that offers opportunities for change, varied tasks, travel even if this work involves risks", |
||||
|
"I am a rather meticulous person who likes to do things as well as possible": "I am a rather meticulous person who likes to do things as well as possible", |
||||
|
"I like work where you have to be conscientious and precision is required": "I like work where you have to be conscientious and precision is required", |
||||
|
"I belong to the category of active people who can never sit still without doing anything": "I belong to the category of active people who can never sit still without doing anything", |
||||
|
"I am sure that I have not omitted any question from this questionnaire and that I have answered correctly each time": "I am sure that I have not omitted any question from this questionnaire and that I have answered correctly each time", |
||||
|
"How much do issues like savings, living expenses, housing, and future career occupy your mind?": "How much do issues like savings, living expenses, housing, and future career occupy your mind?", |
||||
|
"How much do you think about physical health, hygiene, and the likelihood of getting sick?": "How much do you think about physical health, hygiene, and the likelihood of getting sick?", |
||||
|
"How would you evaluate the intensity of your sex drive?": "How would you evaluate the intensity of your sex drive?", |
||||
|
"How cautiously do you act when taking risks or undertaking dangerous activities?": "How cautiously do you act when taking risks or undertaking dangerous activities?", |
||||
|
"How much do you avoid facing new experiences and starting unknown paths?": "How much do you avoid facing new experiences and starting unknown paths?", |
||||
|
"In the view of your friends and colleagues, how punctual, orderly, and precise are you?": "In the view of your friends and colleagues, how punctual, orderly, and precise are you?", |
||||
|
"How important is job security and a steady income to you?": "How important is job security and a steady income to you?", |
||||
|
"How much love, intimacy, and affection do you feel you need?": "How much love, intimacy, and affection do you feel you need?", |
||||
|
"How important is the welfare and happiness of other people to you?": "How important is the welfare and happiness of other people to you?", |
||||
|
"How much do you need others to accept and love you?": "How much do you need others to accept and love you?", |
||||
|
"How much do you need others to show you kindness and affection, and for you to feel a sense of belonging to them in return?": "How much do you need others to show you kindness and affection, and for you to feel a sense of belonging to them in return?", |
||||
|
"How much do you enjoy interacting with others and actively participating in gatherings, ceremonies, and group activities?": "How much do you enjoy interacting with others and actively participating in gatherings, ceremonies, and group activities?", |
||||
|
"According to your friends and colleagues, how warm, friendly, compassionate, and kind are you?": "According to your friends and colleagues, how warm, friendly, compassionate, and kind are you?", |
||||
|
"How important is having good relationships with loved ones and relatives to you, and how much time and energy do you invest in it?": "How important is having good relationships with loved ones and relatives to you, and how much time and energy do you invest in it?", |
||||
|
"How much do you need to choose everything you do by yourself?": "How much do you need to choose everything you do by yourself?", |
||||
|
"How strongly do you believe that no one should tell you how to run your life?": "How strongly do you believe that no one should tell you how to run your life?", |
||||
|
"How inclined are you to accomplish what you want regardless of interference or pressure from your spouse/partner?": "How inclined are you to accomplish what you want regardless of interference or pressure from your spouse/partner?", |
||||
|
"How much do you insist on having independent judgment in big and small life decisions and acting according to your own wishes?": "How much do you insist on having independent judgment in big and small life decisions and acting according to your own wishes?", |
||||
|
"How much do you need to have personal time available to use however you wish?": "How much do you need to have personal time available to use however you wish?", |
||||
|
"How much do you desire to travel to new places?": "How much do you desire to travel to new places?", |
||||
|
"How much do you seek change and new things, and feel bored by fixed work environments that do not change?": "How much do you seek change and new things, and feel bored by fixed work environments that do not change?", |
||||
|
"How much effort do you put into proving yourself and being recognized as a capable and competent person in your field?": "How much effort do you put into proving yourself and being recognized as a capable and competent person in your field?", |
||||
|
"How much do you like to give orders to others (commanding rather than taking commands)?": "How much do you like to give orders to others (commanding rather than taking commands)?", |
||||
|
"How competitive and progress-oriented do you consider yourself to be?": "How competitive and progress-oriented do you consider yourself to be?", |
||||
|
"How much do you want others (children, spouse, or friends) to listen to you and follow your word?": "How much do you want others (children, spouse, or friends) to listen to you and follow your word?", |
||||
|
"How hard do you try to prove that your idea or way is right and insist on convincing others to accept it?": "How hard do you try to prove that your idea or way is right and insist on convincing others to accept it?", |
||||
|
"How concerned are you with personal and professional growth, seeking to fulfill your potential?": "How concerned are you with personal and professional growth, seeking to fulfill your potential?", |
||||
|
"How much of your time do you spend learning new things in various fields?": "How much of your time do you spend learning new things in various fields?", |
||||
|
"How interested are you in jokes, humor, and storytelling?": "How interested are you in jokes, humor, and storytelling?", |
||||
|
"How much leisure time and personal hobbies do you feel you need?": "How much leisure time and personal hobbies do you feel you need?", |
||||
|
"How would you rate your good humor and sociability?": "How would you rate your good humor and sociability?", |
||||
|
"How much do you feel the need to engage in non-serious activities like cycling, fishing, watching movies, and other fun hobbies?": "How much do you feel the need to engage in non-serious activities like cycling, fishing, watching movies, and other fun hobbies?", |
||||
|
"How actively do you seek fun times and joyous occasions like parties, celebrations, games, and entertainment?": "How actively do you seek fun times and joyous occasions like parties, celebrations, games, and entertainment?", |
||||
|
"How important is laughing and making others laugh in your life?": "How important is laughing and making others laugh in your life?", |
||||
|
"In your view, how essential is fun, play, and joy in living a good life?": "In your view, how essential is fun, play, and joy in living a good life?", |
||||
|
"Very Low": "Very Low", |
||||
|
"Low": "Low", |
||||
|
"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", |
||||
|
"170 to 180 cm": "170 to 180 cm", |
||||
|
"180 to 190 cm": "180 to 190 cm", |
||||
|
"2 children": "2 children", |
||||
|
"3 children": "3 children", |
||||
|
"3 to 5 years": "3 to 5 years", |
||||
|
"4 children": "4 children", |
||||
|
"5 or more children": "5 or more children", |
||||
|
"Ability to Support Joint Living Expenses": "Ability to Support Joint Living Expenses", |
||||
|
"Able to support the main portion of living expenses": "Able to support the main portion of living expenses", |
||||
|
"Above 190 cm": "Above 190 cm", |
||||
|
"Accept ceremony with music and dancing": "Accept ceremony with music and dancing", |
||||
|
"Accept if it does not prevent a healthy joint life": "Accept if it does not prevent a healthy joint life", |
||||
|
"Accept mixed ceremony with music and dancing": "Accept mixed ceremony with music and dancing", |
||||
|
"Accept respectful mixed ceremony aligned with values": "Accept respectful mixed ceremony aligned with values", |
||||
|
"Accept respectful mixed ceremony without impermissible elements": "Accept respectful mixed ceremony without impermissible elements", |
||||
|
"Acceptance of Chronic Illness, Disability, or Medical Conditions in Future Spouse": "Acceptance of Chronic Illness, Disability, or Medical Conditions in Future Spouse", |
||||
|
"Acceptance of Future Spouse's History of Psychological Counseling or Therapy": "Acceptance of Future Spouse's History of Psychological Counseling or Therapy", |
||||
|
"Accepted documents: Passport, National ID card, Driver's license, Valid residence card, Official government ID.": "Accepted documents: Passport, National ID card, Driver's license, Valid residence card, Official government ID.", |
||||
|
"Additional Comments and Other Red Lines": "Additional Comments and Other Red Lines", |
||||
|
"Additional Details about Family Responsibility": "Additional Details about Family Responsibility", |
||||
|
"Additional Details on Children, Custody, and Family Conditions": "Additional Details on Children, Custody, and Family Conditions", |
||||
|
"Additional comments (optional)...": "Additional comments (optional)...", |
||||
|
"Additional comments regarding substance use": "Additional comments regarding substance use", |
||||
|
"Additional family notes (optional)": "Additional family notes (optional)", |
||||
|
"Affluent": "Affluent", |
||||
|
"Aims to identify value divergence; does not imply judging political opinions.": "Aims to identify value divergence; does not imply judging political opinions.", |
||||
|
"Aims to understand everyday style for matching expectations.": "Aims to understand everyday style for matching expectations.", |
||||
|
"Aims to understand the relative weight of appearance alongside other marriage criteria.": "Aims to understand the relative weight of appearance alongside other marriage criteria.", |
||||
|
"Alcohol is a strict red line": "Alcohol is a strict red line", |
||||
|
"Alignment in views is extremely important": "Alignment in views is extremely important", |
||||
|
"Always pray": "Always pray", |
||||
|
"Any communication beyond essential child matters is a red line": "Any communication beyond essential child matters is a red line", |
||||
|
"Appearance has moderate importance": "Appearance has moderate importance", |
||||
|
"Appearance is important, but only one of multiple criteria": "Appearance is important, but only one of multiple criteria", |
||||
|
"Appearance is not of significant importance to me": "Appearance is not of significant importance to me", |
||||
|
"Are there any mental health conditions that you believe your future spouse should know about?": "Are there any mental health conditions that you believe your future spouse should know about?", |
||||
|
"Around 1 to 2 years later": "Around 1 to 2 years later", |
||||
|
"Around 2 to 3 years later": "Around 2 to 3 years later", |
||||
|
"Aunt (Paternal / Maternal)": "Aunt (Paternal / Maternal)", |
||||
|
"Average / Middle": "Average / Middle", |
||||
|
"Balanced and dialogue-based: clear rules accompanied by dialogue and care": "Balanced and dialogue-based: clear rules accompanied by dialogue and care", |
||||
|
"Beliefs, Values, Lifestyle, and Personality": "Beliefs, Values, Lifestyle, and Personality", |
||||
|
"Board games / Puzzles": "Board games / Puzzles", |
||||
|
"Body Type / Physical Structure": "Body Type / Physical Structure", |
||||
|
"Both are responsible, but father takes a larger role in family leadership": "Both are responsible, but father takes a larger role in family leadership", |
||||
|
"Both are responsible, but mother takes a larger role in daily childcare": "Both are responsible, but mother takes a larger role in daily childcare", |
||||
|
"Both parents are alive and living together": "Both parents are alive and living together", |
||||
|
"Both parents are alive, but separated / divorced": "Both parents are alive, but separated / divorced", |
||||
|
"Business Owner / Entrepreneur": "Business Owner / Entrepreneur", |
||||
|
"Calm and introverted": "Calm and introverted", |
||||
|
"Can be decided based on family agreement": "Can be decided based on family agreement", |
||||
|
"Can be more social, but within religious and moral limits": "Can be more social, but within religious and moral limits", |
||||
|
"Career type and compatibility with family values is what matters": "Career type and compatibility with family values is what matters", |
||||
|
"Character, values, and mutual understanding are more important than looks": "Character, values, and mutual understanding are more important than looks", |
||||
|
"Child has reached legal age": "Child has reached legal age", |
||||
|
"Child has reached legal age (custody not applicable)": "Child has reached legal age (custody not applicable)", |
||||
|
"Childbearing and Future Family (Parenting Style)": "Childbearing and Future Family (Parenting Style)", |
||||
|
"Cigarettes are a red line": "Cigarettes are a red line", |
||||
|
"City / State of Current Residence": "City / State of Current Residence", |
||||
|
"City of Birth": "City of Birth", |
||||
|
"City of Upbringing / Growing Up": "City of Upbringing / Growing Up", |
||||
|
"City of birth": "City of birth", |
||||
|
"City of upbringing (optional)": "City of upbringing (optional)", |
||||
|
"City or state": "City or state", |
||||
|
"Clear portrait photo": "Clear portrait photo", |
||||
|
"Close, but maintaining personal independence": "Close, but maintaining personal independence", |
||||
|
"Communication issues and lack of commitment": "Communication issues and lack of commitment", |
||||
|
"Communicative / Loves dialogue": "Communicative / Loves dialogue", |
||||
|
"Company or workplace name (optional)": "Company or workplace name (optional)", |
||||
|
"Complete and modest hijab": "Complete and modest hijab", |
||||
|
"Confirm information accuracy": "Confirm information accuracy", |
||||
|
"Consume alcohol": "Consume alcohol", |
||||
|
"Contact info, residence, and trusted family liaison.": "Contact info, residence, and trusted family liaison.", |
||||
|
"Conventional but respectful of religion": "Conventional but respectful of religion", |
||||
|
"Country of Birth": "Country of Birth", |
||||
|
"Country of Current Residence": "Country of Current Residence", |
||||
|
"Country of Upbringing / Growing Up": "Country of Upbringing / Growing Up", |
||||
|
"Criteria, expectations, priorities, and deal-breakers for future spouse.": "Criteria, expectations, priorities, and deal-breakers for future spouse.", |
||||
|
"Cultural or religious differences": "Cultural or religious differences", |
||||
|
"Current Degree and Field of Study (For Students)": "Current Degree and Field of Study (For Students)", |
||||
|
"Current degree and field": "Current degree and field", |
||||
|
"Currently building appropriate financial conditions": "Currently building appropriate financial conditions", |
||||
|
"Currently in recovery / quitting": "Currently in recovery / quitting", |
||||
|
"Curvy / Full": "Curvy / Full", |
||||
|
"Custody is shared or periodic between parents": "Custody is shared or periodic between parents", |
||||
|
"Custody is with the other parent or someone else": "Custody is with the other parent or someone else", |
||||
|
"Customary clothing with hijab": "Customary clothing with hijab", |
||||
|
"Customary clothing with hijab is acceptable": "Customary clothing with hijab is acceptable", |
||||
|
"Dark": "Dark", |
||||
|
"Deal-breakers regarding smoking, alcohol, and substances for future spouse": "Deal-breakers regarding smoking, alcohol, and substances for future spouse", |
||||
|
"Dedicated to personal growth": "Dedicated to personal growth", |
||||
|
"Degree level (Bachelor's, Master's, PhD) and field in which you are currently enrolled.": "Degree level (Bachelor's, Master's, PhD) and field in which you are currently enrolled.", |
||||
|
"Depends on conditions": "Depends on conditions", |
||||
|
"Depends on current status and stability": "Depends on current status and stability", |
||||
|
"Depends on custody conditions and mutual trust": "Depends on custody conditions and mutual trust", |
||||
|
"Depends on family agreement": "Depends on family agreement", |
||||
|
"Depends on financial, family, and life conditions": "Depends on financial, family, and life conditions", |
||||
|
"Depends on reason for separation, duration, and family context": "Depends on reason for separation, duration, and family context", |
||||
|
"Depends on the future country and place of living": "Depends on the future country and place of living", |
||||
|
"Designed to prevent severe value differences in married life.": "Designed to prevent severe value differences in married life.", |
||||
|
"Designed to understand individual social communication styles.": "Designed to understand individual social communication styles.", |
||||
|
"Desire for Future Spouse to Continue Education": "Desire for Future Spouse to Continue Education", |
||||
|
"Desired Clothing and Hijab Style for Future Spouse (For Men)": "Desired Clothing and Hijab Style for Future Spouse (For Men)", |
||||
|
"Desired Clothing and Style for Future Spouse (For Women)": "Desired Clothing and Style for Future Spouse (For Women)", |
||||
|
"Desired Level of Religious Commitment in Future Spouse": "Desired Level of Religious Commitment in Future Spouse", |
||||
|
"Differences in outlook do not pose a problem": "Differences in outlook do not pose a problem", |
||||
|
"Differences in view are acceptable, given mutual respect": "Differences in view are acceptable, given mutual respect", |
||||
|
"Diligence and perseverance": "Diligence and perseverance", |
||||
|
"Discipline and order": "Discipline and order", |
||||
|
"Division should depend on work conditions, capacity, and circumstances": "Division should depend on work conditions, capacity, and circumstances", |
||||
|
"Do not fast in case of medical or religious exemption": "Do not fast in case of medical or religious exemption", |
||||
|
"Do not listen to music": "Do not listen to music", |
||||
|
"Do not use any of these": "Do not use any of these", |
||||
|
"Do not wear makeup": "Do not wear makeup", |
||||
|
"Do you have any specific physical or medical conditions that might impact married life?": "Do you have any specific physical or medical conditions that might impact married life?", |
||||
|
"Do you have children from a previous marriage or relationship?": "Do you have children from a previous marriage or relationship?", |
||||
|
"Do you regularly take any medications that impact married life, daily energy, or general health?": "Do you regularly take any medications that impact married life, daily energy, or general health?", |
||||
|
"Doctorate or above preferred": "Doctorate or above preferred", |
||||
|
"Does the custody or child arrangement impact your residence or relocation?": "Does the custody or child arrangement impact your residence or relocation?", |
||||
|
"Doesn't matter": "Doesn't matter", |
||||
|
"Duration of Previous Marriage or Engagement": "Duration of Previous Marriage or Engagement", |
||||
|
"Education level, career, financial standing, and housing.": "Education level, career, financial standing, and housing.", |
||||
|
"Education, Career, and Financial Status": "Education, Career, and Financial Status", |
||||
|
"Email": "Email", |
||||
|
"Enter first name": "Enter first name", |
||||
|
"Enter last name": "Enter last name", |
||||
|
"Enter medication names and reasons...": "Enter medication names and reasons...", |
||||
|
"Enter your comments here...": "Enter your comments here...", |
||||
|
"Enter your mental health details...": "Enter your mental health details...", |
||||
|
"Enter your physical health details...": "Enter your physical health details...", |
||||
|
"Ethics and respect": "Ethics and respect", |
||||
|
"Ethnicity or race": "Ethnicity or race", |
||||
|
"Ethnicity, language, or nationality (optional)": "Ethnicity, language, or nationality (optional)", |
||||
|
"Example: Arab, Persian, Turk, Kurd, Baloch, Desi, Caucasian, African descent, Latino, etc.": "Example: Arab, Persian, Turk, Kurd, Baloch, Desi, Caucasian, African descent, Latino, etc.", |
||||
|
"Expenses are covered by agreement or case-by-case": "Expenses are covered by agreement or case-by-case", |
||||
|
"Face photo for verification, official ID documents, and accuracy confirmation.": "Face photo for verification, official ID documents, and accuracy confirmation.", |
||||
|
"Facial Photo; Recent and Clear": "Facial Photo; Recent and Clear", |
||||
|
"Failed engagement / annulled marriage; without living together": "Failed engagement / annulled marriage; without living together", |
||||
|
"Fair / Light": "Fair / Light", |
||||
|
"Faith and spirituality": "Faith and spirituality", |
||||
|
"Family interference or disputes": "Family interference or disputes", |
||||
|
"Family is respectful and communicative": "Family is respectful and communicative", |
||||
|
"Family satisfaction and accompaniment are very important and decisive": "Family satisfaction and accompaniment are very important and decisive", |
||||
|
"Family structure, parents' status, responsibilities, and communication.": "Family structure, parents' status, responsibilities, and communication.", |
||||
|
"Family values": "Family values", |
||||
|
"Financial and economic responsibility": "Financial and economic responsibility", |
||||
|
"Financial issues and hardship": "Financial issues and hardship", |
||||
|
"First Name": "First Name", |
||||
|
"Fit / Average": "Fit / Average", |
||||
|
"Flexible / Adaptable": "Flexible / Adaptable", |
||||
|
"Flexible and open: autonomy, personal experience, and independence come first": "Flexible and open: autonomy, personal experience, and independence come first", |
||||
|
"Formal, dignified, and religious attire": "Formal, dignified, and religious attire", |
||||
|
"Full Islamic covering (Chador / Abaya)": "Full Islamic covering (Chador / Abaya)", |
||||
|
"Full Islamic covering like Chador, Abaya, or Jilbab is mandatory": "Full Islamic covering like Chador, Abaya, or Jilbab is mandatory", |
||||
|
"Full-time or most of the time with me": "Full-time or most of the time with me", |
||||
|
"Fully able to support all joint living expenses": "Fully able to support all joint living expenses", |
||||
|
"Fully flexible; moving to another city or country is not a problem": "Fully flexible; moving to another city or country is not a problem", |
||||
|
"Further education is positive, but not mandatory": "Further education is positive, but not mandatory", |
||||
|
"Future Spouse's Attitude towards Music": "Future Spouse's Attitude towards Music", |
||||
|
"Future Spouse's Attitude towards Wedding Ceremony": "Future Spouse's Attitude towards Wedding Ceremony", |
||||
|
"Future Spouse's Boundaries with Opposite Sex": "Future Spouse's Boundaries with Opposite Sex", |
||||
|
"Goal / Plan oriented": "Goal / Plan oriented", |
||||
|
"Halal and permissible music is acceptable": "Halal and permissible music is acceptable", |
||||
|
"Have an independent home (owned or ready for joint life)": "Have an independent home (owned or ready for joint life)", |
||||
|
"Have the ability and intention to purchase a home": "Have the ability and intention to purchase a home", |
||||
|
"Heavily Overweight": "Heavily Overweight", |
||||
|
"Helps clarify expectations about lifestyle, family roles, and responsibilities.": "Helps clarify expectations about lifestyle, family roles, and responsibilities.", |
||||
|
"High School Diploma / Secondary": "High School Diploma / Secondary", |
||||
|
"Honesty and integrity": "Honesty and integrity", |
||||
|
"How close and frequent is your communication with your family?": "How close and frequent is your communication with your family?", |
||||
|
"How important is alignment of socio-political views in marriage?": "How important is alignment of socio-political views in marriage?", |
||||
|
"How important is physical appearance in choosing your spouse?": "How important is physical appearance in choosing your spouse?", |
||||
|
"How important is religious upbringing and passing values to children?": "How important is religious upbringing and passing values to children?", |
||||
|
"Humorous / Witty": "Humorous / Witty", |
||||
|
"I accept necessary and respectful communication regarding child matters": "I accept necessary and respectful communication regarding child matters", |
||||
|
"I act mainly based on personal study and understanding": "I act mainly based on personal study and understanding", |
||||
|
"I adhere to Islamic framework without adhering to a specific Marja'": "I adhere to Islamic framework without adhering to a specific Marja'", |
||||
|
"I am at the beginning of my career and financial path": "I am at the beginning of my career and financial path", |
||||
|
"I am currently undergoing counseling, psychotherapy, or treatment": "I am currently undergoing counseling, psychotherapy, or treatment", |
||||
|
"I am primarily responsible for covering child expenses": "I am primarily responsible for covering child expenses", |
||||
|
"I am responsible for caring for a sibling": "I am responsible for caring for a sibling", |
||||
|
"I am responsible for caring for both parents": "I am responsible for caring for both parents", |
||||
|
"I am responsible for caring for my father": "I am responsible for caring for my father", |
||||
|
"I am responsible for caring for my mother": "I am responsible for caring for my mother", |
||||
|
"I am the legal guardian/custodian of a family member": "I am the legal guardian/custodian of a family member", |
||||
|
"I confirm that my name, age, photo, and identity information match the uploaded documents.": "I confirm that my name, age, photo, and identity information match the uploaded documents.", |
||||
|
"I consult with family, but the final decision is mine": "I consult with family, but the final decision is mine", |
||||
|
"I currently have no independent income (family supported or studying)": "I currently have no independent income (family supported or studying)", |
||||
|
"I definitely want to have children": "I definitely want to have children", |
||||
|
"I desire to have children, but final decisions depend on joint life conditions": "I desire to have children, but final decisions depend on joint life conditions", |
||||
|
"I follow a specific Marja' al-Taqlid (religious authority)": "I follow a specific Marja' al-Taqlid (religious authority)", |
||||
|
"I have a chronic illness or specific medical condition": "I have a chronic illness or specific medical condition", |
||||
|
"I have a disability or physical limitation": "I have a disability or physical limitation", |
||||
|
"I have a moderate and sufficient income (covering normal living expenses)": "I have a moderate and sufficient income (covering normal living expenses)", |
||||
|
"I have a past history of counseling or treatment (now resolved)": "I have a past history of counseling or treatment (now resolved)", |
||||
|
"I have a stable, good, and reliable income": "I have a stable, good, and reliable income", |
||||
|
"I have an income, but it is variable or irregular": "I have an income, but it is variable or irregular", |
||||
|
"I have full custody of the child(ren)": "I have full custody of the child(ren)", |
||||
|
"I have other circumstances and will explain in the description": "I have other circumstances and will explain in the description", |
||||
|
"I have other special conditions and will explain in the description": "I have other special conditions and will explain in the description", |
||||
|
"I have special family circumstances and will explain in the description": "I have special family circumstances and will explain in the description", |
||||
|
"I haven't made a definitive decision yet": "I haven't made a definitive decision yet", |
||||
|
"I prefer close and active communication with families": "I prefer close and active communication with families", |
||||
|
"I prefer communication through intermediaries, family, or lawyers": "I prefer communication through intermediaries, family, or lawyers", |
||||
|
"I prefer limited and controlled family communication": "I prefer limited and controlled family communication", |
||||
|
"I prefer my future spouse to be employed": "I prefer my future spouse to be employed", |
||||
|
"I prefer my future spouse to focus on home and family": "I prefer my future spouse to focus on home and family", |
||||
|
"I prefer not to have children": "I prefer not to have children", |
||||
|
"I prefer respectful communication while maintaining marital independence": "I prefer respectful communication while maintaining marital independence", |
||||
|
"I regularly provide financial support for a family member": "I regularly provide financial support for a family member", |
||||
|
"Ideally, how many children would you like to have?": "Ideally, how many children would you like to have?", |
||||
|
"Identity Verification, Document Upload, and Photos": "Identity Verification, Document Upload, and Photos", |
||||
|
"If you grew up in a country other than your birthplace, select the country.": "If you grew up in a country other than your birthplace, select the country.", |
||||
|
"If you have special circumstances regarding work, income, renting, buying, or future relocation, briefly explain.": "If you have special circumstances regarding work, income, renting, buying, or future relocation, briefly explain.", |
||||
|
"Importance of Future Spouse's Social and Political Views": "Importance of Future Spouse's Social and Political Views", |
||||
|
"Important, but manageable with mutual respect": "Important, but manageable with mutual respect", |
||||
|
"Important, but must be accompanied by dialogue, understanding, and choice": "Important, but must be accompanied by dialogue, understanding, and choice", |
||||
|
"In the first year of marriage": "In the first year of marriage", |
||||
|
"Independence": "Independence", |
||||
|
"Independence of joint life from families is important": "Independence of joint life from families is important", |
||||
|
"Independent thinking": "Independent thinking", |
||||
|
"It is a red line for me": "It is a red line for me", |
||||
|
"It is my personal and independent decision": "It is my personal and independent decision", |
||||
|
"Job Seeker": "Job Seeker", |
||||
|
"Job Title and Field of Activity": "Job Title and Field of Activity", |
||||
|
"Job title and field": "Job title and field", |
||||
|
"Kindness and empathy": "Kindness and empathy", |
||||
|
"Knowledge and learning": "Knowledge and learning", |
||||
|
"Lack of mutual understanding and personality differences": "Lack of mutual understanding and personality differences", |
||||
|
"Language learning": "Language learning", |
||||
|
"Last Name": "Last Name", |
||||
|
"Legal matters and special circumstances": "Legal matters and special circumstances", |
||||
|
"Less than 1 year": "Less than 1 year", |
||||
|
"Level of Family Communication after Marriage": "Level of Family Communication after Marriage", |
||||
|
"Limited communication": "Limited communication", |
||||
|
"Limited, formal, and respectful communication": "Limited, formal, and respectful communication", |
||||
|
"Listen to conventional and permissible music": "Listen to conventional and permissible music", |
||||
|
"Living with Family after Marriage": "Living with Family after Marriage", |
||||
|
"Living with spouse's or my family is fine": "Living with spouse's or my family is fine", |
||||
|
"Makes no difference": "Makes no difference", |
||||
|
"Makes no difference; depends on life conditions": "Makes no difference; depends on life conditions", |
||||
|
"Marital history, previous marriages, and children.": "Marital history, previous marriages, and children.", |
||||
|
"Medium / Tan": "Medium / Tan", |
||||
|
"Mental Health and Treatment Description": "Mental Health and Treatment Description", |
||||
|
"Minimum Bachelor's Degree": "Minimum Bachelor's Degree", |
||||
|
"Minimum High School Diploma": "Minimum High School Diploma", |
||||
|
"Minimum Master's Degree": "Minimum Master's Degree", |
||||
|
"Moderately religious": "Moderately religious", |
||||
|
"Modern / Casual styling": "Modern / Casual styling", |
||||
|
"Modern style is fine": "Modern style is fine", |
||||
|
"Modest / Weak": "Modest / Weak", |
||||
|
"Modest attire without head covering": "Modest attire without head covering", |
||||
|
"Modest dignified clothing is important, details are negotiable": "Modest dignified clothing is important, details are negotiable", |
||||
|
"Moral and religious values are important, but avoid excessive strictness": "Moral and religious values are important, but avoid excessive strictness", |
||||
|
"More open social interactions without particular sensitivity": "More open social interactions without particular sensitivity", |
||||
|
"More than 3 years later": "More than 3 years later", |
||||
|
"More than 5 years": "More than 5 years", |
||||
|
"Must have religious / clerical seminary education": "Must have religious / clerical seminary education", |
||||
|
"Must intend to continue education": "Must intend to continue education", |
||||
|
"Must not listen to music": "Must not listen to music", |
||||
|
"Name of Marja'": "Name of Marja'", |
||||
|
"Name of Marja' al-Taqlid (if applicable)": "Name of Marja' al-Taqlid (if applicable)", |
||||
|
"Narcotics / drugs are an absolute red line": "Narcotics / drugs are an absolute red line", |
||||
|
"Nature / Outdoors": "Nature / Outdoors", |
||||
|
"Need financial contribution from future spouse": "Need financial contribution from future spouse", |
||||
|
"Never married only; prior marriage is a red line": "Never married only; prior marriage is a red line", |
||||
|
"No fixed view yet; prefer to develop a shared method with future spouse": "No fixed view yet; prefer to develop a shared method with future spouse", |
||||
|
"No particular sensitivity": "No particular sensitivity", |
||||
|
"No particular sensitivity towards music genres": "No particular sensitivity towards music genres", |
||||
|
"No problem for me": "No problem for me", |
||||
|
"No specific number in mind": "No specific number in mind", |
||||
|
"No specific timeline; depends on career and living conditions": "No specific timeline; depends on career and living conditions", |
||||
|
"No strict preference; to be decided by mutual agreement": "No strict preference; to be decided by mutual agreement", |
||||
|
"No, I do not have ongoing responsibilities": "No, I do not have ongoing responsibilities", |
||||
|
"No, I do not take regular medications": "No, I do not take regular medications", |
||||
|
"No, I have no children": "No, I have no children", |
||||
|
"No, I have no specific illness or physical condition": "No, I have no specific illness or physical condition", |
||||
|
"No, I have no specific mental health concerns or conditions": "No, I have no specific mental health concerns or conditions", |
||||
|
"No, but they reside near my place of living": "No, but they reside near my place of living", |
||||
|
"No, it has no significant impact": "No, it has no significant impact", |
||||
|
"No, they live in another city or country": "No, they live in another city or country", |
||||
|
"Non-religious / Cultural": "Non-religious / Cultural", |
||||
|
"None of these are red lines for me": "None of these are red lines for me", |
||||
|
"Normal and conventional communication": "Normal and conventional communication", |
||||
|
"Not a major priority for me": "Not a major priority for me", |
||||
|
"Occasionally fast": "Occasionally fast", |
||||
|
"One of the parents has passed away": "One of the parents has passed away", |
||||
|
"One of the parents has remarried": "One of the parents has remarried", |
||||
|
"Only accept independent living": "Only accept independent living", |
||||
|
"Only communicate for matters concerning the child": "Only communicate for matters concerning the child", |
||||
|
"Only consider if children do not live with them": "Only consider if children do not live with them", |
||||
|
"Only fill if you selected having a specific Marja' al-Taqlid.": "Only fill if you selected having a specific Marja' al-Taqlid.", |
||||
|
"Only formal and strictly limited communication for essential child matters is acceptable": "Only formal and strictly limited communication for essential child matters is acceptable", |
||||
|
"Only listen to nasheeds, religious, or acapella music": "Only listen to nasheeds, religious, or acapella music", |
||||
|
"Only on specific times like weekends or holidays": "Only on specific times like weekends or holidays", |
||||
|
"Only religious / acapella / nasheed is acceptable": "Only religious / acapella / nasheed is acceptable", |
||||
|
"Only strictly religious and gender-segregated ceremony": "Only strictly religious and gender-segregated ceremony", |
||||
|
"Only willing to live in my current city": "Only willing to live in my current city", |
||||
|
"Only willing to live in my current city; relocating is a red line": "Only willing to live in my current city; relocating is a red line", |
||||
|
"Optionally provide brief details regarding frequency, duration, or context.": "Optionally provide brief details regarding frequency, duration, or context.", |
||||
|
"Other criteria and deal-breakers...": "Other criteria and deal-breakers...", |
||||
|
"Other preference": "Other preference", |
||||
|
"Other reasons (or prefer to explain in official stages)": "Other reasons (or prefer to explain in official stages)", |
||||
|
"Outlook on having children, timing, and parenting approaches.": "Outlook on having children, timing, and parenting approaches.", |
||||
|
"Palestine": "Palestine", |
||||
|
"Partner's current country of residence does not matter": "Partner's current country of residence does not matter", |
||||
|
"Past history of use, but quit": "Past history of use, but quit", |
||||
|
"Personal Contact Number with Country Code": "Personal Contact Number with Country Code", |
||||
|
"Personal and Identity Details": "Personal and Identity Details", |
||||
|
"Personal and identity details of the applicant.": "Personal and identity details of the applicant.", |
||||
|
"Photo must be recent and clear.\nFace fully visible.\nNo heavy filters.\nNo group photos.\nSufficient lighting.": "Photo must be recent and clear.\nFace fully visible.\nNo heavy filters.\nNo group photos.\nSufficient lighting.", |
||||
|
"Physical appearance and attraction are extremely important": "Physical appearance and attraction are extremely important", |
||||
|
"Physical appearance, health conditions, and medications.": "Physical appearance, health conditions, and medications.", |
||||
|
"Plan to rent an independent home at the start": "Plan to rent an independent home at the start", |
||||
|
"Please briefly describe the condition, current treatment, or key points your future spouse should be aware of.": "Please briefly describe the condition, current treatment, or key points your future spouse should be aware of.", |
||||
|
"Please briefly describe the condition, limitation, treatment process, or impact on daily and married life.": "Please briefly describe the condition, limitation, treatment process, or impact on daily and married life.", |
||||
|
"Please briefly explain the type of responsibility, duration, financial/caregiving scope, and potential impact on living arrangements or joint life.": "Please briefly explain the type of responsibility, duration, financial/caregiving scope, and potential impact on living arrangements or joint life.", |
||||
|
"Please briefly specify the medication name(s) and the reason or necessity for regular use.": "Please briefly specify the medication name(s) and the reason or necessity for regular use.", |
||||
|
"Please choose the option that best describes your family's lifestyle and general religious atmosphere.": "Please choose the option that best describes your family's lifestyle and general religious atmosphere.", |
||||
|
"Please explain any important points regarding custody, decisions, living arrangements, financial responsibilities, or family context.": "Please explain any important points regarding custody, decisions, living arrangements, financial responsibilities, or family context.", |
||||
|
"Possibility of living temporarily with family": "Possibility of living temporarily with family", |
||||
|
"Prefer my spouse not to have strong political stances": "Prefer my spouse not to have strong political stances", |
||||
|
"Prefer not to continue education after marriage": "Prefer not to continue education after marriage", |
||||
|
"Prefer not to say": "Prefer not to say", |
||||
|
"Prefer simple or no wedding ceremony": "Prefer simple or no wedding ceremony", |
||||
|
"Prefer strictly religious and gender-segregated ceremony": "Prefer strictly religious and gender-segregated ceremony", |
||||
|
"Prefer this to be determined by mutual agreement during marriage": "Prefer this to be determined by mutual agreement during marriage", |
||||
|
"Prefer to decide on religious upbringing together with future spouse": "Prefer to decide on religious upbringing together with future spouse", |
||||
|
"Prefer to live in future spouse's current country": "Prefer to live in future spouse's current country", |
||||
|
"Prefer to make this decision together with future spouse": "Prefer to make this decision together with future spouse", |
||||
|
"Prefer to stay in my current country": "Prefer to stay in my current country", |
||||
|
"Preference Regarding Place of Residence after Marriage": "Preference Regarding Place of Residence after Marriage", |
||||
|
"Primary Reason for Ending Previous Marriage or Relationship": "Primary Reason for Ending Previous Marriage or Relationship", |
||||
|
"Professional Certificate / Diploma": "Professional Certificate / Diploma", |
||||
|
"Reading / Books": "Reading / Books", |
||||
|
"Ready to migrate to a third country": "Ready to migrate to a third country", |
||||
|
"Recreational tobacco use is acceptable in special conditions": "Recreational tobacco use is acceptable in special conditions", |
||||
|
"Religious / Clerical Seminary Studies": "Religious / Clerical Seminary Studies", |
||||
|
"Religious activities": "Religious activities", |
||||
|
"Religious beliefs, clothing, personal values, ethics, and lifestyle.": "Religious beliefs, clothing, personal values, ethics, and lifestyle.", |
||||
|
"Religious family atmosphere is important": "Religious family atmosphere is important", |
||||
|
"Religious hijab is mandatory, specific style does not matter": "Religious hijab is mandatory, specific style does not matter", |
||||
|
"Representative's Contact Number with Country Code": "Representative's Contact Number with Country Code", |
||||
|
"Requires further evaluation": "Requires further evaluation", |
||||
|
"Residence Status in Current Country": "Residence Status in Current Country", |
||||
|
"Respect for traditions": "Respect for traditions", |
||||
|
"Respected family with healthy relationships": "Respected family with healthy relationships", |
||||
|
"Respectful and formal": "Respectful and formal", |
||||
|
"Responsibilities should be divided equally as much as possible": "Responsibilities should be divided equally as much as possible", |
||||
|
"Responsibility": "Responsibility", |
||||
|
"Select country (optional)": "Select country (optional)", |
||||
|
"Select deal-breakers": "Select deal-breakers", |
||||
|
"Select family qualities": "Select family qualities", |
||||
|
"Select hobbies": "Select hobbies", |
||||
|
"Select options (optional)": "Select options (optional)", |
||||
|
"Select up to 5 traits": "Select up to 5 traits", |
||||
|
"Select up to 5 values": "Select up to 5 values", |
||||
|
"Self-confidence": "Self-confidence", |
||||
|
"Sensitive and meticulous": "Sensitive and meticulous", |
||||
|
"Shared and roughly equal time between parents": "Shared and roughly equal time between parents", |
||||
|
"Should be normal and respectful": "Should be normal and respectful", |
||||
|
"Should be very formal and limited": "Should be very formal and limited", |
||||
|
"Slightly Overweight": "Slightly Overweight", |
||||
|
"Smoke cigarettes": "Smoke cigarettes", |
||||
|
"Smoke hookah / shisha": "Smoke hookah / shisha", |
||||
|
"Social and charity work": "Social and charity work", |
||||
|
"Social and extroverted": "Social and extroverted", |
||||
|
"Social skills": "Social skills", |
||||
|
"Sometimes pray": "Sometimes pray", |
||||
|
"Special circumstances exist (will explain in details)": "Special circumstances exist (will explain in details)", |
||||
|
"Special circumstances exist and will explain in details": "Special circumstances exist and will explain in details", |
||||
|
"Special financial conditions exist (will explain in details)": "Special financial conditions exist (will explain in details)", |
||||
|
"Spending time with family": "Spending time with family", |
||||
|
"Sports / Fitness": "Sports / Fitness", |
||||
|
"Spouse's family conditions are not a major factor": "Spouse's family conditions are not a major factor", |
||||
|
"Spouse's parents are alive": "Spouse's parents are alive", |
||||
|
"Spouse's parents are not divorced": "Spouse's parents are not divorced", |
||||
|
"Standard and well-groomed clothing": "Standard and well-groomed clothing", |
||||
|
"Standard makeup": "Standard makeup", |
||||
|
"Standard social interactions within personal values": "Standard social interactions within personal values", |
||||
|
"State your job title, specialization, or industry field.": "State your job title, specialization, or industry field.", |
||||
|
"Structured and rule-based: discipline, structure, and rules are primary": "Structured and rule-based: discipline, structure, and rules are primary", |
||||
|
"Taiwan": "Taiwan", |
||||
|
"Technology": "Technology", |
||||
|
"Temporary living with family at the beginning is acceptable": "Temporary living with family at the beginning is acceptable", |
||||
|
"The final decision is fully joint between me and my family": "The final decision is fully joint between me and my family", |
||||
|
"The goal is understanding faith alignment between candidates, not judgment.": "The goal is understanding faith alignment between candidates, not judgment.", |
||||
|
"The other parent also participates in expenses": "The other parent also participates in expenses", |
||||
|
"This criterion is not very important to me": "This criterion is not very important to me", |
||||
|
"This is not a major priority for me": "This is not a major priority for me", |
||||
|
"This matter is not significant to me": "This matter is not significant to me", |
||||
|
"This photo is strictly confidential and never displayed to candidates or users. It is reviewed solely by verified same-gender experts for identity verification and appearance confirmation.": "This photo is strictly confidential and never displayed to candidates or users. It is reviewed solely by verified same-gender experts for identity verification and appearance confirmation.", |
||||
|
"This preference is considered an optional adjustable filter in matching.": "This preference is considered an optional adjustable filter in matching.", |
||||
|
"Traditional and family-centered: respect for parents and family values are core": "Traditional and family-centered: respect for parents and family values are core", |
||||
|
"Travel": "Travel", |
||||
|
"Trusted representative full name": "Trusted representative full name", |
||||
|
"Uncle (Paternal / Maternal)": "Uncle (Paternal / Maternal)", |
||||
|
"Unclear / depends on future circumstances": "Unclear / depends on future circumstances", |
||||
|
"Undecided / depends on conditions and mutual agreement with future spouse": "Undecided / depends on conditions and mutual agreement with future spouse", |
||||
|
"Under 160 cm": "Under 160 cm", |
||||
|
"United States of America": "United States of America", |
||||
|
"University degree doesn't matter; intellectual maturity matters": "University degree doesn't matter; intellectual maturity matters", |
||||
|
"Upload identification document": "Upload identification document", |
||||
|
"Usage of makeup in public (Women only)": "Usage of makeup in public (Women only)", |
||||
|
"Use vape / e-cigarettes": "Use vape / e-cigarettes", |
||||
|
"Usually do not live with me": "Usually do not live with me", |
||||
|
"Usually pray": "Usually pray", |
||||
|
"Valid Identification Document Photo": "Valid Identification Document Photo", |
||||
|
"Vape / e-cigarettes are a red line": "Vape / e-cigarettes are a red line", |
||||
|
"Very close and prominent": "Very close and prominent", |
||||
|
"Very important; major differences are unacceptable": "Very important; major differences are unacceptable", |
||||
|
"Very important; religious upbringing must be integral from early childhood": "Very important; religious upbringing must be integral from early childhood", |
||||
|
"Very light / subtle makeup": "Very light / subtle makeup", |
||||
|
"Very limited and strictly as necessary": "Very limited and strictly as necessary", |
||||
|
"Very religious and strictly observant": "Very religious and strictly observant", |
||||
|
"Vocational / Technical Training": "Vocational / Technical Training", |
||||
|
"We have no communication": "We have no communication", |
||||
|
"What are the most important values you want to instill in your children?": "What are the most important values you want to instill in your children?", |
||||
|
"What are your main hobbies and interests?": "What are your main hobbies and interests?", |
||||
|
"What are your prominent personality traits?": "What are your prominent personality traits?", |
||||
|
"What are your social boundaries with the opposite sex?": "What are your social boundaries with the opposite sex?", |
||||
|
"What is the family and survival status of your parents?": "What is the family and survival status of your parents?", |
||||
|
"What is the financial support and child maintenance status?": "What is the financial support and child maintenance status?", |
||||
|
"What is your approach to religious practices and authority?": "What is your approach to religious practices and authority?", |
||||
|
"What is your attitude towards music?": "What is your attitude towards music?", |
||||
|
"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?", |
||||
|
"What is your everyday clothing and style in public?": "What is your everyday clothing and style in public?", |
||||
|
"What is your family's religious and spiritual atmosphere?": "What is your family's religious and spiritual atmosphere?", |
||||
|
"What is your financial and income status?": "What is your financial and income status?", |
||||
|
"What is your level of commitment to Ramadan fasting?": "What is your level of commitment to Ramadan fasting?", |
||||
|
"What is your level of commitment to obligatory daily prayers?": "What is your level of commitment to obligatory daily prayers?", |
||||
|
"What is your perspective on dividing parenting and childcare responsibilities?": "What is your perspective on dividing parenting and childcare responsibilities?", |
||||
|
"What is your perspective on future spouse's necessary communication with child's other parent?": "What is your perspective on future spouse's necessary communication with child's other parent?", |
||||
|
"What is your perspective on having children?": "What is your perspective on having children?", |
||||
|
"What is your perspective on wedding ceremonies?": "What is your perspective on wedding ceremonies?", |
||||
|
"What is your perspective regarding future spouse's employment?": "What is your perspective regarding future spouse's employment?", |
||||
|
"What is your plan for housing after marriage?": "What is your plan for housing after marriage?", |
||||
|
"What is your status regarding smoking, alcohol, or substances?": "What is your status regarding smoking, alcohol, or substances?", |
||||
|
"What qualities in future spouse's family are important to you?": "What qualities in future spouse's family are important to you?", |
||||
|
"What role does your family play in your marriage decision?": "What role does your family play in your marriage decision?", |
||||
|
"When would you prefer to try for your first child after marriage?": "When would you prefer to try for your first child after marriage?", |
||||
|
"Which approach is closest to your preferred parenting style?": "Which approach is closest to your preferred parenting style?", |
||||
|
"Will consider in special cases with complete explanation": "Will consider in special cases with complete explanation", |
||||
|
"Will decide based on family circumstances": "Will decide based on family circumstances", |
||||
|
"Will decide based on future spouse's job, family, residence, and life circumstances": "Will decide based on future spouse's job, family, residence, and life circumstances", |
||||
|
"Will decide based on job, residency, family, and financial status": "Will decide based on job, residency, family, and financial status", |
||||
|
"Will decide based on joint life conditions": "Will decide based on joint life conditions", |
||||
|
"Will evaluate case-by-case with consultation": "Will evaluate case-by-case with consultation", |
||||
|
"Will not accept under any circumstances": "Will not accept under any circumstances", |
||||
|
"Willing to move to another city, but only within my current country": "Willing to move to another city, but only within my current country", |
||||
|
"Willingness to Relocate and Migrate Post-Marriage": "Willingness to Relocate and Migrate Post-Marriage", |
||||
|
"Work Organization or Location": "Work Organization or Location", |
||||
|
"Write any important points not covered in the options above.": "Write any important points not covered in the options above.", |
||||
|
"Yes, I have children but they do not live with me": "Yes, I have children but they do not live with me", |
||||
|
"Yes, I have children living with me": "Yes, I have children living with me", |
||||
|
"Yes, I have strict restrictions on relocation": "Yes, I have strict restrictions on relocation", |
||||
|
"Yes, I take regular medications (such as diabetes, thyroid, epilepsy, blood pressure, psychiatric, or other)": "Yes, I take regular medications (such as diabetes, thyroid, epilepsy, blood pressure, psychiatric, or other)", |
||||
|
"Yes, requires coordination with the other parent or legal permit": "Yes, requires coordination with the other parent or legal permit", |
||||
|
"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" |
||||
} |
} |
||||
1399
src/translations/locales/es.json
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1409
src/translations/locales/fr.json
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1529
src/translations/locales/gu.json
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1485
src/translations/locales/ha.json
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1311
src/translations/locales/he.json
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1527
src/translations/locales/hi.json
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1095
src/translations/locales/id.json
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1313
src/translations/locales/ks.json
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1207
src/translations/locales/pt.json
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1147
src/translations/locales/ru.json
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1065
src/translations/locales/sw.json
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1311
src/translations/locales/tg.json
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1213
src/translations/locales/tr.json
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
913
src/translations/locales/ul.json
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1309
src/translations/locales/ur.json
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1249
src/translations/locales/uz.json
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
1379
src/translations/locales/zh.json
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -1,770 +0,0 @@ |
|||||
🔒 **محرمانه:** فقط برای کارشناسان پلتفرم و سیستم مچینگ قابل مشاهده است. |
|
||||
👁️ **قابل نمایش محدود:** فقط پس از تأیید، در مراحل رسمی آشنایی، و بهصورت محدود به طرف مقابل نمایش داده میشود. |
|
||||
\* **فیلد اجباری:** تکمیل این مورد برای ادامه ثبتنام لازم است. |
|
||||
|
|
||||
حبیب مریج تلاش میکند ازدواج را با حفظ شأن، حریم خصوصی، چارچوب خانوادگی و روش سنتی، اما با کمک ابزارهای مدرن، پیش ببرد. |
|
||||
|
|
||||
--- |
|
||||
|
|
||||
# **بخش ۱: مشخصات فردی و هویتی** |
|
||||
|
|
||||
🔒 **نام**\* |
|
||||
\[فیلد متنی\] |
|
||||
|
|
||||
🔒 **نام خانوادگی**\* |
|
||||
\[فیلد متنی\] |
|
||||
|
|
||||
🔒 **جنسیت**\* |
|
||||
\[قبلاً در مرحله ثبتنام دریافت شده است\] |
|
||||
|
|
||||
👁️ **تاریخ تولد**\* |
|
||||
\[انتخابگر تقویم میلادی — YYYY/MM/DD\] |
|
||||
|
|
||||
👁️ **سن** |
|
||||
\[محاسبه خودکار توسط سیستم\] |
|
||||
|
|
||||
👁️ **کشور محل تولد**\* |
|
||||
\[لیست کشویی کشورها\] |
|
||||
|
|
||||
👁️ **شهر محل تولد**\* |
|
||||
\[فیلد متنی\] |
|
||||
|
|
||||
👁️ **ملیت / تابعیت فعلی**\* |
|
||||
\[لیست کشویی کشورها\] |
|
||||
|
|
||||
👁️ **قومیت / اصلیت خانوادگی / نژاد**\* |
|
||||
\[فیلد متنی\] |
|
||||
راهنما: مثال: عرب، فارس، ترک، کرد، بلوچ، دسی، قفقازی، آفریقاییتبار، لاتین و… |
|
||||
|
|
||||
👁️ **رنگ پوست**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* سفید / روشن |
|
||||
* گندمگون / سبزه روشن |
|
||||
* سبزه تیره / قهوهای |
|
||||
* تیره / سیاهپوست |
|
||||
|
|
||||
👁️ **زبان مادری**\* |
|
||||
\[چندانتخابی\] |
|
||||
|
|
||||
👁️ **سایر زبانهایی که به آنها مسلط هستم** |
|
||||
\[چندانتخابی\] |
|
||||
|
|
||||
--- |
|
||||
|
|
||||
# **بخش ۲: اطلاعات تماس، سکونت و ارتباط خانوادگی** |
|
||||
|
|
||||
🔒 **شماره تماس شخصی با کد کشور**\* |
|
||||
\[فیلد متنی\] |
|
||||
|
|
||||
🔒 **ایمیل**\* |
|
||||
\[فیلد متنی\] |
|
||||
|
|
||||
👁️ **کشور محل سکونت فعلی**\* |
|
||||
\[لیست کشویی کشورها\] |
|
||||
|
|
||||
👁️ **شهر / ایالت محل سکونت فعلی**\* |
|
||||
\[فیلد متنی\] |
|
||||
|
|
||||
👁️ **لوکیشن حدودی محل زندگی فعلی**\* |
|
||||
\[فیلد متنی یا انتخاب منطقه\] |
|
||||
راهنما: نیازی به آدرس دقیق نیست. فقط محدوده کلی محل زندگی کافی است؛ مثلاً نام شهر، منطقه، ناحیه یا نزدیکترین شهر بزرگ. |
|
||||
|
|
||||
👁️ **وضعیت اقامت در کشور فعلی**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* شهروند / دارای تابعیت |
|
||||
* اقامت دائم |
|
||||
* اقامت موقت |
|
||||
* ویزای تحصیلی |
|
||||
* ویزای کاری |
|
||||
* پناهندگی / حمایت بشردوستانه |
|
||||
* در حال پیگیری وضعیت اقامت |
|
||||
|
|
||||
🔒 **تمایل به جابجایی و مهاجرت پس از ازدواج**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* کاملاً منعطف هستم؛ جابجایی به شهر یا کشور دیگر برایم مشکلی ندارد. |
|
||||
* حاضرم به شهر دیگری نقل مکان کنم، اما فقط در کشور فعلی خودم حاضر به زندگی هستم. |
|
||||
* فقط در شهر فعلی خودم حاضر به زندگی هستم و جابجایی برایم خط قرمز است. |
|
||||
* بسته به شرایط شغلی، خانوادگی، اقامتی و زندگی همسر آیندهام تصمیم میگیرم. |
|
||||
|
|
||||
--- |
|
||||
|
|
||||
## **اطلاعات سرپرست / ولی / رابط قابل اعتماد (فقط دختران):** |
|
||||
|
|
||||
⚠️ **قانون اجباری:** |
|
||||
برای **دختران زیر ۲۷ سال** ثبت شماره یک رابط قابل اعتماد **اجباری** است. |
|
||||
برای دختران **۲۷ سال و بالاتر** اجباری نیست، اما قویاً توصیه میشود. |
|
||||
|
|
||||
متن مهم که بالاش باید بیاد: |
|
||||
برای زیر ۲۷: |
|
||||
«برای حفظ آرامش، امنیت و شأن شما، روند آشنایی در پلتفرم ما با الگوگیری از رسوم اصیل و محترمانه خانوادگی پیش میرود. حضور یک فرد معتمد (ترجیحاً پدر یا مادر) به عنوان رابط، علاوه بر اینکه نشاندهنده اصالت شماست، باعث میشود طرف مقابل نیز با جدیت، احترام و اطمینان کامل قدم پیش بگذارد.» |
|
||||
برای بالای ۲۷: |
|
||||
«هدف ما شکلگیری پیوندهای پایدار بر بستر اعتماد متقابل است. با اینکه ثبت اطلاعات رابط برای شما الزامی نیست، اما معرفی یک فرد معتمد (مانند پدر، مادر یا بزرگتر خانواده) نشاندهنده شفافیت و نیت جدی شما برای ازدواج است. پروفایلهایی که دارای رابط معتمد هستند، اعتبار بسیار بالاتری دارند و باعث ایجاد اطمینان خاطر بیشتری در خانواده طرف مقابل میشوند.» |
|
||||
|
|
||||
🔒 **نام و نام خانوادگی رابط** |
|
||||
\[فیلد متنی — شرطی\] |
|
||||
برای دختران زیر ۲۷ سال: اجباری |
|
||||
|
|
||||
🔒 **نسبت رابط با شما** |
|
||||
\[تکانتخابی — شرطی\] |
|
||||
|
|
||||
* پدر |
|
||||
* مادر |
|
||||
* برادر |
|
||||
* خواهر |
|
||||
* عمو / دایی |
|
||||
* خاله / عمه |
|
||||
* دوست خانوادگی معتمد |
|
||||
* معرف مذهبی / روحانی |
|
||||
* معرف اجتماعی معتمد |
|
||||
|
|
||||
🔒 **شماره تماس رابط با کد کشور** |
|
||||
\[فیلد متنی — شرطی\] |
|
||||
برای دختران زیر ۲۷ سال: اجباری |
|
||||
|
|
||||
--- |
|
||||
|
|
||||
# **بخش ۳: ویژگیهای ظاهری، سلامت و فعالیت بدنی** |
|
||||
|
|
||||
🔒 **قد به سانتیمتر**\* |
|
||||
\[فیلد عددی\] |
|
||||
|
|
||||
🔒 **وزن به کیلوگرم**\* |
|
||||
\[فیلد عددی\] |
|
||||
|
|
||||
👁️ **وضعیت سلامت جسمانی**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* در سلامت کامل هستم. |
|
||||
* بیماری خاص یا مزمن دارم. |
|
||||
* نقص عضو، معلولیت یا محدودیت جسمی دارم. |
|
||||
|
|
||||
👁️ **توضیحات سلامت جسمانی** |
|
||||
\[فیلد متنی شرطی\] |
|
||||
|
|
||||
👁️ **وضعیت سلامت روان**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* مشکل خاصی ندارم. |
|
||||
* سابقه مشاوره و درمان داشتهام. |
|
||||
* در حال حاضر تحت مشاوره و درمان هستم. |
|
||||
|
|
||||
🔒 **استفاده از داروهای دائمی** |
|
||||
\[فیلد متنی اختیاری\] |
|
||||
|
|
||||
--- |
|
||||
|
|
||||
# **بخش ۴: تحصیلات، شغل و وضعیت اقتصادی** |
|
||||
|
|
||||
👁️ **بالاترین سطح تحصیلات**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* زیر دیپلم |
|
||||
* دیپلم / High School |
|
||||
* کاردانی / Associate |
|
||||
* گواهینامه مهارت حرفهای / Certificate |
|
||||
* آموزش فنی یا مهارتی |
|
||||
* کارشناسی / Bachelor’s Degree |
|
||||
* کارشناسی ارشد / Master’s Degree |
|
||||
* دکتری و بالاتر |
|
||||
* تحصیلات حوزوی / علوم دینی |
|
||||
|
|
||||
👁️ **رشته تحصیلی** |
|
||||
\[فیلد متنی\] |
|
||||
|
|
||||
👁️ **وضعیت اشتغال**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* شاغل تماموقت |
|
||||
* شاغل پارهوقت |
|
||||
* خویشفرما / فریلنسر |
|
||||
* کارآفرین / صاحب کسبوکار |
|
||||
* دانشجو |
|
||||
* دانشجو و شاغل |
|
||||
* دانشجو و جویای کار |
|
||||
* جویای کار / بیکار |
|
||||
* خانهدار |
|
||||
* بازنشسته |
|
||||
|
|
||||
👁️ **عنوان شغلی** |
|
||||
\[فیلد متنی شرطی\] |
|
||||
|
|
||||
👁️ **محل فعالیت** |
|
||||
\[فیلد متنی اختیاری\] |
|
||||
|
|
||||
🔒 **میزان درآمد ماهانه**\* |
|
||||
\[فیلد متنی\] |
|
||||
مثال: 2500 USD، 1800 EUR، 3000 CAD |
|
||||
|
|
||||
🔒 **وضعیت مالی کلی**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* درآمد پایدار و قابل اتکا دارم. |
|
||||
* درآمد دارم، اما متغیر است. |
|
||||
* در ابتدای مسیر شغلی و مالی هستم. |
|
||||
* فعلاً بخشی از هزینههایم توسط خانواده تأمین میشود. |
|
||||
* فعلاً درآمد مستقل ندارم. |
|
||||
|
|
||||
🔒 **توانایی تأمین هزینههای زندگی مشترک**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* توانایی تأمین کامل هزینههای زندگی مشترک را دارم. |
|
||||
* توانایی تأمین بخش اصلی هزینهها را دارم. |
|
||||
* نیاز به مشارکت مالی همسر آینده دارم. |
|
||||
* فعلاً در حال ساختن شرایط مالی مناسب هستم. |
|
||||
* این موضوع بستگی به کشور و محل زندگی آینده دارد. |
|
||||
|
|
||||
🔒 **وضعیت مسکن فعلی**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* مالک خانه شخصی هستم. |
|
||||
* مستأجر هستم و مستقل زندگی میکنم. |
|
||||
* همراه خانواده / والدین زندگی میکنم. |
|
||||
* خوابگاه / مسکن دانشجویی |
|
||||
* مسکن سازمانی |
|
||||
* فعلاً شرایط موقت دارم. |
|
||||
|
|
||||
🔒 **برنامه یا توانایی تأمین مسکن بعد از ازدواج**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* خانه شخصی دارم و امکان زندگی مشترک در آن وجود دارد. |
|
||||
* امکان خرید خانه دارم. |
|
||||
* در ابتدای ازدواج احتمالاً مستأجر خواهیم بود. |
|
||||
* در ابتدای ازدواج ممکن است موقتاً با خانواده زندگی کنیم. |
|
||||
|
|
||||
🔒 **توضیح تکمیلی درباره وضعیت اقتصادی و مسکن** |
|
||||
\[فیلد متنی اختیاری\] |
|
||||
راهنما: اگر شرایط خاصی درباره کار، درآمد، اجاره، خرید خانه، مهاجرت یا محل زندگی آینده دارید، کوتاه توضیح دهید. |
|
||||
|
|
||||
--- |
|
||||
|
|
||||
# **بخش ۵: پیشینه خانوادگی** |
|
||||
|
|
||||
👁️ **تعداد خواهر و برادر**\* |
|
||||
\[فیلد عددی\] |
|
||||
|
|
||||
👁️ **وضعیت حیات والدین**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* هر دو در قید حیات هستند. |
|
||||
* پدر فوت شده است. |
|
||||
* مادر فوت شده است. |
|
||||
* هر دو فوت شدهاند. |
|
||||
|
|
||||
🔒 **وضعیت تأهل والدین**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* با هم زندگی میکنند. |
|
||||
* از هم جدا شدهاند / طلاق گرفتهاند. |
|
||||
* یکی از والدین ازدواج مجدد داشته است. |
|
||||
* شرایط خانوادگی خاص دارم و در توضیحات مینویسم. |
|
||||
|
|
||||
|
|
||||
**👁️ فضای مذهبی و اعتقادی خانواده شما به چه شکلی است؟** |
|
||||
|
|
||||
* *(راهنما: لطفاً گزینهای را انتخاب کنید که توصیف بهتری از فضای عمومی و سبک زندگی خانواده شما ارائه میدهد.)* |
|
||||
* 🔘 **مذهبی و کاملاً مقید** |
|
||||
* خانوادهای که اهتمام ویژهای به انجام دقیق واجبات، رعایت کامل حدود شرعی (مانند محرم و نامحرم) و حفظ شعائر دینی و مکتب اهلبیت (علیهمالسلام) در تمام شئونات زندگی دارند. |
|
||||
* 🔘 **مذهبی (مقید به واجبات)** |
|
||||
* خانوادهای که به انجام واجبات دینی (مانند نماز و روزه) و اصول اخلاق اسلامی پایبند هستند و سبک زندگی سالمی بر پایه چارچوبهای عرفیِ جامعه مذهبی دارند. |
|
||||
* 🔘 **سنتی (محترم به ارزشهای دینی)** |
|
||||
* خانوادهای که به اهلبیت و ارزشهای اخلاقی ارادت دارند و به دین احترام میگذارند، اما ممکن است در انجام دقیقِ تمامی احکام شرعی و واجبات، تقید کاملی نداشته باشند. |
|
||||
* 🔘 **غیرمذهبی / عرفی** |
|
||||
* خانوادهای که با وجود احترام کلی به دین، مناسک و چارچوبهای شرعی، نقش پررنگی در سبک زندگی، روابط و تصمیمات روزمره آنها ندارد. |
|
||||
* |
|
||||
* |
|
||||
|
|
||||
👁️ **وضعیت اقتصادی خانواده** |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* ضعیف |
|
||||
* متوسط |
|
||||
* خوب |
|
||||
* مرفه |
|
||||
|
|
||||
👁️ **توضیح کوتاه درباره خانواده** |
|
||||
\[فیلد متنی اختیاری\] |
|
||||
|
|
||||
--- |
|
||||
|
|
||||
# **بخش ۶: وضعیت تأهل، سابقه ازدواج و فرزندان** |
|
||||
|
|
||||
🔒 **وضعیت تأهل فعلی**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* مجرد؛ بدون هیچگونه سابقه عقد یا ازدواج |
|
||||
* عقد ناموفق / فسخ نامزدی؛ بدون شروع زندگی مشترک |
|
||||
* جدا شده؛ طلاق پس از زندگی مشترک |
|
||||
* همسر فوت شده |
|
||||
|
|
||||
🔒 **مدت ازدواج یا عقد قبلی** |
|
||||
\[فیلد متنی شرطی\] |
|
||||
|
|
||||
🔒 **علت جدایی، در صورت وجود** |
|
||||
\[فیلد متنی اختیاری\] |
|
||||
|
|
||||
👁️ **وضعیت فرزند و تکفل**\* |
|
||||
\[چندانتخابی در صورت نیاز\] |
|
||||
|
|
||||
* فرزندی ندارم. |
|
||||
* فرزند دارم و با من زندگی میکند. |
|
||||
* فرزند دارم اما با من زندگی نمیکند. |
|
||||
* شخص دیگری غیر از فرزند تحت تکفل من است. |
|
||||
|
|
||||
👁️ **تعداد فرزندان** |
|
||||
\[فیلد عددی شرطی\] |
|
||||
|
|
||||
👁️ **توضیح کوتاه درباره شرایط فرزند یا تکفل** |
|
||||
\[فیلد متنی شرطی\] |
|
||||
|
|
||||
--- |
|
||||
|
|
||||
# **بخش ۷: اعتقادات، سبک زندگی، شخصیت و خطوط قرمز شخصی** |
|
||||
|
|
||||
👁️ **مرجع تقلید**\* |
|
||||
\[فیلد متنی یا چکباکس\] |
|
||||
|
|
||||
* این موضوع برایم اولویت ندارد. |
|
||||
|
|
||||
🔒 **میزان تقید به نمازهای واجب**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* همیشه مقید هستم، ترجیحاً اول وقت. |
|
||||
* همیشه مقید هستم، اما نه لزوماً اول وقت. |
|
||||
* گاهی اوقات میخوانم. |
|
||||
* نمیخوانم. |
|
||||
|
|
||||
🔒 **میزان تقید به روزه ماه رمضان**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* کاملاً مقید هستم. |
|
||||
* به دلیل عذر شرعی یا پزشکی روزه نمیگیرم. |
|
||||
* گاهی بدون عذر شرعی روزه نمیگیرم. |
|
||||
* مقید نیستم. |
|
||||
* |
|
||||
|
|
||||
👁️ **نوع پوشش و ظاهر**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
*(راهنما: لطفاً گزینهای را انتخاب کنید که بیشترین تطابق را با پوشش روزمره شما در اجتماع دارد.)* |
|
||||
|
|
||||
* 🔘 **پوشش کامل اسلامی (حجاب حداکثری)** |
|
||||
* استفاده از لباسهایی مانند عبایا، جلباب، چادر یا نقاب با رعایت دقیق و کامل تمامی حدود شرعی. |
|
||||
* 🔘 **حجاب کامل با لباسهای آزاد و پوشیده** |
|
||||
* استفاده از لباسهای گشاد و بلند (مانند تونیک، مانتو یا شلوار قمیص) به همراه رعایت کامل حجاب موی سر. |
|
||||
* 🔘 **پوشش عرفی/روزمره به همراه حجاب** |
|
||||
* استفاده از لباسهای معمول و مدرن (مانند شلوار جین یا استایلهای کژوال) به همراه پوشاندن موی سر با شال، روسری یا توربان. |
|
||||
* 🔘 **پوشش محجوب و باوقار (بدون حجاب سر)** |
|
||||
* استفاده از لباسهای کاملاً پوشیده، سنگین و رسمی، اما بدون استفاده از شال، روسری و پوشش موی سر. |
|
||||
* 🔘 **پوشش آزاد و مدرن (بدون رعایت حجاب)** |
|
||||
* پوشش کاملاً آزاد و مطابق با استایلهای روز جامعه بینالملل، بدون رعایت قواعد شرعی حجاب اسلامی. |
|
||||
|
|
||||
👁️ **آرایش در محیط عمومی، مخصوص خانمها** |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* اصلاً آرایش نمیکنم. |
|
||||
* فقط آرایش بسیار ملایم دارم. |
|
||||
* آرایش کامل میکنم. |
|
||||
|
|
||||
### 🔒 **نگرش شما به رابطه دین و سیاست (و خط قرمزهای همسر آینده)** |
|
||||
|
|
||||
### \[تکانتخابی\] |
|
||||
|
|
||||
*(راهنما: لطفاً گزینهای را انتخاب کنید که نگاه شما به مذهب و انتظار شما از همسر آیندهتان را بهتر توصیف میکند.)* |
|
||||
|
|
||||
* 🔘 دین را از سیاست جدا نمیدانم و همسرم نیز حتماً باید دغدغه و نگاه سیاسی-اجتماعی در دین داشته باشد. |
|
||||
* 🔘 دین را از سیاست جدا نمیدانم، اما داشتن دغدغه یا فعالیت سیاسی برای همسرم الزامی نیست و برایم خط قرمز محسوب نمیشود. |
|
||||
* 🔘 نگاهم به تشیع کاملاً سنتی و غیرسیاسی است و به هیچ وجه با فردی که نگاه سیاسی به دین دارد نمیتوانم ازدواج کنم. |
|
||||
* 🔘 نگاهم به تشیع غیرسیاسی است، اما اگر همسر آیندهام نگاه سیاسی داشته باشد برایم خط قرمز نیست و با آن کنار میآیم. |
|
||||
* 🔘 اساساً این مفاهیم و دستهبندیها (تشیع سیاسی یا غیرسیاسی) برایم مطرح نیست یا چندان درگیر این مسائل نیستم. |
|
||||
|
|
||||
### 🔒 **موضع شما نسبت به حاکمیت/دولت فعلی کشور محل سکونتتان** |
|
||||
|
|
||||
*(راهنما: این بخش برای جلوگیری از تنشهای جدیِ اعتقادی در زندگی مشترک طراحی شده است.)* |
|
||||
|
|
||||
* 🔘 حامی حاکمیت/دولت فعلی کشورم هستم و مخالفت جدی طرف مقابل با حاکمیت، برایم خط قرمز است. |
|
||||
* 🔘 حامی حاکمیت/دولت فعلی کشورم هستم، اما تفاوت دیدگاه یا مخالفت همسرم در این زمینه برایم خط قرمز نیست. |
|
||||
* 🔘 مخالف حاکمیت/دولت فعلی کشورم هستم و حمایت جدی طرف مقابل از حاکمیت، برایم خط قرمز است. |
|
||||
* 🔘 مخالف حاکمیت/دولت فعلی کشورم هستم، اما تفاوت دیدگاه یا حمایت همسرم از دولت برایم خط قرمز نیست. |
|
||||
* 🔘 موضعگیری خاصی (حمایت یا مخالفت جدی) ندارم و تفاوت دیدگاههای سیاسی برایم اهمیت چندانی در زندگی مشترک ندارد. |
|
||||
|
|
||||
### **👁️ حدود روابط شما با جنس مخالف (در محیط کار، فامیل و اجتماع) چگونه است؟** |
|
||||
|
|
||||
* *(راهنما: لطفاً گزینهای را انتخاب کنید که رفتار روزمره شما را در مواجهه با نامحرم بهتر توصیف میکند.)* |
|
||||
* 🔘 **بسیار رسمی و محدود (فقط در حد ضرورت)** |
|
||||
* ارتباطاتم با نامحرم بسیار کوتاه و کاملاً رسمی است و از هرگونه گفتگوی غیرضروری، معاشرت مازاد یا شوخی پرهیز میکنم. |
|
||||
* 🔘 **محترمانه و متعارف (بدون صمیمیت)** |
|
||||
* ارتباطاتم در اجتماع و فامیل محترمانه و با خوشرویی است، اما حریم و مرز جدی برای پرهیز از شوخی، راحتی بیشازحد یا گفتگوهای شخصی دارم. |
|
||||
* 🔘 **اجتماعی و راحتتر (در چارچوب شرع)** |
|
||||
* حضور فعال و راحتی در اجتماع و فامیل دارم؛ معاشرت، گفتگوی صمیمانه و شوخیهای عرفی را تا زمانی که از خطوط قرمز شرعی و اخلاقی خارج نشود، بلامانع میدانم. |
|
||||
* 🔘 **بدون مرزبندی خاص** |
|
||||
* در ارتباط با جنس مخالف کاملاً راحت هستم و مرزبندیهای سنتی یا حساسیتهای مذهبی در معاشرتها، شوخیها و دوستیهای اجتماعی ندارم. |
|
||||
|
|
||||
--- |
|
||||
|
|
||||
## **مصرف دخانیات، الکل و مواد** |
|
||||
|
|
||||
🔒 **سیگار**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* اصلاً مصرف نمیکنم. |
|
||||
* گاهی / تفریحی مصرف میکنم. |
|
||||
* مرتب مصرف میکنم. |
|
||||
* در حال ترک هستم. |
|
||||
|
|
||||
🔒 **قلیان**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* اصلاً مصرف نمیکنم. |
|
||||
* گاهی / تفریحی مصرف میکنم. |
|
||||
* مرتب مصرف میکنم. |
|
||||
* در حال ترک هستم. |
|
||||
|
|
||||
🔒 **ویپ / سیگار الکترونیک**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* اصلاً مصرف نمیکنم. |
|
||||
* گاهی / تفریحی مصرف میکنم. |
|
||||
* مرتب مصرف میکنم. |
|
||||
* در حال ترک هستم. |
|
||||
|
|
||||
🔒 **مشروبات الکلی**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* اصلاً مصرف نمیکنم. |
|
||||
* مصرف الکل برای من خط قرمز جدی است. |
|
||||
* گاهی مصرف میکنم. |
|
||||
* مصرف میکنم. |
|
||||
|
|
||||
🔒 **مواد مخدر یا مواد غیرقانونی**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* هرگز مصرف نکردهام. |
|
||||
* سابقه مصرف داشتهام، اما اکنون مصرف نمیکنم. |
|
||||
* مصرف میکنم. |
|
||||
* در حال ترک یا درمان هستم. |
|
||||
|
|
||||
--- |
|
||||
|
|
||||
## **سبک زندگی و سلیقهها** |
|
||||
|
|
||||
👁️ **نگرش به موسیقی**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* به هیچ نوع موسیقی گوش نمیدهم. |
|
||||
* فقط نشید، آکاپلا، مذهبی یا بدون ساز گوش میدهم. |
|
||||
* موسیقی حلال و مجاز گوش میدهم. |
|
||||
* حساسیت خاصی روی نوع موسیقی ندارم. |
|
||||
|
|
||||
🔒 **نگرش به مراسم عروسی**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* بدون مراسم یا بسیار ساده. |
|
||||
* کاملاً شرعی و تفکیکشده. |
|
||||
* مختلط محترمانه، بدون رقص و موسیقی غیرشرعی. |
|
||||
* مختلط همراه با موسیقی و رقص. |
|
||||
* هنوز تصمیم قطعی ندارم و بسته به توافق خانوادهها تصمیم میگیرم. |
|
||||
|
|
||||
👁️ **ویژگیهای شخصیتی خودتان**\* |
|
||||
\[چندانتخابی\] |
|
||||
|
|
||||
* آرام و درونگرا |
|
||||
* اجتماعی و برونگرا |
|
||||
* احساسی |
|
||||
* منطقی |
|
||||
* شوخطبع |
|
||||
* جدی |
|
||||
* اهل گفتگو |
|
||||
* خانوادهدوست |
|
||||
* مستقل |
|
||||
* مسئولیتپذیر |
|
||||
* صبور |
|
||||
* منظم |
|
||||
* اهل برنامهریزی |
|
||||
* انعطافپذیر |
|
||||
* حساس و دقیق |
|
||||
* اهل رشد فردی |
|
||||
|
|
||||
👁️ **سرگرمیها و علایق اصلی**\* |
|
||||
\[چندانتخابی\] |
|
||||
|
|
||||
* تلاوت قرآن و مطالعه دینی |
|
||||
* حضور در مسجد و هیئت |
|
||||
* فعالیت مذهبی و فرهنگی |
|
||||
* سفر زیارتی |
|
||||
* سفر سیاحتی |
|
||||
* طبیعتگردی |
|
||||
* ورزش |
|
||||
* مطالعه |
|
||||
* فیلم و سینما |
|
||||
* آشپزی |
|
||||
* هنر |
|
||||
* موسیقی |
|
||||
* بازیهای فکری |
|
||||
* فعالیت اجتماعی و خیریه |
|
||||
* کافه و رستوران |
|
||||
* یادگیری زبان |
|
||||
* تکنولوژی و کامپیوتر |
|
||||
|
|
||||
👁️ **توضیح کوتاه درباره سبک زندگی خودتان** |
|
||||
\[فیلد متنی اختیاری\] |
|
||||
|
|
||||
--- |
|
||||
|
|
||||
# **بخش ۸: معیارها و خطوط قرمز همسر آینده** |
|
||||
|
|
||||
⚠️ این بخش کاملاً محرمانه است و فقط برای مچینگ و بررسی کارشناسان استفاده میشود. |
|
||||
|
|
||||
🔒 **بازه سنی مطلوب همسر آینده**\* |
|
||||
از \[عدد\] تا \[عدد\] سال |
|
||||
|
|
||||
🔒 **بازه قدی مطلوب همسر آینده**\* |
|
||||
\[چندانتخابی\] |
|
||||
|
|
||||
* مهم نیست. |
|
||||
* کمتر از ۱۶۰ |
|
||||
* ۱۶۰ تا ۱۷۰ |
|
||||
* ۱۷۰ تا ۱۸۰ |
|
||||
* ۱۸۰ تا ۱۹۰ |
|
||||
* بالای ۱۹۰ |
|
||||
|
|
||||
🔒 **تیپ بدنی مطلوب همسر آینده**\* |
|
||||
\[چندانتخابی\] |
|
||||
|
|
||||
* مهم نیست. |
|
||||
* لاغراندام |
|
||||
* متناسب |
|
||||
* ورزیده |
|
||||
* توپر |
|
||||
* درشتاندام |
|
||||
|
|
||||
🔒 **رنگ پوست مطلوب همسر آینده**\* |
|
||||
\[چندانتخابی\] |
|
||||
|
|
||||
* مهم نیست. |
|
||||
* سفید / روشن |
|
||||
* گندمگون / سبزه روشن |
|
||||
* سبزه تیره / قهوهای |
|
||||
* تیره / سیاهپوست |
|
||||
|
|
||||
🔒 **قومیت، زبان یا ملیت مطلوب همسر آینده** |
|
||||
\[فیلد متنی اختیاری\] |
|
||||
|
|
||||
🔒 **حداقل سطح تحصیلات همسر آینده**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* مهم نیست. |
|
||||
* حداقل دیپلم |
|
||||
* حداقل کارشناسی |
|
||||
* حداقل کارشناسی ارشد |
|
||||
* دکتری یا بالاتر ترجیح دارد. |
|
||||
* حتماً تحصیلات حوزوی / علوم دینی داشته باشد. |
|
||||
* تحصیلات دانشگاهی مهم نیست، اما بلوغ فکری مهم است. |
|
||||
|
|
||||
🔒 **وضعیت اشتغال مطلوب همسر آینده**\* |
|
||||
\[چندانتخابی\] |
|
||||
|
|
||||
* مهم نیست. |
|
||||
* شاغل باشد. |
|
||||
* دانشجو باشد. |
|
||||
* خانهدار باشد. |
|
||||
* کارآفرین / صاحب کسبوکار باشد. |
|
||||
* در مسیر رشد شغلی باشد. |
|
||||
* بسته به شرایط قابل گفتگو است. |
|
||||
|
|
||||
🔒 **پذیرش سابقه عقد یا ازدواج همسر آینده**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* فقط مجرد؛ سابقه عقد یا ازدواج قبلی برایم خط قرمز است. |
|
||||
* مجرد ترجیح دارد، اما شرایط خاص را بررسی میکنم. |
|
||||
* تفاوتی ندارد. |
|
||||
* بستگی به علت جدایی، مدت ازدواج قبلی و شرایط خانوادگی دارد. |
|
||||
|
|
||||
🔒 **پذیرش داشتن فرزند از ازدواج قبلی**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* به هیچ وجه نمیپذیرم. |
|
||||
* در شرایط خاص میپذیرم. |
|
||||
* تفاوتی ندارد. |
|
||||
* فقط اگر فرزند با او زندگی نکند، بررسی میکنم. |
|
||||
|
|
||||
🔒 **معیارهای پوشش و حجاب همسر آینده**\* |
|
||||
\[تکانتخابی متناسب با جنسیت\] |
|
||||
|
|
||||
برای آقایانی که به دنبال همسر خانم هستند: |
|
||||
|
|
||||
* پوشش کامل اسلامی مانند چادر، عبایا یا جلباب الزامی است. |
|
||||
* حجاب شرعی الزامی است، اما نوع آن مهم نیست. |
|
||||
* پوشش عرفی همراه با حجاب قابل قبول است. |
|
||||
* پوشش محجوب و سنگین مهم است، اما جزئیات قابل گفتگو است. |
|
||||
* حساسیت خاصی ندارم. |
|
||||
|
|
||||
برای خانمهایی که به دنبال همسر آقا هستند: |
|
||||
|
|
||||
* پوشش رسمی، سنگین و مذهبی داشته باشد. |
|
||||
* ساده، مرتب و محجوب باشد. |
|
||||
* پوشش معمولی و آراسته کافی است. |
|
||||
* پوشش مدرن برایم مشکلی ندارد. |
|
||||
* حساسیت خاصی ندارم. |
|
||||
|
|
||||
🔒 **تمایل به ادامه تحصیل همسر آینده**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* مهم نیست. |
|
||||
* حتماً قصد ادامه تحصیل داشته باشد. |
|
||||
* ادامه تحصیل مثبت است، اما الزامی نیست. |
|
||||
* ترجیح میدهم بعد از ازدواج ادامه تحصیل ندهد. |
|
||||
* بسته به شرایط زندگی مشترک تصمیم میگیریم. |
|
||||
|
|
||||
🔒 **تمایل به اشتغال همسر آینده**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* مهم نیست. |
|
||||
* حتماً شاغل باشد. |
|
||||
* حتماً خانهدار باشد. |
|
||||
* اختیار با خودش باشد. |
|
||||
* بسته به شرایط زندگی، فرزندآوری و توافق مشترک تصمیم میگیریم. |
|
||||
* فقط با شغلی که با ارزشهای دینی و خانوادگی من سازگار باشد موافقم. |
|
||||
|
|
||||
🔒 **وضعیت خانوادگی همسر آینده**\* |
|
||||
\[چندانتخابی\] |
|
||||
|
|
||||
* این معیارها برایم مهم نیست. |
|
||||
* والدین همسرم طلاق نگرفته باشند. |
|
||||
* پدر همسر آیندهام در قید حیات باشد. |
|
||||
* مادر همسر آیندهام در قید حیات باشد. |
|
||||
* فضای مذهبی خانواده همسر برایم مهم است. |
|
||||
* خانواده همسر باید اهل ارتباط محترمانه و سالم باشند. |
|
||||
|
|
||||
🔒 **سطح ارتباط با خانوادهها بعد از ازدواج**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* ارتباط نزدیک و پررنگ با خانوادهها را دوست دارم. |
|
||||
* ارتباط محترمانه اما با حفظ استقلال زندگی مشترک را ترجیح میدهم. |
|
||||
* ارتباط محدود و کنترلشده را ترجیح میدهم. |
|
||||
* بسته به شرایط خانوادهها تصمیم میگیرم. |
|
||||
|
|
||||
🔒 **میزان پایبندی مذهبی مطلوب همسر آینده**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* بسیار مذهبی و مقید |
|
||||
* مذهبی معتدل |
|
||||
* عرفی اما محترم به دین |
|
||||
* این معیار برایم اهمیت زیادی ندارد. |
|
||||
|
|
||||
🔒 **نگرش سیاسی مطلوب همسر آینده**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* حتماً همسو با دیدگاه من باشد. |
|
||||
* تفاوت دیدگاه سیاسی مهم نیست، به شرط احترام متقابل. |
|
||||
* ترجیح میدهم سیاسی نباشد. |
|
||||
* سیاست برایم اهمیتی در ازدواج ندارد. |
|
||||
|
|
||||
🔒 **حدود روابط همسر آینده با جنس مخالف**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* بسیار رسمی و محدود باشد. |
|
||||
* معمولی و محترمانه باشد. |
|
||||
* اجتماعیتر باشد، اما در چارچوب شرع و اخلاق. |
|
||||
|
|
||||
🔒 **خط قرمزهای مربوط به دخانیات، الکل و مواد در همسر آینده**\* |
|
||||
\[چندانتخابی\] |
|
||||
|
|
||||
* سیگار برایم خط قرمز است. |
|
||||
* قلیان برایم خط قرمز است. |
|
||||
* ویپ برایم خط قرمز است. |
|
||||
* الکل برایم خط قرمز جدی است. |
|
||||
* مواد مخدر برایم خط قرمز قطعی است. |
|
||||
* مصرف تفریحی دخانیات را در شرایط خاص میپذیرم. |
|
||||
* هیچکدام برایم خط قرمز نیست. |
|
||||
|
|
||||
🔒 **نگرش همسر آینده به موسیقی**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* نباید به موسیقی گوش بدهد. |
|
||||
* فقط موسیقی مذهبی / بدون ساز / نشید قابل قبول است. |
|
||||
* موسیقی حلال و مجاز قابل قبول است. |
|
||||
* حساسیت خاصی ندارم. |
|
||||
|
|
||||
🔒 **نگرش همسر آینده به مراسم عروسی**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* مراسم ساده یا بدون مراسم را ترجیح دهد. |
|
||||
* فقط مراسم کاملاً شرعی و تفکیکشده قابل قبول است. |
|
||||
* مراسم مختلط محترمانه و بدون رقص و موسیقی غیرشرعی قابل قبول است. |
|
||||
* مراسم مختلط با موسیقی و رقص قابل قبول است. |
|
||||
* بسته به توافق خانوادهها قابل تصمیمگیری است. |
|
||||
|
|
||||
🔒 **پذیرش بیماری خاص، معلولیت یا شرایط درمانی در همسر آینده**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* برایم خط قرمز است. |
|
||||
* در شرایط خاص و با توضیح کامل بررسی میکنم. |
|
||||
* اگر مانع زندگی مشترک سالم نباشد، میپذیرم. |
|
||||
* موردی و با مشورت بررسی میکنم. |
|
||||
|
|
||||
🔒 **پذیرش سابقه مشاوره یا درمان روانشناختی همسر آینده**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* برایم مشکلی ندارد. |
|
||||
* بستگی به شرایط فعلی و میزان ثبات دارد. |
|
||||
* برایم خط قرمز است. |
|
||||
* نیاز به بررسی جدیتر دارد. |
|
||||
|
|
||||
🔒 **ترجیح درباره محل زندگی بعد از ازدواج**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* کشور محل زندگی طرف مقابل برایم مهم نیست. |
|
||||
* ترجیح میدهم در کشور فعلی خودم بمانم. |
|
||||
* ترجیح میدهم در کشور فعلی همسر آیندهام زندگی کنیم. |
|
||||
* فقط در شهر فعلی خودم حاضر به زندگی هستم. |
|
||||
* آماده مهاجرت به کشور ثالث هستم. |
|
||||
* بسته به کار، اقامت، خانواده و شرایط مالی تصمیم میگیرم. |
|
||||
|
|
||||
🔒 **زندگی با خانواده بعد از ازدواج**\* |
|
||||
\[تکانتخابی\] |
|
||||
|
|
||||
* فقط زندگی مستقل را میپذیرم. |
|
||||
* زندگی موقت با خانواده در ابتدای ازدواج قابل قبول است. |
|
||||
* زندگی با خانواده همسر یا خانواده خودم برایم مشکلی ندارد. |
|
||||
* بستگی به شرایط دارد. |
|
||||
|
|
||||
🔒 **توضیحات تکمیلی و سایر خطوط قرمز**\* |
|
||||
\[فیلد متنی بزرگ\] |
|
||||
راهنما: هر نکته مهمی که در گزینههای بالا نبود، اینجا بنویسید. |
|
||||
|
|
||||
--- |
|
||||
|
|
||||
# **بخش ۹: بارگذاری مدارک، احراز هویت و تصاویر** |
|
||||
|
|
||||
🔒 **تصویر چهره؛ عکس جدید و واضح**\* |
|
||||
\[بارگذاری تصویر\] |
|
||||
|
|
||||
⚠️ این تصویر به هیچ عنوان به طرف مقابل یا سایر کاربران نمایش داده نمیشود. عکس شما فقط توسط کارشناسان تأییدشده و همجنس پلتفرم برای احراز هویت، بررسی تطابق ظاهری و جلوگیری از اختلافات ظاهری شدید بررسی میشود. |
|
||||
|
|
||||
راهنمای عکس مناسب: |
|
||||
|
|
||||
* عکس جدید و واضح باشد. |
|
||||
* چهره کاملاً مشخص باشد. |
|
||||
* فیلتر سنگین نداشته باشد. |
|
||||
* عکس گروهی نباشد. |
|
||||
* نور کافی داشته باشد. |
|
||||
|
|
||||
🔒 **تصویر کارت شناسایی معتبر**\* |
|
||||
\[بارگذاری تصویر\] |
|
||||
|
|
||||
مدارک قابل قبول: |
|
||||
|
|
||||
* پاسپورت |
|
||||
* کارت ملی |
|
||||
* گواهینامه |
|
||||
* کارت اقامت معتبر |
|
||||
* مدرک شناسایی رسمی کشور محل سکونت |
|
||||
|
|
||||
🔒 **تأیید تطابق مدارک و اطلاعات**\* |
|
||||
\[چکباکس\] |
|
||||
|
|
||||
☑️ تأیید میکنم که نام، سن، تصویر و اطلاعات هویتی من با مدارک بارگذاریشده مطابقت دارد. |
|
||||
|
|
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue