Merge pull request #4612 from PEmu1/memcard-menu
Don't Use Abbreviation for "Memory Card"
This commit is contained in:
commit
189e5f87fb
|
@ -32,7 +32,7 @@ GCMemcard::GCMemcard(const std::string& filename, bool forceCreation, bool shift
|
||||||
{
|
{
|
||||||
if (!forceCreation)
|
if (!forceCreation)
|
||||||
{
|
{
|
||||||
if (!AskYesNoT("\"%s\" does not exist.\n Create a new 16MB Memcard?", filename.c_str()))
|
if (!AskYesNoT("\"%s\" does not exist.\n Create a new 16MB Memory Card?", filename.c_str()))
|
||||||
return;
|
return;
|
||||||
shift_jis =
|
shift_jis =
|
||||||
AskYesNoT("Format as Shift JIS (Japanese)?\nChoose no for Windows-1252 (Western)");
|
AskYesNoT("Format as Shift JIS (Japanese)?\nChoose no for Windows-1252 (Western)");
|
||||||
|
@ -190,7 +190,7 @@ GCMemcard::GCMemcard(const std::string& filename, bool forceCreation, bool shift
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
PanicAlertT("Failed to read block %u of the save data\nMemcard may be truncated\nFile "
|
PanicAlertT("Failed to read block %u of the save data\nMemory card may be truncated\nFile "
|
||||||
"position: 0x%" PRIx64,
|
"position: 0x%" PRIx64,
|
||||||
i, mcdFile.Tell());
|
i, mcdFile.Tell());
|
||||||
m_valid = false;
|
m_valid = false;
|
||||||
|
|
|
@ -212,7 +212,7 @@ wxMenu* MainMenuBar::CreateToolsMenu() const
|
||||||
wiimote_menu->AppendCheckItem(IDM_CONNECT_BALANCEBOARD, _("Connect Balance Board"));
|
wiimote_menu->AppendCheckItem(IDM_CONNECT_BALANCEBOARD, _("Connect Balance Board"));
|
||||||
|
|
||||||
auto* const tools_menu = new wxMenu;
|
auto* const tools_menu = new wxMenu;
|
||||||
tools_menu->Append(IDM_MEMCARD, _("&Memcard Manager (GC)"));
|
tools_menu->Append(IDM_MEMCARD, _("&Memory Card Manager (GC)"));
|
||||||
tools_menu->Append(IDM_IMPORT_SAVE, _("Import Wii Save..."));
|
tools_menu->Append(IDM_IMPORT_SAVE, _("Import Wii Save..."));
|
||||||
tools_menu->Append(IDM_EXPORT_ALL_SAVE, _("Export All Wii Saves"));
|
tools_menu->Append(IDM_EXPORT_ALL_SAVE, _("Export All Wii Saves"));
|
||||||
tools_menu->Append(IDM_CHEATS, _("&Cheat Manager"));
|
tools_menu->Append(IDM_CHEATS, _("&Cheat Manager"));
|
||||||
|
|
|
@ -165,7 +165,7 @@ bool CMemcardManager::SaveSettings()
|
||||||
|
|
||||||
void CMemcardManager::CreateGUIControls()
|
void CMemcardManager::CreateGUIControls()
|
||||||
{
|
{
|
||||||
// Create the controls for both memcards
|
// Create the controls for both memory cards
|
||||||
const int space5 = FromDIP(5);
|
const int space5 = FromDIP(5);
|
||||||
|
|
||||||
const char* ARROW[2] = {"<-", "->"};
|
const char* ARROW[2] = {"<-", "->"};
|
||||||
|
@ -286,7 +286,7 @@ void CMemcardManager::ChangePath(int slot)
|
||||||
if (!m_MemcardPath[SLOT_A]->GetPath().CmpNoCase(m_MemcardPath[SLOT_B]->GetPath()))
|
if (!m_MemcardPath[SLOT_A]->GetPath().CmpNoCase(m_MemcardPath[SLOT_B]->GetPath()))
|
||||||
{
|
{
|
||||||
if (m_MemcardPath[slot]->GetPath().length())
|
if (m_MemcardPath[slot]->GetPath().length())
|
||||||
wxMessageBox(_("Memcard already opened"));
|
wxMessageBox(_("Memory card already opened"));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -423,7 +423,7 @@ bool CMemcardManager::CopyDeleteSwitch(u32 error, int slot)
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case NOMEMCARD:
|
case NOMEMCARD:
|
||||||
WxUtils::ShowErrorDialog(_("File is not recognized as a memcard"));
|
WxUtils::ShowErrorDialog(_("File is not recognized as a memory card"));
|
||||||
break;
|
break;
|
||||||
case OPENFAIL:
|
case OPENFAIL:
|
||||||
WxUtils::ShowErrorDialog(_("File could not be opened\nor does not have a valid extension"));
|
WxUtils::ShowErrorDialog(_("File could not be opened\nor does not have a valid extension"));
|
||||||
|
@ -447,7 +447,7 @@ bool CMemcardManager::CopyDeleteSwitch(u32 error, int slot)
|
||||||
WxUtils::ShowErrorDialog(_("The save you are trying to copy has an invalid file size."));
|
WxUtils::ShowErrorDialog(_("The save you are trying to copy has an invalid file size."));
|
||||||
break;
|
break;
|
||||||
case TITLEPRESENT:
|
case TITLEPRESENT:
|
||||||
WxUtils::ShowErrorDialog(_("Memcard already has a save for this title."));
|
WxUtils::ShowErrorDialog(_("Memory card already has a save for this title."));
|
||||||
break;
|
break;
|
||||||
case SAVFAIL:
|
case SAVFAIL:
|
||||||
WxUtils::ShowErrorDialog(
|
WxUtils::ShowErrorDialog(
|
||||||
|
@ -471,7 +471,7 @@ bool CMemcardManager::CopyDeleteSwitch(u32 error, int slot)
|
||||||
case DELETE_FAIL:
|
case DELETE_FAIL:
|
||||||
WxUtils::ShowErrorDialog(
|
WxUtils::ShowErrorDialog(
|
||||||
_("Order of files in the File Directory do not match the block order\n"
|
_("Order of files in the File Directory do not match the block order\n"
|
||||||
"Right click and export all of the saves,\nand import the saves to a new memcard\n"));
|
"Right click and export all of the saves,\nand import the saves to a new memory card\n"));
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
WxUtils::ShowErrorDialog(_("Unknown memory card error"));
|
WxUtils::ShowErrorDialog(_("Unknown memory card error"));
|
||||||
|
@ -594,7 +594,7 @@ void CMemcardManager::CopyDeleteClick(wxCommandEvent& event)
|
||||||
int answer = wxMessageBox(
|
int answer = wxMessageBox(
|
||||||
wxString::Format(
|
wxString::Format(
|
||||||
_("Warning: This will overwrite any existing saves that are in the folder:\n"
|
_("Warning: This will overwrite any existing saves that are in the folder:\n"
|
||||||
"%s\nand have the same name as a file on your memcard\nContinue?"),
|
"%s\nand have the same name as a file on your memory card\nContinue?"),
|
||||||
path1.c_str()),
|
path1.c_str()),
|
||||||
_("Warning"), wxYES_NO);
|
_("Warning"), wxYES_NO);
|
||||||
if (answer == wxYES)
|
if (answer == wxYES)
|
||||||
|
@ -817,7 +817,8 @@ void CMemcardManager::CMemcardListCtrl::OnRightClick(wxMouseEvent& event)
|
||||||
SetItemState(item, wxLIST_STATE_FOCUSED, wxLIST_STATE_FOCUSED);
|
SetItemState(item, wxLIST_STATE_FOCUSED, wxLIST_STATE_FOCUSED);
|
||||||
|
|
||||||
int slot = GetId() - ID_MEMCARDLIST_A;
|
int slot = GetId() - ID_MEMCARDLIST_A;
|
||||||
popupMenu.Append(ID_COPYFROM_A + slot, wxString::Format(_("Copy to Memcard %c"), 'B' - slot));
|
popupMenu.Append(ID_COPYFROM_A + slot,
|
||||||
|
wxString::Format(_("Copy to Memory Card %c"), 'B' - slot));
|
||||||
popupMenu.Append(ID_DELETE_A + slot, _("Delete Save"));
|
popupMenu.Append(ID_DELETE_A + slot, _("Delete Save"));
|
||||||
popupMenu.Append(ID_SAVEIMPORT_A + slot, _("Import Save"));
|
popupMenu.Append(ID_SAVEIMPORT_A + slot, _("Import Save"));
|
||||||
popupMenu.Append(ID_SAVEEXPORT_A + slot, _("Export Save"));
|
popupMenu.Append(ID_SAVEEXPORT_A + slot, _("Export Save"));
|
||||||
|
@ -831,7 +832,7 @@ void CMemcardManager::CMemcardListCtrl::OnRightClick(wxMouseEvent& event)
|
||||||
popupMenu.Append(ID_PREVPAGE_A + slot, _("Previous Page"));
|
popupMenu.Append(ID_PREVPAGE_A + slot, _("Previous Page"));
|
||||||
popupMenu.Append(ID_NEXTPAGE_A + slot, _("Next Page"));
|
popupMenu.Append(ID_NEXTPAGE_A + slot, _("Next Page"));
|
||||||
popupMenu.Append(ID_MEMCARDPATH_A + slot,
|
popupMenu.Append(ID_MEMCARDPATH_A + slot,
|
||||||
wxString::Format(_("Set as default Memcard %c"), 'A' + slot));
|
wxString::Format(_("Set as default Memory Card %c"), 'A' + slot));
|
||||||
popupMenu.AppendCheckItem(ID_USEPAGES, _("Enable pages"));
|
popupMenu.AppendCheckItem(ID_USEPAGES, _("Enable pages"));
|
||||||
|
|
||||||
popupMenu.FindItem(ID_PREVPAGE_A + slot)->Enable(prevPage && __mcmSettings.usePages);
|
popupMenu.FindItem(ID_PREVPAGE_A + slot)->Enable(prevPage && __mcmSettings.usePages);
|
||||||
|
|
|
@ -256,7 +256,7 @@ wxSizer* NetPlayDialog::CreateBottomGUI(wxWindow* parent)
|
||||||
padbuf_spin->Bind(wxEVT_SPINCTRL, &NetPlayDialog::OnAdjustBuffer, this);
|
padbuf_spin->Bind(wxEVT_SPINCTRL, &NetPlayDialog::OnAdjustBuffer, this);
|
||||||
padbuf_spin->SetMinSize(WxUtils::GetTextWidgetMinSize(padbuf_spin));
|
padbuf_spin->SetMinSize(WxUtils::GetTextWidgetMinSize(padbuf_spin));
|
||||||
|
|
||||||
m_memcard_write = new wxCheckBox(parent, wxID_ANY, _("Write to memcards/SD"));
|
m_memcard_write = new wxCheckBox(parent, wxID_ANY, _("Write to memory cards/SD"));
|
||||||
|
|
||||||
bottom_szr->Add(m_start_btn, 0, wxALIGN_CENTER_VERTICAL);
|
bottom_szr->Add(m_start_btn, 0, wxALIGN_CENTER_VERTICAL);
|
||||||
bottom_szr->Add(buffer_lbl, 0, wxALIGN_CENTER_VERTICAL | wxLEFT, space5);
|
bottom_szr->Add(buffer_lbl, 0, wxALIGN_CENTER_VERTICAL | wxLEFT, space5);
|
||||||
|
|
Loading…
Reference in New Issue