]> git.ipfire.org Git - thirdparty/postgresql.git/commit
libpq: Add missing OAuth translations
authorJacob Champion <jchampion@postgresql.org>
Mon, 15 Dec 2025 21:30:31 +0000 (13:30 -0800)
committerJacob Champion <jchampion@postgresql.org>
Mon, 15 Dec 2025 21:30:31 +0000 (13:30 -0800)
commit169ff4ca930bc2562a1c938244a1b098bb09186b
tree16d0a41acbb764378e11937c9820c27c30f59090
parentbae8ca82fd00603ebafa0658640d6e4dfe20af92
libpq: Add missing OAuth translations

Several strings that should have been translated as they passed through
libpq_gettext were not actually being pulled into the translation files,
because I hadn't directly wrapped them in one of the GETTEXT_TRIGGERS.

Move the responsibility for calling libpq_gettext() to the code that
sets actx->errctx. Doing the same in report_type_mismatch() would result
in double-translation, so mark those strings with gettext_noop()
instead. And wrap two ternary operands with gettext_noop(), even though
they're already in one of the triggers, since xgettext sees only the
first.

Finally, fe-auth-oauth.c was missing from nls.mk, so none of that file
was being translated at all. Add it now.

Original patch by Zhijie Hou, plus suggested tweaks by Álvaro Herrera
and small additions by me.

Reported-by: Zhijie Hou <houzj.fnst@fujitsu.com>
Author: Zhijie Hou <houzj.fnst@fujitsu.com>
Co-authored-by: Álvaro Herrera <alvherre@kurilemu.de>
Co-authored-by: Jacob Champion <jacob.champion@enterprisedb.com>
Reviewed-by: Álvaro Herrera <alvherre@kurilemu.de>
Discussion: https://postgr.es/m/TY4PR01MB1690746DB91991D1E9A47F57E94CDA%40TY4PR01MB16907.jpnprd01.prod.outlook.com
Backpatch-through: 18
src/interfaces/libpq-oauth/oauth-curl.c
src/interfaces/libpq/nls.mk