summaryrefslogtreecommitdiff
path: root/LiteEditor/tabgroupdlg.cpp
diff options
context:
space:
mode:
authorJames Cowgill <james410@cowgill.org.uk>2014-03-21 12:42:00 +0000
committerJames Cowgill <james410@cowgill.org.uk>2014-03-21 12:42:00 +0000
commit01b494f950c9a63763683747ca330a2c70855f0f (patch)
tree00faa33f79482dc7d19db1b06e189e7760477a75 /LiteEditor/tabgroupdlg.cpp
parenta00e9147b0128de0375a207b4f81494e7a0681d4 (diff)
Imported Upstream version 5.4+dfsg
Diffstat (limited to 'LiteEditor/tabgroupdlg.cpp')
-rw-r--r--LiteEditor/tabgroupdlg.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/LiteEditor/tabgroupdlg.cpp b/LiteEditor/tabgroupdlg.cpp
index 8ad92d5a..f3d20d50 100644
--- a/LiteEditor/tabgroupdlg.cpp
+++ b/LiteEditor/tabgroupdlg.cpp
@@ -65,8 +65,8 @@ void LoadTabGroupDlg::InsertListItem(const wxString& item)
void LoadTabGroupDlg::OnBrowse( wxCommandEvent& WXUNUSED(event) )
{
- wxString group = wxFileSelector(wxT("Select a program:"), wxT(""), wxT(""), tabgroupTag,
- wxT("Tab groups (*.tabgroup)|*.tabgroup"), wxFD_OPEN | wxFD_FILE_MUST_EXIST, this);
+ wxString group = wxFileSelector(_("Select a tab group:"), wxT(""), wxT(""), tabgroupTag,
+ wxString(_("Tab groups")) + wxT(" (*.tabgroup)|*.tabgroup"), wxFD_OPEN | wxFD_FILE_MUST_EXIST, this);
if (!group.IsEmpty()) {
// Need to insert/select the new item, otherwise it won't be used
InsertListItem(group);