mirror of https://github.com/postgres/postgres
One file per line seems best. We already did this in some cases. This adopts the same format everywhere (except in some cases where the list reasonably fits on one line).pull/134/head
parent
822e8e2951
commit
2a71ad64cb
@ -1,5 +1,16 @@ |
||||
# src/bin/initdb/nls.mk
|
||||
CATALOG_NAME = initdb
|
||||
GETTEXT_FILES = $(FRONTEND_COMMON_GETTEXT_FILES) findtimezone.c initdb.c ../../common/exec.c ../../common/fe_memutils.c ../../common/file_utils.c ../../common/pgfnames.c ../../common/restricted_token.c ../../common/rmtree.c ../../common/username.c ../../common/wait_error.c ../../port/dirmod.c
|
||||
GETTEXT_FILES = $(FRONTEND_COMMON_GETTEXT_FILES) \
|
||||
findtimezone.c \
|
||||
initdb.c \
|
||||
../../common/exec.c \
|
||||
../../common/fe_memutils.c \
|
||||
../../common/file_utils.c \
|
||||
../../common/pgfnames.c \
|
||||
../../common/restricted_token.c \
|
||||
../../common/rmtree.c \
|
||||
../../common/username.c \
|
||||
../../common/wait_error.c \
|
||||
../../port/dirmod.c
|
||||
GETTEXT_TRIGGERS = $(FRONTEND_COMMON_GETTEXT_TRIGGERS) simple_prompt
|
||||
GETTEXT_FLAGS = $(FRONTEND_COMMON_GETTEXT_FLAGS)
|
||||
|
||||
@ -1,3 +1,7 @@ |
||||
# src/bin/pg_ctl/nls.mk
|
||||
CATALOG_NAME = pg_ctl
|
||||
GETTEXT_FILES = pg_ctl.c ../../common/exec.c ../../common/fe_memutils.c ../../common/wait_error.c ../../port/path.c
|
||||
GETTEXT_FILES = pg_ctl.c \
|
||||
../../common/exec.c \
|
||||
../../common/fe_memutils.c \
|
||||
../../common/wait_error.c \
|
||||
../../port/path.c
|
||||
|
||||
@ -1,5 +1,7 @@ |
||||
# src/bin/pg_resetwal/nls.mk
|
||||
CATALOG_NAME = pg_resetwal
|
||||
GETTEXT_FILES = $(FRONTEND_COMMON_GETTEXT_FILES) pg_resetwal.c ../../common/restricted_token.c
|
||||
GETTEXT_FILES = $(FRONTEND_COMMON_GETTEXT_FILES) \
|
||||
pg_resetwal.c \
|
||||
../../common/restricted_token.c
|
||||
GETTEXT_TRIGGERS = $(FRONTEND_COMMON_GETTEXT_TRIGGERS)
|
||||
GETTEXT_FLAGS = $(FRONTEND_COMMON_GETTEXT_FLAGS)
|
||||
|
||||
@ -1,6 +1,19 @@ |
||||
# src/bin/pg_rewind/nls.mk
|
||||
CATALOG_NAME = pg_rewind
|
||||
GETTEXT_FILES = $(FRONTEND_COMMON_GETTEXT_FILES) datapagemap.c file_ops.c filemap.c libpq_source.c local_source.c parsexlog.c pg_rewind.c timeline.c xlogreader.c ../../common/fe_memutils.c ../../common/restricted_token.c ../../fe_utils/archive.c ../../fe_utils/recovery_gen.c
|
||||
GETTEXT_FILES = $(FRONTEND_COMMON_GETTEXT_FILES) \
|
||||
datapagemap.c \
|
||||
file_ops.c \
|
||||
filemap.c \
|
||||
libpq_source.c \
|
||||
local_source.c \
|
||||
parsexlog.c \
|
||||
pg_rewind.c \
|
||||
timeline.c \
|
||||
xlogreader.c \
|
||||
../../common/fe_memutils.c \
|
||||
../../common/restricted_token.c \
|
||||
../../fe_utils/archive.c \
|
||||
../../fe_utils/recovery_gen.c
|
||||
GETTEXT_TRIGGERS = $(FRONTEND_COMMON_GETTEXT_TRIGGERS) report_invalid_record:2
|
||||
GETTEXT_FLAGS = $(FRONTEND_COMMON_GETTEXT_FLAGS) \
|
||||
report_invalid_record:2:c-format
|
||||
|
||||
@ -1,6 +1,9 @@ |
||||
# src/bin/pg_waldump/nls.mk
|
||||
CATALOG_NAME = pg_waldump
|
||||
GETTEXT_FILES = $(FRONTEND_COMMON_GETTEXT_FILES) pg_waldump.c xlogreader.c xlogstats.c
|
||||
GETTEXT_FILES = $(FRONTEND_COMMON_GETTEXT_FILES) \
|
||||
pg_waldump.c \
|
||||
xlogreader.c \
|
||||
xlogstats.c
|
||||
GETTEXT_TRIGGERS = $(FRONTEND_COMMON_GETTEXT_TRIGGERS) report_invalid_record:2
|
||||
GETTEXT_FLAGS = $(FRONTEND_COMMON_GETTEXT_FLAGS) \
|
||||
report_invalid_record:2:c-format
|
||||
|
||||
@ -1,16 +1,22 @@ |
||||
# src/bin/scripts/nls.mk
|
||||
CATALOG_NAME = pgscripts
|
||||
GETTEXT_FILES = $(FRONTEND_COMMON_GETTEXT_FILES) \
|
||||
createdb.c createuser.c \
|
||||
dropdb.c dropuser.c \
|
||||
clusterdb.c vacuumdb.c reindexdb.c \
|
||||
createdb.c \
|
||||
createuser.c \
|
||||
dropdb.c \
|
||||
dropuser.c \
|
||||
clusterdb.c \
|
||||
vacuumdb.c \
|
||||
reindexdb.c \
|
||||
pg_isready.c \
|
||||
common.c \
|
||||
../../fe_utils/parallel_slot.c \
|
||||
../../fe_utils/cancel.c ../../fe_utils/print.c \
|
||||
../../fe_utils/cancel.c \
|
||||
../../fe_utils/print.c \
|
||||
../../fe_utils/connect_utils.c \
|
||||
../../fe_utils/option_utils.c \
|
||||
../../fe_utils/query_utils.c \
|
||||
../../common/fe_memutils.c ../../common/username.c
|
||||
../../common/fe_memutils.c \
|
||||
../../common/username.c
|
||||
GETTEXT_TRIGGERS = $(FRONTEND_COMMON_GETTEXT_TRIGGERS) simple_prompt yesno_prompt
|
||||
GETTEXT_FLAGS = $(FRONTEND_COMMON_GETTEXT_FLAGS)
|
||||
|
||||
@ -1,5 +1,10 @@ |
||||
# src/pl/plpgsql/src/nls.mk
|
||||
CATALOG_NAME = plpgsql
|
||||
GETTEXT_FILES = pl_comp.c pl_exec.c pl_gram.c pl_funcs.c pl_handler.c pl_scanner.c
|
||||
GETTEXT_FILES = pl_comp.c \
|
||||
pl_exec.c \
|
||||
pl_gram.c \
|
||||
pl_funcs.c \
|
||||
pl_handler.c \
|
||||
pl_scanner.c
|
||||
GETTEXT_TRIGGERS = $(BACKEND_COMMON_GETTEXT_TRIGGERS) yyerror plpgsql_yyerror
|
||||
GETTEXT_FLAGS = $(BACKEND_COMMON_GETTEXT_FLAGS)
|
||||
|
||||
Loading…
Reference in new issue