diff --git a/public/_locales/en/messages.json b/public/_locales/en/messages.json index e4caf31d..c1b27a43 100644 --- a/public/_locales/en/messages.json +++ b/public/_locales/en/messages.json @@ -716,6 +716,15 @@ "category_chapter_description": { "message": "Custom named chapters describing major sections of a video." }, + "category_chapter_guideline1": { + "message": "Don't mention sponsor brand names" + }, + "category_chapter_guideline2": { + "message": "Use larger chapters for general sections" + }, + "category_chapter_guideline3": { + "message": "Smaller chapters can be placed inside larger ones" + }, "category_livestream_messages": { "message": "Livestream: Donation/Message Readings" }, diff --git a/src/utils/constants.ts b/src/utils/constants.ts index 3530f234..74f0da71 100644 --- a/src/utils/constants.ts +++ b/src/utils/constants.ts @@ -137,5 +137,16 @@ export function getGuidelineInfo(category: Category): TextBox[] { icon: "icons/bolt.svg", text: chrome.i18n.getMessage(`category_${category}_guideline3`) }]; + case "chapter": + return [{ + icon: "icons/close-smaller.svg", + text: chrome.i18n.getMessage(`category_${category}_guideline1`) + }, { + icon: "icons/check-smaller.svg", + text: chrome.i18n.getMessage(`category_${category}_guideline2`) + }, { + icon: "icons/check-smaller.svg", + text: chrome.i18n.getMessage(`category_${category}_guideline3`) + }]; } } \ No newline at end of file