diff --git a/packages/block-editor/src/components/global-styles/background-panel.js b/packages/block-editor/src/components/global-styles/background-panel.js
index 2e73f52564362e..b7cf7f2bbc493d 100644
--- a/packages/block-editor/src/components/global-styles/background-panel.js
+++ b/packages/block-editor/src/components/global-styles/background-panel.js
@@ -102,7 +102,7 @@ function backgroundSizeHelpText( value ) {
if ( value === 'contain' ) {
return __( 'Image is contained without distortion.' );
}
- return __( 'Specify a fixed width.' );
+ return __( 'Image has a fixed width.' );
}
/**
@@ -174,13 +174,13 @@ function InspectorImagePreview( { label, filename, url: imgUrl } ) {
{ imgLabel }
- { filename
+ { imgUrl
? sprintf(
/* translators: %s: file name */
- __( 'Selected image: %s' ),
- filename
+ __( 'Background image: %s' ),
+ filename || imgLabel
)
- : __( 'No image selected' ) }
+ : __( 'No background image selected' ) }
@@ -321,7 +321,7 @@ function BackgroundImageToolsPanelItem( {
name={
- { currentValueForToggle !== undefined &&
- currentValueForToggle !== 'cover' &&
- currentValueForToggle !== 'contain' ? (
-
- ) : null }
- { currentValueForToggle !== 'cover' && (
-
- ) }
+
+ { currentValueForToggle !== undefined &&
+ currentValueForToggle !== 'cover' &&
+ currentValueForToggle !== 'contain' ? (
+
+ ) : null }
+ { currentValueForToggle !== 'cover' && (
+
+ ) }
+
);
}
diff --git a/packages/edit-site/src/components/global-styles/background-panel.js b/packages/edit-site/src/components/global-styles/background-panel.js
index 0ad74e0cd0bdd5..8a372587bc66e5 100644
--- a/packages/edit-site/src/components/global-styles/background-panel.js
+++ b/packages/edit-site/src/components/global-styles/background-panel.js
@@ -2,7 +2,6 @@
* WordPress dependencies
*/
import { privateApis as blockEditorPrivateApis } from '@wordpress/block-editor';
-import { __ } from '@wordpress/i18n';
/**
* Internal dependencies
@@ -59,7 +58,6 @@ export default function BackgroundPanel() {
value={ style }
onChange={ setStyle }
settings={ settings }
- headerLabel={ __( 'Background' ) }
defaultValues={ BACKGROUND_DEFAULT_VALUES }
defaultControls={ defaultControls }
themeFileURIs={ _links?.[ 'wp:theme-file' ] }