imdb: show original title after rating stuff

Origin commit data
------------------
Branch: ni/coolstream
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

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2016-08-03 00:32:31 +02:00
parent 46fdd36d72
commit 44a178d624

View File

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