We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff87c9f commit f05af0dCopy full SHA for f05af0d
blocks/library/pullquote/index.js
@@ -23,7 +23,7 @@ registerBlock( 'core/pullquote', {
23
return (
24
<blockquote className="blocks-pullquote">
25
<Editable
26
- value={ value || 'Write quote...' }
+ value={ value || wp.i18n.__( 'Write Quote…' ) }
27
onChange={
28
( nextValue ) => setAttributes( {
29
value: nextValue
@@ -36,7 +36,7 @@ registerBlock( 'core/pullquote', {
36
{ ( citation || !! focus ) && (
37
<footer>
38
39
- value={ citation || 'Write citation...' }
+ value={ citation || wp.i18n.__( 'Write caption…' ) }
40
41
( nextCitation ) => setAttributes( {
42
citation: nextCitation
0 commit comments