summaryrefslogtreecommitdiff
path: root/src/utils/gettext.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/gettext.h')
-rw-r--r--src/utils/gettext.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/utils/gettext.h b/src/utils/gettext.h
index 0a15aa724..67d74aa19 100644
--- a/src/utils/gettext.h
+++ b/src/utils/gettext.h
@@ -39,15 +39,7 @@
#define gettext(s) (const_cast <char*>(s))
#define _(s) (const_cast <char*>(s))
#define N_(s) (const_cast <char*>(s))
-
-char* ngettext(char* msgid, char* msgid_plural, unsigned long int n);
-
-char* ngettext(char* msgid, char* msgid_plural, unsigned long int n)
-{
- if(n > 1)
- return msgid_plural;
- return msgid;
-}
+#define ngettext(s1,s2,i1) (const_cast <char*>(s1))
#endif