Add password generator feature and update localization files

This commit is contained in:
shuaiplus
2026-07-11 18:49:26 +08:00
parent b472121f43
commit dfc98008cb
18 changed files with 8112 additions and 2 deletions
+6
View File
@@ -13,6 +13,7 @@ import type { ExportRequest } from '@/lib/export-formats';
const VaultPage = lazy(() => import('@/components/VaultPage'));
const SendsPage = lazy(() => import('@/components/SendsPage'));
const PasswordGeneratorPage = lazy(() => import('@/components/PasswordGeneratorPage'));
const TotpCodesPage = lazy(() => import('@/components/TotpCodesPage'));
const SettingsPage = lazy(() => import('@/components/SettingsPage'));
const DomainRulesPage = lazy(() => import('@/components/DomainRulesPage'));
@@ -207,6 +208,11 @@ export default function AppMainRoutes(props: AppMainRoutesProps) {
return (
<Switch>
<Route path="/generator">
<Suspense fallback={<RouteContentFallback />}>
<PasswordGeneratorPage />
</Suspense>
</Route>
<Route path="/sends">
<Suspense fallback={<RouteContentFallback />}>
<SendsPage