Skip to content

Commit

Permalink
Try fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Aurorum committed Feb 4, 2024
1 parent 54d78c5 commit 924d9be
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions projects/plugins/jetpack/extensions/blocks/blog-stats/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,20 @@ function BlogStatsEdit( { attributes, className, setAttributes } ) {
);
}

const visitorsPlaceholder = _n( 'visitor', 'visitors', parseInt( stats ), 'jetpack' );

/* Translators: Number of views */
const viewsPlaceholder = _n( 'hit', 'hits', parseInt( stats ), 'jetpack' );
const visitorsPlaceholder = _n(
/* Translators: Number of visitors */
'visitor',
'visitors',
parseInt( stats ),
'jetpack'
);
const viewsPlaceholder = _n(
/* Translators: Number of views */
'hit',
'hits',
parseInt( stats ),
'jetpack'
);

return (
<>
Expand Down

0 comments on commit 924d9be

Please sign in to comment.