diff options
author | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-03 16:56:27 +0000 |
---|---|---|
committer | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-03 16:56:27 +0000 |
commit | 2ad398d2e04717ce3a6a8fb869e855c42581a30a (patch) | |
tree | a9230435f6a718f6b52e0c909846557bf19ce6b5 /plugins/check_pgsql.c | |
parent | fa002886e390f5cc603021e422be3c319a1040ea (diff) | |
download | monitoring-plugins-2ad398d2e04717ce3a6a8fb869e855c42581a30a.tar.gz |
fixes for internationalization
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@990 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_pgsql.c')
-rw-r--r-- | plugins/check_pgsql.c | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/plugins/check_pgsql.c b/plugins/check_pgsql.c index 826a1057..f97ef66c 100644 --- a/plugins/check_pgsql.c +++ b/plugins/check_pgsql.c @@ -441,12 +441,9 @@ a password, but no effort is made to obsure or encrypt the password.\n")); void print_usage (void) { - printf (S_("\ -Usage:\n %s [-H <host>] [-P <port>] [-c <critical time>] [-w <warning time>]\n\ - [-t <timeout>]"), progname); - printf (S_("[-d <database>] [-l <logname>] [-p <password>]\n")); - printf (S_("\ - %s (-h | --help) for detailed help\n\ - %s (-V | --version) for version information\n"), - progname, progname); + printf ("\ +Usage: %s [-H <host>] [-P <port>] [-c <critical time>] [-w <warning time>]\n\ + [-t <timeout>] [-d <database>] [-l <logname>] [-p <password>]\n", progname); + + printf (UT_HLP_VRS, progname, progname); } |