0

How come Azure B2C Page Layouts are missing some translations versions newer from 2.0.0? Tested with languages such as Finnish, Estonian, Lithuanian, Polish, all have same issue. Tested with latest templates as well, no difference.

E.g., 2.1.4 is missing translation as in the picture:

enter image description here

Also in pwd reset screen:

enter image description here

I can add manual translations to these, but according to documentation these languages should have full support and they did up until 2.0.0 Page Layout versions.

Jussi Palo
  • 848
  • 9
  • 26

1 Answers1

1

In the doc you linked.

If you are using email verification via Display Control: Verification display control user interface elements

  • but_verify_code Verify code
  • success_send_code_msg Verification code has been sent. Please copy it to the input box below.

If you are using email verification with verified.Email claim: Sign-up and self-asserted pages user interface elements

  • ver_but_verify Verify code
  • ver_sent Verification code has been sent to:

For individual claims like signInName, use the following syntax

    <LocalizedString ElementType="ClaimType" ElementId="signInName" StringId="DisplayName">Email Address</LocalizedString>
    <LocalizedString ElementType="ClaimType" ElementId="signInName" StringId="UserHelpText">Email address that can be used to contact you.</LocalizedString>
    <LocalizedString ElementType="ClaimType" ElementId="signInName" StringId="PatternHelpText">Please enter a valid email address.</LocalizedString>```
Jas Suri - MSFT
  • 10,605
  • 2
  • 10
  • 20
  • Sorry, this is not the question. Question is that although B2C documentation says it would contain all translations e.g., for Finnish, it does not anymore in 2.0.0+ versions and I need to manually add translations for pretty much all languages. Updated my question. – Jussi Palo Apr 23 '21 at 14:39