Skip to content

Commit

Permalink
fix : change lower case
Browse files Browse the repository at this point in the history
  • Loading branch information
kurudrive committed Jun 15, 2023
1 parent f2dd657 commit be7b543
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/copy-button/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export default function Edit(props) {
title={__('Settings', 'vk-simple-copy-block')}
>
<TextControl
label={__('Copy Button text', 'vk-simple-copy-block')}
label={__('Copy button text', 'vk-simple-copy-block')}
value={!!text ? text : ''}
onChange={(value) => {
setAttributes({ text: value });
Expand Down
2 changes: 1 addition & 1 deletion src/simple-copy/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "vk-simple-copy-block/simple-copy",
"category": "vk-blocks-cat",
"title": "Simple Copy",
"description": "A block to copy the code of the block inside the Copy Target.",
"description": "A block to copy the code of the block inside the copy target.",
"attributes": {
"blockId": {
"type": "string"
Expand Down
4 changes: 2 additions & 2 deletions src/simple-copy/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,15 @@ export default function InnerCopyEdit(props) {
{isParentsSynced && (
<Warning>
{__(
'Reusable blocks cannot contain Simple Copy blocks. Either convert it to a normal block or remove it completely.',
'Reusable blocks cannot contain simple copy blocks. Either convert it to a normal block or remove it completely.',
'vk-simple-copy-block'
)}
</Warning>
)}
{isParentsInnerCopyBlock && (
<Warning>
{__(
'Simple Copy blocks cannot be contained within Simple Copy blocks. Please delete it.',
'Simple copy blocks cannot be contained within simple copy blocks. Please delete it.',
'vk-simple-copy-block'
)}
</Warning>
Expand Down

0 comments on commit be7b543

Please sign in to comment.