From 843bbc8e2dbd27b10dbdfc463bf961c26838ace8 Mon Sep 17 00:00:00 2001 From: Steven Vascellaro Date: Mon, 8 Dec 2014 16:22:12 -0500 Subject: [PATCH] ISOProperties: Rename Date to Build Date --- Source/Core/DolphinWX/ISOProperties.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinWX/ISOProperties.cpp b/Source/Core/DolphinWX/ISOProperties.cpp index 85c101c0f0..4259018360 100644 --- a/Source/Core/DolphinWX/ISOProperties.cpp +++ b/Source/Core/DolphinWX/ISOProperties.cpp @@ -530,7 +530,7 @@ void CISOProperties::CreateGUIControls(bool IsWad) m_MakerID = new wxTextCtrl(m_Information, ID_MAKERID, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_READONLY); wxStaticText* const m_RevisionText = new wxStaticText(m_Information, wxID_ANY, _("Revision:")); m_Revision = new wxTextCtrl(m_Information, ID_REVISION, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_READONLY); - wxStaticText* const m_DateText = new wxStaticText(m_Information, wxID_ANY, _("Date:")); + wxStaticText* const m_DateText = new wxStaticText(m_Information, wxID_ANY, _("Build Date:")); m_Date = new wxTextCtrl(m_Information, ID_DATE, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_READONLY); wxStaticText* const m_FSTText = new wxStaticText(m_Information, wxID_ANY, _("FST Size:")); m_FST = new wxTextCtrl(m_Information, ID_FST, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_READONLY);