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 | |
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
-rw-r--r-- | calendar/gui/dialogs/cal-prefs-dialog.c | 4 | ||||
-rw-r--r-- | modules/addressbook/autocompletion-config.c | 2 |
2 files changed, 3 insertions, 3 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? */ diff --git a/modules/addressbook/autocompletion-config.c b/modules/addressbook/autocompletion-config.c index 6b51427be1..99a8b9b8ae 100644 --- a/modules/addressbook/autocompletion-config.c +++ b/modules/addressbook/autocompletion-config.c @@ -156,7 +156,7 @@ autocompletion_config_new (EShell *shell) gtk_box_pack_start (GTK_BOX (itembox), widget, TRUE, TRUE, 0); e_datetime_format_add_setup_widget ( widget, 0, "addressbook", "table", - DTFormatKindDateTime, _("Table column:")); + DTFormatKindDateTime, _("_Table column:")); gtk_widget_show (widget); itembox = add_section (vbox, _("Autocompletion"), TRUE); |