From: Paul Mangan Date: Mon, 24 Nov 2003 12:53:36 +0000 (+0000) Subject: fix typo X-Git-Tag: rel_0_9_7~10 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=2bc03b7fd327461fbc4f35e666081fbda6481c50 fix typo --- diff --git a/ChangeLog.claws b/ChangeLog.claws index bbddc3a45..e65e4fd5c 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,8 @@ +2003-11-24 [paul] 0.9.6claws91 + + * src/sgpgme.c + fix typo. spotted by Rui Hirokawa + 2003-11-24 [paul] 0.9.6claws90 * src/plugins/image_viewer/viewer.c diff --git a/configure.ac b/configure.ac index 6fa4f8ade..d94a550e2 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=9 MICRO_VERSION=6 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=90 +EXTRA_VERSION=91 if test $EXTRA_VERSION -eq 0; then VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}claws else diff --git a/src/sgpgme.c b/src/sgpgme.c index 258bbad69..1fa2761d9 100644 --- a/src/sgpgme.c +++ b/src/sgpgme.c @@ -128,7 +128,7 @@ gchar *sgpgme_sigstat_info_short(GpgmeCtx ctx, GpgmeSigStat status) case GPGME_SIG_STAT_NOKEY: return g_strdup(_("You have no key to verify this signature")); case GPGME_SIG_STAT_NOSIG: - return g_strdup(_("Bo signature found")); + return g_strdup(_("No signature found")); case GPGME_SIG_STAT_ERROR: return g_strdup(_("An error occured")); case GPGME_SIG_STAT_NONE: