diff --git a/packages/block-library/src/paragraph/edit.native.js b/packages/block-library/src/paragraph/edit.native.js index 9943a8074666ae..b64eb6b604cb68 100644 --- a/packages/block-library/src/paragraph/edit.native.js +++ b/packages/block-library/src/paragraph/edit.native.js @@ -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 ) ) diff --git a/packages/editor/src/components/post-title/index.native.js b/packages/editor/src/components/post-title/index.native.js index 0c49316ba17489..661c66a90a403a 100644 --- a/packages/editor/src/components/post-title/index.native.js +++ b/packages/editor/src/components/post-title/index.native.js @@ -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 )