aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution
diff options
context:
space:
mode:
authorIain Holmes <iain@src.gnome.org>2001-08-16 02:10:02 +0800
committerIain Holmes <iain@src.gnome.org>2001-08-16 02:10:02 +0800
commitdf89536d526a82af8fffc98d91366ace946d2b90 (patch)
tree711dc31a174ec7e9114e24274748004ca4f1b221 /my-evolution
parentea623b5543210467497c9bcc68e0adc56c7cf40d (diff)
downloadgsoc2013-evolution-df89536d526a82af8fffc98d91366ace946d2b90.tar
gsoc2013-evolution-df89536d526a82af8fffc98d91366ace946d2b90.tar.gz
gsoc2013-evolution-df89536d526a82af8fffc98d91366ace946d2b90.tar.bz2
gsoc2013-evolution-df89536d526a82af8fffc98d91366ace946d2b90.tar.lz
gsoc2013-evolution-df89536d526a82af8fffc98d91366ace946d2b90.tar.xz
gsoc2013-evolution-df89536d526a82af8fffc98d91366ace946d2b90.tar.zst
gsoc2013-evolution-df89536d526a82af8fffc98d91366ace946d2b90.zip
s/My Evolution/Summary/
svn path=/trunk/; revision=12058
Diffstat (limited to 'my-evolution')
-rw-r--r--my-evolution/ChangeLog8
-rw-r--r--my-evolution/component-factory.c5
-rw-r--r--my-evolution/e-summary-preferences.c2
-rw-r--r--my-evolution/e-summary.c6
4 files changed, 15 insertions, 6 deletions
diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog
index 91493d6a07..daef38524c 100644
--- a/my-evolution/ChangeLog
+++ b/my-evolution/ChangeLog
@@ -1,3 +1,11 @@
+2001-08-15 Iain Holmes <iain@ximian.com>
+
+ * e-summary.c: s/My Evolution/Summary/
+
+ * e-summary-preferences.c: s/My Evolution/Summary/
+
+ * component-factory.c: s/My Evolution/Summary/
+
2001-08-13 Iain Holmes <iain@ximian.com>
* e-summary-weather.c: Set the default weather stations to Boston (boo)
diff --git a/my-evolution/component-factory.c b/my-evolution/component-factory.c
index 659342506f..832042e7c6 100644
--- a/my-evolution/component-factory.c
+++ b/my-evolution/component-factory.c
@@ -27,7 +27,7 @@
static gint running_objects = 0;
static const EvolutionShellComponentFolderType folder_types[] = {
- { "My Evolution", "evolution-today.png", FALSE, NULL, NULL },
+ { "Summary", "evolution-today.png", FALSE, NULL, NULL },
{ NULL, NULL }
};
@@ -48,7 +48,8 @@ create_view (EvolutionShellComponent *shell,
BonoboControl *control;
- if (g_strcasecmp (folder_type, "My Evolution") != 0) {
+ g_print ("folder_type: %s\n", folder_type);
+ if (g_strcasecmp (folder_type, "Summary") != 0) {
return EVOLUTION_SHELL_COMPONENT_UNSUPPORTEDTYPE;
}
diff --git a/my-evolution/e-summary-preferences.c b/my-evolution/e-summary-preferences.c
index d055de9430..5cd7099d36 100644
--- a/my-evolution/e-summary-preferences.c
+++ b/my-evolution/e-summary-preferences.c
@@ -1400,7 +1400,7 @@ e_summary_configure (GtkWidget *widget,
g_return_if_fail (pd->xml != NULL);
pd->box = GNOME_PROPERTY_BOX (glade_xml_get_widget (pd->xml, "dialog1"));
- gtk_window_set_title (GTK_WINDOW (pd->box), _("My Evolution Settings"));
+ gtk_window_set_title (GTK_WINDOW (pd->box), _("Summary Settings"));
if (make_property_dialog (pd) == FALSE) {
g_warning ("Missing some part of XML file");
free_property_dialog (pd);
diff --git a/my-evolution/e-summary.c b/my-evolution/e-summary.c
index dba1e5e0bd..23818019f7 100644
--- a/my-evolution/e-summary.c
+++ b/my-evolution/e-summary.c
@@ -382,7 +382,7 @@ alarm_fn (gpointer alarm_id,
e_summary_reconfigure (summary);
}
-#define DEFAULT_HTML "<html><head><title>My Evolution</title></head><body bgcolor=\"#ffffff\">hello</body></html>"
+#define DEFAULT_HTML "<html><head><title>Summary</title></head><body bgcolor=\"#ffffff\">hello</body></html>"
static void
e_summary_init (ESummary *summary)
@@ -469,7 +469,7 @@ do_summary_print (ESummary *summary,
int collate = FALSE;
if (!preview) {
- gpd = GNOME_PRINT_DIALOG (gnome_print_dialog_new (_("Print My Evolution"), GNOME_PRINT_DIALOG_COPIES));
+ gpd = GNOME_PRINT_DIALOG (gnome_print_dialog_new (_("Print Summary"), GNOME_PRINT_DIALOG_COPIES));
gnome_dialog_set_default (GNOME_DIALOG (gpd), GNOME_PRINT_PRINT);
switch (gnome_dialog_run (GNOME_DIALOG (gpd))) {
@@ -515,7 +515,7 @@ do_summary_print (ESummary *summary,
if (result == -1) {
e_notice (NULL, GNOME_MESSAGE_BOX_ERROR,
- _("Printing of My Evolution failed"));
+ _("Printing of Summary failed"));
}
}