Merge pull request #256 from answerdev/feat/1.0.7/ui

fix: i18n key fix
This commit is contained in:
dashuai 2023-03-14 14:11:37 +08:00 committed by GitHub
commit 234822c67f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -299,8 +299,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