export interface AllUsersLocalization { /** * Users page strings */ allUsers: { /** * Users management page title */ pageTitle: string; /** * Users Table invite user button text */ inviteUserButton: string; /** * Users Table search input placeholder */ searchInputPlaceholder: string; /** * Text to be displayed as table placeholder while loading content based on search query */ searchingPlaceholder: string; /** * Me tooltip indicator for users table row if it's the same logged in user */ meTooltip: string; /** * Table user information column header */ userHeader: string; /** * Table user roles column header */ rolesHeader: string; /** * Table user accounts column header */ accountsHeader: string; /** * Table user joined date column header */ joinedHeader: string; /** * Table user last login / refresh token column header */ lastSeenHeader: string; /** * User pending approval status displayed in lastLogin column */ pendingApprovalStatus: string; /** * User pending activation status displayed in lastLogin column */ pendingActivationStatus: string; /** * Table row action for manage user */ manageAction: string; /** * Table row action for resending invitation email to specific user */ resendInvitationAction: string; /** * Table row action for resending activation email to specific user */ resendActivationAction: string; /** * Table row action for log out all specific user sessions */ logOutUserSessionsActions: string; /** * Table row action display on logged in user row to leave the active tenant */ leaveTeamAction: string; /** * Table row action to remove user from all tenants */ deleteUserAction: string; /** * Table row action to lock user in tenants */ lockUserAction: string; /** * Placeholder title to be displayed no users added yet */ noUsersYet: string; /** * Placeholder description to be displayed no users added yet */ noUsersYetDescription: string; /** * Placeholder title to be displayed no results found while searching */ noResultFound: string; /** * Placeholder description to be displayed no results found while searching */ noResultFoundDescription: string; }; /** * Delete user dialog strings */ allUsers_DeleteUser: { /** * Dialog title */ title: string; /** * Delete user description to "Before" username */ areYouSureDeleteUser1: string; /** * Delete user description to "After" username */ areYouSureDeleteUser2: string; /** * Delete user dialog cancel button text */ cancel: string; /** * Delete user dialog submit button text */ delete: string; }; /** * Lock user dialog strings */ allUsers_LockUser: { /** * Dialog title */ title: string; /** * Lock user description */ areYouSureLockUser1: string; /** * Lock user dialog cancel button text */ cancel: string; /** * Lock user dialog submit button text */ lock: string; }; /** * Invite new user to tenant dialog strings */ allUsers_InviteUser: { /** * Invite user dialog title */ title: string; inviteWithLinkSettings: string; /** * Full name input label */ fullNameInputLabel: string; /** * Error displayed if first name input is empty */ fullNameIsRequired: string; /** * User email input label */ emailInputLabel: string; /** * Error message displayed if email is empty */ emailIsRequired: string; /** * Error message displayed if email is not valid email address */ emailMustBeValid: string; /** * User roles select input label */ rolesInputLabel: string; /** * User roles select placeholder */ rolesInputPlaceholder: string; /** * Error displayed if no roles selected */ rolesIsRequired: string; /** * Invite user dialog cancel button text */ cancel: string; /** * Invite user dialog submit button text */ invite: string; save: string; selected: string; accountsCount_one: string; accountsCount_other: string; assignRole: string; accounts: string; role: string; }; /** * Edit Invitation Link dialog strings */ allUsers_EditInvitationLink: { /** * Edit invitation link settings */ title: string; /** * Invitation link title */ inviteWithLinkTitle: string; /** * Notification settings title */ notification: string; /** * Send notification link settings */ sendMeNotification: string; /** * Invitation link expiration input label */ expirationInputLabel: string; /** * Invitation link expiration input placeholder */ expirationInputPlaceholder: string; /** * Link expiration description * EX: 'link will expire in {{number}} day(s)', */ linkExpiration: string; /** * Deactivate link button text */ deactivateLink: string; /** * Back to invite user dialog button text */ back: string; /** * Save invitation link settings button text */ save: string; /** * Copy link help description message */ copyInviteLink: string; /** * Edit link button text */ edit: string; day: string; days: string; }; /** * Deactivate invitation link dialog strings */ allUsers_DeactivateInvitationLink: { /** * Deactivate invitation link dialog title */ title: string; /** * Deactivate invitation link description message */ areYouSureDeleteInviteLink: string; /** * Deactivate invitation link cancel button text */ cancel: string; /** * Deactivate invitation link submit button text */ deactivate: string; }; }