Skip to content

Commit

Permalink
Merge similar strings. (#12540)
Browse files Browse the repository at this point in the history
  • Loading branch information
dimadin authored and youknowriad committed Dec 20, 2018
1 parent e3a9f5c commit 8e9d9e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/editor/src/components/url-input/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ class URLInput extends Component {
if ( this.state.selectedSuggestion !== null ) {
this.selectLink( post );
// Announce a link has been selected when tabbing away from the input field.
this.props.speak( __( 'Link selected' ) );
this.props.speak( __( 'Link selected.' ) );
}
break;
}
Expand Down
2 changes: 1 addition & 1 deletion packages/format-library/src/link/inline.js
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ class InlineLinkUI extends Component {
} else if ( isActive ) {
speak( __( 'Link edited.' ), 'assertive' );
} else {
speak( __( 'Link inserted' ), 'assertive' );
speak( __( 'Link inserted.' ), 'assertive' );
}
}

Expand Down

0 comments on commit 8e9d9e2

Please sign in to comment.