diff options
author | JP Rosevear <jpr@ximian.com> | 2003-05-31 01:35:10 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2003-05-31 01:35:10 +0800 |
commit | b732aa4bbbc5839669561e2d51403a70029f1725 (patch) | |
tree | f6958c0b3db03af9e78a6fd6feed47bf68b1ac00 /calendar/gui/calendar-model.c | |
parent | 4d6913170ec76ebd227d8261d41c78e5f897c4b2 (diff) | |
download | gsoc2013-evolution-b732aa4bbbc5839669561e2d51403a70029f1725.tar gsoc2013-evolution-b732aa4bbbc5839669561e2d51403a70029f1725.tar.gz gsoc2013-evolution-b732aa4bbbc5839669561e2d51403a70029f1725.tar.bz2 gsoc2013-evolution-b732aa4bbbc5839669561e2d51403a70029f1725.tar.lz gsoc2013-evolution-b732aa4bbbc5839669561e2d51403a70029f1725.tar.xz gsoc2013-evolution-b732aa4bbbc5839669561e2d51403a70029f1725.tar.zst gsoc2013-evolution-b732aa4bbbc5839669561e2d51403a70029f1725.zip |
Fixes #43775
2003-05-29 JP Rosevear <jpr@ximian.com>
Fixes #43775
* gui/weekday-picker.c (get_day_text): calculate the characters to
display correctly
(configure_items): use it
(weekday_picker_style_set): ditto
* gui/print.c (format_date): use e_utf8_strftime
(print_week_view_background): ditto
(print_month_summary): ditto
(range_selector_new): ditto
(print_comp_item): ditto
* gui/itip-utils.c (comp_description): the translation is already
utf8
* gui/e-itip-control.c (write_label_piece): the string is already
in utf8
* gui/e-day-view.c (e_day_view_style_set): use e_utf8_strftime
(e_day_view_recalc_cell_sizes): ditto
* gui/e-day-view-top-item.c (e_day_view_top_item_draw): use
e_utf8_strftime
* gui/e-cell-date-edit-text.c (ecd_get_text): return the
duplicated buffer (its already utf8)
(show_date_warning): use e_utf8_strftime
* gui/calendar-model.c (date_value_to_string): return the
duplicated buffer (its already utf8)
(calendar_model_value_to_string): the translations should already
be in utf8
* gui/calendar-config.c
(calendar_config_locale_supports_12_hour_format): use
e_utf8_strftime
* gui/calendar-commands.c (calendar_set_folder_bar_label): use
e_utf8_strftime
svn path=/trunk/; revision=21355
Diffstat (limited to 'calendar/gui/calendar-model.c')
-rw-r--r-- | calendar/gui/calendar-model.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/calendar/gui/calendar-model.c b/calendar/gui/calendar-model.c index 9ee184cee6..2724a0a19c 100644 --- a/calendar/gui/calendar-model.c +++ b/calendar/gui/calendar-model.c @@ -32,6 +32,7 @@ #include <libgnomeui/gnome-stock-icons.h> #include <libgnome/gnome-i18n.h> #include <gal/widgets/e-unicode.h> +#include <gal/util/e-util.h> #include <e-util/e-time-utils.h> #include <cal-util/timeutil.h> #include "calendar-commands.h" @@ -1677,7 +1678,7 @@ date_value_to_string (ETableModel *etm, const void *value) e_time_format_date_and_time (&tmp_tm, priv->use_24_hour_format, TRUE, FALSE, buffer, sizeof (buffer)); - return g_locale_to_utf8 (buffer, -1, NULL, NULL, NULL); + return g_strdup (buffer); } @@ -1705,17 +1706,17 @@ calendar_model_value_to_string (ETableModel *etm, int col, const void *value) case CAL_COMPONENT_FIELD_ICON: if (GPOINTER_TO_INT (value) == 0) - return g_locale_to_utf8 (_("Normal"), -1, NULL, NULL, NULL); + return _("Normal"); else if (GPOINTER_TO_INT (value) == 1) - return g_locale_to_utf8 (_("Recurring"), -1, NULL, NULL, NULL); + return _("Recurring"); else - return g_locale_to_utf8 (_("Assigned"), -1, NULL, NULL, NULL); + return _("Assigned"); case CAL_COMPONENT_FIELD_HAS_ALARMS: case CAL_COMPONENT_FIELD_COMPLETE: case CAL_COMPONENT_FIELD_RECURRING: case CAL_COMPONENT_FIELD_OVERDUE: - return g_locale_to_utf8 (value ? _("Yes") : _("No"), -1, NULL, NULL, NULL); + return value ? _("Yes") : _("No"); case CAL_COMPONENT_FIELD_COLOR: return NULL; |