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_mrtgtraf.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_mrtgtraf.c')
-rw-r--r-- | plugins/check_mrtgtraf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/check_mrtgtraf.c b/plugins/check_mrtgtraf.c index 376a509..1234bff 100644 --- a/plugins/check_mrtgtraf.c +++ b/plugins/check_mrtgtraf.c | |||
@@ -343,8 +343,8 @@ print_help (void) | |||
343 | 343 | ||
344 | print_usage (); | 344 | print_usage (); |
345 | 345 | ||
346 | printf (_(UT_HELP_VRSN)); | 346 | printf (UT_HELP_VRSN); |
347 | printf (_(UT_EXTRA_OPTS)); | 347 | printf (UT_EXTRA_OPTS); |
348 | 348 | ||
349 | printf (" %s\n", "-F, --filename=STRING"); | 349 | printf (" %s\n", "-F, --filename=STRING"); |
350 | printf (" %s\n", _("File to read log from")); | 350 | printf (" %s\n", _("File to read log from")); |
@@ -367,10 +367,10 @@ print_help (void) | |||
367 | printf (" %s\n", _(" reports. I'm not sure why this is right now, but will look into it")); | 367 | printf (" %s\n", _(" reports. I'm not sure why this is right now, but will look into it")); |
368 | printf (" %s\n", _(" for future enhancements of this plugin.")); | 368 | printf (" %s\n", _(" for future enhancements of this plugin.")); |
369 | #ifdef NP_EXTRA_OPTS | 369 | #ifdef NP_EXTRA_OPTS |
370 | printf (" -%s", _(UT_EXTRA_OPTS_NOTES)); | 370 | printf (" -%s", UT_EXTRA_OPTS_NOTES); |
371 | #endif | 371 | #endif |
372 | 372 | ||
373 | printf (_(UT_SUPPORT)); | 373 | printf (UT_SUPPORT); |
374 | } | 374 | } |
375 | 375 | ||
376 | 376 | ||