aboutsummaryrefslogtreecommitdiffstats
path: root/src/io.c
diff options
context:
space:
mode:
authorLukas Fleischer <calcurse@cryptocrack.de>2011-07-24 21:00:59 +0200
committerLukas Fleischer <calcurse@cryptocrack.de>2011-07-24 21:00:59 +0200
commite121ded3a5edc1d243f2b44cc64aff19fbebaa41 (patch)
tree4781651163514443aa5b25ca49033b4e2c5bce7b /src/io.c
parent87664095cdd2c85d50e1be42442c0c24b611c7dc (diff)
downloadcalcurse-e121ded3a5edc1d243f2b44cc64aff19fbebaa41.tar.gz
calcurse-e121ded3a5edc1d243f2b44cc64aff19fbebaa41.zip
Split stats messages in io_import_data()
Use separate format strings for separate values. This is useful in case we want to output similar stats somewhere else and is a preparation for supporting plural forms. Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/io.c')
-rw-r--r--src/io.c22
1 files changed, 12 insertions, 10 deletions
diff --git a/src/io.c b/src/io.c
index 3d5539e..b1c4683 100644
--- a/src/io.c
+++ b/src/io.c
@@ -2754,10 +2754,8 @@ io_import_data (enum import_type type, struct conf *conf, char *stream_name)
const struct string vevent = STRING_BUILD ("BEGIN:VEVENT");
const struct string vtodo = STRING_BUILD ("BEGIN:VTODO");
char *proc_report = _("Import process report: %04d lines read ");
- char *lines_stats =
- _("%d apps / %d events / %d todos / %d skipped ");
- char *lines_stats_interactive =
- _("%d apps / %d events / %d todos / %d skipped ([ENTER] to continue)");
+ char *stats_fmt[] = { "%d apps", "%d events", "%d todos", "%d skipped" };
+ char stats_str[sizeof (stats_fmt) / sizeof (char *)][BUFSIZ];
char buf[BUFSIZ];
FILE *stream = NULL;
struct io_file *log;
@@ -2819,23 +2817,27 @@ io_import_data (enum import_type type, struct conf *conf, char *stream_name)
if (stream != stdin)
file_close (stream, __FILE_POS__);
+ snprintf (stats_str[0], BUFSIZ, _(stats_fmt[0]), stats.apoints);
+ snprintf (stats_str[1], BUFSIZ, _(stats_fmt[1]), stats.events);
+ snprintf (stats_str[2], BUFSIZ, _(stats_fmt[2]), stats.todos);
+ snprintf (stats_str[3], BUFSIZ, _(stats_fmt[3]), stats.skipped);
+
if (ui_mode == UI_CURSES && !conf->skip_system_dialogs)
{
char read[BUFSIZ], stat[BUFSIZ];
(void)snprintf (read, BUFSIZ, proc_report, stats.lines);
- (void)snprintf (stat, BUFSIZ, lines_stats_interactive, stats.apoints,
- stats.events, stats.todos, stats.skipped);
+ (void)snprintf (stat, BUFSIZ, "%s / %s / %s / %s (%s)", stats_str[0],
+ stats_str[1], stats_str[2], stats_str[3],
+ _("Press [ENTER] to continue"));
status_mesg (read, stat);
(void)wgetch (win[STA].p);
}
else if (ui_mode == UI_CMDLINE)
{
printf (proc_report, stats.lines);
- printf ("\n");
- printf (lines_stats, stats.apoints, stats.events, stats.todos,
- stats.skipped);
- printf ("\n");
+ printf ("\n%s / %s / %s / %s\n", stats_str[0], stats_str[1],
+ stats_str[2], stats_str[3]);
}
/* User has the choice to look at the log file if some items could not be