summaryrefslogtreecommitdiffstats
path: root/plugins/urlize.c
diff options
context:
space:
mode:
authorThomas Guyot-Sionnest <dermoth@aei.ca>2010-04-14 06:11:45 -0400
committerThomas Guyot-Sionnest <dermoth@aei.ca>2010-04-14 08:33:06 -0400
commit25d1ee331dbe4977a4a1a756c67f32bd51d9b070 (patch)
treeb15cfec59fdbaa8b283f8e7aa2e3d8c4207a7376 /plugins/urlize.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/urlize.c')
-rw-r--r--plugins/urlize.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/urlize.c b/plugins/urlize.c
index 202fa048..5fb3aca0 100644
--- a/plugins/urlize.c
+++ b/plugins/urlize.c
@@ -174,7 +174,7 @@ print_help (void)
174 174
175 print_usage (); 175 print_usage ();
176 176
177 printf (_(UT_HELP_VRSN)); 177 printf (UT_HELP_VRSN);
178 178
179 printf ("\n"); 179 printf ("\n");
180 printf ("%s\n", _("Examples:")); 180 printf ("%s\n", _("Examples:"));
@@ -186,7 +186,7 @@ print_help (void)
186 printf (" %s\n\n", _("You probably want:")); 186 printf (" %s\n\n", _("You probably want:"));
187 printf (" %s\n", _("urlize http://example.com/ \"check_http -H example.com -r 'two words'\"")); 187 printf (" %s\n", _("urlize http://example.com/ \"check_http -H example.com -r 'two words'\""));
188 188
189 printf (_(UT_SUPPORT)); 189 printf (UT_SUPPORT);
190} 190}
191 191
192 192