mirror of
https://github.com/postgres/postgres.git
synced 2025-07-12 21:01:52 +03:00
Redefine _() to dgettext() instead of gettext() so that it uses the plpgsql
text domain, instead of the postgres one (or whatever the default may be).
This commit is contained in:
@ -8,7 +8,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/pl/plpgsql/src/plpgsql.h,v 1.108 2009/01/07 13:44:37 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/pl/plpgsql/src/plpgsql.h,v 1.109 2009/02/17 11:34:34 petere Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -33,6 +33,9 @@
|
||||
#undef TEXTDOMAIN
|
||||
#define TEXTDOMAIN PG_TEXTDOMAIN("plpgsql")
|
||||
|
||||
#undef _
|
||||
#define _(x) dgettext(TEXTDOMAIN, x)
|
||||
|
||||
/* ----------
|
||||
* Compiler's namestack item types
|
||||
* ----------
|
||||
|
Reference in New Issue
Block a user