mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-02 18:31:12 +02:00
imdb: add runtime locale; split release-date and runtime
Origin commit data
------------------
Branch: ni/coolstream
Commit: 2bdf1b6ecc
Author: vanhofen <vanhofen@gmx.de>
Date: 2017-05-29 (Mon, 29 May 2017)
Origin message was:
------------------
- imdb: add runtime locale; split release-date and runtime
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -879,6 +879,7 @@ imdb.data_plot Handlung
|
||||
imdb.data_production Produktion
|
||||
imdb.data_rating_failed Keine Bewertung
|
||||
imdb.data_released Veröffentlicht
|
||||
imdb.data_runtime Spieldauer
|
||||
imdb.data_title Originaltitel
|
||||
imdb.data_votes Stimmen
|
||||
imdb.data_website Webseite
|
||||
|
@@ -879,6 +879,7 @@ imdb.data_plot Plot
|
||||
imdb.data_production Production
|
||||
imdb.data_rating_failed No rating
|
||||
imdb.data_released Released
|
||||
imdb.data_runtime Runtime
|
||||
imdb.data_title Original title
|
||||
imdb.data_votes Votes
|
||||
imdb.data_website Website
|
||||
|
@@ -357,7 +357,10 @@ void CIMDB::getIMDbData(std::string& txt)
|
||||
if (checkIMDbElement("Metascore"))
|
||||
txt += g_Locale->getString(LOCALE_IMDB_DATA_METASCORE) + ": " + m["Metascore"] + "/100\n";
|
||||
txt += g_Locale->getString(LOCALE_IMDB_DATA_TITLE) + ": " + m["Title"] + "\n";
|
||||
txt += g_Locale->getString(LOCALE_IMDB_DATA_RELEASED) + ": " + m["Released"] + " | " + m["Country"] + " | " + m["Runtime"] + "\n";
|
||||
if (checkIMDbElement("Released"))
|
||||
txt += g_Locale->getString(LOCALE_IMDB_DATA_RELEASED) + ": " + m["Country"] + ", " + m["Released"] + "\n";
|
||||
if (checkIMDbElement("Runtime"))
|
||||
txt += g_Locale->getString(LOCALE_IMDB_DATA_RUNTIME) + ": " + m["Runtime"] + "\n";
|
||||
if (checkIMDbElement("Genre"))
|
||||
txt += g_Locale->getString(LOCALE_IMDB_DATA_GENRE) + ": " + m["Genre"] + "\n";
|
||||
if (checkIMDbElement("Awards"))
|
||||
|
@@ -906,6 +906,7 @@ typedef enum
|
||||
LOCALE_IMDB_DATA_PRODUCTION,
|
||||
LOCALE_IMDB_DATA_RATING_FAILED,
|
||||
LOCALE_IMDB_DATA_RELEASED,
|
||||
LOCALE_IMDB_DATA_RUNTIME,
|
||||
LOCALE_IMDB_DATA_TITLE,
|
||||
LOCALE_IMDB_DATA_VOTES,
|
||||
LOCALE_IMDB_DATA_WEBSITE,
|
||||
|
@@ -906,6 +906,7 @@ const char * locale_real_names[] =
|
||||
"imdb.data_production",
|
||||
"imdb.data_rating_failed",
|
||||
"imdb.data_released",
|
||||
"imdb.data_runtime",
|
||||
"imdb.data_title",
|
||||
"imdb.data_votes",
|
||||
"imdb.data_website",
|
||||
|
Reference in New Issue
Block a user