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

Commit8c8745b

Browse files
committed
Add some strings that were not marked for translation
1 parent4635d3c commit8c8745b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

‎src/bin/pg_ctl/pg_ctl.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1570,7 +1570,7 @@ CreateRestrictedProcess(char *cmd, PROCESS_INFORMATION *processInfo, bool as_ser
15701570
* NT4 doesn't have CreateRestrictedToken, so just call ordinary
15711571
* CreateProcess
15721572
*/
1573-
write_stderr("WARNING: cannot create restricted tokens on this platform\n");
1573+
write_stderr(_("%s:WARNING: cannot create restricted tokens on this platform\n"),progname);
15741574
if (Advapi32Handle!=NULL)
15751575
FreeLibrary(Advapi32Handle);
15761576
returnCreateProcess(NULL,cmd,NULL,NULL, FALSE,0,NULL,NULL,&si,processInfo);
@@ -1579,7 +1579,7 @@ CreateRestrictedProcess(char *cmd, PROCESS_INFORMATION *processInfo, bool as_ser
15791579
/* Open the current token to use as a base for the restricted one */
15801580
if (!OpenProcessToken(GetCurrentProcess(),TOKEN_ALL_ACCESS,&origToken))
15811581
{
1582-
write_stderr("Failed toopen process token: %lu\n",GetLastError());
1582+
write_stderr(_("%s: could notopen process token: %lu\n"),progname,GetLastError());
15831583
return0;
15841584
}
15851585

@@ -1592,7 +1592,7 @@ CreateRestrictedProcess(char *cmd, PROCESS_INFORMATION *processInfo, bool as_ser
15921592
SECURITY_BUILTIN_DOMAIN_RID,DOMAIN_ALIAS_RID_POWER_USERS,0,0,0,0,0,
15931593
0,&dropSids[1].Sid))
15941594
{
1595-
write_stderr("Failed toallocate SIDs: %lu\n",GetLastError());
1595+
write_stderr(_("%s: could notallocate SIDs: %lu\n"),progname,GetLastError());
15961596
return0;
15971597
}
15981598

@@ -1611,7 +1611,7 @@ CreateRestrictedProcess(char *cmd, PROCESS_INFORMATION *processInfo, bool as_ser
16111611

16121612
if (!b)
16131613
{
1614-
write_stderr("Failed tocreate restricted token: %lu\n",GetLastError());
1614+
write_stderr(_("%s: could notcreate restricted token: %lu\n"),progname,GetLastError());
16151615
return0;
16161616
}
16171617

@@ -1649,7 +1649,7 @@ CreateRestrictedProcess(char *cmd, PROCESS_INFORMATION *processInfo, bool as_ser
16491649
* Log error if we can't get version, or if we're on WinXP/2003 or
16501650
* newer
16511651
*/
1652-
write_stderr("WARNING: could not locate all job object functions in system API\n");
1652+
write_stderr(_("%s:WARNING: could not locate all job object functions in system API\n"),progname);
16531653
}
16541654
else
16551655
{

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp