diff --git a/public/_locales/en/messages.json b/public/_locales/en/messages.json index 5a87a3cd..035578bd 100644 --- a/public/_locales/en/messages.json +++ b/public/_locales/en/messages.json @@ -591,8 +591,8 @@ "channelDataNotFound": { "message": "Channel ID not loaded yet." }, - "adblockerIssue": { - "message": "It seems that something is blocking SponsorBlock's ability to get video data. This is probably your ad blocker. Please check https://github.com/ajayyy/SponsorBlock/wiki/Fix-Ad-Blocker-Blocking-SponsorBlock's-Requests" + "videoInfoFetchFailed": { + "message": "It seems that something is blocking SponsorBlock's ability to get video data. Please see https://github.com/ajayyy/SponsorBlock/issues/741 for more info." }, "youtubePermissionRequest": { "message": "It seems that SponsorBlock is unable to reach the YouTube API. To fix this, accept the permission prompt that will appear next, wait a few seconds, and then reload the page." diff --git a/src/content.ts b/src/content.ts index e4e3cb4f..619f783b 100644 --- a/src/content.ts +++ b/src/content.ts @@ -742,7 +742,7 @@ async function videoInfoFetchFailed(errorMessage: string): Promise { url: "permissions/index.html#youtube.com" }); } else { - alert(chrome.i18n.getMessage("adblockerIssue") + "\n\n" + chrome.i18n.getMessage(errorMessage)); + alert(chrome.i18n.getMessage("videoInfoFetchFailed") + "\n\n" + chrome.i18n.getMessage(errorMessage)); } }