Problem with Norway Culture
Nobody has claimed this yet.
- Dominant language
- C++
- Stars
- 67
- Forks
- 57
- PR merge metrics
- No merged PRs in 30d
Description
Problem:
The CultureInfo "nb" and "nn" have no parent.
new CultureInfo("nb").Parent / new CultureInfo("nn").Parent return InvariantCulture
Expected:
The CultureInfo "nb" and "nn" have parent "no" .
This is an icu issue and is already fix by following PRs.
https://github.com/unicode-org/cldr/pull/1031
https://github.com/unicode-org/icu/pull/1581
I see MS-ICU 72.1.0.3 contains CLDR 42 so this should be fixed if I use Microsoft.ICU.ICU4C.Runtime 72.1.0.3.
But the actual result is still not fixed.
I added
<ItemGroup>
<PackageReference Include="Microsoft.ICU.ICU4C.Runtime.win-x86" Version="72.1.0.3" />
<RuntimeHostConfigurationOption Include="System.Globalization.AppLocalIcu" Value="72.1.0.3" />
</ItemGroup>
into the csproj file.
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start with the csproj package references for Microsoft.ICU.ICU4C.Runtime.win-x86 72.1.0.3 and the System.Globalization.AppLocalIcu setting. Compare the reported CultureInfo behavior for "nb" and "nn" with the CLDR 1031 and ICU 1581 changes. Done means both cultures return "no" as their parent when using the specified runtime.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- cpp, csharp
- Domain
- internationalization
- Issue type
- Bug
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 35/100