fix: i18n key fix

This commit is contained in:
shuai 2023-03-14 14:11:01 +08:00
parent d182a1ff54
commit 8415e120df
3 changed files with 4 additions and 4 deletions

View File

@ -297,8 +297,8 @@ ui:
upgrade: Answer Upgrade
maintenance: Website Maintenance
users: Users
404: HTTP Error 404
50X: HTTP Error 500
http_404: HTTP Error 404
http_50X: HTTP Error 500
notifications:
title: Notifications
inbox: Inbox

View File

@ -19,7 +19,7 @@ const Index = () => {
}, []);
usePageTags({
title: t('404', { keyPrefix: 'page_title' }),
title: t('http_404', { keyPrefix: 'page_title' }),
});
return (
<Container

View File

@ -19,7 +19,7 @@ const Index = () => {
}, []);
usePageTags({
title: t('50X', { keyPrefix: 'page_title' }),
title: t('http_50X', { keyPrefix: 'page_title' }),
});
return (
<Container