From be7568c1f1523d1edc770d58f8d0dd59e9f5a438 Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Sun, 18 Dec 2022 10:11:20 +0200 Subject: [PATCH 39/39] Pluralize helptext about extra's no_aggr_near_city distance See osdn #46307 Signed-off-by: Marko Lindqvist --- client/helpdata.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/client/helpdata.c b/client/helpdata.c index 8b801c18d3..ca327c1529 100644 --- a/client/helpdata.c +++ b/client/helpdata.c @@ -3968,8 +3968,11 @@ void helptext_extra(char *buf, size_t bufsz, struct player *pplayer, if (pextra->no_aggr_near_city >= 0) { CATLSTR(buf, bufsz, /* TRANS: indented; preserve leading spaces */ - _(" %s Such units situated here are not considered aggressive " - "if this tile is within %d tiles of a friendly city.\n"), + PL_(" %s Such units situated here are not considered aggressive " + "if this tile is within %d tile of a friendly city.\n", + " %s Such units situated here are not considered aggressive " + "if this tile is within %d tiles of a friendly city.\n", + pextra->no_aggr_near_city), BULLET, pextra->no_aggr_near_city); } -- 2.35.1