Make the text for empty days configurable

The default is "--"; a single space makes the text invisible.

Signed-off-by: Lars Henriksen <LarsHenriksen@get2net.dk>
Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
This commit is contained in:
Lars Henriksen
2019-09-17 22:40:49 +02:00
committed by Lukas Fleischer
parent f49ec4ad6e
commit d8d7dce2b8
5 changed files with 27 additions and 1 deletions

View File

@@ -471,7 +471,7 @@ day_store_items(time_t date, int include_captions, int n)
if (include_captions && events == 0 && apts == 0) {
/* Insert dummy event. */
d.ev = &dummy;
dummy.mesg = _("(none)");
dummy.mesg = conf.empty_day;
day_add_item(EVNT, DUMMY, date, d);
day_items_nb++;
}