aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArturo Espinosa <unammx@src.gnome.org>1999-09-28 03:14:36 +0800
committerArturo Espinosa <unammx@src.gnome.org>1999-09-28 03:14:36 +0800
commit9d0b58bb8eb5a2180c6d38d7e45c9396331dc725 (patch)
tree61dc7e7b7871fb406c8d445e286cc7467ce84bc7
parent10ec882bf12ce134072585b057738dcb9c242846 (diff)
downloadgsoc2013-evolution-9d0b58bb8eb5a2180c6d38d7e45c9396331dc725.tar
gsoc2013-evolution-9d0b58bb8eb5a2180c6d38d7e45c9396331dc725.tar.gz
gsoc2013-evolution-9d0b58bb8eb5a2180c6d38d7e45c9396331dc725.tar.bz2
gsoc2013-evolution-9d0b58bb8eb5a2180c6d38d7e45c9396331dc725.tar.lz
gsoc2013-evolution-9d0b58bb8eb5a2180c6d38d7e45c9396331dc725.tar.xz
gsoc2013-evolution-9d0b58bb8eb5a2180c6d38d7e45c9396331dc725.tar.zst
gsoc2013-evolution-9d0b58bb8eb5a2180c6d38d7e45c9396331dc725.zip
Fix #2340 on HEAD -miguel
svn path=/trunk/; revision=1263
-rw-r--r--calendar/gui/main.c2
-rw-r--r--calendar/gui/prop.c6
-rw-r--r--calendar/main.c2
-rw-r--r--calendar/prop.c6
4 files changed, 8 insertions, 8 deletions
diff --git a/calendar/gui/main.c b/calendar/gui/main.c
index 1cd65f331e..6689ca80cb 100644
--- a/calendar/gui/main.c
+++ b/calendar/gui/main.c
@@ -59,7 +59,7 @@ struct color_prop color_props[] = {
{ 0xd364, 0xc6b7, 0x7969, N_("Highlighted day:"), "/calendar/Colors/prelight_bg" },
{ 0x01f0, 0x01f0, 0x01f0, N_("Day numbers:"), "/calendar/Colors/day_fg" },
{ 0x0000, 0x0000, 0xffff, N_("Current day's number:"), "/calendar/Colors/current_fg" },
- { 0x0000, 0xaaaa, 0xaaaa, N_("Overdue TODO item"), "/calendar/Coloirs/todo_overdue" }
+ { 0x0000, 0xaaaa, 0xaaaa, N_("Overdue To Do item"), "/calendar/Coloirs/todo_overdue" }
};
/* Number of active calendars */
diff --git a/calendar/gui/prop.c b/calendar/gui/prop.c
index ca07252807..87fad703f4 100644
--- a/calendar/gui/prop.c
+++ b/calendar/gui/prop.c
@@ -592,7 +592,7 @@ build_style_list_options_frame(void)
GtkWidget *frame;
GtkWidget *vbox;
- frame = gtk_frame_new (_("TODO List style options:"));
+ frame = gtk_frame_new (_("To Do List style options:"));
vbox = gtk_vbox_new (FALSE, 0);
gtk_container_add (GTK_CONTAINER (frame), vbox);
@@ -615,10 +615,10 @@ create_todo_page (void)
GtkWidget *hbox;
- frame = gtk_frame_new (_("Todo List Properties"));
+ frame = gtk_frame_new (_("To Do List Properties"));
gtk_container_set_border_width (GTK_CONTAINER (frame), GNOME_PAD_SMALL);
gnome_property_box_append_page (GNOME_PROPERTY_BOX (prop_win), frame,
- gtk_label_new (_("Todo List")));
+ gtk_label_new (_("To Do List")));
/* first vbox*/
main_box = gtk_vbox_new(FALSE, GNOME_PAD);
diff --git a/calendar/main.c b/calendar/main.c
index 1cd65f331e..6689ca80cb 100644
--- a/calendar/main.c
+++ b/calendar/main.c
@@ -59,7 +59,7 @@ struct color_prop color_props[] = {
{ 0xd364, 0xc6b7, 0x7969, N_("Highlighted day:"), "/calendar/Colors/prelight_bg" },
{ 0x01f0, 0x01f0, 0x01f0, N_("Day numbers:"), "/calendar/Colors/day_fg" },
{ 0x0000, 0x0000, 0xffff, N_("Current day's number:"), "/calendar/Colors/current_fg" },
- { 0x0000, 0xaaaa, 0xaaaa, N_("Overdue TODO item"), "/calendar/Coloirs/todo_overdue" }
+ { 0x0000, 0xaaaa, 0xaaaa, N_("Overdue To Do item"), "/calendar/Coloirs/todo_overdue" }
};
/* Number of active calendars */
diff --git a/calendar/prop.c b/calendar/prop.c
index ca07252807..87fad703f4 100644
--- a/calendar/prop.c
+++ b/calendar/prop.c
@@ -592,7 +592,7 @@ build_style_list_options_frame(void)
GtkWidget *frame;
GtkWidget *vbox;
- frame = gtk_frame_new (_("TODO List style options:"));
+ frame = gtk_frame_new (_("To Do List style options:"));
vbox = gtk_vbox_new (FALSE, 0);
gtk_container_add (GTK_CONTAINER (frame), vbox);
@@ -615,10 +615,10 @@ create_todo_page (void)
GtkWidget *hbox;
- frame = gtk_frame_new (_("Todo List Properties"));
+ frame = gtk_frame_new (_("To Do List Properties"));
gtk_container_set_border_width (GTK_CONTAINER (frame), GNOME_PAD_SMALL);
gnome_property_box_append_page (GNOME_PROPERTY_BOX (prop_win), frame,
- gtk_label_new (_("Todo List")));
+ gtk_label_new (_("To Do List")));
/* first vbox*/
main_box = gtk_vbox_new(FALSE, GNOME_PAD);