aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/video-list
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-02-20 14:56:18 +0100
committerChocobozzz <me@florianbigard.com>2019-02-20 14:56:18 +0100
commit1aabcae7e36bb113c2887bd7180dad2916ecaaf2 (patch)
tree85dca23b4cfae152f7dc25e170fdcf1e1f6145a6 /client/src/app/videos/video-list
parente5fc7811ae0b0513470add9dbe237755bec7cceb (diff)
downloadPeerTube-1aabcae7e36bb113c2887bd7180dad2916ecaaf2.tar.gz
PeerTube-1aabcae7e36bb113c2887bd7180dad2916ecaaf2.tar.zst
PeerTube-1aabcae7e36bb113c2887bd7180dad2916ecaaf2.zip
Add hover effect on video miniature
Diffstat (limited to 'client/src/app/videos/video-list')
-rw-r--r--client/src/app/videos/video-list/video-trending.component.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/videos/video-list/video-trending.component.ts b/client/src/app/videos/video-list/video-trending.component.ts
index 6fd74e67a..a66a0f97c 100644
--- a/client/src/app/videos/video-list/video-trending.component.ts
+++ b/client/src/app/videos/video-list/video-trending.component.ts
@@ -45,11 +45,11 @@ export class VideoTrendingComponent extends AbstractVideoList implements OnInit,
45 45
46 if (trendingDays === 1) { 46 if (trendingDays === 1) {
47 this.titlePage = this.i18n('Trending for the last 24 hours') 47 this.titlePage = this.i18n('Trending for the last 24 hours')
48 this.titleTooltip = this.i18n('Trending videos are those totalizing the greatest number of views during the last 24 hours.') 48 this.titleTooltip = this.i18n('Trending videos are those totalizing the greatest number of views during the last 24 hours')
49 } else { 49 } else {
50 this.titlePage = this.i18n('Trending for the last {{days}} days', { days: trendingDays }) 50 this.titlePage = this.i18n('Trending for the last {{days}} days', { days: trendingDays })
51 this.titleTooltip = this.i18n( 51 this.titleTooltip = this.i18n(
52 'Trending videos are those totalizing the greatest number of views during the last {{days}} days.', 52 'Trending videos are those totalizing the greatest number of views during the last {{days}} days',
53 { days: trendingDays } 53 { days: trendingDays }
54 ) 54 )
55 } 55 }