mirror of https://gitee.com/answerdev/answer.git
fix: i18n key fix
This commit is contained in:
parent
d182a1ff54
commit
8415e120df
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue