{t("masterPassword.popoverDescription")}
+{t(encrypt ? "masterPassword.popoverDescriptionEncrypt" : "masterPassword.popoverDescription")}
+ ; +} diff --git a/src/pages/wallets/WalletsPage.tsx b/src/pages/wallets/WalletsPage.tsx new file mode 100644 index 0000000..87163e4 --- /dev/null +++ b/src/pages/wallets/WalletsPage.tsx @@ -0,0 +1,42 @@ +import React, { useState } from "react"; +import { Button } from "antd"; +import { DatabaseOutlined, PlusOutlined } from "@ant-design/icons"; + +import { useTranslation } from "react-i18next"; + +import { PageLayout } from "../../layout/PageLayout"; +import { AuthorisedAction } from "../../components/auth/AuthorisedAction"; +import { AddWalletModal } from "./AddWalletModal"; + +function WalletsPageExtraButtons(): JSX.Element { + const { t } = useTranslation(); + const [createWalletVisible, setCreateWalletVisible] = useState(false); + const [addWalletVisible, setAddWalletVisible] = useState(false); + + return <> + }>{t("myWallets.manageBackups")} + +