Merge branch 'GP-0_ryanmkurtz_PR-8799_dnicolson_fix-pluralization-issue'

This commit is contained in:
Ryan Kurtz
2025-12-18 13:14:17 -05:00

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."));
}
}