mirror of
https://github.com/postgres/postgres.git
synced 2026-06-13 10:40:09 -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
b32df590cc
commit
02035864e8
1 changed files with 1 additions and 1 deletions
|
|
@ -5543,7 +5543,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