if (openvzExtractVersionInfo(VZCTL, &driver->version) < 0) {
openvzError(conn, VIR_ERR_INTERNAL_ERROR,
- "%s", _("Cound not extract vzctl version"));
+ "%s", _("Could not extract vzctl version"));
return -1;
}
ret = openvzReadVPSConfigParam(veid, "IP_ADDRESS", temp, sizeof(temp));
if (ret < 0) {
openvzError(conn, VIR_ERR_INTERNAL_ERROR,
- _("Cound not read 'IP_ADDRESS' from config for container %d"),
+ _("Could not read 'IP_ADDRESS' from config for container %d"),
veid);
goto error;
} else if (ret > 0) {
ret = openvzReadVPSConfigParam(veid, "NETIF", temp, sizeof(temp));
if (ret < 0) {
openvzError(conn, VIR_ERR_INTERNAL_ERROR,
- _("Cound not read 'NETIF' from config for container %d"),
+ _("Could not read 'NETIF' from config for container %d"),
veid);
goto error;
} else if (ret > 0) {
ret = openvzReadVPSConfigParam(veid, "OSTEMPLATE", temp, sizeof(temp));
if (ret < 0) {
openvzError(conn, VIR_ERR_INTERNAL_ERROR,
- _("Cound not read 'OSTEMPLATE' from config for container %d"),
+ _("Could not read 'OSTEMPLATE' from config for container %d"),
veid);
goto error;
} else if (ret > 0) {
ret = openvzReadVPSConfigParam(veid, "VE_PRIVATE", temp, sizeof(temp));
if (ret <= 0) {
openvzError(conn, VIR_ERR_INTERNAL_ERROR,
- _("Cound not read 'VE_PRIVATE' from config for container %d"),
+ _("Could not read 'VE_PRIVATE' from config for container %d"),
veid);
goto error;
}
ret = openvzReadVPSConfigParam(veid, "CPUS", temp, sizeof(temp));
if (ret < 0) {
openvzError(NULL, VIR_ERR_INTERNAL_ERROR,
- _("Cound not read config for container %d"),
+ _("Could not read config for container %d"),
veid);
goto cleanup;
} else if (ret > 0) {
if (virNodeInfoPopulate(NULL, &nodeinfo) < 0) {
openvzError(NULL, VIR_ERR_INTERNAL_ERROR,
- "%s", _("Cound not read nodeinfo"));
+ "%s", _("Could not read nodeinfo"));
return 0;
}
* "nodedev-dettach" command
*/
static const vshCmdInfo info_node_device_dettach[] = {
- {"help", gettext_noop("dettach node device its device driver")},
- {"desc", gettext_noop("Dettach node device its device driver before assigning to a domain.")},
+ {"help", gettext_noop("dettach node device from its device driver")},
+ {"desc", gettext_noop("Dettach node device from its device driver before assigning to a domain.")},
{NULL, NULL}
};
* "nodedev-reattach" command
*/
static const vshCmdInfo info_node_device_reattach[] = {
- {"help", gettext_noop("reattach node device its device driver")},
- {"desc", gettext_noop("Dettach node device its device driver before assigning to a domain.")},
+ {"help", gettext_noop("reattach node device to its device driver")},
+ {"desc", gettext_noop("Reattach node device to its device driver once released by the domain.")},
{NULL, NULL}
};