summaryrefslogtreecommitdiffstats
path: root/plugins/negate.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/negate.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/negate.c')
-rw-r--r--plugins/negate.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/negate.c b/plugins/negate.c
index 8eac722..869b9d9 100644
--- a/plugins/negate.c
+++ b/plugins/negate.c
@@ -247,9 +247,9 @@ print_help (void)
247 247
248 print_usage (); 248 print_usage ();
249 249
250 printf (_(UT_HELP_VRSN)); 250 printf (UT_HELP_VRSN);
251 251
252 printf (_(UT_TIMEOUT), timeout_interval); 252 printf (UT_TIMEOUT, timeout_interval);
253 printf (" %s\n", _("Keep timeout longer than the plugin timeout to retain CRITICAL status.")); 253 printf (" %s\n", _("Keep timeout longer than the plugin timeout to retain CRITICAL status."));
254 printf (" -T, --timeout-result=STATUS\n"); 254 printf (" -T, --timeout-result=STATUS\n");
255 printf (" %s\n", _("Custom result on Negate timeouts; see below for STATUS definition\n")); 255 printf (" %s\n", _("Custom result on Negate timeouts; see below for STATUS definition\n"));
@@ -281,7 +281,7 @@ print_help (void)
281 printf (" %s\n", _("Using timeout-result, it is possible to override the timeout behaviour or a")); 281 printf (" %s\n", _("Using timeout-result, it is possible to override the timeout behaviour or a"));
282 printf (" %s\n", _("plugin by setting the negate timeout a bit lower.")); 282 printf (" %s\n", _("plugin by setting the negate timeout a bit lower."));
283 283
284 printf (_(UT_SUPPORT)); 284 printf (UT_SUPPORT);
285} 285}
286 286
287 287