From c4db59e7b6b2a5ac7f265e4362d54ba1fa633526 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 2 Dec 2017 18:20:42 +0100 Subject: [PATCH] Clarify the "Select the OTP/SEEPROM dump" message Most users don't know what OTP/SEEPROM means. --- Source/Core/DolphinQt2/MainWindow.cpp | 4 ++-- 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}); }