diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/mail/e-mail-shell-settings.c | 4 | ||||
-rw-r--r-- | modules/mail/em-mailer-prefs.c | 11 |
2 files changed, 13 insertions, 2 deletions
diff --git a/modules/mail/e-mail-shell-settings.c b/modules/mail/e-mail-shell-settings.c index c20f57ce43..1434951b81 100644 --- a/modules/mail/e-mail-shell-settings.c +++ b/modules/mail/e-mail-shell-settings.c @@ -151,6 +151,10 @@ e_mail_shell_settings_init (EShell *shell) "/apps/evolution/mail/display/photo_local"); e_shell_settings_install_property_for_key ( + "mail-show-real-date", + "/apps/evolution/mail/display/show_real_date"); + + e_shell_settings_install_property_for_key ( "mail-prompt-delete-in-vfolder", "/apps/evolution/mail/prompts/delete_in_vfolder"); diff --git a/modules/mail/em-mailer-prefs.c b/modules/mail/em-mailer-prefs.c index f27ec7d04a..45071a1479 100644 --- a/modules/mail/em-mailer-prefs.c +++ b/modules/mail/em-mailer-prefs.c @@ -1143,8 +1143,15 @@ em_mailer_prefs_construct (EMMailerPrefs *prefs, /* date/time format */ table = glade_xml_get_widget (gui, "datetime_format_table"); - e_datetime_format_add_setup_widget (table, 0, "mail", "header", DTFormatKindDateTime, _("Date header:")); - e_datetime_format_add_setup_widget (table, 1, "mail", "table", DTFormatKindDateTime, _("Table column:")); + + e_datetime_format_add_setup_widget (table, 2, "mail", "table", DTFormatKindDateTime, _("_Table column:")); + e_datetime_format_add_setup_widget (table, 0, "mail", "header", DTFormatKindDateTime, _("_Date header:")); + widget = gtk_check_button_new_with_mnemonic (_("Show _original header value")); + gtk_widget_show (widget); + gtk_table_attach ((GtkTable *) table, widget, 0, 3, 1, 2, GTK_EXPAND | GTK_FILL, 0, 12, 0); + e_mutual_binding_new ( + shell_settings, "mail-show-real-date", + widget, "active"); /* Junk prefs */ widget = glade_xml_get_widget (gui, "chkCheckIncomingMail"); |