diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-04-24 00:28:01 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-04-24 00:28:01 +0200 |
commit | b5e7acf641d4ef3538803b746723b90a822ea1ad (patch) | |
tree | 08cde8ff2d9db97507b00726b15831b2417fa5e1 /include/unicode | |
parent | 3b797a5f3ce1d77fa7d0ed991b52553c1b3e8757 (diff) |
Support titlecasing Dutch ‘IJ’ properly
Diffstat (limited to 'include/unicode')
-rw-r--r-- | include/unicode/string.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/unicode/string.h b/include/unicode/string.h index cb19821..4b75864 100644 --- a/include/unicode/string.h +++ b/include/unicode/string.h @@ -14,7 +14,8 @@ enum [[clang::flag_enum]] caseflags { CF_LANG_AZ = 1 << 0, /* Azeri; alias for CF_LANG_TR */ CF_LANG_TR = 1 << 0, /* Turkish; alias for CF_LANG_AZ */ CF_LANG_LT = 1 << 1, /* Lithuanian */ - CF_ẞ = 1 << 2, /* Use ‘ẞ’ as the uppercase of ‘ß’ */ + CF_LANG_NL = 1 << 2, /* Dutch */ + CF_ẞ = 1 << 3, /* Use ‘ẞ’ as the uppercase of ‘ß’ */ }; /* clang-format on */ |