diff options
author | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2010-04-14 10:11:45 (GMT) |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2010-04-14 12:33:06 (GMT) |
commit | 25d1ee331dbe4977a4a1a756c67f32bd51d9b070 (patch) | |
tree | b15cfec59fdbaa8b283f8e7aa2e3d8c4207a7376 /plugins/check_procs.c | |
parent | b649333321701eccfd99df0d39c6b8d8c92d6a8b (diff) | |
download | monitoring-plugins-25d1ee331dbe4977a4a1a756c67f32bd51d9b070.tar.gz |
Fix translations when extra-opts aren't enabled
Bug #2832884 reported problem with translations outputting pot file
headers. This is caused by "" matching the header of the translation
files.
This patch moves gettext macros inside utils macros and update some
french translations.
Diffstat (limited to 'plugins/check_procs.c')
-rw-r--r-- | plugins/check_procs.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/check_procs.c b/plugins/check_procs.c index 937c0ad..e9372ff 100644 --- a/plugins/check_procs.c +++ b/plugins/check_procs.c | |||
@@ -683,8 +683,8 @@ print_help (void) | |||
683 | 683 | ||
684 | print_usage (); | 684 | print_usage (); |
685 | 685 | ||
686 | printf (_(UT_HELP_VRSN)); | 686 | printf (UT_HELP_VRSN); |
687 | printf (_(UT_EXTRA_OPTS)); | 687 | printf (UT_EXTRA_OPTS); |
688 | printf (" %s\n", "-w, --warning=RANGE"); | 688 | printf (" %s\n", "-w, --warning=RANGE"); |
689 | printf (" %s\n", _("Generate warning state if metric is outside this range")); | 689 | printf (" %s\n", _("Generate warning state if metric is outside this range")); |
690 | printf (" %s\n", "-c, --critical=RANGE"); | 690 | printf (" %s\n", "-c, --critical=RANGE"); |
@@ -699,7 +699,7 @@ print_help (void) | |||
699 | #if defined( __linux__ ) | 699 | #if defined( __linux__ ) |
700 | printf (" %s\n", _("ELAPSED - time elapsed in seconds")); | 700 | printf (" %s\n", _("ELAPSED - time elapsed in seconds")); |
701 | #endif /* defined(__linux__) */ | 701 | #endif /* defined(__linux__) */ |
702 | printf (_(UT_TIMEOUT), DEFAULT_SOCKET_TIMEOUT); | 702 | printf (UT_TIMEOUT, DEFAULT_SOCKET_TIMEOUT); |
703 | 703 | ||
704 | printf (" %s\n", "-v, --verbose"); | 704 | printf (" %s\n", "-v, --verbose"); |
705 | printf (" %s\n", _("Extra information. Up to 3 verbosity levels")); | 705 | printf (" %s\n", _("Extra information. Up to 3 verbosity levels")); |
@@ -741,7 +741,7 @@ be the total number of running processes\n\n")); | |||
741 | 741 | ||
742 | #ifdef NP_EXTRA_OPTS | 742 | #ifdef NP_EXTRA_OPTS |
743 | printf ("%s\n", _("Notes:")); | 743 | printf ("%s\n", _("Notes:")); |
744 | printf (_(UT_EXTRA_OPTS_NOTES)); | 744 | printf (UT_EXTRA_OPTS_NOTES); |
745 | printf ("\n"); | 745 | printf ("\n"); |
746 | #endif | 746 | #endif |
747 | 747 | ||
@@ -757,7 +757,7 @@ be the total number of running processes\n\n")); | |||
757 | printf (" %s\n", "check_procs -w 10 -c 20 --metric=CPU"); | 757 | printf (" %s\n", "check_procs -w 10 -c 20 --metric=CPU"); |
758 | printf (" %s\n", _("Alert if CPU of any processes over 10%% or 20%%")); | 758 | printf (" %s\n", _("Alert if CPU of any processes over 10%% or 20%%")); |
759 | 759 | ||
760 | printf (_(UT_SUPPORT)); | 760 | printf (UT_SUPPORT); |
761 | } | 761 | } |
762 | 762 | ||
763 | void | 763 | void |