Skip to content

Commit

Permalink
Improve labels
Browse files Browse the repository at this point in the history
  • Loading branch information
psrpinto committed Nov 24, 2022
1 parent 8b74c87 commit aa7ed3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions block/inspector/StylePanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { __ } from "@wordpress/i18n";
export default function StylePanel({ attributes, setAttributes }): WPElement {
return (
<PanelBody
title={__("Layout", "chatrix")}
title={__("Style", "chatrix")}
initialOpen={false}
>
<PanelRow>
Expand All @@ -15,7 +15,7 @@ export default function StylePanel({ attributes, setAttributes }): WPElement {
onChange={(value) => {
setAttributes({ height: { value: value, unit: "px" } });
}}
help={"In pixels"}
help={__("In pixels", "chatrix")}
/>
</PanelRow>
</PanelBody>
Expand Down

0 comments on commit aa7ed3b

Please sign in to comment.