Native Language Support (NLS)

Peter Eisentraut <peter_e@gmx.net>

Commit: e54203646176167271dc50a7b8f7bbe0d3ea6e75
Author: Peter Eisentraut <peter_e@gmx.net>
Date: 2001-06-02T18:25:18Z
Releases: 7.2.1
Native Language Support (NLS)

Use --enable-nls to turn it on; see installation instructions for details.
See developer's guide how to make use of it in programs and how to add
translations.

psql sources have been almost fully prepared and an incomplete German
translation has been provided.  In the backend, only elog() calls are
currently translatable, and the provided German translation file is more
of a placeholder.

Files

PathChange+/−
config/programs.m4 modified +32 −1
configure modified +658 −396
configure.in modified +17 −0
doc/src/sgml/developer.sgml modified +2 −1
doc/src/sgml/filelist.sgml modified +2 −1
doc/src/sgml/installation.sgml modified +39 −1
doc/src/sgml/nls.sgml added +486 −0
src/backend/main/main.c modified +10 −2
src/backend/Makefile modified +20 −2
src/backend/po/de.po added +11339 −0
src/backend/po/Makefile added +12 −0
src/backend/po/nls.mk added +4 −0
src/backend/utils/error/elog.c modified +2 −1
src/bin/psql/command.c modified +28 −26
src/bin/psql/common.c modified +19 −17
src/bin/psql/copy.c modified +5 −5
src/bin/psql/de.po added +827 −0
src/bin/psql/help.c modified +96 −93
src/bin/psql/large_obj.c modified +12 −17
src/bin/psql/mainloop.c modified +2 −3
src/bin/psql/nls.mk added +7 −0
src/bin/psql/print.c modified +4 −4
src/bin/psql/startup.c modified +41 −28
src/include/c.h modified +6 −1
src/include/config.h.in modified +6 −1
src/Makefile.global.in modified +21 −2
src/nls-global.mk added +119 −0