Fix “Imported 1 files”

This commit is contained in:
Dave Nicolson
2025-12-07 22:02:48 +01:00
parent d83ea17544
commit e5e9b1a60b

View File

@@ -103,7 +103,8 @@ public class ImportBatchTask extends Task {
}
finally {
Msg.showInfo(this, null, "Batch Import Summary",
"Batch Import finished.\nImported " + totalObjsImported + " files.");
"Batch Import finished.\nImported " + totalObjsImported + " file" +
(totalObjsImported == 1 ? "." : "s."));
}
}