aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-tasks.c
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@ximian.com>2003-07-14 03:29:41 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2003-07-14 03:29:41 +0800
commite5ec3be0a33af4efc460d93ce0d9ad4642bbb27b (patch)
tree8f75f9b0d0501dcb6fbfdb6a698544e6ce87e586 /calendar/gui/e-tasks.c
parent9cafe346c61294495cc42a8124257469e28c6879 (diff)
downloadgsoc2013-evolution-e5ec3be0a33af4efc460d93ce0d9ad4642bbb27b.tar
gsoc2013-evolution-e5ec3be0a33af4efc460d93ce0d9ad4642bbb27b.tar.gz
gsoc2013-evolution-e5ec3be0a33af4efc460d93ce0d9ad4642bbb27b.tar.bz2
gsoc2013-evolution-e5ec3be0a33af4efc460d93ce0d9ad4642bbb27b.tar.lz
gsoc2013-evolution-e5ec3be0a33af4efc460d93ce0d9ad4642bbb27b.tar.xz
gsoc2013-evolution-e5ec3be0a33af4efc460d93ce0d9ad4642bbb27b.tar.zst
gsoc2013-evolution-e5ec3be0a33af4efc460d93ce0d9ad4642bbb27b.zip
Changed the "URL:" label to "_Web Page:". Added a widget name to the URL
2003-07-11 Federico Mena Quintero <federico@ximian.com> * gui/dialogs/task-details-page.glade: Changed the "URL:" label to "_Web Page:". Added a widget name to the URL label so that we can hook up its mnemonic by hand. Added underlines to the "% Complete:" and "Date Completed:" labels. Added a widget name to the date completed label, also so that we can hook up its mnemonic. * gui/dialogs/task-details-page.c (get_widgets): Get the url_label and date_completed_label as well. (init_widgets): Set the mnemonic widgets of the url_label and the date_completed_label by hand, as their respective widgets are not created by libglade. * gui/e-calendar-table.c (tasks_popup_menu): Added an item for "Open Web Page". (e_calendar_table_show_popup_menu): Disable the aforementioned menu item if the selected task doesn't have the URL property set. (open_url_cb): New callback. * gui/e-tasks.c (write_html): Make the HTML say "Web Page:" instead of "URL:". svn path=/trunk/; revision=21805
Diffstat (limited to 'calendar/gui/e-tasks.c')
-rw-r--r--calendar/gui/e-tasks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/e-tasks.c b/calendar/gui/e-tasks.c
index d6965d8b5e..d0a0873195 100644
--- a/calendar/gui/e-tasks.c
+++ b/calendar/gui/e-tasks.c
@@ -318,7 +318,7 @@ write_html (GtkHTMLStream *stream, CalComponent *comp)
gtk_html_stream_printf (stream, "<TD></TD></TR>");
/* URL */
- gtk_html_stream_printf (stream, "<TR><TD VALIGN=\"TOP\" ALIGN=\"RIGHT\"><B>%s</B></TD>", _("URL:"));
+ gtk_html_stream_printf (stream, "<TR><TD VALIGN=\"TOP\" ALIGN=\"RIGHT\"><B>%s</B></TD>", _("Web Page:"));
cal_component_get_url (comp, (const char **) &str);
if (str)
gtk_html_stream_printf (stream, "<TD><A HREF=\"%s\">%s</A></TD></TR>", str, str);