aboutsummaryrefslogtreecommitdiff
path: root/src/html.lex.l
diff options
context:
space:
mode:
Diffstat (limited to 'src/html.lex.l')
-rw-r--r--src/html.lex.l10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/html.lex.l b/src/html.lex.l
index 931bfc1..0e0d423 100644
--- a/src/html.lex.l
+++ b/src/html.lex.l
@@ -44,5 +44,5 @@ N [0-9]+
44 if (find_value (yytext+1, &yylval.value)) 44 if (find_value (yytext+1, &yylval.value))
45 { 45 {
46 yyerror ("unknown identifier"); 46 yyerror (_("unknown identifier"));
47 init_value (&yylval.value, unspecified_value, NULL); 47 init_value (&yylval.value, unspecified_value, NULL);
48 } 48 }
@@ -53,5 +53,5 @@ N [0-9]+
53 if (find_value (yytext+2, &yylval.value)) 53 if (find_value (yytext+2, &yylval.value))
54 { 54 {
55 yyerror ("unknown identifier"); 55 yyerror (_("unknown identifier"));
56 init_value (&yylval.value, unspecified_value, NULL); 56 init_value (&yylval.value, unspecified_value, NULL);
57 } 57 }
@@ -63,5 +63,5 @@ N [0-9]+
63 if (find_value (yytext+2, &yylval.value)) 63 if (find_value (yytext+2, &yylval.value))
64 { 64 {
65 yyerror ("unknown identifier"); 65 yyerror (_("unknown identifier"));
66 init_value (&yylval.value, unspecified_value, NULL); 66 init_value (&yylval.value, unspecified_value, NULL);
67 } 67 }
@@ -78,5 +78,5 @@ N [0-9]+
78 if (find_value (yytext+2, &val)) 78 if (find_value (yytext+2, &val))
79 { 79 {
80 yyerror ("unknown identifier"); 80 yyerror (_("unknown identifier"));
81 init_value (&yylval.value, unspecified_value, NULL); 81 init_value (&yylval.value, unspecified_value, NULL);
82 } 82 }
@@ -131,5 +131,5 @@ html_open (char *file)
131 if (!yyin) 131 if (!yyin)
132 { 132 {
133 logmsg (L_ERR, "cannot open input file `%s': %s", 133 logmsg (L_ERR, _("cannot open input file `%s': %s"),
134 file, strerror (errno)); 134 file, strerror (errno));
135 return 1; 135 return 1;

Return to:

Send suggestions and report system problems to the System administrator.