Skip to content

Commit

Permalink
Fix i18n
Browse files Browse the repository at this point in the history
  • Loading branch information
luizbills committed Sep 22, 2023
1 parent 9f94afc commit fdc6bd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/Dependencies.php
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,12 @@ protected static function display_notice_missing_deps ( $messages ) {
echo "<div class='notice notice-error'><p>";
echo sprintf(
/* translators: %s is replaced with plugin name */
__( 'The %s plugin needs the following dependencies to work:', 'your-text-domain' ),
__( 'The %s plugin needs the following dependencies to work:', 'wc-shipping-simulator' ),
"<strong>" . Config::get( 'NAME' ) . "</strong>",
);

$indent = \str_repeat( '&nbsp;', 4 );
$missing = esc_html__( 'Missing', 'your-text-domain' );
$missing = esc_html__( 'Missing', 'wc-shipping-simulator' );
$allowed_html = [
'a' => [ 'href' => [], 'target' => [] ],
'span' => [ 'class' => [], 'style' => [] ],
Expand Down

0 comments on commit fdc6bd1

Please sign in to comment.