From 956e81eb25fba2bb5ff2601a9ac2b5d7a1cd1759 Mon Sep 17 00:00:00 2001 From: Dino Date: Wed, 24 Dec 2025 16:01:29 -0500 Subject: [PATCH] Fix typos in reqtext.c RM #1839 --- common/reqtext.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/reqtext.c b/common/reqtext.c index 61ae6fa7f8..47c2dd960a 100644 --- a/common/reqtext.c +++ b/common/reqtext.c @@ -983,7 +983,7 @@ bool req_text_insert(char *buf, size_t bufsz, struct player *pplayer, case REQ_RANGE_CITY: fc_strlcat(buf, prefix, bufsz); if (preq->present) { - cat_snprintf(buf, bufsz, Q_("?good:Requires import of %s ."), + cat_snprintf(buf, bufsz, Q_("?good:Requires import of %s."), goods_name_translation(preq->source.value.good)); } else { cat_snprintf(buf, bufsz, Q_("?goods:Prevented by import of %s."), @@ -3141,11 +3141,11 @@ bool req_text_insert(char *buf, size_t bufsz, struct player *pplayer, fc_strlcat(buf, prefix, bufsz); if (preq->present) { /* TRANS: city property ("owned by original", etc) */ - cat_snprintf(buf, bufsz, Q_("?cityprop:Applies only to %s cities"), + cat_snprintf(buf, bufsz, Q_("?cityprop:Applies only to %s cities."), city_property); } else { /* TRANS: city property ("owned by original", etc) */ - cat_snprintf(buf, bufsz, Q_("?cityprop:Does not apply to %s cities"), + cat_snprintf(buf, bufsz, Q_("?cityprop:Does not apply to %s cities."), city_property); } return TRUE; -- 2.31.0