2021-07-05 15:10:49 +02:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"golang.org/x/text/language"
|
|
|
|
|
2022-04-27 01:01:45 +02:00
|
|
|
"github.com/zitadel/zitadel/internal/domain"
|
|
|
|
caos_errs "github.com/zitadel/zitadel/internal/errors"
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore"
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore/repository"
|
|
|
|
"github.com/zitadel/zitadel/internal/repository/org"
|
2021-07-05 15:10:49 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestCommandSide_SetCustomOrgLoginText(t *testing.T) {
|
|
|
|
type fields struct {
|
|
|
|
eventstore *eventstore.Eventstore
|
|
|
|
}
|
|
|
|
type args struct {
|
|
|
|
ctx context.Context
|
|
|
|
resourceOwner string
|
|
|
|
config *domain.CustomLoginText
|
|
|
|
}
|
|
|
|
type res struct {
|
|
|
|
want *domain.ObjectDetails
|
|
|
|
err func(error) bool
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
fields fields
|
|
|
|
args args
|
|
|
|
res res
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "no resourceowner, invalid argument error",
|
|
|
|
fields: fields{
|
|
|
|
eventstore: eventstoreExpect(
|
|
|
|
t,
|
|
|
|
),
|
|
|
|
},
|
|
|
|
args: args{
|
|
|
|
ctx: context.Background(),
|
|
|
|
config: &domain.CustomLoginText{},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
err: caos_errs.IsErrorInvalidArgument,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "invalid custom login text, error",
|
|
|
|
fields: fields{
|
|
|
|
eventstore: eventstoreExpect(
|
|
|
|
t,
|
|
|
|
),
|
|
|
|
},
|
|
|
|
args: args{
|
|
|
|
ctx: context.Background(),
|
|
|
|
resourceOwner: "org1",
|
|
|
|
config: &domain.CustomLoginText{},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
err: caos_errs.IsErrorInvalidArgument,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "custom login text set all fields, ok",
|
|
|
|
fields: fields{
|
|
|
|
eventstore: eventstoreExpect(
|
|
|
|
t,
|
|
|
|
expectFilter(),
|
|
|
|
expectPush(
|
|
|
|
[]*repository.Event{
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountTitleLinkingProcess, "TitleLinking", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountDescriptionLinkingProcess, "DescriptionLinking", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountOtherUser, "OtherUser", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountSessionStateActive, "SessionState0", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountSessionStateInactive, "SessionState1", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountUserMustBeMemberOfOrg, "MustBeMemberOfOrg", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginTitleLinkingProcess, "TitleLinking", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginDescriptionLinkingProcess, "DescriptionLinking", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginNameLabel, "LoginNameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginUsernamePlaceHolder, "UsernamePlaceholder", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginLoginnamePlaceHolder, "LoginnamePlaceholder", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginRegisterButtonText, "RegisterButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginExternalUserDescription, "ExternalUserDescription", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginUserMustBeMemberOfOrg, "MustBeMemberOfOrg", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordLabel, "PasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordResetLinkText, "ResetLinkText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordBackButtonText, "BackButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordMinLength, "MinLength", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordHasUppercase, "HasUppercase", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordHasLowercase, "HasLowercase", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordHasNumber, "HasNumber", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordHasSymbol, "HasSymbol", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordConfirmation, "Confirmation", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeUsernameLabel, "UsernameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
), eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordCodeLabel, "CodeLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordNewPasswordLabel, "NewPasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordNewPasswordConfirmLabel, "NewPasswordConfirmLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordResendButtonText, "ResendButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDoneCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationCodeLabel, "CodeLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationResendButtonText, "ResendButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneLoginButtonText, "LoginButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserCodeLabel, "CodeLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserNewPasswordLabel, "NewPasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserNewPasswordConfirmLabel, "NewPasswordConfirmLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserResendButtonText, "ResendButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitUserDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitUserDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitUserDoneCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitUserDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptOTPOption, "Provider0", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptU2FOption, "Provider1", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptSkipButtonText, "SkipButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPDescriptionOTP, "OTPDescription", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPSecretLabel, "SecretLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPCodeLabel, "CodeLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FTokenNameLabel, "TokenNameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FRegisterTokenButtonText, "RegisterTokenButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FNotSupported, "NotSupported", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FErrorRetry, "ErrorRetry", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFADoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFADoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFADoneCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFADoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyMFAProvidersChooseOther, "ChooseOther", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyMFAProvidersOTP, "Provider0", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyMFAProvidersU2F, "Provider1", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAOTPTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAOTPDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAOTPCodeLabel, "CodeLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAOTPNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FValidateTokenText, "ValidateTokenButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FNotSupported, "NotSupported", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FErrorRetry, "ErrorRetry", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessLoginWithPwButtonText, "LoginWithPwButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessValidateTokenButtonText, "ValidateTokenButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessNotSupported, "NotSupported", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessErrorRetry, "ErrorRetry", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
2021-08-11 13:50:03 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptTitle, "Title", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptDescription, "Description", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptDescriptionInit, "DescriptionInit", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptPasswordlessButtonText, "PasswordlessButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptNextButtonText, "NextButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptSkipButtonText, "SkipButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationTitle, "Title", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDescription, "Description", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationRegisterTokenButtonText, "RegisterTokenButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationTokenNameLabel, "TokenNameLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationNotSupported, "NotSupported", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationErrorRetry, "ErrorRetry", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneTitle, "Title", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneDescription, "Description", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
2021-10-04 16:19:21 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneDescriptionClose, "DescriptionClose", language.English,
|
2021-10-04 16:19:21 +02:00
|
|
|
),
|
|
|
|
),
|
2021-08-11 13:50:03 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneNextButtonText, "NextButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneCancelButtonText, "CancelButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
2021-07-05 15:10:49 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeOldPasswordLabel, "OldPasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeNewPasswordLabel, "NewPasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeNewPasswordConfirmLabel, "NewPasswordConfirmLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordResetDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordResetDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordResetDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationOptionTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationOptionDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationOptionUserNameButtonText, "RegisterUsernamePasswordButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationOptionExternalLoginDescription, "ExternalLoginDescription", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserDescriptionOrgRegister, "DescriptionOrgRegister", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserFirstnameLabel, "FirstnameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserLastnameLabel, "LastnameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserEmailLabel, "EmailLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserUsernameLabel, "UsernameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserLanguageLabel, "LanguageLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserGenderLabel, "GenderLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserPasswordLabel, "PasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserPasswordConfirmLabel, "PasswordConfirmLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTOSAndPrivacyLabel, "TOSAndPrivacyLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTOSConfirm, "TOSConfirm", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTOSLinkText, "TOSLinkText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTOSConfirmAnd, "TOSConfirmAnd", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserPrivacyLinkText, "PrivacyLinkText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserBackButtonText, "BackButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
2021-08-11 13:50:03 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTitle, "Title", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewDescription, "Description", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewEmailLabel, "EmailLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewUsernameLabel, "UsernameLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewFirstnameLabel, "FirstnameLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewLastnameLabel, "LastnameLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewNicknameLabel, "NicknameLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewLanguageLabel, "LanguageLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewPhoneLabel, "PhoneLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTOSAndPrivacyLabel, "TOSAndPrivacyLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTOSConfirm, "TOSConfirm", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTOSLinkText, "TOSLinkText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTOSConfirmAnd, "TOSConfirmAnd", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewPrivacyLinkText, "PrivacyLinkText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewBackButtonText, "BackButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewNextButtonText, "NextButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
2021-07-05 15:10:49 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgOrgNameLabel, "OrgNameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgFirstnameLabel, "FirstnameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgLastnameLabel, "LastnameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgUsernameLabel, "UsernameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgEmailLabel, "EmailLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgPasswordLabel, "PasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgPasswordConfirmLabel, "PasswordConfirmLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTOSAndPrivacyLabel, "TOSAndPrivacyLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTOSConfirm, "TOSConfirm", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTOSLinkText, "TOSLinkText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTosConfirmAnd, "TOSConfirmAnd", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgPrivacyLinkText, "PrivacyLinkText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgSaveButtonText, "SaveButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLinkingUserDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLinkingUserDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLinkingUserDoneCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLinkingUserDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundLinkButtonText, "LinkButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundAutoRegisterButtonText, "AutoRegisterButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
2021-08-11 13:50:03 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTOSAndPrivacyLabel, "TOSAndPrivacyLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTOSConfirm, "TOSConfirm", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTOSLinkText, "TOSLinkText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTOSConfirmAnd, "TOSConfirmAnd", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundPrivacyLinkText, "PrivacyLinkText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
2021-07-05 15:10:49 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySuccessLoginTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySuccessLoginAutoRedirectDescription, "AutoRedirectDescription", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySuccessLoginRedirectedDescription, "RedirectedDescription", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySuccessLoginNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLogoutDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLogoutDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLogoutDoneLoginButtonText, "LoginButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyFooterTOS, "TOS", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyFooterPrivacyPolicy, "PrivacyPolicy", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyFooterHelp, "Help", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
args: args{
|
|
|
|
ctx: context.Background(),
|
|
|
|
resourceOwner: "org1",
|
|
|
|
config: &domain.CustomLoginText{
|
|
|
|
Language: language.English,
|
|
|
|
SelectAccount: domain.SelectAccountScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
TitleLinking: "TitleLinking",
|
|
|
|
DescriptionLinking: "DescriptionLinking",
|
|
|
|
OtherUser: "OtherUser",
|
|
|
|
SessionState0: "SessionState0",
|
|
|
|
SessionState1: "SessionState1",
|
|
|
|
MustBeMemberOfOrg: "MustBeMemberOfOrg",
|
|
|
|
},
|
|
|
|
Login: domain.LoginScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
TitleLinking: "TitleLinking",
|
|
|
|
DescriptionLinking: "DescriptionLinking",
|
|
|
|
LoginNameLabel: "LoginNameLabel",
|
|
|
|
UsernamePlaceholder: "UsernamePlaceholder",
|
|
|
|
LoginnamePlaceholder: "LoginnamePlaceholder",
|
|
|
|
RegisterButtonText: "RegisterButtonText",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
ExternalUserDescription: "ExternalUserDescription",
|
|
|
|
MustBeMemberOfOrg: "MustBeMemberOfOrg",
|
|
|
|
},
|
|
|
|
Password: domain.PasswordScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
PasswordLabel: "PasswordLabel",
|
|
|
|
ResetLinkText: "ResetLinkText",
|
|
|
|
BackButtonText: "BackButtonText",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
MinLength: "MinLength",
|
|
|
|
HasUppercase: "HasUppercase",
|
|
|
|
HasLowercase: "HasLowercase",
|
|
|
|
HasNumber: "HasNumber",
|
|
|
|
HasSymbol: "HasSymbol",
|
|
|
|
Confirmation: "Confirmation",
|
|
|
|
},
|
|
|
|
UsernameChange: domain.UsernameChangeScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
UsernameLabel: "UsernameLabel",
|
|
|
|
CancelButtonText: "CancelButtonText",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
},
|
|
|
|
UsernameChangeDone: domain.UsernameChangeDoneScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
},
|
|
|
|
InitPassword: domain.InitPasswordScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
CodeLabel: "CodeLabel",
|
|
|
|
NewPasswordLabel: "NewPasswordLabel",
|
|
|
|
NewPasswordConfirmLabel: "NewPasswordConfirmLabel",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
ResendButtonText: "ResendButtonText",
|
|
|
|
},
|
|
|
|
InitPasswordDone: domain.InitPasswordDoneScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
CancelButtonText: "CancelButtonText",
|
|
|
|
},
|
|
|
|
EmailVerification: domain.EmailVerificationScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
CodeLabel: "CodeLabel",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
ResendButtonText: "ResendButtonText",
|
|
|
|
},
|
|
|
|
EmailVerificationDone: domain.EmailVerificationDoneScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
CancelButtonText: "CancelButtonText",
|
|
|
|
LoginButtonText: "LoginButtonText",
|
|
|
|
},
|
|
|
|
InitUser: domain.InitializeUserScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
CodeLabel: "CodeLabel",
|
|
|
|
NewPasswordLabel: "NewPasswordLabel",
|
|
|
|
NewPasswordConfirmLabel: "NewPasswordConfirmLabel",
|
|
|
|
ResendButtonText: "ResendButtonText",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
},
|
|
|
|
InitUserDone: domain.InitializeUserDoneScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
CancelButtonText: "CancelButtonText",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
},
|
|
|
|
InitMFAPrompt: domain.InitMFAPromptScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
Provider0: "Provider0",
|
|
|
|
Provider1: "Provider1",
|
|
|
|
SkipButtonText: "SkipButtonText",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
},
|
|
|
|
InitMFAOTP: domain.InitMFAOTPScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
OTPDescription: "OTPDescription",
|
|
|
|
SecretLabel: "SecretLabel",
|
|
|
|
CodeLabel: "CodeLabel",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
CancelButtonText: "CancelButtonText",
|
|
|
|
},
|
|
|
|
InitMFAU2F: domain.InitMFAU2FScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
TokenNameLabel: "TokenNameLabel",
|
|
|
|
RegisterTokenButtonText: "RegisterTokenButtonText",
|
|
|
|
NotSupported: "NotSupported",
|
|
|
|
ErrorRetry: "ErrorRetry",
|
|
|
|
},
|
|
|
|
InitMFADone: domain.InitMFADoneScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
CancelButtonText: "CancelButtonText",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
},
|
|
|
|
MFAProvider: domain.MFAProvidersText{
|
|
|
|
ChooseOther: "ChooseOther",
|
|
|
|
Provider0: "Provider0",
|
|
|
|
Provider1: "Provider1",
|
|
|
|
},
|
|
|
|
VerifyMFAOTP: domain.VerifyMFAOTPScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
CodeLabel: "CodeLabel",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
},
|
|
|
|
VerifyMFAU2F: domain.VerifyMFAU2FScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
ValidateTokenButtonText: "ValidateTokenButtonText",
|
|
|
|
NotSupported: "NotSupported",
|
|
|
|
ErrorRetry: "ErrorRetry",
|
|
|
|
},
|
|
|
|
Passwordless: domain.PasswordlessScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
LoginWithPwButtonText: "LoginWithPwButtonText",
|
|
|
|
ValidateTokenButtonText: "ValidateTokenButtonText",
|
|
|
|
NotSupported: "NotSupported",
|
|
|
|
ErrorRetry: "ErrorRetry",
|
|
|
|
},
|
2021-08-11 13:50:03 +02:00
|
|
|
PasswordlessPrompt: domain.PasswordlessPromptScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
DescriptionInit: "DescriptionInit",
|
|
|
|
PasswordlessButtonText: "PasswordlessButtonText",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
SkipButtonText: "SkipButtonText",
|
|
|
|
},
|
|
|
|
PasswordlessRegistration: domain.PasswordlessRegistrationScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
RegisterTokenButtonText: "RegisterTokenButtonText",
|
|
|
|
TokenNameLabel: "TokenNameLabel",
|
|
|
|
NotSupported: "NotSupported",
|
|
|
|
ErrorRetry: "ErrorRetry",
|
|
|
|
},
|
|
|
|
PasswordlessRegistrationDone: domain.PasswordlessRegistrationDoneScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
2021-10-04 16:19:21 +02:00
|
|
|
DescriptionClose: "DescriptionClose",
|
2021-08-11 13:50:03 +02:00
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
CancelButtonText: "CancelButtonText",
|
|
|
|
},
|
2021-07-05 15:10:49 +02:00
|
|
|
PasswordChange: domain.PasswordChangeScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
OldPasswordLabel: "OldPasswordLabel",
|
|
|
|
NewPasswordLabel: "NewPasswordLabel",
|
|
|
|
NewPasswordConfirmLabel: "NewPasswordConfirmLabel",
|
|
|
|
CancelButtonText: "CancelButtonText",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
},
|
|
|
|
PasswordChangeDone: domain.PasswordChangeDoneScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
},
|
|
|
|
PasswordResetDone: domain.PasswordResetDoneScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
},
|
|
|
|
RegisterOption: domain.RegistrationOptionScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
RegisterUsernamePasswordButtonText: "RegisterUsernamePasswordButtonText",
|
|
|
|
ExternalLoginDescription: "ExternalLoginDescription",
|
|
|
|
},
|
|
|
|
RegistrationUser: domain.RegistrationUserScreenText{
|
feat(console): message and login texts, privacy policy (#2016)
* message texts wrapper components
* message-text sub, i18n, grid
* fix routing
* pack
* pack
* update material
* audit
* fix mgmt service for labelplcy
* map conv
* edit text from map
* request map
* fetch data, mgmt admin service
* warn box, i18n
* resetbtn
* login texts
* login text requests
* reset, default, i18n
* disabled, features, message text setter, service
* locale switcher
* policy grid
* password reset, domain claimed i18n
* lint files
* fix admin service, i18n, lang setter
* fix scss duplicate
* privacy policy, cleanup grid, fix message, login texts (#2031)
* policy grid everywhere 🦒
* cleanup home
* log login text request
* patch all data
* refresh toggle
* fix: add dialog for unsaved changes (#2057)
* logintexts dialog
* check for dialog on pairwise operation
* fix: patch value to local state after save
* fix: i18n and custom login texts (#2060)
* fix: i18n and custom login texts
* fix: tos and privacy texts
* fix frontend
* fix: tos and privacy texts and tests
* fix: i18n, tos and privacy texts and tests
* fix frontend maps
* i18n
* add ResetCustomLoginTextToDefault in admin api and fix template remove in handlers
* resetlogintexttodefault
Co-authored-by: Livio Amstutz <livio.a@gmail.com>
2021-07-26 12:44:45 +02:00
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
DescriptionOrgRegister: "DescriptionOrgRegister",
|
|
|
|
FirstnameLabel: "FirstnameLabel",
|
|
|
|
LastnameLabel: "LastnameLabel",
|
|
|
|
EmailLabel: "EmailLabel",
|
|
|
|
UsernameLabel: "UsernameLabel",
|
|
|
|
LanguageLabel: "LanguageLabel",
|
|
|
|
GenderLabel: "GenderLabel",
|
|
|
|
PasswordLabel: "PasswordLabel",
|
|
|
|
PasswordConfirmLabel: "PasswordConfirmLabel",
|
|
|
|
TOSAndPrivacyLabel: "TOSAndPrivacyLabel",
|
|
|
|
TOSConfirm: "TOSConfirm",
|
|
|
|
TOSLinkText: "TOSLinkText",
|
|
|
|
TOSConfirmAnd: "TOSConfirmAnd",
|
|
|
|
PrivacyLinkText: "PrivacyLinkText",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
BackButtonText: "BackButtonText",
|
2021-07-05 15:10:49 +02:00
|
|
|
},
|
2021-08-11 13:50:03 +02:00
|
|
|
ExternalRegistrationUserOverview: domain.ExternalRegistrationUserOverviewScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
EmailLabel: "EmailLabel",
|
|
|
|
UsernameLabel: "UsernameLabel",
|
|
|
|
FirstnameLabel: "FirstnameLabel",
|
|
|
|
LastnameLabel: "LastnameLabel",
|
|
|
|
NicknameLabel: "NicknameLabel",
|
|
|
|
LanguageLabel: "LanguageLabel",
|
|
|
|
PhoneLabel: "PhoneLabel",
|
|
|
|
TOSAndPrivacyLabel: "TOSAndPrivacyLabel",
|
|
|
|
TOSConfirm: "TOSConfirm",
|
|
|
|
TOSLinkText: "TOSLinkText",
|
|
|
|
TOSConfirmAnd: "TOSConfirmAnd",
|
|
|
|
PrivacyLinkText: "PrivacyLinkText",
|
|
|
|
BackButtonText: "BackButtonText",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
},
|
2021-07-05 15:10:49 +02:00
|
|
|
RegistrationOrg: domain.RegistrationOrgScreenText{
|
feat(console): message and login texts, privacy policy (#2016)
* message texts wrapper components
* message-text sub, i18n, grid
* fix routing
* pack
* pack
* update material
* audit
* fix mgmt service for labelplcy
* map conv
* edit text from map
* request map
* fetch data, mgmt admin service
* warn box, i18n
* resetbtn
* login texts
* login text requests
* reset, default, i18n
* disabled, features, message text setter, service
* locale switcher
* policy grid
* password reset, domain claimed i18n
* lint files
* fix admin service, i18n, lang setter
* fix scss duplicate
* privacy policy, cleanup grid, fix message, login texts (#2031)
* policy grid everywhere 🦒
* cleanup home
* log login text request
* patch all data
* refresh toggle
* fix: add dialog for unsaved changes (#2057)
* logintexts dialog
* check for dialog on pairwise operation
* fix: patch value to local state after save
* fix: i18n and custom login texts (#2060)
* fix: i18n and custom login texts
* fix: tos and privacy texts
* fix frontend
* fix: tos and privacy texts and tests
* fix: i18n, tos and privacy texts and tests
* fix frontend maps
* i18n
* add ResetCustomLoginTextToDefault in admin api and fix template remove in handlers
* resetlogintexttodefault
Co-authored-by: Livio Amstutz <livio.a@gmail.com>
2021-07-26 12:44:45 +02:00
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
OrgNameLabel: "OrgNameLabel",
|
|
|
|
FirstnameLabel: "FirstnameLabel",
|
|
|
|
LastnameLabel: "LastnameLabel",
|
|
|
|
UsernameLabel: "UsernameLabel",
|
|
|
|
EmailLabel: "EmailLabel",
|
|
|
|
PasswordLabel: "PasswordLabel",
|
|
|
|
PasswordConfirmLabel: "PasswordConfirmLabel",
|
|
|
|
TOSAndPrivacyLabel: "TOSAndPrivacyLabel",
|
|
|
|
TOSConfirm: "TOSConfirm",
|
|
|
|
TOSLinkText: "TOSLinkText",
|
|
|
|
TOSConfirmAnd: "TOSConfirmAnd",
|
|
|
|
PrivacyLinkText: "PrivacyLinkText",
|
|
|
|
SaveButtonText: "SaveButtonText",
|
2021-07-05 15:10:49 +02:00
|
|
|
},
|
|
|
|
LinkingUsersDone: domain.LinkingUserDoneScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
CancelButtonText: "CancelButtonText",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
},
|
2022-12-01 12:31:46 +00:00
|
|
|
ExternalNotFound: domain.ExternalUserNotFoundScreenText{
|
2021-07-05 15:10:49 +02:00
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
LinkButtonText: "LinkButtonText",
|
|
|
|
AutoRegisterButtonText: "AutoRegisterButtonText",
|
2021-08-11 13:50:03 +02:00
|
|
|
TOSAndPrivacyLabel: "TOSAndPrivacyLabel",
|
|
|
|
TOSConfirm: "TOSConfirm",
|
|
|
|
TOSLinkText: "TOSLinkText",
|
|
|
|
TOSConfirmAnd: "TOSConfirmAnd",
|
|
|
|
PrivacyLinkText: "PrivacyLinkText",
|
2021-07-05 15:10:49 +02:00
|
|
|
},
|
|
|
|
LoginSuccess: domain.SuccessLoginScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
AutoRedirectDescription: "AutoRedirectDescription",
|
|
|
|
RedirectedDescription: "RedirectedDescription",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
},
|
|
|
|
LogoutDone: domain.LogoutDoneScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
LoginButtonText: "LoginButtonText",
|
|
|
|
},
|
|
|
|
Footer: domain.FooterText{
|
feat(console): message and login texts, privacy policy (#2016)
* message texts wrapper components
* message-text sub, i18n, grid
* fix routing
* pack
* pack
* update material
* audit
* fix mgmt service for labelplcy
* map conv
* edit text from map
* request map
* fetch data, mgmt admin service
* warn box, i18n
* resetbtn
* login texts
* login text requests
* reset, default, i18n
* disabled, features, message text setter, service
* locale switcher
* policy grid
* password reset, domain claimed i18n
* lint files
* fix admin service, i18n, lang setter
* fix scss duplicate
* privacy policy, cleanup grid, fix message, login texts (#2031)
* policy grid everywhere 🦒
* cleanup home
* log login text request
* patch all data
* refresh toggle
* fix: add dialog for unsaved changes (#2057)
* logintexts dialog
* check for dialog on pairwise operation
* fix: patch value to local state after save
* fix: i18n and custom login texts (#2060)
* fix: i18n and custom login texts
* fix: tos and privacy texts
* fix frontend
* fix: tos and privacy texts and tests
* fix: i18n, tos and privacy texts and tests
* fix frontend maps
* i18n
* add ResetCustomLoginTextToDefault in admin api and fix template remove in handlers
* resetlogintexttodefault
Co-authored-by: Livio Amstutz <livio.a@gmail.com>
2021-07-26 12:44:45 +02:00
|
|
|
TOS: "TOS",
|
|
|
|
PrivacyPolicy: "PrivacyPolicy",
|
|
|
|
Help: "Help",
|
2021-07-05 15:10:49 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
want: &domain.ObjectDetails{
|
|
|
|
ResourceOwner: "org1",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "custom login text remove all fields, ok",
|
|
|
|
fields: fields{
|
|
|
|
eventstore: eventstoreExpect(
|
|
|
|
t,
|
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountTitleLinkingProcess, "TitleLinking", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountDescriptionLinkingProcess, "DescriptionLinking", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountOtherUser, "OtherUser", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountSessionStateActive, "SessionState0", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountSessionStateInactive, "SessionState1", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountUserMustBeMemberOfOrg, "MustBeMemberOfOrg", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginTitleLinkingProcess, "TitleLinking", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginDescriptionLinkingProcess, "DescriptionLinking", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginNameLabel, "LoginNameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginUsernamePlaceHolder, "UsernamePlaceholder", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginLoginnamePlaceHolder, "LoginnamePlaceholder", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginRegisterButtonText, "RegisterButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginExternalUserDescription, "ExternalUserDescription", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginUserMustBeMemberOfOrg, "MustBeMemberOfOrg", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordLabel, "PasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordResetLinkText, "ResetLinkText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordBackButtonText, "BackButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordMinLength, "MinLength", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordHasUppercase, "HasUppercase", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordHasLowercase, "HasLowercase", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordHasNumber, "HasNumber", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordHasSymbol, "HasSymbol", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordConfirmation, "Confirmation", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeUsernameLabel, "UsernameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordCodeLabel, "CodeLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordNewPasswordLabel, "NewPasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordNewPasswordConfirmLabel, "NewPasswordConfirmLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordResendButtonText, "ResendButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDoneCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationCodeLabel, "CodeLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationResendButtonText, "ResendButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneLoginButtonText, "LoginButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserCodeLabel, "CodeLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserNewPasswordLabel, "NewPasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserNewPasswordConfirmLabel, "NewPasswordConfirmLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserResendButtonText, "ResendButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitUserDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitUserDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitUserDoneCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitUserDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptOTPOption, "Provider0", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptU2FOption, "Provider1", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptSkipButtonText, "SkipButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPDescriptionOTP, "OTPDescription", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPSecretLabel, "SecretLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPCodeLabel, "CodeLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FTokenNameLabel, "TokenNameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FRegisterTokenButtonText, "RegisterTokenButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FNotSupported, "NotSupported", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FErrorRetry, "ErrorRetry", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFADoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFADoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFADoneCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFADoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyMFAProvidersChooseOther, "ChooseOther", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyMFAProvidersOTP, "Provider0", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyMFAProvidersU2F, "Provider1", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAOTPTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAOTPDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAOTPCodeLabel, "CodeLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAOTPNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FValidateTokenText, "ValidateTokenButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FNotSupported, "NotSupported", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FErrorRetry, "ErrorRetry", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessLoginWithPwButtonText, "LoginWithPwButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessValidateTokenButtonText, "ValidateTokenButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessNotSupported, "NotSupported", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessErrorRetry, "ErrorRetry", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
2021-08-11 13:50:03 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptTitle, "Title", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptDescription, "Description", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptDescriptionInit, "DescriptionInit", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptPasswordlessButtonText, "PasswordlessButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptNextButtonText, "NextButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptSkipButtonText, "SkipButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationTitle, "Title", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDescription, "Description", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationRegisterTokenButtonText, "RegisterTokenButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationTokenNameLabel, "TokenNameLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationNotSupported, "NotSupported", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationErrorRetry, "ErrorRetry", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneTitle, "Title", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneDescription, "Description", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
2021-10-04 16:19:21 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneDescriptionClose, "DescriptionClose", language.English,
|
2021-10-04 16:19:21 +02:00
|
|
|
),
|
|
|
|
),
|
2021-08-11 13:50:03 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneNextButtonText, "NextButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneCancelButtonText, "CancelButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
2021-07-05 15:10:49 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeOldPasswordLabel, "OldPasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeNewPasswordLabel, "NewPasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeNewPasswordConfirmLabel, "NewPasswordConfirmLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordResetDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordResetDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordResetDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationOptionTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationOptionDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationOptionUserNameButtonText, "RegisterUsernamePasswordButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationOptionExternalLoginDescription, "ExternalLoginDescription", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserDescriptionOrgRegister, "DescriptionOrgRegister", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserFirstnameLabel, "FirstnameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserLastnameLabel, "LastnameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserEmailLabel, "EmailLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserUsernameLabel, "UsernameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserLanguageLabel, "LanguageLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserGenderLabel, "GenderLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserPasswordLabel, "PasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserPasswordConfirmLabel, "PasswordConfirmLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTOSAndPrivacyLabel, "TOSAndPrivacyLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTOSConfirm, "TOSConfirm", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTOSLinkText, "TOSLinkText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTOSConfirmAnd, "TOSConfirmAnd", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserPrivacyLinkText, "PrivacyLinkText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserBackButtonText, "BackButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
2021-08-11 13:50:03 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTitle, "Title", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewDescription, "Description", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewEmailLabel, "EmailLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewUsernameLabel, "UsernameLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewFirstnameLabel, "FirstnameLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewLastnameLabel, "LastnameLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewNicknameLabel, "NicknameLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewLanguageLabel, "LanguageLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewPhoneLabel, "PhoneLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTOSAndPrivacyLabel, "TOSAndPrivacyLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTOSConfirm, "TOSConfirm", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTOSLinkText, "TOSLinkText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTOSConfirmAnd, "TOSConfirmAnd", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewPrivacyLinkText, "PrivacyLinkText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewBackButtonText, "BackButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewNextButtonText, "NextButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
2021-07-05 15:10:49 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgOrgNameLabel, "OrgNameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgFirstnameLabel, "FirstnameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgLastnameLabel, "LastnameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgUsernameLabel, "UsernameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgEmailLabel, "EmailLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgPasswordLabel, "PasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgPasswordConfirmLabel, "PasswordConfirmLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTOSAndPrivacyLabel, "TOSAndPrivacyLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTOSConfirm, "TOSConfirm", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTOSLinkText, "TOSLinkText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTosConfirmAnd, "TOSConfirmAnd", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgPrivacyLinkText, "PrivacyLinkText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgSaveButtonText, "SaveButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLinkingUserDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLinkingUserDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLinkingUserDoneCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLinkingUserDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundLinkButtonText, "LinkButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundAutoRegisterButtonText, "AutoRegisterButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
2021-08-11 13:50:03 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTOSAndPrivacyLabel, "TOSAndPrivacyLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTOSConfirm, "TOSConfirm", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTOSLinkText, "TOSLinkText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTOSConfirmAnd, "TOSConfirmAnd", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundPrivacyLinkText, "PrivacyLinkText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
2021-07-05 15:10:49 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySuccessLoginTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySuccessLoginAutoRedirectDescription, "AutoRedirectDescription", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySuccessLoginRedirectedDescription, "RedirectedDescription", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySuccessLoginNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLogoutDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLogoutDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLogoutDoneLoginButtonText, "LoginButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyFooterTOS, "TOS", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyFooterPrivacyPolicy, "PrivacyPolicy", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyFooterHelp, "Help", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
expectPush(
|
|
|
|
[]*repository.Event{
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountTitleLinkingProcess, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountDescriptionLinkingProcess, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountOtherUser, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountSessionStateActive, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountSessionStateInactive, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountUserMustBeMemberOfOrg, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginTitleLinkingProcess, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginDescriptionLinkingProcess, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginNameLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginUsernamePlaceHolder, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginLoginnamePlaceHolder, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginRegisterButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginExternalUserDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginUserMustBeMemberOfOrg, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordResetLinkText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordBackButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordMinLength, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordHasUppercase, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordHasLowercase, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordHasNumber, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordHasSymbol, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordConfirmation, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeUsernameLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeCancelButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeDoneTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeDoneDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeDoneNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordCodeLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordNewPasswordLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordNewPasswordConfirmLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordResendButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDoneTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDoneDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDoneNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDoneCancelButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationCodeLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationResendButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneCancelButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneLoginButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserCodeLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserNewPasswordLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserNewPasswordConfirmLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserResendButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitUserDoneTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitUserDoneDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitUserDoneCancelButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitUserDoneNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptOTPOption, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptU2FOption, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptSkipButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPDescriptionOTP, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPSecretLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPCodeLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPCancelButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FTokenNameLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FRegisterTokenButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FNotSupported, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FErrorRetry, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFADoneTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFADoneDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFADoneCancelButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFADoneNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyMFAProvidersChooseOther, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyMFAProvidersOTP, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyMFAProvidersU2F, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAOTPTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAOTPDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAOTPCodeLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAOTPNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FValidateTokenText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FNotSupported, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FErrorRetry, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessLoginWithPwButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessValidateTokenButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessNotSupported, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessErrorRetry, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
2021-08-11 13:50:03 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptTitle, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptDescription, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptDescriptionInit, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptPasswordlessButtonText, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptNextButtonText, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptSkipButtonText, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationTitle, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDescription, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationRegisterTokenButtonText, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationTokenNameLabel, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationNotSupported, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationErrorRetry, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneTitle, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneDescription, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
2021-10-04 16:19:21 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneDescriptionClose, language.English,
|
2021-10-04 16:19:21 +02:00
|
|
|
),
|
|
|
|
),
|
2021-08-11 13:50:03 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneNextButtonText, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneCancelButtonText, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
2021-07-05 15:10:49 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeOldPasswordLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeNewPasswordLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeNewPasswordConfirmLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeCancelButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeDoneTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeDoneDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeDoneNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordResetDoneTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordResetDoneDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordResetDoneNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationOptionTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationOptionDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationOptionUserNameButtonText, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationOptionExternalLoginDescription, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTitle, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserDescription, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserDescriptionOrgRegister, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserFirstnameLabel, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserLastnameLabel, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserEmailLabel, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserUsernameLabel, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserLanguageLabel, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserGenderLabel, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserPasswordLabel, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserPasswordConfirmLabel, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTOSAndPrivacyLabel, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTOSConfirm, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTOSLinkText, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTOSConfirmAnd, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserPrivacyLinkText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserBackButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewEmailLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewUsernameLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewFirstnameLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewLastnameLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewNicknameLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewLanguageLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewPhoneLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTOSAndPrivacyLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTOSConfirm, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTOSLinkText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTOSConfirmAnd, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewPrivacyLinkText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewBackButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgOrgNameLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgFirstnameLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgLastnameLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgUsernameLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgEmailLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgPasswordLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgPasswordConfirmLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTOSAndPrivacyLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTOSConfirm, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTOSLinkText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTosConfirmAnd, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgPrivacyLinkText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgSaveButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLinkingUserDoneTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLinkingUserDoneDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLinkingUserDoneCancelButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLinkingUserDoneNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundLinkButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundAutoRegisterButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
2021-08-11 13:50:03 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTOSAndPrivacyLabel, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTOSConfirm, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTOSLinkText, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTOSConfirmAnd, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundPrivacyLinkText, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
2021-07-05 15:10:49 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySuccessLoginTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySuccessLoginAutoRedirectDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySuccessLoginRedirectedDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySuccessLoginNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLogoutDoneTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLogoutDoneDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLogoutDoneLoginButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyFooterTOS, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyFooterPrivacyPolicy, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyFooterHelp, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
args: args{
|
|
|
|
ctx: context.Background(),
|
|
|
|
resourceOwner: "org1",
|
|
|
|
config: &domain.CustomLoginText{
|
2021-10-04 16:19:21 +02:00
|
|
|
Language: language.English,
|
|
|
|
SelectAccount: domain.SelectAccountScreenText{},
|
|
|
|
Login: domain.LoginScreenText{},
|
|
|
|
Password: domain.PasswordScreenText{},
|
|
|
|
UsernameChange: domain.UsernameChangeScreenText{},
|
|
|
|
UsernameChangeDone: domain.UsernameChangeDoneScreenText{},
|
|
|
|
InitPassword: domain.InitPasswordScreenText{},
|
|
|
|
InitPasswordDone: domain.InitPasswordDoneScreenText{},
|
|
|
|
EmailVerification: domain.EmailVerificationScreenText{},
|
|
|
|
EmailVerificationDone: domain.EmailVerificationDoneScreenText{},
|
|
|
|
InitUser: domain.InitializeUserScreenText{},
|
|
|
|
InitUserDone: domain.InitializeUserDoneScreenText{},
|
|
|
|
InitMFAPrompt: domain.InitMFAPromptScreenText{},
|
|
|
|
InitMFAOTP: domain.InitMFAOTPScreenText{},
|
|
|
|
InitMFAU2F: domain.InitMFAU2FScreenText{},
|
|
|
|
InitMFADone: domain.InitMFADoneScreenText{},
|
|
|
|
MFAProvider: domain.MFAProvidersText{},
|
|
|
|
VerifyMFAOTP: domain.VerifyMFAOTPScreenText{},
|
|
|
|
VerifyMFAU2F: domain.VerifyMFAU2FScreenText{},
|
|
|
|
Passwordless: domain.PasswordlessScreenText{},
|
|
|
|
PasswordlessPrompt: domain.PasswordlessPromptScreenText{},
|
|
|
|
PasswordlessRegistration: domain.PasswordlessRegistrationScreenText{},
|
|
|
|
PasswordlessRegistrationDone: domain.PasswordlessRegistrationDoneScreenText{},
|
|
|
|
PasswordChange: domain.PasswordChangeScreenText{},
|
|
|
|
PasswordChangeDone: domain.PasswordChangeDoneScreenText{},
|
|
|
|
PasswordResetDone: domain.PasswordResetDoneScreenText{},
|
|
|
|
RegisterOption: domain.RegistrationOptionScreenText{},
|
2021-08-11 13:50:03 +02:00
|
|
|
ExternalRegistrationUserOverview: domain.ExternalRegistrationUserOverviewScreenText{},
|
2021-10-04 16:19:21 +02:00
|
|
|
RegistrationUser: domain.RegistrationUserScreenText{},
|
|
|
|
RegistrationOrg: domain.RegistrationOrgScreenText{},
|
|
|
|
LinkingUsersDone: domain.LinkingUserDoneScreenText{},
|
2022-12-01 12:31:46 +00:00
|
|
|
ExternalNotFound: domain.ExternalUserNotFoundScreenText{},
|
2021-10-04 16:19:21 +02:00
|
|
|
LoginSuccess: domain.SuccessLoginScreenText{},
|
|
|
|
LogoutDone: domain.LogoutDoneScreenText{},
|
|
|
|
Footer: domain.FooterText{},
|
2021-07-05 15:10:49 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
want: &domain.ObjectDetails{
|
|
|
|
ResourceOwner: "org1",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "custom login text set all fields, all texts removed, ok",
|
|
|
|
fields: fields{
|
|
|
|
eventstore: eventstoreExpect(
|
|
|
|
t,
|
|
|
|
expectFilter(
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountTitleLinkingProcess, "TitleLinking", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountDescriptionLinkingProcess, "DescriptionLinking", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountOtherUser, "OtherUser", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountSessionStateActive, "SessionState0", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountSessionStateInactive, "SessionState1", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountUserMustBeMemberOfOrg, "MustBeMemberOfOrg", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginTitleLinkingProcess, "TitleLinking", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginDescriptionLinkingProcess, "DescriptionLinking", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginNameLabel, "LoginNameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginUsernamePlaceHolder, "UsernamePlaceholder", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginLoginnamePlaceHolder, "LoginnamePlaceholder", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginRegisterButtonText, "RegisterButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginExternalUserDescription, "ExternalUserDescription", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginUserMustBeMemberOfOrg, "MustBeMemberOfOrg", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordLabel, "PasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordResetLinkText, "ResetLinkText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordBackButtonText, "BackButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordMinLength, "MinLength", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordHasUppercase, "HasUppercase", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordHasLowercase, "HasLowercase", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordHasNumber, "HasNumber", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordHasSymbol, "HasSymbol", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordConfirmation, "Confirmation", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeUsernameLabel, "UsernameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordCodeLabel, "CodeLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordNewPasswordLabel, "NewPasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordNewPasswordConfirmLabel, "NewPasswordConfirmLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordResendButtonText, "ResendButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDoneCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationCodeLabel, "CodeLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationResendButtonText, "ResendButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneLoginButtonText, "LoginButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserCodeLabel, "CodeLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserNewPasswordLabel, "NewPasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserNewPasswordConfirmLabel, "NewPasswordConfirmLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserResendButtonText, "ResendButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitUserDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitUserDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitUserDoneCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitUserDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptOTPOption, "Provider0", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptU2FOption, "Provider1", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptSkipButtonText, "SkipButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPDescriptionOTP, "OTPDescription", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPSecretLabel, "SecretLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPCodeLabel, "CodeLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FTokenNameLabel, "TokenNameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FRegisterTokenButtonText, "RegisterTokenButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FNotSupported, "NotSupported", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FErrorRetry, "ErrorRetry", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFADoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFADoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFADoneCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFADoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyMFAProvidersChooseOther, "ChooseOther", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyMFAProvidersOTP, "Provider0", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyMFAProvidersU2F, "Provider1", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAOTPTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAOTPDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAOTPCodeLabel, "CodeLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAOTPNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FValidateTokenText, "ValidateTokenButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FNotSupported, "NotSupported", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FErrorRetry, "ErrorRetry", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessLoginWithPwButtonText, "LoginWithPwButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessValidateTokenButtonText, "ValidateTokenButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessNotSupported, "NotSupported", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessErrorRetry, "ErrorRetry", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
2021-08-11 13:50:03 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptTitle, "Title", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptDescription, "Description", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptDescriptionInit, "DescriptionInit", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptPasswordlessButtonText, "PasswordlessButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptNextButtonText, "NextButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptSkipButtonText, "SkipButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationTitle, "Title", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDescription, "Description", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationRegisterTokenButtonText, "RegisterTokenButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationTokenNameLabel, "TokenNameLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationNotSupported, "NotSupported", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationErrorRetry, "ErrorRetry", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneTitle, "Title", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneDescription, "Description", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
2021-10-04 16:19:21 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneDescriptionClose, "DescriptionClose", language.English,
|
2021-10-04 16:19:21 +02:00
|
|
|
),
|
|
|
|
),
|
2021-08-11 13:50:03 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneNextButtonText, "NextButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneCancelButtonText, "CancelButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
2021-07-05 15:10:49 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeOldPasswordLabel, "OldPasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeNewPasswordLabel, "NewPasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeNewPasswordConfirmLabel, "NewPasswordConfirmLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordResetDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordResetDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordResetDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationOptionTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationOptionDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationOptionUserNameButtonText, "RegisterUsernamePasswordButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationOptionExternalLoginDescription, "ExternalLoginDescription", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserDescriptionOrgRegister, "DescriptionOrgRegister", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserFirstnameLabel, "FirstnameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserLastnameLabel, "LastnameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserEmailLabel, "EmailLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserUsernameLabel, "UsernameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserLanguageLabel, "LanguageLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserGenderLabel, "GenderLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserPasswordLabel, "PasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserPasswordConfirmLabel, "PasswordConfirmLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTOSAndPrivacyLabel, "TOSAndPrivacyLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTOSConfirm, "TOSConfirm", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTOSLinkText, "TOSLinkText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTOSConfirmAnd, "TOSConfirmAnd", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserPrivacyLinkText, "PrivacyLinkText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserBackButtonText, "BackButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
2021-08-11 13:50:03 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTitle, "Title", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewDescription, "Description", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewFirstnameLabel, "FirstnameLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewLastnameLabel, "LastnameLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewEmailLabel, "EmailLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewUsernameLabel, "UsernameLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewNicknameLabel, "NicknameLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewLanguageLabel, "LanguageLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewPhoneLabel, "PhoneLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTOSAndPrivacyLabel, "TOSAndPrivacyLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTOSConfirm, "TOSConfirm", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTOSLinkText, "TOSLinkText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTOSConfirmAnd, "TOSConfirmAnd", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewPrivacyLinkText, "PrivacyLinkText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewBackButtonText, "BackButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewNextButtonText, "NextButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
2021-07-05 15:10:49 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgOrgNameLabel, "OrgNameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgFirstnameLabel, "FirstnameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgLastnameLabel, "LastnameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgUsernameLabel, "UsernameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgEmailLabel, "EmailLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgPasswordLabel, "PasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgPasswordConfirmLabel, "PasswordConfirmLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTOSAndPrivacyLabel, "TOSAndPrivacyLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTOSConfirm, "TOSConfirm", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTOSLinkText, "TOSLinkText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTosConfirmAnd, "TOSConfirmAnd", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgPrivacyLinkText, "PrivacyLinkText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgSaveButtonText, "SaveButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLinkingUserDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLinkingUserDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLinkingUserDoneCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLinkingUserDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundLinkButtonText, "LinkButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundAutoRegisterButtonText, "AutoRegisterButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
2021-08-11 13:50:03 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTOSAndPrivacyLabel, "TOSAndPrivacyLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTOSConfirm, "TOSConfirm", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTOSLinkText, "TOSLinkText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTOSConfirmAnd, "TOSConfirmAnd", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundPrivacyLinkText, "PrivacyLinkText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
2021-07-05 15:10:49 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySuccessLoginTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySuccessLoginAutoRedirectDescription, "AutoRedirectDescription", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySuccessLoginRedirectedDescription, "RedirectedDescription", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySuccessLoginNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLogoutDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLogoutDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLogoutDoneLoginButtonText, "LoginButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyFooterTOS, "TOS", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyFooterPrivacyPolicy, "PrivacyPolicy", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyFooterHelp, "Help", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountTitleLinkingProcess, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountDescriptionLinkingProcess, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountOtherUser, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountSessionStateActive, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountSessionStateInactive, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountUserMustBeMemberOfOrg, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginTitleLinkingProcess, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginDescriptionLinkingProcess, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginNameLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginUsernamePlaceHolder, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginLoginnamePlaceHolder, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginRegisterButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginExternalUserDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginUserMustBeMemberOfOrg, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordResetLinkText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordBackButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordMinLength, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordHasUppercase, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordHasLowercase, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordHasNumber, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordHasSymbol, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordConfirmation, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeUsernameLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeCancelButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeDoneTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeDoneDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeDoneNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordCodeLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordNewPasswordLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordNewPasswordConfirmLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordResendButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDoneTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDoneDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDoneNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDoneCancelButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationCodeLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationResendButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneCancelButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneLoginButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserCodeLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserNewPasswordLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserNewPasswordConfirmLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserResendButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitUserDoneTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitUserDoneDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitUserDoneCancelButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitUserDoneNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptOTPOption, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptU2FOption, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptSkipButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPDescriptionOTP, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPSecretLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPCodeLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPCancelButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FTokenNameLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FRegisterTokenButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FNotSupported, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FErrorRetry, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFADoneTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFADoneDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFADoneCancelButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFADoneNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyMFAProvidersChooseOther, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyMFAProvidersOTP, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyMFAProvidersU2F, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAOTPTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAOTPDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAOTPCodeLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAOTPNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FValidateTokenText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FNotSupported, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FErrorRetry, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessLoginWithPwButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessValidateTokenButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessNotSupported, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessErrorRetry, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
2021-08-11 13:50:03 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptTitle, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptDescription, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptDescriptionInit, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptPasswordlessButtonText, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptNextButtonText, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptSkipButtonText, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationTitle, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDescription, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationRegisterTokenButtonText, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationTokenNameLabel, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationNotSupported, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationErrorRetry, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneTitle, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneDescription, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
2021-10-04 16:19:21 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneDescriptionClose, language.English,
|
2021-10-04 16:19:21 +02:00
|
|
|
),
|
|
|
|
),
|
2021-08-11 13:50:03 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneNextButtonText, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneCancelButtonText, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
2021-07-05 15:10:49 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeOldPasswordLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeNewPasswordLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeNewPasswordConfirmLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeCancelButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeDoneTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeDoneDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeDoneNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordResetDoneTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordResetDoneDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordResetDoneNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationOptionTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationOptionDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationOptionUserNameButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationOptionExternalLoginDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserDescriptionOrgRegister, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserFirstnameLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserLastnameLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserEmailLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserUsernameLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserLanguageLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserGenderLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserPasswordLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserPasswordConfirmLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTOSAndPrivacyLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTOSConfirm, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTOSLinkText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTOSConfirmAnd, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserPrivacyLinkText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserBackButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
2021-08-11 13:50:03 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTitle, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewDescription, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewEmailLabel, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewUsernameLabel, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewFirstnameLabel, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewLastnameLabel, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewNicknameLabel, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewLanguageLabel, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewPhoneLabel, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTOSAndPrivacyLabel, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTOSConfirm, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTOSLinkText, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTOSConfirmAnd, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewPrivacyLinkText, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewBackButtonText, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewNextButtonText, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
2021-07-05 15:10:49 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgOrgNameLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgFirstnameLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgLastnameLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgUsernameLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgEmailLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgPasswordLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgPasswordConfirmLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTOSAndPrivacyLabel, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTOSConfirm, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTOSLinkText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTosConfirmAnd, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgPrivacyLinkText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgSaveButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLinkingUserDoneTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLinkingUserDoneDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLinkingUserDoneCancelButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLinkingUserDoneNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundLinkButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundAutoRegisterButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
2021-08-11 13:50:03 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTOSAndPrivacyLabel, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTOSConfirm, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTOSLinkText, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTOSConfirmAnd, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundPrivacyLinkText, language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
2021-07-05 15:10:49 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySuccessLoginTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySuccessLoginAutoRedirectDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySuccessLoginRedirectedDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySuccessLoginNextButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLogoutDoneTitle, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLogoutDoneDescription, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLogoutDoneLoginButtonText, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyFooterTOS, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyFooterPrivacyPolicy, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextRemovedEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyFooterHelp, language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
expectPush(
|
|
|
|
[]*repository.Event{
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountTitleLinkingProcess, "TitleLinking", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountDescriptionLinkingProcess, "DescriptionLinking", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountOtherUser, "OtherUser", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountSessionStateActive, "SessionState0", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountSessionStateInactive, "SessionState1", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySelectAccountUserMustBeMemberOfOrg, "MustBeMemberOfOrg", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginTitleLinkingProcess, "TitleLinking", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginDescriptionLinkingProcess, "DescriptionLinking", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginNameLabel, "LoginNameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginUsernamePlaceHolder, "UsernamePlaceholder", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginLoginnamePlaceHolder, "LoginnamePlaceholder", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginRegisterButtonText, "RegisterButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginExternalUserDescription, "ExternalUserDescription", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLoginUserMustBeMemberOfOrg, "MustBeMemberOfOrg", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordLabel, "PasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordResetLinkText, "ResetLinkText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordBackButtonText, "BackButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordMinLength, "MinLength", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordHasUppercase, "HasUppercase", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordHasLowercase, "HasLowercase", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordHasNumber, "HasNumber", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordHasSymbol, "HasSymbol", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordConfirmation, "Confirmation", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeUsernameLabel, "UsernameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyUsernameChangeDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordCodeLabel, "CodeLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordNewPasswordLabel, "NewPasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordNewPasswordConfirmLabel, "NewPasswordConfirmLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordResendButtonText, "ResendButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitPasswordDoneCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationCodeLabel, "CodeLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationResendButtonText, "ResendButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyEmailVerificationDoneLoginButtonText, "LoginButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserCodeLabel, "CodeLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserNewPasswordLabel, "NewPasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserNewPasswordConfirmLabel, "NewPasswordConfirmLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserResendButtonText, "ResendButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitializeUserNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitUserDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitUserDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitUserDoneCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitUserDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptOTPOption, "Provider0", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptU2FOption, "Provider1", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptSkipButtonText, "SkipButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAPromptNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPDescriptionOTP, "OTPDescription", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPSecretLabel, "SecretLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPCodeLabel, "CodeLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAOTPCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FTokenNameLabel, "TokenNameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FRegisterTokenButtonText, "RegisterTokenButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FNotSupported, "NotSupported", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFAU2FErrorRetry, "ErrorRetry", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFADoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFADoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFADoneCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyInitMFADoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyMFAProvidersChooseOther, "ChooseOther", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyMFAProvidersOTP, "Provider0", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyMFAProvidersU2F, "Provider1", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAOTPTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAOTPDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAOTPCodeLabel, "CodeLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAOTPNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FValidateTokenText, "ValidateTokenButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FNotSupported, "NotSupported", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyVerifyMFAU2FErrorRetry, "ErrorRetry", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessLoginWithPwButtonText, "LoginWithPwButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessValidateTokenButtonText, "ValidateTokenButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessNotSupported, "NotSupported", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessErrorRetry, "ErrorRetry", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
2021-08-11 13:50:03 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptTitle, "Title", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptDescription, "Description", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptDescriptionInit, "DescriptionInit", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptPasswordlessButtonText, "PasswordlessButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptNextButtonText, "NextButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessPromptSkipButtonText, "SkipButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationTitle, "Title", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDescription, "Description", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationRegisterTokenButtonText, "RegisterTokenButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationTokenNameLabel, "TokenNameLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationNotSupported, "NotSupported", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationErrorRetry, "ErrorRetry", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneTitle, "Title", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneDescription, "Description", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
2021-10-04 16:19:21 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneDescriptionClose, "DescriptionClose", language.English,
|
2021-10-04 16:19:21 +02:00
|
|
|
),
|
|
|
|
),
|
2021-08-11 13:50:03 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneNextButtonText, "NextButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordlessRegistrationDoneCancelButtonText, "CancelButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
2021-07-05 15:10:49 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeOldPasswordLabel, "OldPasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeNewPasswordLabel, "NewPasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeNewPasswordConfirmLabel, "NewPasswordConfirmLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordChangeDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordResetDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordResetDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyPasswordResetDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationOptionTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationOptionDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationOptionUserNameButtonText, "RegisterUsernamePasswordButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationOptionExternalLoginDescription, "ExternalLoginDescription", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserDescriptionOrgRegister, "DescriptionOrgRegister", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserFirstnameLabel, "FirstnameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserLastnameLabel, "LastnameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserEmailLabel, "EmailLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserUsernameLabel, "UsernameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserLanguageLabel, "LanguageLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserGenderLabel, "GenderLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserPasswordLabel, "PasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserPasswordConfirmLabel, "PasswordConfirmLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTOSAndPrivacyLabel, "TOSAndPrivacyLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTOSConfirm, "TOSConfirm", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTOSLinkText, "TOSLinkText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserTOSConfirmAnd, "TOSConfirmAnd", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserPrivacyLinkText, "PrivacyLinkText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegistrationUserBackButtonText, "BackButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
2021-08-11 13:50:03 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTitle, "Title", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewDescription, "Description", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewEmailLabel, "EmailLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewUsernameLabel, "UsernameLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewFirstnameLabel, "FirstnameLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewLastnameLabel, "LastnameLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewNicknameLabel, "NicknameLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewLanguageLabel, "LanguageLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewPhoneLabel, "PhoneLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTOSAndPrivacyLabel, "TOSAndPrivacyLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTOSConfirm, "TOSConfirm", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTOSLinkText, "TOSLinkText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewTOSConfirmAnd, "TOSConfirmAnd", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewPrivacyLinkText, "PrivacyLinkText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewBackButtonText, "BackButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalRegistrationUserOverviewNextButtonText, "NextButtonText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
2021-07-05 15:10:49 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgOrgNameLabel, "OrgNameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgFirstnameLabel, "FirstnameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgLastnameLabel, "LastnameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgUsernameLabel, "UsernameLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgEmailLabel, "EmailLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgPasswordLabel, "PasswordLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgPasswordConfirmLabel, "PasswordConfirmLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTOSAndPrivacyLabel, "TOSAndPrivacyLabel", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTOSConfirm, "TOSConfirm", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTOSLinkText, "TOSLinkText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgTosConfirmAnd, "TOSConfirmAnd", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgPrivacyLinkText, "PrivacyLinkText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyRegisterOrgSaveButtonText, "SaveButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLinkingUserDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLinkingUserDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLinkingUserDoneCancelButtonText, "CancelButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLinkingUserDoneNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundLinkButtonText, "LinkButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundAutoRegisterButtonText, "AutoRegisterButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
2021-08-11 13:50:03 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTOSAndPrivacyLabel, "TOSAndPrivacyLabel", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTOSConfirm, "TOSConfirm", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTOSLinkText, "TOSLinkText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundTOSConfirmAnd, "TOSConfirmAnd", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyExternalNotFoundPrivacyLinkText, "PrivacyLinkText", language.English,
|
2021-08-11 13:50:03 +02:00
|
|
|
),
|
|
|
|
),
|
2021-07-05 15:10:49 +02:00
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySuccessLoginTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySuccessLoginAutoRedirectDescription, "AutoRedirectDescription", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySuccessLoginRedirectedDescription, "RedirectedDescription", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeySuccessLoginNextButtonText, "NextButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLogoutDoneTitle, "Title", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLogoutDoneDescription, "Description", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyLogoutDoneLoginButtonText, "LoginButtonText", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyFooterTOS, "TOS", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyFooterPrivacyPolicy, "PrivacyPolicy", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
eventFromEventPusher(
|
|
|
|
org.NewCustomTextSetEvent(context.Background(),
|
2022-04-20 16:59:37 +02:00
|
|
|
&org.NewAggregate("org1").Aggregate, domain.LoginCustomText, domain.LoginKeyFooterHelp, "Help", language.English,
|
2021-07-05 15:10:49 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
),
|
|
|
|
),
|
|
|
|
},
|
|
|
|
args: args{
|
|
|
|
ctx: context.Background(),
|
|
|
|
resourceOwner: "org1",
|
|
|
|
config: &domain.CustomLoginText{
|
|
|
|
Language: language.English,
|
|
|
|
SelectAccount: domain.SelectAccountScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
TitleLinking: "TitleLinking",
|
|
|
|
DescriptionLinking: "DescriptionLinking",
|
|
|
|
OtherUser: "OtherUser",
|
|
|
|
SessionState0: "SessionState0",
|
|
|
|
SessionState1: "SessionState1",
|
|
|
|
MustBeMemberOfOrg: "MustBeMemberOfOrg",
|
|
|
|
},
|
|
|
|
Login: domain.LoginScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
TitleLinking: "TitleLinking",
|
|
|
|
DescriptionLinking: "DescriptionLinking",
|
|
|
|
LoginNameLabel: "LoginNameLabel",
|
|
|
|
UsernamePlaceholder: "UsernamePlaceholder",
|
|
|
|
LoginnamePlaceholder: "LoginnamePlaceholder",
|
|
|
|
RegisterButtonText: "RegisterButtonText",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
ExternalUserDescription: "ExternalUserDescription",
|
|
|
|
MustBeMemberOfOrg: "MustBeMemberOfOrg",
|
|
|
|
},
|
|
|
|
Password: domain.PasswordScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
PasswordLabel: "PasswordLabel",
|
|
|
|
ResetLinkText: "ResetLinkText",
|
|
|
|
BackButtonText: "BackButtonText",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
MinLength: "MinLength",
|
|
|
|
HasUppercase: "HasUppercase",
|
|
|
|
HasLowercase: "HasLowercase",
|
|
|
|
HasNumber: "HasNumber",
|
|
|
|
HasSymbol: "HasSymbol",
|
|
|
|
Confirmation: "Confirmation",
|
|
|
|
},
|
|
|
|
UsernameChange: domain.UsernameChangeScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
UsernameLabel: "UsernameLabel",
|
|
|
|
CancelButtonText: "CancelButtonText",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
},
|
|
|
|
UsernameChangeDone: domain.UsernameChangeDoneScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
},
|
|
|
|
InitPassword: domain.InitPasswordScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
CodeLabel: "CodeLabel",
|
|
|
|
NewPasswordLabel: "NewPasswordLabel",
|
|
|
|
NewPasswordConfirmLabel: "NewPasswordConfirmLabel",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
ResendButtonText: "ResendButtonText",
|
|
|
|
},
|
|
|
|
InitPasswordDone: domain.InitPasswordDoneScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
CancelButtonText: "CancelButtonText",
|
|
|
|
},
|
|
|
|
EmailVerification: domain.EmailVerificationScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
CodeLabel: "CodeLabel",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
ResendButtonText: "ResendButtonText",
|
|
|
|
},
|
|
|
|
EmailVerificationDone: domain.EmailVerificationDoneScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
CancelButtonText: "CancelButtonText",
|
|
|
|
LoginButtonText: "LoginButtonText",
|
|
|
|
},
|
|
|
|
InitUser: domain.InitializeUserScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
CodeLabel: "CodeLabel",
|
|
|
|
NewPasswordLabel: "NewPasswordLabel",
|
|
|
|
NewPasswordConfirmLabel: "NewPasswordConfirmLabel",
|
|
|
|
ResendButtonText: "ResendButtonText",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
},
|
|
|
|
InitUserDone: domain.InitializeUserDoneScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
CancelButtonText: "CancelButtonText",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
},
|
|
|
|
InitMFAPrompt: domain.InitMFAPromptScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
Provider0: "Provider0",
|
|
|
|
Provider1: "Provider1",
|
|
|
|
SkipButtonText: "SkipButtonText",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
},
|
|
|
|
InitMFAOTP: domain.InitMFAOTPScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
OTPDescription: "OTPDescription",
|
|
|
|
SecretLabel: "SecretLabel",
|
|
|
|
CodeLabel: "CodeLabel",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
CancelButtonText: "CancelButtonText",
|
|
|
|
},
|
|
|
|
InitMFAU2F: domain.InitMFAU2FScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
TokenNameLabel: "TokenNameLabel",
|
|
|
|
RegisterTokenButtonText: "RegisterTokenButtonText",
|
|
|
|
NotSupported: "NotSupported",
|
|
|
|
ErrorRetry: "ErrorRetry",
|
|
|
|
},
|
|
|
|
InitMFADone: domain.InitMFADoneScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
CancelButtonText: "CancelButtonText",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
},
|
|
|
|
MFAProvider: domain.MFAProvidersText{
|
|
|
|
ChooseOther: "ChooseOther",
|
|
|
|
Provider0: "Provider0",
|
|
|
|
Provider1: "Provider1",
|
|
|
|
},
|
|
|
|
VerifyMFAOTP: domain.VerifyMFAOTPScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
CodeLabel: "CodeLabel",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
},
|
|
|
|
VerifyMFAU2F: domain.VerifyMFAU2FScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
ValidateTokenButtonText: "ValidateTokenButtonText",
|
|
|
|
NotSupported: "NotSupported",
|
|
|
|
ErrorRetry: "ErrorRetry",
|
|
|
|
},
|
|
|
|
Passwordless: domain.PasswordlessScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
LoginWithPwButtonText: "LoginWithPwButtonText",
|
|
|
|
ValidateTokenButtonText: "ValidateTokenButtonText",
|
|
|
|
NotSupported: "NotSupported",
|
|
|
|
ErrorRetry: "ErrorRetry",
|
|
|
|
},
|
2021-08-11 13:50:03 +02:00
|
|
|
PasswordlessPrompt: domain.PasswordlessPromptScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
DescriptionInit: "DescriptionInit",
|
|
|
|
PasswordlessButtonText: "PasswordlessButtonText",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
SkipButtonText: "SkipButtonText",
|
|
|
|
},
|
|
|
|
PasswordlessRegistration: domain.PasswordlessRegistrationScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
RegisterTokenButtonText: "RegisterTokenButtonText",
|
|
|
|
TokenNameLabel: "TokenNameLabel",
|
|
|
|
NotSupported: "NotSupported",
|
|
|
|
ErrorRetry: "ErrorRetry",
|
|
|
|
},
|
|
|
|
PasswordlessRegistrationDone: domain.PasswordlessRegistrationDoneScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
2021-10-04 16:19:21 +02:00
|
|
|
DescriptionClose: "DescriptionClose",
|
2021-08-11 13:50:03 +02:00
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
CancelButtonText: "CancelButtonText",
|
|
|
|
},
|
2021-07-05 15:10:49 +02:00
|
|
|
PasswordChange: domain.PasswordChangeScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
OldPasswordLabel: "OldPasswordLabel",
|
|
|
|
NewPasswordLabel: "NewPasswordLabel",
|
|
|
|
NewPasswordConfirmLabel: "NewPasswordConfirmLabel",
|
|
|
|
CancelButtonText: "CancelButtonText",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
},
|
|
|
|
PasswordChangeDone: domain.PasswordChangeDoneScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
},
|
|
|
|
PasswordResetDone: domain.PasswordResetDoneScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
},
|
|
|
|
RegisterOption: domain.RegistrationOptionScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
RegisterUsernamePasswordButtonText: "RegisterUsernamePasswordButtonText",
|
|
|
|
ExternalLoginDescription: "ExternalLoginDescription",
|
|
|
|
},
|
|
|
|
RegistrationUser: domain.RegistrationUserScreenText{
|
feat(console): message and login texts, privacy policy (#2016)
* message texts wrapper components
* message-text sub, i18n, grid
* fix routing
* pack
* pack
* update material
* audit
* fix mgmt service for labelplcy
* map conv
* edit text from map
* request map
* fetch data, mgmt admin service
* warn box, i18n
* resetbtn
* login texts
* login text requests
* reset, default, i18n
* disabled, features, message text setter, service
* locale switcher
* policy grid
* password reset, domain claimed i18n
* lint files
* fix admin service, i18n, lang setter
* fix scss duplicate
* privacy policy, cleanup grid, fix message, login texts (#2031)
* policy grid everywhere 🦒
* cleanup home
* log login text request
* patch all data
* refresh toggle
* fix: add dialog for unsaved changes (#2057)
* logintexts dialog
* check for dialog on pairwise operation
* fix: patch value to local state after save
* fix: i18n and custom login texts (#2060)
* fix: i18n and custom login texts
* fix: tos and privacy texts
* fix frontend
* fix: tos and privacy texts and tests
* fix: i18n, tos and privacy texts and tests
* fix frontend maps
* i18n
* add ResetCustomLoginTextToDefault in admin api and fix template remove in handlers
* resetlogintexttodefault
Co-authored-by: Livio Amstutz <livio.a@gmail.com>
2021-07-26 12:44:45 +02:00
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
DescriptionOrgRegister: "DescriptionOrgRegister",
|
|
|
|
FirstnameLabel: "FirstnameLabel",
|
|
|
|
LastnameLabel: "LastnameLabel",
|
|
|
|
EmailLabel: "EmailLabel",
|
|
|
|
UsernameLabel: "UsernameLabel",
|
|
|
|
LanguageLabel: "LanguageLabel",
|
|
|
|
GenderLabel: "GenderLabel",
|
|
|
|
PasswordLabel: "PasswordLabel",
|
|
|
|
PasswordConfirmLabel: "PasswordConfirmLabel",
|
|
|
|
TOSAndPrivacyLabel: "TOSAndPrivacyLabel",
|
|
|
|
TOSConfirm: "TOSConfirm",
|
|
|
|
TOSLinkText: "TOSLinkText",
|
|
|
|
TOSConfirmAnd: "TOSConfirmAnd",
|
|
|
|
PrivacyLinkText: "PrivacyLinkText",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
BackButtonText: "BackButtonText",
|
2021-07-05 15:10:49 +02:00
|
|
|
},
|
2021-08-11 13:50:03 +02:00
|
|
|
ExternalRegistrationUserOverview: domain.ExternalRegistrationUserOverviewScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
EmailLabel: "EmailLabel",
|
|
|
|
UsernameLabel: "UsernameLabel",
|
|
|
|
FirstnameLabel: "FirstnameLabel",
|
|
|
|
LastnameLabel: "LastnameLabel",
|
|
|
|
NicknameLabel: "NicknameLabel",
|
|
|
|
LanguageLabel: "LanguageLabel",
|
|
|
|
PhoneLabel: "PhoneLabel",
|
|
|
|
TOSAndPrivacyLabel: "TOSAndPrivacyLabel",
|
|
|
|
TOSConfirm: "TOSConfirm",
|
|
|
|
TOSLinkText: "TOSLinkText",
|
|
|
|
TOSConfirmAnd: "TOSConfirmAnd",
|
|
|
|
PrivacyLinkText: "PrivacyLinkText",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
BackButtonText: "BackButtonText",
|
|
|
|
},
|
2021-07-05 15:10:49 +02:00
|
|
|
RegistrationOrg: domain.RegistrationOrgScreenText{
|
feat(console): message and login texts, privacy policy (#2016)
* message texts wrapper components
* message-text sub, i18n, grid
* fix routing
* pack
* pack
* update material
* audit
* fix mgmt service for labelplcy
* map conv
* edit text from map
* request map
* fetch data, mgmt admin service
* warn box, i18n
* resetbtn
* login texts
* login text requests
* reset, default, i18n
* disabled, features, message text setter, service
* locale switcher
* policy grid
* password reset, domain claimed i18n
* lint files
* fix admin service, i18n, lang setter
* fix scss duplicate
* privacy policy, cleanup grid, fix message, login texts (#2031)
* policy grid everywhere 🦒
* cleanup home
* log login text request
* patch all data
* refresh toggle
* fix: add dialog for unsaved changes (#2057)
* logintexts dialog
* check for dialog on pairwise operation
* fix: patch value to local state after save
* fix: i18n and custom login texts (#2060)
* fix: i18n and custom login texts
* fix: tos and privacy texts
* fix frontend
* fix: tos and privacy texts and tests
* fix: i18n, tos and privacy texts and tests
* fix frontend maps
* i18n
* add ResetCustomLoginTextToDefault in admin api and fix template remove in handlers
* resetlogintexttodefault
Co-authored-by: Livio Amstutz <livio.a@gmail.com>
2021-07-26 12:44:45 +02:00
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
OrgNameLabel: "OrgNameLabel",
|
|
|
|
FirstnameLabel: "FirstnameLabel",
|
|
|
|
LastnameLabel: "LastnameLabel",
|
|
|
|
UsernameLabel: "UsernameLabel",
|
|
|
|
EmailLabel: "EmailLabel",
|
|
|
|
PasswordLabel: "PasswordLabel",
|
|
|
|
PasswordConfirmLabel: "PasswordConfirmLabel",
|
|
|
|
TOSAndPrivacyLabel: "TOSAndPrivacyLabel",
|
|
|
|
TOSConfirm: "TOSConfirm",
|
|
|
|
TOSLinkText: "TOSLinkText",
|
|
|
|
TOSConfirmAnd: "TOSConfirmAnd",
|
|
|
|
PrivacyLinkText: "PrivacyLinkText",
|
|
|
|
SaveButtonText: "SaveButtonText",
|
2021-07-05 15:10:49 +02:00
|
|
|
},
|
|
|
|
LinkingUsersDone: domain.LinkingUserDoneScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
CancelButtonText: "CancelButtonText",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
},
|
2022-12-01 12:31:46 +00:00
|
|
|
ExternalNotFound: domain.ExternalUserNotFoundScreenText{
|
2021-07-05 15:10:49 +02:00
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
LinkButtonText: "LinkButtonText",
|
|
|
|
AutoRegisterButtonText: "AutoRegisterButtonText",
|
2021-08-11 13:50:03 +02:00
|
|
|
TOSAndPrivacyLabel: "TOSAndPrivacyLabel",
|
|
|
|
TOSConfirm: "TOSConfirm",
|
|
|
|
TOSLinkText: "TOSLinkText",
|
|
|
|
TOSConfirmAnd: "TOSConfirmAnd",
|
|
|
|
PrivacyLinkText: "PrivacyLinkText",
|
2021-07-05 15:10:49 +02:00
|
|
|
},
|
|
|
|
LoginSuccess: domain.SuccessLoginScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
AutoRedirectDescription: "AutoRedirectDescription",
|
|
|
|
RedirectedDescription: "RedirectedDescription",
|
|
|
|
NextButtonText: "NextButtonText",
|
|
|
|
},
|
|
|
|
LogoutDone: domain.LogoutDoneScreenText{
|
|
|
|
Title: "Title",
|
|
|
|
Description: "Description",
|
|
|
|
LoginButtonText: "LoginButtonText",
|
|
|
|
},
|
|
|
|
Footer: domain.FooterText{
|
feat(console): message and login texts, privacy policy (#2016)
* message texts wrapper components
* message-text sub, i18n, grid
* fix routing
* pack
* pack
* update material
* audit
* fix mgmt service for labelplcy
* map conv
* edit text from map
* request map
* fetch data, mgmt admin service
* warn box, i18n
* resetbtn
* login texts
* login text requests
* reset, default, i18n
* disabled, features, message text setter, service
* locale switcher
* policy grid
* password reset, domain claimed i18n
* lint files
* fix admin service, i18n, lang setter
* fix scss duplicate
* privacy policy, cleanup grid, fix message, login texts (#2031)
* policy grid everywhere 🦒
* cleanup home
* log login text request
* patch all data
* refresh toggle
* fix: add dialog for unsaved changes (#2057)
* logintexts dialog
* check for dialog on pairwise operation
* fix: patch value to local state after save
* fix: i18n and custom login texts (#2060)
* fix: i18n and custom login texts
* fix: tos and privacy texts
* fix frontend
* fix: tos and privacy texts and tests
* fix: i18n, tos and privacy texts and tests
* fix frontend maps
* i18n
* add ResetCustomLoginTextToDefault in admin api and fix template remove in handlers
* resetlogintexttodefault
Co-authored-by: Livio Amstutz <livio.a@gmail.com>
2021-07-26 12:44:45 +02:00
|
|
|
TOS: "TOS",
|
|
|
|
PrivacyPolicy: "PrivacyPolicy",
|
|
|
|
Help: "Help",
|
2021-07-05 15:10:49 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
res: res{
|
|
|
|
want: &domain.ObjectDetails{
|
|
|
|
ResourceOwner: "org1",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
r := &Commands{
|
|
|
|
eventstore: tt.fields.eventstore,
|
|
|
|
}
|
|
|
|
got, err := r.SetOrgLoginText(tt.args.ctx, tt.args.resourceOwner, tt.args.config)
|
|
|
|
if tt.res.err == nil {
|
|
|
|
assert.NoError(t, err)
|
|
|
|
}
|
|
|
|
if tt.res.err != nil && !tt.res.err(err) {
|
|
|
|
t.Errorf("got wrong err: %v ", err)
|
|
|
|
}
|
|
|
|
if tt.res.err == nil {
|
|
|
|
assert.Equal(t, tt.res.want, got)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|