X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=xengineoutput.c;h=980b639a68c4b7e251fca622168b2dddf88d1b0b;hb=34e7a4b058c8ee6691dea2b5776459d58569840d;hp=02446e16e62b3b5bb8874dbdb0f18e71dc83692e;hpb=007b64fc1619db18bae80e661e0e98f3bd2da012;p=xboard.git diff --git a/xengineoutput.c b/xengineoutput.c index 02446e1..980b639 100644 --- a/xengineoutput.c +++ b/xengineoutput.c @@ -540,11 +540,11 @@ EngineOutputPopUp() int j; Widget edit; static int needInit = TRUE; - static char *title = _("Engine output"), *text = _("This feature is experimental"); + static char *title = N_("Engine output"), *text = N_("This feature is experimental"); if (engineOutputShell == NULL) { engineOutputShell = - EngineOutputCreate(title, text); + EngineOutputCreate(_(title), _(text)); XtRealizeWidget(engineOutputShell); CatchDeleteWindow(engineOutputShell, "EngineOutputPopDown"); if( needInit ) { @@ -561,8 +561,8 @@ EngineOutputPopUp() XtSetArg(args[j], XtNstring, text); j++; XtSetValues(edit, args, j); j = 0; - XtSetArg(args[j], XtNiconName, (XtArgVal) title); j++; - XtSetArg(args[j], XtNtitle, (XtArgVal) title); j++; + XtSetArg(args[j], XtNiconName, (XtArgVal) _(title)); j++; + XtSetArg(args[j], XtNtitle, (XtArgVal) _(title)); j++; XtSetValues(engineOutputShell, args, j); }