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:
authorCasimir666 <casimir666@users.sourceforge.net>2008-06-09 23:41:17 +0400
committerCasimir666 <casimir666@users.sourceforge.net>2008-06-09 23:41:17 +0400
commit446524b4a9ac7775594942fff2a031d0360055fa (patch)
treef84a592d6673762916d38155832a10f39c70d604 /src/apps/mplayerc/PPageSubDB.cpp
parentffe1e64696fe2f048c35fb4b599f1361c7b99d24 (diff)
Added missing translation strings
git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@564 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/apps/mplayerc/PPageSubDB.cpp')
-rw-r--r--src/apps/mplayerc/PPageSubDB.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/apps/mplayerc/PPageSubDB.cpp b/src/apps/mplayerc/PPageSubDB.cpp
index 7f855fd01..f57809d78 100644
--- a/src/apps/mplayerc/PPageSubDB.cpp
+++ b/src/apps/mplayerc/PPageSubDB.cpp
@@ -97,15 +97,15 @@ void CPPageSubDB::OnBnClickedButton1()
CWebTextFile wtf;
if(wtf.Open(_T("http://") + ISDb + _T("/test.php")) && wtf.ReadString(str) && str == ver)
{
- msg = _T("The URL appears to be correct!");
+ msg = ResStr(IDS_PPSDB_URLCORRECT);
}
else if(str.Find(_T("ISDb v")) == 0)
{
- msg = _T("Protocol version mismatch, please upgrade your player or choose a different address!");
+ msg = ResStr(IDS_PPSDB_PROTOCOLERR);
}
else
{
- msg = _T("Bad URL, could not locate subtitle database there!");
+ msg = ResStr(IDS_PPSDB_BADURL);
}
AfxMessageBox(msg, MB_OK);