diff options
| author | JosJuice <josjuice@gmail.com> | 2015-11-20 11:33:47 +0100 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2015-11-20 11:33:47 +0100 |
| commit | 74ea765427ad499dd16667d8939cb67d83dcdf04 (patch) | |
| tree | a6a1d02604e648a62779dd785b08423fd9743117 /Source/Core/DolphinWX/FrameTools.cpp | |
| parent | 584ea8b3205f703b09f7f030493150e9e526b604 (diff) | |
Mark more strings for translation
Diffstat (limited to 'Source/Core/DolphinWX/FrameTools.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/FrameTools.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Source/Core/DolphinWX/FrameTools.cpp b/Source/Core/DolphinWX/FrameTools.cpp index 55b933cc63..cf2191c5c0 100644 --- a/Source/Core/DolphinWX/FrameTools.cpp +++ b/Source/Core/DolphinWX/FrameTools.cpp @@ -1449,14 +1449,12 @@ void CFrame::OnImportSave(wxCommandEvent& WXUNUSED (event)) { wxString path = wxFileSelector(_("Select the save file"), wxEmptyString, wxEmptyString, wxEmptyString, - _("Wii save files (*.bin)|*.bin"), + _("Wii save files (*.bin)") + "|*.bin|" + wxGetTranslation(wxALL_FILES), wxFD_OPEN | wxFD_PREVIEW | wxFD_FILE_MUST_EXIST, this); if (!path.IsEmpty()) - { CWiiSaveCrypted::ImportWiiSave(WxStrToStr(path)); - } } void CFrame::OnShowCheatsWindow(wxCommandEvent& WXUNUSED (event)) @@ -1491,7 +1489,7 @@ void CFrame::OnInstallWAD(wxCommandEvent& event) wxString path = wxFileSelector( _("Select a Wii WAD file to install"), wxEmptyString, wxEmptyString, wxEmptyString, - "Wii WAD file (*.wad)|*.wad", + _("Wii WAD files (*.wad)") + "|*.wad|" + wxGetTranslation(wxALL_FILES), wxFD_OPEN | wxFD_PREVIEW | wxFD_FILE_MUST_EXIST, this); fileName = WxStrToStr(path); |
