diff --git a/modules/core/client/app/trans-string-en.js b/modules/core/client/app/trans-string-en.js index 85cacda5..e1f8a085 100644 --- a/modules/core/client/app/trans-string-en.js +++ b/modules/core/client/app/trans-string-en.js @@ -366,7 +366,13 @@ ORIGINAL_NAME: 'original_name', NAME: 'name', FIRST_AIR_DATE: 'first air date', - LAST_AIR_DATE: 'last air date' + LAST_AIR_DATE: 'last air date', + NETWORK: 'Network', + NUMBER_OF_SEASONS: 'total seasons', + NUMBER_OF_EPISODES: 'total episodes', + EPISODES_SEASONS: 'episodes/seasons', + UNIT_EPISODES: 'episodes', + UNIT_SEASONS: 'seasons' }, /////////////////////////resources tag fields/////////////////////////////////// diff --git a/modules/core/client/app/trans-string-zh.js b/modules/core/client/app/trans-string-zh.js index 484b1c2d..f92498dc 100644 --- a/modules/core/client/app/trans-string-zh.js +++ b/modules/core/client/app/trans-string-zh.js @@ -366,7 +366,13 @@ ORIGINAL_NAME: '原剧名', NAME: '剧名', FIRST_AIR_DATE: '首次上演时间', - LAST_AIR_DATE: '最近上演时间' + LAST_AIR_DATE: '最近上演时间', + NETWORK: '网络', + NUMBER_OF_SEASONS: '总季数', + NUMBER_OF_EPISODES: '总集数', + EPISODES_SEASONS: '总集/季数', + UNIT_EPISODES: '集', + UNIT_SEASONS: '季' }, /////////////////////////resources tag fields/////////////////////////////////// diff --git a/modules/core/client/less/mt.less b/modules/core/client/less/mt.less index c269f46a..6b7910d9 100644 --- a/modules/core/client/less/mt.less +++ b/modules/core/client/less/mt.less @@ -44,8 +44,6 @@ body { top: -20px; font-size: 100px; font-weight: bold; - text-shadow: 2px 0 0 #222, -2px 0 0 #222, 0 2px 0 #222, 0 -2px 0 #222; - filter: Glow(color=#f00, strength=100); } .topone { color: #ccc; @@ -74,6 +72,9 @@ body { .genres-item { color: #ccc; } + .network-item { + color: #ccc; + } .img-circle { &:hover { /* csslint ignore:start */ @@ -455,6 +456,18 @@ body { } } +.list-all-network { + .network-item { + color: @gray-light; + &:not(:first-child) { + &::before { + content: " | "; + font-weight: bold; + } + } + } +} + .list-all-countries { .country-item:not(:first-child) { &::before { diff --git a/modules/core/client/views/home.client.view.html b/modules/core/client/views/home.client.view.html index 901754f5..0db5d235 100644 --- a/modules/core/client/views/home.client.view.html +++ b/modules/core/client/views/home.client.view.html @@ -221,6 +221,13 @@
{{ 'TMDB_FIELDS.NAME' | translate}}:
{{vm.TVTopOne.resource_detail_info.name}}
+
+
{{ 'TMDB_FIELDS.NETWORK' | translate}}:
+
+ {{item.name}} +
+
+
{{ 'TMDB_FIELDS.ORIGINAL_LANGUAGE' | translate}}:
{{vm.TVTopOne.resource_detail_info.original_language}}
@@ -248,6 +255,12 @@
{{ 'TMDB_FIELDS.LAST_AIR_DATE' | translate}}:
{{vm.TVTopOne.resource_detail_info.last_air_date}}
+
{{ 'TMDB_FIELDS.EPISODES_SEASONS' | translate}}:
+
+ {{vm.TVTopOne.resource_detail_info.number_of_episodes}} {{ 'TMDB_FIELDS.UNIT_EPISODES' | translate}} / + {{vm.TVTopOne.resource_detail_info.number_of_seasons}} {{ 'TMDB_FIELDS.UNIT_SEASONS' | translate}} +
+
{{ 'TMDB_FIELDS.VOTE_AVERAGE' | translate}}:
diff --git a/modules/torrents/client/views/view-torrent.client.view.html b/modules/torrents/client/views/view-torrent.client.view.html index 9ae3fadd..3c6183fe 100644 --- a/modules/torrents/client/views/view-torrent.client.view.html +++ b/modules/torrents/client/views/view-torrent.client.view.html @@ -40,6 +40,14 @@
{{vm.getDirector();}}
+
+
{{ 'TMDB_FIELDS.NETWORK' | translate}}:
+
+ {{item.name}} +
+
+
{{ 'TMDB_FIELDS.ORIGINAL_LANGUAGE' | translate}}:
{{vm.torrentLocalInfo.resource_detail_info.original_language}}
@@ -48,23 +56,23 @@ {{item.name}} -
{{ 'TMDB_FIELDS.PRODUCTION_COMPANIES' | translate}}:
-
+
+
{{ 'TMDB_FIELDS.PRODUCTION_COMPANIES' | translate}}:
+
{{item.name}} - - -
+ + -
+
{{ 'TMDB_FIELDS.PRODUCTION_COUNTRIES' | translate}}:
{{item.iso_3166_1}} - -
-
+
{{ 'TMDB_FIELDS.PRODUCTION_COUNTRIES' | translate}}:
{{vm.torrentLocalInfo.resource_detail_info.last_air_date}}
+
+
{{ 'TMDB_FIELDS.NUMBER_OF_SEASONS' | translate}}:
+
{{vm.torrentLocalInfo.resource_detail_info.number_of_seasons}} {{ 'TMDB_FIELDS.UNIT_SEASONS' | translate}}
+
+ +
+
{{ 'TMDB_FIELDS.NUMBER_OF_EPISODES' | translate}}:
+
{{vm.torrentLocalInfo.resource_detail_info.number_of_episodes}} {{ 'TMDB_FIELDS.UNIT_EPISODES' | translate}}
+
+
{{ 'TMDB_FIELDS.RUNTIME' | translate}}:
{{vm.torrentLocalInfo.resource_detail_info.runtime | runtime}}