Minor changes

This commit is contained in:
Robert McRackan 2019-11-05 21:48:02 -05:00
parent bd993b4e4d
commit 6aa544b322
3 changed files with 8 additions and 18 deletions

View file

@ -115,7 +115,7 @@ namespace LibationWinForm
// update bottom numbers
var pending = noProgress + downloadedOnly;
var text
= !results.Any() ? "No books. Begin by indexing your library"
= !results.Any() ? "No books. Begin by importing your library"
: pending > 0 ? string.Format(backupsCountsLbl_Format, noProgress, downloadedOnly, fullyBackedUp)
: $"All {"book".PluralizeWithCount(fullyBackedUp)} backed up";
statusStrip1.UIThread(() => backupsCountsLbl.Text = text);