]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Fix typos in messages.
authorYuri Chornoivan <yurchor@ukr.net>
Fri, 30 Dec 2011 14:22:43 +0000 (16:22 +0200)
committerEric Blake <eblake@redhat.com>
Wed, 4 Jan 2012 03:30:33 +0000 (20:30 -0700)
https://bugzilla.redhat.com/show_bug.cgi?id=770954

AUTHORS
docs/news.html.in
src/conf/domain_conf.c
src/esx/esx_storage_driver.c
src/libvirt.c
src/qemu/qemu_domain.c
src/qemu/qemu_monitor_json.c
src/test/test_driver.c
src/util/virnetdev.c
src/vbox/vbox_tmpl.c
tools/virsh.c

diff --git a/AUTHORS b/AUTHORS
index ba80739cc9559a1dad4e194ddaa6ed705c9ac870..d8599ed49c734a7a34e45d0dd420d4ebd9e027d5 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -213,6 +213,7 @@ Patches have also been contributed by:
   Prerna Saxena        <prerna@linux.vnet.ibm.com>
   Michael Ellerman     <michael@ellerman.id.au>
   Rommer               <rommer@active.by>
+  Yuri Chornoivan      <yurchor@ukr.net>
 
   [....send patches to get your name here....]
 
index f84215625574e270d83880206042c47fadf53e05..5e9cc08ee25751804714cd166020db9f7437ef17 100644 (file)
@@ -7337,7 +7337,7 @@ and check the <a href="http://libvirt.org/git/?p=libvirt.git;a=log">GIT log</a>
       from virsh (Saori Fukuta), Coverage files (Daniel Berrange),
       Solaris fixes (Mark Johnson), avoid [r]index calls (Richard Jones),
       release information in Xen backend, virsh cpupin command cleanups
-      (Masayuki Sunou), xen:/// suppport as standard Xen URI (Richard Jones and
+      (Masayuki Sunou), xen:/// support as standard Xen URI (Richard Jones and
       Daniel Berrange), improve driver selection/decline mechanism (Richard
       Jones), error reporting on XML dump (Richard Jones), Remove unused
       virDomainKernel structure (Richard Jones), daemon event loop event
index 21113c6cb5748fbffc2057ef85be770d6a660ee3..29966f1c05ae0da4209c2b8b88e859b8ad3fce19 100644 (file)
@@ -2941,7 +2941,7 @@ virDomainDiskDefParseXML(virCapsPtr caps,
 
                         if (authUUID != NULL && authUsage != NULL) {
                             virDomainReportError(VIR_ERR_XML_ERROR,
-                                                 _("only one of uuid and usage can be specfied"));
+                                                 _("only one of uuid and usage can be specified"));
                             goto error;
                         }
                         if (authUUID != NULL) {
index a56536d578dc862581adcf8b36dc4435c1c5e17e..96ef59aa2b55f738f4743d36753bf7633bf53833 100644 (file)
@@ -834,7 +834,7 @@ esxStorageVolumeLookupByKey(virConnectPtr conn, const char *key)
 
     if (!priv->primary->hasQueryVirtualDiskUuid) {
         ESX_ERROR(VIR_ERR_INTERNAL_ERROR, "%s",
-                  _("QueryVirtualDiskUuid not avialable, cannot lookup storage "
+                  _("QueryVirtualDiskUuid not available, cannot lookup storage "
                     "volume by UUID"));
         return NULL;
     }
index feb3ca67b5502f4940425cad90b2e91ea77d0030..c288f000caaa67d3f58cfb3ff95d5bbccee9c895 100644 (file)
@@ -1025,7 +1025,7 @@ virConnectOpenFindURIAliasMatch(virConfValuePtr value, const char *alias, char *
         safe  = strspn(entry->str, URI_ALIAS_CHARS);
         if (safe < (offset - entry->str)) {
             virLibConnError(VIR_ERR_CONF_SYNTAX,
-                            _("Malformed 'uri_aliases' config entry '%s', aliases may only container 'a-Z, 0-9, _, -'"),
+                            _("Malformed 'uri_aliases' config entry '%s', aliases may only contain 'a-Z, 0-9, _, -'"),
                             entry->str);
             return -1;
         }
@@ -10659,10 +10659,10 @@ virInterfaceFree(virInterfacePtr iface)
  * @conn: pointer to hypervisor connection
  * @flags: flags, not used yet
  *
- * This functions creates a restore point to which one can return
+ * This function creates a restore point to which one can return
  * later by calling virInterfaceChangeRollback(). This function should
  * be called before any transaction with interface configuration.
- * Once knowing, new configuration works, it can be commited via
+ * Once it is known that a new configuration works, it can be committed via
  * virInterfaceChangeCommit(), which frees the restore point.
  *
  * If virInterfaceChangeBegin() is called when a transaction is
index 2d612fe40dc140a40eca2074a637b40472d6532b..c5b08f95528c2fbe3a37a356a4860a417043e451 100644 (file)
@@ -892,7 +892,7 @@ qemuDomainObjEnterMonitorInternal(struct qemud_driver *driver,
     if (asyncJob != QEMU_ASYNC_JOB_NONE) {
         if (asyncJob != priv->job.asyncJob) {
             qemuReportError(VIR_ERR_INTERNAL_ERROR,
-                            _("unepxected async job %d"), asyncJob);
+                            _("unexpected async job %d"), asyncJob);
             return -1;
         }
         if (qemuDomainObjBeginJobInternal(driver, driver_locked, obj,
index 1ef3e84747f8d168306dc1da0f0fd0285ed4289a..7eb2a9219c2fb344d0715fd962426ebb1bcc776a 100644 (file)
@@ -2338,7 +2338,7 @@ int qemuMonitorJSONAddUSBDisk(qemuMonitorPtr mon ATTRIBUTE_UNUSED,
                               const char *path ATTRIBUTE_UNUSED)
 {
     qemuReportError(VIR_ERR_INTERNAL_ERROR, "%s",
-                    _("usb_add not suppported in JSON mode"));
+                    _("usb_add not supported in JSON mode"));
     return -1;
 }
 
@@ -2348,7 +2348,7 @@ int qemuMonitorJSONAddUSBDeviceExact(qemuMonitorPtr mon ATTRIBUTE_UNUSED,
                                      int dev ATTRIBUTE_UNUSED)
 {
     qemuReportError(VIR_ERR_INTERNAL_ERROR, "%s",
-                    _("usb_add not suppported in JSON mode"));
+                    _("usb_add not supported in JSON mode"));
     return -1;
 }
 
@@ -2358,7 +2358,7 @@ int qemuMonitorJSONAddUSBDeviceMatch(qemuMonitorPtr mon ATTRIBUTE_UNUSED,
                                      int product ATTRIBUTE_UNUSED)
 {
     qemuReportError(VIR_ERR_INTERNAL_ERROR, "%s",
-                    _("usb_add not suppported in JSON mode"));
+                    _("usb_add not supported in JSON mode"));
     return -1;
 }
 
@@ -2368,7 +2368,7 @@ int qemuMonitorJSONAddPCIHostDevice(qemuMonitorPtr mon ATTRIBUTE_UNUSED,
                                     virDomainDevicePCIAddress *guestAddr ATTRIBUTE_UNUSED)
 {
     qemuReportError(VIR_ERR_INTERNAL_ERROR, "%s",
-                    _("pci_add not suppported in JSON mode"));
+                    _("pci_add not supported in JSON mode"));
     return -1;
 }
 
@@ -2379,7 +2379,7 @@ int qemuMonitorJSONAddPCIDisk(qemuMonitorPtr mon ATTRIBUTE_UNUSED,
                               virDomainDevicePCIAddress *guestAddr ATTRIBUTE_UNUSED)
 {
     qemuReportError(VIR_ERR_INTERNAL_ERROR, "%s",
-                    _("pci_add not suppported in JSON mode"));
+                    _("pci_add not supported in JSON mode"));
     return -1;
 }
 
@@ -2389,7 +2389,7 @@ int qemuMonitorJSONAddPCINetwork(qemuMonitorPtr mon ATTRIBUTE_UNUSED,
                                  virDomainDevicePCIAddress *guestAddr ATTRIBUTE_UNUSED)
 {
     qemuReportError(VIR_ERR_INTERNAL_ERROR, "%s",
-                    _("pci_add not suppported in JSON mode"));
+                    _("pci_add not supported in JSON mode"));
     return -1;
 }
 
@@ -2398,7 +2398,7 @@ int qemuMonitorJSONRemovePCIDevice(qemuMonitorPtr mon ATTRIBUTE_UNUSED,
                                    virDomainDevicePCIAddress *guestAddr ATTRIBUTE_UNUSED)
 {
     qemuReportError(VIR_ERR_INTERNAL_ERROR, "%s",
-                    _("pci_del not suppported in JSON mode"));
+                    _("pci_del not supported in JSON mode"));
     return -1;
 }
 
@@ -2655,7 +2655,7 @@ int qemuMonitorJSONAttachPCIDiskController(qemuMonitorPtr mon ATTRIBUTE_UNUSED,
                                            virDomainDevicePCIAddress *guestAddr ATTRIBUTE_UNUSED)
 {
     qemuReportError(VIR_ERR_INTERNAL_ERROR, "%s",
-                    _("pci_add not suppported in JSON mode"));
+                    _("pci_add not supported in JSON mode"));
     return -1;
 }
 
@@ -2732,7 +2732,7 @@ int qemuMonitorJSONGetAllPCIAddresses(qemuMonitorPtr mon ATTRIBUTE_UNUSED,
                                       qemuMonitorPCIAddress **addrs ATTRIBUTE_UNUSED)
 {
     qemuReportError(VIR_ERR_INTERNAL_ERROR, "%s",
-                    _("query-pci not suppported in JSON mode"));
+                    _("query-pci not supported in JSON mode"));
     return -1;
 }
 
@@ -3196,7 +3196,7 @@ static int qemuMonitorJSONGetBlockJobInfo(virJSONValuePtr reply,
 
     if (data->type != VIR_JSON_TYPE_ARRAY) {
         qemuReportError(VIR_ERR_INTERNAL_ERROR, "%s",
-                        _("urecognized format of block job information"));
+                        _("unrecognized format of block job information"));
         return -1;
     }
 
index 44aef3f8c39c26c5dbef8773224795f482ae1ac3..0c88bcfc29766a7ac1e28e203bbcd4dcaffbd126 100644 (file)
@@ -3555,7 +3555,7 @@ static int testInterfaceChangeCommit(virConnectPtr conn,
 
     if (!privconn->transaction_running) {
         testError(VIR_ERR_OPERATION_INVALID, _("no transaction running, "
-                  "nothing to be commited."));
+                  "nothing to be committed."));
         goto cleanup;
     }
 
index fee87ef3bb479263f2662abb8079c908503deefa..115f46ae341b81e8c92927522332d26d8e12acde 100644 (file)
@@ -900,7 +900,7 @@ int virNetDevValidateConfig(const char *ifname,
                 goto cleanup;
             }
             virReportSystemError(errno,
-                                 _("coud not get MAC address of interface %s"),
+                                 _("could not get MAC address of interface %s"),
                                  ifname);
             goto cleanup;
         }
@@ -1060,7 +1060,7 @@ int
 virNetDevIsVirtualFunction(const char *ifname ATTRIBUTE_UNUSED)
 {
     virReportSystemError(ENOSYS, "%s",
-                         _("Unable to check virtual function status on this platfornm"));
+                         _("Unable to check virtual function status on this platform"));
     return -1;
 }
 
@@ -1070,7 +1070,7 @@ virNetDevGetVirtualFunctionIndex(const char *pfname ATTRIBUTE_UNUSED,
                              int *vf_index ATTRIBUTE_UNUSED)
 {
     virReportSystemError(ENOSYS, "%s",
-                         _("Unable to get virtual function index on this platfornm"));
+                         _("Unable to get virtual function index on this platform"));
     return -1;
 }
 
@@ -1079,7 +1079,7 @@ virNetDevGetPhysicalFunction(const char *ifname ATTRIBUTE_UNUSED,
                              char **pfname ATTRIBUTE_UNUSED)
 {
     virReportSystemError(ENOSYS, "%s",
-                         _("Unable to get physical function status on this platfornm"));
+                         _("Unable to get physical function status on this platform"));
     return -1;
 }
 #endif /* !__linux__ */
index d2ef7407ab7bba9e3c2a44c327af338575dc3310..9909d13af3dc0b42eee9ecb3c360a44490f470d6 100644 (file)
@@ -948,7 +948,7 @@ static int vboxExtractVersion(vboxGlobalData *data) {
 
     if (ret != 0)
         vboxError(VIR_ERR_INTERNAL_ERROR, "%s",
-                  _("Cound not extract VirtualBox version"));
+                  _("Could not extract VirtualBox version"));
 
     return ret;
 }
index 0bc05196b6ff44ef541ad936a37ffb54f5248070..e4b812e92a73f098fd6f4db71917fc9c6b1972b9 100644 (file)
@@ -1803,7 +1803,7 @@ cleanup:
  */
 static const vshCmdInfo info_dommemstat[] = {
     {"help", N_("get memory statistics for a domain")},
-    {"desc", N_("Get memory statistics for a runnng domain.")},
+    {"desc", N_("Get memory statistics for a running domain.")},
     {NULL,NULL}
 };
 
@@ -6774,7 +6774,7 @@ static const vshCmdInfo info_block_job[] = {
 static const vshCmdOptDef opts_block_job[] = {
     {"domain", VSH_OT_DATA, VSH_OFLAG_REQ, N_("domain name, id or uuid")},
     {"path", VSH_OT_DATA, VSH_OFLAG_REQ, N_("Fully-qualified path of disk")},
-    {"abort", VSH_OT_BOOL, VSH_OFLAG_NONE, N_("Abort the active job on the speficied disk")},
+    {"abort", VSH_OT_BOOL, VSH_OFLAG_NONE, N_("Abort the active job on the specified disk")},
     {"info", VSH_OT_BOOL, VSH_OFLAG_NONE, N_("Get active job information for the specified disk")},
     {"bandwidth", VSH_OT_DATA, VSH_OFLAG_NONE, N_("Set the Bandwidth limit in MB/s")},
     {NULL, 0, 0, NULL}
@@ -8125,7 +8125,7 @@ cmdInterfaceDestroy(vshControl *ctl, const vshCmd *cmd)
  */
 static const vshCmdInfo info_interface_begin[] = {
     {"help", N_("create a snapshot of current interfaces settings, "
-                "which can be later commited (iface-commit) or "
+                "which can be later committed (iface-commit) or "
                 "restored (iface-rollback)")},
     {"desc", N_("Create a restore point for interfaces settings")},
     {NULL, NULL}
@@ -8508,7 +8508,7 @@ cmdInterfaceUnbridge(vshControl *ctl, const vshCmd *cmd)
     }
 
     if ((if_node = virXPathNode("./bridge/interface[2]", ctxt))) {
-        vshError(ctl, "%s", _("Multiple interfaecs attached to bridge"));
+        vshError(ctl, "%s", _("Multiple interfaces attached to bridge"));
         goto cleanup;
     }