aboutsummaryrefslogtreecommitdiffstats
path: root/src/ical.c
diff options
context:
space:
mode:
authorLars Henriksen <LarsHenriksen@get2net.dk>2017-10-23 11:59:34 +0200
committerLukas Fleischer <lfleischer@calcurse.org>2017-10-23 21:18:07 +0200
commitc0644d5aaf8bf8744f3759444009699c5b6e2861 (patch)
tree923dafd42500ba06558f8c49a82544f218dbd011 /src/ical.c
parent61e577bf8ad1b8d284e30ace751197faa0d034eb (diff)
downloadcalcurse-c0644d5aaf8bf8744f3759444009699c5b6e2861.tar.gz
calcurse-c0644d5aaf8bf8744f3759444009699c5b6e2861.zip
Fix spelling of "frequency"
Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
Diffstat (limited to 'src/ical.c')
-rw-r--r--src/ical.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ical.c b/src/ical.c
index d8ad997..309952d 100644
--- a/src/ical.c
+++ b/src/ical.c
@@ -744,7 +744,7 @@ static ical_rpt_t *ical_read_rrule(FILE * log, char *rrulestr,
memset(rpt, 0, sizeof(ical_rpt_t));
if (sscanf(p, "FREQ=%s", freqstr) != 1) {
ical_log(log, ICAL_VEVENT, itemline,
- _("recurrence frequence not found."));
+ _("recurrence frequency not found."));
(*noskipped)++;
mem_free(rpt);
return NULL;
@@ -760,7 +760,7 @@ static ical_rpt_t *ical_read_rrule(FILE * log, char *rrulestr,
rpt->type = RECUR_YEARLY;
} else {
ical_log(log, ICAL_VEVENT, itemline,
- _("recurrence frequence not recognized."));
+ _("recurrence frequency not recognized."));
(*noskipped)++;
mem_free(rpt);
return NULL;