diff options
Diffstat (limited to 'src/vars.c')
-rw-r--r-- | src/vars.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -61,6 +61,9 @@ enum ui_mode ui_mode = UI_CMDLINE; /* Don't save anything if this is set. */ int read_only = 0; +/* Strings describing each input date format. */ +const char *datefmt_str[DATE_FORMATS]; + /* * variables to store calendar names */ @@ -136,6 +139,11 @@ void vars_init(void) strncpy(conf.output_datefmt, "%D", 3); conf.input_datefmt = 1; + datefmt_str[0] = _("mm/dd/yyyy"); + datefmt_str[1] = _("dd/mm/yyyy"); + datefmt_str[2] = _("yyyy/mm/dd"); + datefmt_str[3] = _("yyyy-mm-dd"); + /* Default external editor and pager */ ed = getenv("VISUAL"); if (ed == NULL || ed[0] == '\0') |