Skip to content

Commit

Permalink
CLDR-11874: add conversion of subdivisions to json
Browse files Browse the repository at this point in the history
  • Loading branch information
Arjan Mels committed Dec 22, 2024
1 parent ed491cf commit 3b9404d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ enum RunType {
annotations,
annotationsDerived,
bcp47(false, false),
transforms(false, false);
transforms(false, false),
subdivisions(false, true);

private final boolean isTiered;
private final boolean hasLocales;
Expand Down Expand Up @@ -748,6 +749,8 @@ private int convertCldrItems(
outFilename = filename + ".json";
} else if (type == RunType.transforms) {
outFilename = filename + ".json";
} else if (type == RunType.subdivisions) {
outFilename = filename + ".json";
} else if (js.section.equals("other")) {
// If you see other-___.json, it means items that were missing from
// JSON_config_*.txt
Expand Down Expand Up @@ -786,7 +789,8 @@ private int convertCldrItems(
}
} else if (type == RunType.rbnf
|| type == RunType.bcp47
|| type == RunType.transforms) {
|| type == RunType.transforms
|| type == RunType.subdivisions) {
// untiered, just use the name
js.packageName = type.name();
tier = "";
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Processed by LdmlConfigFileReader

# These are earlier in the file to keep the packageDesc in one place.
package=subdivisions ; packageDesc=Translated versions of locale display name elements: subdivisions.

# mapping paths to sections
section=subdivisions ; path=//cldr/subdivisions/[^/]++/localeDisplayNames/subdivisions/.* ; package=subdivisions

# Depedencies
dependency=core ; package=subdivisions

0 comments on commit 3b9404d

Please sign in to comment.