blob: 06fd40e4218767d28c663658cab797ec1a04a3b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# src/bin/pg_upgrade/nls.mk
CATALOG_NAME = pg_upgrade
GETTEXT_FILES = check.c \
controldata.c \
dump.c \
exec.c \
file.c \
function.c \
info.c \
option.c \
parallel.c \
pg_upgrade.c \
relfilenumber.c \
server.c \
tablespace.c \
util.c \
version.c
GETTEXT_TRIGGERS = pg_fatal \
pg_log:2 \
prep_status \
prep_status_progress \
report_status:2
GETTEXT_FLAGS = pg_fatal:1:c-format \
pg_log:2:c-format \
prep_status:1:c-format \
prep_status_progress:1:c-format \
report_status:2:c-format
|