diff --git a/IMDb/config.py b/IMDb/config.py index 16ff32d..cdf3ede 100644 --- a/IMDb/config.py +++ b/IMDb/config.py @@ -51,7 +51,7 @@ def configure(advanced): IMDb = conf.registerPlugin('IMDb') conf.registerGlobalValue(IMDb, 'template', - registry.String("\x02\x031,8 IMDb \x0F\x02 :: $title ($year, $country, [$rated], $genre, $runtime) :: IMDb: $imdbRating | MC: $metascore | RT: $tomatoMeter :: http://imdb.com/title/$imdbID :: $plot :: Director: $director :: Writer: $writer :: Actors: $actors", _("""Template for the output of a search query."""))) + registry.String("\x02\x031,8 IMDb \x0F\x02 :: $title ($year, $country, [$rated], $genre, $runtime) :: IMDb: $imdbRating | MC: $metascore | RT: $tomatoMeter :: http://imdb.com/title/$imdbID :: $plot :: Director: $director :: Cast: $actors :: Writer: $writer", _("""Template for the output of a search query."""))) conf.registerGlobalValue(IMDb, 'noResultsMessage', registry.String("No results for that query.", _("""This message is sent when there are no results"""))) diff --git a/SpiffyTitles/config.py b/SpiffyTitles/config.py index 9c3d0c5..9ee94b1 100644 --- a/SpiffyTitles/config.py +++ b/SpiffyTitles/config.py @@ -192,7 +192,7 @@ conf.registerGlobalValue(SpiffyTitles.youtube, 'developerKey', registry.String("", _("""Youtube developer key - required for Youtube handler."""), private=True)) # YouTube Logo conf.registerChannelValue(SpiffyTitles.youtube, 'logo', - registry.String("\x02\x030,4 ► \x031,0YouTube", _("""Logo used with {{yt_logo}} in template"""))) + registry.String("\x030,4 ► \x031,0YouTube", _("""Logo used with {{yt_logo}} in template"""))) # YouTube template conf.registerChannelValue(SpiffyTitles.youtube, 'template', registry.String("^ {{yt_logo}} :: {{title}} {%if timestamp%} @ {{timestamp}}{% endif %} :: Duration: {{duration}} :: Views: {{view_count}} :: Uploader {{channel_title}} :: {{like_count}} likes :: {{dislike_count}} dislikes :: {{favorite_count}} favorites :: {{comment_count}} comments", _("""Template used for YouTube title responses"""))) @@ -247,7 +247,7 @@ conf.registerGlobalValue(SpiffyTitles.twitch, 'clientID', # Twitch Logo conf.registerChannelValue(SpiffyTitles.twitch, 'logo', - registry.String("\x02\x030,6💬twitch", _("""Logo used with {{twitch_logo}} in template"""))) + registry.String("\x030,6💬twitch", _("""Logo used with {{twitch_logo}} in template"""))) conf.registerChannelValue(SpiffyTitles.twitch, 'channelTemplate', registry.String("^ {{twitch_logo}} :: {{display_name}} {%if description%}:: {{description}} {%endif%}:: Viewers: {{view_count}}", _("""twitch.tv channel template"""))) @@ -289,11 +289,11 @@ conf.registerGlobalValue(SpiffyTitles.imdb, 'omdbAPI', # IMDB Logo conf.registerChannelValue(SpiffyTitles.imdb, 'logo', - registry.String("\x02\x031,8 IMDb ", _("""Logo used with {{imdb_logo}} in template"""))) + registry.String("\x031,8 IMDb ", _("""Logo used with {{imdb_logo}} in template"""))) # IMDB template conf.registerChannelValue(SpiffyTitles.imdb, 'template', - registry.String("^ {{imdb_logo}} :: {{title}} ({{year}}, {{country}}, [{{rated}}], {{genre}}, {{runtime}}) :: IMDb: {{imdb_rating}} | MC: {{metascore}} | RT: {{tomatoMeter}} :: {{plot}}", _("""IMDB title template"""))) + registry.String("^ {{imdb_logo}} :: {{title}} ({{year}}, {{country}}, [{{rated}}], {{genre}}, {{runtime}}) :: IMDb: {{imdb_rating}} | MC: {{metascore}} | RT: {{tomatoMeter}} :: {{plot}} :: Director: {{director}} :: Cast: {{actors}} :: Writer: {writer}}", _("""IMDB title template""")))