Hello!
I have this ClaimType
<ClaimType Id="dateOfBirth">
<DisplayName>Date Of Birth</DisplayName>
<DataType>date</DataType>
<UserHelpText>The date on which you were born.</UserHelpText>
<UserInputType>DateTimeDropdown</UserInputType>
</ClaimType>
And I want to localize the different dropdowns (day, month, year) to Norwegian (dag, måned, år). The best way I can think of do this, by information provided by the documentation is this way:
<LocalizedCollection ElementType="ClaimType" ElementId="dateOfBirth" TargetCollection="Restriction">
<ItemText="Måned" Value="0" />
<ItemText="Januar" Value="1" />
</LocalizedCollection>
But this cant work, since I'm not specifying the month dropdown anywhere.
Would love som feedback on this!
Henrik Lie