diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2009-06-10 22:34:11 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2009-06-10 22:34:11 +0000 |
commit | 125a5b95d868d6e02019ba1e3901d620b0289b24 (patch) | |
tree | b0b32930f06eb25a1e48e3c8e8fe832bee4be036 /src | |
parent | 15a3fe6d6343ae46b9e28a093b8dea422c31af83 (diff) | |
download | postgresql-125a5b95d868d6e02019ba1e3901d620b0289b24.tar.gz postgresql-125a5b95d868d6e02019ba1e3901d620b0289b24.zip |
Clarify to the translator that plpgsql_yyerror() deals with the translation
of "syntax error", not the literal string.
This same change was made in the backend a while ago; but it applies to
plpgsql as well.
Diffstat (limited to 'src')
-rw-r--r-- | src/pl/plpgsql/src/scan.l | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pl/plpgsql/src/scan.l b/src/pl/plpgsql/src/scan.l index ce52d7bd6a3..b5d9b470a03 100644 --- a/src/pl/plpgsql/src/scan.l +++ b/src/pl/plpgsql/src/scan.l @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/pl/plpgsql/src/scan.l,v 1.69 2009/04/19 21:50:09 tgl Exp $ + * $PostgreSQL: pgsql/src/pl/plpgsql/src/scan.l,v 1.70 2009/06/10 22:34:11 petere Exp $ * *------------------------------------------------------------------------- */ @@ -441,7 +441,7 @@ plpgsql_yyerror(const char *message) { ereport(ERROR, (errcode(ERRCODE_SYNTAX_ERROR), - /* translator: %s is typically "syntax error" */ + /* translator: %s is typically the translation of "syntax error" */ errmsg("%s at end of input", _(message)), internalerrposition(cursorpos), internalerrquery(scanstr))); @@ -450,7 +450,7 @@ plpgsql_yyerror(const char *message) { ereport(ERROR, (errcode(ERRCODE_SYNTAX_ERROR), - /* translator: first %s is typically "syntax error" */ + /* translator: first %s is typically the translation of "syntax error" */ errmsg("%s at or near \"%s\"", _(message), loc), internalerrposition(cursorpos), internalerrquery(scanstr))); |