From: Dan F. <dfa...@us...> - 2009-01-13 06:50:59
|
Update of /cvsroot/libexif/exif/exif In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv1006/exif Modified Files: main.c Log Message: Added a hack to allow popt 1.10 messages to be translated. Index: main.c =================================================================== RCS file: /cvsroot/libexif/exif/exif/main.c,v retrieving revision 1.67 retrieving revision 1.68 diff -u -p -d -r1.67 -r1.68 --- main.c 9 Dec 2008 20:17:39 -0000 1.67 +++ main.c 13 Jan 2009 06:50:48 -0000 1.68 @@ -220,6 +220,14 @@ main (int argc, const char **argv) {"debug", 'd', POPT_ARG_NONE, &log_arg.debug, 0, N_("Show debugging messages"), NULL}, POPT_TABLEEND}; +#if 0 +/* This is a hack to allow translation of popt 1.10 messages with gettext. + * Supposedly, this won't be necessary starting with popt 1.12 + */ + N_("Help options:"); + N_("Show this help message"); + N_("Display brief usage message"); +#endif ExifData *ed; ExifLog *log = NULL; char fout[1024] = {0, }; |