Re: Add hint message for check_log_destination() - Mailing list pgsql-hackers

From Japin Li
Subject Re: Add hint message for check_log_destination()
Date
Msg-id ME3P282MB16670B0633FDBFB2B2842488B630A@ME3P282MB1667.AUSP282.PROD.OUTLOOK.COM
Whole thread Raw
In response to Re: Add hint message for check_log_destination()  (Michael Paquier <michael@paquier.xyz>)
Responses Re: Add hint message for check_log_destination()
List pgsql-hackers
On Sat, 08 Jul 2023 at 12:48, Michael Paquier <michael@paquier.xyz> wrote:
> On Fri, Jul 07, 2023 at 07:23:47PM +0800, Japin Li wrote:
>> +            appendStringInfoString(&errhint, "\"stderr\"");
>> +#ifdef HAVE_SYSLOG
>> +            appendStringInfoString(&errhint, ", \"syslog\"");
>> +#endif
>> +#ifdef WIN32
>> +            appendStringInfoString(&errhint, ", \"eventlog\"");
>> +#endif
>> +            appendStringInfoString(&errhint, ", \"csvlog\", and \"jsonlog\"");
>
> Hmm.  Is that OK as a translatable string?


Sorry for the late reply!  I'm not sure.  How can I know whether it is translatable?

-- 
Regrads,
Japin Li.



pgsql-hackers by date:

Previous
From: Joseph Koshakow
Date:
Subject: Re: Preventing non-superusers from altering session authorization
Next
From: Peter Smith
Date:
Subject: Re: doc: improve the restriction description of using indexes on REPLICA IDENTITY FULL table.