Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxpc1000 <xpc1000@users.sourceforge.net>2010-11-07 13:47:02 +0300
committerxpc1000 <xpc1000@users.sourceforge.net>2010-11-07 13:47:02 +0300
commit4b2f53448259aae417edb3af4e310bb7b4dc4410 (patch)
treebfe423e3c2ca654f37a30fda1fffb06591d48684 /src/apps/mplayerc/PlayerNavigationDialog.cpp
parentd8d628ecdeb4753d62f915ec3846d8a970f49e19 (diff)
DVB: TV/Radio button text in TV navigation panel can be translated
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@2716 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/apps/mplayerc/PlayerNavigationDialog.cpp')
-rw-r--r--src/apps/mplayerc/PlayerNavigationDialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/apps/mplayerc/PlayerNavigationDialog.cpp b/src/apps/mplayerc/PlayerNavigationDialog.cpp
index c4554ceb3..9bdda472a 100644
--- a/src/apps/mplayerc/PlayerNavigationDialog.cpp
+++ b/src/apps/mplayerc/PlayerNavigationDialog.cpp
@@ -91,7 +91,7 @@ BOOL CPlayerNavigationDialog::OnInitDialog()
{
__super::OnInitDialog();
m_bTVStations = true;
- m_ButtonFilterStations.SetWindowText(_T(BTN_CAPTION_SEERADIO));
+ m_ButtonFilterStations.SetWindowText(ResStr(IDS_DVB_TVNAV_SEERADIO));
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
@@ -232,7 +232,7 @@ void CPlayerNavigationDialog::OnTvRadioStations()
m_bTVStations = !m_bTVStations;
UpdateElementList();
if (m_bTVStations)
- m_ButtonFilterStations.SetWindowText(_T(BTN_CAPTION_SEERADIO));
+ m_ButtonFilterStations.SetWindowText(ResStr(IDS_DVB_TVNAV_SEERADIO));
else
- m_ButtonFilterStations.SetWindowText(_T(BTN_CAPTION_SEETV));
+ m_ButtonFilterStations.SetWindowText(ResStr(IDS_DVB_TVNAV_SEETV));
}