|
12 | 12 | * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
|
13 | 13 | * Portions Copyright (c) 1994, Regents of the University of California
|
14 | 14 | *
|
15 |
| - * $PostgreSQL: pgsql/src/include/c.h,v 1.228 2008/06/24 17:58:27 tgl Exp $ |
| 15 | + * $PostgreSQL: pgsql/src/include/c.h,v 1.229 2008/07/03 02:49:54 momjian Exp $ |
16 | 16 | *
|
17 | 17 | *-------------------------------------------------------------------------
|
18 | 18 | */
|
|
99 | 99 | #endif
|
100 | 100 |
|
101 | 101 | /*
|
102 |
| - *Use this to mark strings to be translated by gettext, in places where |
103 |
| - *you don't want an actual function call to occur (eg, constant tables). |
| 102 | + *Use this to mark string constants as needing translation at some later |
| 103 | + *time, rather than immediately. This is useful for cases where you need |
| 104 | + *access to the original string and translated string, and for cases where |
| 105 | + *immediate translation is not possible, like when initializing global |
| 106 | + *variables. |
| 107 | + *http://www.gnu.org/software/autoconf/manual/gettext/Special-cases.html |
104 | 108 | */
|
105 | 109 | #definegettext_noop(x) (x)
|
106 | 110 |
|
|