aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-account-assistant.c
diff options
context:
space:
mode:
authorPhilip Withnall <philip@tecnocode.co.uk>2010-01-01 02:08:40 +0800
committerJonny Lamb <jonny.lamb@collabora.co.uk>2010-01-01 23:06:58 +0800
commit89d36ccc021bd173e95e62326cb84b7f873c123f (patch)
tree39da8f21ab15fbf908207fd12bb2771721029e8c /src/empathy-account-assistant.c
parent3fa03d64274f3fa8b939991e3e61d9cdeeffb5ff (diff)
downloadgsoc2013-empathy-89d36ccc021bd173e95e62326cb84b7f873c123f.tar
gsoc2013-empathy-89d36ccc021bd173e95e62326cb84b7f873c123f.tar.gz
gsoc2013-empathy-89d36ccc021bd173e95e62326cb84b7f873c123f.tar.bz2
gsoc2013-empathy-89d36ccc021bd173e95e62326cb84b7f873c123f.tar.lz
gsoc2013-empathy-89d36ccc021bd173e95e62326cb84b7f873c123f.tar.xz
gsoc2013-empathy-89d36ccc021bd173e95e62326cb84b7f873c123f.tar.zst
gsoc2013-empathy-89d36ccc021bd173e95e62326cb84b7f873c123f.zip
Miscellaneous string fixes
Lots of small spelling and grammar fixes, as well as some terminology cleanups. Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
Diffstat (limited to 'src/empathy-account-assistant.c')
-rw-r--r--src/empathy-account-assistant.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/empathy-account-assistant.c b/src/empathy-account-assistant.c
index 6c43f447d..eecbb5d7b 100644
--- a/src/empathy-account-assistant.c
+++ b/src/empathy-account-assistant.c
@@ -115,15 +115,15 @@ account_assistant_build_error_page (EmpathyAccountAssistant *self,
gtk_widget_show (w);
if (page_num == PAGE_IMPORT)
- message = _("There has been an error while importing the accounts.");
+ message = _("There was an error while importing the accounts.");
else if (page_num >= PAGE_ENTER_CREATE &&
priv->first_resp == RESPONSE_ENTER_ACCOUNT)
- message = _("There has been an error while parsing the account details.");
+ message = _("There was an error while parsing the account details.");
else if (page_num >= PAGE_ENTER_CREATE &&
priv->first_resp == RESPONSE_CREATE_ACCOUNT)
- message = _("There has been an error while creating the account.");
+ message = _("There was an error while creating the account.");
else
- message = _("There has been an error.");
+ message = _("There was an error.");
w = gtk_label_new (message);
gtk_box_pack_start (GTK_BOX (hbox), w, FALSE, FALSE, 0);