aboutsummaryrefslogtreecommitdiffstats
path: root/src/notify.c
diff options
context:
space:
mode:
authorLukas Fleischer <calcurse@cryptocrack.de>2012-05-17 20:59:27 +0200
committerLukas Fleischer <calcurse@cryptocrack.de>2012-05-17 22:07:44 +0200
commit7f68083027150073fa0dcf9a9cbeff6e939a6e60 (patch)
tree67aa2196f73ccdb53a9cf6822fcffa82d07adf7e /src/notify.c
parent7c7c65d1945af07cdc8c81f847c83c6e94bce628 (diff)
downloadcalcurse-7f68083027150073fa0dcf9a9cbeff6e939a6e60.tar.gz
calcurse-7f68083027150073fa0dcf9a9cbeff6e939a6e60.zip
Update configuration dialogs
Rename the configuration options shown in the configuration dialogs to match the new naming scheme used in the configuration file. Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/notify.c')
-rw-r--r--src/notify.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/notify.c b/src/notify.c
index 0ef4189..de45461 100644
--- a/src/notify.c
+++ b/src/notify.c
@@ -639,29 +639,29 @@ print_config_options (WINDOW *optwin)
int i;
- opt[SHOW].name = _("notify-bar_show = ");
+ opt[SHOW].name = _("appearance.notifybar = ");
opt[SHOW].desc = _("(if set to YES, notify-bar will be displayed)");
- opt[DATE].name = _("notify-bar_date = ");
+ opt[DATE].name = _("format.notifydate = ");
opt[DATE].desc = _("(Format of the date to be displayed inside notify-bar)");
- opt[CLOCK].name = _("notify-bar_clock = ");
+ opt[CLOCK].name = _("format.notifytime = ");
opt[CLOCK].desc = _("(Format of the time to be displayed inside notify-bar)");
- opt[WARN].name = _("notify-bar_warning = ");
+ opt[WARN].name = _("notification.warning = ");
opt[WARN].desc = _("(Warn user if an appointment is within next "
"'notify-bar_warning' seconds)");
- opt[CMD].name = _("notify-bar_command = ");
+ opt[CMD].name = _("notification.command = ");
opt[CMD].desc = _("(Command used to notify user of an upcoming appointment)");
- opt[NOTIFY_ALL].name = _("notify-all = ");
+ opt[NOTIFY_ALL].name = _("notification.notifyall = ");
opt[NOTIFY_ALL].desc = _("(Notify all appointments instead of flagged ones only)");
- opt[DMON].name = _("notify-daemon_enable = ");
+ opt[DMON].name = _("daemon.enable = ");
opt[DMON].desc = _("(Run in background to get notifications after exiting)");
- opt[DMON_LOG].name = _("notify-daemon_log = ");
+ opt[DMON_LOG].name = _("daemon.log = ");
opt[DMON_LOG].desc = _("(Log activity when running in background)");
pthread_mutex_lock (&nbar.mutex);