aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-tls-dialog.c
diff options
context:
space:
mode:
authorPhilip Withnall <philip.withnall@collabora.co.uk>2010-08-27 19:33:20 +0800
committerPhilip Withnall <philip.withnall@collabora.co.uk>2010-08-27 19:41:45 +0800
commit973ebccf5c1ba3664677a8c5d1bdfe52009f82be (patch)
tree874f3a040cf45f5c49f31236186d057c44a00a56 /libempathy-gtk/empathy-tls-dialog.c
parented67c7eca44a3d9891197aa02a14410e66227a1d (diff)
downloadgsoc2013-empathy-973ebccf5c1ba3664677a8c5d1bdfe52009f82be.tar
gsoc2013-empathy-973ebccf5c1ba3664677a8c5d1bdfe52009f82be.tar.gz
gsoc2013-empathy-973ebccf5c1ba3664677a8c5d1bdfe52009f82be.tar.bz2
gsoc2013-empathy-973ebccf5c1ba3664677a8c5d1bdfe52009f82be.tar.lz
gsoc2013-empathy-973ebccf5c1ba3664677a8c5d1bdfe52009f82be.tar.xz
gsoc2013-empathy-973ebccf5c1ba3664677a8c5d1bdfe52009f82be.tar.zst
gsoc2013-empathy-973ebccf5c1ba3664677a8c5d1bdfe52009f82be.zip
Bug 628064 — Miscellaneous string fixes
Diffstat (limited to 'libempathy-gtk/empathy-tls-dialog.c')
-rw-r--r--libempathy-gtk/empathy-tls-dialog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-tls-dialog.c b/libempathy-gtk/empathy-tls-dialog.c
index bcfe92e65..5e37532bf 100644
--- a/libempathy-gtk/empathy-tls-dialog.c
+++ b/libempathy-gtk/empathy-tls-dialog.c
@@ -157,7 +157,7 @@ reason_to_string (EmpathyTLSDialog *self)
"Authority");
break;
case EMP_TLS_CERTIFICATE_REJECT_REASON_EXPIRED:
- reason_str = _("The certificate is expired");
+ reason_str = _("The certificate has expired");
break;
case EMP_TLS_CERTIFICATE_REJECT_REASON_NOT_ACTIVATED:
reason_str = _("The certificate hasn't yet been activated");
@@ -266,7 +266,7 @@ empathy_tls_dialog_constructed (GObject *object)
text = reason_to_string (self);
g_object_set (message_dialog,
- "text", _("This connection is untrusted, would you like to "
+ "text", _("This connection is untrusted. Would you like to "
"continue anyway?"),
"secondary-text", text,
NULL);