~canonical-sysadmins/wordpress/4.1.3

« back to all changes in this revision

Viewing changes to wp-content/plugins/akismet/views/config.php

  • Committer: Nick Moffitt
  • Date: 2015-01-15 11:05:37 UTC
  • mfrom: (1.1.1 wp4-upstream)
  • Revision ID: nick.moffitt@canonical.com-20150115110537-8bp1y42eyg0jsa7c
Tags: 4.1
MergeĀ upstreamĀ versionĀ 4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
88
88
                                                                                                        <p><label for="akismet_strictness_1"><input type="radio" name="akismet_strictness" id="akismet_strictness_1" value="1" <?php checked('1', get_option('akismet_strictness')); ?> /> <?php esc_html_e('Silently discard the worst and most pervasive spam so I never see it.', 'akismet'); ?></label></p>
89
89
                                                                                                        <p><label for="akismet_strictness_0"><input type="radio" name="akismet_strictness" id="akismet_strictness_0" value="0" <?php checked('0', get_option('akismet_strictness')); ?> /> <?php esc_html_e('Always put spam in the Spam folder for review.', 'akismet'); ?></label></p>
90
90
                                                                                                        </fieldset>
91
 
                                                                                                        <span class="note"><strong><?php esc_html_e('Note:', 'akismet');?></strong> <?php printf( __( 'Spam in the <a href="%s">spam folder</a> older than 15 days is deleted automatically.' , 'akismet'), admin_url( 'edit-comments.php?comment_status=spam' ) );?></span>
 
91
                                                                                                        <span class="note"><strong><?php esc_html_e('Note:', 'akismet');?></strong>
 
92
                                                                                                        <?php
 
93
                                                                                                        
 
94
                                                                                                        $delete_interval = max( 1, intval( apply_filters( 'akismet_delete_comment_interval', 15 ) ) );
 
95
                                                                                                        
 
96
                                                                                                        printf(
 
97
                                                                                                                _n(
 
98
                                                                                                                        'Spam in the <a href="%s">spam folder</a> older than 1 day is deleted automatically.',
 
99
                                                                                                                        'Spam in the <a href="%1$s">spam folder</a> older than %2$d days is deleted automatically.',
 
100
                                                                                                                        $delete_interval,
 
101
                                                                                                                        'akismet'
 
102
                                                                                                                ),
 
103
                                                                                                                admin_url( 'edit-comments.php?comment_status=spam' ),
 
104
                                                                                                                $delete_interval
 
105
                                                                                                        );
 
106
                                                                                                        
 
107
                                                                                                        ?>
92
108
                                                                                                </td>
93
109
                                                                                        </tr>
94
110
                                                                                </tbody>