@gallop.software/studio 1.4.3 → 1.4.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1493,7 +1493,7 @@ async function handleUnprocessStream(request) {
1493
1493
  message += ` ${skipped.length} image${skipped.length !== 1 ? "s" : ""} had no thumbnails.`;
1494
1494
  }
1495
1495
  if (errors.length > 0) {
1496
- message += ` ${errors.length} error${errors.length !== 1 ? "s" : ""}.`;
1496
+ message += ` ${errors.length} image${errors.length !== 1 ? "s" : ""} failed.`;
1497
1497
  }
1498
1498
  sendEvent({
1499
1499
  type: "complete",
@@ -1632,7 +1632,7 @@ async function handleReprocessStream(request) {
1632
1632
  }
1633
1633
  let message = `Generated thumbnails for ${processed.length} image${processed.length !== 1 ? "s" : ""}.`;
1634
1634
  if (errors.length > 0) {
1635
- message += ` ${errors.length} error${errors.length !== 1 ? "s" : ""}.`;
1635
+ message += ` ${errors.length} image${errors.length !== 1 ? "s" : ""} failed.`;
1636
1636
  }
1637
1637
  sendEvent({
1638
1638
  type: "complete",