From 27053b1befc8380404f76c2c03c08eb3a7b0692d Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Mon, 15 Jun 2009 18:18:33 +0200 Subject: Imported Upstream version 0.11 --- etpo/Makefile.in | 7 ++++++- etpo/lexer.c | 6 +++++- etpo/lexer.l | 6 +++++- 3 files changed, 16 insertions(+), 3 deletions(-) (limited to 'etpo') 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 \n\nconst char *dummy[] = {\n"; + const char *boilerplate = "#include \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 \n\nconst char *dummy[] = {\n"; + const char *boilerplate = "#include \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); } -- cgit