mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[SETUPLIB][INPUT.CPL] Move zh-MO to ChineseTraditionalFonts group (#4010)
- The use of Traditional Chinese character is far more than Simplified one according to Wikipedia - The code page used on zh-MO is 950, which is Traditional Chinese's one - zh-MO is described as Traditional Chinese here: https://support.microsoft.com/en-us/windows/microsoft-traditional-chinese-ime-ef596ca5-aff7-4272-b34b-0ac7c2631a38#ID0EBBD=Microsoft_ChangJie/Quick
This commit is contained in:
parent
51e2ab52af
commit
570cedf176
2 changed files with 2 additions and 2 deletions
|
@ -509,7 +509,7 @@ const MUI_LANGUAGE MUILanguageList[] =
|
||||||
{L"00001004", L"936", L"936", L"10008", L"Chinese (Singapore)", L"215", ChineseSimplifiedFonts, zhSGLayouts},
|
{L"00001004", L"936", L"936", L"10008", L"Chinese (Singapore)", L"215", ChineseSimplifiedFonts, zhSGLayouts},
|
||||||
#endif
|
#endif
|
||||||
#ifdef LANGUAGE_ZH_MO
|
#ifdef LANGUAGE_ZH_MO
|
||||||
{L"00001404", L"950", L"950", L"10002", L"Chinese (Macau S.A.R.)", L"151", ChineseSimplifiedFonts, zhMOLayouts},
|
{L"00001404", L"950", L"950", L"10002", L"Chinese (Macau S.A.R.)", L"151", ChineseTraditionalFonts, zhMOLayouts},
|
||||||
#endif
|
#endif
|
||||||
#ifdef LANGUAGE_HR_HR
|
#ifdef LANGUAGE_HR_HR
|
||||||
{L"0000041A", L"1250", L"852", L"10029", L"Croatian", L"108", LatinFonts, hrHRLayouts},
|
{L"0000041A", L"1250", L"852", L"10029", L"Croatian", L"108", LatinFonts, hrHRLayouts},
|
||||||
|
|
|
@ -79,11 +79,11 @@ InputList_SetFontSubstitutes(LCID dwLocaleId)
|
||||||
{
|
{
|
||||||
case SUBLANG_CHINESE_SIMPLIFIED:
|
case SUBLANG_CHINESE_SIMPLIFIED:
|
||||||
case SUBLANG_CHINESE_SINGAPORE:
|
case SUBLANG_CHINESE_SINGAPORE:
|
||||||
case SUBLANG_CHINESE_MACAU:
|
|
||||||
pSubstitutes = ChineseSimplifiedFonts;
|
pSubstitutes = ChineseSimplifiedFonts;
|
||||||
break;
|
break;
|
||||||
case SUBLANG_CHINESE_TRADITIONAL:
|
case SUBLANG_CHINESE_TRADITIONAL:
|
||||||
case SUBLANG_CHINESE_HONGKONG:
|
case SUBLANG_CHINESE_HONGKONG:
|
||||||
|
case SUBLANG_CHINESE_MACAU:
|
||||||
pSubstitutes = ChineseTraditionalFonts;
|
pSubstitutes = ChineseTraditionalFonts;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Reference in a new issue