Add more character overrides to two Latin locales. (#2499)
* Add more character overrides to `PLK` and `TRK`. * clarification. * clarification.
This commit is contained in:
parent
1ddbccc98c
commit
9d17e38ed9
10 changed files with 79 additions and 47 deletions
|
@ -35,6 +35,8 @@ export const LocalizedForm = {
|
|||
Italic: LinkedGlyphProp("BashkirLocItalic"),
|
||||
},
|
||||
CHU: LinkedGlyphProp("ChuvashLoc"),
|
||||
PLK: LinkedGlyphProp("PolishLoc"),
|
||||
TRK: LinkedGlyphProp("TurkishLoc"),
|
||||
IPPH: LinkedGlyphProp("IPALoc"),
|
||||
};
|
||||
|
||||
|
@ -192,6 +194,8 @@ export const AnyLocalizedForm = {
|
|||
if (LocalizedForm.BSH.Upright.get(glyph)) grs.push(LocalizedForm.BSH.Upright);
|
||||
if (LocalizedForm.BSH.Italic.get(glyph)) grs.push(LocalizedForm.BSH.Italic);
|
||||
if (LocalizedForm.CHU.get(glyph)) grs.push(LocalizedForm.CHU);
|
||||
if (LocalizedForm.PLK.get(glyph)) grs.push(LocalizedForm.PLK);
|
||||
if (LocalizedForm.TRK.get(glyph)) grs.push(LocalizedForm.TRK);
|
||||
if (LocalizedForm.IPPH.get(glyph)) grs.push(LocalizedForm.IPPH);
|
||||
if (grs.length) return grs;
|
||||
return null;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue