X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=engineoutput.c;h=59bff2fec9c809c1ab5f3d69b2be15c7eeeaca92;hb=848e9dfc57a2db0255eb1adbd2c01c61fe26c4ed;hp=0a45777b203157358ea173854990814effbc2619;hpb=7fe8df6abd50d72bcfc86a6d559a6b13b5af3821;p=xboard.git diff --git a/engineoutput.c b/engineoutput.c index 0a45777..59bff2f 100644 --- a/engineoutput.c +++ b/engineoutput.c @@ -45,6 +45,15 @@ #include "backend.h" #include "moves.h" #include "engineoutput.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 typedef struct { char * name; @@ -82,9 +91,11 @@ void MakeEngineOutputTitle() { static char buf[MSG_SIZ]; static char oldTitle[MSG_SIZ]; - char *title = "Engine Output"; + char title[MSG_SIZ]; int count, rule = 2*appData.ruleMoves; + snprintf(title, MSG_SIZ, _("Engine Output") ); + if(!EngineOutputIsUp()) return; // figure out value of 50-move counter count = currentMove; @@ -93,7 +104,8 @@ void MakeEngineOutputTitle() count = currentMove - count; snprintf(buf, MSG_SIZ, "%s (%d reversible plies)", title, count); if(!rule) rule = 100; - if(count >= rule - 40 && (!appData.icsActive || gameMode == IcsObserving)) title = buf; + if(count >= rule - 40 && (!appData.icsActive || gameMode == IcsObserving)) + safeStrCpy(title, buf, MSG_SIZ); if(!strcmp(oldTitle, title)) return; safeStrCpy(oldTitle, title, MSG_SIZ); SetEngineOutputTitle(title);