Re: Reorganize GUC structs

From: Álvaro Herrera <alvherre(at)kurilemu(dot)de>
To: Peter Eisentraut <peter(at)eisentraut(dot)org>
Cc: pgsql-hackers <pgsql-hackers(at)postgresql(dot)org>, Heikki Linnakangas <hlinnaka(at)iki(dot)fi>, John Naylor <johncnaylorls(at)gmail(dot)com>
Subject: Re: Reorganize GUC structs
Date: 2025-11-07 09:38:45
Message-ID: 202511070936.jj4o4ktd4b6l@alvherre.pgsql
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On 2025-Nov-07, Peter Eisentraut wrote:

> @@ -3135,14 +3135,14 @@ parse_and_validate_value(const struct config_generic *record,
> char *hintmsg;
>
> hintmsg = config_enum_get_options(conf,
> - "Available values: ",
> - ".", ", ");
> + _("Available values: "),
> + _("."), _(", "));

Hmm, it seems unclear (from the message catalog perspective) what the
last two strings will be used for, so please add a /* translator */
comment to each.

--
Álvaro Herrera 48°01'N 7°57'E — https://www.EnterpriseDB.com/
"La fuerza no está en los medios físicos
sino que reside en una voluntad indomable" (Gandhi)

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Arseniy Mukhin 2025-11-07 09:41:48 Re: LISTEN/NOTIFY bug: VACUUM sets frozenxid past a xid in async queue
Previous Message Fujii Masao 2025-11-07 09:33:17 Re: Suggestion to add --continue-client-on-abort option to pgbench