imdb: show original title after rating stuff

Origin commit data
------------------
Commit: 893f77e0d6
Author: vanhofen <vanhofen@gmx.de>
Date: 2016-08-03 (Wed, 03 Aug 2016)

Origin message was:
------------------
- imdb: show original title after rating stuff
This commit is contained in:
vanhofen
2016-08-03 00:32:31 +02:00
parent 9aae02906a
commit 5cf15e22de

View File

@@ -330,9 +330,9 @@ int CIMDB::getIMDb(const std::string& epgTitle)
void CIMDB::getIMDbData(std::string& txt)
{
//TODO: localize
txt += "Original-Titel: "+m["Title"]+"\n";
txt += "Metascore: "+m["Metascore"]+(m["Metascore"] == "N/A" ? "\n" : "/100\n");
txt += "Stimmen: "+m["imdbVotes"]+"\n";
txt += "Original-Titel: "+m["Title"]+"\n";
txt += "Datum: "+m["Released"]+" | "+m["Country"]+" | "+m["Runtime"]+"\n";
txt += "Genre: "+m["Genre"]+"\n";
txt += "Awards: "+m["Awards"]+"\n";