Mark a string for translation.

* src/virsh.c: Add a "%s" and wrap with _(...).
This commit is contained in:
Jim Meyering 2008-02-04 14:58:47 +00:00
parent 70400346d2
commit e99570fc77
2 changed files with 7 additions and 4 deletions

View File

@ -1,5 +1,8 @@
Mon Feb 2 15:56:45 CET 2008 Jim Meyering <meyering@redhat.com>
Mark a string for translation.
* src/virsh.c: Add a "%s" and wrap with _(...).
Enable the sc_unmarked_diagnostics test and correct all violations
involving the "error" function.
* Makefile.cfg (local-checks-to-skip): Remove from skip list.

View File

@ -1,7 +1,7 @@
/*
* virsh.c: a Xen shell used to exercise the libvirt API
*
* Copyright (C) 2005, 2007 Red Hat, Inc.
* Copyright (C) 2005, 2007-2008 Red Hat, Inc.
*
* See COPYING.LIB for the License of this software
*
@ -4770,7 +4770,7 @@ vshReadline (vshControl *ctl, const char *prompt)
#endif /* !USE_READLINE */
/*
* Deinitliaze virsh
* Deinitialize virsh
*/
static int
vshDeinit(vshControl * ctl)
@ -4780,8 +4780,8 @@ vshDeinit(vshControl * ctl)
if (ctl->conn) {
if (virConnectClose(ctl->conn) != 0) {
ctl->conn = NULL; /* prevent recursive call from vshError() */
vshError(ctl, TRUE,
"failed to disconnect from the hypervisor");
vshError(ctl, TRUE, "%s",
_("failed to disconnect from the hypervisor"));
}
}
virResetLastError();