aboutsummaryrefslogtreecommitdiffstats
path: root/composer/e-msg-composer.c
diff options
context:
space:
mode:
authorEnver ALTIN <enver.altin@frontsite.com.tr>2004-05-10 16:10:12 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-05-10 16:10:12 +0800
commit48a354b2a26da4dc36f08849ec276ab9abca14f7 (patch)
tree9425750f2b477baf88377521dd02d1baab64ed0b /composer/e-msg-composer.c
parent48141c859457cdb7aefde273b99067447220b85c (diff)
downloadgsoc2013-evolution-48a354b2a26da4dc36f08849ec276ab9abca14f7.tar
gsoc2013-evolution-48a354b2a26da4dc36f08849ec276ab9abca14f7.tar.gz
gsoc2013-evolution-48a354b2a26da4dc36f08849ec276ab9abca14f7.tar.bz2
gsoc2013-evolution-48a354b2a26da4dc36f08849ec276ab9abca14f7.tar.lz
gsoc2013-evolution-48a354b2a26da4dc36f08849ec276ab9abca14f7.tar.xz
gsoc2013-evolution-48a354b2a26da4dc36f08849ec276ab9abca14f7.tar.zst
gsoc2013-evolution-48a354b2a26da4dc36f08849ec276ab9abca14f7.zip
Fixing parts of #53466.
2004-05-08 Enver ALTIN <enver.altin@frontsite.com.tr> * e-msg-composer.c: Fixing parts of #53466. svn path=/trunk/; revision=25829
Diffstat (limited to 'composer/e-msg-composer.c')
-rw-r--r--composer/e-msg-composer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c
index 8dfdf82a2b..ef30c38ec4 100644
--- a/composer/e-msg-composer.c
+++ b/composer/e-msg-composer.c
@@ -700,13 +700,13 @@ build_message (EMsgComposer *composer, gboolean save_html_object_data)
if (composer->smime_sign
&& (hdrs->account == NULL || hdrs->account->smime_sign_key == NULL || hdrs->account->smime_sign_key[0] == 0)) {
- camel_exception_setv(&ex, 1, _("Cannot sign outgoing message: No signing certificate set for from account"));
+ camel_exception_setv(&ex, 1, _("Cannot sign outgoing message: No signing certificate set for this account"));
goto exception;
}
if (composer->smime_encrypt
&& (hdrs->account == NULL || hdrs->account->smime_sign_key == NULL || hdrs->account->smime_sign_key[0] == 0)) {
- camel_exception_setv(&ex, 1, _("Cannot encrypt outgoing message: No encryption certificate set for from account"));
+ camel_exception_setv(&ex, 1, _("Cannot encrypt outgoing message: No encryption certificate set for this account"));
goto exception;
}