From bb51d41133c4853416036a1d3132b109e013d342 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Fri, 30 Oct 2009 18:01:48 +0000 Subject: [PATCH] cannot translate variable (part2 - thanks Peter) svn: r13467 --- src/plugins/webreport/WebCal.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/webreport/WebCal.py b/src/plugins/webreport/WebCal.py index 8b9d02b54..901bb2a27 100644 --- a/src/plugins/webreport/WebCal.py +++ b/src/plugins/webreport/WebCal.py @@ -1812,9 +1812,9 @@ def get_day_list(event_date, holiday_list, bday_anniv_list): # a birthday if event == 'Birthday': - txt_str = text + ', ' + txt_str = (text + ', ' + (_('%s old') % str(age_str) if nyears else _('birth')) - + '' + + '') # an anniversary elif event == "Anniversary":