From: Eric Wong Date: Tue, 23 Apr 2019 03:33:41 +0000 (+0000) Subject: view: avoid "1+ messages" in per-message footer of /t/ and /T/ X-Git-Tag: v1.2.0~313 X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=commitdiff_plain;h=99eb80852894a4f226fbbd7e4adc8c94541fe527 view: avoid "1+ messages" in per-message footer of /t/ and /T/ Try to appear gramatically correct and state: "only message in thread" when there's only one known (to us) message in the thread. --- diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm index 62bdf0a1..47a2046e 100644 --- a/lib/PublicInbox/View.pm +++ b/lib/PublicInbox/View.pm @@ -458,7 +458,8 @@ sub thread_html { $ctx->{prev_level} = 0; $ctx->{root_anchor} = anchor_for($mid); $ctx->{mapping} = {}; - $ctx->{s_nr} = "$nr+ messages in thread"; + $ctx->{s_nr} = ($nr > 1 ? "$nr+ messages" : 'only message') + .' in thread'; my $rootset = thread_results($ctx, $msgs);