+2011-08-27 [paul] 3.7.10cvs1
+
+ * po/POTFILES.in
+ * src/common/ssl_certificate.c
+ * src/etpan/imap-thread.c
+ * src/etpan/nntp-thread.c
+ offer up some missing log_error() strings to translators
+
2011-08-27 [paul] 3.7.10
* NEWS
* README
( cvs diff -u -r 1.9.2.43 -r 1.9.2.44 src/common/ssl.c; ) > 3.7.9cvs50.patchset
( cvs diff -u -r 1.1.2.6 -r 1.1.2.7 claws-mail.desktop; ) > 3.7.9cvs51.patchset
( cvs diff -u -r 1.9.2.22 -r 1.9.2.23 po/cs.po; cvs diff -u -r 1.42.2.54 -r 1.42.2.55 po/fr.po; cvs diff -u -r 1.5.2.19 -r 1.5.2.20 po/hu.po; cvs diff -u -r 1.1.2.3 -r 1.1.2.4 po/lt.po; cvs diff -u -r 1.50.2.41 -r 1.50.2.42 po/pt_BR.po; cvs diff -u -r 1.2.2.33 -r 1.2.2.34 po/sk.po; ) > 3.7.9cvs52.patchset
+( cvs diff -u -r 1.53.2.37 -r 1.53.2.38 po/POTFILES.in; cvs diff -u -r 1.4.2.38 -r 1.4.2.39 src/common/ssl_certificate.c; cvs diff -u -r 1.1.4.114 -r 1.1.4.115 src/etpan/imap-thread.c; cvs diff -u -r 1.1.2.16 -r 1.1.2.17 src/etpan/nntp-thread.c; ) > 3.7.10cvs1.patchset
MICRO_VERSION=10
INTERFACE_AGE=0
BINARY_AGE=0
-EXTRA_VERSION=0
+EXTRA_VERSION=1
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=
src/editldap.c
src/edittags.c
src/editvcard.c
+src/etpan/imap-thread.c
+src/etpan/nntp-thread.c
src/exphtmldlg.c
src/expldifdlg.c
src/export.c
return x509;
}
} else {
- log_error(LOG_PROTOCOL, "Can not open certificate file %s\n", file);
+ log_error(LOG_PROTOCOL, _("Cannot open certificate file %s\n"), file);
}
return NULL;
}
return key;
}
} else {
- log_error(LOG_PROTOCOL, "Can not open key file %s\n", file);
+ log_error(LOG_PROTOCOL, _("Cannot open key file %s\n"), file);
}
return NULL;
}
fclose(fp);
}
} else {
- log_error(LOG_PROTOCOL, "Can not open certificate file %s\n", file);
+ log_error(LOG_PROTOCOL, _("Cannot open certificate file %s\n"), file);
}
if (p12 != NULL) {
if ((r = parse_pkcs12(p12, password, pkey, x509)) == 0) {
#ifdef HAVE_LIBETPAN
+#include <glib.h>
+#include <glib/gi18n.h>
#include "imap-thread.h"
#include <imap.h>
#include <sys/types.h>
if (x509_len > 0 && pkey_len > 0) {
if (mailstream_ssl_set_client_certificate_data(ssl_context, x509_der, x509_len) < 0 ||
mailstream_ssl_set_client_private_key_data(ssl_context, pkey_der, pkey_len) < 0)
- log_error(LOG_PROTOCOL, "Impossible to set the client certificate.\n");
+ log_error(LOG_PROTOCOL, _("Impossible to set the client certificate.\n"));
g_free(x509_der);
g_free(pkey_der);
}
#ifdef HAVE_LIBETPAN
+#include <glib.h>
+#include <glib/gi18n.h>
#include "nntp-thread.h"
#include "news.h"
#include <sys/types.h>
if (x509_len > 0 && pkey_len > 0) {
if (mailstream_ssl_set_client_certificate_data(ssl_context, x509_der, x509_len) < 0 ||
mailstream_ssl_set_client_private_key_data(ssl_context, pkey_der, pkey_len) < 0)
- log_error(LOG_PROTOCOL, "Impossible to set the client certificate.\n");
+ log_error(LOG_PROTOCOL, _("Impossible to set the client certificate.\n"));
g_free(x509_der);
g_free(pkey_der);
}