summaryrefslogtreecommitdiff
path: root/daemon/auth.c
diff options
context:
space:
mode:
authorGeorge Lebl <jirka@5z.com>2004-05-27 01:23:33 +0000
committerGeorge Lebl <jirka@src.gnome.org>2004-05-27 01:23:33 +0000
commitfd955b67ade9f7d91fb084104ab52abafeb730c2 (patch)
tree2201e7cce44bc5d858df263c88e34e9b29b1e3df /daemon/auth.c
parent883d9163c7dee217368dba102ee9e0d4ac2e669a (diff)
downloadgdm-fd955b67ade9f7d91fb084104ab52abafeb730c2.tar.gz
Add a daemon/ConsoleCannotHandle key which lists languages which should
Wed May 26 18:23:14 2004 George Lebl <jirka@5z.com> * daemon/auth.c, daemon/display.c, daemon/gdm.[ch], daemon/misc.[ch], daemon/server.c, daemon/slave.c, daemon/verify-pam.c, docs/C/gdm.xml, config/gdm.conf.in: Add a daemon/ConsoleCannotHandle key which lists languages which should not be used on the console because they won't work. Uses "C" locale strings instead then. Should "fix" #135387, but I suppose there's no clean way to do this, just let the distributors ship proper config files and have them test it (yeah right). I've tested the current set on RH9 and I listed all of the ones that didn't work.
Diffstat (limited to 'daemon/auth.c')
-rw-r--r--daemon/auth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/daemon/auth.c b/daemon/auth.c
index cae31eb2..7b0e8a60 100644
--- a/daemon/auth.c
+++ b/daemon/auth.c
@@ -71,8 +71,8 @@ display_add_error (GdmDisplay *d)
"add_auth_entry");
if (d->console) {
char *s = g_strdup_printf
- (_("GDM could not write a new authorization "
- "entry to disk. Possibly out of diskspace.%s%s"),
+ (C_(N_("GDM could not write a new authorization "
+ "entry to disk. Possibly out of diskspace.%s%s")),
errno != 0 ? " Error: " : "",
errno != 0 ? strerror (errno) : "");
gdm_text_message_dialog (s);