Skip to content

Commit

Permalink
embed: fix translation string
Browse files Browse the repository at this point in the history
  • Loading branch information
ajitbohra committed Apr 30, 2018
1 parent 081f931 commit 9535d54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core-blocks/embed/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const HOSTS_NO_PREVIEWS = [ 'facebook.com' ];
function getEmbedBlockSettings( { title, description, icon, category = 'embed', transforms, keywords = [] } ) {
return {
title,
description: description || __( `Paste URLs from ${ title } to embed the content in this block.` ),
description: description || sprintf( __( 'Paste URLs from %s to embed the content in this block' ), title ),
icon,
category,
keywords,
Expand Down

0 comments on commit 9535d54

Please sign in to comment.