aboutsummaryrefslogtreecommitdiff
path: root/etpo/lexer.l
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2009-06-15 18:18:45 +0200
committerGuido Günther <agx@sigxcpu.org>2009-06-15 18:18:45 +0200
commit2010fc2e813ac24e35416edea553eaef938e3bd3 (patch)
treed09be582816353cb3167447f1e43ba8f7de9ab2f /etpo/lexer.l
parentdocument changes and release 0.10-1 (diff)
parentImported Upstream version 0.11 (diff)
downloadkrb5-auth-dialog-2010fc2e813ac24e35416edea553eaef938e3bd3.tar.gz
krb5-auth-dialog-2010fc2e813ac24e35416edea553eaef938e3bd3.tar.bz2
krb5-auth-dialog-2010fc2e813ac24e35416edea553eaef938e3bd3.zip
Merge commit 'upstream/0.11'
Diffstat (limited to 'etpo/lexer.l')
-rw-r--r--etpo/lexer.l6
1 files changed, 5 insertions, 1 deletions
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