From e1d5a0d256d98de19708d6caf76075cd7b7883fd Mon Sep 17 00:00:00 2001 From: "Paul N. Hilfinger" Date: Sun, 8 Jan 2006 07:19:40 +0000 Subject: * ada-exp.y, ada-lex.l, ada-typeprint.c: I18n markup. * ada-tasks.c, ada-lang.c: I18n markup. Editorial: change "can not" => "cannot" throughout. --- gdb/ada-lex.l | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'gdb/ada-lex.l') diff --git a/gdb/ada-lex.l b/gdb/ada-lex.l index f8746ec..156e0b8 100644 --- a/gdb/ada-lex.l +++ b/gdb/ada-lex.l @@ -124,11 +124,11 @@ static int find_dot_all (const char *); } {NUM10}"#"{NUM16}"."{NUM16}"#"{EXP} { - error ("Based real literals not implemented yet."); + error (_("Based real literals not implemented yet.")); } {NUM10}"#"{NUM16}"."{NUM16}"#" { - error ("Based real literals not implemented yet."); + error (_("Based real literals not implemented yet.")); } "'"({GRAPHIC}|\")"'" { @@ -151,7 +151,7 @@ static int find_dot_all (const char *); } \" { - error ("ill-formed or non-terminated string literal"); + error (_("ill-formed or non-terminated string literal")); } @@ -264,7 +264,7 @@ xor { return XOR; } /* CATCH-ALL ERROR CASE */ -. { error ("Invalid character '%s' in expression.", yytext); } +. { error (_("Invalid character '%s' in expression."), yytext); } %% #include @@ -380,7 +380,7 @@ processInt (const char *base0, const char *num0, const char *exp0) { base = strtol (base0, (char **) NULL, 10); if (base < 2 || base > 16) - error ("Invalid base: %d.", base); + error (_("Invalid base: %d."), base); } if (exp0 == NULL) @@ -391,14 +391,14 @@ processInt (const char *base0, const char *num0, const char *exp0) errno = 0; result = strtoulst (num0, (const char **) &trailer, base); if (errno == ERANGE) - error ("Integer literal out of range"); + error (_("Integer literal out of range")); if (isxdigit(*trailer)) - error ("Invalid digit `%c' in based literal", *trailer); + error (_("Invalid digit `%c' in based literal"), *trailer); while (exp > 0) { if (result > (ULONG_MAX / base)) - error ("Integer literal out of range"); + error (_("Integer literal out of range")); result *= base; exp -= 1; } @@ -652,10 +652,10 @@ processAttribute (const char *str) if (k == -1) k = i; else - error ("ambiguous attribute name: `%s'", str); + error (_("ambiguous attribute name: `%s'"), str); } if (k == -1) - error ("unrecognized attribute: `%s'", str); + error (_("unrecognized attribute: `%s'"), str); return attributes[k].code; } -- cgit v1.1