Skip to content

Commit

Permalink
Capitalize and fix [matrix]
Browse files Browse the repository at this point in the history
  • Loading branch information
TheEvilSkeleton committed Jul 17, 2020
1 parent da7550e commit 96f0d3a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/views/auth/VectorAuthFooter.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -43,7 +43,7 @@ const VectorAuthFooter = () => {
return (
<div className="mx_AuthFooter">
{authFooterLinks}
<a href="https://matrix.org" target="_blank" rel="noreferrer noopener">{ _t('powered by Matrix') }</a>
<a href="https://matrix.org" target="_blank" rel="noreferrer noopener">{ _t('Powered by [matrix]') }</a>
</div>
);
};
Expand Down

0 comments on commit 96f0d3a

Please sign in to comment.