]> xenbits.xensource.com Git - libvirt.git/commitdiff
Fix a few typo in translated strings
authorDaniel Veillard <veillard@redhat.com>
Mon, 12 Mar 2012 09:41:26 +0000 (17:41 +0800)
committerDaniel Veillard <veillard@redhat.com>
Mon, 12 Mar 2012 09:41:26 +0000 (17:41 +0800)
this was raised by our hindi localization team
chandan kumar <chandankumar.093047@gmail.com>

src/lxc/lxc_controller.c
src/qemu/qemu_command.c
src/qemu/qemu_monitor_json.c

index 8f336f5d236d32e68c25324457ad24052b52fa2c..bbc9d9c12c47d67bf17ec13acb84d6578b90e3d3 100644 (file)
@@ -1591,14 +1591,14 @@ lxcControllerRun(virDomainDefPtr def,
     if (virSetBlocking(monitor, false) < 0 ||
         virSetBlocking(client, false) < 0) {
         virReportSystemError(errno, "%s",
-                             _("Unable to set file descriptor non blocking"));
+                             _("Unable to set file descriptor non-blocking"));
         goto cleanup;
     }
     for (i = 0 ; i < nttyFDs ; i++) {
         if (virSetBlocking(ttyFDs[i], false) < 0 ||
             virSetBlocking(containerTtyFDs[i], false) < 0) {
             virReportSystemError(errno, "%s",
-                                 _("Unable to set file descriptor non blocking"));
+                                 _("Unable to set file descriptor non-blocking"));
             goto cleanup;
         }
     }
index 6ec1eb9ac819a57dd6e97b7cad79a5fe638792c5..996763c661565fc8b4ca8a1f5e556e3e21ef00fb 100644 (file)
@@ -866,7 +866,7 @@ static int qemuCollectPCIAddress(virDomainDefPtr def ATTRIBUTE_UNUSED,
         if (info->addr.pci.function != 0) {
             qemuReportError(VIR_ERR_XML_ERROR,
                             _("Attempted double use of PCI Address '%s' "
-                              "(may need \"multifunction='on'\" for device on function 0"),
+                              "(may need \"multifunction='on'\" for device on function 0)"),
                             addr);
         } else {
             qemuReportError(VIR_ERR_XML_ERROR,
index afd744adc8aa400f6a8198381e6bd4a67b8b329d..1a0ee946462023f6b4af026582081370e408a871 100644 (file)
@@ -3356,13 +3356,13 @@ qemuMonitorJSONBlockIoThrottleInfo(virJSONValuePtr result,
 
         if (!temp_dev || temp_dev->type != VIR_JSON_TYPE_OBJECT) {
             qemuReportError(VIR_ERR_INTERNAL_ERROR, "%s",
-                            _("block io throttle device entry was not in expected format"));
+                            _("block_io_throttle device entry was not in expected format"));
             goto cleanup;
         }
 
         if ((current_dev = virJSONValueObjectGetString(temp_dev, "device")) == NULL) {
             qemuReportError(VIR_ERR_INTERNAL_ERROR, "%s",
-                            _("block io throttle device entry was not in expected format"));
+                            _("block_io_throttle device entry was not in expected format"));
             goto cleanup;
         }
 
@@ -3376,7 +3376,7 @@ qemuMonitorJSONBlockIoThrottleInfo(virJSONValuePtr result,
         if ((inserted = virJSONValueObjectGet(temp_dev, "inserted")) == NULL ||
             inserted->type != VIR_JSON_TYPE_OBJECT) {
             qemuReportError(VIR_ERR_INTERNAL_ERROR, "%s",
-                            _("block io throttle inserted entry was not in expected format"));
+                            _("block_io_throttle inserted entry was not in expected format"));
             goto cleanup;
         }