Plugin Directory

Changeset 1598707


Ignore:
Timestamp:
02/18/2017 11:54:16 AM (8 years ago)
Author:
janosver
Message:

Tested up to 4.7.2, updated text domain

Location:
wp-jv-custom-email-settings/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-jv-custom-email-settings/trunk/Readme.txt

    r1508811 r1598707  
    33Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=JNF92QJY4PGGA&lc=HU&item_name=WP%20JV%20Custom%20Email%20Settings%20%2d%20Plugin%20Donation&item_number=2&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
    44Tags: admin, administration, email,e-mail, newsletter, notification, simple, wordpress, post, automatic, user, multisite
    5 Requires at least: 3.9.2
    6 Tested up to: 4.6.1
     5Requires at least: 4.6
     6Tested up to: 4.7.2
    77Stable tag: 2.6
    88License: GPLv2 or later
  • wp-jv-custom-email-settings/trunk/wp-jv-custom-email-settings.php

    r1508811 r1598707  
    88 * Author URI: http://janosver.com
    99 * License: GPLv2 or later
     10 * Text Domain: wp-jv-custom-email-settings
    1011 */
    1112
     
    453454function wp_jv_ces_notification_log_menu_page() {
    454455    if ( !current_user_can( 'edit_posts' ) )  {
    455         wp_die( __( 'You do not have sufficient permissions to access this page.' ) );
     456        wp_die( __( 'You do not have sufficient permissions to access this page.', 'wp-jv-custom-email-settings' ) );
    456457    }
    457458    //#TODO: add filter/search
     
    477478    function __construct( $args = array()){     
    478479        $args = wp_parse_args($args,  array(
    479             'singular'  => __( 'Notification email sent' ),     //singular name of the listed records
    480             'plural'    => __( 'Notification emails sent' ),   //plural name of the listed records
     480            'singular'  => __( 'Notification email sent', 'wp-jv-custom-email-settings' ),     //singular name of the listed records
     481            'plural'    => __( 'Notification emails sent', 'wp-jv-custom-email-settings' ),   //plural name of the listed records
    481482            'ajax'      => false,
    482483            'screen'    => null
     
    10151016    if ( !empty($message)) {
    10161017        echo '<div class="'.get_transient('auto_notification_result').'" id="jv_ces_notification_div">';
    1017         echo '<p>'._e( $message, 'wp_jv_ces_textdomain' ). '</p>';
     1018        echo '<p>'.$message. '</p>';
    10181019        echo '</div>';         
    10191020        delete_transient('auto_notification_message');
Note: See TracChangeset for help on using the changeset viewer.