mirror of
https://github.com/postgres/postgres.git
synced 2026-02-13 07:43:11 -05:00
The --flag argument can be used to tell xgettext the arguments of which functions should be flagged with c-format in the PO files, instead of guessing based on the presence of format specifiers, which fails if no format specifiers are present but the translation accidentally introduces one. Appropriate flag settings have been added for each message catalog. based on a patch by Christoph Berg for bug #6066
8 lines
386 B
Makefile
8 lines
386 B
Makefile
# src/bin/psql/nls.mk
|
|
CATALOG_NAME = psql
|
|
AVAIL_LANGUAGES = cs de es fr ja pt_BR sv tr zh_CN zh_TW
|
|
GETTEXT_FILES = command.c common.c copy.c help.c input.c large_obj.c \
|
|
mainloop.c print.c startup.c describe.c sql_help.h sql_help.c \
|
|
../../port/exec.c
|
|
GETTEXT_TRIGGERS = N_ psql_error simple_prompt
|
|
GETTEXT_FLAGS = psql_error:1:c-format
|