Skip to content

Commit

Permalink
Fix minification issue
Browse files Browse the repository at this point in the history
  • Loading branch information
gmjuhasz committed Aug 28, 2024
1 parent 5db5551 commit 68b94a9
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { IconTooltip, Text } from '@automattic/jetpack-components';
import { __ } from '@wordpress/i18n';
import { __, _x } from '@wordpress/i18n';
import { Icon, check } from '@wordpress/icons';
import clsx from 'clsx';
import React from 'react';
Expand Down Expand Up @@ -37,7 +37,9 @@ export function ShareStatusLabel( { status, message } ) {
>
<div className={ styles[ 'share-status-icon' ] }>{ icon }</div>
<div className={ styles[ 'share-status-label' ] }>
{ isSuccessful ? __( 'Shared', 'jetpack' ) : __( 'Failed', 'jetpack' ) }
{ isSuccessful
? _x( 'Shared', 'The sharing is successful', 'jetpack' )
: __( 'Failed', 'jetpack' ) }
</div>
</div>
);
Expand Down

0 comments on commit 68b94a9

Please sign in to comment.