File size: 638 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
import { FormLabel } from '@automattic/components';
import FormTextarea from 'calypso/components/forms/form-textarea';
const TranslatableTextarea = ( {
originalString,
title,
fieldName,
onChange,
value,
disabled,
} ) => (
<FormLabel className="community-translator__string-container" htmlFor={ fieldName }>
<span className="community-translator__string-description">{ title }</span>
<span>
<dfn>{ originalString }</dfn>
<FormTextarea
id={ fieldName }
name={ fieldName }
value={ value }
disabled={ disabled }
onChange={ onChange }
/>
</span>
</FormLabel>
);
export default TranslatableTextarea;
|