fix for if gettext is disabled

This commit is contained in:
darkrose 2014-11-16 00:51:10 +10:00
parent 2d0e961d19
commit b3e08685c9
1 changed files with 1 additions and 0 deletions

View File

@ -6,6 +6,7 @@
#include <libintl.h>
#else
#define gettext(String) String
#define ngettext(String1,String2,Int) String2
#endif
#define _(String) gettext(String)