Use single sentence for easier translations.
This commit is contained in:
parent
b8a1a69b2b
commit
34e5d3daa3
|
@ -353,9 +353,13 @@ class WC_Admin_Status {
|
||||||
<strong style="color:#a00;">
|
<strong style="color:#a00;">
|
||||||
<span class="dashicons dashicons-warning"></span>
|
<span class="dashicons dashicons-warning"></span>
|
||||||
<?php
|
<?php
|
||||||
esc_html_e( 'Missing base tables: ', 'woocommerce' );
|
echo esc_html(
|
||||||
echo esc_html( implode( ', ', $missing_tables ) );
|
sprintf(
|
||||||
esc_html_e( '. Some WooCommerce functionality may not work as expected.', 'woocommerce' );
|
// translators: Comma seperated list of missing tables.
|
||||||
|
__( 'Missing base tables: %s. Some WooCommerce functionality may not work as expected.', 'woocommerce' ),
|
||||||
|
implode( ', ', $missing_tables )
|
||||||
|
)
|
||||||
|
);
|
||||||
?>
|
?>
|
||||||
</strong>
|
</strong>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue