Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

Commit

Permalink
Merge pull request #78 from WordPress/fix/replace-disable-string
Browse files Browse the repository at this point in the history
Replace Disable strings with Disable auto-updates
  • Loading branch information
audrasjb authored Apr 15, 2020
2 parents 9e1d0f4 + 55ee962 commit dd4d3c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ function wp_autoupdates_add_plugins_autoupdates_column_content( $column_name, $p
'<a href="%s" class="plugin-autoupdate-disable" aria-label="%s">%s</a>',
wp_nonce_url( 'plugins.php?action=autoupdate&amp;plugin=' . urlencode( $plugin_file ) . '&amp;paged=' . $page . '&amp;plugin_status=' . $plugin_status, 'autoupdate-plugin_' . $plugin_file ),
$aria_label,
__( 'Disable', 'wp-autoupdates' )
__( 'Disable auto-updates', 'wp-autoupdates' )
);
}
echo '</p>';
Expand Down Expand Up @@ -1201,7 +1201,7 @@ function wp_autoupdates_add_themes_autoupdates_column_content( $column_name, $st
'<a href="%s" class="theme-autoupdate-disable" aria-label="%s">%s</a>',
wp_nonce_url( $base_url, 'autoupdate-theme_' . $stylesheet ),
$aria_label,
__( 'Disable', 'wp-autoupdates' )
__( 'Disable auto-updates', 'wp-autoupdates' )
);
}
echo '</p>';
Expand Down

0 comments on commit dd4d3c6

Please sign in to comment.