Hi @Jan-Willem , in your example, you have already set the language.button_continue
metadata item to "Doorgaan". However, you need to make sure that the ContentDefinitionReferenceId
of the self-asserted technical profile that verifies the TOTP is set to the correct value.
<TechnicalProfile Id="Base.MFA.OTPVerification">
<DisplayName>Sign in with Authenticator app</DisplayName>
<Protocol Name="Proprietary" Handler="Web.TPEngine.Providers.SelfAssertedAttributeProvider, Web.TPEngine, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" />
<Metadata>
<Item Key="ContentDefinitionReferenceId">api.selfasserted.totp</Item>
<Item Key="language.button_continue">Doorgaan</Item>
</Metadata>
<!-- etc -->
</TechnicalProfile>
Make sure that the ContentDefinitionReferenceId
is set to api.selfasserted.totp
and the language.button_continue
metadata item is set to the localized string you want to use.
Please let me know if you have any questions and I can help you further.
If this answer helps you please mark "Accept Answer" so other users can reference it.
Thank you,
James