diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-07-21 12:06:24 (GMT) |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-07-21 12:06:24 (GMT) |
commit | 35d8e3500946289de2638596bc0f93b044acc42c (patch) | |
tree | 75b65a2a04c2d9b8d2952b241e21a5a0486f947e /plugins | |
parent | 97ecfa6226bea7c09f78b2b92d807e73467ffc08 (diff) | |
download | monitoring-plugins-35d8e3500946289de2638596bc0f93b044acc42c.tar.gz |
add stubs to allow markup for translation
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@597 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/common.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/plugins/common.h b/plugins/common.h index 4877eee..21facfc 100644 --- a/plugins/common.h +++ b/plugins/common.h | |||
@@ -149,3 +149,14 @@ enum { | |||
149 | MAX_INPUT_BUFFER = 1024, /* max size of most buffers we use */ | 149 | MAX_INPUT_BUFFER = 1024, /* max size of most buffers we use */ |
150 | MAX_HOST_ADDRESS_LENGTH = 256 /* max size of a host address */ | 150 | MAX_HOST_ADDRESS_LENGTH = 256 /* max size of a host address */ |
151 | }; | 151 | }; |
152 | |||
153 | /* | ||
154 | * | ||
155 | * Internationalization | ||
156 | * | ||
157 | */ | ||
158 | |||
159 | #define _(String) (String) | ||
160 | #define N_(String) String | ||
161 | #define textdomain(Domain) | ||
162 | #define bindtextdomain(Package, Directory) | ||