Skip to content

Commit c0d9512

Browse files
committed
libpq: Add missing gettext trigger
libpq_ngettext() was missing. This was an ancient mistake (commit acd08d7).
1 parent 0225eec commit c0d9512

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/interfaces/libpq/nls.mk

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,12 @@ GETTEXT_FILES = fe-auth.c \
1616
../../port/thread.c
1717
GETTEXT_TRIGGERS = libpq_append_conn_error:2 \
1818
libpq_append_error:2 \
19-
libpq_gettext pqInternalNotice:2
19+
libpq_gettext \
20+
libpq_ngettext:1,2 \
21+
pqInternalNotice:2
2022
GETTEXT_FLAGS = libpq_append_conn_error:2:c-format \
2123
libpq_append_error:2:c-format \
22-
libpq_gettext:1:pass-c-format pqInternalNotice:2:c-format
24+
libpq_gettext:1:pass-c-format \
25+
libpq_ngettext:1:pass-c-format \
26+
libpq_ngettext:2:pass-c-format \
27+
pqInternalNotice:2:c-format

0 commit comments

Comments
 (0)