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_real.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_real.c')
-rw-r--r-- | plugins/check_real.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/check_real.c b/plugins/check_real.c index cbc3103..1643347 100644 --- a/plugins/check_real.c +++ b/plugins/check_real.c | |||
@@ -416,10 +416,10 @@ print_help (void) | |||
416 | 416 | ||
417 | print_usage (); | 417 | print_usage (); |
418 | 418 | ||
419 | printf (_(UT_HELP_VRSN)); | 419 | printf (UT_HELP_VRSN); |
420 | printf (_(UT_EXTRA_OPTS)); | 420 | printf (UT_EXTRA_OPTS); |
421 | 421 | ||
422 | printf (_(UT_HOST_PORT), 'p', myport); | 422 | printf (UT_HOST_PORT, 'p', myport); |
423 | 423 | ||
424 | printf (" %s\n", "-u, --url=STRING"); | 424 | printf (" %s\n", "-u, --url=STRING"); |
425 | printf (" %s\n", _("Connect to this url")); | 425 | printf (" %s\n", _("Connect to this url")); |
@@ -427,11 +427,11 @@ print_help (void) | |||
427 | printf (_("String to expect in first line of server response (default: %s)\n"), | 427 | printf (_("String to expect in first line of server response (default: %s)\n"), |
428 | EXPECT); | 428 | EXPECT); |
429 | 429 | ||
430 | printf (_(UT_WARN_CRIT)); | 430 | printf (UT_WARN_CRIT); |
431 | 431 | ||
432 | printf (_(UT_TIMEOUT), DEFAULT_SOCKET_TIMEOUT); | 432 | printf (UT_TIMEOUT, DEFAULT_SOCKET_TIMEOUT); |
433 | 433 | ||
434 | printf (_(UT_VERBOSE)); | 434 | printf (UT_VERBOSE); |
435 | 435 | ||
436 | printf ("\n"); | 436 | printf ("\n"); |
437 | printf ("%s\n", _("This plugin will attempt to open an RTSP connection with the host.")); | 437 | printf ("%s\n", _("This plugin will attempt to open an RTSP connection with the host.")); |
@@ -443,10 +443,10 @@ print_help (void) | |||
443 | #ifdef NP_EXTRA_OPTS | 443 | #ifdef NP_EXTRA_OPTS |
444 | printf ("\n"); | 444 | printf ("\n"); |
445 | printf ("%s\n", _("Notes:")); | 445 | printf ("%s\n", _("Notes:")); |
446 | printf (_(UT_EXTRA_OPTS_NOTES)); | 446 | printf (UT_EXTRA_OPTS_NOTES); |
447 | #endif | 447 | #endif |
448 | 448 | ||
449 | printf (_(UT_SUPPORT)); | 449 | printf (UT_SUPPORT); |
450 | } | 450 | } |
451 | 451 | ||
452 | 452 | ||