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 upgrade: Answer Upgrade
maintenance: Website Maintenance maintenance: Website Maintenance
users: Users users: Users
404: HTTP Error 404 http_404: HTTP Error 404
50X: HTTP Error 500 http_50X: HTTP Error 500
notifications: notifications:
title: Notifications title: Notifications
inbox: Inbox inbox: Inbox

View File

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

View File

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