Skip to content
This repository has been archived by the owner on May 29, 2020. It is now read-only.

Commit

Permalink
Merge pull request #35 from audrasjb/fix/plugins-filters-wording-change
Browse files Browse the repository at this point in the history
Plugins screen: replace Automatic Updates with Auto-updates in filters
  • Loading branch information
audrasjb committed Mar 5, 2020
2 parents ab8973f + 1f86b79 commit f5ec8e4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions wp-autoupdates.php
Expand Up @@ -342,8 +342,8 @@ function wp_autoupdates_plugins_status_links( $status_links ) {
case 'autoupdate_enabled':
/* translators: %s: Number of plugins. */
$text = _n(
'Automatic Update Enabled <span class="count">(%s)</span>',
'Automatic Update Enabled <span class="count">(%s)</span>',
'Auto-updates Enabled <span class="count">(%s)</span>',
'Auto-updates Enabled <span class="count">(%s)</span>',
$count,
'wp-autoupdates'
);
Expand All @@ -352,8 +352,8 @@ function wp_autoupdates_plugins_status_links( $status_links ) {
case 'autoupdate_disabled':
/* translators: %s: Number of plugins. */
$text = _n(
'Automatic Update Disabled <span class="count">(%s)</span>',
'Automatic Update Disabled <span class="count">(%s)</span>',
'Auto-updates Disabled <span class="count">(%s)</span>',
'Auto-updates Disabled <span class="count">(%s)</span>',
$count,
'wp-autoupdates'
);
Expand Down

0 comments on commit f5ec8e4

Please sign in to comment.