Skip to content

Commit

Permalink
Manually add jetpack textdomain to extensions/blocks/map/component.js
Browse files Browse the repository at this point in the history
  • Loading branch information
ockham authored and simison committed Apr 1, 2019
1 parent 8dd400b commit 40e357e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions extensions/blocks/map/component.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,20 +69,20 @@ export class Map extends Component {
{ activeMarker && admin && (
<Fragment>
<TextControl
label={ __( 'Marker Title' ) }
label={ __( 'Marker Title', 'jetpack' ) }
value={ title }
onChange={ value => updateActiveMarker( { title: value } ) }
/>
<TextareaControl
className="wp-block-jetpack-map__marker-caption"
label={ __( 'Marker Caption' ) }
label={ __( 'Marker Caption', 'jetpack' ) }
value={ caption }
rows="2"
tag="textarea"
onChange={ value => updateActiveMarker( { caption: value } ) }
/>
<Button onClick={ deleteActiveMarker } className="wp-block-jetpack-map__delete-btn">
<Dashicon icon="trash" size="15" /> { __( 'Delete Marker' ) }
<Dashicon icon="trash" size="15" /> { __( 'Delete Marker', 'jetpack' ) }
</Button>
</Fragment>
) }
Expand Down

0 comments on commit 40e357e

Please sign in to comment.