Display correct startup messages

These messages have been swapped accidentally during refactoring.
Regression introduced in 691f8a6015bafcf6ed4f99a3649d428fb7a8e915.

Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
This commit is contained in:
Lukas Fleischer 2012-12-16 02:02:41 +01:00
parent e492ac6f95
commit 82942938be

View File

@ -888,10 +888,10 @@ void io_startup_screen(int no_data_file)
const char *enter = _("Press [ENTER] to continue");
if (no_data_file)
status_mesg(_("Data files found. Data will be loaded now."), enter);
else
status_mesg(_("Welcome to Calcurse. Missing data files were created."),
enter);
else
status_mesg(_("Data files found. Data will be loaded now."), enter);
wgetch(win[KEY].p);
}