2024-05-27 18:00:40 +05:30
|
|
|
class AppText {
|
|
|
|
|
//Splash
|
2024-07-10 07:32:29 +05:30
|
|
|
static const String splashVersionText = "splashVersionText";
|
|
|
|
|
static const String splashCopyrightText = "splashCopyrightText";
|
2024-05-27 18:00:40 +05:30
|
|
|
|
|
|
|
|
//Welcome
|
2024-07-10 07:32:29 +05:30
|
|
|
static const String welcomeTitle1Text = "welcomeTitle1Text";
|
|
|
|
|
static const String welcomeTitle2Text = "welcomeTitle2Text";
|
|
|
|
|
static const String welcomeTitle3Text = "welcomeTitle3Text";
|
|
|
|
|
static const String welcomeDescription1Text = "welcomeDescription1Text";
|
|
|
|
|
static const String welcomeDescription2Text = "welcomeDescription2Text";
|
|
|
|
|
static const String welcomeDescription3Text = "welcomeDescription3Text";
|
|
|
|
|
static const String loginText = "loginText";
|
|
|
|
|
static const String signUpText = "signUpText";
|
2024-05-28 16:35:33 +05:30
|
|
|
|
|
|
|
|
//Login
|
2024-07-10 07:32:29 +05:30
|
|
|
static const String welcomeText = "welcomeText";
|
|
|
|
|
static const String pleaseEnterLoginDetails = "pleaseEnterLoginDetails";
|
2024-06-04 17:56:52 +05:30
|
|
|
static const String toGetYourAccountPleaseSetYourInfo =
|
2024-07-10 07:32:29 +05:30
|
|
|
"toGetYourAccountPleaseSetYourInfo";
|
|
|
|
|
static const String countryOfResidence = "countryOfResidence";
|
|
|
|
|
static const String chooseCountry = "chooseCountry";
|
|
|
|
|
static const String phoneNumber = "phoneNumber";
|
|
|
|
|
static const String password = "password";
|
|
|
|
|
static const String enterPassword = "enterPassword";
|
|
|
|
|
static const String invalidPhoneNo = "invalidPhoneNo";
|
|
|
|
|
static const String enterPhoneNo = "enterPhoneNo";
|
|
|
|
|
static const String invalidPassword = "invalidPassword";
|
|
|
|
|
static const String forgotPassword = "forgotPassword";
|
2024-05-29 13:21:55 +05:30
|
|
|
|
2024-05-30 13:59:40 +05:30
|
|
|
//Register
|
2024-07-10 07:32:29 +05:30
|
|
|
static const String getStartedToday = "getStartedToday";
|
2024-05-30 13:59:40 +05:30
|
|
|
static const String setupYourTanamiAccountToBegin =
|
2024-07-10 07:32:29 +05:30
|
|
|
"setupYourTanamiAccountToBegin";
|
|
|
|
|
static const String step1 = "step1";
|
|
|
|
|
static const String step2 = "step2";
|
|
|
|
|
static const String step3 = "step3";
|
2024-05-30 13:59:40 +05:30
|
|
|
static const String enterYourCountryOfResidence =
|
2024-07-10 07:32:29 +05:30
|
|
|
"enterYourCountryOfResidence";
|
|
|
|
|
static const String enterNameEmailPassword = "enterNameEmailPassword";
|
2024-05-31 17:01:48 +05:30
|
|
|
static const String enterNameEmailUniquePassword =
|
2024-07-10 07:32:29 +05:30
|
|
|
"enterNameEmailUniquePassword";
|
2024-05-30 13:59:40 +05:30
|
|
|
static const String enableBiometricAuthentication =
|
2024-07-10 07:32:29 +05:30
|
|
|
"enableBiometricAuthentication";
|
|
|
|
|
static const String getStarted = "getStarted";
|
|
|
|
|
static const String welcome = "welcome";
|
2024-05-30 13:59:40 +05:30
|
|
|
static const String selectYourCountryOfResidence =
|
2024-07-10 07:32:29 +05:30
|
|
|
"selectYourCountryOfResidence";
|
|
|
|
|
static const String nextText = "nextText";
|
|
|
|
|
static const String backText = "backText";
|
|
|
|
|
static const String firstNameText = "firstNameText";
|
|
|
|
|
static const String lastNameText = "lastNameText";
|
|
|
|
|
static const String emailText = "emailText";
|
|
|
|
|
static const String repeatPasswordText = "repeatPasswordText";
|
2024-05-31 17:01:48 +05:30
|
|
|
static const String min8CharactersSpecialCharctersText =
|
2024-07-10 07:32:29 +05:30
|
|
|
"min8CharactersSpecialCharctersText";
|
|
|
|
|
static const String enterFirstName = "enterFirstName";
|
|
|
|
|
static const String enterLastName = "enterLastName";
|
|
|
|
|
static const String enterEmail = "enterEmail";
|
|
|
|
|
static const String cantBeEmptyText = "cantBeEmptyText";
|
|
|
|
|
static const String passwordMismatch = "passwordMismatch";
|
|
|
|
|
static const String iAgreeToThe = "iAgreeToThe";
|
|
|
|
|
static const String termsAndCondition = "termsAndCondition";
|
|
|
|
|
static const String andThe = "andThe";
|
|
|
|
|
static const String privacyPolicy = "privacyPolicy";
|
2024-05-30 13:59:40 +05:30
|
|
|
|
2024-05-29 13:21:55 +05:30
|
|
|
//Country Name
|
|
|
|
|
static const String bahrainCountryText = "Bahrain";
|
|
|
|
|
static const String kuwaitCountryText = "Kuwait";
|
|
|
|
|
static const String omanCountryText = "Oman";
|
|
|
|
|
static const String qatarCountryText = "Qatar";
|
|
|
|
|
static const String saudiArabiaCountryText = "Saudi Arabia";
|
|
|
|
|
static const String uaeCountryText = "United Arab Emirates";
|
2024-07-10 07:32:29 +05:30
|
|
|
static const String confirmSelectionText = "confirmSelectionText";
|
2024-05-30 20:29:25 +05:30
|
|
|
|
|
|
|
|
//Portfolio
|
2024-07-10 07:32:29 +05:30
|
|
|
static const String portfolioText = "portfolioText";
|
|
|
|
|
static const String portfolio = "portfolio";
|
|
|
|
|
static const String investmentamount = "investmentamount";
|
|
|
|
|
static const String currentval = "currentval";
|
|
|
|
|
static const String totalreturn = "totalreturn";
|
|
|
|
|
static const String disttodate = "disttodate";
|
|
|
|
|
static const String includeddocs = "includeddocs";
|
2024-05-30 20:31:21 +05:30
|
|
|
|
2024-06-03 15:24:12 +05:30
|
|
|
//Academy
|
2024-07-10 07:32:29 +05:30
|
|
|
static const String videosTitle = "videosTitle";
|
|
|
|
|
static const String academyText = "academyText";
|
2024-06-03 15:24:12 +05:30
|
|
|
|
2024-05-30 13:59:40 +05:30
|
|
|
//Dialog
|
2024-07-10 07:32:29 +05:30
|
|
|
static const String exitText = "exitText";
|
|
|
|
|
static const String cancelText = "cancelText";
|
2024-05-30 13:59:40 +05:30
|
|
|
static const String areYouSureYouWantToExitText =
|
2024-07-10 07:32:29 +05:30
|
|
|
"areYouSureYouWantToExitText";
|
2024-05-30 13:59:40 +05:30
|
|
|
|
2024-06-28 18:47:34 +05:30
|
|
|
//FAQ
|
2024-07-10 07:32:29 +05:30
|
|
|
static const String faqTitle = "faqTitle";
|
2024-06-24 19:27:15 +05:30
|
|
|
|
2024-07-03 18:46:18 +05:30
|
|
|
//Security
|
2024-07-10 07:32:29 +05:30
|
|
|
static const String unlockText = "unlockText";
|
|
|
|
|
static const String tanamiAppIsLocked = "tanamiAppIsLocked";
|
|
|
|
|
static const String securityMssgText = "securityMssgText";
|
|
|
|
|
static const String faceIdText = "faceIdText";
|
|
|
|
|
static const String appAskPermissionText = "appAskPermissionText";
|
2024-07-03 18:46:18 +05:30
|
|
|
|
2024-05-30 13:59:40 +05:30
|
|
|
//OTP
|
2024-07-10 07:32:29 +05:30
|
|
|
static const String checkYourMessages = "checkYourMessages";
|
|
|
|
|
static const String referToSameOtpMessage = "referToSameOtpMessage";
|
|
|
|
|
static const String resendSms = "resendSms";
|
|
|
|
|
static const String otpVerifiedSucessfully = "otpVerifiedSucessfully";
|
|
|
|
|
static const String otpVerifiedFailed = "otpVerifiedFailed";
|
2024-06-03 19:10:05 +05:30
|
|
|
|
|
|
|
|
//Pin Code
|
2024-07-10 07:32:29 +05:30
|
|
|
static const String pinCode = "pinCode";
|
|
|
|
|
static const String createPinCode = "createPinCode";
|
|
|
|
|
static const String changePinCode = "changePinCode";
|
|
|
|
|
static const String confirmPinCode = "confirmPinCode";
|
|
|
|
|
static const String incorrectPinCode = "incorrectPinCode";
|
|
|
|
|
static const String welcomeBackText = "welcomeBackText";
|
2024-06-03 19:10:05 +05:30
|
|
|
static const String userYourAppPinToLoginEnterTanami =
|
2024-07-10 07:32:29 +05:30
|
|
|
"userYourAppPinToLoginEnterTanami";
|
|
|
|
|
static const String forgotPinCode = "forgotPinCode";
|
|
|
|
|
static const String notificationText = "notificationText";
|
|
|
|
|
static const String allowNotificationText = "allowNotificationText";
|
2024-06-03 19:10:05 +05:30
|
|
|
static const String toRestorePinYouWillBeLoggedOut =
|
2024-07-10 07:32:29 +05:30
|
|
|
"toRestorePinYouWillBeLoggedOut";
|
|
|
|
|
static const String allowText = "allowText";
|
|
|
|
|
static const String declineText = "declineText";
|
2024-06-04 17:56:52 +05:30
|
|
|
|
2024-06-24 19:27:15 +05:30
|
|
|
//Forgot Password
|
2024-07-10 07:32:29 +05:30
|
|
|
static const String almostHere = "almostHere";
|
|
|
|
|
static const String completeAcc = "completeAcc";
|
2024-06-24 19:27:15 +05:30
|
|
|
|
2024-06-04 17:56:52 +05:30
|
|
|
//Forgot Password
|
2024-07-10 07:32:29 +05:30
|
|
|
static const String restorePasswordText = "restorePasswordText";
|
2024-06-04 17:56:52 +05:30
|
|
|
static const String toRestorePasswordPleaseEnterPhoneNumber =
|
2024-07-10 07:32:29 +05:30
|
|
|
"toRestorePasswordPleaseEnterPhoneNumber";
|
|
|
|
|
static const String createNewPasswordText = "createNewPasswordText";
|
|
|
|
|
static const String submitText = "submitText";
|
2024-06-04 17:59:38 +05:30
|
|
|
|
|
|
|
|
//Wallet
|
2024-07-10 07:32:29 +05:30
|
|
|
static const String walletTitle = "walletTitle";
|
|
|
|
|
static const String walletText = "walletText";
|
|
|
|
|
static const String day = "day";
|
|
|
|
|
static const String filterTitle = "filterTitle";
|
|
|
|
|
static const String onHold = "onHold";
|
|
|
|
|
static const String deposit = "deposit";
|
|
|
|
|
static const String withdraw = "withdraw";
|
|
|
|
|
static const String withdrawal = "withdrawal";
|
|
|
|
|
static const String yield = "yield";
|
|
|
|
|
static const String refund = "refund";
|
|
|
|
|
static const String investment = "investment";
|
|
|
|
|
static const String walletDetailsTitle = "walletDetailsTitle";
|
|
|
|
|
static const String withdrawalScreenTitle = "withdrawalScreenTitle";
|
|
|
|
|
static const String depositScreenTitle = "depositScreenTitle";
|
|
|
|
|
static const String status = "status";
|
|
|
|
|
static const String paymentMethod = "paymentMethod";
|
|
|
|
|
static const String accountName = "accountName";
|
|
|
|
|
static const String accountHolderName = "accountHolderName";
|
|
|
|
|
static const String iban = "iban";
|
|
|
|
|
static const String beneficiaryAddress = "beneficiaryAddress";
|
|
|
|
|
static const String bankName = "bankName";
|
|
|
|
|
static const String branchAddress = "branchAddress";
|
|
|
|
|
static const String SWIFTcode = "SWIFTcode";
|
|
|
|
|
static const String refid = "refid";
|
|
|
|
|
static const String previewTitle = "previewTitle";
|
|
|
|
|
static const String info = "info";
|
|
|
|
|
static const String info1 = "info1";
|
|
|
|
|
static const String workingDays = "workingDays";
|
|
|
|
|
static const String balance = "balance";
|
|
|
|
|
static const String withdrawTitle = "withdrawTitle";
|
|
|
|
|
static const String depositTitle = "depositTitle";
|
|
|
|
|
static const String withdrawDetails = "withdrawDetails";
|
|
|
|
|
static const String depositDetails = "depositDetails";
|
|
|
|
|
static const String required = "required";
|
|
|
|
|
static const String withdrawAmt = "withdrawAmt";
|
|
|
|
|
static const String depositAmt = "depositAmt";
|
|
|
|
|
static const String info2 = "info2";
|
|
|
|
|
static const String info3 = "info3";
|
|
|
|
|
static const String next = "next";
|
|
|
|
|
static const String depositNoti = "depositNoti";
|
|
|
|
|
static const String payWithAppleText = "payWithAppleText";
|
|
|
|
|
static const String submit = "submit";
|
|
|
|
|
static const String Submit = "Submit";
|
|
|
|
|
static const String submitDeposit = "submitDeposit";
|
|
|
|
|
static const String cont = "cont";
|
|
|
|
|
static const String later = "later";
|
|
|
|
|
static const String back = "back";
|
|
|
|
|
static const String clear = "clear";
|
|
|
|
|
static const String bankTransfer = "bankTransfer";
|
|
|
|
|
static const String amtTrans = "amtTrans";
|
|
|
|
|
static const String date1 = "date1";
|
|
|
|
|
static const String date2 = "date2";
|
|
|
|
|
static const String all = "all";
|
|
|
|
|
static const String byDate = "byDate";
|
|
|
|
|
static const String byAction = "byAction";
|
|
|
|
|
static const String byStatus = "byStatus";
|
2024-06-06 11:05:45 +05:30
|
|
|
|
|
|
|
|
//Settings
|
2024-07-10 07:32:29 +05:30
|
|
|
static const String settingsText = "settingsText";
|
|
|
|
|
static const String experiencedInvestorText = "experiencedInvestorText";
|
|
|
|
|
static const String removeInvestmentText = "removeInvestmentText";
|
|
|
|
|
static const String upgradeText = "upgradeText";
|
|
|
|
|
static const String generalText = "generalText";
|
|
|
|
|
static const String notificationsText = "notificationsText";
|
|
|
|
|
static const String languageText = "languageText";
|
2024-06-06 11:05:45 +05:30
|
|
|
static const String englishText = "English";
|
2024-07-10 07:32:29 +05:30
|
|
|
static const String privacySettingsText = "privacySettingsText";
|
|
|
|
|
static const String biometricText = "biometricText";
|
|
|
|
|
static const String resetPasswordText = "resetPasswordText";
|
|
|
|
|
static const String resetPinCodeText = "resetPinCodeText";
|
|
|
|
|
static const String supportText = "supportText";
|
|
|
|
|
static const String contactAdminText = "contactAdminText";
|
|
|
|
|
static const String privacyPolicyText = "privacyPolicyText";
|
|
|
|
|
static const String termsAndConditionText = "termsAndConditionText";
|
|
|
|
|
static const String faqText = "faqText";
|
|
|
|
|
static const String logoutText = "logoutText";
|
|
|
|
|
static const String deleteAccountText = "deleteAccountText";
|
|
|
|
|
static const String areYouSureWantToLogoutText = "areYouSureWantToLogoutText";
|
|
|
|
|
static const String noText = "noText";
|
|
|
|
|
static const String yesText = "yesText";
|
|
|
|
|
static const String pinUpdatedSucess = "pinUpdatedSucess";
|
|
|
|
|
static const String pinVerifiedSucess = "pinVerifiedSucess";
|
|
|
|
|
static const String passwordUpdatedSucess = "passwordUpdatedSucess";
|
|
|
|
|
static const String changePasswordText = "changePasswordText";
|
|
|
|
|
static const String newPasswordText = "newPasswordText";
|
|
|
|
|
static const String currentPsswordText = "currentPsswordText";
|
2024-06-06 14:51:31 +05:30
|
|
|
|
|
|
|
|
//Contact Admin
|
2024-07-10 07:32:29 +05:30
|
|
|
static const String byPhoneText = "byPhoneText";
|
|
|
|
|
static const String byEmailText = "byEmailText";
|
|
|
|
|
static const String weAreHereToHelp = "weAreHereToHelp";
|
2024-06-06 14:51:31 +05:30
|
|
|
|
|
|
|
|
//Language Screen
|
|
|
|
|
static const String arabicText = "اللغة العربية";
|
2024-07-10 07:32:29 +05:30
|
|
|
static const String chooseTheLanguageText = "chooseTheLanguageText";
|
2024-06-06 14:51:31 +05:30
|
|
|
static const String changingTheLanguageWillReloadApp =
|
2024-07-10 07:32:29 +05:30
|
|
|
"changingTheLanguageWillReloadApp";
|
2024-06-06 18:40:58 +05:30
|
|
|
|
|
|
|
|
//Delete Screen
|
2024-07-10 07:32:29 +05:30
|
|
|
static const String weAreSadToSeeYouGo = "weAreSadToSeeYouGo";
|
|
|
|
|
static const String enterAdescription = "enterAdescription";
|
2024-06-06 18:40:58 +05:30
|
|
|
static const String toHelpUsImprovePleaseLetusKnowWhyYouWantToDeleteAccount =
|
2024-07-10 07:32:29 +05:30
|
|
|
"toHelpUsImprovePleaseLetusKnowWhyYouWantToDeleteAccount";
|
|
|
|
|
static const String charactersLeft = "charactersLeft";
|
2024-06-06 18:40:58 +05:30
|
|
|
static const String iUnderstandAndAgreeThatmyDataWillBeDeleted =
|
2024-07-10 07:32:29 +05:30
|
|
|
"iUnderstandAndAgreeThatmyDataWillBeDeleted";
|
|
|
|
|
static const String noIWantToStay = "noIWantToStay";
|
|
|
|
|
static const String pleaseEnteraDescription = "pleaseEnteraDescription";
|
|
|
|
|
static const String pleaseCheckThisField = "pleaseCheckThisField";
|
2024-06-06 18:40:58 +05:30
|
|
|
static const String weHaveReceivedYourRequestToDeleteAccount =
|
2024-07-10 07:32:29 +05:30
|
|
|
"weHaveReceivedYourRequestToDeleteAccount";
|
|
|
|
|
static const String theRequestWillBeProcessed = "theRequestWillBeProcessed";
|
|
|
|
|
static const String closeText = "closeText";
|
2024-06-10 18:49:10 +05:30
|
|
|
|
|
|
|
|
//Invest
|
2024-07-10 07:32:29 +05:30
|
|
|
static const String investText = "investText";
|
|
|
|
|
static const String availableText = "availableText";
|
|
|
|
|
static const String closedText = "closedText";
|
|
|
|
|
static const String completeYourVerification = "completeYourVerification";
|
2024-06-10 18:49:10 +05:30
|
|
|
static const String verifyYourAccountInUnderMinutesToStartInvestingToday =
|
2024-07-10 07:32:29 +05:30
|
|
|
"verifyYourAccountInUnderMinutesToStartInvestingToday";
|
|
|
|
|
static const String closingDateText = "closingDateText";
|
|
|
|
|
static const String closedDateText = "closedDateText";
|
|
|
|
|
static const String fundedText = "fundedText";
|
|
|
|
|
static const String sponsorNameText = "sponsorNameText";
|
|
|
|
|
static const String estimatedReturnText = "estimatedReturnText";
|
|
|
|
|
static const String originalEstimatedReturnText =
|
|
|
|
|
"originalEstimatedReturnText";
|
|
|
|
|
static const String actualEstimatedReturnText = "actualEstimatedReturnText";
|
|
|
|
|
static const String actualReturnToDate = "actualReturnToDate";
|
|
|
|
|
static const String holdingPeriodText = "holdingPeriodText";
|
|
|
|
|
static const String payoutDateText = "payoutDateText";
|
|
|
|
|
static const String expectedExitDate = "expectedExitDate";
|
|
|
|
|
static const String minimumInvestmentText = "minimumInvestmentText";
|
|
|
|
|
static const String keyMeritsOfInvestmentText = "keyMeritsOfInvestmentText";
|
|
|
|
|
static const String investmentDetailsText = "investmentDetailsText";
|
|
|
|
|
static const String enterInvestmentAmountText = "enterInvestmentAmountText";
|
2024-06-11 16:53:29 +05:30
|
|
|
static const String thisIsUsdInvestmentOpportunityText =
|
2024-07-10 07:32:29 +05:30
|
|
|
"thisIsUsdInvestmentOpportunityText";
|
|
|
|
|
static const String choosePaymentMethodText = "choosePaymentMethodText";
|
|
|
|
|
static const String balanceText = "balanceText";
|
|
|
|
|
static const String applePayText = "applePayText";
|
|
|
|
|
static const String gPayText = "gPayText";
|
|
|
|
|
static const String bankTransferText = "bankTransferText";
|
2024-06-11 16:53:29 +05:30
|
|
|
static const String instantTransferFundsApplePayText =
|
2024-07-10 07:32:29 +05:30
|
|
|
"instantTransferFundsApplePayText";
|
2024-06-11 16:53:29 +05:30
|
|
|
static const String instantTransferFundsGpayPayText =
|
2024-07-10 07:32:29 +05:30
|
|
|
"instantTransferFundsGpayPayText";
|
2024-06-11 16:53:29 +05:30
|
|
|
static const String retailInvestirCanInvestMaxText =
|
2024-07-10 07:32:29 +05:30
|
|
|
"retailInvestirCanInvestMaxText";
|
2024-06-11 16:53:29 +05:30
|
|
|
static const String upgradeYourInvestorStatusToIncreaseText =
|
2024-07-10 07:32:29 +05:30
|
|
|
"upgradeYourInvestorStatusToIncreaseText";
|
|
|
|
|
static const String currentExchangeText = "currentExchangeText";
|
|
|
|
|
static const String feeText = "feeText";
|
|
|
|
|
static const String processingFees = "processingFees";
|
|
|
|
|
static const String debitedAmountText = "debitedAmountText";
|
|
|
|
|
static const String totalInvestmentAmountText = "totalInvestmentAmountText";
|
|
|
|
|
static const String confirmInvestmentText = "confirmInvestmentText";
|
|
|
|
|
static const String paymentMethodText = "paymentMethodText";
|
|
|
|
|
static const String totalDebitedAmountText = "totalDebitedAmountText";
|
2024-06-11 16:53:29 +05:30
|
|
|
static const String unableToProcessTransactionText =
|
2024-07-10 07:32:29 +05:30
|
|
|
"unableToProcessTransactionText";
|
2024-06-11 16:53:29 +05:30
|
|
|
static const String investmentOpportunityHasReachedMaxcapText =
|
2024-07-10 07:32:29 +05:30
|
|
|
"investmentOpportunityHasReachedMaxcapText";
|
|
|
|
|
static const String backToInvestmentText = "backToInvestmentText";
|
|
|
|
|
static const String otpCheckIsFailedText = "otpCheckIsFailedText";
|
|
|
|
|
static const String pleaseTryAgainText = "pleaseTryAgainText";
|
|
|
|
|
static const String tryAgainText = "tryAgainText";
|
|
|
|
|
static const String investmentConfirmationText = "investmentConfirmationText";
|
|
|
|
|
static const String enterAmountText = "enterAmountText";
|
|
|
|
|
static const String pleaseEnterAmountText = "pleaseEnterAmountText";
|
2024-05-27 18:00:40 +05:30
|
|
|
}
|