git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [PATCH] setup: split "extensions found" messages into singular and plural
@ 2021-05-18  6:19 Alex Henrie
  2021-05-18  6:29 ` Jeff King
  0 siblings, 1 reply; 3+ messages in thread
From: Alex Henrie @ 2021-05-18  6:19 UTC (permalink / raw)
  To: git, peff, gitster; +Cc: Alex Henrie

It's easier to translate this way.

Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
---
 setup.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/setup.c b/setup.c
index 59e2facd9d..ead2f80cd8 100644
--- a/setup.c
+++ b/setup.c
@@ -666,7 +666,9 @@ int verify_repository_format(const struct repository_format *format,
 	if (format->version >= 1 && format->unknown_extensions.nr) {
 		int i;
 
-		strbuf_addstr(err, _("unknown repository extensions found:"));
+		strbuf_addstr(err, Q_("unknown repository extension found:",
+				      "unknown repository extensions found:",
+				      format->unknown_extensions.nr));
 
 		for (i = 0; i < format->unknown_extensions.nr; i++)
 			strbuf_addf(err, "\n\t%s",
@@ -678,7 +680,9 @@ int verify_repository_format(const struct repository_format *format,
 		int i;
 
 		strbuf_addstr(err,
-			      _("repo version is 0, but v1-only extensions found:"));
+			      Q_("repo version is 0, but v1-only extension found:",
+				 "repo version is 0, but v1-only extensions found:",
+				 format->v1_only_extensions.nr));
 
 		for (i = 0; i < format->v1_only_extensions.nr; i++)
 			strbuf_addf(err, "\n\t%s",
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] setup: split "extensions found" messages into singular and plural
  2021-05-18  6:19 [PATCH] setup: split "extensions found" messages into singular and plural Alex Henrie
@ 2021-05-18  6:29 ` Jeff King
  2021-05-18  8:27   ` Michal Suchánek
  0 siblings, 1 reply; 3+ messages in thread
From: Jeff King @ 2021-05-18  6:29 UTC (permalink / raw)
  To: Alex Henrie; +Cc: git, gitster

On Tue, May 18, 2021 at 12:19:17AM -0600, Alex Henrie wrote:

> It's easier to translate this way.

Makes sense.

I don't know about "easier to translate", since there are twice as many
strings now. But certainly what the user sees will be more grammatically
correct. :)

-Peff

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] setup: split "extensions found" messages into singular and plural
  2021-05-18  6:29 ` Jeff King
@ 2021-05-18  8:27   ` Michal Suchánek
  0 siblings, 0 replies; 3+ messages in thread
From: Michal Suchánek @ 2021-05-18  8:27 UTC (permalink / raw)
  To: Jeff King; +Cc: Alex Henrie, git, gitster

On Tue, May 18, 2021 at 02:29:59AM -0400, Jeff King wrote:
> On Tue, May 18, 2021 at 12:19:17AM -0600, Alex Henrie wrote:
> 
> > It's easier to translate this way.
> 
> Makes sense.
> 
> I don't know about "easier to translate", since there are twice as many
> strings now. But certainly what the user sees will be more grammatically
> correct. :)

Note that some languages may still have dual (that is 2 extensions is
different from both 1 and 3 and more extensions), and so on for 3 and 4,
and in some languages 21 (and 31 but not necessarily 11) extensions may
be singular again.

Kind of reminds me of
https://www.kalzumeus.com/2010/06/17/falsehoods-programmers-believe-about-names/

Thanks

Michal

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-05-18  8:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-18  6:19 [PATCH] setup: split "extensions found" messages into singular and plural Alex Henrie
2021-05-18  6:29 ` Jeff King
2021-05-18  8:27   ` Michal Suchánek

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

	https://80x24.org/mirrors/git.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).