fix(web): optimize i18n name

This commit is contained in:
lcxadml
2024-02-21 10:39:32 +08:00
committed by GitHub
parent 32e1554282
commit 02abcb7218
32 changed files with 72 additions and 52 deletions

View File

@@ -89,12 +89,12 @@ export default function App() {
const items: TabsProps['items'] = [
{
key: 'app',
label: 'App',
label: t('App'),
children: renderAppList({ isCollected: false }),
},
{
key: 'collected',
label: 'Collected',
label: t('collected'),
children: renderAppList({ isCollected: true }),
},
];