aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
authorDiego Escalante Urrelo <diegoe@src.gnome.org>2008-10-13 08:57:41 +0800
committerDiego Escalante Urrelo <diegoe@src.gnome.org>2008-10-13 08:57:41 +0800
commit1b94b227c38d6cf95d71f453e27692c4f394cd93 (patch)
treea034490d6cba87d58d7ed9b7a0ec0eb761f2ca9d /embed
parent5acfaa6a37b690b98b23cda78f63c85d9fe78a45 (diff)
downloadgsoc2013-epiphany-1b94b227c38d6cf95d71f453e27692c4f394cd93.tar
gsoc2013-epiphany-1b94b227c38d6cf95d71f453e27692c4f394cd93.tar.gz
gsoc2013-epiphany-1b94b227c38d6cf95d71f453e27692c4f394cd93.tar.bz2
gsoc2013-epiphany-1b94b227c38d6cf95d71f453e27692c4f394cd93.tar.lz
gsoc2013-epiphany-1b94b227c38d6cf95d71f453e27692c4f394cd93.tar.xz
gsoc2013-epiphany-1b94b227c38d6cf95d71f453e27692c4f394cd93.tar.zst
gsoc2013-epiphany-1b94b227c38d6cf95d71f453e27692c4f394cd93.zip
Use 'while' instead of 'whilst' in error messages.
Closes: bug #543335. Original patch by César Muñoz Albitres. svn path=/branches/gnome-2-24/; revision=8580
Diffstat (limited to 'embed')
-rw-r--r--embed/mozilla/EphyAboutModule.cpp4
-rw-r--r--embed/xulrunner/components/EphyAboutModule.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/embed/mozilla/EphyAboutModule.cpp b/embed/mozilla/EphyAboutModule.cpp
index 8ced9bc9b..6c27f3900 100644
--- a/embed/mozilla/EphyAboutModule.cpp
+++ b/embed/mozilla/EphyAboutModule.cpp
@@ -432,8 +432,8 @@ EphyAboutModule::GetErrorMessage(nsIURI *aURI,
/* Error is a bit too strong here */
*aStockIcon = GTK_STOCK_DIALOG_INFO;
- *aTitle = g_strdup (_("Cannot Load Document Whilst Working Offline"));
- *aPrimary = g_strdup (_("Cannot load document whilst working offline."));
+ *aTitle = g_strdup (_("Cannot Load Document While Working Offline"));
+ *aPrimary = g_strdup (_("Cannot load document while working offline."));
*aSecondary = g_strdup (_("To view this document, disable “Work Offline” and try again."));
}
else if (strcmp (aError, "deniedPortAccess") == 0)
diff --git a/embed/xulrunner/components/EphyAboutModule.cpp b/embed/xulrunner/components/EphyAboutModule.cpp
index 78ce93bec..302ff378c 100644
--- a/embed/xulrunner/components/EphyAboutModule.cpp
+++ b/embed/xulrunner/components/EphyAboutModule.cpp
@@ -404,8 +404,8 @@ EphyAboutModule::GetErrorMessage(nsIURI *aURI,
/* Error is a bit too strong here */
*aStockIcon = GTK_STOCK_DIALOG_INFO;
- *aTitle = g_strdup (_("Cannot Load Document Whilst Working Offline"));
- *aPrimary = g_strdup (_("Cannot load document whilst working offline."));
+ *aTitle = g_strdup (_("Cannot Load Document While Working Offline"));
+ *aPrimary = g_strdup (_("Cannot load document while working offline."));
*aSecondary = g_strdup (_("To view this document, disable “Work Offline” and try again."));
}
else if (strcmp (aError, "deniedPortAccess") == 0)