X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=gedcom%2Fgedcom_lex_common.c;h=e1c17bb78b12dfb89b510a086d4cdc5d1282d7f4;hb=e8a39d9ba85d615389f716a0934fd6c673d438c9;hp=93c26f3bf6197f4e772f80b154b3d1297dd9f33d;hpb=e00e467d3d1de49cfc5f261d91ab272cd6fae065;p=gedcom-parse.git diff --git a/gedcom/gedcom_lex_common.c b/gedcom/gedcom_lex_common.c index 93c26f3..e1c17bb 100644 --- a/gedcom/gedcom_lex_common.c +++ b/gedcom/gedcom_lex_common.c @@ -97,7 +97,7 @@ int test_loop(ENCODING enc, char* code) { if (line_len != (size_t)-1) { \ line_len += strlen(yytext); \ if (line_len > MAXGEDCLINELEN * encoding_width) { \ - gedcom_error(_("Line too long, max %d characters"), \ + gedcom_error(_("Line too long, max %d characters allowed"), \ MAXGEDCLINELEN); \ line_len = (size_t)-1; \ return BADTOKEN; \ @@ -170,7 +170,7 @@ int test_loop(ENCODING enc, char* code) #define ACTION_0_DIGITS \ - { gedcom_error (_("Level number with leading zero")); \ + { gedcom_error (_("Level number with leading zero not allowed")); \ return BADTOKEN; \ } @@ -206,7 +206,7 @@ int test_loop(ENCODING enc, char* code) #define ACTION_ALPHANUM \ { if (strlen(yytext) > MAXGEDCTAGLEN * encoding_width) { \ - gedcom_error(_("Tag '%s' too long, max %d characters"), \ + gedcom_error(_("Tag '%s' too long, max %d characters allowed"), \ yytext, MAXGEDCTAGLEN); \ return BADTOKEN; \ } \ @@ -248,7 +248,7 @@ int test_loop(ENCODING enc, char* code) #define ACTION_POINTER \ { CHECK_LINE_LEN; \ if (strlen(yytext) > MAXGEDCPTRLEN * encoding_width) { \ - gedcom_error(_("Pointer '%s' too long, max %d characters"), \ + gedcom_error(_("Pointer '%s' too long, max %d characters allowed"), \ yytext, MAXGEDCPTRLEN); \ return BADTOKEN; \ } \