Changeset 1598707
- Timestamp:
- 02/18/2017 11:54:16 AM (8 years ago)
- Location:
- wp-jv-custom-email-settings/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
wp-jv-custom-email-settings/trunk/Readme.txt
r1508811 r1598707 3 3 Donate 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¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted 4 4 Tags: admin, administration, email,e-mail, newsletter, notification, simple, wordpress, post, automatic, user, multisite 5 Requires at least: 3.9.26 Tested up to: 4. 6.15 Requires at least: 4.6 6 Tested up to: 4.7.2 7 7 Stable tag: 2.6 8 8 License: GPLv2 or later -
wp-jv-custom-email-settings/trunk/wp-jv-custom-email-settings.php
r1508811 r1598707 8 8 * Author URI: http://janosver.com 9 9 * License: GPLv2 or later 10 * Text Domain: wp-jv-custom-email-settings 10 11 */ 11 12 … … 453 454 function wp_jv_ces_notification_log_menu_page() { 454 455 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' ) ); 456 457 } 457 458 //#TODO: add filter/search … … 477 478 function __construct( $args = array()){ 478 479 $args = wp_parse_args($args, array( 479 'singular' => __( 'Notification email sent' ), //singular name of the listed records480 'plural' => __( 'Notification emails sent' ), //plural name of the listed records480 '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 481 482 'ajax' => false, 482 483 'screen' => null … … 1015 1016 if ( !empty($message)) { 1016 1017 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>'; 1018 1019 echo '</div>'; 1019 1020 delete_transient('auto_notification_message');
Note: See TracChangeset
for help on using the changeset viewer.