[Super-tux-commit] supertux/lib/app gettext.h,1.3,1.4
Brought to you by:
wkendrick
From: Matze B. <mat...@us...> - 2004-11-29 14:50:28
|
Update of /cvsroot/super-tux/supertux/lib/app In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30097/lib/app Modified Files: gettext.h Log Message: try to fix ngettext redefined problems Index: gettext.h =================================================================== RCS file: /cvsroot/super-tux/supertux/lib/app/gettext.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- gettext.h 23 Nov 2004 22:21:46 -0000 1.3 +++ gettext.h 29 Nov 2004 14:50:19 -0000 1.4 @@ -21,7 +21,7 @@ #define _(String) \ SuperTux::dictionary_manager.get_dictionary().translate(String).c_str() -#define ngettext(id, id2, num) \ +#define N_(id, id2, num) \ SuperTux::dictionary_manager.get_dictionary().translate(id, di2, num).c_str() #endif /* _LIBGETTEXT_H */ |