diff --git a/src/components/views/auth/VectorAuthFooter.js b/src/components/views/auth/VectorAuthFooter.js index c7e767b66fd..3b6a84094eb 100644 --- a/src/components/views/auth/VectorAuthFooter.js +++ b/src/components/views/auth/VectorAuthFooter.js @@ -22,9 +22,9 @@ import { _t } from 'matrix-react-sdk/src/languageHandler'; const VectorAuthFooter = () => { const brandingConfig = SdkConfig.get().branding; let links = [ - {"text": "blog", "url": "https://element.io/blog"}, - {"text": "twitter", "url": "https://twitter.com/element_hq"}, - {"text": "github", "url": "https://github.com/vector-im/riot-web"}, + {"text": "Blog", "url": "https://element.io/blog"}, + {"text": "Twitter", "url": "https://twitter.com/element_hq"}, + {"text": "GitHub", "url": "https://github.com/vector-im/riot-web"}, ]; if (brandingConfig && brandingConfig.authFooterLinks) { @@ -43,7 +43,7 @@ const VectorAuthFooter = () => { return (
{authFooterLinks} - { _t('powered by Matrix') } + { _t('Powered by [matrix]') }
); };