[pan2] Edit strings



commit ca5c4b2ff5793f55e2a9a906e342796ba90505b5
Author: Petr Kovar <pknbe volny cz>
Date:   Mon Feb 29 18:34:36 2016 +0100

    Edit strings

 pan/data/cert-store.cc |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/pan/data/cert-store.cc b/pan/data/cert-store.cc
index 7e928fa..7616087 100644
--- a/pan/data/cert-store.cc
+++ b/pan/data/cert-store.cc
@@ -99,7 +99,7 @@ int verify_callback(gnutls_session_t session) {
 
        if (status & GNUTLS_CERT_SIGNER_NOT_FOUND) {
                if (!mydata->always_trust) {
-                       g_warning("The certificate hasn't got a known issuer.\n");
+                       g_warning("The certificate has not got a known issuer.\n");
                        fail = true;
                }
        }
@@ -359,7 +359,7 @@ bool CertStore::add(gnutls_x509_crt_t cert, const Quark& server) {
        rc2 = gnutls_x509_crt_export(cert, GNUTLS_X509_FMT_PEM, out, &outsize);
 
        if (rc2 != 0) {
-       Log::add_err_va (_("Couldn't export certificate for server: %s"), addr.c_str());
+       Log::add_err_va (_("Could not export certificate for server: %s"), addr.c_str());
        } else {
        fputs((const char*) out, fp);
        }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]