diff --git a/gui/wxpython/main_window/frame.py b/gui/wxpython/main_window/frame.py index bb9c7c41eb2..2d9c2b0b956 100644 --- a/gui/wxpython/main_window/frame.py +++ b/gui/wxpython/main_window/frame.py @@ -614,7 +614,7 @@ def BuildPanes(self): self.datacatalog, aui.AuiPaneInfo() .Name("datacatalog") - .Caption("Data Catalog") + .Caption(_("Data")) .Left() .Layer(1) .Position(1) @@ -629,7 +629,7 @@ def BuildPanes(self): self.notebookLayers, aui.AuiPaneInfo() .Name("layers") - .Caption("Layers") + .Caption(_("Layers")) .Left() .Layer(1) .Position(2) @@ -644,7 +644,7 @@ def BuildPanes(self): self.search, aui.AuiPaneInfo() .Name("tools") - .Caption("Tools") + .Caption(_("Tools")) .Right() .Layer(1) .Position(1) @@ -659,7 +659,7 @@ def BuildPanes(self): self.goutput, aui.AuiPaneInfo() .Name("console") - .Caption("Console") + .Caption(_("Console")) .Right() .BestSize(self.PANE_BEST_SIZE) .MinSize(self.PANE_MIN_SIZE) @@ -673,7 +673,7 @@ def BuildPanes(self): self.pyshell, aui.AuiPaneInfo() .Name("python") - .Caption("Python") + .Caption(_("Python")) .Right() .BestSize(self.PANE_BEST_SIZE) .MinSize(self.PANE_MIN_SIZE)