fix(appearance): new strings for discover button

This commit is contained in:
trashtemp
2022-01-14 17:16:11 +01:00
parent 268a67f06e
commit 0e7f989369
2 changed files with 7 additions and 5 deletions

2
external/lang vendored

View File

@@ -1,4 +1,4 @@
import { Store } from "@styled-icons/boxicons-solid"; import { Brush } from "@styled-icons/boxicons-solid";
import { observer } from "mobx-react-lite"; import { observer } from "mobx-react-lite";
import { Link } from "react-router-dom"; import { Link } from "react-router-dom";
// @ts-expect-error shade-blend-color does not have typings. // @ts-expect-error shade-blend-color does not have typings.
@@ -53,11 +53,13 @@ export const ThemeShopShim = () => {
return ( return (
<Link to="/discover/themes" replace> <Link to="/discover/themes" replace>
<CategoryButton <CategoryButton
icon={<Store size={24} />} icon={<Brush size={24} />}
action="chevron" action="chevron"
description={"Browse themes made by the community"} description={
<Text id="app.settings.pages.appearance.discover.description" />
}
hover> hover>
<Text id="app.settings.pages.theme_shop.title" /> <Text id="app.settings.pages.appearance.discover.title" />
</CategoryButton> </CategoryButton>
</Link> </Link>
); );