g_date_time_format: support %C

%C represents the century number (year/100) as a 2-digit integer

https://bugzilla.gnome.org/show_bug.cgi?id=658061
This commit is contained in:
Javier Jardón 2011-09-02 17:09:07 +01:00 committed by Ryan Lortie
parent 6f80dc6042
commit e975b5b75c

View File

@ -2157,6 +2157,11 @@ get_numeric_format (gchar *fmt,
* the preferred date and time representation for the current locale
* </simpara></listitem></varlistentry>
* <varlistentry><term>
* <literal>%%C</literal>:
* </term><listitem><simpara>
* The century number (year/100) as a 2-digit integer (00-99)
* </simpara></listitem></varlistentry>
* <varlistentry><term>
* <literal>%%d</literal>:
* </term><listitem><simpara>
* the day of the month as a decimal number (range 01 to 31)
@ -2422,6 +2427,9 @@ g_date_time_format (GDateTime *datetime,
g_free (tmp);
}
break;
case 'C':
get_numeric_format (fmt, sizeof(fmt), alt_digits, pad_set ? pad : '0', 2);
g_string_append_printf (outstr, fmt, g_date_time_get_year (datetime) / 100);
case 'd':
get_numeric_format (fmt, sizeof(fmt), alt_digits, pad_set ? pad : '0', 2);
g_string_append_printf (outstr, fmt, g_date_time_get_day_of_month (datetime));