mirror of
https://github.com/postgres/postgres.git
synced 2026-06-22 23:19:01 -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
89e6484985
commit
c090bef07d
1 changed files with 1 additions and 1 deletions
|
|
@ -5586,7 +5586,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