diff options
author | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2007-12-10 07:52:00 +0000 |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2007-12-10 07:52:00 +0000 |
commit | 2af978187c71d1610c47c630b1cb0da01c129396 (patch) | |
tree | 1daf79717cad4174c797842d2727f534c4abf788 /plugins/negate.c | |
parent | c1b08bca7b9c01d01c805dc9e40a447d4526d2d5 (diff) | |
download | monitoring-plugins-2af978187c71d1610c47c630b1cb0da01c129396.tar.gz |
Plenty of french translations (and a few fixes BTW)
- No more fuzzy french translations
- Only (!) 355 strings to translate
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1859 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/negate.c')
-rw-r--r-- | plugins/negate.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/negate.c b/plugins/negate.c index 226f286e..7bfef95a 100644 --- a/plugins/negate.c +++ b/plugins/negate.c @@ -206,7 +206,7 @@ process_arguments (int argc, char **argv) break; case 'o': /* replacement for OK */ if ((state[STATE_OK] = translate_state(optarg)) == ERROR) - usage4 (_("Ok must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or integer (0-4).")); + usage4 (_("Ok must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or integer (0-3).")); permute = FALSE; break; @@ -305,7 +305,7 @@ print_help (void) printf (_(UT_HELP_VRSN)); printf (_(UT_TIMEOUT), DEFAULT_TIMEOUT); - printf (" %s\n", _("Keep timeout lower than the plugin timeout to retain CRITICAL status.")); + printf (" %s\n", _("Keep timeout longer than the plugin timeout to retain CRITICAL status.")); printf(" -o,--ok=STATUS\n"); printf(" -w,--warning=STATUS\n"); @@ -325,8 +325,8 @@ print_help (void) printf ("%s\n", _("Notes:")); printf ("%s\n", _("This plugin is a wrapper to take the output of another plugin and invert it.")); printf ("%s\n", _("The full path of the plugin must be provided.")); - printf ("%s\n", _("If the wrapped plugin returns STATE_OK, the wrapper will return STATE_CRITICAL.")); - printf ("%s\n", _("If the wrapped plugin returns STATE_CRITICAL, the wrapper will return STATE_OK.")); + printf ("%s\n", _("If the wrapped plugin returns OK, the wrapper will return CRITICAL.")); + printf ("%s\n", _("If the wrapped plugin returns CRITICAL, the wrapper will return OK.")); printf ("%s\n", _("Otherwise, the output state of the wrapped plugin is unchanged.")); printf (_(UT_SUPPORT)); |