aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnna Marie Dirks <anna@ximian.com>2001-08-14 07:21:16 +0800
committerAnna Dirks <anna@src.gnome.org>2001-08-14 07:21:16 +0800
commitd36c3b0e20290acc49e172ce7ed7a50d1b2ec2a8 (patch)
tree4879e69154e0a2e14ffc97d04a8333c82e72ae90
parent9d9a22881ed11744d68d4fecd7fffb2fa5330756 (diff)
downloadgsoc2013-evolution-d36c3b0e20290acc49e172ce7ed7a50d1b2ec2a8.tar
gsoc2013-evolution-d36c3b0e20290acc49e172ce7ed7a50d1b2ec2a8.tar.gz
gsoc2013-evolution-d36c3b0e20290acc49e172ce7ed7a50d1b2ec2a8.tar.bz2
gsoc2013-evolution-d36c3b0e20290acc49e172ce7ed7a50d1b2ec2a8.tar.lz
gsoc2013-evolution-d36c3b0e20290acc49e172ce7ed7a50d1b2ec2a8.tar.xz
gsoc2013-evolution-d36c3b0e20290acc49e172ce7ed7a50d1b2ec2a8.tar.zst
gsoc2013-evolution-d36c3b0e20290acc49e172ce7ed7a50d1b2ec2a8.zip
Changed the "Evolution has found the following data sources" text in the
2001-08-13 Anna Marie Dirks <anna@ximian.com> * importer/intelligent.c : Changed the "Evolution has found the following data sources" text in the import dialog to "Evolution can import data from the following files" in an attempt to increase user-friendliness. svn path=/trunk/; revision=11976
-rw-r--r--shell/ChangeLog10
-rw-r--r--shell/importer/intelligent.c2
2 files changed, 10 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 1ad77d0682..39131cc795 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,11 @@
+2001-08-13 Anna Marie Dirks <anna@ximian.com>
+
+ * importer/intelligent.c : Changed the "Evolution has found the
+ following data sources" text in the import dialog to "Evolution
+ can import data from the following files" in an attempt to
+ increase user-friendliness.
+
+
2001-08-13 Ettore Perazzoli <ettore@ximian.com>
* e-shell-view.c (setup_widgets): Add some little padding to the
@@ -10,7 +18,7 @@
* e-shell.c (e_shell_construct): Connect
`gtk_widget_hide_on_delete()' correctly.
-
+
2001-08-13 Anna Marie Dirks <anna@ximian.com>
* importer/import.glade : Changed all instances of "druid"
diff --git a/shell/importer/intelligent.c b/shell/importer/intelligent.c
index 767a2b862e..28fcd9a00f 100644
--- a/shell/importer/intelligent.c
+++ b/shell/importer/intelligent.c
@@ -206,7 +206,7 @@ create_gui (GList *importers)
d->clist = clist = gtk_clist_new (1);
gtk_clist_set_selection_mode (GTK_CLIST (d->clist), GTK_SELECTION_MULTIPLE);
- label = gtk_label_new (_("Evolution has found the following data sources:"));
+ label = gtk_label_new (_("Evolution can import data from the following files:"));
gtk_misc_set_alignment(GTK_MISC(label), 0, .5);
gtk_box_pack_start (GTK_BOX (GNOME_DIALOG (dialog)->vbox), label,
TRUE, TRUE, 0);