Azure ad b2c 无法翻译Azure AD B2C IEF中的登录页

Azure ad b2c 无法翻译Azure AD B2C IEF中的登录页,azure-ad-b2c,identity-experience-framework,Azure Ad B2c,Identity Experience Framework,最近想把我们的定制签名政策翻译成意大利语 我们可以定制用户界面,翻译大多数文本。但是,我们无法修改“电子邮件”和“密码”翻译。电子邮件声明在其他策略(如密码重置)中翻译得很好 我们尝试了各种索赔名称,但没有成功(签名名、电子邮件、密码等)。德语的翻译也不起作用 <UserJourney Id="SignUpOrSignIn"> <OrchestrationSteps> <OrchestrationStep Order="1" Type="

最近想把我们的定制签名政策翻译成意大利语

我们可以定制用户界面,翻译大多数文本。但是,我们无法修改“电子邮件”和“密码”翻译。电子邮件声明在其他策略(如密码重置)中翻译得很好

我们尝试了各种索赔名称,但没有成功(签名名、电子邮件、密码等)。德语的翻译也不起作用

 <UserJourney Id="SignUpOrSignIn">
  <OrchestrationSteps>
    <OrchestrationStep Order="1" 
      Type="CombinedSignInAndSignUp" 
      ContentDefinitionReferenceId="api.signuporsignin">

...

 <ContentDefinition Id="api.signuporsignin">
    <LoadUri>our_custom_ui</LoadUri>
    <RecoveryUri>~/common/default_page_error.html</RecoveryUri>
    <DataUri>urn:com:microsoft:aad:b2c:elements:unifiedssp:1.0.0</DataUri>
    <Metadata>
      <Item Key="DisplayName">Signin and Signup</Item>
    </Metadata>
    <LocalizedResourcesReferences>
      <LocalizedResourcesReference Language="de" 
        LocalizedResourcesReferenceId="de" />
      <LocalizedResourcesReference Language="en" 
        LocalizedResourcesReferenceId="en" />
      <LocalizedResourcesReference Language="it" 
        LocalizedResourcesReferenceId="it" />
    </LocalizedResourcesReferences>
  </ContentDefinition>

...

 <Localization>
  <SupportedLanguages DefaultLanguage="en">
    <SupportedLanguage>en</SupportedLanguage>
    <SupportedLanguage>de</SupportedLanguage>
    <SupportedLanguage>it</SupportedLanguage>
  </SupportedLanguages>
  <LocalizedResources Id="it">
    <LocalizedStrings>
      <LocalizedString ElementType="ClaimType" 
        ElementId="email" 
        StringId="DisplayName">Indirizzo e-mail</LocalizedString>
      <LocalizedString ElementType="ClaimType" 
        ElementId="signInName" 
        StringId="DisplayName">Indirizzo e-mail</LocalizedString>
      <LocalizedString ElementType="ClaimType" 
        ElementId="password" 
        StringId="DisplayName">Some dummy text</LocalizedString>

...
我们的客户界面
~/common/default\u page\u error.html
urn:com:microsoft:aad:b2c:elements:unifiedssp:1.0.0
签到
...
EN
判定元件
信息技术
Indirizzo电子邮件
Indirizzo电子邮件
一些虚拟文本
更新: 这是我生成的html

 <div class="entry">
    <div class="entry-item">
      <label for="signInName">
        Indirizzo di posta elettronica
      </label>
      <div class="error itemLevel" aria-hidden="true" style="display: none;">
        <p role="alert"></p>
      </div>
      <input id="signInName" name="Indirizzo e-mail" pattern="^...$" placeholder="Indirizzo di posta elettronica" value="" tabindex="1" type="email">
    </div>
    <div class="entry-item">
      <div class="password-label">
        <label for="password">Password</label>
        <a id="forgotPassword" tabindex="2" href="...">Password dimenticata?</a>
      </div>
      <div class="error itemLevel" aria-hidden="true" style="display: none;">
        <p role="alert"></p>
      </div>
      <input id="password" name="Some dummy text" placeholder="Password" tabindex="1" type="password">
    </div>
    <div class="working"></div>
    <div class="buttons">
      <button id="next" tabindex="1">Accedi</button>
    </div>
  </div>

邮电公司

密码

阿克迪
您必须将
元素添加到
元素:

<BuildingBlocks>
  <Localization>
    <SupportedLanguages DefaultLanguage="en">
      <SupportedLanguage>de</SupportedLanguage>
      <SupportedLanguage>en</SupportedLanguage>
      <SupportedLanguage>it</SupportedLanguage>
    </SupportedLanguages>
  </Localization>
</BuildingBlocks>

判定元件
EN
信息技术

不幸的是,这没有帮助。。。在原始帖子中添加了一些信息