Skip to content

Commit

Permalink
🐛 fix(store-lists-filter.php): fix translation string to correctly ha…
Browse files Browse the repository at this point in the history
…ndle singular and plural form of "store showing"
  • Loading branch information
nurul-umbhiya committed Oct 10, 2023
1 parent 744e88b commit b29b364
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/store-lists-filter.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<p class="item store-count">
<?php
// translators: 1) number of stores
printf( _n( 'Total store showing: %d', 'Total stores showing: %d', $number_of_store, 'dokan-lite' ), number_format_i18n( $number_of_store ) );
printf( _n( 'Total store showing: %s', 'Total stores showing: %s', $number_of_store, 'dokan-lite' ), number_format_i18n( $number_of_store ) );
?>
</p>
</div>
Expand Down

0 comments on commit b29b364

Please sign in to comment.