diff options
author | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-03 09:19:18 +0000 |
---|---|---|
committer | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-03 09:19:18 +0000 |
commit | 83df67099daebd7189ad0417089040f3b2de27c1 (patch) | |
tree | a821e85265092ae1f55d64ac9499d9d951466470 /plugins/check_nwstat.c | |
parent | 9d704527496ac715e24bcc844b39125022c0aabc (diff) | |
download | monitoring-plugins-83df67099daebd7189ad0417089040f3b2de27c1.tar.gz |
Localization fixes
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@988 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_nwstat.c')
-rw-r--r-- | plugins/check_nwstat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_nwstat.c b/plugins/check_nwstat.c index 41b7c870..9c89ef9e 100644 --- a/plugins/check_nwstat.c +++ b/plugins/check_nwstat.c @@ -643,7 +643,7 @@ main(int argc, char **argv) { result=STATE_CRITICAL; else if (check_warning_value==TRUE && dirty_cache_buffers <= warning_value) result=STATE_WARNING; - asprintf (&output_message,_("dirty cache buffers = %lu%% of the total"),dirty_cache_buffers); + asprintf (&output_message,_("Dirty cache buffers = %lu%% of the total"),dirty_cache_buffers); /* check % total cache buffers as a percentage of the original*/ } else if (vars_to_check==TCB) { @@ -658,7 +658,7 @@ main(int argc, char **argv) { result=STATE_CRITICAL; else if (check_warning_value==TRUE && total_cache_buffers <= warning_value) result=STATE_WARNING; - asprintf (&output_message,_("total cache buffers = %lu%% of the original"),total_cache_buffers); + asprintf (&output_message,_("Total cache buffers = %lu%% of the original"),total_cache_buffers); } else if (vars_to_check==DSVER) { asprintf (&send_buffer,"S13\r\n"); |