Remove trailing spaces from translatable strings

Signed-off-by: Ján Tomko <jtomko@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
This commit is contained in:
Ján Tomko 2023-03-27 13:31:45 +02:00
parent 58b7cafc28
commit c9a1f11afd
3 changed files with 3 additions and 3 deletions

View File

@ -737,7 +737,7 @@ virNetSSHAuthenticateKeyboardInteractive(virNetSSHSession *sess,
if (!sess->cred || !sess->cred->cb) {
virReportError(VIR_ERR_SSH, "%s",
_("Can't perform keyboard-interactive authentication: "
"Authentication callback not provided "));
"Authentication callback not provided"));
return -1;
}

View File

@ -3979,7 +3979,7 @@ testDomainSetBlockIoTune(virDomainPtr dom,
do { \
if (info.FIELD > info.FIELD_MAX) { \
virReportError(VIR_ERR_INVALID_ARG, \
_("%1$s cannot be set higher than %2$s "), \
_("%1$s cannot be set higher than %2$s"), \
#FIELD, #FIELD_MAX); \
goto cleanup; \
} \

View File

@ -501,7 +501,7 @@ cmdSrvThreadpoolSet(vshControl *ctl, const vshCmd *cmd)
if (!nparams) {
vshError(ctl, "%s",
_("At least one of options --min-workers, --max-workers, "
"--priority-workers is mandatory "));
"--priority-workers is mandatory"));
goto cleanup;
}