2023-07-05 03:54:54 +00:00
|
|
|
import React from 'react';
|
2023-06-08 03:34:23 +00:00
|
|
|
import Translate from '@docusaurus/Translate';
|
|
|
|
|
|
|
|
|
|
export default function Outdated(props) {
|
|
|
|
|
return (
|
|
|
|
|
<div className='outdated-text'>
|
|
|
|
|
<Translate id="outdated.message">
|
|
|
|
|
The content of current version is not up to date, please check latest English version, or
|
|
|
|
|
</Translate>
|
|
|
|
|
<a href={props.editUrl}>
|
|
|
|
|
<Translate id="outdated.help">
|
|
|
|
|
Help us to translate
|
|
|
|
|
</Translate>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|