From: Greg Sabino Mullane Date: Tue, 25 Jan 2011 05:12:39 +0000 (-0500) Subject: In message string, $ should be $1 X-Git-Tag: 2.18.0~123 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=3ac63d663bc639768cae2c406ba1bbda880a8c47;p=check_postgres.git In message string, $ should be $1 --- diff --git a/check_postgres.pl b/check_postgres.pl index 5243dfc06..c5348156e 100755 --- a/check_postgres.pl +++ b/check_postgres.pl @@ -211,7 +211,7 @@ our %msg = ( 'range-warnbigsize' => q{The 'warning' option ($1 bytes) cannot be larger than the 'critical' option ($2 bytes)}, 'range-warnbigtime' => q{The 'warning' option ($1 s) cannot be larger than the 'critical' option ($2 s)}, 'range-warnsmall' => q{The 'warning' option cannot be less than the 'critical' option}, - 'range-nointfortime' => q{Invalid argument for '$' options: must be an integer, time or integer for time}, + 'range-nointfortime' => q{Invalid argument for '$1' options: must be an integer, time or integer for time}, 'relsize-msg-ind' => q{largest index is "$1": $2}, 'relsize-msg-reli' => q{largest relation is index "$1": $2}, 'relsize-msg-relt' => q{largest relation is table "$1": $2}, @@ -425,7 +425,7 @@ our %msg = ( 'range-warnbigsize' => q{L'option warning ($1 octets) ne peut pas être plus grand que l'option critical ($2 octets)}, 'range-warnbigtime' => q{L'option warning ($1 s) ne peut pas être plus grand que l'option critical ($2 s)}, 'range-warnsmall' => q{L'option warningne peut pas être plus petit que l'option critical}, -'range-nointfortime' => q{Invalid argument for '$' options: must be an integer, time or integer for time}, +'range-nointfortime' => q{Invalid argument for '$1' options: must be an integer, time or integer for time}, 'relsize-msg-ind' => q{le plus gros index est « $1 » : $2}, 'relsize-msg-reli' => q{la plus grosse relation est l'index « $1 » : $2}, 'relsize-msg-relt' => q{la plus grosse relation est la table « $1 » : $2},