diff --git a/apps/site/i18n/locales/en.json b/apps/site/i18n/locales/en.json index b2f9ef45f86e2..50d2531ddf2d2 100644 --- a/apps/site/i18n/locales/en.json +++ b/apps/site/i18n/locales/en.json @@ -303,7 +303,7 @@ "activateFNM": "activate fnm", "noteWithColon": "NOTE:", "dockerIsNotNodejsPackageManager": "Docker is not a Node.js package manager.", - "PleaseEndureAlreadyInstallOnSystem": "Please ensure it is already installed on your system.", + "PleaseEnsureAlreadyInstallOnSystem": "Please ensure it is already installed on your system.", "dockerInstructions": "Follow official instructions at https://docs.docker.com/desktop/", "dockerImagesLink": "Docker images are provided officially at https://github.com/nodejs/docker-node/", "pullsNodejsDockerImage": "pulls the Node.js Docker image", @@ -312,7 +312,7 @@ "homebrewSupportsIntallingMajorNodejsVersion": "Homebrew only supports installing major Node.js versions and might not support the latest Node.js version from the {version} release line.", "chocolateyIsNotNodejsPackageManager": "Chocolatey is not a Node.js package manager.", "chocolateyInstructions": "Follow official instructions at https://chocolatey.org/", - "chocolateyNotMaintanedByNodejs": "Chocolatey is not officially maintained by the Node.js project and might not support the {version} version of Node.js" + "chocolateyNotMaintainedByNodejs": "Chocolatey is not officially maintained by the Node.js project and might not support the {version} version of Node.js" } } } diff --git a/apps/site/util/getNodeDownloadSnippet.ts b/apps/site/util/getNodeDownloadSnippet.ts index 43083610ecec6..0eb424805b901 100644 --- a/apps/site/util/getNodeDownloadSnippet.ts +++ b/apps/site/util/getNodeDownloadSnippet.ts @@ -22,7 +22,7 @@ export const getNodeDownloadSnippet = ( snippets.DOCKER = dedent` # ${t('layouts.download.codeBox.noteWithColon')} # ${t('layouts.download.codeBox.dockerIsNotNodejsPackageManager')} - # ${t('layouts.download.codeBox.PleaseEndureAlreadyInstallOnSystem')} + # ${t('layouts.download.codeBox.PleaseEnsureAlreadyInstallOnSystem')} # ${t('layouts.download.codeBox.dockerInstructions')} # ${t('layouts.download.codeBox.dockerImagesLink')} @@ -69,7 +69,7 @@ export const getNodeDownloadSnippet = ( snippets.BREW = dedent` # ${t('layouts.download.codeBox.noteWithColon')} # ${t('layouts.download.codeBox.homebrewIsNotNodejsPackageManager')} - # ${t('layouts.download.codeBox.PleaseEndureAlreadyInstallOnSystem')} + # ${t('layouts.download.codeBox.PleaseEnsureAlreadyInstallOnSystem')} # ${t('layouts.download.codeBox.homebrewInstructions')} # ${t('layouts.download.codeBox.homebrewSupportsIntallingMajorNodejsVersion', { version: release.major })} @@ -100,9 +100,9 @@ export const getNodeDownloadSnippet = ( snippets.CHOCO = dedent` # ${t('layouts.download.codeBox.noteWithColon')} # ${t('layouts.download.codeBox.chocolateyIsNotNodejsPackageManager')} - # ${t('layouts.download.codeBox.PleaseEndureAlreadyInstallOnSystem')} + # ${t('layouts.download.codeBox.PleaseEnsureAlreadyInstallOnSystem')} # ${t('layouts.download.codeBox.chocolateyInstructions')} - # ${t('layouts.download.codeBox.chocolateyNotMaintanedByNodejs', { version: release.versionWithPrefix })} + # ${t('layouts.download.codeBox.chocolateyNotMaintainedByNodejs', { version: release.versionWithPrefix })} # ${t('layouts.download.codeBox.downloadAndInstallNodejs')} choco install nodejs${release.isLts ? '-lts' : ''} --version="${release.version}"