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

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