diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-07-26 12:13:19 (GMT) |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-07-26 12:13:19 (GMT) |
commit | 22c75b6d3cd0482499bd5dbe6e7a6a068d3951d6 (patch) | |
tree | d413ac0cadb8c8659b754d86c671aa46c66f01fa | |
parent | d829070b19939528d7f20b8bae024029e7a5d23e (diff) | |
download | monitoring-plugins-22c75b6d3cd0482499bd5dbe6e7a6a068d3951d6.tar.gz |
add S_ macor to mark message for both translation and inclusion into docbook SGML
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@606 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r-- | plugins/common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/common.h b/plugins/common.h index 2456c41..91b454d 100644 --- a/plugins/common.h +++ b/plugins/common.h | |||
@@ -159,10 +159,12 @@ enum { | |||
159 | #if ENABLE_NLS | 159 | #if ENABLE_NLS |
160 | # include "gettext.h" | 160 | # include "gettext.h" |
161 | # define _(String) gettext (String) | 161 | # define _(String) gettext (String) |
162 | # define S_(String) gettext (String) | ||
162 | # define gettext_noop(String) String | 163 | # define gettext_noop(String) String |
163 | # define N_(String) gettext_noop String | 164 | # define N_(String) gettext_noop String |
164 | #else | 165 | #else |
165 | # define _(String) (String) | 166 | # define _(String) (String) |
167 | # define S_(String) (String) | ||
166 | # define N_(String) String | 168 | # define N_(String) String |
167 | # define textdomain(Domain) | 169 | # define textdomain(Domain) |
168 | # define bindtextdomain(Package, Directory) | 170 | # define bindtextdomain(Package, Directory) |