about summary refs log tree commit homepage
path: root/lib/PublicInbox/View.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-04-23 03:33:41 +0000
committerEric Wong <e@80x24.org>2019-04-23 03:33:41 +0000
commit99eb80852894a4f226fbbd7e4adc8c94541fe527 (patch)
treee01f6fac160e58e09ea02da73d53c39e9566a1a3 /lib/PublicInbox/View.pm
parent7f1cd9ea11db55e9de986a0b08132eb76143a9d1 (diff)
downloadpublic-inbox-99eb80852894a4f226fbbd7e4adc8c94541fe527.tar.gz
Try to appear gramatically correct and state:
"only message in thread" when there's only one known (to us)
message in the thread.
Diffstat (limited to 'lib/PublicInbox/View.pm')
-rw-r--r--lib/PublicInbox/View.pm3
1 files changed, 2 insertions, 1 deletions
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);