summaryrefslogtreecommitdiff
path: root/src/bin/psql
diff options
context:
space:
mode:
authorPeter Eisentraut2023-03-08 14:05:43 +0000
committerPeter Eisentraut2023-03-08 14:05:43 +0000
commit2a71ad64cb27a86afa2a86bde70df3522aee7bae (patch)
tree2a6fe980b78db876deafca1be525b9547a79dc1c /src/bin/psql
parent822e8e295166f000e337a9b105692521e1fdc762 (diff)
Break up long GETTEXT_FILES lists
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).
Diffstat (limited to 'src/bin/psql')
-rw-r--r--src/bin/psql/nls.mk30
1 files changed, 23 insertions, 7 deletions
diff --git a/src/bin/psql/nls.mk b/src/bin/psql/nls.mk
index dad5816b9c7..cf0b8002918 100644
--- a/src/bin/psql/nls.mk
+++ b/src/bin/psql/nls.mk
@@ -1,13 +1,29 @@
# src/bin/psql/nls.mk
CATALOG_NAME = psql
GETTEXT_FILES = $(FRONTEND_COMMON_GETTEXT_FILES) \
- command.c common.c copy.c crosstabview.c help.c input.c large_obj.c \
- mainloop.c psqlscanslash.c startup.c \
- describe.c sql_help.h sql_help.c \
- tab-complete.c variables.c \
- ../../fe_utils/cancel.c ../../fe_utils/print.c ../../fe_utils/psqlscan.c \
- ../../common/exec.c ../../common/fe_memutils.c ../../common/username.c \
- ../../common/wait_error.c ../../port/thread.c
+ command.c \
+ common.c \
+ copy.c \
+ crosstabview.c \
+ help.c \
+ input.c \
+ large_obj.c \
+ mainloop.c \
+ psqlscanslash.c \
+ startup.c \
+ describe.c \
+ sql_help.h \
+ sql_help.c \
+ tab-complete.c \
+ variables.c \
+ ../../fe_utils/cancel.c \
+ ../../fe_utils/print.c \
+ ../../fe_utils/psqlscan.c \
+ ../../common/exec.c \
+ ../../common/fe_memutils.c \
+ ../../common/username.c \
+ ../../common/wait_error.c \
+ ../../port/thread.c
GETTEXT_TRIGGERS = $(FRONTEND_COMMON_GETTEXT_TRIGGERS) \
HELP0 HELPN N_ simple_prompt simple_prompt_extended
GETTEXT_FLAGS = $(FRONTEND_COMMON_GETTEXT_FLAGS) \