Re: Remove INT64_FORMAT in translatable strings

Tom Lane <tgl@sss.pgh.pa.us>

From: Tom Lane <tgl@sss.pgh.pa.us>
To: Japin Li <japinli@hotmail.com>
Cc: "pgsql-hackers@lists.postgresql.org" <pgsql-hackers@lists.postgresql.org>
Date: 2022-03-18T17:12:40Z
Lists: pgsql-hackers
Japin Li <japinli@hotmail.com> writes:
> we can rely on %lld/%llu and we decided to use them in translatable strings.

Seems like good cleanup, so pushed.  I think though that project style
is to use "long long" or "unsigned long long", without the unnecessary
"int" --- it certainly makes little sense to do it both ways in the
same patch.

> However, I am not sure how to update the *.po files under the pg_dump/po
> directory. Any suggestions?

The translation team manages those files.  We don't normally touch them
during code development.

			regards, tom lane



Commits

  1. Remove workarounds for avoiding [U]INT64_FORMAT in translatable strings.