Skip to content

Commit

Permalink
Add i18n for placeholders, use ellipsis
Browse files Browse the repository at this point in the history
  • Loading branch information
mkaz committed May 4, 2017
1 parent ff87c9f commit f05af0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blocks/library/pullquote/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ registerBlock( 'core/pullquote', {
return (
<blockquote className="blocks-pullquote">
<Editable
value={ value || 'Write quote...' }
value={ value || wp.i18n.__( 'Write Quote…' ) }
onChange={
( nextValue ) => setAttributes( {
value: nextValue
Expand All @@ -36,7 +36,7 @@ registerBlock( 'core/pullquote', {
{ ( citation || !! focus ) && (
<footer>
<Editable
value={ citation || 'Write citation...' }
value={ citation || wp.i18n.__( 'Write caption…' ) }
onChange={
( nextCitation ) => setAttributes( {
citation: nextCitation
Expand Down

0 comments on commit f05af0d

Please sign in to comment.