mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 10:31:43 +00:00
[SETUP][BOOTDATA][INF] Add font substitute ('Segoe UI Symbol' to 'Arial') (#6155)
Based on CORE-19346 "segoe-ui-symbo.patch". In order to display gender glyphs (U+2642 and U+2640; ♂ and ♀), we add a font substitute from "Segoe UI Symbol" to "Arial". ReactOS Arial has many symbol glyphs, so I think we can use it for "Segoe UI Symbol" font substitute. The glyph size problem will be fixed in #6156. CORE-19346
This commit is contained in:
parent
a837138dfc
commit
e2b1ee9a53
3 changed files with 17 additions and 0 deletions
|
@ -20,6 +20,7 @@ MUI_SUBFONT LatinFonts[] =
|
|||
{ L"MS Sans Serif", L"Tahoma" },
|
||||
{ L"MS Shell Dlg", L"Tahoma" },
|
||||
{ L"MS Shell Dlg 2", L"Tahoma" },
|
||||
{ L"Segoe UI Symbol", L"Arial" },
|
||||
{ L"System", L"FreeSans" },
|
||||
{ L"Terminal", L"Lucida Console" },
|
||||
{ L"Times", L"Times New Roman" },
|
||||
|
@ -51,6 +52,7 @@ MUI_SUBFONT CyrillicFonts[] =
|
|||
{ L"MS Sans Serif", L"Tahoma" },
|
||||
{ L"MS Shell Dlg", L"Tahoma" },
|
||||
{ L"MS Shell Dlg 2", L"Tahoma" },
|
||||
{ L"Segoe UI Symbol", L"Arial" },
|
||||
{ L"System", L"FreeSans" },
|
||||
{ L"Terminal", L"Lucida Console" },
|
||||
{ L"Times", L"Times New Roman" },
|
||||
|
@ -82,6 +84,7 @@ MUI_SUBFONT GreekFonts[] =
|
|||
{ L"MS Sans Serif", L"Tahoma" },
|
||||
{ L"MS Shell Dlg", L"Tahoma" },
|
||||
{ L"MS Shell Dlg 2", L"Tahoma" },
|
||||
{ L"Segoe UI Symbol", L"Arial" },
|
||||
{ L"System", L"FreeSans" },
|
||||
{ L"Terminal", L"Lucida Console" },
|
||||
{ L"Times", L"Times New Roman" },
|
||||
|
@ -113,6 +116,7 @@ MUI_SUBFONT HebrewFonts[] =
|
|||
{ L"MS Sans Serif", L"Tahoma" },
|
||||
{ L"MS Shell Dlg", L"Tahoma" },
|
||||
{ L"MS Shell Dlg 2", L"Tahoma" },
|
||||
{ L"Segoe UI Symbol", L"Arial" },
|
||||
{ L"System", L"FreeSans" },
|
||||
{ L"Terminal", L"Courier New" },
|
||||
{ L"Times", L"Times New Roman" },
|
||||
|
@ -154,6 +158,7 @@ MUI_SUBFONT ChineseSimplifiedFonts[] =
|
|||
{ L"MS UI Gothic", L"Droid Sans Fallback" },
|
||||
{ L"MS UI Gothic 2", L"Droid Sans Fallback" },
|
||||
{ L"NSimSun", L"Droid Sans Fallback" },
|
||||
{ L"Segoe UI Symbol", L"Arial" },
|
||||
{ L"SimHei", L"Droid Sans Fallback" },
|
||||
{ L"SimSun", L"Droid Sans Fallback" },
|
||||
{ L"Source Sans Pro", L"Droid Sans Fallback" },
|
||||
|
@ -208,6 +213,7 @@ MUI_SUBFONT ChineseTraditionalFonts[] =
|
|||
{ L"Ming Light", L"Droid Sans Fallback" },
|
||||
{ L"MingLiU", L"Droid Sans Fallback" },
|
||||
{ L"PMingLiU", L"Droid Sans Fallback" },
|
||||
{ L"Segoe UI Symbol", L"Arial" },
|
||||
{ L"Source Sans Pro", L"Droid Sans Fallback" },
|
||||
{ L"System", L"Droid Sans Fallback" },
|
||||
{ L"Tahoma", L"Droid Sans Fallback" },
|
||||
|
@ -258,6 +264,7 @@ MUI_SUBFONT JapaneseFonts[] =
|
|||
{ L"MS Shell Dlg 2", L"Droid Sans Fallback" },
|
||||
{ L"MS UI Gothic", L"Droid Sans Fallback" },
|
||||
{ L"MS UI Gothic 2", L"Droid Sans Fallback" },
|
||||
{ L"Segoe UI Symbol", L"Arial" },
|
||||
{ L"Source Sans Pro", L"Droid Sans Fallback" },
|
||||
{ L"System", L"Droid Sans Fallback" },
|
||||
{ L"Tahoma", L"Droid Sans Fallback" },
|
||||
|
@ -312,6 +319,7 @@ MUI_SUBFONT KoreanFonts[] =
|
|||
{ L"MS Shell Dlg 2", L"Droid Sans Fallback" },
|
||||
{ L"MS UI Gothic", L"Droid Sans Fallback" },
|
||||
{ L"MS UI Gothic 2", L"Droid Sans Fallback" },
|
||||
{ L"Segoe UI Symbol", L"Arial" },
|
||||
{ L"Source Sans Pro", L"Droid Sans Fallback" },
|
||||
{ L"System", L"Droid Sans Fallback" },
|
||||
{ L"Tahoma", L"Droid Sans Fallback" },
|
||||
|
@ -349,6 +357,7 @@ MUI_SUBFONT UnicodeFonts[] =
|
|||
{ L"Courier New TUR,162", L"Courier New,162" },
|
||||
{ L"Fixedsys", L"Fixedsys Excelsior 3.01-L2" },
|
||||
{ L"Helvetica", L"Arial" },
|
||||
{ L"Segoe UI Symbol", L"Arial" },
|
||||
{ L"System", L"FreeSans" },
|
||||
{ L"Terminal", L"Courier New" },
|
||||
{ L"Times", L"Times New Roman" },
|
||||
|
@ -382,6 +391,7 @@ MUI_SUBFONT HindiFonts[] =
|
|||
{ L"MS Shell Dlg", L"FreeSans" },
|
||||
{ L"MS Shell Dlg 2", L"FreeSans" },
|
||||
{ L"Palatino Linotype", L"FreeSans" },
|
||||
{ L"Segoe UI Symbol", L"Arial" },
|
||||
{ L"System", L"FreeSans" },
|
||||
{ L"Tahoma", L"FreeSans" },
|
||||
{ L"Terminal", L"Lucida Console" },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue