Bug description:
I’ve noticed the following bug for the Chinese Traditional locale zh-TW: code new System.Globalization.CultureInfo("zh-TW").NativeName returns “中文 (台湾)” while it should be “中文 (台灣)” instead. (the last glyph is different)
Note that the suggested change matches the official .NET behavior for this CultureInfo (feel free to check on https://dotnetfiddle.net/ or other util)
Expected result:
new System.Globalization.CultureInfo("zh-TW").NativeName returns “中文 (台灣)”
Current result:
new System.Globalization.CultureInfo("zh-TW").NativeName returns “中文 (台湾)”