@srimandir/make-your-own-ritual 0.53.0 → 0.53.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/MyorOutcome/MyorOutcome.d.ts +7 -3
- package/dist/i18n/translations.addAncestorSheet.en.d.ts +14 -0
- package/dist/i18n/translations.addAncestorSheet.hi.d.ts +13 -0
- package/dist/i18n/translations.addAncestorSheet.kn.d.ts +13 -0
- package/dist/i18n/translations.addAncestorSheet.te.d.ts +13 -0
- package/dist/i18n/translations.deathTithi.en.d.ts +53 -0
- package/dist/i18n/translations.deathTithi.hi.d.ts +52 -0
- package/dist/i18n/translations.deathTithi.kn.d.ts +52 -0
- package/dist/i18n/translations.deathTithi.te.d.ts +52 -0
- package/dist/i18n/translations.en.d.ts +158 -101
- package/dist/i18n/translations.hi.d.ts +150 -95
- package/dist/i18n/translations.kn.d.ts +150 -95
- package/dist/i18n/translations.landing.en.d.ts +56 -0
- package/dist/i18n/translations.landing.hi.d.ts +54 -0
- package/dist/i18n/translations.landing.kn.d.ts +54 -0
- package/dist/i18n/translations.landing.te.d.ts +54 -0
- package/dist/i18n/translations.outcome.en.d.ts +52 -0
- package/dist/i18n/translations.outcome.hi.d.ts +52 -0
- package/dist/i18n/translations.outcome.kn.d.ts +52 -0
- package/dist/i18n/translations.outcome.te.d.ts +52 -0
- package/dist/i18n/translations.sankalp.en.d.ts +41 -0
- package/dist/i18n/translations.sankalp.hi.d.ts +33 -0
- package/dist/i18n/translations.sankalp.kn.d.ts +33 -0
- package/dist/i18n/translations.sankalp.te.d.ts +33 -0
- package/dist/i18n/translations.selectAncestors.en.d.ts +29 -0
- package/dist/i18n/translations.selectAncestors.hi.d.ts +28 -0
- package/dist/i18n/translations.selectAncestors.kn.d.ts +28 -0
- package/dist/i18n/translations.selectAncestors.te.d.ts +28 -0
- package/dist/i18n/translations.selectRitualDaySheet.en.d.ts +19 -0
- package/dist/i18n/translations.selectRitualDaySheet.hi.d.ts +18 -0
- package/dist/i18n/translations.selectRitualDaySheet.kn.d.ts +18 -0
- package/dist/i18n/translations.selectRitualDaySheet.te.d.ts +18 -0
- package/dist/i18n/translations.te.d.ts +150 -95
- package/dist/make-your-own-ritual.js +1832 -1519
- package/dist/make-your-own-ritual.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/types/pitruPakshStore.types.d.ts +4 -0
- package/package.json +5 -5
|
@@ -12,7 +12,7 @@ export type MyorOutcomeRitualData = OutcomeRitualData & {
|
|
|
12
12
|
devoteesReviews?: DevoteeReviewData[];
|
|
13
13
|
learnMoreLabel?: string;
|
|
14
14
|
/** Drives which "learn more" sheet opens — a `ChadhavaSevaBottomSheet` for add-ons vs the full `PujaDetailsSheet` for a real ritual, same split the landing page makes. */
|
|
15
|
-
ritualType?:
|
|
15
|
+
ritualType?: "ritual" | "chadhava" | "seva";
|
|
16
16
|
};
|
|
17
17
|
export interface MyorOutcomeProps {
|
|
18
18
|
ritualCount: number;
|
|
@@ -44,9 +44,13 @@ export interface MyorOutcomeProps {
|
|
|
44
44
|
/** The "Learn more" detail sheet's own content was scrolled — raw values only, no debouncing here. Only fires for the full `PujaDetailsSheet` (a real ritual), not `ChadhavaSevaBottomSheet` (add-ons), which has no scrollable body of its own. */
|
|
45
45
|
onAboutPujaScroll?: (ritualIndex: number, info: PujaDetailsSheetScrollInfo) => void;
|
|
46
46
|
/** Fired when the bill-details sheet is closed — `'cart'` for the sticky CTA's whole-cart bill, a ritual index for that ritual's own. */
|
|
47
|
-
onBillDetailsDismiss?: (billDetailsFor:
|
|
47
|
+
onBillDetailsDismiss?: (billDetailsFor: "cart" | number) => void;
|
|
48
48
|
/** Reports each rendered ritual card's DOM node as it mounts/unmounts, keyed by `ritual.index` — stays dumb, e.g. for an `IntersectionObserver`-based impression tracker in the host app. */
|
|
49
49
|
onCardRef?: (ritualIndex: number, el: HTMLDivElement | null) => void;
|
|
50
|
+
/** Fired when the ancestor-edit sheet's own confirm-remove warning opens (tapping "Remove" on an active ancestor). Analytics-only, no UI effect. */
|
|
51
|
+
onAncestorRemoveWarningShown?: (ritualIndex: number, ancestorId: string) => void;
|
|
52
|
+
/** Fired when that confirm-remove warning is cancelled without removing. Confirming it is already observable via `onAncestorToggle`. Analytics-only, no UI effect. */
|
|
53
|
+
onAncestorRemoveWarningCancel?: (ritualIndex: number, ancestorId: string) => void;
|
|
50
54
|
currencySybmol: string;
|
|
51
55
|
}
|
|
52
56
|
/**
|
|
@@ -62,4 +66,4 @@ export interface MyorOutcomeProps {
|
|
|
62
66
|
* - A ritual's own `devoteesReviews` (per-temple, fetched on demand) takes
|
|
63
67
|
* precedence over showing nothing.
|
|
64
68
|
*/
|
|
65
|
-
export declare function MyorOutcome({ rituals, mandapArrangement, reviewMedia, onDevoteesReviewsSeeMoreClick, totalPrice, onPriceInfoClick, onProceedClick, skipPackageSelect, onBack, backButtonAriaLabel, onLocaleChange, onProceedCtaClick, onPackageSheetOpen, onPackageInteraction, onPackageSheetDismiss, onAboutPujaDismiss, onAboutPujaScroll, onBillDetailsDismiss, onCardRef, packageSelectOptions, }: MyorOutcomeProps & OutcomePackageSelectProps): import("react").JSX.Element;
|
|
69
|
+
export declare function MyorOutcome({ rituals, mandapArrangement, reviewMedia, onDevoteesReviewsSeeMoreClick, totalPrice, onPriceInfoClick, onProceedClick, skipPackageSelect, onBack, backButtonAriaLabel, onLocaleChange, onProceedCtaClick, onPackageSheetOpen, onPackageInteraction, onPackageSheetDismiss, onAboutPujaDismiss, onAboutPujaScroll, onBillDetailsDismiss, onCardRef, onAncestorRemoveWarningShown, onAncestorRemoveWarningCancel, packageSelectOptions, }: MyorOutcomeProps & OutcomePackageSelectProps): import("react").JSX.Element;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* English translations for the AddAncestorSheet modal — split out from
|
|
3
|
+
* `translations.en.ts` for organization, merged back into the exported `en`
|
|
4
|
+
* object there, so the final translations shape is unchanged for every
|
|
5
|
+
* consumer.
|
|
6
|
+
*/
|
|
7
|
+
export declare const addAncestorSheetTranslations: {
|
|
8
|
+
addAncestorModalTitle: string;
|
|
9
|
+
addAncestorModalFieldLabel: string;
|
|
10
|
+
addAncestorModalNamePrefix: string;
|
|
11
|
+
addAncestorModalNamePlaceholder: string;
|
|
12
|
+
addAncestorModalAddMore: string;
|
|
13
|
+
addAncestorModalSaveCta: string;
|
|
14
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Hindi translations for the AddAncestorSheet modal — split out from
|
|
3
|
+
* `translations.hi.ts` for organization, merged back into the exported `hi`
|
|
4
|
+
* object there.
|
|
5
|
+
*/
|
|
6
|
+
export declare const addAncestorSheetTranslations: {
|
|
7
|
+
addAncestorModalTitle: string;
|
|
8
|
+
addAncestorModalFieldLabel: string;
|
|
9
|
+
addAncestorModalNamePrefix: string;
|
|
10
|
+
addAncestorModalNamePlaceholder: string;
|
|
11
|
+
addAncestorModalAddMore: string;
|
|
12
|
+
addAncestorModalSaveCta: string;
|
|
13
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Kannada translations for the AddAncestorSheet modal — split out from
|
|
3
|
+
* `translations.kn.ts` for organization, merged back into the exported `kn`
|
|
4
|
+
* object there.
|
|
5
|
+
*/
|
|
6
|
+
export declare const addAncestorSheetTranslations: {
|
|
7
|
+
addAncestorModalTitle: string;
|
|
8
|
+
addAncestorModalFieldLabel: string;
|
|
9
|
+
addAncestorModalNamePrefix: string;
|
|
10
|
+
addAncestorModalNamePlaceholder: string;
|
|
11
|
+
addAncestorModalAddMore: string;
|
|
12
|
+
addAncestorModalSaveCta: string;
|
|
13
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Telugu translations for the AddAncestorSheet modal — split out from
|
|
3
|
+
* `translations.te.ts` for organization, merged back into the exported `te`
|
|
4
|
+
* object there.
|
|
5
|
+
*/
|
|
6
|
+
export declare const addAncestorSheetTranslations: {
|
|
7
|
+
addAncestorModalTitle: string;
|
|
8
|
+
addAncestorModalFieldLabel: string;
|
|
9
|
+
addAncestorModalNamePrefix: string;
|
|
10
|
+
addAncestorModalNamePlaceholder: string;
|
|
11
|
+
addAncestorModalAddMore: string;
|
|
12
|
+
addAncestorModalSaveCta: string;
|
|
13
|
+
};
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* English translations for the DeathTithi step — split out from
|
|
3
|
+
* `translations.en.ts` for organization, merged back into the exported `en`
|
|
4
|
+
* object there, so the final translations shape is unchanged for every
|
|
5
|
+
* consumer.
|
|
6
|
+
*/
|
|
7
|
+
export declare const deathTithiTranslations: {
|
|
8
|
+
deathTithiProgressLabel: string;
|
|
9
|
+
deathTithiQuestionPrefix: string;
|
|
10
|
+
deathTithiQuestionHighlight: string;
|
|
11
|
+
deathTithiQuestionSuffix: string;
|
|
12
|
+
deathTithiSubtextPrefix: string;
|
|
13
|
+
deathTithiSubtextHighlight: string;
|
|
14
|
+
deathTithiOption1Title: string;
|
|
15
|
+
deathTithiOption1Subtext: string;
|
|
16
|
+
deathTithiOption2Title: string;
|
|
17
|
+
deathTithiOption2Subtext: string;
|
|
18
|
+
deathTithiOption3Title: string;
|
|
19
|
+
deathTithiOption3Subtext: string;
|
|
20
|
+
deathTithiOption3ExpandedTitle: string;
|
|
21
|
+
deathTithiOption3ExpandedBody: string;
|
|
22
|
+
deathTithiOption4Title: string;
|
|
23
|
+
deathTithiCtaLabel: string;
|
|
24
|
+
deathTithiFinalCtaLabel: string;
|
|
25
|
+
deathTithiSarvPitruTag: string;
|
|
26
|
+
deathTithiSarvPitruTitle: string;
|
|
27
|
+
deathTithiSarvPitruDescription: string;
|
|
28
|
+
deathTithiPickerHeadingSuffix: string;
|
|
29
|
+
deathTithiPickerConfirmCta: string;
|
|
30
|
+
deathDatePickerConfirmCta: string;
|
|
31
|
+
deathDatePickerTimezoneLabel: string;
|
|
32
|
+
tithiNamePratipada: string;
|
|
33
|
+
tithiNameDvitiya: string;
|
|
34
|
+
tithiNameTritiya: string;
|
|
35
|
+
tithiNameChaturthi: string;
|
|
36
|
+
tithiNamePanchami: string;
|
|
37
|
+
tithiNameShashthi: string;
|
|
38
|
+
tithiNameSaptami: string;
|
|
39
|
+
tithiNameAshtami: string;
|
|
40
|
+
tithiNameNavami: string;
|
|
41
|
+
tithiNameDashami: string;
|
|
42
|
+
tithiNameEkadashi: string;
|
|
43
|
+
tithiNameDvadashi: string;
|
|
44
|
+
tithiNameTrayodashi: string;
|
|
45
|
+
tithiNameChaturdashi: string;
|
|
46
|
+
tithiNameAmavasya: string;
|
|
47
|
+
amavasyaFallbackDatePassedHeader: string;
|
|
48
|
+
amavasyaFallbackTithiPassedHeader: string;
|
|
49
|
+
amavasyaFallbackCardTitle: string;
|
|
50
|
+
amavasyaFallbackCardBadge: string;
|
|
51
|
+
amavasyaFallbackCardBodyDatePassed: string;
|
|
52
|
+
amavasyaFallbackCta: string;
|
|
53
|
+
};
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Hindi translations for the DeathTithi step — split out from
|
|
3
|
+
* `translations.hi.ts` for organization, merged back into the exported `hi`
|
|
4
|
+
* object there.
|
|
5
|
+
*/
|
|
6
|
+
export declare const deathTithiTranslations: {
|
|
7
|
+
deathTithiProgressLabel: string;
|
|
8
|
+
deathTithiQuestionPrefix: string;
|
|
9
|
+
deathTithiQuestionHighlight: string;
|
|
10
|
+
deathTithiQuestionSuffix: string;
|
|
11
|
+
deathTithiSubtextPrefix: string;
|
|
12
|
+
deathTithiSubtextHighlight: string;
|
|
13
|
+
deathTithiOption1Title: string;
|
|
14
|
+
deathTithiOption1Subtext: string;
|
|
15
|
+
deathTithiOption2Title: string;
|
|
16
|
+
deathTithiOption2Subtext: string;
|
|
17
|
+
deathTithiOption3Title: string;
|
|
18
|
+
deathTithiOption3Subtext: string;
|
|
19
|
+
deathTithiOption3ExpandedTitle: string;
|
|
20
|
+
deathTithiOption3ExpandedBody: string;
|
|
21
|
+
deathTithiOption4Title: string;
|
|
22
|
+
deathTithiCtaLabel: string;
|
|
23
|
+
deathTithiFinalCtaLabel: string;
|
|
24
|
+
deathTithiSarvPitruTag: string;
|
|
25
|
+
deathTithiSarvPitruTitle: string;
|
|
26
|
+
deathTithiSarvPitruDescription: string;
|
|
27
|
+
deathTithiPickerHeadingSuffix: string;
|
|
28
|
+
deathTithiPickerConfirmCta: string;
|
|
29
|
+
deathDatePickerConfirmCta: string;
|
|
30
|
+
deathDatePickerTimezoneLabel: string;
|
|
31
|
+
tithiNamePratipada: string;
|
|
32
|
+
tithiNameDvitiya: string;
|
|
33
|
+
tithiNameTritiya: string;
|
|
34
|
+
tithiNameChaturthi: string;
|
|
35
|
+
tithiNamePanchami: string;
|
|
36
|
+
tithiNameShashthi: string;
|
|
37
|
+
tithiNameSaptami: string;
|
|
38
|
+
tithiNameAshtami: string;
|
|
39
|
+
tithiNameNavami: string;
|
|
40
|
+
tithiNameDashami: string;
|
|
41
|
+
tithiNameEkadashi: string;
|
|
42
|
+
tithiNameDvadashi: string;
|
|
43
|
+
tithiNameTrayodashi: string;
|
|
44
|
+
tithiNameChaturdashi: string;
|
|
45
|
+
tithiNameAmavasya: string;
|
|
46
|
+
amavasyaFallbackDatePassedHeader: string;
|
|
47
|
+
amavasyaFallbackTithiPassedHeader: string;
|
|
48
|
+
amavasyaFallbackCardTitle: string;
|
|
49
|
+
amavasyaFallbackCardBadge: string;
|
|
50
|
+
amavasyaFallbackCardBodyDatePassed: string;
|
|
51
|
+
amavasyaFallbackCta: string;
|
|
52
|
+
};
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Kannada translations for the DeathTithi step — split out from
|
|
3
|
+
* `translations.kn.ts` for organization, merged back into the exported `kn`
|
|
4
|
+
* object there.
|
|
5
|
+
*/
|
|
6
|
+
export declare const deathTithiTranslations: {
|
|
7
|
+
deathTithiProgressLabel: string;
|
|
8
|
+
deathTithiQuestionPrefix: string;
|
|
9
|
+
deathTithiQuestionHighlight: string;
|
|
10
|
+
deathTithiQuestionSuffix: string;
|
|
11
|
+
deathTithiSubtextPrefix: string;
|
|
12
|
+
deathTithiSubtextHighlight: string;
|
|
13
|
+
deathTithiOption1Title: string;
|
|
14
|
+
deathTithiOption1Subtext: string;
|
|
15
|
+
deathTithiOption2Title: string;
|
|
16
|
+
deathTithiOption2Subtext: string;
|
|
17
|
+
deathTithiOption3Title: string;
|
|
18
|
+
deathTithiOption3Subtext: string;
|
|
19
|
+
deathTithiOption3ExpandedTitle: string;
|
|
20
|
+
deathTithiOption3ExpandedBody: string;
|
|
21
|
+
deathTithiOption4Title: string;
|
|
22
|
+
deathTithiCtaLabel: string;
|
|
23
|
+
deathTithiFinalCtaLabel: string;
|
|
24
|
+
deathTithiSarvPitruTag: string;
|
|
25
|
+
deathTithiSarvPitruTitle: string;
|
|
26
|
+
deathTithiSarvPitruDescription: string;
|
|
27
|
+
deathTithiPickerHeadingSuffix: string;
|
|
28
|
+
deathTithiPickerConfirmCta: string;
|
|
29
|
+
deathDatePickerConfirmCta: string;
|
|
30
|
+
deathDatePickerTimezoneLabel: string;
|
|
31
|
+
tithiNamePratipada: string;
|
|
32
|
+
tithiNameDvitiya: string;
|
|
33
|
+
tithiNameTritiya: string;
|
|
34
|
+
tithiNameChaturthi: string;
|
|
35
|
+
tithiNamePanchami: string;
|
|
36
|
+
tithiNameShashthi: string;
|
|
37
|
+
tithiNameSaptami: string;
|
|
38
|
+
tithiNameAshtami: string;
|
|
39
|
+
tithiNameNavami: string;
|
|
40
|
+
tithiNameDashami: string;
|
|
41
|
+
tithiNameEkadashi: string;
|
|
42
|
+
tithiNameDvadashi: string;
|
|
43
|
+
tithiNameTrayodashi: string;
|
|
44
|
+
tithiNameChaturdashi: string;
|
|
45
|
+
tithiNameAmavasya: string;
|
|
46
|
+
amavasyaFallbackDatePassedHeader: string;
|
|
47
|
+
amavasyaFallbackTithiPassedHeader: string;
|
|
48
|
+
amavasyaFallbackCardTitle: string;
|
|
49
|
+
amavasyaFallbackCardBadge: string;
|
|
50
|
+
amavasyaFallbackCardBodyDatePassed: string;
|
|
51
|
+
amavasyaFallbackCta: string;
|
|
52
|
+
};
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Telugu translations for the DeathTithi step — split out from
|
|
3
|
+
* `translations.te.ts` for organization, merged back into the exported `te`
|
|
4
|
+
* object there.
|
|
5
|
+
*/
|
|
6
|
+
export declare const deathTithiTranslations: {
|
|
7
|
+
deathTithiProgressLabel: string;
|
|
8
|
+
deathTithiQuestionPrefix: string;
|
|
9
|
+
deathTithiQuestionHighlight: string;
|
|
10
|
+
deathTithiQuestionSuffix: string;
|
|
11
|
+
deathTithiSubtextPrefix: string;
|
|
12
|
+
deathTithiSubtextHighlight: string;
|
|
13
|
+
deathTithiOption1Title: string;
|
|
14
|
+
deathTithiOption1Subtext: string;
|
|
15
|
+
deathTithiOption2Title: string;
|
|
16
|
+
deathTithiOption2Subtext: string;
|
|
17
|
+
deathTithiOption3Title: string;
|
|
18
|
+
deathTithiOption3Subtext: string;
|
|
19
|
+
deathTithiOption3ExpandedTitle: string;
|
|
20
|
+
deathTithiOption3ExpandedBody: string;
|
|
21
|
+
deathTithiOption4Title: string;
|
|
22
|
+
deathTithiCtaLabel: string;
|
|
23
|
+
deathTithiFinalCtaLabel: string;
|
|
24
|
+
deathTithiSarvPitruTag: string;
|
|
25
|
+
deathTithiSarvPitruTitle: string;
|
|
26
|
+
deathTithiSarvPitruDescription: string;
|
|
27
|
+
deathTithiPickerHeadingSuffix: string;
|
|
28
|
+
deathTithiPickerConfirmCta: string;
|
|
29
|
+
deathDatePickerConfirmCta: string;
|
|
30
|
+
deathDatePickerTimezoneLabel: string;
|
|
31
|
+
tithiNamePratipada: string;
|
|
32
|
+
tithiNameDvitiya: string;
|
|
33
|
+
tithiNameTritiya: string;
|
|
34
|
+
tithiNameChaturthi: string;
|
|
35
|
+
tithiNamePanchami: string;
|
|
36
|
+
tithiNameShashthi: string;
|
|
37
|
+
tithiNameSaptami: string;
|
|
38
|
+
tithiNameAshtami: string;
|
|
39
|
+
tithiNameNavami: string;
|
|
40
|
+
tithiNameDashami: string;
|
|
41
|
+
tithiNameEkadashi: string;
|
|
42
|
+
tithiNameDvadashi: string;
|
|
43
|
+
tithiNameTrayodashi: string;
|
|
44
|
+
tithiNameChaturdashi: string;
|
|
45
|
+
tithiNameAmavasya: string;
|
|
46
|
+
amavasyaFallbackDatePassedHeader: string;
|
|
47
|
+
amavasyaFallbackTithiPassedHeader: string;
|
|
48
|
+
amavasyaFallbackCardTitle: string;
|
|
49
|
+
amavasyaFallbackCardBadge: string;
|
|
50
|
+
amavasyaFallbackCardBodyDatePassed: string;
|
|
51
|
+
amavasyaFallbackCta: string;
|
|
52
|
+
};
|
|
@@ -1,79 +1,99 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* English translations for Make Your Own Ritual
|
|
2
|
+
* English translations for Make Your Own Ritual — assembled from one file
|
|
3
|
+
* per page/section (see each import above). Edit the section file for the
|
|
4
|
+
* page you're changing; this file only merges them into the shape every
|
|
5
|
+
* consumer (`useI18n()`) actually reads.
|
|
3
6
|
*/
|
|
4
7
|
export declare const en: {
|
|
5
|
-
headerBadge: string;
|
|
6
|
-
headerDateRange: string;
|
|
7
|
-
headerHeadline: string;
|
|
8
|
-
chooseMultipleNote: string;
|
|
9
|
-
nextStepInfoNote: string;
|
|
10
|
-
ritualPindDaanTitle: string;
|
|
11
|
-
ritualPindDaanDesc: string;
|
|
12
|
-
ritualTarpanTitle: string;
|
|
13
|
-
ritualTarpanDesc: string;
|
|
14
|
-
ritualShraddhaTitle: string;
|
|
15
|
-
ritualShraddhaDesc: string;
|
|
16
|
-
ritualLocationKotiTirtha: string;
|
|
17
|
-
ritualRating: string;
|
|
18
|
-
ritualBooked: string;
|
|
19
|
-
ritualRatingTemplate: string;
|
|
20
|
-
sevaRatingTemplate: string;
|
|
21
|
-
ritualBookedTemplate: string;
|
|
22
|
-
ritualPriceLabel: string;
|
|
23
8
|
ritualAboutLink: string;
|
|
24
9
|
ritualReadMore: string;
|
|
25
10
|
ritualReadLess: string;
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
11
|
+
ancestorEditQuestion: string;
|
|
12
|
+
ancestorEditConfirmLabel: string;
|
|
13
|
+
ancestorRemoveWarningPrefix: string;
|
|
14
|
+
ancestorRemoveWarningSuffix: string;
|
|
15
|
+
ancestorRemoveWarningConfirmLabel: string;
|
|
16
|
+
ancestorRemoveWarningCancelLabel: string;
|
|
17
|
+
ancestorEditAddAgainLabel: string;
|
|
18
|
+
ancestorEditRemoveLabel: string;
|
|
19
|
+
outcomeSummaryBadge: string;
|
|
20
|
+
outcomeSummaryHeading: string;
|
|
21
|
+
outcomeSummaryTrust1: string;
|
|
22
|
+
outcomeSummaryTrust2: string;
|
|
23
|
+
outcomeSummaryTrust3: string;
|
|
24
|
+
pujaVideoTestimonialsHeading: string;
|
|
25
|
+
pujaVideoTestimonialsSubtitle: string;
|
|
26
|
+
billDetailsCloseAriaLabel: string;
|
|
27
|
+
billDetailsFeeLabel: string;
|
|
28
|
+
billDetailsHeading: string;
|
|
29
|
+
billDetailsTotalLabel: string;
|
|
30
|
+
devoteesReviewsHeading: string;
|
|
31
|
+
devoteesReviewsSeeMoreLabel: string;
|
|
32
|
+
devoteesReviewsSubtitle: string;
|
|
33
|
+
landingTopBarBackButtonAriaLabel: string;
|
|
34
|
+
outcomeAddLabel: string;
|
|
35
|
+
outcomeAddedLabel: string;
|
|
36
|
+
outcomeEditAriaLabel: string;
|
|
37
|
+
outcomeLearnMoreLabel: string;
|
|
38
|
+
outcomePriceInfoLabel: string;
|
|
39
|
+
outcomePriceInfoLabelSeva: string;
|
|
40
|
+
outcomePriceInfoLabelChadhava: string;
|
|
41
|
+
outcomeRemovedRitualsHeading: string;
|
|
42
|
+
outcomeStickyCtaPriceInfoAriaLabel: string;
|
|
43
|
+
outcomeStickyCtaRitualSingular: string;
|
|
44
|
+
outcomeStickyCtaRitualPlural: string;
|
|
45
|
+
pujaBenefitsHeading: string;
|
|
46
|
+
pujaDetailsDragHandleAriaLabel: string;
|
|
47
|
+
pujaDetailsGotItLabel: string;
|
|
48
|
+
packageSelectTitle: string;
|
|
49
|
+
packageSelectDescription: string;
|
|
50
|
+
packageSelectBenefit1: string;
|
|
51
|
+
packageSelectBenefit2: string;
|
|
52
|
+
packageSelectBenefit3: string;
|
|
53
|
+
sankalpProceedToPaymentLabel: string;
|
|
54
|
+
sankalpTopBarTitle: string;
|
|
55
|
+
sankalpBackButtonAriaLabel: string;
|
|
56
|
+
sankalpWhatsappNumberLabel: string;
|
|
57
|
+
sankalpWhatsappNumberPlaceholder: string;
|
|
58
|
+
sankalpWhatsappNumberHelperText: string;
|
|
59
|
+
sankalpEmailLabel: string;
|
|
60
|
+
sankalpEmailPlaceholder: string;
|
|
61
|
+
sankalpEmailHelperText: string;
|
|
62
|
+
sankalpKartaNameSectionTitle: string;
|
|
63
|
+
sankalpKartaNameLabel: string;
|
|
64
|
+
sankalpKartaNameOptionalSuffix: string;
|
|
65
|
+
sankalpKartaNamePlaceholder: string;
|
|
66
|
+
sankalpNameMinLengthError: string;
|
|
67
|
+
sankalpAncestorNameRequiredError: string;
|
|
68
|
+
sankalpGotraFieldLabel: string;
|
|
69
|
+
sankalpGotraFieldPlaceholder: string;
|
|
70
|
+
sankalpGotraUnknownCheckboxLabel: string;
|
|
71
|
+
sankalpGotraUnknownHelperText: string;
|
|
72
|
+
sankalpAncestorNameSectionTitle: string;
|
|
73
|
+
sankalpAncestorNameSectionSubtitle: string;
|
|
74
|
+
sankalpAncestorNameFieldSuffix: string;
|
|
75
|
+
sankalpSarvaPitruSectionSubtitle: string;
|
|
76
|
+
sankalpSarvaPitruFieldValue: string;
|
|
77
|
+
sankalpSarvaPitruHelperText: string;
|
|
78
|
+
sankalpLatePrefixLabel: string;
|
|
79
|
+
sankalpKashyapGotraLabel: string;
|
|
80
|
+
selectRitualDaySheetHeading: string;
|
|
81
|
+
selectRitualDaySheetCardTitle: string;
|
|
82
|
+
selectRitualDaySheetCardDescription: string;
|
|
83
|
+
selectRitualDaySheetAllAncestorsCardTitle: string;
|
|
84
|
+
selectRitualDaySheetAllAncestorsCardDescription: string;
|
|
85
|
+
selectRitualDaySheetTag: string;
|
|
86
|
+
selectRitualDaySheetDeathAnniversaryTitle: string;
|
|
87
|
+
selectRitualDaySheetDeathAnniversaryDescription: string;
|
|
88
|
+
selectRitualDaySheetCta: string;
|
|
89
|
+
selectRitualDaySheetAmavasyaCta: string;
|
|
90
|
+
selectRitualDaySheetDeathTithiCta: string;
|
|
91
|
+
addAncestorModalTitle: string;
|
|
92
|
+
addAncestorModalFieldLabel: string;
|
|
93
|
+
addAncestorModalNamePrefix: string;
|
|
94
|
+
addAncestorModalNamePlaceholder: string;
|
|
95
|
+
addAncestorModalAddMore: string;
|
|
96
|
+
addAncestorModalSaveCta: string;
|
|
77
97
|
deathTithiProgressLabel: string;
|
|
78
98
|
deathTithiQuestionPrefix: string;
|
|
79
99
|
deathTithiQuestionHighlight: string;
|
|
@@ -119,35 +139,72 @@ export declare const en: {
|
|
|
119
139
|
amavasyaFallbackCardBadge: string;
|
|
120
140
|
amavasyaFallbackCardBodyDatePassed: string;
|
|
121
141
|
amavasyaFallbackCta: string;
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
142
|
+
selectAncestorsBackAriaLabel: string;
|
|
143
|
+
selectAncestorsProgressLabel: string;
|
|
144
|
+
selectAncestorsQuestion: string;
|
|
145
|
+
selectAncestorsCardHeading: string;
|
|
146
|
+
selectAncestorsAllAncestorsCaption: string;
|
|
147
|
+
selectAncestorsCtaNextRitual: string;
|
|
148
|
+
selectAncestorsCtaProceed: string;
|
|
149
|
+
selectAncestorsAddMoreLabel: string;
|
|
150
|
+
selectAncestorsOptionAll: string;
|
|
151
|
+
selectAncestorsOptionMother: string;
|
|
152
|
+
selectAncestorsOptionFather: string;
|
|
153
|
+
selectAncestorsOptionWife: string;
|
|
154
|
+
selectAncestorsOptionHusband: string;
|
|
155
|
+
selectAncestorsOptionGrandfatherPaternal: string;
|
|
156
|
+
selectAncestorsOptionGrandmotherPaternal: string;
|
|
157
|
+
selectAncestorsOptionGrandfatherMaternal: string;
|
|
158
|
+
selectAncestorsOptionGrandmotherMaternal: string;
|
|
159
|
+
selectAncestorsOptionGreatGrandfatherPaternal: string;
|
|
160
|
+
selectAncestorsOptionGreatGrandmotherPaternal: string;
|
|
161
|
+
selectAncestorsOptionGreatGrandfatherMaternal: string;
|
|
162
|
+
selectAncestorsOptionGreatGrandmotherMaternal: string;
|
|
163
|
+
headerBadge: string;
|
|
164
|
+
headerDateRange: string;
|
|
165
|
+
headerHeadline: string;
|
|
166
|
+
chooseMultipleNote: string;
|
|
167
|
+
nextStepInfoNote: string;
|
|
168
|
+
ritualPindDaanTitle: string;
|
|
169
|
+
ritualPindDaanDesc: string;
|
|
170
|
+
ritualTarpanTitle: string;
|
|
171
|
+
ritualTarpanDesc: string;
|
|
172
|
+
ritualShraddhaTitle: string;
|
|
173
|
+
ritualShraddhaDesc: string;
|
|
174
|
+
ritualLocationKotiTirtha: string;
|
|
175
|
+
ritualRating: string;
|
|
176
|
+
ritualBooked: string;
|
|
177
|
+
ritualRatingTemplate: string;
|
|
178
|
+
sevaRatingTemplate: string;
|
|
179
|
+
ritualBookedTemplate: string;
|
|
180
|
+
ritualPriceLabel: string;
|
|
181
|
+
ritualAboutChadhava: string;
|
|
182
|
+
ritualAboutSeva: string;
|
|
183
|
+
ritualSelectAriaLabel: string;
|
|
184
|
+
ritualCountSingular: string;
|
|
185
|
+
ritualCountPlural: string;
|
|
186
|
+
mandapFeeLabel: string;
|
|
187
|
+
mandapFeeItemLabel: string;
|
|
188
|
+
mandapFeeDescription: string;
|
|
189
|
+
ctaProceed: string;
|
|
190
|
+
formPhone: string;
|
|
191
|
+
formEmail: string;
|
|
192
|
+
confirmLabel: string;
|
|
193
|
+
makeYourOwnRitualCtaLabel: string;
|
|
194
|
+
makeYourOwnRitualHeroTitle: string;
|
|
195
|
+
makeYourOwnRitualHeroSubtitle: string;
|
|
196
|
+
makeYourOwnRitualIntroTitle: string;
|
|
197
|
+
makeYourOwnRitualIntroBody: string;
|
|
198
|
+
makeYourOwnRitualChoicesTitle: string;
|
|
199
|
+
makeYourOwnRitualChoiceDeity: string;
|
|
200
|
+
makeYourOwnRitualChoiceTemple: string;
|
|
201
|
+
makeYourOwnRitualChoiceSankalp: string;
|
|
202
|
+
makeYourOwnRitualChoiceOfferings: string;
|
|
203
|
+
makeYourOwnRitualStepsTitle: string;
|
|
204
|
+
makeYourOwnRitualStep1Title: string;
|
|
205
|
+
makeYourOwnRitualStep1Text: string;
|
|
206
|
+
makeYourOwnRitualStep2Title: string;
|
|
207
|
+
makeYourOwnRitualStep2Text: string;
|
|
208
|
+
makeYourOwnRitualStep3Title: string;
|
|
209
|
+
makeYourOwnRitualStep3Text: string;
|
|
153
210
|
};
|