Rename chapter option to show chapter

This commit is contained in:
Ajay
2022-07-07 17:05:27 -04:00
parent 969b303c59
commit 058c41dd7e
2 changed files with 5 additions and 0 deletions

View File

@@ -746,6 +746,9 @@
"showOverlay_full": { "showOverlay_full": {
"message": "Show Label" "message": "Show Label"
}, },
"showOverlay_chapter": {
"message": "Show Chapters"
},
"autoSkipOnMusicVideos": { "autoSkipOnMusicVideos": {
"message": "Auto skip all segments when there is a non-music segment" "message": "Auto skip all segments when there is a non-music segment"
}, },

View File

@@ -41,6 +41,8 @@ export function getCategorySuffix(category: Category): string {
return "_POI"; return "_POI";
} else if (category === "exclusive_access") { } else if (category === "exclusive_access") {
return "_full"; return "_full";
} else if (category === "chapter") {
return "_chapter";
} else { } else {
return ""; return "";
} }