]> xenbits.xensource.com Git - libvirt.git/commitdiff
Mark a string for translation.
authorJim Meyering <meyering@redhat.com>
Mon, 4 Feb 2008 14:58:47 +0000 (14:58 +0000)
committerJim Meyering <meyering@redhat.com>
Mon, 4 Feb 2008 14:58:47 +0000 (14:58 +0000)
* src/virsh.c: Add a "%s" and wrap with _(...).

ChangeLog
src/virsh.c

index 2de0482bb5f9db11314da291212e50a94d6a8a36..b7c60105630e20972a380d19b24759e6b1db0716 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
index 487f256be21c56b5cc05833793a91f9226f91bd5..8d3bdc2c389b7fcd901ec8efe4a22b43f884d99d 100644 (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();