From 2c7ba9d073d23d9ee9813c8e9de10fa5e0c3282d Mon Sep 17 00:00:00 2001 From: Sveinung Kvilhaugsvik Date: Fri, 12 Mar 2021 00:05:24 +0100 Subject: [PATCH] Fix translation comment location. Move the action sub result translation comments directly above the translated text. See osdn #41738 --- client/helpdata.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/helpdata.c b/client/helpdata.c index 112ef36f8f..082f519795 100644 --- a/client/helpdata.c +++ b/client/helpdata.c @@ -2850,16 +2850,16 @@ char *helptext_unit(char *buf, size_t bufsz, struct player *pplayer, /* Custom action sub result specific information. */ if (BV_ISSET(paction->sub_results, ACT_SUB_RES_HUT_ENTER)) { - /* TRANS: indented unit action property, preserve - * leading spaces. */ cat_snprintf(buf, bufsz, + /* TRANS: indented unit action property, preserve + * leading spaces. */ _(" * if a suitable hut is at the targetet tile it" " will be entered.\n")); } if (BV_ISSET(paction->sub_results, ACT_SUB_RES_HUT_FRIGHTEN)) { - /* TRANS: indented unit action property, preserve - * leading spaces. */ cat_snprintf(buf, bufsz, + /* TRANS: indented unit action property, preserve + * leading spaces. */ _(" * if a suitable hut is at the targetet tile it" " will be frightened.\n")); } -- 2.20.1