close

Plugin Directory

Changeset 2585639


Ignore:
Timestamp:
08/19/2021 07:14:25 PM (5 years ago)
Author:
procifer
Message:

Improve the wording of API usage notifications for clarity.

Location:
akismet/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • akismet/trunk/akismet.php

    r2585043 r2585639  
    77Plugin URI: https://akismet.com/
    88Description: 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.11a3
     9Version: 4.1.11a4
    1010Author: Automattic
    1111Author URI: https://automattic.com/wordpress-plugins/
     
    3838}
    3939
    40 define( 'AKISMET_VERSION', '4.1.11a3' );
     40define( 'AKISMET_VERSION', '4.1.11a4' );
    4141define( 'AKISMET__MINIMUM_WP_VERSION', '4.0' );
    4242define( 'AKISMET__PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
  • akismet/trunk/views/notice.php

    r2580537 r2585639  
    151151            case Akismet::LIMIT_NOTICE_FIRST_MONTH_OVER_LIMIT:
    152152            case Akismet::LIMIT_NOTICE_SECOND_MONTH_OVER_LIMIT:
    153                 esc_html_e( 'Your Akismet account usage is over the plan limit', 'akismet' );
     153                esc_html_e( 'Your Akismet account usage is over your plan\'s limit', 'akismet' );
    154154                break;
    155155            case Akismet::LIMIT_NOTICE_THIRD_MONTH_APPROACHING_LIMIT:
    156                 esc_html_e( 'Your Akismet account usage is approaching the plan limit', 'akismet' );
     156                esc_html_e( 'Your Akismet account usage is approaching your plan\'s limit', 'akismet' );
    157157                break;
    158158            case Akismet::LIMIT_NOTICE_THIRD_MONTH_OVER_LIMIT:
     
    169169            case Akismet::LIMIT_NOTICE_FIRST_MONTH_OVER_LIMIT:
    170170                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' ),
    172172                    esc_html( gmdate( 'F' ) . ' 1' ),
    173173                    number_format( $api_calls ),
     
    177177                break;
    178178            case Akismet::LIMIT_NOTICE_SECOND_MONTH_OVER_LIMIT:
    179                 esc_html_e( 'Your Akismet usage has been over the plan limit 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' );
    180180                break;
    181181            case Akismet::LIMIT_NOTICE_THIRD_MONTH_APPROACHING_LIMIT:
    182                 esc_html_e( 'Your Akismet usage is nearing the plan 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' );
     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' );
    183183                break;
    184184            case Akismet::LIMIT_NOTICE_THIRD_MONTH_OVER_LIMIT:
    185185            case Akismet::LIMIT_NOTICE_FOUR_PLUS_MONTHS_OVER_LIMIT:
    186                 esc_html_e( 'Your Akismet usage has been over the plan 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' );
     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' );
    187187                break;
    188188            default:
Note: See TracChangeset for help on using the changeset viewer.