Let BCP 47 tag "mo" fall back to OT tag 'ROM '
This commit is contained in:
parent
a184c5f851
commit
ae9afd9772
|
@ -774,7 +774,6 @@ ot.add_language ('qxr', 'QVI')
|
|||
ot.add_language ('qxt', 'QWH')
|
||||
ot.add_language ('qxw', 'QWH')
|
||||
|
||||
bcp_47.macrolanguages['ro'].remove ('mo')
|
||||
bcp_47.macrolanguages['ro-MD'].add ('mo')
|
||||
|
||||
ot.remove_language_ot ('SYRE')
|
||||
|
@ -1014,6 +1013,8 @@ for initial, items in sorted (complex_tags.items ()):
|
|||
if initial != 'und':
|
||||
continue
|
||||
for lt, tags in items:
|
||||
if not tags:
|
||||
continue
|
||||
if lt.variant in bcp_47.prefixes:
|
||||
expect (next (iter (bcp_47.prefixes[lt.variant])) == lt.language,
|
||||
'%s is not a valid prefix of %s' % (lt.language, lt.variant))
|
||||
|
@ -1048,6 +1049,8 @@ for initial, items in sorted (complex_tags.items ()):
|
|||
continue
|
||||
print (" case '%s':" % initial)
|
||||
for lt, tags in items:
|
||||
if not tags:
|
||||
continue
|
||||
print (' if (', end='')
|
||||
script = lt.script
|
||||
region = lt.region
|
||||
|
|
|
@ -940,6 +940,7 @@ static const LangTag ot_languages[] = {
|
|||
{"mnw", HB_TAG('M','O','N','T')}, /* Mon -> Thailand Mon */
|
||||
{"mnx", HB_TAG_NONE }, /* Manikion != Manx */
|
||||
{"mo", HB_TAG('M','O','L',' ')}, /* Moldavian (retired code) */
|
||||
{"mo", HB_TAG('R','O','M',' ')}, /* Moldavian (retired code) -> Romanian */
|
||||
{"mod", HB_TAG('C','P','P',' ')}, /* Mobilian -> Creoles */
|
||||
/*{"moh", HB_TAG('M','O','H',' ')},*/ /* Mohawk */
|
||||
{"mok", HB_TAG_NONE }, /* Morori != Moksha */
|
||||
|
@ -2623,8 +2624,14 @@ hb_ot_tags_from_complex_language (const char *lang_str,
|
|||
&& subtag_matches (lang_str, limit, "-md"))
|
||||
{
|
||||
/* Romanian; Moldova */
|
||||
tags[0] = HB_TAG('M','O','L',' '); /* Moldavian */
|
||||
*count = 1;
|
||||
unsigned int i;
|
||||
hb_tag_t possible_tags[] = {
|
||||
HB_TAG('M','O','L',' '), /* Moldavian */
|
||||
HB_TAG('R','O','M',' '), /* Romanian */
|
||||
};
|
||||
for (i = 0; i < 2 && i < *count; i++)
|
||||
tags[i] = possible_tags[i];
|
||||
*count = i;
|
||||
return true;
|
||||
}
|
||||
break;
|
||||
|
@ -2930,6 +2937,8 @@ hb_ot_ambiguous_tag_to_language (hb_tag_t tag)
|
|||
return hb_language_from_string ("qwh", -1); /* Huaylas Ancash Quechua */
|
||||
case HB_TAG('R','A','J',' '): /* Rajasthani */
|
||||
return hb_language_from_string ("raj", -1); /* Rajasthani [macrolanguage] */
|
||||
case HB_TAG('R','O','M',' '): /* Romanian */
|
||||
return hb_language_from_string ("ro", -1); /* Romanian */
|
||||
case HB_TAG('R','O','Y',' '): /* Romany */
|
||||
return hb_language_from_string ("rom", -1); /* Romany [macrolanguage] */
|
||||
case HB_TAG('S','Q','I',' '): /* Albanian */
|
||||
|
|
Loading…
Reference in New Issue