Mark the strings "first" and "sencond" for translation.
authorByrial Jensen <byrial@vip.cybercity.dk>
Thu, 16 Feb 2012 21:51:44 +0000 (22:51 +0100)
committerByrial Jensen <byrial@vip.cybercity.dk>
Thu, 16 Feb 2012 21:51:44 +0000 (22:51 +0100)
... and assign the translated strings to cps->which in function InitEngine()

backend.c

index 313c8d2..7188448 100644 (file)
--- a/backend.c
+++ b/backend.c
@@ -734,8 +734,12 @@ ClearOptions (ChessProgramState *cps)
 }
 
 char *engineNames[] = {
-"first",
-"second"
+  /* TRANSLATORS: "first" is the first of possible two chess engines. It is inserted into strings
+     such as "% engine" / "%s chess program" / "%s machine" - all mening the same thing */
+N_("first"),
+  /* TRANSLATORS: "second" is the second of possible two chess engines. It is inserted into strings
+     such as "% engine" / "%s chess program" / "%s machine" - all mening the same thing */
+N_("second")
 };
 
 void
@@ -744,7 +748,7 @@ InitEngine (ChessProgramState *cps, int n)
 
     ClearOptions(cps);
 
-    cps->which = engineNames[n];
+    cps->which = _(engineNames[n]);
     cps->maybeThinking = FALSE;
     cps->pr = NoProc;
     cps->isr = NULL;