Use single sentence for easier translations.

This commit is contained in:
vedanshujain 2020-06-15 19:09:52 +05:30
parent b8a1a69b2b
commit 34e5d3daa3
1 changed files with 7 additions and 3 deletions

View File

@ -353,9 +353,13 @@ class WC_Admin_Status {
<strong style="color:#a00;">
<span class="dashicons dashicons-warning"></span>
<?php
esc_html_e( 'Missing base tables: ', 'woocommerce' );
echo esc_html( implode( ', ', $missing_tables ) );
esc_html_e( '. Some WooCommerce functionality may not work as expected.', 'woocommerce' );
echo esc_html(
sprintf(
// translators: Comma seperated list of missing tables.
__( 'Missing base tables: %s. Some WooCommerce functionality may not work as expected.', 'woocommerce' ),
implode( ', ', $missing_tables )
)
);
?>
</strong>