From 4b5dcb7bc001f33ebee9cd0f74b0f5b83482e470 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C5=82awomir=20Lach?= <slawek@lach.art.pl>
Date: Sat, 11 Feb 2023 17:17:29 +0100
Subject: [PATCH 1/2] =?UTF-8?q?!OSDN:=20TICKET:=20#43655:=20S=C5=82awomir?=
 =?UTF-8?q?=20Lach=20<slawek@lach.art.pl>?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

By now string in helptext for counters will contains dot at the end. I
beliewe it will now be correct.

diff --git a/common/reqtext.c b/common/reqtext.c
index a6ed9e8111..8d387558ad 100644
--- a/common/reqtext.c
+++ b/common/reqtext.c
@@ -62,14 +62,14 @@ bool req_text_insert(char *buf, size_t bufsz, struct player *pplayer,
 
       fc_strlcat(buf, prefix, bufsz);
       cat_snprintf(buf, bufsz,
-                 _("Requires counter %s to achieve at minimum %d value"),
+                 _("Requires counter %s to achieve at minimum %d value."),
                  counter_rule_name(preq->source.value.counter),
                  preq->source.value.counter->checkpoint);
     } else {
 
       fc_strlcat(buf, prefix, bufsz);
       cat_snprintf(buf, bufsz,
-                   _("Requires counter %s to be less than %d value"),
+                   _("Requires counter %s to be less than %d value."),
                    counter_rule_name(preq->source.value.counter),
                    preq->source.value.counter->checkpoint - 1);
     }
-- 
2.39.1

