Changeset 891336
- Timestamp:
- 04/11/2014 01:06:51 PM (12 years ago)
- Location:
- akismet/trunk
- Files:
-
- 3 edited
-
akismet.php (modified) (1 diff)
-
class.akismet-admin.php (modified) (2 diffs)
-
class.akismet.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
akismet/trunk/akismet.php
r887236 r891336 5 5 /* 6 6 Plugin Name: Akismet 7 Plugin URI: http://akismet.com/ ?return=true8 Description: Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from comment and trackback spam</strong>. It keeps your site protected from spam even while you sleep. To get started: 1) Click the "Activate" link to the left of this description, 2) <a href="http://akismet.com/get/ ?return=true">Sign up for an Akismet API key</a>, and 3) Go to your Akismet configuration page, and save your API key.7 Plugin URI: http://akismet.com/ 8 Description: Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from comment and trackback spam</strong>. It keeps your site protected from spam even while you sleep. To get started: 1) Click the "Activate" link to the left of this description, 2) <a href="http://akismet.com/get/">Sign up for an Akismet API key</a>, and 3) Go to your Akismet configuration page, and save your API key. 9 9 Version: 3.0-beta 10 10 Author: Automattic -
akismet/trunk/class.akismet-admin.php
r890710 r891336 276 276 '<a href="%1$s">Akismet</a> has protected your site from <a href="%2$s">%3$s spam comments</a>.', 277 277 $count 278 , 'akismet'), 'http ://akismet.com/?return=true', esc_url( add_query_arg( array( 'page' => 'akismet-admin' ), admin_url( isset( $submenu['edit-comments.php'] ) ? 'edit-comments.php' : 'edit.php' ) ) ), number_format_i18n($count) ).'</p>';278 , 'akismet'), 'https://akismet.com/wordpress/', esc_url( add_query_arg( array( 'page' => 'akismet-admin' ), admin_url( isset( $submenu['edit-comments.php'] ) ? 'edit-comments.php' : 'edit.php' ) ) ), number_format_i18n($count) ).'</p>'; 279 279 } 280 280 … … 295 295 '<a href="%1$s">Akismet</a> has protected your site from %2$s spam comments already. ', 296 296 $count 297 , 'akismet'), 'http ://akismet.com/?return=true', number_format_i18n( $count ) );297 , 'akismet'), 'https://akismet.com/wordpress/', number_format_i18n( $count ) ); 298 298 } else { 299 $intro = sprintf( __('<a href="%s">Akismet</a> blocks spam from getting to your blog. ', 'akismet'), 'http ://akismet.com/?return=true' );299 $intro = sprintf( __('<a href="%s">Akismet</a> blocks spam from getting to your blog. ', 'akismet'), 'https://akismet.com/wordpress/' ); 300 300 } 301 301 -
akismet/trunk/class.akismet.php
r890710 r891336 744 744 load_plugin_textdomain( 'akismet' ); 745 745 746 $message = '<strong>'.sprintf(esc_html__( 'Akismet %s requires WordPress %s or higher.' , 'akismet'), AKISMET_VERSION, AKISMET__MINIMUM_WP_VERSION ).'</strong> '.sprintf(__('Please <a href="%1$s">upgrade WordPress</a> to a current version, or <a href="%2$s">downgrade to version 2.4 of the Akismet plugin</a>.', 'akismet'), 'http ://codex.wordpress.org/Upgrading_WordPress', 'http://wordpress.org/extend/plugins/akismet/download/');746 $message = '<strong>'.sprintf(esc_html__( 'Akismet %s requires WordPress %s or higher.' , 'akismet'), AKISMET_VERSION, AKISMET__MINIMUM_WP_VERSION ).'</strong> '.sprintf(__('Please <a href="%1$s">upgrade WordPress</a> to a current version, or <a href="%2$s">downgrade to version 2.4 of the Akismet plugin</a>.', 'akismet'), 'https://codex.wordpress.org/Upgrading_WordPress', 'http://wordpress.org/extend/plugins/akismet/download/'); 747 747 748 748 Akismet::bail_on_activation( $message );
Note: See TracChangeset
for help on using the changeset viewer.