Plugin Directory

Changeset 3295951


Ignore:
Timestamp:
05/18/2025 09:12:40 PM (11 months ago)
Author:
philstudio
Message:

Added translation into Russian

Location:
fatal-to-telegram
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • fatal-to-telegram/tags/1.2/admin/settings-page.php

    r3294645 r3295951  
    3030        <h1><?php echo esc_html( __( 'Fatal message to Telegram Settings', 'fatal-to-telegram' ) ); ?></h1>
    3131        <?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>
    3933        <ul>
    4034            <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>
     
    5044        </ul>
    5145        <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>
    5247        <form method="post" action="options.php" autocomplete="off">
    5348            <?php settings_fields('fttg_settings_group'); ?>
  • fatal-to-telegram/tags/1.2/fatal-to-telegram.php

    r3294645 r3295951  
    1717
    1818 if (!defined('ABSPATH')) exit;
     19
     20 add_action('plugins_loaded', 'fttg_load_textdomain');
     21
     22function fttg_load_textdomain()
     23{
     24
     25    load_plugin_textdomain('fatal-to-telegram', false, dirname(plugin_basename(__FILE__)) . '/languages');
     26   
     27}
     28
    1929
    2030 add_filter('plugin_row_meta', 'fttg_plugin_row_meta', 10, 2);
  • fatal-to-telegram/tags/1.2/readme.txt

    r3294645 r3295951  
    7777= 1.2 =
    7878* [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  
    3030        <h1><?php echo esc_html( __( 'Fatal message to Telegram Settings', 'fatal-to-telegram' ) ); ?></h1>
    3131        <?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>
    3933        <ul>
    4034            <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>
     
    5044        </ul>
    5145        <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>
    5247        <form method="post" action="options.php" autocomplete="off">
    5348            <?php settings_fields('fttg_settings_group'); ?>
  • fatal-to-telegram/trunk/fatal-to-telegram.php

    r3294645 r3295951  
    1717
    1818 if (!defined('ABSPATH')) exit;
     19
     20 add_action('plugins_loaded', 'fttg_load_textdomain');
     21
     22function fttg_load_textdomain()
     23{
     24
     25    load_plugin_textdomain('fatal-to-telegram', false, dirname(plugin_basename(__FILE__)) . '/languages');
     26   
     27}
     28
    1929
    2030 add_filter('plugin_row_meta', 'fttg_plugin_row_meta', 10, 2);
  • fatal-to-telegram/trunk/readme.txt

    r3294645 r3295951  
    7777= 1.2 =
    7878* [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.