diff options
author | Timothy Flynn <trflynn89@pm.me> | 2021-12-10 11:59:58 -0500 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-12-10 21:27:24 +0000 |
commit | fa8e881cfa0a517a6a2e08af8aeb930ecef66504 (patch) | |
tree | a1018e0991e1780f66b67eb1f887374e800c86be /Userland/Libraries/LibUnicode/DateTimeFormat.h | |
parent | 76aab821f42d0e660dd0d2c7401d73e7d8479f4e (diff) | |
download | serenity-fa8e881cfa0a517a6a2e08af8aeb930ecef66504.zip |
LibUnicode: Parse and generate secondary day period symbols
Generate morning2, afternoon2, evening2, and night2 symbols.
Diffstat (limited to 'Userland/Libraries/LibUnicode/DateTimeFormat.h')
-rw-r--r-- | Userland/Libraries/LibUnicode/DateTimeFormat.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Userland/Libraries/LibUnicode/DateTimeFormat.h b/Userland/Libraries/LibUnicode/DateTimeFormat.h index b3fdeaa276..4d5b3b05ff 100644 --- a/Userland/Libraries/LibUnicode/DateTimeFormat.h +++ b/Userland/Libraries/LibUnicode/DateTimeFormat.h @@ -49,9 +49,13 @@ enum class DayPeriod : u8 { AM, PM, Morning1, + Morning2, Afternoon1, + Afternoon2, Evening1, + Evening2, Night1, + Night2, }; enum class HourCycle : u8 { |