mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2025-12-11 05:57:07 +03:00
Add localisation to unlisted experiement
This commit is contained in:
@@ -893,14 +893,11 @@ async function unlistedCheck() {
|
||||
if (isUnlisted && isOld && isHighViews) {
|
||||
// Ask if they want to submit this videoID
|
||||
const notice = new GenericNotice(skipNoticeContentContainer, "unlistedWarning", {
|
||||
title: "Help prevent this from disappearing",
|
||||
textBoxes: ("This video is detected as unlisted and uploaded before 2017\n"
|
||||
+ "Old unlisted videos are being set to private soon\n"
|
||||
+ "We are collecting *public* videos to back up\n"
|
||||
+ "Would you like anonymously to submit this video?").split("\n"),
|
||||
title: chrome.i18n.getMessage("experimentUnlistedTitle"),
|
||||
textBoxes: chrome.i18n.getMessage("experimentUnlistedText").split("\n"),
|
||||
buttons: [
|
||||
{
|
||||
name: "Opt-out of all future experiments",
|
||||
name: chrome.i18n.getMessage("experiementOptOut"),
|
||||
listener: () => {
|
||||
Config.config.allowExpirements = false;
|
||||
|
||||
@@ -908,7 +905,7 @@ async function unlistedCheck() {
|
||||
}
|
||||
},
|
||||
{
|
||||
name: "Never show this",
|
||||
name: chrome.i18n.getMessage("hideForever"),
|
||||
listener: () => {
|
||||
Config.config.askAboutUnlistedVideos = false;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user