From 4e366f3b035e8662e2c3bbba35e76a819de5a486 Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Tue, 26 Nov 2013 10:21:08 +0100 Subject: [PATCH] Rename Match dialog to Tournament 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 | 5 ++--- menus.c | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/dialogs.c b/dialogs.c index d9d2f6a..7262664 100644 --- 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 --- a/menus.c +++ b/menus.c @@ -703,7 +703,7 @@ MenuItem optionsMenu[] = { {N_("Common Engine..."), "u", "CommonEngine", UciMenuProc}, {N_("Adjudications..."), "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}, -- 1.7.0.4