Rename Match dialog to Tournament
authorH.G. Muller <h.g.muller@hccnet.nl>
Tue, 26 Nov 2013 09:21:08 +0000 (10:21 +0100)
committerH.G. Muller <h.g.muller@hccnet.nl>
Tue, 26 Nov 2013 09:21:08 +0000 (10:21 +0100)
Rename this dialog to conform with XBoard, both in menu item and window title.
Also puts the remark on sync options in a single Label Option above the
options, rather than distributed over two lines behind the checkboxes.

dialogs.c
menus.c

index d9d2f6a..7262664 100644 (file)
--- a/dialogs.c
+++ b/dialogs.c
@@ -258,10 +258,9 @@ MatchOK (int n)
 
 static Option matchOptions[] = {
 { 0,  0,          0, NULL, (void*) &tfName, ".trn", NULL, FileName, N_("Tournament file:          ") },
+{ 0,  0,          0, NULL, NULL, "", NULL, Label, N_("For concurrent playing of tourney with multiple XBoards:") },
 { 0,  0,          0, NULL, (void*) &appData.roundSync, "", NULL, CheckBox, N_("Sync after round") },
-{ 0, SAME_ROW|LL, 0, NULL, NULL, "", NULL, Label, N_("    (for concurrent playing of a single") },
 { 0,  0,          0, NULL, (void*) &appData.cycleSync, "", NULL, CheckBox, N_("Sync after cycle") },
-{ 0, SAME_ROW|LL, 0, NULL, NULL, "", NULL, Label, N_("      tourney with multiple XBoards)") },
 { 0,  LR,       175, NULL, NULL, "", NULL, Label, N_("Tourney participants:") },
 { 0, SAME_ROW|RR, 175, NULL, NULL, "", NULL, Label, N_("Select Engine:") },
 { 150, T_VSCRL | T_FILL | T_WRAP,
@@ -342,7 +341,7 @@ MatchOptionsProc ()
    ASSIGN(tfName, appData.tourneyFile[0] ? appData.tourneyFile : MakeName(appData.defName));
    ASSIGN(engineName, appData.participants);
    ASSIGN(engineMnemonic[0], "");
-   GenericPopUp(matchOptions, _("Match Options"), TransientDlg, BoardWindow, MODAL, 0);
+   GenericPopUp(matchOptions, _("Tournament Options"), TransientDlg, BoardWindow, MODAL, 0);
 }
 
 // ------------------------------------------- General Options --------------------------------------------------
diff --git a/menus.c b/menus.c
index cdbabff..03829b9 100644 (file)
--- a/menus.c
+++ b/menus.c
@@ -703,7 +703,7 @@ MenuItem optionsMenu[] = {
   {N_("Common Engine..."),       "<Alt><Shift>u",   "CommonEngine",        UciMenuProc},
   {N_("Adjudications..."),       "<Alt><Shift>j",   "Adjudications",       EngineMenuProc},
   {N_("ICS..."),                  NULL,             "ICS",                 IcsOptionsProc},
-  {N_("Match..."),                NULL,             "Match",               MatchOptionsProc},
+  {N_("Tournament..."),           NULL,             "Match",               MatchOptionsProc},
   {N_("Load Game..."),            NULL,             "LoadGame",            LoadOptionsProc},
   {N_("Save Game..."),            NULL,             "SaveGame",            SaveOptionsProc},
   {N_("Game List..."),            NULL,             "GameList",            GameListOptionsProc},