From f546b04e177fcc0777f9e4f4328d0f7887bba777 Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Sat, 3 Sep 2022 05:35:39 +0300 Subject: [PATCH 49/49] Correct reqtext of negated VUT_DIPLREL_UNITANY and VUT_DIPLREL_UNITANY See osdn #45514 Signed-off-by: Marko Lindqvist --- common/reqtext.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/reqtext.c b/common/reqtext.c index 74fa50734d..72beca5762 100644 --- a/common/reqtext.c +++ b/common/reqtext.c @@ -1482,7 +1482,7 @@ bool req_text_insert(char *buf, size_t bufsz, struct player *pplayer, } else { cat_snprintf(buf, bufsz, _("Requires that you do not have the relationship '%s'" - " with the owner of at least one unit at the tile."), + " with the owner of any unit at the tile."), diplrel_name_translation(preq->source.value.diplrel)); } return TRUE; @@ -1510,9 +1510,9 @@ bool req_text_insert(char *buf, size_t bufsz, struct player *pplayer, diplrel_name_translation(preq->source.value.diplrel)); } else { cat_snprintf(buf, bufsz, - _("Requires that the tile has at least one unit that" - " doesn't have the relationship '%s' with" - " the other player."), + _("Requires that no unit at the tile has " + "the relationship '%s' with " + "the other player."), diplrel_name_translation(preq->source.value.diplrel)); } return TRUE; -- 2.35.1