[PATCH] Fix incorrect Spanish translation and remove obsolete FIXME comments

From: VASUKI M <vasukianand0119(at)gmail(dot)com>
To: PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org>
Subject: [PATCH] Fix incorrect Spanish translation and remove obsolete FIXME comments
Date: 2026-02-20 09:52:05
Message-ID: CAE2r8H6tMt1DOFThj1Sb5wcwxn+qKxJ7RANf-egJAYW+==ainA@mail.gmail.com
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi all,

While reviewing the Spanish translation file (src/backend/po/es.po),
I found an incorrect translation in the message:

"physical replication slot \"%s\" exists, but \"wal_level\" < \"replica\""

The current translation refers to a logical replication slot
("replicación lógica"), which is incorrect in this context.
This patch corrects the translation to use "replicación física",
so that the message accurately reflects the original meaning.

In addition, I reviewed several FIXME comments present in the same
file, including comments referencing slot.c:779 and postmaster.c:835,
as well as notes questioning duplication and terminology (e.g.,
"snapbuild" and "snapshot"). After verifying the corresponding
source code and checking for message duplication, these comments
appear to be outdated translator notes that no longer apply to the
current codebase.

This patch removes those obsolete FIXME comments while keeping
the existing translations unchanged, except for the corrected
physical replication slot message described above.

The updated es.po file was validated using:

msgfmt -c -v es.po

which reports no format or consistency issues.

Patch attached.

Regards,
Vasuki M
C-DAC,Chennai

Attachment Content-Type Size
v1-0001-Fix-incorrect-spanish-translation-and-remove-FIXME.patch text/x-patch 6.4 KB

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Daniel Gustafsson 2026-02-20 09:55:24 Re: [PATCH] Fix incorrect Spanish translation and remove obsolete FIXME comments
Previous Message Nazir Bilal Yavuz 2026-02-20 09:50:35 Re: Speed up COPY FROM text/CSV parsing using SIMD