From 1bcb6712e5c6c25eebac7e8bf55d33095b51cffa Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Sun, 6 Feb 2011 22:07:17 +0100 Subject: [PATCH] Fix unmarked translation The file-browser wndowtitle in WB was not marked for translation. --- winboard/winboard.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/winboard/winboard.c b/winboard/winboard.c index 08284bc..b76a358 100644 --- a/winboard/winboard.c +++ b/winboard/winboard.c @@ -4705,7 +4705,7 @@ WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) f = OpenFileDialog(hwnd, "wb", defName, "bmp", DIAGRAM_FILT, - "Save Diagram to File", NULL, fileTitle, NULL); + _("Save Diagram to File"), NULL, fileTitle, NULL); if (f != NULL) { SaveDiagram(f); } -- 1.7.0.4