export interface ProfileLocalization { /** * Profile overview page strings */ profile: { /** * Profile page title */ pageTitle: string; /** * Profile page basic information subtitle */ informationTitle: string; /** * Profile externally managed title */ externallyManaged: string; /** * Profile externally managed popup title */ externallyManagedTooltip: string; /** * Settings Email row title */ email: string; /** * Settings Full Name row title */ name: string; /** * Settings Phone row title */ phone: string; /** * Settings Phone row tooltip */ phoneTooltip: string; /** * Settings Username row title */ username: string; /** * Settings Address row title */ address: string; /** * Settings JobTitle row title */ jobTitle: string; /** * Remove profile image dialog title */ removeImageTitle: string; /** * Remove profile image dialog message */ removeImageMessage: string; /** * Remove profile image dialog remove button text */ removeImageButton: string; /** * Remove profile image dialog cancel button text */ removeImageCancelButton: string; /** * Upload profile image action in profile page */ uploadImage: string; /** * Remove profile image action in profile page */ removeImage: string; disabledEditPhoneNumberTooltip: string; phoneNumberTooltip: string; /** * Profile page edit avatar button aria label */ editAvatarButtonAriaLabel: string; /** * Applications section title */ myApplications: string; /** * Redirect to app button cta */ open: string; }; /** * Edit user name and title Dialog strings */ profile_EditName: { /** * Edit name dialog title */ title: string; /** * Display name input label, readonly */ displayNameInputLabel: string; /** * First name input label */ firstNameInputLabel: string; /** * Error displayed if first name input is empty */ firstNameIsRequired: string; /** * Last name input label */ lastNameInputLabel: string; /** * Name title select label */ nameTitle: string; /** * Name title option "Mr" */ nameTitle_mr: string; /** * Name title option "Mrs" */ nameTitle_mrs: string; /** * Name title option "Miss" */ nameTitle_miss: string; /** * Name title option "Ms" */ nameTitle_ms: string; /** * Name title option "Dr" */ nameTitle_dr: string; /** * Name title option "Phd" */ nameTitle_phd: string; /** * Edit name dialog cancel button text */ cancel: string; /** * Edit name dialog submit button text */ save: string; }; /** * Edit job title dialog strings */ profile_EditJobTitle: { /** * Dialog title */ title: string; /** * Edit Job title input label */ jobTitleInputLabel: string; /** * Edit JobTitle dialog cancel button text */ cancel: string; /** * Edit JobTitle dialog submit button text */ save: string; }; /** * Edit username dialog strings */ profile_EditUsername: { /** * Dialog title */ title: string; /** * Edit username input label */ usernameInputLabel: string; /** * Edit username dialog cancel button text */ cancel: string; /** * Edit username dialog submit button text */ save: string; /** * Error displayed if username input is too long */ usernameIsTooLong: string; /** * Error displayed if username input is invalid */ usernameInvalid: string; }; /** * Edit phone numbers dialog strings */ profile_EditPhone: { /** * Dialog title */ title: string; /** * Edit Phone number input label */ phoneInputLabel: string; /** * Error displayed if Phone number is empty */ phoneIsRequired: string; /** * Error displayed if Phone number is invalid */ phoneIsInvalid: string; /** * Edit Phone dialog cancel button text */ cancel: string; /** * Edit Phone dialog submit button text */ save: string; }; /** * Edit address dialog strings */ profile_EditAddress: { /** * Edit Address Dialog */ title: string; /** * Edit Address 1 input label */ address1InputLabel: string; /** * Error displayed if Address 1 input is empty */ address1IsRequired: string; /** * Edit Address 2 input label */ address2InputLabel: string; /** * Error displayed if Address 2 input is empty */ address2IsRequired: string; /** * Edit City input label */ cityInputLabel: string; /** * Error displayed if City input is empty */ cityIsRequired: string; /** * Edit State input label */ stateInputLabel: string; /** * Error displayed if State input is empty */ stateInputIsRequired: string; /** * Edit Postcode input label */ postCodeInputLabel: string; /** * Error displayed if post code is invalid */ postCodeIsInvalid: string; /** * Error displayed if post code input is empty */ postCodeIsRequired: string; /** * Edit Country input label */ countryInputLabel: string; /** * Edit Country input placeholder */ countryInputPlaceholder: string; /** * Error displayed if country input is empty */ countryIsRequired: string; /** * Edit Address dialog cancel button text */ cancel: string; /** * Edit Address dialog submit button text */ save: string; }; /** * Edit email dialog strings */ profile_EditEmail: { /** * Dialog title */ title: string; /** * Enter your email title */ enterYourEmailTitle: string; /** * Email input label */ emailInputLabel: string; /** * Email input placeholder */ emailInputPlaceholder: string; /** * Enter a new email address to receive a 6-digit verification code */ enterNewEmailDescription: string; /** * Error displayed if email input is empty */ emailIsRequired: string; /** * Error displayed if email input is invalid */ invalidEmailFormat: string; /** * Error displayed if email is the same as the old one */ sameAsOldEmailError: string; /** * Edit email dialog cancel button text */ cancel: string; /** * Edit email dialog next button text */ next: string; /** * OTC view title */ otcTitle: string; /** * OTC view description (e.g., "Please enter the 6-digit code...") */ otcDescription: string; /** * OTC view back button text */ otcBackButton: string; /** * OTC view verify button text */ otcVerifyButton: string; /** * Error displayed if OTC input is empty */ otcIsRequired: string; /** * Error displayed if OTC input is not 6 digits */ otcMustBe6Digits: string; /** * OTC view resend button text */ otcResend: string; /** * OTC view resending button text */ otcResending: string; /** * Success view message */ successMessage: string; /** * Success view done button text */ done: string; }; }