fix(appearance): new strings for discover button

This commit is contained in:
trashtemp 2022-01-14 17:16:11 +01:00
parent d3ffe8e6f6
commit 2415e98fbe
No known key found for this signature in database
GPG key ID: D1F0DB65081B0FC6
2 changed files with 7 additions and 5 deletions

2
external/lang vendored

@ -1 +1 @@
Subproject commit 35f883fa6e808ff31def7e73f03234af069414db Subproject commit 75b7859a067a718b7507c4898990ccc72ece7fd9

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>
); );