summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-12-14 14:26:24 -0500
committerLioncash <mathew1800@gmail.com>2014-12-14 14:26:24 -0500
commitc7179af8f73bdad27bfa09b97081f48de941eb99 (patch)
tree6462c4d021d80926dece7c5608b71568f7918f3e /Source/Core
parentff41c2a1a10e89a7652c2b4e1bf9b0c2bc3f1679 (diff)
parent843bbc8e2dbd27b10dbdfc463bf961c26838ace8 (diff)
Merge pull request #1675 from Stevoisiak/Rename-Build-Date
ISOProperties: Rename Date to Build Date
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinWX/ISOProperties.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/ISOProperties.cpp b/Source/Core/DolphinWX/ISOProperties.cpp
index 310d981623..e7e1ca4fe0 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);