diff options
| author | Anthony <Helios747@users.noreply.github.com> | 2017-12-02 09:49:22 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-12-02 09:49:22 -0800 |
| commit | d71f4168e94f1ced736461bd62ec39e46be3c78f (patch) | |
| tree | 78a65c21b458d3554c185ff9bbe12994331232f0 /Source/Core | |
| parent | c48ccdb1cd7a67fc992d192370cb1c03c6ee874e (diff) | |
| parent | c4db59e7b6b2a5ac7f265e4362d54ba1fa633526 (diff) | |
Merge pull request #6229 from JosJuice/clarify-keys-dump
Clarify the "Select the OTP/SEEPROM dump" message
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinQt2/MainWindow.cpp | 4 | ||||
| -rw-r--r-- | Source/Core/DolphinWX/FrameTools.cpp | 9 |
2 files changed, 7 insertions, 6 deletions
diff --git a/Source/Core/DolphinQt2/MainWindow.cpp b/Source/Core/DolphinQt2/MainWindow.cpp index 06a769554b..c31821d054 100644 --- a/Source/Core/DolphinQt2/MainWindow.cpp +++ b/Source/Core/DolphinQt2/MainWindow.cpp @@ -906,9 +906,9 @@ void MainWindow::OnImportNANDBackup() }, [this] { return RunOnObject(this, [this] { - return QFileDialog::getOpenFileName(this, tr("Select the OTP/SEEPROM dump"), + return QFileDialog::getOpenFileName(this, tr("Select the keys file (OTP/SEEPROM dump)"), QDir::currentPath(), - tr("BootMii OTP/SEEPROM dump (*.bin);;" + tr("BootMii keys file (*.bin);;" "All Files (*)")) .toStdString(); }); diff --git a/Source/Core/DolphinWX/FrameTools.cpp b/Source/Core/DolphinWX/FrameTools.cpp index 3c6e21386a..bf1072b68c 100644 --- a/Source/Core/DolphinWX/FrameTools.cpp +++ b/Source/Core/DolphinWX/FrameTools.cpp @@ -1306,10 +1306,11 @@ void CFrame::OnImportBootMiiBackup(wxCommandEvent& WXUNUSED(event)) DiscIO::NANDImporter().ImportNANDBin( file_name, [&dialog] { dialog.Pulse(); }, [this] { - return WxStrToStr(wxFileSelector( - _("Select the OTP/SEEPROM dump"), wxEmptyString, wxEmptyString, wxEmptyString, - _("BootMii OTP/SEEPROM dump (*.bin)") + "|*.bin|" + wxGetTranslation(wxALL_FILES), - wxFD_OPEN | wxFD_PREVIEW | wxFD_FILE_MUST_EXIST, this)); + return WxStrToStr(wxFileSelector(_("Select the keys file (OTP/SEEPROM dump)"), + wxEmptyString, wxEmptyString, wxEmptyString, + _("BootMii keys file (*.bin)") + "|*.bin|" + + wxGetTranslation(wxALL_FILES), + wxFD_OPEN | wxFD_PREVIEW | wxFD_FILE_MUST_EXIST, this)); }); wxPostEvent(GetMenuBar(), wxCommandEvent{DOLPHIN_EVT_UPDATE_LOAD_WII_MENU_ITEM}); } |
