Changeset 2585639
- Timestamp:
- 08/19/2021 07:14:25 PM (5 years ago)
- Location:
- akismet/trunk
- Files:
-
- 2 edited
-
akismet.php (modified) (2 diffs)
-
views/notice.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
akismet/trunk/akismet.php
r2585043 r2585639 7 7 Plugin URI: https://akismet.com/ 8 8 Description: Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from spam</strong>. It keeps your site protected even while you sleep. To get started: activate the Akismet plugin and then go to your Akismet Settings page to set up your API key. 9 Version: 4.1.11a 39 Version: 4.1.11a4 10 10 Author: Automattic 11 11 Author URI: https://automattic.com/wordpress-plugins/ … … 38 38 } 39 39 40 define( 'AKISMET_VERSION', '4.1.11a 3' );40 define( 'AKISMET_VERSION', '4.1.11a4' ); 41 41 define( 'AKISMET__MINIMUM_WP_VERSION', '4.0' ); 42 42 define( 'AKISMET__PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); -
akismet/trunk/views/notice.php
r2580537 r2585639 151 151 case Akismet::LIMIT_NOTICE_FIRST_MONTH_OVER_LIMIT: 152 152 case Akismet::LIMIT_NOTICE_SECOND_MONTH_OVER_LIMIT: 153 esc_html_e( 'Your Akismet account usage is over the planlimit', 'akismet' );153 esc_html_e( 'Your Akismet account usage is over your plan\'s limit', 'akismet' ); 154 154 break; 155 155 case Akismet::LIMIT_NOTICE_THIRD_MONTH_APPROACHING_LIMIT: 156 esc_html_e( 'Your Akismet account usage is approaching the planlimit', 'akismet' );156 esc_html_e( 'Your Akismet account usage is approaching your plan\'s limit', 'akismet' ); 157 157 break; 158 158 case Akismet::LIMIT_NOTICE_THIRD_MONTH_OVER_LIMIT: … … 169 169 case Akismet::LIMIT_NOTICE_FIRST_MONTH_OVER_LIMIT: 170 170 printf( 171 __( 'Since %s, your account made %s API calls, compared to your plan limit of %s. <a href="%s" target="_blank">Learn more</a> about usage limits.', 'akismet' ),171 __( 'Since %s, your account made %s API calls, compared to your plan\'s limit of %s. <a href="%s" target="_blank">Learn more</a> about usage limits.', 'akismet' ), 172 172 esc_html( gmdate( 'F' ) . ' 1' ), 173 173 number_format( $api_calls ), … … 177 177 break; 178 178 case Akismet::LIMIT_NOTICE_SECOND_MONTH_OVER_LIMIT: 179 esc_html_e( 'Your Akismet usage has been over the planlimit for two consecutive months. Next month, we will restrict your account after you reach the limit. Please consider upgrading your plan.', 'akismet' );179 esc_html_e( 'Your Akismet usage has been over your plan\'s limit for two consecutive months. Next month, we will restrict your account after you reach the limit. Please consider upgrading your plan.', 'akismet' ); 180 180 break; 181 181 case Akismet::LIMIT_NOTICE_THIRD_MONTH_APPROACHING_LIMIT: 182 esc_html_e( 'Your Akismet usage is nearing the planlimit for the third consecutive month. We will restrict your account after you reach the limit. Upgrade your plan so Akismet can continue blocking spam.', 'akismet' );182 esc_html_e( 'Your Akismet usage is nearing your plan\'s limit for the third consecutive month. We will restrict your account after you reach the limit. Upgrade your plan so Akismet can continue blocking spam.', 'akismet' ); 183 183 break; 184 184 case Akismet::LIMIT_NOTICE_THIRD_MONTH_OVER_LIMIT: 185 185 case Akismet::LIMIT_NOTICE_FOUR_PLUS_MONTHS_OVER_LIMIT: 186 esc_html_e( 'Your Akismet usage has been over the planlimit for three consecutive months. We have restricted your account for the rest of the month. Upgrade your plan so Akismet can continue blocking spam.', 'akismet' );186 esc_html_e( 'Your Akismet usage has been over your plan\'s limit for three consecutive months. We have restricted your account for the rest of the month. Upgrade your plan so Akismet can continue blocking spam.', 'akismet' ); 187 187 break; 188 188 default:
Note: See TracChangeset
for help on using the changeset viewer.