export interface AccountSettingsLocalization { /** * Account Details page strings */ accountSettings: { /** * Account details Page title */ pageTitle: string; /** * Account details tab title if custom login is enabled */ tabTitle: string; /** * Subtitle before settings rows */ subtitle: string; /** * Settings Company Name row title */ companyName: string; /** * Settings Address row title */ address: string; /** * Settings Website row title */ website: string; /** * Settings Timezone row title */ timezone: string; /** * Settings Currency row title */ currency: string; /** * Text to display as button if Company Name is empty */ addCompanyButton: string; /** * Text to display as button if Address is empty */ addAddressButton: string; /** * Text to display as button if Website is empty */ addWebsiteButton: string; /** * Text to display as button if Timezone is empty */ setTimezoneButton: string; /** * Text to display as button if Currency is empty */ setCurrencyButton: string; /** * Text to display if all fields are hidden */ emptyStateText: string; /** * Applications section title */ accountApplications: string; /** * Redirect to app button cta */ open: string; /** * prefix for user count in the account application card */ usersCount: string; /** * suffix for user count in the account application card for default and auto-assigned apps */ all: string; }; /** * Account settings edit Address Dialog strings */ accountSettings_EditAddress: { /** * Dialog Title */ 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; /** * Submit button text to save settings */ save: string; /** * Cancel button text */ cancel: string; }; /** * Account settings edit CompanyName Dialog strings */ accountSettings_EditCompanyName: { /** * Dialog Title */ title: string; /** * Company name input label */ companyNameLabel: string; /** * Error to display if company name is empty */ companyNameIsRequired: string; /** * Submit button text to save settings */ save: string; /** * Cancel button text */ cancel: string; }; /** * Account settings edit Website Dialog strings */ accountSettings_EditWebsite: { /** * Dialog Title */ title: string; /** * Edit Website input label */ websiteInputLabel: string; /** * Submit button text to save settings */ save: string; /** * Cancel button text */ cancel: string; }; /** * Account settings edit Timezone Dialog strings */ accountSettings_EditTimezone: { /** * Dialog Title */ title: string; /** * Edit timezone select input label */ timezoneInputLabel: string; /** * Submit button text to save settings */ save: string; /** * Cancel button text */ cancel: string; }; /** * Account settings edit Currency Dialog strings */ accountSettings_EditCurrency: { /** * Dialog Title */ title: string; /** * Edit Currency input label */ currencyLabel: string; /** * Submit button text to save settings */ save: string; /** * Cancel button text */ cancel: string; }; /** * Custom Login tab strings */ customLoginTab: { /** * Account details Page title */ tabTitle: string; /** * Add logo filed label */ addLogo: string; /** * Text to show when no logo exists */ emptyLogoText: string; /** * Text to show for max size of logo image */ logoMaxSize: string; /** * Place holder for logo input */ logoPlaceHolder: string; /** * Uploading text for logo */ uploadingLogo: string; /** * Upload logo from computer label */ upload: string; /** * Upload logo by url label */ imageUrl: string; /** * Primary color filed label */ primaryColor: string; /** * Social login position filed label */ socialLoginPosition: string; /** * Social login position radio button up label */ socialLoginPositionUp: string; /** * Social login position radio button down label */ socialLoginPositionDown: string; /** * login Preview label */ preview: string; /** * Custom login cancel button label */ cancel: string; /** * Custom login save button label */ save: string; /** * Validation error for logo input */ logoInputError: string; }; }