diff options
author | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-30 00:41:41 (GMT) |
---|---|---|
committer | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-30 00:41:41 (GMT) |
commit | 7df9bd7bab72af4f300eef9dc509a226924de58b (patch) | |
tree | d98aa39e6fd369c439928d033e45382331e4755f /plugins/check_dns.c | |
parent | fba6d9719e362be25a546ed47d0f7a42679fc79a (diff) | |
download | monitoring-plugins-7df9bd7bab72af4f300eef9dc509a226924de58b.tar.gz |
more internationalization fixes
internationalization freeze for beta1
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1067 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_dns.c')
-rw-r--r-- | plugins/check_dns.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_dns.c b/plugins/check_dns.c index e6483b9..94d4300 100644 --- a/plugins/check_dns.c +++ b/plugins/check_dns.c | |||
@@ -224,9 +224,9 @@ error_scan (char *input_buffer) | |||
224 | { | 224 | { |
225 | 225 | ||
226 | /* the DNS lookup timed out */ | 226 | /* the DNS lookup timed out */ |
227 | if (strstr (input_buffer, "Note: nslookup is deprecated and may be removed from future releases.") || | 227 | if (strstr (input_buffer, _("Note: nslookup is deprecated and may be removed from future releases.")) || |
228 | strstr (input_buffer, "Consider using the `dig' or `host' programs instead. Run nslookup with") || | 228 | strstr (input_buffer, _("Consider using the `dig' or `host' programs instead. Run nslookup with")) || |
229 | strstr (input_buffer, "the `-sil[ent]' option to prevent this message from appearing.")) | 229 | strstr (input_buffer, _("the `-sil[ent]' option to prevent this message from appearing."))) |
230 | return STATE_OK; | 230 | return STATE_OK; |
231 | 231 | ||
232 | /* DNS server is not running... */ | 232 | /* DNS server is not running... */ |