Add 2 strings for translation
authorByrial Jensen <byrial@vip.cybercity.dk>
Mon, 19 Dec 2011 12:16:58 +0000 (13:16 +0100)
committerByrial Jensen <byrial@vip.cybercity.dk>
Mon, 19 Dec 2011 12:16:58 +0000 (13:16 +0100)
gamelist.c
po/POTFILES.in
xgamelist.c

index cb66eaa..8497192 100644 (file)
 #include "backend.h"
 #include "parser.h"
 #include "moves.h"
+#include "gettext.h"
+
+#ifdef ENABLE_NLS
+# define  _(s) gettext (s)
+# define N_(s) gettext_noop (s)
+#else
+# define  _(s) (s)
+# define N_(s)  s
+#endif
 
 
 /* Variables
@@ -363,7 +372,7 @@ int GameListBuild(f)
            break;
        }
        if(gameNumber % 1000 == 0) {
-           snprintf(buf, MSG_SIZ,"Reading game file (%d)", gameNumber);
+           snprintf(buf, MSG_SIZ, _("Reading game file (%d)"), gameNumber);
            DisplayTitle(buf);
        }
     }
index 9a38202..1b31d76 100755 (executable)
@@ -2,6 +2,7 @@ backend.c
 book.c
 engineoutput.c
 filebrowser/selfile.c
+gamelist.c
 xboard.c
 xedittags.c
 xengineoutput.c
index 95ce188..608e82e 100644 (file)
@@ -392,7 +392,7 @@ GameListReplace(int page)
   XawListChange(listwidg, list, 0, 0, True);
   XtSetValues(listwidg, &arg, 1);
   XawListHighlight(listwidg, 0);
-  snprintf(buf, MSG_SIZ, "%s- %d/%d games (%d-%d-%d)", glc->filename, listLength, ((ListGame *) gameList.tailPred)->number, wins, losses, draws);
+  snprintf(buf, MSG_SIZ, _("%s - %d/%d games (%d-%d-%d)"), glc->filename, listLength, ((ListGame *) gameList.tailPred)->number, wins, losses, draws);
   XtSetArg(arg, XtNtitle, buf);
   XtSetValues(glc->shell, &arg, 1);
 }