Fix translatable string construction In a few places, we were constructing translatable strings consisting of elements list by adding one element at a time and separately a comma. This is not great from a translation point of view, so rewrite to append the comma together with the corresponding element in one go.
Author: Peter Smith <[email protected]> Author: Álvaro Herrera <[email protected]> Discussion: https://postgr.es/m/CAHut+Pvp7jYcaiZ3pXedXgLcWZWDBLXFUK05JtZpGv3Mj=u...@mail.gmail.com Branch ------ master Details ------- https://git.postgresql.org/pg/commitdiff/3692a622d3fdf8a44af0c0b541a51163ead314f1 Modified Files -------------- src/backend/catalog/pg_subscription.c | 22 ++++++++++++++-------- src/backend/commands/tablecmds.c | 15 ++++----------- src/backend/replication/logical/relation.c | 13 ++++++------- 3 files changed, 24 insertions(+), 26 deletions(-)
