@finspringinnovations/fdsdk 0.0.1
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/README.md +184 -0
- package/lib/api/applicationApi.d.ts +1 -0
- package/lib/api/applicationApi.js +11 -0
- package/lib/api/bankApi.d.ts +352 -0
- package/lib/api/bankApi.js +54 -0
- package/lib/api/baseApi.d.ts +8 -0
- package/lib/api/baseApi.js +456 -0
- package/lib/api/customerApi.d.ts +855 -0
- package/lib/api/customerApi.js +213 -0
- package/lib/api/fdApi.d.ts +979 -0
- package/lib/api/fdApi.js +112 -0
- package/lib/api/fdCalculatorApi.d.ts +179 -0
- package/lib/api/fdCalculatorApi.js +36 -0
- package/lib/api/index.d.ts +14 -0
- package/lib/api/index.js +45 -0
- package/lib/api/interestRateApi.d.ts +585 -0
- package/lib/api/interestRateApi.js +101 -0
- package/lib/api/kycApi.d.ts +486 -0
- package/lib/api/kycApi.js +71 -0
- package/lib/api/masterDataApi.d.ts +158 -0
- package/lib/api/masterDataApi.js +32 -0
- package/lib/api/nomineeApi.d.ts +325 -0
- package/lib/api/nomineeApi.js +46 -0
- package/lib/api/onboardingApi.d.ts +192 -0
- package/lib/api/onboardingApi.js +41 -0
- package/lib/api/panApi.d.ts +0 -0
- package/lib/api/panApi.js +23 -0
- package/lib/api/paymentApi.d.ts +325 -0
- package/lib/api/paymentApi.js +46 -0
- package/lib/api/workflowApi.d.ts +654 -0
- package/lib/api/workflowApi.js +90 -0
- package/lib/assets/images/images.d.ts +4 -0
- package/lib/assets/images/images.js +10 -0
- package/lib/components/AadhaarInput.d.ts +13 -0
- package/lib/components/AadhaarInput.js +47 -0
- package/lib/components/ActionButton.d.ts +12 -0
- package/lib/components/ActionButton.js +87 -0
- package/lib/components/ActiveFDCard.d.ts +16 -0
- package/lib/components/ActiveFDCard.js +95 -0
- package/lib/components/AmountInput.d.ts +20 -0
- package/lib/components/AmountInput.js +144 -0
- package/lib/components/CheckboxOption.d.ts +11 -0
- package/lib/components/CheckboxOption.js +41 -0
- package/lib/components/CompanyHeader.d.ts +7 -0
- package/lib/components/CompanyHeader.js +57 -0
- package/lib/components/DropdownSelector.d.ts +9 -0
- package/lib/components/DropdownSelector.js +49 -0
- package/lib/components/EmptyState.d.ts +17 -0
- package/lib/components/EmptyState.js +44 -0
- package/lib/components/ErrorDisplay.d.ts +17 -0
- package/lib/components/ErrorDisplay.js +69 -0
- package/lib/components/FAQItem.d.ts +9 -0
- package/lib/components/FAQItem.js +52 -0
- package/lib/components/FDCard.d.ts +21 -0
- package/lib/components/FDCard.js +96 -0
- package/lib/components/FormDropdown.d.ts +18 -0
- package/lib/components/FormDropdown.js +155 -0
- package/lib/components/FormSection.d.ts +14 -0
- package/lib/components/FormSection.js +38 -0
- package/lib/components/Header.d.ts +14 -0
- package/lib/components/Header.js +52 -0
- package/lib/components/IFSCSearchResultCard.d.ts +13 -0
- package/lib/components/IFSCSearchResultCard.js +70 -0
- package/lib/components/InfoBox.d.ts +8 -0
- package/lib/components/InfoBox.js +39 -0
- package/lib/components/InterestRateCard.d.ts +8 -0
- package/lib/components/InterestRateCard.js +46 -0
- package/lib/components/LoadingIndicator.d.ts +12 -0
- package/lib/components/LoadingIndicator.js +30 -0
- package/lib/components/OTPInput.d.ts +17 -0
- package/lib/components/OTPInput.js +144 -0
- package/lib/components/PaymentDetailsCard.d.ts +20 -0
- package/lib/components/PaymentDetailsCard.js +68 -0
- package/lib/components/PendingFDBottomSheet.d.ts +18 -0
- package/lib/components/PendingFDBottomSheet.js +122 -0
- package/lib/components/SafeAreaWrapper.d.ts +13 -0
- package/lib/components/SafeAreaWrapper.js +41 -0
- package/lib/components/ScreenHeader.d.ts +11 -0
- package/lib/components/ScreenHeader.js +46 -0
- package/lib/components/StatusDisplay.d.ts +15 -0
- package/lib/components/StatusDisplay.js +88 -0
- package/lib/components/TextFieldWithLabel.d.ts +46 -0
- package/lib/components/TextFieldWithLabel.js +326 -0
- package/lib/components/TrustBox.d.ts +8 -0
- package/lib/components/TrustBox.js +45 -0
- package/lib/components/ValidationErrorAlert.d.ts +23 -0
- package/lib/components/ValidationErrorAlert.js +39 -0
- package/lib/components/ValidationMessage.d.ts +9 -0
- package/lib/components/ValidationMessage.js +98 -0
- package/lib/components/index.d.ts +35 -0
- package/lib/components/index.js +64 -0
- package/lib/config/apiConfig.d.ts +34 -0
- package/lib/config/apiConfig.js +158 -0
- package/lib/config/appDataConfig.d.ts +114 -0
- package/lib/config/appDataConfig.js +264 -0
- package/lib/config/encryptionConfig.d.ts +21 -0
- package/lib/config/encryptionConfig.js +61 -0
- package/lib/config/workflowConstants.d.ts +37 -0
- package/lib/config/workflowConstants.js +38 -0
- package/lib/constants/strings/bank.d.ts +72 -0
- package/lib/constants/strings/bank.js +86 -0
- package/lib/constants/strings/base64Images.d.ts +25 -0
- package/lib/constants/strings/base64Images.js +28 -0
- package/lib/constants/strings/common.d.ts +53 -0
- package/lib/constants/strings/common.js +62 -0
- package/lib/constants/strings/employee.d.ts +61 -0
- package/lib/constants/strings/employee.js +77 -0
- package/lib/constants/strings/faq.d.ts +14 -0
- package/lib/constants/strings/faq.js +20 -0
- package/lib/constants/strings/fd.d.ts +122 -0
- package/lib/constants/strings/fd.js +151 -0
- package/lib/constants/strings/home.d.ts +49 -0
- package/lib/constants/strings/home.js +62 -0
- package/lib/constants/strings/index.d.ts +16 -0
- package/lib/constants/strings/index.js +44 -0
- package/lib/constants/strings/kyc.d.ts +80 -0
- package/lib/constants/strings/kyc.js +94 -0
- package/lib/constants/strings/nominee.d.ts +64 -0
- package/lib/constants/strings/nominee.js +81 -0
- package/lib/hooks/useAuth.d.ts +25 -0
- package/lib/hooks/useAuth.js +39 -0
- package/lib/hooks/useFDData.d.ts +11 -0
- package/lib/hooks/useFDData.js +40 -0
- package/lib/index.d.ts +69 -0
- package/lib/index.js +182 -0
- package/lib/navigation/RootNavigator.d.ts +8 -0
- package/lib/navigation/RootNavigator.js +205 -0
- package/lib/navigation/SimpleNavigator.d.ts +11 -0
- package/lib/navigation/SimpleNavigator.js +107 -0
- package/lib/navigation/helpers.d.ts +11 -0
- package/lib/navigation/helpers.js +83 -0
- package/lib/navigation/index.d.ts +15 -0
- package/lib/navigation/index.js +42 -0
- package/lib/navigation/types.d.ts +113 -0
- package/lib/navigation/types.js +2 -0
- package/lib/navigation/workflowNavigator.d.ts +22 -0
- package/lib/navigation/workflowNavigator.js +104 -0
- package/lib/providers/ApiProvider.d.ts +7 -0
- package/lib/providers/ApiProvider.js +34 -0
- package/lib/providers/MasterDataProvider.d.ts +10 -0
- package/lib/providers/MasterDataProvider.js +54 -0
- package/lib/screens/AadhaarVerification.d.ts +7 -0
- package/lib/screens/AadhaarVerification.js +627 -0
- package/lib/screens/AddBankAccount.d.ts +22 -0
- package/lib/screens/AddBankAccount.js +381 -0
- package/lib/screens/BankDetail.d.ts +16 -0
- package/lib/screens/BankDetail.js +596 -0
- package/lib/screens/BookFD.d.ts +0 -0
- package/lib/screens/BookFD.js +315 -0
- package/lib/screens/Employee.d.ts +18 -0
- package/lib/screens/Employee.js +594 -0
- package/lib/screens/FDCalculator.d.ts +18 -0
- package/lib/screens/FDCalculator.js +759 -0
- package/lib/screens/FDList.d.ts +27 -0
- package/lib/screens/FDList.js +1008 -0
- package/lib/screens/FindIFSC.d.ts +16 -0
- package/lib/screens/FindIFSC.js +248 -0
- package/lib/screens/Home.d.ts +0 -0
- package/lib/screens/Home.js +143 -0
- package/lib/screens/NomineeDetail.d.ts +17 -0
- package/lib/screens/NomineeDetail.js +592 -0
- package/lib/screens/PayNow.d.ts +14 -0
- package/lib/screens/PayNow.js +230 -0
- package/lib/screens/Payment.d.ts +11 -0
- package/lib/screens/Payment.js +191 -0
- package/lib/screens/PaymentStatus.d.ts +16 -0
- package/lib/screens/PaymentStatus.js +397 -0
- package/lib/screens/ReviewKYC.d.ts +21 -0
- package/lib/screens/ReviewKYC.js +660 -0
- package/lib/state/paymentSession.d.ts +8 -0
- package/lib/state/paymentSession.js +13 -0
- package/lib/store/fdListSelectedSlice.d.ts +21 -0
- package/lib/store/fdListSelectedSlice.js +26 -0
- package/lib/store/hooks.d.ts +8 -0
- package/lib/store/hooks.js +31 -0
- package/lib/store/index.d.ts +3 -0
- package/lib/store/index.js +8 -0
- package/lib/store/onboardingSlice.d.ts +12 -0
- package/lib/store/onboardingSlice.js +32 -0
- package/lib/store/store.d.ts +13 -0
- package/lib/store/store.js +33 -0
- package/lib/theme/ThemeContext.d.ts +210 -0
- package/lib/theme/ThemeContext.js +90 -0
- package/lib/theme/colors.d.ts +80 -0
- package/lib/theme/colors.js +85 -0
- package/lib/theme/index.d.ts +34 -0
- package/lib/theme/index.js +69 -0
- package/lib/theme/shadows.d.ts +53 -0
- package/lib/theme/shadows.js +58 -0
- package/lib/theme/typography.d.ts +134 -0
- package/lib/theme/typography.js +143 -0
- package/lib/types/dataTypes.d.ts +34 -0
- package/lib/types/dataTypes.js +2 -0
- package/lib/types/workflowTypes.d.ts +2 -0
- package/lib/types/workflowTypes.js +2 -0
- package/lib/utils/apiLogger.d.ts +48 -0
- package/lib/utils/apiLogger.js +105 -0
- package/lib/utils/encryption.d.ts +28 -0
- package/lib/utils/encryption.js +113 -0
- package/lib/utils/getFDData.d.ts +48 -0
- package/lib/utils/getFDData.js +154 -0
- package/lib/utils/globalData.d.ts +2 -0
- package/lib/utils/globalData.js +10 -0
- package/package.json +76 -0
- package/src/api/applicationApi.ts +12 -0
- package/src/api/bankApi.ts +42 -0
- package/src/api/baseApi.ts +513 -0
- package/src/api/customerApi.ts +291 -0
- package/src/api/fdApi.ts +150 -0
- package/src/api/fdCalculatorApi.ts +41 -0
- package/src/api/index.ts +29 -0
- package/src/api/interestRateApi.ts +143 -0
- package/src/api/kycApi.ts +63 -0
- package/src/api/masterDataApi.ts +34 -0
- package/src/api/nomineeApi.ts +34 -0
- package/src/api/onboardingApi.ts +64 -0
- package/src/api/panApi.ts +25 -0
- package/src/api/paymentApi.ts +34 -0
- package/src/api/workflowApi.ts +94 -0
- package/src/assets/images/arrow-filled.png +0 -0
- package/src/assets/images/arrow-left.png +0 -0
- package/src/assets/images/backicon.png +0 -0
- package/src/assets/images/calendar.png +0 -0
- package/src/assets/images/chevron-down.png +0 -0
- package/src/assets/images/chevron-down@2x.png +0 -0
- package/src/assets/images/chevron-down@3x.png +0 -0
- package/src/assets/images/images.js +8 -0
- package/src/components/AadhaarInput.tsx +91 -0
- package/src/components/ActionButton.tsx +129 -0
- package/src/components/ActiveFDCard.tsx +158 -0
- package/src/components/AmountInput.tsx +217 -0
- package/src/components/CheckboxOption.tsx +93 -0
- package/src/components/CompanyHeader.tsx +78 -0
- package/src/components/DropdownSelector.tsx +77 -0
- package/src/components/EmptyState.tsx +109 -0
- package/src/components/ErrorDisplay.tsx +135 -0
- package/src/components/FAQItem.tsx +90 -0
- package/src/components/FDCard.tsx +165 -0
- package/src/components/FormDropdown.tsx +214 -0
- package/src/components/FormSection.tsx +86 -0
- package/src/components/Header.tsx +110 -0
- package/src/components/IFSCSearchResultCard.tsx +139 -0
- package/src/components/InfoBox.tsx +55 -0
- package/src/components/InterestRateCard.tsx +77 -0
- package/src/components/LoadingIndicator.tsx +63 -0
- package/src/components/OTPInput.tsx +213 -0
- package/src/components/PaymentDetailsCard.tsx +120 -0
- package/src/components/PendingFDBottomSheet.tsx +235 -0
- package/src/components/README.md +210 -0
- package/src/components/SafeAreaWrapper.tsx +68 -0
- package/src/components/ScreenHeader.tsx +83 -0
- package/src/components/StatusDisplay.tsx +139 -0
- package/src/components/TextFieldWithLabel.tsx +502 -0
- package/src/components/TrustBox.tsx +63 -0
- package/src/components/ValidationErrorAlert.tsx +57 -0
- package/src/components/ValidationMessage.tsx +134 -0
- package/src/components/index.tsx +47 -0
- package/src/config/apiConfig.ts +217 -0
- package/src/config/appDataConfig.ts +279 -0
- package/src/config/encryptionConfig.ts +65 -0
- package/src/config/workflowConstants.ts +43 -0
- package/src/constants/strings/README.md +146 -0
- package/src/constants/strings/bank.ts +92 -0
- package/src/constants/strings/base64Images.ts +29 -0
- package/src/constants/strings/common.ts +63 -0
- package/src/constants/strings/employee.ts +85 -0
- package/src/constants/strings/faq.ts +23 -0
- package/src/constants/strings/fd.ts +172 -0
- package/src/constants/strings/home.ts +67 -0
- package/src/constants/strings/index.ts +21 -0
- package/src/constants/strings/kyc.ts +100 -0
- package/src/constants/strings/nominee.ts +90 -0
- package/src/hooks/useAuth.ts +42 -0
- package/src/hooks/useFDData.ts +48 -0
- package/src/index.tsx +173 -0
- package/src/navigation/RootNavigator.tsx +352 -0
- package/src/navigation/SimpleNavigator.tsx +107 -0
- package/src/navigation/helpers.ts +85 -0
- package/src/navigation/index.tsx +81 -0
- package/src/navigation/types.ts +124 -0
- package/src/navigation/workflowNavigator.ts +131 -0
- package/src/providers/ApiProvider.tsx +43 -0
- package/src/providers/MasterDataProvider.tsx +30 -0
- package/src/screens/AadhaarVerification.tsx +809 -0
- package/src/screens/AddBankAccount.tsx +541 -0
- package/src/screens/BankDetail.tsx +826 -0
- package/src/screens/BookFD.tsx +330 -0
- package/src/screens/Employee.tsx +822 -0
- package/src/screens/FDCalculator.tsx +987 -0
- package/src/screens/FDList.tsx +1284 -0
- package/src/screens/FindIFSC.tsx +332 -0
- package/src/screens/Home.tsx +152 -0
- package/src/screens/NomineeDetail.tsx +800 -0
- package/src/screens/PayNow.tsx +282 -0
- package/src/screens/Payment.tsx +224 -0
- package/src/screens/PaymentStatus.tsx +561 -0
- package/src/screens/ReviewKYC.tsx +956 -0
- package/src/state/paymentSession.ts +13 -0
- package/src/store/fdListSelectedSlice.ts +42 -0
- package/src/store/hooks.ts +27 -0
- package/src/store/index.ts +3 -0
- package/src/store/onboardingSlice.ts +37 -0
- package/src/store/store.ts +35 -0
- package/src/theme/ThemeContext.tsx +82 -0
- package/src/theme/colors.ts +90 -0
- package/src/theme/index.ts +64 -0
- package/src/theme/shadows.ts +61 -0
- package/src/theme/typography.ts +151 -0
- package/src/types/dataTypes.ts +37 -0
- package/src/types/env.d.ts +93 -0
- package/src/types/workflowTypes.ts +12 -0
- package/src/utils/apiLogger.ts +166 -0
- package/src/utils/encryption.ts +159 -0
- package/src/utils/getFDData.ts +175 -0
- package/src/utils/globalData.ts +7 -0
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EMPLOYEE_STRINGS = void 0;
|
|
4
|
+
// Employee and occupation related strings
|
|
5
|
+
exports.EMPLOYEE_STRINGS = {
|
|
6
|
+
// Screen titles
|
|
7
|
+
EMPLOYEE_DETAILS_TITLE: 'Employee Details',
|
|
8
|
+
OCCUPATION_DETAILS_TITLE: 'Occupation Details',
|
|
9
|
+
INCOME_DETAILS_TITLE: 'Income Details',
|
|
10
|
+
// Form labels
|
|
11
|
+
OCCUPATION_LABEL: 'Occupation',
|
|
12
|
+
NATURE_OF_BUSINESS_LABEL: 'Nature of Business',
|
|
13
|
+
CUSTOM_OCCUPATION_LABEL: 'Custom Occupation',
|
|
14
|
+
CUSTOM_NATURE_OF_BUSINESS_LABEL: 'Custom Nature of Business',
|
|
15
|
+
ANNUAL_INCOME_LABEL: 'Annual Income',
|
|
16
|
+
SOURCE_OF_FUND_LABEL: 'Source of Fund',
|
|
17
|
+
POLITICALLY_EXPOSED_PERSON_LABEL: 'Politically Exposed Person',
|
|
18
|
+
CUSTOM_SOURCE_OF_FUND_LABEL: 'Custom Source of Fund',
|
|
19
|
+
// Placeholders
|
|
20
|
+
OCCUPATION_PLACEHOLDER: 'Select Occupation',
|
|
21
|
+
NATURE_OF_BUSINESS_PLACEHOLDER: 'Select Nature of Business',
|
|
22
|
+
CUSTOM_OCCUPATION_PLACEHOLDER: 'Enter Custom Occupation',
|
|
23
|
+
CUSTOM_NATURE_OF_BUSINESS_PLACEHOLDER: 'Enter Custom Nature of Business',
|
|
24
|
+
ANNUAL_INCOME_PLACEHOLDER: 'Select Annual Income',
|
|
25
|
+
SOURCE_OF_FUND_PLACEHOLDER: 'Select Source of Fund',
|
|
26
|
+
POLITICALLY_EXPOSED_PERSON_PLACEHOLDER: 'Select Option',
|
|
27
|
+
CUSTOM_SOURCE_OF_FUND_PLACEHOLDER: 'Enter Custom Source of Fund',
|
|
28
|
+
// Occupation options
|
|
29
|
+
OCCUPATION_SALARIED: 'Salaried',
|
|
30
|
+
OCCUPATION_SELF_EMPLOYED: 'Self Employed',
|
|
31
|
+
OCCUPATION_BUSINESS: 'Business',
|
|
32
|
+
OCCUPATION_PROFESSIONAL: 'Professional',
|
|
33
|
+
OCCUPATION_RETIRED: 'Retired',
|
|
34
|
+
OCCUPATION_HOUSEWIFE: 'Housewife',
|
|
35
|
+
OCCUPATION_STUDENT: 'Student',
|
|
36
|
+
OCCUPATION_OTHER: 'Other',
|
|
37
|
+
// Income options
|
|
38
|
+
INCOME_BELOW_1_LAKH: 'Below Rs 1 Lakh',
|
|
39
|
+
INCOME_1_TO_3_LAKH: 'Rs 1 Lakh - 3 Lakhs',
|
|
40
|
+
INCOME_3_TO_6_LAKH: 'Rs 3 Lakhs - 6 Lakhs',
|
|
41
|
+
INCOME_6_TO_10_LAKH: 'Rs 6 Lakhs - 10 Lakhs',
|
|
42
|
+
INCOME_10_TO_25_LAKH: 'Rs 10 Lakhs - 25 Lakhs',
|
|
43
|
+
INCOME_ABOVE_25_LAKH: 'Above Rs 25 Lakhs',
|
|
44
|
+
// Source of fund options
|
|
45
|
+
SOURCE_SALARY: 'Salary',
|
|
46
|
+
SOURCE_BUSINESS: 'Business Income',
|
|
47
|
+
SOURCE_INVESTMENT: 'Investment Returns',
|
|
48
|
+
SOURCE_INHERITANCE: 'Inheritance',
|
|
49
|
+
SOURCE_GIFT: 'Gift',
|
|
50
|
+
SOURCE_OTHER: 'Other',
|
|
51
|
+
// Politically exposed person options
|
|
52
|
+
PEP_YES: 'Yes',
|
|
53
|
+
PEP_NO: 'No',
|
|
54
|
+
PEP_RELATED: 'Related to Politically Exposed Person',
|
|
55
|
+
// Buttons
|
|
56
|
+
SAVE_OCCUPATION_BUTTON: 'Save Occupation Details',
|
|
57
|
+
UPDATE_OCCUPATION_BUTTON: 'Update Occupation Details',
|
|
58
|
+
// Messages
|
|
59
|
+
OCCUPATION_SAVED_SUCCESS: 'Occupation details saved successfully',
|
|
60
|
+
OCCUPATION_SAVED_FAILED: 'Failed to save occupation details',
|
|
61
|
+
OCCUPATION_UPDATED_SUCCESS: 'Occupation details updated successfully',
|
|
62
|
+
OCCUPATION_UPDATED_FAILED: 'Failed to update occupation details',
|
|
63
|
+
// Validation messages
|
|
64
|
+
OCCUPATION_REQUIRED: 'Occupation is required',
|
|
65
|
+
NATURE_OF_BUSINESS_REQUIRED: 'Nature of business is required for self-employed',
|
|
66
|
+
ANNUAL_INCOME_REQUIRED: 'Annual income is required',
|
|
67
|
+
SOURCE_OF_FUND_REQUIRED: 'Source of fund is required',
|
|
68
|
+
POLITICALLY_EXPOSED_PERSON_REQUIRED: 'Please specify if you are politically exposed',
|
|
69
|
+
// Conditional messages
|
|
70
|
+
NATURE_OF_BUSINESS_HIDDEN: 'Nature of business is only required for self-employed individuals',
|
|
71
|
+
CUSTOM_FIELDS_REQUIRED: 'Please provide custom details when "Other" is selected',
|
|
72
|
+
// Instructions
|
|
73
|
+
OCCUPATION_INSTRUCTIONS: 'Please select your current occupation',
|
|
74
|
+
INCOME_INSTRUCTIONS: 'Please select your annual income range',
|
|
75
|
+
SOURCE_OF_FUND_INSTRUCTIONS: 'Please specify the source of your funds',
|
|
76
|
+
PEP_INSTRUCTIONS: 'Please indicate if you are a politically exposed person',
|
|
77
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare const FAQ_STRINGS: {
|
|
2
|
+
readonly FAQ_WITHDRAWAL_QUESTION: "Can I Withdraw Shriram Finance Ltd. FD before maturity? If yes, what is the impact on interest?";
|
|
3
|
+
readonly FAQ_CREDIT_QUESTION: "Where will my Fixed Deposit amount get credited after maturity?";
|
|
4
|
+
readonly FAQ_TAX_EXEMPTION_QUESTION: "Can I show Shriram Finance Ltd. Fixed Deposit Investment for tax exemption?";
|
|
5
|
+
readonly FAQ_CUMULATIVE_QUESTION: "What do cumulative & non-cumulative interest payment options means in Fixed Deposits?";
|
|
6
|
+
readonly FAQ_OPENING_TIME_QUESTION: "How much time does it take to open a Fixed Deposit?";
|
|
7
|
+
readonly FAQ_TDS_AVOIDANCE_QUESTION: "How to avoid TDS on FD interest if my interest earned is below tax limit?";
|
|
8
|
+
readonly FAQ_WITHDRAWAL_ANSWER: "Yes, you can withdraw your Shriram Finance Ltd. Fixed Deposit (FD) before maturity, but doing so will impact the interest earned. Typically, the interest rate on premature withdrawals is lower than the agreed-upon rate for the full tenure of the FD. Additionally, Shriram Finance Ltd. may charge a penalty, which can further reduce the interest accrued. The interest will also be recalculated based on the duration the FD was held, and you will receive a reduced payout compared to the original maturity amount. It's advisable to check the specific terms and conditions with Shriram Finance Ltd. for detailed information on penalties and interest adjustments.";
|
|
9
|
+
readonly FAQ_CREDIT_ANSWER: "After the maturity of your Fixed Deposit with Shriram Finance Ltd., the principal amount along with the interest earned will be credited to your registered bank account. If you have chosen a different option like a payout to a specific bank account, the funds will be transferred accordingly. You can verify the credit details by checking your bank account or by contacting Shriram Finance for confirmation.";
|
|
10
|
+
readonly FAQ_TAX_EXEMPTION_ANSWER: "No, a Fixed Deposit (FD) with Shriram Finance Ltd. does not qualify for tax exemption under Section 80C of the Income Tax Act. However, the interest earned on the FD is subject to tax, and you will need to pay tax based on your income tax slab.\n\nIf you are looking for tax-saving options, you can explore specific tax-saving Fixed Deposits (like 5-year tax-saving FDs), which are eligible for deductions under Section 80C. It's always a good idea to consult a tax advisor for personalized advice.";
|
|
11
|
+
readonly FAQ_CUMULATIVE_ANSWER: "In Fixed Deposits, the cumulative interest option means that the interest earned is added to the principal, and you receive the total amount (principal + interest) at maturity. The interest is compounded, meaning you earn interest on the interest as well.\n\nOn the other hand, the non-cumulative interest option allows you to receive interest payouts periodically, such as monthly, quarterly, or annually. The principal amount is paid back to you at maturity, and the interest is not reinvested. This option is ideal for those who want regular income from their investment.";
|
|
12
|
+
readonly FAQ_OPENING_TIME_ANSWER: "Opening a Fixed Deposit with Shriram Finance takes just a few minutes if done online. If done offline, it might take a few hours depending on paperwork.";
|
|
13
|
+
readonly FAQ_TDS_AVOIDANCE_ANSWER: "To avoid TDS on FD interest if your earnings are below the taxable limit, you can submit Form 15G (for individuals below 60 years) or Form 15H (for senior citizens above 60 years) to the bank or financial institution. This form declares that your total income is below the taxable limit, and no TDS should be deducted.";
|
|
14
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FAQ_STRINGS = void 0;
|
|
4
|
+
// FAQ related strings
|
|
5
|
+
exports.FAQ_STRINGS = {
|
|
6
|
+
// FAQ Questions
|
|
7
|
+
FAQ_WITHDRAWAL_QUESTION: 'Can I Withdraw Shriram Finance Ltd. FD before maturity? If yes, what is the impact on interest?',
|
|
8
|
+
FAQ_CREDIT_QUESTION: 'Where will my Fixed Deposit amount get credited after maturity?',
|
|
9
|
+
FAQ_TAX_EXEMPTION_QUESTION: 'Can I show Shriram Finance Ltd. Fixed Deposit Investment for tax exemption?',
|
|
10
|
+
FAQ_CUMULATIVE_QUESTION: 'What do cumulative & non-cumulative interest payment options means in Fixed Deposits?',
|
|
11
|
+
FAQ_OPENING_TIME_QUESTION: 'How much time does it take to open a Fixed Deposit?',
|
|
12
|
+
FAQ_TDS_AVOIDANCE_QUESTION: 'How to avoid TDS on FD interest if my interest earned is below tax limit?',
|
|
13
|
+
// FAQ Answers
|
|
14
|
+
FAQ_WITHDRAWAL_ANSWER: 'Yes, you can withdraw your Shriram Finance Ltd. Fixed Deposit (FD) before maturity, but doing so will impact the interest earned. Typically, the interest rate on premature withdrawals is lower than the agreed-upon rate for the full tenure of the FD. Additionally, Shriram Finance Ltd. may charge a penalty, which can further reduce the interest accrued. The interest will also be recalculated based on the duration the FD was held, and you will receive a reduced payout compared to the original maturity amount. It\'s advisable to check the specific terms and conditions with Shriram Finance Ltd. for detailed information on penalties and interest adjustments.',
|
|
15
|
+
FAQ_CREDIT_ANSWER: 'After the maturity of your Fixed Deposit with Shriram Finance Ltd., the principal amount along with the interest earned will be credited to your registered bank account. If you have chosen a different option like a payout to a specific bank account, the funds will be transferred accordingly. You can verify the credit details by checking your bank account or by contacting Shriram Finance for confirmation.',
|
|
16
|
+
FAQ_TAX_EXEMPTION_ANSWER: 'No, a Fixed Deposit (FD) with Shriram Finance Ltd. does not qualify for tax exemption under Section 80C of the Income Tax Act. However, the interest earned on the FD is subject to tax, and you will need to pay tax based on your income tax slab.\n\nIf you are looking for tax-saving options, you can explore specific tax-saving Fixed Deposits (like 5-year tax-saving FDs), which are eligible for deductions under Section 80C. It\'s always a good idea to consult a tax advisor for personalized advice.',
|
|
17
|
+
FAQ_CUMULATIVE_ANSWER: 'In Fixed Deposits, the cumulative interest option means that the interest earned is added to the principal, and you receive the total amount (principal + interest) at maturity. The interest is compounded, meaning you earn interest on the interest as well.\n\nOn the other hand, the non-cumulative interest option allows you to receive interest payouts periodically, such as monthly, quarterly, or annually. The principal amount is paid back to you at maturity, and the interest is not reinvested. This option is ideal for those who want regular income from their investment.',
|
|
18
|
+
FAQ_OPENING_TIME_ANSWER: 'Opening a Fixed Deposit with Shriram Finance takes just a few minutes if done online. If done offline, it might take a few hours depending on paperwork.',
|
|
19
|
+
FAQ_TDS_AVOIDANCE_ANSWER: 'To avoid TDS on FD interest if your earnings are below the taxable limit, you can submit Form 15G (for individuals below 60 years) or Form 15H (for senior citizens above 60 years) to the bank or financial institution. This form declares that your total income is below the taxable limit, and no TDS should be deducted.',
|
|
20
|
+
};
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
export declare const FD_STRINGS: {
|
|
2
|
+
readonly FD_CALCULATOR_TITLE: "FD Calculator";
|
|
3
|
+
readonly FD_LIST_TITLE: "FD List";
|
|
4
|
+
readonly FD_DETAILS_TITLE: "FD Details";
|
|
5
|
+
readonly BOOK_FD_TITLE: "Book Fixed Deposit";
|
|
6
|
+
readonly PAY_NOW_TITLE: "Pay Now";
|
|
7
|
+
readonly INVESTMENT_AMOUNT_LABEL: "Investment Amount";
|
|
8
|
+
readonly TENURE_LABEL: "Tenure";
|
|
9
|
+
readonly DEPOSIT_SCHEME_LABEL: "Deposit Scheme";
|
|
10
|
+
readonly INTEREST_RATE_LABEL: "Interest Rate";
|
|
11
|
+
readonly MATURITY_AMOUNT_LABEL: "Maturity Amount";
|
|
12
|
+
readonly MATURITY_INSTRUCTIONS_LABEL: "Maturity Instructions";
|
|
13
|
+
readonly INTEREST_PAYOUT_TERM_LABEL: "Interest Payout Term";
|
|
14
|
+
readonly INVESTMENT_AMOUNT_PLACEHOLDER: "Enter Investment Amount";
|
|
15
|
+
readonly TENURE_PLACEHOLDER: "Select Tenure";
|
|
16
|
+
readonly DEPOSIT_SCHEME_PLACEHOLDER: "Select Deposit Scheme";
|
|
17
|
+
readonly INTEREST_RATE_PLACEHOLDER: "Interest Rate";
|
|
18
|
+
readonly MATURITY_AMOUNT_PLACEHOLDER: "Maturity Amount";
|
|
19
|
+
readonly MATURITY_INSTRUCTIONS_PLACEHOLDER: "Select Maturity Instructions";
|
|
20
|
+
readonly INTEREST_PAYOUT_TERM_PLACEHOLDER: "Select Interest Payout Term";
|
|
21
|
+
readonly SCHEME_CUMULATIVE: "Cumulative";
|
|
22
|
+
readonly SCHEME_NON_CUMULATIVE: "Non-Cumulative";
|
|
23
|
+
readonly SCHEME_FLEXI: "Flexi FD";
|
|
24
|
+
readonly SCHEME_TAX_SAVER: "Tax Saver FD";
|
|
25
|
+
readonly TENURE_1_MONTH: "1 Month";
|
|
26
|
+
readonly TENURE_3_MONTHS: "3 Months";
|
|
27
|
+
readonly TENURE_6_MONTHS: "6 Months";
|
|
28
|
+
readonly TENURE_1_YEAR: "1 Year";
|
|
29
|
+
readonly TENURE_2_YEARS: "2 Years";
|
|
30
|
+
readonly TENURE_3_YEARS: "3 Years";
|
|
31
|
+
readonly TENURE_5_YEARS: "5 Years";
|
|
32
|
+
readonly MATURITY_AUTO_RENEWAL: "Auto Renewal";
|
|
33
|
+
readonly MATURITY_AUTO_REFUND: "Auto Refund";
|
|
34
|
+
readonly MATURITY_MANUAL: "Manual";
|
|
35
|
+
readonly PAYOUT_ON_MATURITY: "On Maturity";
|
|
36
|
+
readonly PAYOUT_MONTHLY: "Monthly";
|
|
37
|
+
readonly PAYOUT_QUARTERLY: "Quarterly";
|
|
38
|
+
readonly PAYOUT_HALF_YEARLY: "Half Yearly";
|
|
39
|
+
readonly PAYOUT_YEARLY: "Yearly";
|
|
40
|
+
readonly CALCULATE_FD_BUTTON: "Calculate FD";
|
|
41
|
+
readonly BOOK_FD_BUTTON: "Start FD";
|
|
42
|
+
readonly CREATE_FD_BUTTON: "Create FD";
|
|
43
|
+
readonly PAY_NOW_BUTTON: "Pay Now";
|
|
44
|
+
readonly VIEW_DETAILS_BUTTON: "View Details";
|
|
45
|
+
readonly DOWNLOAD_CERTIFICATE_BUTTON: "Download Certificate";
|
|
46
|
+
readonly FD_CALCULATED_SUCCESS: "FD calculated successfully";
|
|
47
|
+
readonly FD_CALCULATED_FAILED: "Failed to calculate FD";
|
|
48
|
+
readonly FD_CREATED_SUCCESS: "FD created successfully";
|
|
49
|
+
readonly FD_CREATED_FAILED: "Failed to create FD";
|
|
50
|
+
readonly FD_BOOKED_SUCCESS: "FD booked successfully";
|
|
51
|
+
readonly FD_BOOKED_FAILED: "Failed to book FD";
|
|
52
|
+
readonly PAYMENT_COMPLETED_SUCCESS: "Payment completed successfully";
|
|
53
|
+
readonly PAYMENT_COMPLETED_FAILED: "Payment failed";
|
|
54
|
+
readonly INVESTMENT_AMOUNT_REQUIRED: "Investment amount is required";
|
|
55
|
+
readonly TENURE_REQUIRED: "Tenure is required";
|
|
56
|
+
readonly DEPOSIT_SCHEME_REQUIRED: "Deposit scheme is required";
|
|
57
|
+
readonly MATURITY_INSTRUCTIONS_REQUIRED: "Maturity instructions are required";
|
|
58
|
+
readonly INTEREST_PAYOUT_TERM_REQUIRED: "Interest payout term is required";
|
|
59
|
+
readonly INVALID_INVESTMENT_AMOUNT: "Please enter a valid investment amount";
|
|
60
|
+
readonly MINIMUM_AMOUNT_ERROR: "Minimum investment amount is Rs 5,000";
|
|
61
|
+
readonly MAXIMUM_AMOUNT_ERROR: "Maximum investment amount is Rs 5,00,00,000";
|
|
62
|
+
readonly FD_STATUS_ACTIVE: "Active";
|
|
63
|
+
readonly FD_STATUS_MATURED: "Matured";
|
|
64
|
+
readonly FD_STATUS_CANCELLED: "Cancelled";
|
|
65
|
+
readonly FD_STATUS_PENDING: "Pending";
|
|
66
|
+
readonly FD_STATUS_APPROVED: "Approved";
|
|
67
|
+
readonly FD_STATUS_REJECTED: "Rejected";
|
|
68
|
+
readonly FD_CALCULATOR_INFO: "Calculate your FD returns before investing";
|
|
69
|
+
readonly FD_BENEFITS: "Fixed deposits offer guaranteed returns and capital protection";
|
|
70
|
+
readonly FD_TAX_INFO: "FD interest is taxable as per your income tax slab";
|
|
71
|
+
readonly FD_PREMATURE_WITHDRAWAL: "Premature withdrawal may attract penalty";
|
|
72
|
+
readonly FD_CALCULATION_ERROR: "Unable to calculate FD. Please try again.";
|
|
73
|
+
readonly FD_CREATION_ERROR: "Unable to create FD. Please try again.";
|
|
74
|
+
readonly FD_BOOKING_ERROR: "Unable to book FD. Please try again.";
|
|
75
|
+
readonly PAYMENT_ERROR: "Payment processing failed. Please try again.";
|
|
76
|
+
readonly FD_NOT_FOUND: "FD details not found";
|
|
77
|
+
readonly FD_ALREADY_EXISTS: "FD with similar details already exists";
|
|
78
|
+
readonly FD_SUMMARY_TITLE: "FD Summary";
|
|
79
|
+
readonly INVESTMENT_SUMMARY: "Investment Summary";
|
|
80
|
+
readonly RETURNS_SUMMARY: "Returns Summary";
|
|
81
|
+
readonly TOTAL_INVESTMENT: "Total Investment";
|
|
82
|
+
readonly TOTAL_RETURNS: "Total Returns";
|
|
83
|
+
readonly NET_AMOUNT: "Net Amount";
|
|
84
|
+
readonly INTEREST_AMOUNT: "Interest Amount";
|
|
85
|
+
readonly AMOUNT_PLACEHOLDER: "25000";
|
|
86
|
+
readonly AMOUNT_NOTE: "The entered amount should be in multiples of ₹1000";
|
|
87
|
+
readonly AMOUNT_MIN_MAX: "Min: ₹5 K | Max: ₹5 Cr";
|
|
88
|
+
readonly AMOUNT_MULTIPLES_ERROR: "Amount must be in multiples of ₹1,000";
|
|
89
|
+
readonly SENIOR_CITIZEN_BENEFIT: "+0.25% p.a. more for senior citizens";
|
|
90
|
+
readonly TAX_RESIDENT_CONFIRMATION: "I confirm I am a tax resident of India";
|
|
91
|
+
readonly TAX_RESIDENT_ERROR: "Please confirm that you are a tax resident of India to proceed";
|
|
92
|
+
readonly WITHDRAWAL_INFO: "Withdrawal allowed after 3 months";
|
|
93
|
+
readonly SAFETY_TRUST_TITLE: "Safety & Trust";
|
|
94
|
+
readonly FAQ_TITLE: "Frequently asked questions";
|
|
95
|
+
readonly TRUSTED_BY: "Trusted By ";
|
|
96
|
+
readonly CRORES_INDIANS: "4.6 Crores Indians";
|
|
97
|
+
readonly AAA_RATING: "Stable Rating";
|
|
98
|
+
readonly RATING: "AA+";
|
|
99
|
+
readonly TENURE_12_MONTHS: "12 Months";
|
|
100
|
+
readonly TENURE_24_MONTHS: "24 Months";
|
|
101
|
+
readonly TENURE_36_MONTHS: "36 Months";
|
|
102
|
+
readonly CORPORATE_FDS_TITLE: "Corporate FDs";
|
|
103
|
+
readonly ALL_FDS_TAB: "All FDs";
|
|
104
|
+
readonly LESS_THAN_1Y_TAB: "<1Y";
|
|
105
|
+
readonly LESS_THAN_1_3Y_TAB: "<1-3Y";
|
|
106
|
+
readonly LESS_THAN_3_5Y_TAB: "<3-5Y";
|
|
107
|
+
readonly GREATER_THAN_5Y_TAB: ">5Y";
|
|
108
|
+
readonly ACTIVE_FDS_SECTION: "Active FDs";
|
|
109
|
+
readonly LOADING_RATES: "Loading rates...";
|
|
110
|
+
readonly LOADING_APPLICATIONS: "Loading applications...";
|
|
111
|
+
readonly LOADING_FD_DATA: "Searching for the best F.D. deals...";
|
|
112
|
+
readonly API_ERROR_RETRY: "❌ API Error - Please retry";
|
|
113
|
+
readonly APIS_CONNECTED: "✅ APIs Connected";
|
|
114
|
+
readonly NO_DATA_AVAILABLE: "📱 No data available";
|
|
115
|
+
readonly REFRESH_ALL: "🔄 Refresh All";
|
|
116
|
+
readonly NO_CUSTOMER_FDS_FOUND: "No customer FDs found.";
|
|
117
|
+
readonly NO_FD_OPTIONS_AVAILABLE: "No FD options available at the moment.";
|
|
118
|
+
readonly FAILED_TO_LOAD_FD_DATA: "Failed to load FD data. Please try again.";
|
|
119
|
+
readonly NO_FDS_FOUND_FOR_TENURE: "No FDs found for";
|
|
120
|
+
readonly CUSTOMER_FDS: "customer FDs";
|
|
121
|
+
readonly AVAILABLE_RATES: "available rates";
|
|
122
|
+
};
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FD_STRINGS = void 0;
|
|
4
|
+
// Fixed Deposit related strings
|
|
5
|
+
exports.FD_STRINGS = {
|
|
6
|
+
// Screen titles
|
|
7
|
+
FD_CALCULATOR_TITLE: 'FD Calculator',
|
|
8
|
+
FD_LIST_TITLE: 'FD List',
|
|
9
|
+
FD_DETAILS_TITLE: 'FD Details',
|
|
10
|
+
BOOK_FD_TITLE: 'Book Fixed Deposit',
|
|
11
|
+
PAY_NOW_TITLE: 'Pay Now',
|
|
12
|
+
// Form labels
|
|
13
|
+
INVESTMENT_AMOUNT_LABEL: 'Investment Amount',
|
|
14
|
+
TENURE_LABEL: 'Tenure',
|
|
15
|
+
DEPOSIT_SCHEME_LABEL: 'Deposit Scheme',
|
|
16
|
+
INTEREST_RATE_LABEL: 'Interest Rate',
|
|
17
|
+
MATURITY_AMOUNT_LABEL: 'Maturity Amount',
|
|
18
|
+
MATURITY_INSTRUCTIONS_LABEL: 'Maturity Instructions',
|
|
19
|
+
INTEREST_PAYOUT_TERM_LABEL: 'Interest Payout Term',
|
|
20
|
+
// Placeholders
|
|
21
|
+
INVESTMENT_AMOUNT_PLACEHOLDER: 'Enter Investment Amount',
|
|
22
|
+
TENURE_PLACEHOLDER: 'Select Tenure',
|
|
23
|
+
DEPOSIT_SCHEME_PLACEHOLDER: 'Select Deposit Scheme',
|
|
24
|
+
INTEREST_RATE_PLACEHOLDER: 'Interest Rate',
|
|
25
|
+
MATURITY_AMOUNT_PLACEHOLDER: 'Maturity Amount',
|
|
26
|
+
MATURITY_INSTRUCTIONS_PLACEHOLDER: 'Select Maturity Instructions',
|
|
27
|
+
INTEREST_PAYOUT_TERM_PLACEHOLDER: 'Select Interest Payout Term',
|
|
28
|
+
// Deposit schemes
|
|
29
|
+
SCHEME_CUMULATIVE: 'Cumulative',
|
|
30
|
+
SCHEME_NON_CUMULATIVE: 'Non-Cumulative',
|
|
31
|
+
SCHEME_FLEXI: 'Flexi FD',
|
|
32
|
+
SCHEME_TAX_SAVER: 'Tax Saver FD',
|
|
33
|
+
// Tenure options
|
|
34
|
+
TENURE_1_MONTH: '1 Month',
|
|
35
|
+
TENURE_3_MONTHS: '3 Months',
|
|
36
|
+
TENURE_6_MONTHS: '6 Months',
|
|
37
|
+
TENURE_1_YEAR: '1 Year',
|
|
38
|
+
TENURE_2_YEARS: '2 Years',
|
|
39
|
+
TENURE_3_YEARS: '3 Years',
|
|
40
|
+
TENURE_5_YEARS: '5 Years',
|
|
41
|
+
// Maturity instructions
|
|
42
|
+
MATURITY_AUTO_RENEWAL: 'Auto Renewal',
|
|
43
|
+
MATURITY_AUTO_REFUND: 'Auto Refund',
|
|
44
|
+
MATURITY_MANUAL: 'Manual',
|
|
45
|
+
// Interest payout terms
|
|
46
|
+
PAYOUT_ON_MATURITY: 'On Maturity',
|
|
47
|
+
PAYOUT_MONTHLY: 'Monthly',
|
|
48
|
+
PAYOUT_QUARTERLY: 'Quarterly',
|
|
49
|
+
PAYOUT_HALF_YEARLY: 'Half Yearly',
|
|
50
|
+
PAYOUT_YEARLY: 'Yearly',
|
|
51
|
+
// Buttons
|
|
52
|
+
CALCULATE_FD_BUTTON: 'Calculate FD',
|
|
53
|
+
BOOK_FD_BUTTON: 'Start FD',
|
|
54
|
+
CREATE_FD_BUTTON: 'Create FD',
|
|
55
|
+
PAY_NOW_BUTTON: 'Pay Now',
|
|
56
|
+
VIEW_DETAILS_BUTTON: 'View Details',
|
|
57
|
+
DOWNLOAD_CERTIFICATE_BUTTON: 'Download Certificate',
|
|
58
|
+
// Messages
|
|
59
|
+
FD_CALCULATED_SUCCESS: 'FD calculated successfully',
|
|
60
|
+
FD_CALCULATED_FAILED: 'Failed to calculate FD',
|
|
61
|
+
FD_CREATED_SUCCESS: 'FD created successfully',
|
|
62
|
+
FD_CREATED_FAILED: 'Failed to create FD',
|
|
63
|
+
FD_BOOKED_SUCCESS: 'FD booked successfully',
|
|
64
|
+
FD_BOOKED_FAILED: 'Failed to book FD',
|
|
65
|
+
PAYMENT_COMPLETED_SUCCESS: 'Payment completed successfully',
|
|
66
|
+
PAYMENT_COMPLETED_FAILED: 'Payment failed',
|
|
67
|
+
// Validation messages
|
|
68
|
+
INVESTMENT_AMOUNT_REQUIRED: 'Investment amount is required',
|
|
69
|
+
TENURE_REQUIRED: 'Tenure is required',
|
|
70
|
+
DEPOSIT_SCHEME_REQUIRED: 'Deposit scheme is required',
|
|
71
|
+
MATURITY_INSTRUCTIONS_REQUIRED: 'Maturity instructions are required',
|
|
72
|
+
INTEREST_PAYOUT_TERM_REQUIRED: 'Interest payout term is required',
|
|
73
|
+
INVALID_INVESTMENT_AMOUNT: 'Please enter a valid investment amount',
|
|
74
|
+
MINIMUM_AMOUNT_ERROR: 'Minimum investment amount is Rs 5,000',
|
|
75
|
+
MAXIMUM_AMOUNT_ERROR: 'Maximum investment amount is Rs 5,00,00,000',
|
|
76
|
+
// FD status
|
|
77
|
+
FD_STATUS_ACTIVE: 'Active',
|
|
78
|
+
FD_STATUS_MATURED: 'Matured',
|
|
79
|
+
FD_STATUS_CANCELLED: 'Cancelled',
|
|
80
|
+
FD_STATUS_PENDING: 'Pending',
|
|
81
|
+
FD_STATUS_APPROVED: 'Approved',
|
|
82
|
+
FD_STATUS_REJECTED: 'Rejected',
|
|
83
|
+
// Information messages
|
|
84
|
+
FD_CALCULATOR_INFO: 'Calculate your FD returns before investing',
|
|
85
|
+
FD_BENEFITS: 'Fixed deposits offer guaranteed returns and capital protection',
|
|
86
|
+
FD_TAX_INFO: 'FD interest is taxable as per your income tax slab',
|
|
87
|
+
FD_PREMATURE_WITHDRAWAL: 'Premature withdrawal may attract penalty',
|
|
88
|
+
// Error messages
|
|
89
|
+
FD_CALCULATION_ERROR: 'Unable to calculate FD. Please try again.',
|
|
90
|
+
FD_CREATION_ERROR: 'Unable to create FD. Please try again.',
|
|
91
|
+
FD_BOOKING_ERROR: 'Unable to book FD. Please try again.',
|
|
92
|
+
PAYMENT_ERROR: 'Payment processing failed. Please try again.',
|
|
93
|
+
FD_NOT_FOUND: 'FD details not found',
|
|
94
|
+
FD_ALREADY_EXISTS: 'FD with similar details already exists',
|
|
95
|
+
// Summary labels
|
|
96
|
+
FD_SUMMARY_TITLE: 'FD Summary',
|
|
97
|
+
INVESTMENT_SUMMARY: 'Investment Summary',
|
|
98
|
+
RETURNS_SUMMARY: 'Returns Summary',
|
|
99
|
+
TOTAL_INVESTMENT: 'Total Investment',
|
|
100
|
+
TOTAL_RETURNS: 'Total Returns',
|
|
101
|
+
NET_AMOUNT: 'Net Amount',
|
|
102
|
+
INTEREST_AMOUNT: 'Interest Amount',
|
|
103
|
+
// Input placeholders and note
|
|
104
|
+
AMOUNT_PLACEHOLDER: '25000',
|
|
105
|
+
AMOUNT_NOTE: 'The entered amount should be in multiples of ₹1000',
|
|
106
|
+
AMOUNT_MIN_MAX: 'Min: ₹5 K | Max: ₹5 Cr',
|
|
107
|
+
AMOUNT_MULTIPLES_ERROR: 'Amount must be in multiples of ₹1,000',
|
|
108
|
+
// Senior citizen benefits
|
|
109
|
+
SENIOR_CITIZEN_BENEFIT: '+0.25% p.a. more for senior citizens',
|
|
110
|
+
// Tax resident confirmation
|
|
111
|
+
TAX_RESIDENT_CONFIRMATION: 'I confirm I am a tax resident of India',
|
|
112
|
+
TAX_RESIDENT_ERROR: 'Please confirm that you are a tax resident of India to proceed',
|
|
113
|
+
// Withdrawal information
|
|
114
|
+
WITHDRAWAL_INFO: 'Withdrawal allowed after 3 months',
|
|
115
|
+
// Section titles
|
|
116
|
+
SAFETY_TRUST_TITLE: 'Safety & Trust',
|
|
117
|
+
FAQ_TITLE: 'Frequently asked questions',
|
|
118
|
+
// Trust information
|
|
119
|
+
TRUSTED_BY: 'Trusted By ',
|
|
120
|
+
CRORES_INDIANS: '4.6 Crores Indians',
|
|
121
|
+
AAA_RATING: 'Stable Rating',
|
|
122
|
+
RATING: 'AA+',
|
|
123
|
+
// Fallback tenure options
|
|
124
|
+
TENURE_12_MONTHS: '12 Months',
|
|
125
|
+
TENURE_24_MONTHS: '24 Months',
|
|
126
|
+
TENURE_36_MONTHS: '36 Months',
|
|
127
|
+
// FD List screen strings
|
|
128
|
+
CORPORATE_FDS_TITLE: 'Corporate FDs',
|
|
129
|
+
ALL_FDS_TAB: 'All FDs',
|
|
130
|
+
LESS_THAN_1Y_TAB: '<1Y',
|
|
131
|
+
LESS_THAN_1_3Y_TAB: '<1-3Y',
|
|
132
|
+
LESS_THAN_3_5Y_TAB: '<3-5Y',
|
|
133
|
+
GREATER_THAN_5Y_TAB: '>5Y',
|
|
134
|
+
ACTIVE_FDS_SECTION: 'Active FDs',
|
|
135
|
+
// Loading and status messages
|
|
136
|
+
LOADING_RATES: 'Loading rates...',
|
|
137
|
+
LOADING_APPLICATIONS: 'Loading applications...',
|
|
138
|
+
LOADING_FD_DATA: 'Searching for the best F.D. deals...',
|
|
139
|
+
API_ERROR_RETRY: '❌ API Error - Please retry',
|
|
140
|
+
APIS_CONNECTED: '✅ APIs Connected',
|
|
141
|
+
NO_DATA_AVAILABLE: '📱 No data available',
|
|
142
|
+
REFRESH_ALL: '🔄 Refresh All',
|
|
143
|
+
// No data messages
|
|
144
|
+
NO_CUSTOMER_FDS_FOUND: 'No customer FDs found.',
|
|
145
|
+
NO_FD_OPTIONS_AVAILABLE: 'No FD options available at the moment.',
|
|
146
|
+
FAILED_TO_LOAD_FD_DATA: 'Failed to load FD data. Please try again.',
|
|
147
|
+
NO_FDS_FOUND_FOR_TENURE: 'No FDs found for',
|
|
148
|
+
// Status indicators
|
|
149
|
+
CUSTOMER_FDS: 'customer FDs',
|
|
150
|
+
AVAILABLE_RATES: 'available rates',
|
|
151
|
+
};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
export declare const HOME_STRINGS: {
|
|
2
|
+
readonly HOME_TITLE: "Home";
|
|
3
|
+
readonly DASHBOARD_TITLE: "Dashboard";
|
|
4
|
+
readonly PROFILE_TITLE: "Profile";
|
|
5
|
+
readonly SETTINGS_TITLE: "Settings";
|
|
6
|
+
readonly NOTIFICATIONS_TITLE: "Notifications";
|
|
7
|
+
readonly VIEW_MY_FDS: "View My FDs";
|
|
8
|
+
readonly BOOK_NEW_FD: "Book New FD";
|
|
9
|
+
readonly MY_ACCOUNT: "My Account";
|
|
10
|
+
readonly TRANSACTIONS: "Transactions";
|
|
11
|
+
readonly STATEMENTS: "Statements";
|
|
12
|
+
readonly HELP_SUPPORT: "Help & Support";
|
|
13
|
+
readonly LOGOUT: "Logout";
|
|
14
|
+
readonly WELCOME_MESSAGE: "Welcome to Shriram FD";
|
|
15
|
+
readonly WELCOME_SUBTITLE: "Manage your Fixed Deposits with ease";
|
|
16
|
+
readonly GOOD_MORNING: "Good Morning";
|
|
17
|
+
readonly GOOD_AFTERNOON: "Good Afternoon";
|
|
18
|
+
readonly GOOD_EVENING: "Good Evening";
|
|
19
|
+
readonly QUICK_ACTIONS: "Quick Actions";
|
|
20
|
+
readonly RECENT_TRANSACTIONS: "Recent Transactions";
|
|
21
|
+
readonly ACTIVE_FDS: "Active FDs";
|
|
22
|
+
readonly MATURED_FDS: "Matured FDs";
|
|
23
|
+
readonly PENDING_REQUESTS: "Pending Requests";
|
|
24
|
+
readonly FD_DETAILS: "FD Details";
|
|
25
|
+
readonly FD_INVESTMENT: "FD Investment";
|
|
26
|
+
readonly FD_MATURITY: "FD Maturity";
|
|
27
|
+
readonly FD_INTEREST: "FD Interest";
|
|
28
|
+
readonly FD_AMOUNT: "FD Amount";
|
|
29
|
+
readonly FD_TENURE: "FD Tenure";
|
|
30
|
+
readonly FD_RATE: "FD Rate";
|
|
31
|
+
readonly FD_STATUS: "FD Status";
|
|
32
|
+
readonly ACTIVE: "Active";
|
|
33
|
+
readonly MATURED: "Matured";
|
|
34
|
+
readonly CANCELLED: "Cancelled";
|
|
35
|
+
readonly PENDING: "Pending";
|
|
36
|
+
readonly APPROVED: "Approved";
|
|
37
|
+
readonly REJECTED: "Rejected";
|
|
38
|
+
readonly PLATFORM_INFO: "Platform";
|
|
39
|
+
readonly SDK_VERSION: "SDK Version";
|
|
40
|
+
readonly APP_VERSION: "App Version";
|
|
41
|
+
readonly LAST_UPDATED: "Last Updated";
|
|
42
|
+
readonly NO_FDS_FOUND: "No FDs found";
|
|
43
|
+
readonly NO_TRANSACTIONS: "No transactions found";
|
|
44
|
+
readonly NO_NOTIFICATIONS: "No notifications";
|
|
45
|
+
readonly NO_DATA_AVAILABLE: "No data available";
|
|
46
|
+
readonly LOADING_ERROR: "Failed to load data";
|
|
47
|
+
readonly NETWORK_ERROR: "Network connection error";
|
|
48
|
+
readonly SERVER_ERROR: "Server error occurred";
|
|
49
|
+
};
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.HOME_STRINGS = void 0;
|
|
4
|
+
// Home screen and navigation related strings
|
|
5
|
+
exports.HOME_STRINGS = {
|
|
6
|
+
// Screen titles
|
|
7
|
+
HOME_TITLE: 'Home',
|
|
8
|
+
DASHBOARD_TITLE: 'Dashboard',
|
|
9
|
+
PROFILE_TITLE: 'Profile',
|
|
10
|
+
SETTINGS_TITLE: 'Settings',
|
|
11
|
+
NOTIFICATIONS_TITLE: 'Notifications',
|
|
12
|
+
// Navigation items
|
|
13
|
+
VIEW_MY_FDS: 'View My FDs',
|
|
14
|
+
BOOK_NEW_FD: 'Book New FD',
|
|
15
|
+
MY_ACCOUNT: 'My Account',
|
|
16
|
+
TRANSACTIONS: 'Transactions',
|
|
17
|
+
STATEMENTS: 'Statements',
|
|
18
|
+
HELP_SUPPORT: 'Help & Support',
|
|
19
|
+
LOGOUT: 'Logout',
|
|
20
|
+
// Welcome messages
|
|
21
|
+
WELCOME_MESSAGE: 'Welcome to Shriram FD',
|
|
22
|
+
WELCOME_SUBTITLE: 'Manage your Fixed Deposits with ease',
|
|
23
|
+
GOOD_MORNING: 'Good Morning',
|
|
24
|
+
GOOD_AFTERNOON: 'Good Afternoon',
|
|
25
|
+
GOOD_EVENING: 'Good Evening',
|
|
26
|
+
// Quick actions
|
|
27
|
+
QUICK_ACTIONS: 'Quick Actions',
|
|
28
|
+
RECENT_TRANSACTIONS: 'Recent Transactions',
|
|
29
|
+
ACTIVE_FDS: 'Active FDs',
|
|
30
|
+
MATURED_FDS: 'Matured FDs',
|
|
31
|
+
PENDING_REQUESTS: 'Pending Requests',
|
|
32
|
+
// FD related
|
|
33
|
+
FD_DETAILS: 'FD Details',
|
|
34
|
+
FD_INVESTMENT: 'FD Investment',
|
|
35
|
+
FD_MATURITY: 'FD Maturity',
|
|
36
|
+
FD_INTEREST: 'FD Interest',
|
|
37
|
+
FD_AMOUNT: 'FD Amount',
|
|
38
|
+
FD_TENURE: 'FD Tenure',
|
|
39
|
+
FD_RATE: 'FD Rate',
|
|
40
|
+
FD_STATUS: 'FD Status',
|
|
41
|
+
// Status indicators
|
|
42
|
+
ACTIVE: 'Active',
|
|
43
|
+
MATURED: 'Matured',
|
|
44
|
+
CANCELLED: 'Cancelled',
|
|
45
|
+
PENDING: 'Pending',
|
|
46
|
+
APPROVED: 'Approved',
|
|
47
|
+
REJECTED: 'Rejected',
|
|
48
|
+
// Information
|
|
49
|
+
PLATFORM_INFO: 'Platform',
|
|
50
|
+
SDK_VERSION: 'SDK Version',
|
|
51
|
+
APP_VERSION: 'App Version',
|
|
52
|
+
LAST_UPDATED: 'Last Updated',
|
|
53
|
+
// Empty states
|
|
54
|
+
NO_FDS_FOUND: 'No FDs found',
|
|
55
|
+
NO_TRANSACTIONS: 'No transactions found',
|
|
56
|
+
NO_NOTIFICATIONS: 'No notifications',
|
|
57
|
+
NO_DATA_AVAILABLE: 'No data available',
|
|
58
|
+
// Error states
|
|
59
|
+
LOADING_ERROR: 'Failed to load data',
|
|
60
|
+
NETWORK_ERROR: 'Network connection error',
|
|
61
|
+
SERVER_ERROR: 'Server error occurred',
|
|
62
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export { COMMON_STRINGS } from './common';
|
|
2
|
+
export { HOME_STRINGS } from './home';
|
|
3
|
+
export { KYC_STRINGS } from './kyc';
|
|
4
|
+
export { EMPLOYEE_STRINGS } from './employee';
|
|
5
|
+
export { BANK_STRINGS } from './bank';
|
|
6
|
+
export { NOMINEE_STRINGS } from './nominee';
|
|
7
|
+
export { FD_STRINGS } from './fd';
|
|
8
|
+
export { FAQ_STRINGS } from './faq';
|
|
9
|
+
export * from './common';
|
|
10
|
+
export * from './home';
|
|
11
|
+
export * from './kyc';
|
|
12
|
+
export * from './employee';
|
|
13
|
+
export * from './bank';
|
|
14
|
+
export * from './nominee';
|
|
15
|
+
export * from './fd';
|
|
16
|
+
export * from './faq';
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Central export file for all string constants
|
|
3
|
+
// This provides a single import point for all string literals used in the application
|
|
4
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
16
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17
|
+
};
|
|
18
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
+
exports.FAQ_STRINGS = exports.FD_STRINGS = exports.NOMINEE_STRINGS = exports.BANK_STRINGS = exports.EMPLOYEE_STRINGS = exports.KYC_STRINGS = exports.HOME_STRINGS = exports.COMMON_STRINGS = void 0;
|
|
20
|
+
var common_1 = require("./common");
|
|
21
|
+
Object.defineProperty(exports, "COMMON_STRINGS", { enumerable: true, get: function () { return common_1.COMMON_STRINGS; } });
|
|
22
|
+
var home_1 = require("./home");
|
|
23
|
+
Object.defineProperty(exports, "HOME_STRINGS", { enumerable: true, get: function () { return home_1.HOME_STRINGS; } });
|
|
24
|
+
var kyc_1 = require("./kyc");
|
|
25
|
+
Object.defineProperty(exports, "KYC_STRINGS", { enumerable: true, get: function () { return kyc_1.KYC_STRINGS; } });
|
|
26
|
+
var employee_1 = require("./employee");
|
|
27
|
+
Object.defineProperty(exports, "EMPLOYEE_STRINGS", { enumerable: true, get: function () { return employee_1.EMPLOYEE_STRINGS; } });
|
|
28
|
+
var bank_1 = require("./bank");
|
|
29
|
+
Object.defineProperty(exports, "BANK_STRINGS", { enumerable: true, get: function () { return bank_1.BANK_STRINGS; } });
|
|
30
|
+
var nominee_1 = require("./nominee");
|
|
31
|
+
Object.defineProperty(exports, "NOMINEE_STRINGS", { enumerable: true, get: function () { return nominee_1.NOMINEE_STRINGS; } });
|
|
32
|
+
var fd_1 = require("./fd");
|
|
33
|
+
Object.defineProperty(exports, "FD_STRINGS", { enumerable: true, get: function () { return fd_1.FD_STRINGS; } });
|
|
34
|
+
var faq_1 = require("./faq");
|
|
35
|
+
Object.defineProperty(exports, "FAQ_STRINGS", { enumerable: true, get: function () { return faq_1.FAQ_STRINGS; } });
|
|
36
|
+
// Re-export all strings as a single object for convenience
|
|
37
|
+
__exportStar(require("./common"), exports);
|
|
38
|
+
__exportStar(require("./home"), exports);
|
|
39
|
+
__exportStar(require("./kyc"), exports);
|
|
40
|
+
__exportStar(require("./employee"), exports);
|
|
41
|
+
__exportStar(require("./bank"), exports);
|
|
42
|
+
__exportStar(require("./nominee"), exports);
|
|
43
|
+
__exportStar(require("./fd"), exports);
|
|
44
|
+
__exportStar(require("./faq"), exports);
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
export declare const KYC_STRINGS: {
|
|
2
|
+
readonly REVIEW_KYC_TITLE: "Review KYC";
|
|
3
|
+
readonly AADHAAR_VERIFICATION_TITLE: "Aadhaar Verification";
|
|
4
|
+
readonly PAN_VERIFICATION_TITLE: "PAN Verification";
|
|
5
|
+
readonly DOCUMENT_VERIFICATION_TITLE: "Document Verification";
|
|
6
|
+
readonly PAN_CARD_LABEL: "Pan Card";
|
|
7
|
+
readonly DATE_OF_BIRTH_LABEL: "Date of Birth";
|
|
8
|
+
readonly MARITAL_STATUS_LABEL: "Marital Status";
|
|
9
|
+
readonly AREA_LABEL: "Area";
|
|
10
|
+
readonly CITY_LABEL: "City";
|
|
11
|
+
readonly ADDRESS_LINE1_LABEL: "Address Line 1";
|
|
12
|
+
readonly ADDRESS_LINE2_LABEL: "Address Line 2";
|
|
13
|
+
readonly PINCODE_LABEL: "Pincode";
|
|
14
|
+
readonly STATE_LABEL: "State";
|
|
15
|
+
readonly COUNTRY_LABEL: "Country";
|
|
16
|
+
readonly AADHAAR_NUMBER_LABEL: "Aadhaar Number";
|
|
17
|
+
readonly AADHAAR_CARD_LABEL: "Aadhaar Card";
|
|
18
|
+
readonly OTP_LABEL: "OTP";
|
|
19
|
+
readonly PAN_CARD_PLACEHOLDER: "Enter PAN Card";
|
|
20
|
+
readonly DATE_OF_BIRTH_PLACEHOLDER: "Select Date of Birth";
|
|
21
|
+
readonly MARITAL_STATUS_PLACEHOLDER: "Select Marital Status";
|
|
22
|
+
readonly AREA_PLACEHOLDER: "Enter Area";
|
|
23
|
+
readonly CITY_PLACEHOLDER: "Enter City";
|
|
24
|
+
readonly ADDRESS_LINE1_PLACEHOLDER: "Enter Address Line 1";
|
|
25
|
+
readonly ADDRESS_LINE2_PLACEHOLDER: "Enter Address Line 2";
|
|
26
|
+
readonly PINCODE_PLACEHOLDER: "Enter Pincode";
|
|
27
|
+
readonly STATE_PLACEHOLDER: "Enter State";
|
|
28
|
+
readonly COUNTRY_PLACEHOLDER: "Enter Country";
|
|
29
|
+
readonly AADHAAR_NUMBER_PLACEHOLDER: "Enter Aadhaar Number";
|
|
30
|
+
readonly OTP_PLACEHOLDER: "Enter OTP";
|
|
31
|
+
readonly MARITAL_STATUS_SINGLE: "Single";
|
|
32
|
+
readonly MARITAL_STATUS_MARRIED: "Married";
|
|
33
|
+
readonly MARITAL_STATUS_DIVORCED: "Divorced";
|
|
34
|
+
readonly MARITAL_STATUS_WIDOWED: "Widowed";
|
|
35
|
+
readonly VERIFY_AADHAAR_BUTTON: "Verify Aadhaar";
|
|
36
|
+
readonly VERIFY_OTP_BUTTON: "Verify OTP";
|
|
37
|
+
readonly RESEND_OTP_BUTTON: "Resend OTP";
|
|
38
|
+
readonly SEND_OTP_BUTTON: "Send OTP";
|
|
39
|
+
readonly AADHAAR_VERIFICATION_SUCCESS: "Aadhaar verified successfully";
|
|
40
|
+
readonly AADHAAR_VERIFICATION_FAILED: "Aadhaar verification failed";
|
|
41
|
+
readonly AADHAAR_ALREADY_VERIFIED: "Aadhaar already verified";
|
|
42
|
+
readonly AADHAAR_NUMBER_VERIFIED: "Aadhaar number verified.";
|
|
43
|
+
readonly PAN_VERIFICATION_SUCCESS: "PAN verified successfully";
|
|
44
|
+
readonly PAN_VERIFICATION_FAILED: "PAN verification failed";
|
|
45
|
+
readonly OTP_SENT_SUCCESS: "OTP sent successfully";
|
|
46
|
+
readonly OTP_VERIFICATION_SUCCESS: "OTP verified successfully";
|
|
47
|
+
readonly OTP_VERIFICATION_FAILED: "OTP verification failed";
|
|
48
|
+
readonly KYC_COMPLETED: "KYC completed successfully";
|
|
49
|
+
readonly KYC_PENDING: "KYC verification pending";
|
|
50
|
+
readonly SENDING_OTP: "Sending OTP...";
|
|
51
|
+
readonly VERIFYING_OTP: "Verifying OTP...";
|
|
52
|
+
readonly RESENDING_OTP: "Resending OTP...";
|
|
53
|
+
readonly INVALID_PAN: "Invalid PAN number";
|
|
54
|
+
readonly INVALID_AADHAAR: "Invalid Aadhaar number";
|
|
55
|
+
readonly INVALID_OTP: "Invalid OTP";
|
|
56
|
+
readonly INVALID_OR_EXPIRED_OTP: "Invalid or expired OTP. Please try again.";
|
|
57
|
+
readonly OTP_EXPIRED: "OTP has expired";
|
|
58
|
+
readonly VERIFICATION_FAILED: "Verification failed";
|
|
59
|
+
readonly DOCUMENT_UPLOAD_FAILED: "Document upload failed";
|
|
60
|
+
readonly AADHAAR_ERROR_GENERIC: "Something went wrong, check your Aadhaar number and try again.";
|
|
61
|
+
readonly RESEND_OTP_FAILED: "Failed to resend OTP. Please try again.";
|
|
62
|
+
readonly FAILED_TO_PROCEED: "Failed to proceed. Please try again.";
|
|
63
|
+
readonly PAN_REQUIRED: "PAN number is required";
|
|
64
|
+
readonly AADHAAR_REQUIRED: "Aadhaar number is required";
|
|
65
|
+
readonly AADHAAR_MUST_BE_12_DIGITS: "Aadhaar number must be 12 digits";
|
|
66
|
+
readonly OTP_REQUIRED: "OTP is required";
|
|
67
|
+
readonly OTP_INCOMPLETE: "Please enter the complete 6-digit OTP";
|
|
68
|
+
readonly DATE_OF_BIRTH_REQUIRED: "Date of birth is required";
|
|
69
|
+
readonly MARITAL_STATUS_REQUIRED: "Marital status is required";
|
|
70
|
+
readonly ADDRESS_REQUIRED: "Address is required";
|
|
71
|
+
readonly PINCODE_REQUIRED: "Pincode is required";
|
|
72
|
+
readonly VERIFICATION_IN_PROGRESS: "Verification in progress...";
|
|
73
|
+
readonly DOCUMENT_UNDER_REVIEW: "Document under review";
|
|
74
|
+
readonly VERIFICATION_COMPLETED: "Verification completed";
|
|
75
|
+
readonly VERIFICATION_REJECTED: "Verification rejected";
|
|
76
|
+
readonly AADHAAR_INSTRUCTIONS: "Please enter your 12-digit Aadhaar number";
|
|
77
|
+
readonly PAN_INSTRUCTIONS: "Please enter your 10-character PAN number";
|
|
78
|
+
readonly OTP_INSTRUCTIONS: "Please enter the OTP sent to your registered mobile number";
|
|
79
|
+
readonly DOCUMENT_INSTRUCTIONS: "Please upload clear images of your documents";
|
|
80
|
+
};
|