aboutsummaryrefslogtreecommitdiffstats
path: root/src/day.c
diff options
context:
space:
mode:
authorBaptiste Jonglez <baptiste--git@jonglez.org>2012-05-13 14:09:22 +0200
committerLukas Fleischer <calcurse@cryptocrack.de>2012-05-14 19:32:18 +0200
commitb17475128de9c548fb2727256817345aa1f9273a (patch)
tree444bfec30efd8b668f5195145f9ed765dbdaf4d9 /src/day.c
parent13d6f8703bacfb8543c9d22c01db60e083650cad (diff)
downloadcalcurse-b17475128de9c548fb2727256817345aa1f9273a.tar.gz
calcurse-b17475128de9c548fb2727256817345aa1f9273a.zip
Various fixes.
Use snprintf(3) instead of sprintf(3) and fix a missing i18n tag. Signed-off-by: Baptiste Jonglez <baptiste--git@jonglez.org> Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/day.c')
-rw-r--r--src/day.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/day.c b/src/day.c
index d74283f..43a5aec 100644
--- a/src/day.c
+++ b/src/day.c
@@ -742,7 +742,7 @@ update_rept (struct rpt **rpt, const long start)
const char *msg_wrong_time = _("Invalid time: start time must be before end time!");
const char *msg_wrong_date = _("The entered date is not valid.");
const char *msg_fmts =
- "Possible formats are [%s] or '0' for an endless repetetition";
+ _("Possible formats are [%s] or '0' for an endless repetetition");
const char *msg_enter = _("Press [Enter] to continue");
switch (status_ask_choice (msg_rpt_asktype, msg_rpt_choice, 4))