Skip to content

Commit cad9f05

Browse files
committed
Fix the text domain on the settings sidebar heading
`views/part-rocket-ad.php:26` passed 'corporate' as the text domain instead of 'imagify', so "We recommend for you" never matched a translation and always rendered in English regardless of locale. Unrelated to the banner copy in #1044 - different file, different placement - but found while tracing which WP Rocket banner the ticket meant, and it is a one-word fix in the same area.
1 parent 007c9db commit cad9f05

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

views/part-rocket-ad.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<div class="imagify-col imagify-sidebar">
2424
<div class="imagify-sidebar-section">
2525
<p class="imagify-sidebar-title">
26-
<?php esc_html_e( 'We recommend for you', 'corporate' ); ?>
26+
<?php esc_html_e( 'We recommend for you', 'imagify' ); ?>
2727
</p>
2828

2929
<img src="<?php echo esc_url( IMAGIFY_ASSETS_IMG_URL ); ?>logo-wprocket.png" srcset="<?php echo esc_url( IMAGIFY_ASSETS_IMG_URL ); ?>logo-wprocket.svg 1x, <?php echo esc_url( IMAGIFY_ASSETS_IMG_URL ); ?>logo-wprocket.svg 2x" alt="WP Rocket" width="232" height="63">

0 commit comments

Comments
 (0)