+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>
* src/Makefile.am: Remove unneccessary $(builddir) usage which
/* Get modified time */
if ((stat(filename, &st) < 0)) {
xenXMError (conn, VIR_ERR_INTERNAL_ERROR,
- "cannot stat %s: %s", filename, strerror(errno));
+ _("cannot stat %s: %s"), filename, strerror(errno));
return -1;
}
if (symlink(config, linkname) < 0 &&
errno != EEXIST) {
xenXMError(dom->conn, VIR_ERR_INTERNAL_ERROR,
- "failed to create link %s: %s",
+ _("failed to create link %s: %s"),
linkname, strerror(errno));
goto cleanup;
}
if (unlink(linkname) < 0 &&
errno != ENOENT) {
xenXMError(dom->conn, VIR_ERR_INTERNAL_ERROR,
- "failed to remove link %s: %s",
+ _("failed to remove link %s: %s"),
linkname, strerror(errno));
goto cleanup;
}