Re: splitting pg_resetwal output strings - Mailing list pgsql-hackers

From Jonathan Gonzalez V.
Subject Re: splitting pg_resetwal output strings
Date
Msg-id 0357cb9cd9a362662d5d1eb2eb8ef4db1ba18f01.camel@gmail.com
Whole thread
In response to Re: splitting pg_resetwal output strings  ("Jonathan Gonzalez V." <jonathan.abdiel@gmail.com>)
Responses Re: splitting pg_resetwal output strings
List pgsql-hackers
Hello,

On a second round a notice these two strings:

+               char *str = "First log segment after reset";
+               thislen = internal_wcswidth(_(str), strlen(_(str)),
encoding);
+               if (thislen > maxlen)

and

+               char *str = "First log segment after reset";
+               thislen = internal_wcswidth(_(str), strlen(_(str)),
encoding);
+               if (thislen > maxlen)

Are never catch by the `make update-po` command, instead, the strings
are there in the `.po.new` file commented.

Should we put them between `_()`? or is expected that it's being catch
by the second line with the `_()` ?

--
Jonathan Gonzalez V.
EDB: https://www.enterprisedb.com

Attachment

pgsql-hackers by date:

Previous
From: Jelte Fennema-Nio
Date:
Subject: Re: RFC: Allow EXPLAIN to Output Page Fault Information
Next
From: Alvaro Herrera
Date:
Subject: Re: Adding REPACK [concurrently]