aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndre Klapper <a9016009@gmx.de>2005-12-20 17:48:05 +0800
committerAndre Klapper <aklapper@src.gnome.org>2005-12-20 17:48:05 +0800
commit3ccc08d7e9303132ddc24aa47d48b059c3a76f23 (patch)
tree6f02a72f654f509b106a4e4e58094ec41cb7587a
parent16059b3941bcc405035aef6f45a4907d4a729db4 (diff)
downloadgsoc2013-evolution-3ccc08d7e9303132ddc24aa47d48b059c3a76f23.tar
gsoc2013-evolution-3ccc08d7e9303132ddc24aa47d48b059c3a76f23.tar.gz
gsoc2013-evolution-3ccc08d7e9303132ddc24aa47d48b059c3a76f23.tar.bz2
gsoc2013-evolution-3ccc08d7e9303132ddc24aa47d48b059c3a76f23.tar.lz
gsoc2013-evolution-3ccc08d7e9303132ddc24aa47d48b059c3a76f23.tar.xz
gsoc2013-evolution-3ccc08d7e9303132ddc24aa47d48b059c3a76f23.tar.zst
gsoc2013-evolution-3ccc08d7e9303132ddc24aa47d48b059c3a76f23.zip
fixing string bug 308851
2005-12-20 Andre Klapper <a9016009@gmx.de> * gui/dialogs/recur-comp.c: fixing string bug 308851 svn path=/trunk/; revision=30897
-rw-r--r--calendar/gui/dialogs/recur-comp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/calendar/gui/dialogs/recur-comp.c b/calendar/gui/dialogs/recur-comp.c
index de6d4ca0be..8fa1e5ae35 100644
--- a/calendar/gui/dialogs/recur-comp.c
+++ b/calendar/gui/dialogs/recur-comp.c
@@ -49,17 +49,17 @@ recur_component_dialog (ECal *client,
switch (vtype) {
case E_CAL_COMPONENT_EVENT:
if (!delegated)
- str = g_strdup_printf (_("You are modifying a recurring event, what would you like to modify?"));
+ str = g_strdup_printf (_("You are modifying a recurring event. What would you like to modify?"));
else
- str = g_strdup_printf (_("You are delegating a recurring event, what would like to delegate?"));
+ str = g_strdup_printf (_("You are delegating a recurring event. What would you like to delegate?"));
break;
case E_CAL_COMPONENT_TODO:
- str = g_strdup_printf (_("You are modifying a recurring task, what would you like to modify?"));
+ str = g_strdup_printf (_("You are modifying a recurring task. What would you like to modify?"));
break;
case E_CAL_COMPONENT_JOURNAL:
- str = g_strdup_printf (_("You are modifying a recurring journal entry, what would you like to modify?"));
+ str = g_strdup_printf (_("You are modifying a recurring journal entry. What would you like to modify?"));
break;
default: