thunderbird-patch-review
Easy-to-use patch review interface for Thunderbird
Contribute: ~marcc/thunderbird-review-plugin@lists.sr.ht
git clone git://mccd.space/thunderbird-patch-review
| Log | Files | Refs | README | LICENSE |
commit 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:
| M | extension/review/review.js | | | 5 | ++--- |
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;
}