diff --git a/packages/playback-core/lang/en.json b/packages/playback-core/lang/en.json index 09e82fad2..67f1a74a6 100644 --- a/packages/playback-core/lang/en.json +++ b/packages/playback-core/lang/en.json @@ -7,7 +7,7 @@ "Failed to generate a DRM license request. This may be an issue with the player or your protected content.": "Failed to generate a DRM license request. This may be an issue with the player or your protected content.", "Failed to update DRM license. This may be an issue with the player or your protected content.": "Failed to update DRM license. This may be an issue with the player or your protected content.", "Your server certificate failed when attempting to set it. This may be an issue with a no longer valid certificate.": "Your server certificate failed when attempting to set it. This may be an issue with a no longer valid certificate.", - "The DRM Content Decryption Module system had an internal failure. Try reloading the page, upading your browser, or playing in another browser.": "The DRM Content Decryption Module system had an internal failure. Try reloading the page, upading your browser, or playing in another browser.", + "The DRM Content Decryption Module system had an internal failure. Try reloading the page, updating your browser, or playing in another browser.": "The DRM Content Decryption Module system had an internal failure. Try reloading the page, updating your browser, or playing in another browser.", "DRM playback is being attempted in an environment that is not sufficiently secure. User may see black screen.": "DRM playback is being attempted in an environment that is not sufficiently secure. User may see black screen.", "The live stream or video file are not yet ready.": "The live stream or video file are not yet ready.", "This playback-id may belong to a live stream that is not currently active or an asset that is not ready.": "This playback-id may belong to a live stream that is not currently active or an asset that is not ready.", diff --git a/packages/playback-core/src/eme-fairplay.ts b/packages/playback-core/src/eme-fairplay.ts index 6751c2f18..f65951ffc 100644 --- a/packages/playback-core/src/eme-fairplay.ts +++ b/packages/playback-core/src/eme-fairplay.ts @@ -182,7 +182,7 @@ export const setupEmeNativeFairplayDRM = ({ let mediaError; if (mediaKeyStatus === 'internal-error') { const message = i18n( - 'The DRM Content Decryption Module system had an internal failure. Try reloading the page, upading your browser, or playing in another browser.' + 'The DRM Content Decryption Module system had an internal failure. Try reloading the page, updating your browser, or playing in another browser.' ); mediaError = new MediaError(message, MediaError.MEDIA_ERR_ENCRYPTED, true); mediaError.errorCategory = MuxErrorCategory.DRM; diff --git a/packages/playback-core/src/index.ts b/packages/playback-core/src/index.ts index 070ee574c..93201c806 100644 --- a/packages/playback-core/src/index.ts +++ b/packages/playback-core/src/index.ts @@ -1702,7 +1702,7 @@ const getErrorFromHlsErrorData = ( mediaError.muxCode = MuxErrorCode.ENCRYPTED_UPDATE_SERVER_CERT_FAILED; } else if (data.details === Hls.ErrorDetails.KEY_SYSTEM_STATUS_INTERNAL_ERROR) { const message = i18n( - 'The DRM Content Decryption Module system had an internal failure. Try reloading the page, upading your browser, or playing in another browser.' + 'The DRM Content Decryption Module system had an internal failure. Try reloading the page, updating your browser, or playing in another browser.' ); mediaError = new MediaError(message, MediaError.MEDIA_ERR_ENCRYPTED, data.fatal); mediaError.errorCategory = MuxErrorCategory.DRM; diff --git a/packages/playback-core/src/webkit-fairplay.ts b/packages/playback-core/src/webkit-fairplay.ts index ba71d7cb7..5691dfa98 100644 --- a/packages/playback-core/src/webkit-fairplay.ts +++ b/packages/playback-core/src/webkit-fairplay.ts @@ -141,7 +141,7 @@ export const setupWebkitNativeFairplayDRM = ({ console.error(`Internal Webkit Key Session Error - sysCode: ${error.systemCode} code: ${error.code}`); const message = i18n( - 'The DRM Content Decryption Module system had an internal failure. Try reloading the page, upading your browser, or playing in another browser.' + 'The DRM Content Decryption Module system had an internal failure. Try reloading the page, updating your browser, or playing in another browser.' ); const mediaError = new MediaError(message, MediaError.MEDIA_ERR_ENCRYPTED, true); mediaError.errorCategory = MuxErrorCategory.DRM;