aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/print.c
diff options
context:
space:
mode:
authorDamon Chaplin <damon@ximian.com>2001-07-26 06:15:16 +0800
committerDamon Chaplin <damon@src.gnome.org>2001-07-26 06:15:16 +0800
commitf7af48b5a97a7db7551f66f5b41c75c7c5bb3418 (patch)
treefe0b448fbc1e66f9ace22cc0fb6e6a601c247000 /calendar/gui/print.c
parentd3a3d549362915a4a52e5eceac491152b6671b91 (diff)
downloadgsoc2013-evolution-f7af48b5a97a7db7551f66f5b41c75c7c5bb3418.tar
gsoc2013-evolution-f7af48b5a97a7db7551f66f5b41c75c7c5bb3418.tar.gz
gsoc2013-evolution-f7af48b5a97a7db7551f66f5b41c75c7c5bb3418.tar.bz2
gsoc2013-evolution-f7af48b5a97a7db7551f66f5b41c75c7c5bb3418.tar.lz
gsoc2013-evolution-f7af48b5a97a7db7551f66f5b41c75c7c5bb3418.tar.xz
gsoc2013-evolution-f7af48b5a97a7db7551f66f5b41c75c7c5bb3418.tar.zst
gsoc2013-evolution-f7af48b5a97a7db7551f66f5b41c75c7c5bb3418.zip
used the new print preview icon.
2001-07-25 Damon Chaplin <damon@ximian.com> * gui/dialogs/comp-editor.c (pixmaps): used the new print preview icon. * gui/print.c (range_selector_new): changed the 'Current day/week...' strings to 'Selected day/week...' to make a little less confusing. Fixes bug #5451. svn path=/trunk/; revision=11416
Diffstat (limited to 'calendar/gui/print.c')
-rw-r--r--calendar/gui/print.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/calendar/gui/print.c b/calendar/gui/print.c
index fcf3bcecfe..aa8fb92432 100644
--- a/calendar/gui/print.c
+++ b/calendar/gui/print.c
@@ -1812,7 +1812,7 @@ range_selector_new (GtkWidget *dialog, time_t at, int *view)
/* Day */
- strftime (text, sizeof (text), _("Current day (%a %b %d %Y)"), &tm);
+ strftime (text, sizeof (text), _("Selected day (%a %b %d %Y)"), &tm);
radio = gtk_radio_button_new_with_label (NULL, text);
group = gtk_radio_button_group (GTK_RADIO_BUTTON (radio));
gtk_box_pack_start (GTK_BOX (box), radio, FALSE, FALSE, 0);
@@ -1843,7 +1843,7 @@ range_selector_new (GtkWidget *dialog, time_t at, int *view)
}
}
- g_snprintf (text, sizeof (text), _("Current week (%s - %s)"), str1, str2);
+ g_snprintf (text, sizeof (text), _("Selected week (%s - %s)"), str1, str2);
radio = gtk_radio_button_new_with_label (group, text);
group = gtk_radio_button_group (GTK_RADIO_BUTTON (radio));
@@ -1851,14 +1851,14 @@ range_selector_new (GtkWidget *dialog, time_t at, int *view)
/* Month */
- strftime (text, sizeof (text), _("Current month (%b %Y)"), &tm);
+ strftime (text, sizeof (text), _("Selected month (%b %Y)"), &tm);
radio = gtk_radio_button_new_with_label (group, text);
group = gtk_radio_button_group (GTK_RADIO_BUTTON (radio));
gtk_box_pack_start (GTK_BOX (box), radio, FALSE, FALSE, 0);
/* Year */
- strftime (text, sizeof (text), _("Current year (%Y)"), &tm);
+ strftime (text, sizeof (text), _("Selected year (%Y)"), &tm);
radio = gtk_radio_button_new_with_label (group, text);
group = gtk_radio_button_group (GTK_RADIO_BUTTON (radio));
gtk_box_pack_start (GTK_BOX (box), radio, FALSE, FALSE, 0);