-
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ICU is used to: - List locales (`locales_tree`) - Get information about those locales in different languages (`lang_tree`) - Remove accents (`translit`) Tracing ICU without custom data, we also load `likelySubtags` and `metadata`. Not sure why and what happen when missing but let's be conservatives and include them.
- Loading branch information
1 parent
49b28a2
commit e4a600b
Showing
2 changed files
with
47 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"strategy": "additive", | ||
"featureFilters": { | ||
"lang_tree": "include", | ||
"locales_tree": "include", | ||
"translit": "include", | ||
"misc": { | ||
"includelist": [ | ||
"likelySubtags", | ||
"metadata" | ||
] | ||
} | ||
} | ||
} |