Changeset 3295951
- Timestamp:
- 05/18/2025 09:12:40 PM (11 months ago)
- Location:
- fatal-to-telegram
- Files:
-
- 6 edited
-
tags/1.2/admin/settings-page.php (modified) (2 diffs)
-
tags/1.2/fatal-to-telegram.php (modified) (1 diff)
-
tags/1.2/readme.txt (modified) (1 diff)
-
trunk/admin/settings-page.php (modified) (2 diffs)
-
trunk/fatal-to-telegram.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
fatal-to-telegram/tags/1.2/admin/settings-page.php
r3294645 r3295951 30 30 <h1><?php echo esc_html( __( 'Fatal message to Telegram Settings', 'fatal-to-telegram' ) ); ?></h1> 31 31 <?php settings_errors(); ?> 32 <h2><?php echo esc_html( __( 'Plugin Overview', 'fatal-to-telegram' ) ); ?></h2> 33 <p> 34 <strong><?php echo esc_html( __( 'Fatal message to Telegram', 'fatal-to-telegram' ) ); ?></strong> <?php echo esc_html( __( "monitors your WordPress site for fatal PHP errors and instantly sends detailed crash reports to your Telegram chat. 35 It's built for developers and sysadmins who want real-time error visibility without digging through logs. 📡 Keep your site monitored even while you sleep.", 'fatal-to-telegram' ) ); ?> 36 </p> 37 <p><strong><?php echo esc_html( __( 'Remember', 'fatal-to-telegram' ) ); ?>:</strong> <?php echo esc_html( __( 'This plugin creates a', 'fatal-to-telegram' ) ); ?> <code>mu-plugin</code> <?php echo esc_html( __( 'loader for early error detection. If you deactivate the plugin, the loader will stop working too', 'fatal-to-telegram' ) ); ?>.</p> 38 <h3>🔧 <?php echo esc_html( __( 'Features', 'fatal-to-telegram' ) ); ?>:</h3> 32 <h2>🔧 <?php echo esc_html( __( 'Features', 'fatal-to-telegram' ) ); ?>:</h2> 39 33 <ul> 40 34 <li>✅ <?php echo esc_html( __( 'Sends', 'fatal-to-telegram' ) ); ?> <strong><?php echo esc_html( __( 'fatal errors', 'fatal-to-telegram' ) ); ?></strong> (E_ERROR, E_PARSE, etc.) <?php echo esc_html( __( 'directly to Telegram', 'fatal-to-telegram' ) ); ?></li> … … 50 44 </ul> 51 45 <hr> 46 <p><strong><?php echo esc_html( __( 'Remember', 'fatal-to-telegram' ) ); ?>:</strong> <?php echo esc_html( __( 'This plugin creates a', 'fatal-to-telegram' ) ); ?> <code>mu-plugin</code> <?php echo esc_html( __( 'loader for early error detection. If you Delete the plugin, the loader will stop working', 'fatal-to-telegram' ) ); ?>.</p> 52 47 <form method="post" action="options.php" autocomplete="off"> 53 48 <?php settings_fields('fttg_settings_group'); ?> -
fatal-to-telegram/tags/1.2/fatal-to-telegram.php
r3294645 r3295951 17 17 18 18 if (!defined('ABSPATH')) exit; 19 20 add_action('plugins_loaded', 'fttg_load_textdomain'); 21 22 function fttg_load_textdomain() 23 { 24 25 load_plugin_textdomain('fatal-to-telegram', false, dirname(plugin_basename(__FILE__)) . '/languages'); 26 27 } 28 19 29 20 30 add_filter('plugin_row_meta', 'fttg_plugin_row_meta', 10, 2); -
fatal-to-telegram/tags/1.2/readme.txt
r3294645 r3295951 77 77 = 1.2 = 78 78 * [Fixed] Compliance with the verification Plugin Check (PCP) 1.5.0 standards 79 * [Added] Added translation into Russian -
fatal-to-telegram/trunk/admin/settings-page.php
r3294645 r3295951 30 30 <h1><?php echo esc_html( __( 'Fatal message to Telegram Settings', 'fatal-to-telegram' ) ); ?></h1> 31 31 <?php settings_errors(); ?> 32 <h2><?php echo esc_html( __( 'Plugin Overview', 'fatal-to-telegram' ) ); ?></h2> 33 <p> 34 <strong><?php echo esc_html( __( 'Fatal message to Telegram', 'fatal-to-telegram' ) ); ?></strong> <?php echo esc_html( __( "monitors your WordPress site for fatal PHP errors and instantly sends detailed crash reports to your Telegram chat. 35 It's built for developers and sysadmins who want real-time error visibility without digging through logs. 📡 Keep your site monitored even while you sleep.", 'fatal-to-telegram' ) ); ?> 36 </p> 37 <p><strong><?php echo esc_html( __( 'Remember', 'fatal-to-telegram' ) ); ?>:</strong> <?php echo esc_html( __( 'This plugin creates a', 'fatal-to-telegram' ) ); ?> <code>mu-plugin</code> <?php echo esc_html( __( 'loader for early error detection. If you deactivate the plugin, the loader will stop working too', 'fatal-to-telegram' ) ); ?>.</p> 38 <h3>🔧 <?php echo esc_html( __( 'Features', 'fatal-to-telegram' ) ); ?>:</h3> 32 <h2>🔧 <?php echo esc_html( __( 'Features', 'fatal-to-telegram' ) ); ?>:</h2> 39 33 <ul> 40 34 <li>✅ <?php echo esc_html( __( 'Sends', 'fatal-to-telegram' ) ); ?> <strong><?php echo esc_html( __( 'fatal errors', 'fatal-to-telegram' ) ); ?></strong> (E_ERROR, E_PARSE, etc.) <?php echo esc_html( __( 'directly to Telegram', 'fatal-to-telegram' ) ); ?></li> … … 50 44 </ul> 51 45 <hr> 46 <p><strong><?php echo esc_html( __( 'Remember', 'fatal-to-telegram' ) ); ?>:</strong> <?php echo esc_html( __( 'This plugin creates a', 'fatal-to-telegram' ) ); ?> <code>mu-plugin</code> <?php echo esc_html( __( 'loader for early error detection. If you Delete the plugin, the loader will stop working', 'fatal-to-telegram' ) ); ?>.</p> 52 47 <form method="post" action="options.php" autocomplete="off"> 53 48 <?php settings_fields('fttg_settings_group'); ?> -
fatal-to-telegram/trunk/fatal-to-telegram.php
r3294645 r3295951 17 17 18 18 if (!defined('ABSPATH')) exit; 19 20 add_action('plugins_loaded', 'fttg_load_textdomain'); 21 22 function fttg_load_textdomain() 23 { 24 25 load_plugin_textdomain('fatal-to-telegram', false, dirname(plugin_basename(__FILE__)) . '/languages'); 26 27 } 28 19 29 20 30 add_filter('plugin_row_meta', 'fttg_plugin_row_meta', 10, 2); -
fatal-to-telegram/trunk/readme.txt
r3294645 r3295951 77 77 = 1.2 = 78 78 * [Fixed] Compliance with the verification Plugin Check (PCP) 1.5.0 standards 79 * [Added] Added translation into Russian
Note: See TracChangeset
for help on using the changeset viewer.