Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitd73f813

Browse files
committed
Translation updates
1 parent7d6a055 commitd73f813

File tree

14 files changed

+21486
-6460
lines changed

14 files changed

+21486
-6460
lines changed

‎src/backend/commands/user.c

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
77
* Portions Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Header: /cvsroot/pgsql/src/backend/commands/user.c,v 1.111 2002/09/04 20:31:16 momjian Exp $
9+
* $Header: /cvsroot/pgsql/src/backend/commands/user.c,v 1.112 2002/09/14 13:46:23 petere Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -928,8 +928,12 @@ DropUser(DropUserStmt *stmt)
928928
PointerGetDatum(user),
929929
0,0,0);
930930
if (!HeapTupleIsValid(tuple))
931-
elog(ERROR,"DROP USER: user \"%s\" does not exist%s",user,
932-
(length(stmt->users)>1) ?" (no users removed)" :"");
931+
{
932+
if (length(stmt->users)>1)
933+
elog(ERROR,"DROP USER: user \"%s\" does not exist (no users removed)",user);
934+
else
935+
elog(ERROR,"DROP USER: user \"%s\" does not exist",user);
936+
}
933937

934938
usesysid= ((Form_pg_shadow)GETSTRUCT(tuple))->usesysid;
935939

‎src/backend/nls.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CATALOG_NAME:= postgres
2-
AVAIL_LANGUAGES:= cs de es hu ru zh_CN zh_TW
2+
AVAIL_LANGUAGES:= cs de es hu rusvzh_CN zh_TW
33
GETTEXT_FILES:= + gettext-files
44
GETTEXT_TRIGGERS:= elog:2 postmaster_error yyerror
55

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp