import { SocialLoginProviders } from '@frontegg/rest-api'; export interface SocialLoginsLocalization { /** * strings in reset password page */ socialLogins: { /** * Text to be display in socialLogin buttons prior to the provider name, if rendering inside login section and being set to the main social button * Example: 'Continue with' */ socialloginMainButtonTextPrefix: string; /** * Text to be display in socialLogin buttons prior to the provider name, if rendering inside login section when there is no main button set * Example: 'Login with' */ socialloginButtonTextPrefix: string; /** * Text to be display in socialLogin buttons prior to the provider name, if rendering inside sign up section and being set to the main social button * Example: 'Sign up with' */ socialsignUpMainButtonTextPrefix: string; /** * Text to be display in socialLogin buttons prior to the provider name, if rendering inside signup section when there is no main button set * Example: 'Sign up with' */ socialsignUpButtonTextPrefix: string; /** * Text to be display in socialLogin buttons prior to the provider name, if rendering inside activate account section and being set to the main social button * Example: 'Activate account with {{providerName}}' */ socialactivationMainButtonTextPrefix: string; /** * Text to be display in socialLogin buttons prior to the provider name, if rendering inside activate account section when there is no main button set * Example: 'Activate with' */ socialactivationButtonTextPrefix: string; /** * @Deprecated * Text to be display in socialLogin buttons if rendering inside login section * Ex: 'Continue with {{providerName}}' */ loginButtonText: string; /** * @Deprecated * Text to be display in socialLogin buttons if rendering inside signup section * Ex: 'Login with {{providerName}}' */ signupButtonText: string; /** * @Deprecated * Text to be display in socialLogin buttons if rendering inside activation section * Ex: 'Sign up with {{providerName}}' */ activationButtonText: string; /** * String displayed as invalid title */ invalidTitle: string; /** * Error title if social login callback is invalid */ failedInvalidCallbackUrl: string; /** * Back to login button text in social login invalid section */ failedBackToLogin: string; } & Record; }