aboutsummaryrefslogtreecommitdiff
path: root/etpo
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2009-06-15 18:18:33 +0200
committerGuido Günther <agx@sigxcpu.org>2009-06-15 18:18:33 +0200
commit27053b1befc8380404f76c2c03c08eb3a7b0692d (patch)
tree10a748b4785cce56ed4b272844003611a489cc38 /etpo
parentImported Upstream version 0.10 (diff)
downloadkrb5-auth-dialog-27053b1befc8380404f76c2c03c08eb3a7b0692d.tar.gz
krb5-auth-dialog-27053b1befc8380404f76c2c03c08eb3a7b0692d.tar.bz2
krb5-auth-dialog-27053b1befc8380404f76c2c03c08eb3a7b0692d.zip
Imported Upstream version 0.11
Diffstat (limited to 'etpo')
-rw-r--r--etpo/Makefile.in7
-rw-r--r--etpo/lexer.c6
-rw-r--r--etpo/lexer.l6
3 files changed, 16 insertions, 3 deletions
diff --git a/etpo/Makefile.in b/etpo/Makefile.in
index fd73352..83f2906 100644
--- a/etpo/Makefile.in
+++ b/etpo/Makefile.in
@@ -38,7 +38,8 @@ DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
grammar.c grammar.h lexer.c
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
- $(top_srcdir)/m4/compiler-flags.m4 $(top_srcdir)/configure.ac
+ $(top_srcdir)/m4/compiler-flags.m4 \
+ $(top_srcdir)/m4/gnome-doc-utils.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
@@ -96,6 +97,8 @@ DBUS_CFLAGS = @DBUS_CFLAGS@
DBUS_LIBS = @DBUS_LIBS@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
+DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
+DOC_USER_FORMATS = @DOC_USER_FORMATS@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
@@ -119,6 +122,7 @@ GMSGFMT = @GMSGFMT@
GREP = @GREP@
GTK_CFLAGS = @GTK_CFLAGS@
GTK_LIBS = @GTK_LIBS@
+HELP_DIR = @HELP_DIR@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
@@ -160,6 +164,7 @@ NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
+OMF_DIR = @OMF_DIR@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
PACKAGE = @PACKAGE@
diff --git a/etpo/lexer.c b/etpo/lexer.c
index e5d536a..a5659a5 100644
--- a/etpo/lexer.c
+++ b/etpo/lexer.c
@@ -1999,7 +1999,11 @@ yywrap(void)
static void
header(void)
{
- const char *boilerplate = "#include <glib/gi18n.h>\n\nconst char *dummy[] = {\n";
+ const char *boilerplate = "#include <glib/gi18n.h>\n\nconst char *dummy[] = {\n"
+ "\t/* Translators: files from dummy-strings.c are *all* possible errors\n"
+ "\t returned from Kerberos (since Kerberos itself doesn't handle i18n). If in\n"
+ "\t doubt please translate strings from files starting with krb5-auth\n"
+ "\t first since these are the ones the user will see in any case. */\n";
printf("%s", boilerplate);
}
diff --git a/etpo/lexer.l b/etpo/lexer.l
index 9bc4b75..4cdec06 100644
--- a/etpo/lexer.l
+++ b/etpo/lexer.l
@@ -104,7 +104,11 @@ yywrap(void)
static void
header(void)
{
- const char *boilerplate = "#include <glib/gi18n.h>\n\nconst char *dummy[] = {\n";
+ const char *boilerplate = "#include <glib/gi18n.h>\n\nconst char *dummy[] = {\n"
+ "\t/* Translators: files from dummy-strings.c are *all* possible errors\n"
+ "\t returned from Kerberos (since Kerberos itself doesn't handle i18n). If in\n"
+ "\t doubt please translate strings from files starting with krb5-auth\n"
+ "\t first since these are the ones the user will see in any case. */\n";
printf("%s", boilerplate);
}
bgstack15