mirror of
https://github.com/wukko/cobalt.git
synced 2025-01-22 10:46:19 +01:00
web/settings/video: update h265 toggle strings
because now it also applies to xiaohongshu
This commit is contained in:
parent
7488c74faf
commit
9f0f885ae6
2 changed files with 12 additions and 11 deletions
|
@ -40,9 +40,9 @@
|
||||||
"video.twitter.gif.title": "convert looping videos to GIF",
|
"video.twitter.gif.title": "convert looping videos to GIF",
|
||||||
"video.twitter.gif.description": "GIF conversion is inefficient, converted file may be obnoxiously big and low quality.",
|
"video.twitter.gif.description": "GIF conversion is inefficient, converted file may be obnoxiously big and low quality.",
|
||||||
|
|
||||||
"video.tiktok.h265": "tiktok",
|
"video.h265": "high efficiency video codec",
|
||||||
"video.tiktok.h265.title": "prefer HEVC/H265 format",
|
"video.h265.title": "allow h265 for videos",
|
||||||
"video.tiktok.h265.description": "allows downloading videos in 1080p at cost of compatibility.",
|
"video.h265.description": "allows downloading videos from platforms like tiktok and xiaohongshu in higher quality at cost of compatibility.",
|
||||||
|
|
||||||
"audio.format": "audio format",
|
"audio.format": "audio format",
|
||||||
"audio.format.best": "best",
|
"audio.format.best": "best",
|
||||||
|
|
|
@ -69,6 +69,15 @@
|
||||||
/>
|
/>
|
||||||
</SettingsCategory>
|
</SettingsCategory>
|
||||||
|
|
||||||
|
<SettingsCategory sectionId="h265" title={$t("settings.video.h265")}>
|
||||||
|
<SettingsToggle
|
||||||
|
settingContext="save"
|
||||||
|
settingId="tiktokH265"
|
||||||
|
title={$t("settings.video.h265.title")}
|
||||||
|
description={$t("settings.video.h265.description")}
|
||||||
|
/>
|
||||||
|
</SettingsCategory>
|
||||||
|
|
||||||
<SettingsCategory sectionId="twitter" title={$t("settings.video.twitter.gif")}>
|
<SettingsCategory sectionId="twitter" title={$t("settings.video.twitter.gif")}>
|
||||||
<SettingsToggle
|
<SettingsToggle
|
||||||
settingContext="save"
|
settingContext="save"
|
||||||
|
@ -78,11 +87,3 @@
|
||||||
/>
|
/>
|
||||||
</SettingsCategory>
|
</SettingsCategory>
|
||||||
|
|
||||||
<SettingsCategory sectionId="tiktok" title={$t("settings.video.tiktok.h265")}>
|
|
||||||
<SettingsToggle
|
|
||||||
settingContext="save"
|
|
||||||
settingId="tiktokH265"
|
|
||||||
title={$t("settings.video.tiktok.h265.title")}
|
|
||||||
description={$t("settings.video.tiktok.h265.description")}
|
|
||||||
/>
|
|
||||||
</SettingsCategory>
|
|
||||||
|
|
Loading…
Reference in a new issue