Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
pinarol committed Apr 25, 2019
1 parent 41c7bd2 commit cadb99b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/block-library/src/paragraph/edit.native.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@ class ParagraphEdit extends Component {
accessible={ ! this.props.isSelected }
accessibilityLabel={
isEmpty( content ) ?
/* translators: accessibility text. empty paragraph block. */
/* translators: accessibility text. empty paragraph block. */
__( 'Paragraph block. Empty' ) :
sprintf(
/* translators: accessibility text. %s: text content of the paragraph block. */
/* translators: accessibility text. %s: text content of the paragraph block. */
__( 'Paragraph block. %s' ),
this.plainTextContent( content )
)
Expand Down
4 changes: 2 additions & 2 deletions packages/editor/src/components/post-title/index.native.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ class PostTitle extends Component {
accessible={ ! this.state.isSelected }
accessibilityLabel={
isEmpty( title ) ?
/* translators: accessibility text. empty post title. */
/* translators: accessibility text. empty post title. */
__( 'Post title. Empty' ) :
sprintf(
/* translators: accessibility text. %s: text content of the post title. */
/* translators: accessibility text. %s: text content of the post title. */
__( 'Post title. %s' ),
title
)
Expand Down

0 comments on commit cadb99b

Please sign in to comment.