mirror of
https://github.com/postgres/postgres.git
synced 2026-06-09 00:32:10 -04:00
Remove inappropriate translation marker in getObjectIdentityParts().
Strings built by this function are not supposed to be subject to
NLS translation, but commit 6566133c5 missed that memo, so that
object identities like "membership of role %s in role %s" were
translated.
This commit is contained in:
parent
9234e33371
commit
4b1e18b057
1 changed files with 1 additions and 1 deletions
|
|
@ -5850,7 +5850,7 @@ getObjectIdentityParts(const ObjectAddress *object,
|
|||
|
||||
amForm = (Form_pg_auth_members) GETSTRUCT(tup);
|
||||
|
||||
appendStringInfo(&buffer, _("membership of role %s in role %s"),
|
||||
appendStringInfo(&buffer, "membership of role %s in role %s",
|
||||
GetUserNameFromId(amForm->member, false),
|
||||
GetUserNameFromId(amForm->roleid, false));
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue