Add localisation to unlisted experiement

This commit is contained in:
Ajay Ramachandran 2021-06-23 21:38:23 -04:00
parent e80b7afe80
commit e7c92467bd
2 changed files with 16 additions and 9 deletions

View file

@ -654,7 +654,17 @@
"categoryUpdate2": {
"message": "Open the options to skip intros, outros, merch, etc."
},
"help": {
"message": "Help"
"experimentUnlistedTitle": {
"message": "Help prevent this from disappearing"
},
"experimentUnlistedText": {
"message": "This video is detected as unlisted and uploaded before 2017\nOld unlisted videos are being set to private soon\nWe are collecting *public* videos to back up\nWould you like anonymously to submit this video?"
},
"experiementOptOut": {
"message": "Opt-out of all future experiments",
"description": "This is used in a popup about a new experiment to get a list of unlisted videos to back up since all unlisted videos uploaded before 2017 will be set to private."
},
"hideForever": {
"message": "Hide forever"
}
}

View file

@ -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;