On Mon, May 20, 2024 at 15:00:26 +0200, Peter Krempa wrote: > Move the word 'Checking' into the appropriate formatting strings and > mark all outstanding ones for translation. > > Resolves: https://gitlab.com/libvirt/libvirt/-/issues/637 > Signed-off-by: Peter Krempa <pkrempa@xxxxxxxxxx> > --- > tools/virt-host-validate-bhyve.c | 2 +- > tools/virt-host-validate-ch.c | 2 +- > tools/virt-host-validate-common.c | 18 +++++++++--------- > tools/virt-host-validate-qemu.c | 4 ++-- > 4 files changed, 13 insertions(+), 13 deletions(-) > ... > diff --git a/tools/virt-host-validate-common.c b/tools/virt-host-validate-common.c > index c8a23e2e99..58d8dbbaa1 100644 > --- a/tools/virt-host-validate-common.c > +++ b/tools/virt-host-validate-common.c > @@ -66,7 +66,7 @@ void virHostMsgCheck(const char *prefix, > msg = g_strdup_vprintf(format, args); > va_end(args); > > - fprintf(stdout, _("%1$6s: Checking %2$-60s: "), prefix, msg); > + fprintf(stdout, "%1$6s: %2$-60s: ", prefix, msg); > } > > static bool virHostMsgWantEscape(void) Shouldn't the formatting string change from %2$-60s to %2$-69s since the string will now contain the extra "Checking " prefix? Jirka