summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJuan Pablo Ugarte <juanpablougarte@gmail.com>2014-03-30 17:41:17 -0300
committerJuan Pablo Ugarte <juanpablougarte@gmail.com>2014-03-30 17:41:17 -0300
commitad17ef8678666e29731b48c7c62bee3b378bc33b (patch)
treee6f783c55401bde752f0abfbd153076ed9a9eaff /src
parent8eebdf7d23cf3f54e17077b7e76aabd1ec401900 (diff)
downloadglade-ad17ef8678666e29731b48c7c62bee3b378bc33b.tar.gz
Fixed typo in error messages
Diffstat (limited to 'src')
-rw-r--r--src/glade-registration.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/glade-registration.c b/src/glade-registration.c
index ce0c94ec..cdefd3e2 100644
--- a/src/glade-registration.c
+++ b/src/glade-registration.c
@@ -428,16 +428,16 @@ on_http_request_done (GladeHTTP *http,
"%s", _("Name and Email fields are required"));
else if (g_strcmp0 (status, "error_email_in_use") == 0)
glade_registration_show_message (registration, GTK_MESSAGE_WARNING,
- "%s", _("Ops! Email address is already in use!\nTo update information you need to provide the token that was sent to your inbox."));
+ "%s", _("Oops! Email address is already in use!\nTo update information you need to provide the token that was sent to your inbox."));
else if (g_strcmp0 (status, "error_db_user_info") == 0)
glade_registration_show_message (registration, GTK_MESSAGE_WARNING,
- _("Ops! Error saving user information: %s"), message);
+ _("Oops! Error saving user information: %s"), message);
else if (g_strcmp0 (status, "error_db_survey_data") == 0)
glade_registration_show_message (registration, GTK_MESSAGE_WARNING,
- _("Ops! Error saving survey data: %s"), message);
+ _("Oops! Error saving survey data: %s"), message);
else if (g_strcmp0 (status, "error_db") == 0)
glade_registration_show_message (registration, GTK_MESSAGE_WARNING,
- _("Ops! Error accessing DB: %s"), message);
+ _("Oops! Error accessing DB: %s"), message);
else
glade_registration_show_message (registration, GTK_MESSAGE_WARNING, "%s", message);
}