@@ -132,12 +132,8 @@ export default function ReusableBlockEdit( {
132
132
}
133
133
134
134
const onConvertToRegularBlocks = useCallback ( ( ) => {
135
- const successNotice =
136
- innerBlockCount > 1
137
- ? /* translators: %s: name of the reusable block */
138
- __ ( '%s converted to regular blocks' )
139
- : /* translators: %s: name of the reusable block */
140
- __ ( '%s converted to regular block' ) ;
135
+ /* translators: %s: name of the synced block */
136
+ const successNotice = __ ( '%s detached' ) ;
141
137
createSuccessNotice ( sprintf ( successNotice , title ) ) ;
142
138
143
139
clearSelectedBlock ( ) ;
@@ -182,17 +178,17 @@ export default function ReusableBlockEdit( {
182
178
< Text style = { [ infoTextStyle , infoDescriptionStyle ] } >
183
179
{ innerBlockCount > 1
184
180
? __ (
185
- 'Alternatively, you can detach and edit these blocks separately by tapping “Convert to regular blocks ”.'
181
+ 'Alternatively, you can detach and edit these blocks separately by tapping “Detach patterns ”.'
186
182
)
187
183
: __ (
188
- 'Alternatively, you can detach and edit this block separately by tapping “Convert to regular block ”.'
184
+ 'Alternatively, you can detach and edit this block separately by tapping “Detach pattern ”.'
189
185
) }
190
186
</ Text >
191
187
< TextControl
192
188
label = {
193
189
innerBlockCount > 1
194
- ? __ ( 'Convert to regular blocks ' )
195
- : __ ( 'Convert to regular block ' )
190
+ ? __ ( 'Detach patterns ' )
191
+ : __ ( 'Detach pattern ' )
196
192
}
197
193
separatorType = "topFullWidth"
198
194
onPress = { onConvertToRegularBlocks }
0 commit comments