mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-04-03 22:33:08 +02:00
datetime: add fallback logic for AM/PM specifier
When the locale does not provide any string for AM/PM, fallback to the default. https://bugzilla.gnome.org/show_bug.cgi?id=761889
This commit is contained in:
parent
6e192588e0
commit
69e448bc28
@ -2216,6 +2216,9 @@ format_ampm (GDateTime *datetime,
|
|||||||
|
|
||||||
ampm = GET_AMPM (datetime);
|
ampm = GET_AMPM (datetime);
|
||||||
|
|
||||||
|
if (!ampm || ampm[0] == '\0')
|
||||||
|
ampm = get_fallback_ampm (g_date_time_get_hour (datetime));
|
||||||
|
|
||||||
#if defined (HAVE_LANGINFO_TIME)
|
#if defined (HAVE_LANGINFO_TIME)
|
||||||
if (!locale_is_utf8)
|
if (!locale_is_utf8)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user