user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
* [PATCH] view: avoid "1+ messages" in per-message footer of /t/ and /T/
@ 2019-04-23  3:36 Eric Wong
  0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2019-04-23  3:36 UTC (permalink / raw)
  To: meta

Try to appear gramatically correct and state:
"only message in thread" when there's only one known (to us)
message in the thread.
---
 lib/PublicInbox/View.pm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm
index 62bdf0a..47a2046 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);
 
-- 
EW


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2019-04-23  3:36 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-23  3:36 [PATCH] view: avoid "1+ messages" in per-message footer of /t/ and /T/ Eric Wong

Code repositories for project(s) associated with this public inbox

	https://80x24.org/public-inbox.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).