mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
show video license and visibility in description
This commit is contained in:
parent
8a4957e115
commit
7a14ab08a2
2 changed files with 5 additions and 0 deletions
|
@ -160,11 +160,14 @@
|
|||
<!-- eslint-disable-next-line vue/no-v-html -->
|
||||
<div v-show="showDesc" class="break-words description" v-html="purifiedDescription" />
|
||||
<template v-if="showDesc">
|
||||
<br />
|
||||
<div
|
||||
v-if="sponsors && sponsors.segments"
|
||||
v-text="`${$t('video.sponsor_segments')}: ${sponsors.segments.length}`"
|
||||
/>
|
||||
<div v-if="video.category" v-text="`${$t('video.category')}: ${video.category}`" />
|
||||
<div v-text="`${$t('video.license')}: ${video.license}`" />
|
||||
<div class="capitalize" v-text="`${$t('video.visibility')}: ${video.visibility}`" />
|
||||
</template>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -174,6 +174,8 @@
|
|||
"shorts": "Shorts",
|
||||
"all": "All",
|
||||
"category": "Category",
|
||||
"license": "License",
|
||||
"visibility": "Visibility",
|
||||
"chapters_horizontal": "Horizontal",
|
||||
"chapters_vertical": "Vertical"
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue