aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution
diff options
context:
space:
mode:
authorIain Holmes <iain@src.gnome.org>2001-07-06 07:59:39 +0800
committerIain Holmes <iain@src.gnome.org>2001-07-06 07:59:39 +0800
commit9dd6f8341cfd10406782cff940db767eccee08a3 (patch)
tree7b51d89661267d77e02911ff4d1955eba7cf4cab /my-evolution
parentfec83fec7d71e7f2ef396dc0520cd6713f9809f0 (diff)
downloadgsoc2013-evolution-9dd6f8341cfd10406782cff940db767eccee08a3.tar
gsoc2013-evolution-9dd6f8341cfd10406782cff940db767eccee08a3.tar.gz
gsoc2013-evolution-9dd6f8341cfd10406782cff940db767eccee08a3.tar.bz2
gsoc2013-evolution-9dd6f8341cfd10406782cff940db767eccee08a3.tar.lz
gsoc2013-evolution-9dd6f8341cfd10406782cff940db767eccee08a3.tar.xz
gsoc2013-evolution-9dd6f8341cfd10406782cff940db767eccee08a3.tar.zst
gsoc2013-evolution-9dd6f8341cfd10406782cff940db767eccee08a3.zip
Rename RDF to news feed
svn path=/trunk/; revision=10835
Diffstat (limited to 'my-evolution')
-rw-r--r--my-evolution/ChangeLog5
-rw-r--r--my-evolution/e-summary-preferences.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog
index 4b05a630b4..318d8055af 100644
--- a/my-evolution/ChangeLog
+++ b/my-evolution/ChangeLog
@@ -1,5 +1,10 @@
2001-07-05 Iain Holmes <iain@ximian.com>
+ * e-summary-preferences.c (rdf_new_url_clicked_cb): Change RDF to
+ news feed.
+
+2001-07-05 Iain Holmes <iain@ximian.com>
+
* my-evolution.glade: Replace a table with a vbox so that the text
of the radio buttons can be clicked. Change RDF to News Feed
diff --git a/my-evolution/e-summary-preferences.c b/my-evolution/e-summary-preferences.c
index 5a36b839f8..e134aeb868 100644
--- a/my-evolution/e-summary-preferences.c
+++ b/my-evolution/e-summary-preferences.c
@@ -811,7 +811,7 @@ rdf_new_url_clicked_cb (GtkButton *button,
return;
}
- add_dialog = gnome_dialog_new (_("Add a new RDF"),
+ add_dialog = gnome_dialog_new (_("Add a news feed"),
GNOME_STOCK_BUTTON_OK,
GNOME_STOCK_BUTTON_CANCEL, NULL);
gtk_signal_connect (GTK_OBJECT (add_dialog), "clicked",
@@ -819,7 +819,7 @@ rdf_new_url_clicked_cb (GtkButton *button,
gtk_signal_connect (GTK_OBJECT (add_dialog), "destroy",
GTK_SIGNAL_FUNC (gtk_widget_destroyed), &add_dialog);
- label = gtk_label_new (_("Enter the URL of the RDF file you wish to add"));
+ label = gtk_label_new (_("Enter the URL of the news feed you wish to add"));
gtk_box_pack_start (GTK_BOX (GNOME_DIALOG (add_dialog)->vbox), label,
TRUE, TRUE, 0);
hbox = gtk_hbox_new (FALSE, 2);