@@ -1814,8 +1814,8 @@ BaseBackup(void)
1814
1814
MemSet (xlogend ,0 ,sizeof (xlogend ));
1815
1815
1816
1816
if (verbose && includewal != NO_WAL )
1817
- fprintf (stderr ,_ ("transaction log start point: %s on timeline %u\n" ),
1818
- xlogstart ,starttli );
1817
+ fprintf (stderr ,_ ("%s: transaction log start point: %s on timeline %u\n" ),
1818
+ progname , xlogstart ,starttli );
1819
1819
1820
1820
/*
1821
1821
* Get the header
@@ -1917,7 +1917,7 @@ BaseBackup(void)
1917
1917
}
1918
1918
strlcpy (xlogend ,PQgetvalue (res ,0 ,0 ),sizeof (xlogend ));
1919
1919
if (verbose && includewal != NO_WAL )
1920
- fprintf (stderr ," transaction log end point: %s\n" ,xlogend );
1920
+ fprintf (stderr ,_ ( "%s: transaction log end point: %s\n"), progname ,xlogend );
1921
1921
PQclear (res );
1922
1922
1923
1923
res = PQgetResult (conn );
@@ -2058,7 +2058,7 @@ BaseBackup(void)
2058
2058
}
2059
2059
2060
2060
if (verbose )
2061
- fprintf (stderr ,"%s: base backup completed\n" ,progname );
2061
+ fprintf (stderr ,_ ( "%s: base backup completed\n" ) ,progname );
2062
2062
}
2063
2063
2064
2064