Add missing translations

pull/3610/head
Chocobozzz 2021-01-15 10:25:58 +01:00
parent 7af5ded409
commit f19a9e4b68
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 4 additions and 3 deletions

View File

@ -45,10 +45,11 @@ export class VideoTrendingComponent extends AbstractVideoList implements OnInit,
if (trendingDays === 1) {
this.titlePage = $localize`Trending for the last 24 hours`
this.titleTooltip = $localize`Trending videos are those totalizing the greatest number of views during the last 24 hours`
} else {
this.titlePage = `Trending for the last ${trendingDays} days`
this.titleTooltip = `Trending videos are those totalizing the greatest number of views during the last ${trendingDays} days`
return
}
this.titlePage = $localize`Trending for the last ${trendingDays} days`
this.titleTooltip = $localize`Trending videos are those totalizing the greatest number of views during the last ${trendingDays} days`
})
}