summaryrefslogtreecommitdiffstats
path: root/plugins/check_pgsql.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_pgsql.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_pgsql.c')
-rw-r--r--plugins/check_pgsql.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/plugins/check_pgsql.c b/plugins/check_pgsql.c
index 40c104e..a365214 100644
--- a/plugins/check_pgsql.c
+++ b/plugins/check_pgsql.c
@@ -429,12 +429,12 @@ print_help (void)
429 429
430 print_usage (); 430 print_usage ();
431 431
432 printf (_(UT_HELP_VRSN)); 432 printf (UT_HELP_VRSN);
433 printf (_(UT_EXTRA_OPTS)); 433 printf (UT_EXTRA_OPTS);
434 434
435 printf (_(UT_HOST_PORT), 'P', myport); 435 printf (UT_HOST_PORT, 'P', myport);
436 436
437 printf (_(UT_IPv46)); 437 printf (UT_IPv46);
438 438
439 printf (" %s\n", "-d, --database=STRING"); 439 printf (" %s\n", "-d, --database=STRING");
440 printf (" %s", _("Database to check ")); 440 printf (" %s", _("Database to check "));
@@ -444,11 +444,11 @@ print_help (void)
444 printf (" %s\n", "-p, --password = STRING"); 444 printf (" %s\n", "-p, --password = STRING");
445 printf (" %s\n", _("Password (BIG SECURITY ISSUE)")); 445 printf (" %s\n", _("Password (BIG SECURITY ISSUE)"));
446 446
447 printf (_(UT_WARN_CRIT)); 447 printf (UT_WARN_CRIT);
448 448
449 printf (_(UT_TIMEOUT), DEFAULT_SOCKET_TIMEOUT); 449 printf (UT_TIMEOUT, DEFAULT_SOCKET_TIMEOUT);
450 450
451 printf (_(UT_VERBOSE)); 451 printf (UT_VERBOSE);
452 452
453 printf ("\n"); 453 printf ("\n");
454 printf (" %s\n", _("All parameters are optional.")); 454 printf (" %s\n", _("All parameters are optional."));
@@ -469,10 +469,10 @@ print_help (void)
469#ifdef NP_EXTRA_OPTS 469#ifdef NP_EXTRA_OPTS
470 printf ("\n"); 470 printf ("\n");
471 printf ("%s\n", _("Notes:")); 471 printf ("%s\n", _("Notes:"));
472 printf (_(UT_EXTRA_OPTS_NOTES)); 472 printf (UT_EXTRA_OPTS_NOTES);
473#endif 473#endif
474 474
475 printf (_(UT_SUPPORT)); 475 printf (UT_SUPPORT);
476} 476}
477 477
478 478