aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcaillon <caillon@517b70f8-ed25-0410-8bf6-f5db08f7b76e>2005-10-31 07:22:41 +0000
committercaillon <caillon@517b70f8-ed25-0410-8bf6-f5db08f7b76e>2005-10-31 07:22:41 +0000
commit95965c74229a08e163295c52b39abd9d748bb5db (patch)
tree2e7b1facdf0edcf5768b2d66dee47cf333a005e7
parentadae85b3eb15ed70aeaebe85a525750af3d2a926 (diff)
2005-10-31 Christopher Aillon <caillon@redhat.com>
* src/krb5-auth-dialog.c: Set the application name. Also, say less 'kerberos' in user visible text. git-svn-id: http://svn.gnome.org/svn/krb5-auth-dialog/trunk@31 517b70f8-ed25-0410-8bf6-f5db08f7b76e
-rw-r--r--ChangeLog5
-rw-r--r--src/krb5-auth-dialog.c4
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e0b1f13..74c19b5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2005-10-31 Christopher Aillon <caillon@redhat.com>
+ * src/krb5-auth-dialog.c: Set the application name.
+ Also, say less 'kerberos' in user visible text.
+
+2005-10-31 Christopher Aillon <caillon@redhat.com>
+
* src/krb5-auth-dialog.c: Update the credentials expiry time
2005-10-31 Christopher Aillon <caillon@redhat.com>
diff --git a/src/krb5-auth-dialog.c b/src/krb5-auth-dialog.c
index 90eb0e3..5dfaa23 100644
--- a/src/krb5-auth-dialog.c
+++ b/src/krb5-auth-dialog.c
@@ -97,7 +97,7 @@ krb5_auth_dialog_setup (GtkWidget *dialog,
if (strncmp (krb5prompt, "Password for ", pw4len) == 0)
{
gchar *uid = (gchar *) (krb5prompt + pw4len);
- prompt = g_strdup_printf (_("Please enter the Kerberos password for '%s'"), uid);
+ prompt = g_strdup_printf (_("Please enter the password for '%s'"), uid);
}
else
prompt = g_strdup (krb5prompt);
@@ -422,6 +422,8 @@ main (int argc, char *argv[])
g_signal_connect (G_OBJECT (client), "die",
G_CALLBACK (gtk_main_quit), NULL);
+ g_set_application_name (_("Network Authentication"));
+
#ifdef ENABLE_NETWORK_MANAGER
nm_context = libnm_glib_init ();
if (!nm_context)