thunderbird-patch-review
Simple email patch review tool for Thunderbird
git clone git://mccd.space/thunderbird-patch-reviewcommit e393a93c0b8e95be43077f7087ee151a924234b7
parent aabd7fedef54b88917a05e15363bac261f69a664
Author: Pi Agent <agent@pi.local>
Date: Sat, 18 Jul 2026 17:14:58 +0200
review: reword the send-review confirm summary
"X of Y patch has a comment; click send review to continue." reads better
than the old draft/confirm wording. The preview mode uses the same shape
with "open in compose" in place of "send review".
Diffstat:
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/extension/review/review.js b/extension/review/review.js
@@ -563,12 +563,11 @@ function openSendConfirm(mode) {
const commented = state.series.filter((_, i) =>
Object.keys(state.comments[i]).length
).length;
- const verb = mode === "preview" ? "open in compose" : "send immediately";
$("#send-confirm-title").textContent = mode === "preview" ? "Preview review" : "Send review";
$("#btn-send-confirm").textContent = mode === "preview" ? "Open in compose" : "Send review";
$("#send-confirm-summary").textContent =
- `${commented} of ${n} patch${n === 1 ? "" : "es"} has a draft comment; ` +
- `clicking confirm will ${verb}.`;
+ `${commented} of ${n} patch${n === 1 ? "" : "es"} has a comment; ` +
+ `click ${mode === "preview" ? "open in compose" : "send review"} to continue.`;
$("#send-confirm").hidden = false;
}