gdm r5653 - in trunk: . daemon
- From: mccann svn gnome org
- To: svn-commits-list gnome org
- Subject: gdm r5653 - in trunk: . daemon
- Date: Thu, 31 Jan 2008 18:23:15 +0000 (GMT)
Author: mccann
Date: Thu Jan 31 18:23:14 2008
New Revision: 5653
URL: http://svn.gnome.org/viewvc/gdm?rev=5653&view=rev
Log:
2008-01-31 William Jon McCann <mccann jhu edu>
* daemon/gdm-session-worker.c: (gdm_session_worker_initialize_pam),
(_open_session_log):
Don't translate some warnings that have problematic translations.
Fixes #507531
Modified:
trunk/ChangeLog
trunk/daemon/gdm-session-worker.c
Modified: trunk/daemon/gdm-session-worker.c
==============================================================================
--- trunk/daemon/gdm-session-worker.c (original)
+++ trunk/daemon/gdm-session-worker.c Thu Jan 31 18:23:14 2008
@@ -831,7 +831,7 @@
&worker->priv->pam_handle);
if (error_code != PAM_SUCCESS) {
- g_debug ("GdmSessionWorker: could not initialize pam");
+ g_debug ("GdmSessionWorker: could not initialize PAM");
/* we don't use pam_strerror here because it requires a valid
* pam handle, and if pam_start fails pam_handle is undefined
*/
@@ -842,7 +842,7 @@
error_code == PAM_ABORT? _("general failure") :
error_code == PAM_BUF_ERR? _("out of memory") :
error_code == PAM_SYSTEM_ERR? _("application programmer error") :
- _("unscoped error"));
+ _("unknown error"));
goto out;
}
@@ -1291,8 +1291,7 @@
goto out;
}
- g_warning (_("session log '%s' is not a normal file, "
- "logging session to '%s' instead.\n"), filename,
+ g_warning ("session log '%s' is not a normal file, logging session to '%s' instead.\n", filename,
temp_name);
g_free (filename);
filename = temp_name;
@@ -1315,7 +1314,7 @@
g_free (filename);
if (fd < 0) {
- g_warning (_("unable to log session"));
+ g_warning ("unable to log session");
fd = g_open ("/dev/null", O_RDWR);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]