summaryrefslogtreecommitdiff
path: root/gui/gdmcomm.c
diff options
context:
space:
mode:
authorBrian Cameron <brian.cameron@sun.com>2005-12-14 00:06:46 +0000
committerBrian Cameron <bcameron@src.gnome.org>2005-12-14 00:06:46 +0000
commitc0796968995b6702453d36f666f783a488530ff0 (patch)
tree5c9fbc39b0d07ff58fa80b5d64697cc1c6189ccd /gui/gdmcomm.c
parent3bdbec9f539b3345ac93934aba554124c1784f0e (diff)
downloadgdm-c0796968995b6702453d36f666f783a488530ff0.tar.gz
Now consistantly use "GDM" in strings instead of "gdm". Fixes bug #323221.
2005-12-13 Brian Cameron <brian.cameron@sun.com> * daemon/gdm.c, daemon/slave.c, daemon/verify-pam.c, gui/gdmXnestchooser.c, gui/gdmchooser.c, gui/gdmcomm.c, gui/gdmflexiserver.c, gui/gdmlogin.c, gui/gdmsetup.glade, gui/greeter/greeter.c: Now consistantly use "GDM" in strings instead of "gdm". Fixes bug #323221. Thanks to Adam Weinberger <adamw@gnome.org> for pointing this out.
Diffstat (limited to 'gui/gdmcomm.c')
-rw-r--r--gui/gdmcomm.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gui/gdmcomm.c b/gui/gdmcomm.c
index 2fc6891b..235241cb 100644
--- a/gui/gdmcomm.c
+++ b/gui/gdmcomm.c
@@ -458,10 +458,10 @@ gdmcomm_get_error_message (const char *ret, gboolean use_xnest)
{
/* These need a bit more refinement */
if (ret == NULL) {
- return _("Cannot communicate with gdm. Perhaps "
+ return _("Cannot communicate with GDM. Perhaps "
"you have an old version running.");
} else if (strncmp (ret, "ERROR 0 ", strlen ("ERROR 0 ")) == 0) {
- return _("Cannot communicate with gdm. Perhaps "
+ return _("Cannot communicate with GDM. Perhaps "
"you have an old version running.");
} else if (strncmp (ret, "ERROR 1 ", strlen ("ERROR 1 ")) == 0) {
return _("The allowed limit of flexible X servers reached.");
@@ -479,7 +479,7 @@ gdmcomm_get_error_message (const char *ret, gboolean use_xnest)
} else if (strncmp (ret, "ERROR 6 ", strlen ("ERROR 6 ")) == 0) {
if (use_xnest)
return _("The nested X server (Xnest) is not "
- "available, or gdm is badly configured.\n"
+ "available, or GDM is badly configured.\n"
"Please install the Xnest package in "
"order to use the nested login.");
else
@@ -499,7 +499,7 @@ gdmcomm_get_error_message (const char *ret, gboolean use_xnest)
"for this operation. Perhaps your .Xauthority "
"file is not set up correctly.");
} else if (strncmp (ret, "ERROR 200 ", strlen ("ERROR 200 ")) == 0) {
- return _("Too many messages were sent to gdm and it hung up"
+ return _("Too many messages were sent to GDM and it hung up "
"on us.");
} else {
return _("Unknown error occurred.");