Skip to content
Merged

Release #1213

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions includes/layouts/feedzy-schedules.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ class="fz-schedules-table"
<?php
$schedule_count = count( $custom_schedules );

// translators: %s is the number of custom schedules.
echo esc_html( sprintf( _n( '%d item', '%d items', $schedule_count, 'feedzy-rss-feeds' ) ) );
// translators: %d is the number of custom schedules.
echo esc_html( sprintf( _n( '%d item', '%d items', $schedule_count, 'feedzy-rss-feeds' ), $schedule_count ) );
?>
</div>

Expand Down
Loading