aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-alarm-list.c
diff options
context:
space:
mode:
authorVivek Jain <jvivek@novell.com>2005-05-07 17:55:36 +0800
committerJain Vivek <jvivek@src.gnome.org>2005-05-07 17:55:36 +0800
commit21dd114f5a946b616e144e94cc33143dd02f7487 (patch)
treed48bef899ce9ff5cfd25eac5e497b244b9c35b59 /calendar/gui/e-alarm-list.c
parent3d6a2b1c38b67cf2d5f86cb81122c6edce8594b9 (diff)
downloadgsoc2013-evolution-21dd114f5a946b616e144e94cc33143dd02f7487.tar
gsoc2013-evolution-21dd114f5a946b616e144e94cc33143dd02f7487.tar.gz
gsoc2013-evolution-21dd114f5a946b616e144e94cc33143dd02f7487.tar.bz2
gsoc2013-evolution-21dd114f5a946b616e144e94cc33143dd02f7487.tar.lz
gsoc2013-evolution-21dd114f5a946b616e144e94cc33143dd02f7487.tar.xz
gsoc2013-evolution-21dd114f5a946b616e144e94cc33143dd02f7487.tar.zst
gsoc2013-evolution-21dd114f5a946b616e144e94cc33143dd02f7487.zip
**Fixes #261079 Added translator comments.
2005-05-06 Vivek Jain <jvivek@novell.com> **Fixes #261079 * gui/e-alarm-list.c:(get_alarm_string) Added translator comments. svn path=/trunk/; revision=29311
Diffstat (limited to 'calendar/gui/e-alarm-list.c')
-rw-r--r--calendar/gui/e-alarm-list.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/calendar/gui/e-alarm-list.c b/calendar/gui/e-alarm-list.c
index ff23cbeb2d..eb4fddde8d 100644
--- a/calendar/gui/e-alarm-list.c
+++ b/calendar/gui/e-alarm-list.c
@@ -471,14 +471,20 @@ get_alarm_string (ECalComponentAlarm *alarm)
if (dur) {
if (trigger.u.rel_duration.is_neg)
- str = g_strdup_printf (_("%s %s before the start of the appointment"),
+ /*Translator: The first %s refers to the base, which would be actions like
+ * "Play a Sound". Second %s refers to the duration string e.g:"15 minutes"*/
+ str = g_strdup_printf (_("%s %s before the start of the appointment"),
base, dur);
else
+ /*Translator: The first %s refers to the base, which would be actions like
+ * "Play a Sound". Second %s refers to the duration string e.g:"15 minutes"*/
str = g_strdup_printf (_("%s %s after the start of the appointment"),
base, dur);
g_free (dur);
} else
+ /*Translator: The %s refers to the base, which would be actions like
+ * "Play a sound" */
str = g_strdup_printf (_("%s at the start of the appointment"), base);
break;