diff options
Diffstat (limited to 'plugins')
-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 2456c417..91b454db 100644 --- a/plugins/common.h +++ b/plugins/common.h @@ -159,10 +159,12 @@ enum { #if ENABLE_NLS # include "gettext.h" # define _(String) gettext (String) +# define S_(String) gettext (String) # define gettext_noop(String) String # define N_(String) gettext_noop String #else # define _(String) (String) +# define S_(String) (String) # define N_(String) String # define textdomain(Domain) # define bindtextdomain(Package, Directory) |