mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-22 11:22:23 +00:00
Add missing translations
This commit is contained in:
parent
8f7e086f19
commit
5a01629128
@ -1,3 +1,7 @@
|
|||||||
|
Tue Nov 25 11:17:40 GMT 2008 Daniel P. Berrange <berrange@redhat.com>
|
||||||
|
|
||||||
|
* src/xm_internal.c: Add missing _(...) calls to diagnostics
|
||||||
|
|
||||||
Tue Nov 25 10:49:40 GMT 2008 Daniel P. Berrange <berrange@redhat.com>
|
Tue Nov 25 10:49:40 GMT 2008 Daniel P. Berrange <berrange@redhat.com>
|
||||||
|
|
||||||
* src/Makefile.am: Remove unneccessary $(builddir) usage which
|
* src/Makefile.am: Remove unneccessary $(builddir) usage which
|
||||||
|
@ -406,7 +406,7 @@ xenXMConfigCacheAddFile(virConnectPtr conn, const char *filename)
|
|||||||
/* Get modified time */
|
/* Get modified time */
|
||||||
if ((stat(filename, &st) < 0)) {
|
if ((stat(filename, &st) < 0)) {
|
||||||
xenXMError (conn, VIR_ERR_INTERNAL_ERROR,
|
xenXMError (conn, VIR_ERR_INTERNAL_ERROR,
|
||||||
"cannot stat %s: %s", filename, strerror(errno));
|
_("cannot stat %s: %s"), filename, strerror(errno));
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2729,7 +2729,7 @@ int xenXMDomainSetAutostart(virDomainPtr dom, int autostart)
|
|||||||
if (symlink(config, linkname) < 0 &&
|
if (symlink(config, linkname) < 0 &&
|
||||||
errno != EEXIST) {
|
errno != EEXIST) {
|
||||||
xenXMError(dom->conn, VIR_ERR_INTERNAL_ERROR,
|
xenXMError(dom->conn, VIR_ERR_INTERNAL_ERROR,
|
||||||
"failed to create link %s: %s",
|
_("failed to create link %s: %s"),
|
||||||
linkname, strerror(errno));
|
linkname, strerror(errno));
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
}
|
}
|
||||||
@ -2737,7 +2737,7 @@ int xenXMDomainSetAutostart(virDomainPtr dom, int autostart)
|
|||||||
if (unlink(linkname) < 0 &&
|
if (unlink(linkname) < 0 &&
|
||||||
errno != ENOENT) {
|
errno != ENOENT) {
|
||||||
xenXMError(dom->conn, VIR_ERR_INTERNAL_ERROR,
|
xenXMError(dom->conn, VIR_ERR_INTERNAL_ERROR,
|
||||||
"failed to remove link %s: %s",
|
_("failed to remove link %s: %s"),
|
||||||
linkname, strerror(errno));
|
linkname, strerror(errno));
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user