summaryrefslogtreecommitdiff
path: root/gnome-keyring-ask.c
diff options
context:
space:
mode:
Diffstat (limited to 'gnome-keyring-ask.c')
-rw-r--r--gnome-keyring-ask.c36
1 files changed, 33 insertions, 3 deletions
diff --git a/gnome-keyring-ask.c b/gnome-keyring-ask.c
index 215d8aeb..276b3298 100644
--- a/gnome-keyring-ask.c
+++ b/gnome-keyring-ask.c
@@ -1,3 +1,25 @@
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
+/* gnome-keyring-ask.c - Handles graphical authentication for the keyring daemon.
+
+ Copyright (C) 2003 Red Hat, Inc
+
+ Gnome keyring is free software; you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation; either version 2 of the
+ License, or (at your option) any later version.
+
+ Gnome keyring is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+ Author: Alexander Larsson <alexl@redhat.com>
+*/
+
#include "config.h"
#include <stdio.h>
@@ -7,9 +29,17 @@
#include "gnome-keyring-private.h"
-
-
-#define _(x) x
+#ifdef ENABLE_NLS
+# define _(String) gettext (String)
+# ifdef gettext_noop
+# define N_(String) gettext_noop (String)
+# else
+# define N_(String) (String)
+# endif
+#else
+# define _(String)
+# define N_(String) (String)
+#endif
int
main (int argc, char *argv[])