Plugin Directory

Changeset 3277598


Ignore:
Timestamp:
04/20/2025 11:58:16 AM (11 months ago)
Author:
devsabbirahmed
Message:

Add the text domain missing in a single file and remove ratting filter- ORG issue fixed

Location:
notifier-to-slack
Files:
476 added
5 edited

Legend:

Unmodified
Added
Removed
  • notifier-to-slack/trunk/inc/Debuglog.php

    r3274179 r3277598  
    5757        $schedules['added_schedules_interval'] = [
    5858            'interval' => isset($wpntspro_time) ? $wpntspro_time : 900,
    59             'display'  => esc_html__( 'Assigned Time' ),
     59            'display'  => esc_html__( 'Assigned Time', 'notifier-to-slack' ),
    6060        ];
    6161        return $schedules;
  • notifier-to-slack/trunk/notifier-to-slack.php

    r3274179 r3277598  
    1212 * Plugin URI: https://wordpress.org/plugins/notifier-to-slack/
    1313 * Description: Notifier to slack is your comprehensive solution for system and user activity tracking with advanced security enhancements. Monitor user actions, WooCommerce events, and support forums while securing your website with instant real-time notifications via Slack and email.
    14  * Version:           3.4.3
     14 * Version:           3.4.4
    1515 * Requires at least: 5.9
    1616 * Requires PHP:      5.6
     
    6767// If direct access than exit the file.
    6868defined('ABSPATH') || die('Hey, what are you doing here? You silly human!');
    69 define( 'WP_NOTIFIER_TO_SLACK_VERSION', '3.4.3' );
     69define( 'WP_NOTIFIER_TO_SLACK_VERSION', '3.4.4' );
    7070define( 'WP_NOTIFIER_TO_SLACK__FILE__', __FILE__ );
    7171define( 'WP_NOTIFIER_TO_SLACK_DIR', __DIR__ );
  • notifier-to-slack/trunk/readme.txt

    r3274179 r3277598  
    55Tested up to: 6.8
    66Requires PHP: 5.6
    7 Stable Tag: 3.4.3
     7Stable Tag: 3.4.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    285285
    286286== Changelog ==
     287
     288**Version 3.4.4** 
     289- Enhancement: Add the text domain in missing file
    287290
    288291**Version 3.4.3** 
  • notifier-to-slack/trunk/templates/parts/review_notice.php

    r3274179 r3277598  
    229229
    230230        if (orangeIcons === 5) {
    231             window.open('https://wordpress.org/support/plugin/notifier-to-slack/reviews/?filter=5', '_blank');
     231            window.open('https://wordpress.org/support/plugin/notifier-to-slack/reviews/', '_blank');
    232232        } else {
    233233            window.open('https://functiondeck.com/support/', '_blank');
  • notifier-to-slack/trunk/vendor/freemius/README.md

    r3274179 r3277598  
    118118<?php
    119119    if ( my_prefix_fs()->is_not_paying() ) {
    120         echo '<section><h1>' . esc_html__('Awesome Premium Features', 'my-plugin-slug') . '</h1>';
     120        echo '<section><h1>' . esc_html__('Awesome Premium Features', 'notifier-to-slack') . '</h1>';
    121121        echo '<a href="' . my_prefix_fs()->get_upgrade_url() . '">' .
    122             esc_html__('Upgrade Now!', 'my-plugin-slug') .
     122            esc_html__('Upgrade Now!', 'notifier-to-slack') .
    123123            '</a>';
    124124        echo '</section>';
Note: See TracChangeset for help on using the changeset viewer.