From 7d5d2d542d8ff3d216db3a362d37f4cc1a55ba59 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Mon, 1 Aug 2016 17:49:19 +0200 Subject: [PATCH] imdb: better description for title tag Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/128dc7cabda2dc7dfb24069a0d341e0eb28470b1 Author: vanhofen Date: 2016-08-01 (Mon, 01 Aug 2016) Origin message was: ------------------ - imdb: better description for title tag --- src/gui/imdb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/imdb.cpp b/src/gui/imdb.cpp index fdd489eba..775003f36 100644 --- a/src/gui/imdb.cpp +++ b/src/gui/imdb.cpp @@ -330,7 +330,7 @@ int CIMDB::getIMDb(const std::string& epgTitle) void CIMDB::getIMDbData(std::string& txt) { //TODO: localize - txt += "Englischer Titel: "+m["Title"]+"\n"; + txt += "Original-Titel: "+m["Title"]+"\n"; txt += "Metascore: "+m["Metascore"]+(m["Metascore"] == "N/A" ? "\n" : "/100\n"); txt += "Stimmen: "+m["imdbVotes"]+"\n"; txt += "Datum: "+m["Released"]+" | "+m["Country"]+" | "+m["Runtime"]+"\n";