Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CLDR-17432 Fix markup bug #3551

Merged
merged 2 commits into from
Mar 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/ldml/tr35.md
Original file line number Diff line number Diff line change
Expand Up @@ -1772,7 +1772,7 @@ _Examples:_
When the component does not occur, that is referred to as the ‘main’ component.
Otherwise the component value typically corresponds to an element and its children, such as ‘collations’ or ‘plurals’.

The basic inheritance model for locales of the form <lang>_<script>_<region>_<variant1>_…<variantN> is to truncate from the end. That is,
The basic inheritance model for locales of the form `lang_script_region_variant1_…variantN` is to truncate from the end. That is,
remove the _u and _t extensions, then remove the last _ and following tag, then restore the extensions.

For example
Expand All @@ -1796,7 +1796,7 @@ Thus there are two cases where the truncation inheritance needs to be overridden
The `parentLocale` element is used to override the normal inheritance when accessing CLDR data.

For case 1, there is a special attribute and value, `localeRules="nonlikelyScript"`,
which specifies **all locales** of the form <lang>_<script>, wherever the <script> is **not** the likely script for <lang>.
which specifies **all locales** of the form `lang_script`, wherever the `script` is **not** the likely script for `lang`.
For migration, the previous short list of locales (a subset of the nonlikelyScript locales) is retained,
but those locales are slated for removal in the future.
For example, `ru_Latn` is not included in the short list but is included (programmatically) in the rule.
Expand Down
Loading