summaryrefslogtreecommitdiffstats
path: root/plugins/check_mrtg.c
diff options
context:
space:
mode:
authorThomas Guyot-Sionnest <dermoth@aei.ca>2010-04-14 10:11:45 (GMT)
committerThomas Guyot-Sionnest <dermoth@aei.ca>2010-04-14 12:33:06 (GMT)
commit25d1ee331dbe4977a4a1a756c67f32bd51d9b070 (patch)
treeb15cfec59fdbaa8b283f8e7aa2e3d8c4207a7376 /plugins/check_mrtg.c
parentb649333321701eccfd99df0d39c6b8d8c92d6a8b (diff)
downloadmonitoring-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_mrtg.c')
-rw-r--r--plugins/check_mrtg.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/check_mrtg.c b/plugins/check_mrtg.c
index 65260ed..6736c11 100644
--- a/plugins/check_mrtg.c
+++ b/plugins/check_mrtg.c
@@ -325,8 +325,8 @@ print_help (void)
325 325
326 print_usage (); 326 print_usage ();
327 327
328 printf (_(UT_HELP_VRSN)); 328 printf (UT_HELP_VRSN);
329 printf (_(UT_EXTRA_OPTS)); 329 printf (UT_EXTRA_OPTS);
330 330
331 printf (" %s\n", "-F, --logfile=FILE"); 331 printf (" %s\n", "-F, --logfile=FILE");
332 printf (" %s\n", _("The MRTG log file containing the data you want to monitor")); 332 printf (" %s\n", _("The MRTG log file containing the data you want to monitor"));
@@ -368,10 +368,10 @@ print_help (void)
368 printf (" %s\n", _("- MRTG stands for the Multi Router Traffic Grapher. It can be downloaded from")); 368 printf (" %s\n", _("- MRTG stands for the Multi Router Traffic Grapher. It can be downloaded from"));
369 printf (" %s\n", "http://ee-staff.ethz.ch/~oetiker/webtools/mrtg/mrtg.html"); 369 printf (" %s\n", "http://ee-staff.ethz.ch/~oetiker/webtools/mrtg/mrtg.html");
370#ifdef NP_EXTRA_OPTS 370#ifdef NP_EXTRA_OPTS
371 printf (" -%s", _(UT_EXTRA_OPTS_NOTES)); 371 printf (" -%s", UT_EXTRA_OPTS_NOTES);
372#endif 372#endif
373 373
374 printf (_(UT_SUPPORT)); 374 printf (UT_SUPPORT);
375} 375}
376 376
377 377