diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-03-05 22:49:57 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-03-28 06:48:03 +0800 |
commit | 0d44ea680269bc7b6da7eac9e6d4a5c2d6315970 (patch) | |
tree | 18188fc527caa14cfb65ffd27540f8e8191a8474 /calendar/gui | |
parent | a2959194569cdcb948816c0342b439d12d39e2c5 (diff) | |
download | gsoc2013-evolution-0d44ea680269bc7b6da7eac9e6d4a5c2d6315970.tar.gz gsoc2013-evolution-0d44ea680269bc7b6da7eac9e6d4a5c2d6315970.tar.zst gsoc2013-evolution-0d44ea680269bc7b6da7eac9e6d4a5c2d6315970.zip |
BugĀ 611882 - Missing mnemonics in Date/Time format preferences
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/dialogs/cal-prefs-dialog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/dialogs/cal-prefs-dialog.c b/calendar/gui/dialogs/cal-prefs-dialog.c index 5baf22306c..6d204e642b 100644 --- a/calendar/gui/dialogs/cal-prefs-dialog.c +++ b/calendar/gui/dialogs/cal-prefs-dialog.c @@ -782,8 +782,8 @@ calendar_prefs_dialog_construct (CalendarPrefsDialog *prefs, /* date/time format */ table = e_builder_get_widget (prefs->builder, "datetime_format_table"); - e_datetime_format_add_setup_widget (table, 0, "calendar", "table", DTFormatKindDateTime, _("Time and date:")); - e_datetime_format_add_setup_widget (table, 1, "calendar", "table", DTFormatKindDate, _("Date only:")); + e_datetime_format_add_setup_widget (table, 0, "calendar", "table", DTFormatKindDateTime, _("Ti_me and date:")); + e_datetime_format_add_setup_widget (table, 1, "calendar", "table", DTFormatKindDate, _("_Date only:")); show_config (prefs); /* FIXME: weakref? */ |