feat(i18n, client): migrate meta translations (#40885)

This commit is contained in:
Nicholas Carrigan (he/him)
2021-02-03 00:03:52 -08:00
committed by GitHub
parent f5f2df187b
commit 1a642ba542
16 changed files with 159 additions and 123 deletions

View File

@@ -16,7 +16,7 @@ export const getheadTagComponents = () => {
<link href={pathToBootstrap} key='bootstrap-min' rel='stylesheet' />,
<meta content='freeCodeCamp.org' key='og:title' name='og:title' />,
<meta
content={i18next.t('meta.social-description')}
content={i18next.t('metaTags:social-description')}
key='og:description'
name='og:description'
/>,
@@ -37,7 +37,7 @@ export const getheadTagComponents = () => {
name='twitter:title'
/>,
<meta
content={i18next.t('meta.social-description')}
content={i18next.t('metaTags:social-description')}
key='twitter:description'
name='twitter:description'
/>,