Plugin Directory

Changeset 3310682


Ignore:
Timestamp:
06/12/2025 06:32:28 PM (8 months ago)
Author:
seraphinitesoft
Message:

seraphinite-accelerator: 2.27.31.

Location:
seraphinite-accelerator
Files:
143 added
16 edited

Legend:

Unmodified
Added
Removed
  • seraphinite-accelerator/trunk/Cmn/Gen.php

    r3307788 r3310682  
    36173617            $args[ 'provider' ] = 'CURL';
    36183618        if( !isset( $args[ 'user-agent' ] ) )
    3619             $args[ 'user-agent' ] = 'seraph-accel-Agent/2.27.30';
     3619            $args[ 'user-agent' ] = 'seraph-accel-Agent/2.27.31';
    36203620        if( !isset( $args[ 'timeout' ] ) )
    36213621            $args[ 'timeout' ] = 5;
  • seraphinite-accelerator/trunk/Cmn/Plugin.php

    r3307788 r3310682  
    307307            $args[ 'id' ] = 'wordpress-accelerator';
    308308            $args[ 'name' ] = 'Accelerator';
    309             $args[ 'v' ] = '2.27.30';
     309            $args[ 'v' ] = '2.27.31';
    310310            $args[ 'pk' ] = 'Base';
    311311            $args[ 'cfg' ] = '';
     
    329329            $lastCheckPackage = 'Base';
    330330
    331         if( $lastCheckVer !== '2.27.30' || $lastCheckPackage !== 'Base' )
     331        if( $lastCheckVer !== '2.27.31' || $lastCheckPackage !== 'Base' )
    332332        {
    333333            $state = Plugin::StateGet();
    334334
    335             if( $lastCheckVer !== '2.27.30' && !isset( $state[ 'changeVerCheck' ] ) )
     335            if( $lastCheckVer !== '2.27.31' && !isset( $state[ 'changeVerCheck' ] ) )
    336336            {
    337337                $state[ 'changeVerCheck' ] = $lastCheckVer !== null ? $lastCheckVer : '';
     
    350350        if( !$bForce )
    351351        {
    352             if( $bFirstTimeOnly && $lastCheckVer == '2.27.30' )
     352            if( $bFirstTimeOnly && $lastCheckVer == '2.27.31' )
    353353                return( Gen::S_FALSE );
    354354
     
    369369            $args[ 'id' ] = 'wordpress-accelerator';
    370370            $args[ 'name' ] = 'Accelerator';
    371             $args[ 'v' ] = '2.27.30';
     371            $args[ 'v' ] = '2.27.31';
    372372            $args[ 'pk' ] = 'Base';
    373373            $args[ 'cfg' ] = '';
     
    386386            {
    387387                $data[ 'updTime' ] = $curUpdTime;
    388                 $data[ 'plgVer' ] = '2.27.30';
     388                $data[ 'plgVer' ] = '2.27.31';
    389389                $data[ 'plgPk' ] = 'Base';
    390390
     
    403403        $data[ 'mdfTime' ] = $timeMdf;
    404404        $data[ 'updTime' ] = $curUpdTime;
    405         $data[ 'plgVer' ] = '2.27.30';
     405        $data[ 'plgVer' ] = '2.27.31';
    406406        $data[ 'plgPk' ] = 'Base';
    407407
     
    14391439
    14401440        $urlProductInfo = Plugin::RmtCfgFld_GetLoc( $rmtCfg, 'Links.UrlProductInfo' );
    1441         $urlAboutPluginImg = file_exists( __DIR__ . '/../Images/ProductLogo.png' ) ? add_query_arg( array( 'v' => '2.27.30' ), Plugin::FileUri( '../Images/ProductLogo.png', __FILE__ ) ) : null;
     1441        $urlAboutPluginImg = file_exists( __DIR__ . '/../Images/ProductLogo.png' ) ? add_query_arg( array( 'v' => '2.27.31' ), Plugin::FileUri( '../Images/ProductLogo.png', __FILE__ ) ) : null;
    14421442        $urlAboutPluginDocs = Plugin::RmtCfgFld_GetLoc( $rmtCfg, 'Links.UrlProductDocs' );
    14431443        $urlAboutPluginSupport = Plugin::RmtCfgFld_GetLoc( $rmtCfg, 'Links.UrlProductSupport' );
    1444         $url3rdPartySoft = file_exists( __DIR__ . '/../third-party-software.html' ) ? add_query_arg( array( 'v' => '2.27.30' ), Plugin::FileUri( '../third-party-software.html', __FILE__ ) ) : null;
     1444        $url3rdPartySoft = file_exists( __DIR__ . '/../third-party-software.html' ) ? add_query_arg( array( 'v' => '2.27.31' ), Plugin::FileUri( '../third-party-software.html', __FILE__ ) ) : null;
    14451445
    14461446        $urlEula = null;
     
    14511451
    14521452        {
    1453             $version = esc_html( '2.27.30' );
     1453            $version = esc_html( '2.27.31' );
    14541454
    14551455            $res .= Ui::TagOpen( 'div' );
     
    15001500        $rmtCfg = PluginRmtCfg::Get();
    15011501
    1502         $urlAboutUsLogoImg = file_exists( __DIR__ . '/../Images/VendorLogo.png' ) ? add_query_arg( array( 'v' => '2.27.30' ), Plugin::FileUri( '../Images/VendorLogo.png', __FILE__ ) ) : null;
     1502        $urlAboutUsLogoImg = file_exists( __DIR__ . '/../Images/VendorLogo.png' ) ? add_query_arg( array( 'v' => '2.27.31' ), Plugin::FileUri( '../Images/VendorLogo.png', __FILE__ ) ) : null;
    15031503        $urlMorePlugins = Plugin::RmtCfgFld_GetLoc( $rmtCfg, 'Links.UrlMorePlugins' );
    15041504        $urlMoreInfo = Plugin::RmtCfgFld_GetLoc( $rmtCfg, 'Links.UrlMain' );
     
    20272027
    20282028            $verFrom = self::_PrevVer_GetInt( $plgVerPrev );
    2029             $verTo = self::_PrevVer_GetInt( '2.27.30' );
     2029            $verTo = self::_PrevVer_GetInt( '2.27.31' );
    20302030            if( $verTo < $verFrom )
    20312031                list( $verTo, $verFrom ) = array( $verFrom, $verTo );
     
    21522152                continue;
    21532153
    2154             wp_enqueue_style( Plugin::CmnScriptId( $id ), add_query_arg( Plugin::GetFileUrlPackageParams(), $fileUrl . '/' . $id . '.css' ), array(), '2.27.30' );
     2154            wp_enqueue_style( Plugin::CmnScriptId( $id ), add_query_arg( Plugin::GetFileUrlPackageParams(), $fileUrl . '/' . $id . '.css' ), array(), '2.27.31' );
    21552155
    21562156            self::$g_aAlreadyIncludedObj[ 'css' ][ $id ] = true;
     
    22192219            $scrHndId = Plugin::CmnScriptId( $id );
    22202220
    2221             wp_register_script( $scrHndId, add_query_arg( Plugin::GetFileUrlPackageParams(), $fileUrl . '/' . $id . '.js' ), $deps, '2.27.30' );
     2221            wp_register_script( $scrHndId, add_query_arg( Plugin::GetFileUrlPackageParams(), $fileUrl . '/' . $id . '.js' ), $deps, '2.27.31' );
    22222222            if( $id == 'Gen' )
    22232223                Plugin::Loc_ScriptLoad( $scrHndId );
     
    26642664                            var sendDataUrl = "<?php echo( Gen::GetArrField( $rmtCfg, 'Questionnaires.SendAnswerUrlTpl' ) ); ?>";
    26652665                            sendDataUrl = sendDataUrl.replace( "{EndPointId}",                  encodeURI( "<?php echo( Wp::GetSiteId() ); ?>" ) );
    2666                             sendDataUrl = sendDataUrl.replace( "{PluginVersion}",               encodeURI( "2.27.30" ) );
     2666                            sendDataUrl = sendDataUrl.replace( "{PluginVersion}",               encodeURI( "2.27.31" ) );
    26672667                            sendDataUrl = sendDataUrl.replace( "{PluginMode}",                  encodeURI( "base" ) );
    26682668                            sendDataUrl = sendDataUrl.replace( "{PluginPackage}",               encodeURI( "Base" ) );
  • seraphinite-accelerator/trunk/cache.php

    r3307788 r3310682  
    639639
    640640    if( $bHdr )
    641         @header( 'X-Seraph-Accel-Cache: 2.27.30;' . $debugInfo );
     641        @header( 'X-Seraph-Accel-Cache: 2.27.31;' . $debugInfo );
    642642
    643643    if( $bLog )
     
    15361536    {
    15371537        $_SERVER[ 'SERAPH_ACCEL_ORIG_USER_AGENT' ] = ($_SERVER[ 'HTTP_USER_AGENT' ]??'');
    1538         $_SERVER[ 'HTTP_USER_AGENT' ] = 'Mozilla/99999.9 AppleWebKit/9999999.99 (KHTML, like Gecko) Chrome/999999.0.9999.99 Safari/9999999.99 seraph-accel-Agent/2.27.30';
     1538        $_SERVER[ 'HTTP_USER_AGENT' ] = 'Mozilla/99999.9 AppleWebKit/9999999.99 (KHTML, like Gecko) Chrome/999999.0.9999.99 Safari/9999999.99 seraph-accel-Agent/2.27.31';
    15391539    }
    15401540
  • seraphinite-accelerator/trunk/common.php

    r3307788 r3310682  
    39973997function GetViewTypeUserAgent( $viewsDeviceGrp )
    39983998{
    3999     return( 'Mozilla/99999.9 AppleWebKit/9999999.99 (KHTML, like Gecko) Chrome/999999.0.9999.99 Safari/9999999.99 seraph-accel-Agent/2.27.30 ' . ucwords( implode( ' ', Gen::GetArrField( $viewsDeviceGrp, array( 'agents' ), array() ) ) ) );
     3999    return( 'Mozilla/99999.9 AppleWebKit/9999999.99 (KHTML, like Gecko) Chrome/999999.0.9999.99 Safari/9999999.99 seraph-accel-Agent/2.27.31 ' . ucwords( implode( ' ', Gen::GetArrField( $viewsDeviceGrp, array( 'agents' ), array() ) ) ) );
    40004000}
    40014001
     
    52875287    $args = array( 'sslverify' => false, 'timeout' => $timeout );
    52885288    if( $userAgentCmn )
    5289         $args[ 'user-agent' ] = 'Mozilla/99999.9 AppleWebKit/9999999.99 (KHTML, like Gecko) Chrome/999999.0.9999.99 Safari/9999999.99 seraph-accel-Agent/2.27.30';
     5289        $args[ 'user-agent' ] = 'Mozilla/99999.9 AppleWebKit/9999999.99 (KHTML, like Gecko) Chrome/999999.0.9999.99 Safari/9999999.99 seraph-accel-Agent/2.27.31';
    52905290
    52915291    global $seraph_accel_g_aGetExtContentsFailedSrvs;
     
    57375737    {
    57385738        if( !isset( $headers[ 'User-Agent' ] ) )
    5739             $headers[ 'User-Agent' ] = ($headers[ 'X-Seraph-Accel-Postpone-User-Agent' ]??'Mozilla/99999.9 AppleWebKit/9999999.99 (KHTML, like Gecko) Chrome/999999.0.9999.99 Safari/9999999.99 seraph-accel-Agent/2.27.30');
     5739            $headers[ 'User-Agent' ] = ($headers[ 'X-Seraph-Accel-Postpone-User-Agent' ]??'Mozilla/99999.9 AppleWebKit/9999999.99 (KHTML, like Gecko) Chrome/999999.0.9999.99 Safari/9999999.99 seraph-accel-Agent/2.27.31');
    57405740        $headers[ 'User-Agent' ] = str_replace( 'seraph-accel-Agent/', 'seraph-accel-Agent-WarmUp/', $headers[ 'User-Agent' ] );
    57415741
  • seraphinite-accelerator/trunk/languages/seraphinite-accelerator-admin.pot

    r3307788 r3310682  
    77msgid ""
    88msgstr ""
    9 "#-#-#-#-#  cmn.admin.pot (seraphinite-accelerator 2.27.30)  #-#-#-#-#\n"
    10 "Project-Id-Version: seraphinite-accelerator 2.27.30\n"
     9"#-#-#-#-#  cmn.admin.pot (seraphinite-accelerator 2.27.31)  #-#-#-#-#\n"
     10"Project-Id-Version: seraphinite-accelerator 2.27.31\n"
    1111"Report-Msgid-Bugs-To: [email protected]\n"
    1212"MIME-Version: 1.0\n"
    1313"Content-Type: text/plain; charset=UTF-8\n"
    1414"Content-Transfer-Encoding: 8bit\n"
    15 "#-#-#-#-#  main.admin.pot (seraphinite-accelerator 2.27.30)  #-#-#-#-#\n"
    16 "Project-Id-Version: seraphinite-accelerator 2.27.30\n"
     15"#-#-#-#-#  main.admin.pot (seraphinite-accelerator 2.27.31)  #-#-#-#-#\n"
     16"Project-Id-Version: seraphinite-accelerator 2.27.31\n"
    1717"Report-Msgid-Bugs-To: [email protected]\n"
    1818"MIME-Version: 1.0\n"
     
    508508msgstr ""
    509509
     510# A conflicting setting has been detected that is preventing correct working. The <strong>'%2$s' should be turned off</strong> in '%1$s' settings.
     511#, php-format
     512msgctxt "admin.SelfDiag"
     513msgid "3rdExtSett_Conflict_%1$s%2$s"
     514msgstr ""
     515
     516# The <strong>'%2$s'</strong> in '%1$s' settings might decrease the site's loading speed.
     517#, php-format
     518msgctxt "admin.SelfDiag"
     519msgid "3rdExtSett_SpeedDecr_%1$s%2$s"
     520msgstr ""
     521
     522# A requred module is missing. The <strong>'%1$s' should be enabled</strong>.
     523#, php-format
     524msgctxt "admin.Notice"
     525msgid "3rdMdl_ConflictOff_%1$s"
     526msgstr ""
     527
     528# A conflicting module has been detected that is preventing correct working. The <strong>'%1$s' should be disabled</strong>.
     529#, php-format
     530msgctxt "admin.Notice"
     531msgid "3rdMdl_Conflict_%1$s"
     532msgstr ""
     533
     534# A conflicting setting has been detected that is preventing correct working. The <strong>'%2$s' should be turned off</strong> in '%1$s''s settings.
     535#, php-format
     536msgctxt "admin.Notice"
     537msgid "3rdSett_ConflictSoft_%1$s%2$s"
     538msgstr ""
     539
     540# A conflicting setting has been detected that is preventing correct working. The <strong>'%1$s' should be disabled</strong> or <strong>'%2$s' should be turned off</strong> in it's settings.
     541#, php-format
     542msgctxt "admin.Notice"
     543msgid "3rdSett_Conflict_%1$s%2$s"
     544msgstr ""
     545
     546# Asset's loading of '%1$s' type has bad compression. Please, check the hosting's settings.
     547#, php-format
     548msgctxt "admin.Notice"
     549msgid "AssetCompr_Bad_%1$s"
     550msgstr ""
     551
     552# Use for asynchronous tasks execution
     553msgctxt "admin.Settings_Advanced_Cron"
     554msgid "AsyncUseCronChk"
     555msgstr ""
     556
     557# Enable Avif with %1$squality and %2$sspeed
     558#, php-format
     559msgctxt "admin.Settings_Images_Compr"
     560msgid "AvifChk_%1$s%2$s"
     561msgstr ""
     562
     563# The cache directory '%1$s' is not writtable or can't be created. Please, create it manually, <strong>make it writable</strong>, and save the plugin settings.
     564#, php-format
     565msgctxt "admin.Notice"
     566msgid "CacheDirNotWrittable_%1$s"
     567msgstr ""
     568
     569# The configuration file '%1$s' is not writable. Please, make it writable and save the plugin settings.
     570#, php-format
     571msgctxt "admin.Notice"
     572msgid "ConfigFileNotWrittable_%1$s"
     573msgstr ""
     574
     575# The '%1$s' directory is not writable. It is needed to create a file '%2$s' in to that folder in order to work. Please, <strong>make it writable</strong> and save the plugin settings.
     576#, php-format
     577msgctxt "admin.Notice"
     578msgid "ContentDirNotWrittable_%1$s%2$s"
     579msgstr ""
     580
     581# The '%2$s' file in '%1$s' directory is not loaded. It looks like it's some kind of special hosting or site setup.
     582#, php-format
     583msgctxt "admin.Notice"
     584msgid "ContentDropinNotLoaded_%1$s%2$s"
     585msgstr ""
     586
     587# <p>Required content:</p>%1$s<p>Current content:</p>%2$s
     588#, php-format
     589msgctxt "admin.Notice"
     590msgid "ContentDropinNotMatchEx_%1$s%2$s"
     591msgstr ""
     592
     593# The '%2$s' file in '%1$s' directory has wrong content. Please, <strong>save the plugin settings</strong> to correct it.
     594#, php-format
     595msgctxt "admin.Notice"
     596msgid "ContentDropinNotMatch_%1$s%2$s"
     597msgstr ""
     598
     599# The '%2$s' file in '%1$s' directory is not writable. Please, <strong>make it writable</strong> and save the plugin settings.
     600#, php-format
     601msgctxt "admin.Notice"
     602msgid "ContentDropinNotWrittable_%1$s%2$s"
     603msgstr ""
     604
     605# Images' auto-redirection to '%3$s' is not active. Please, find %1$show to enable it%2$s or try turn on the <strong>%5$s</strong> mode. If all previous steps are unsuccessful you can just turn off the <strong>%4$s</strong> option.
     606#, php-format
     607msgctxt "admin.Notice"
     608msgid "ImgConvRedir_NotActive_%1$s%2$s%3$s%4$s%5$s"
     609msgstr ""
     610
     611# Images' compression to '%3$s' is not supported on current hosting configuration. Please, find %1$show to enable it%2$s or just turn off the <strong>%4$s</strong> option.
     612#, php-format
     613msgctxt "admin.Notice"
     614msgid "ImgConv_NotSupp_%1$s%2$s%3$s%4$s"
     615msgstr ""
     616
     617# Images' compression to '%3$s' doesn't work: %5$s. Please, find %1$show to fix it%2$s or just turn off the <strong>%4$s</strong> option.
     618#, php-format
     619msgctxt "admin.Notice"
     620msgid "ImgConv_NotWork_%1$s%2$s%3$s%4$s%5$s"
     621msgstr ""
     622
     623# General
     624msgctxt "admin.Settings_Advanced_Common"
     625msgid "Lbl"
     626msgstr ""
     627
     628# Task scheduler (Cron)
     629msgctxt "admin.Settings_Advanced_Cron"
     630msgid "Lbl"
     631msgstr ""
     632
     633# Processing
     634msgctxt "admin.Settings_Cache_Revalidate_Proc"
     635msgid "Lbl"
     636msgstr ""
     637
     638# Adaptation to screen sizes
     639msgctxt "admin.Settings_Images_Adapt"
     640msgid "Lbl"
     641msgstr ""
     642
     643# Compression
     644msgctxt "admin.Settings_Images_Compr"
     645msgid "Lbl"
     646msgstr ""
     647
     648# PHP '%1$s' extension at least %2$s version must be active to work correctly. Please, enable it at hosting's PHP settings.
     649#, php-format
     650msgctxt "admin.Notice"
     651msgid "PhpBrotliNotActive_%1$s%2$s"
     652msgstr ""
     653
     654# PHP '%1$s' extension must be active to work correctly. Please, enable it at hosting's PHP settings.
     655#, php-format
     656msgctxt "admin.Notice"
     657msgid "PhpExtNotActive_%1$s"
     658msgstr ""
     659
     660# '%2$s' function requres PHP '%1$s' extension to work correctly. If this function is not needed it can be just turned off in the '%3$s' group. Otherwise, please, enable '%1$s' extension at hosting's PHP settings.
     661#, php-format
     662msgctxt "admin.Notice"
     663msgid "PhpGdNotActive_%1$s%2$s%3$s"
     664msgstr ""
     665
     666# '%2$s' function requres PHP '%1$s' extension to work correctly. But, <strong>if the site has wellformed HTML</strong> this function is not necessary and can be just turned off in the '%3$s' group. Otherwise, please, enable '%1$s' extension at hosting's PHP settings.
     667#, php-format
     668msgctxt "admin.Notice"
     669msgid "PhpTidyNotActive_%1$s%2$s%3$s"
     670msgstr ""
     671
     672# Alternative redirection
     673msgctxt "admin.Settings_Images_Compr"
     674msgid "RedirOwnChk"
     675msgstr ""
     676
     677# After the settings will been changed, please, don't forget to update the cache %1$shere%2$s.
     678#, php-format
     679msgctxt "admin.Notice"
     680msgid "RemindRefreshCache_%1$s%2$s"
     681msgstr ""
     682
     683# Advanced by 'Tidy'
     684msgctxt "admin.Settings_Html_Fix"
     685msgid "TidyChk"
     686msgstr ""
     687
     688# Advanced
     689msgctxt "admin.Settings_Advanced"
     690msgid "Title"
     691msgstr ""
     692
     693# Revalidation
     694msgctxt "admin.Settings_Cache_Revalidate"
     695msgid "Title"
     696msgstr ""
     697
     698# HTML
     699msgctxt "admin.Settings_Html"
     700msgid "Title"
     701msgstr ""
     702
     703# Images
     704msgctxt "admin.Settings_Images"
     705msgid "Title"
     706msgstr ""
     707
     708# The file '%1$s' is not writable. Please, make it writable.
     709#, php-format
     710msgctxt "admin.Notice"
     711msgid "TmpFileNotWrittable_%1$s"
     712msgstr ""
     713
     714# Enable WebP with %1$squality
     715#, php-format
     716msgctxt "admin.Settings_Images_Compr"
     717msgid "WebpChk_%1$s"
     718msgstr ""
     719
     720# The WordPress cache system is not active. Please, <strong>save the plugin settings</strong> to activate it.
     721msgctxt "admin.Notice"
     722msgid "WpCacheNotActive"
     723msgstr ""
     724
    510725# Manager
    511726msgctxt "admin.Manage"
     
    9861201msgstr ""
    9871202
    988 # Revalidation
    989 msgctxt "admin.Settings_Cache_Revalidate"
    990 msgid "Title"
    991 msgstr ""
    992 
    9931203# Browser cache
    9941204msgctxt "admin.Settings_CacheBrowser"
     
    10261236msgstr ""
    10271237
    1028 # HTML
    1029 msgctxt "admin.Settings_Html"
    1030 msgid "Title"
    1031 msgstr ""
    1032 
    1033 # Images
    1034 msgctxt "admin.Settings_Images"
    1035 msgid "Title"
    1036 msgstr ""
    1037 
    10381238# Videos, frames and content parts
    10391239msgctxt "admin.Settings_Frames"
     
    10611261msgstr ""
    10621262
    1063 # Advanced
    1064 msgctxt "admin.Settings_Advanced"
    1065 msgid "Title"
    1066 msgstr ""
    1067 
    10681263# <strong>Basic</strong>
    10691264msgctxt "admin.Settings_Nav"
     
    12851480msgstr ""
    12861481
    1287 # Processing
    1288 msgctxt "admin.Settings_Cache_Revalidate_Proc"
    1289 msgid "Lbl"
    1290 msgstr ""
    1291 
    12921482# Maximum number of parallel processing: %1$s pages(s)
    12931483#, php-format
     
    19382128msgstr ""
    19392129
    1940 # Advanced by 'Tidy'
    1941 msgctxt "admin.Settings_Html_Fix"
    1942 msgid "TidyChk"
    1943 msgstr ""
    1944 
    19452130# Cleanup
    19462131msgctxt "admin.Settings_Html_Cln"
     
    21002285msgstr ""
    21012286
    2102 # Alternative redirection
    2103 msgctxt "admin.Settings_Images_Compr"
    2104 msgid "RedirOwnChk"
    2105 msgstr ""
    2106 
    21072287# Excludes:
    21082288msgctxt "admin.Settings_Common"
     
    21152295msgstr ""
    21162296
    2117 # Compression
    2118 msgctxt "admin.Settings_Images_Compr"
    2119 msgid "Lbl"
    2120 msgstr ""
    2121 
    2122 # Enable WebP with %1$squality
    2123 #, php-format
    2124 msgctxt "admin.Settings_Images_Compr"
    2125 msgid "WebpChk_%1$s"
    2126 msgstr ""
    2127 
    21282297# Auto-redirection to WebP version
    21292298msgctxt "admin.Settings_Images_Compr"
     
    21312300msgstr ""
    21322301
    2133 # Enable Avif with %1$squality and %2$sspeed
    2134 #, php-format
    2135 msgctxt "admin.Settings_Images_Compr"
    2136 msgid "AvifChk_%1$s%2$s"
    2137 msgstr ""
    2138 
    21392302# Auto-redirection to Avif version
    21402303msgctxt "admin.Settings_Images_Compr"
     
    21472310msgstr ""
    21482311
    2149 # Adaptation to screen sizes
    2150 msgctxt "admin.Settings_Images_Adapt"
    2151 msgid "Lbl"
    2152 msgstr ""
    2153 
    21542312# Ordinary images
    21552313msgctxt "admin.Settings_Images_Adapt"
     
    23642522msgstr ""
    23652523
     2524# Countdown Widget of Elementor
    23662525msgctxt "admin.Settings_Frames_ContParts"
    23672526msgid "ElmntrWdgtCntdwnChk"
     
    33833542msgstr ""
    33843543
    3385 # General
    3386 msgctxt "admin.Settings_Advanced_Common"
    3387 msgid "Lbl"
    3388 msgstr ""
    3389 
    33903544# Enable default WordPress emoji icons
    33913545msgctxt "admin.Settings_Advanced_Common"
     
    34773631msgstr ""
    34783632
    3479 # Task scheduler (Cron)
    3480 msgctxt "admin.Settings_Advanced_Cron"
    3481 msgid "Lbl"
    3482 msgstr ""
    3483 
    34843633# Enable
    34853634msgctxt "admin.Settings_Advanced_Cron"
     
    34923641msgstr ""
    34933642
    3494 # Use for asynchronous tasks execution
    3495 msgctxt "admin.Settings_Advanced_Cron"
    3496 msgid "AsyncUseCronChk"
    3497 msgstr ""
    3498 
    34993643# Debug
    35003644msgctxt "admin.Settings_Advanced_Debug"
     
    35813725msgstr ""
    35823726
    3583 # After the settings will been changed, please, don't forget to update the cache %1$shere%2$s.
    3584 #, php-format
    35853727msgctxt "admin.Notice"
    3586 msgid "RemindRefreshCache_%1$s%2$s"
    3587 msgstr ""
    3588 
    3589 # The cache directory '%1$s' is not writtable or can't be created. Please, create it manually, <strong>make it writable</strong>, and save the plugin settings.
    3590 #, php-format
    3591 msgctxt "admin.Notice"
    3592 msgid "CacheDirNotWrittable_%1$s"
    3593 msgstr ""
    3594 
    3595 # The '%1$s' directory is not writable. It is needed to create a file '%2$s' in to that folder in order to work. Please, <strong>make it writable</strong> and save the plugin settings.
    3596 #, php-format
    3597 msgctxt "admin.Notice"
    3598 msgid "ContentDirNotWrittable_%1$s%2$s"
    3599 msgstr ""
    3600 
    3601 # The '%2$s' drop-in file in '%1$s' directory is not writable. Please, <strong>make it writable</strong> and save the plugin settings.
    3602 #, php-format
    3603 msgctxt "admin.Notice"
    3604 msgid "ContentDropinNotWrittable_%1$s%2$s"
    3605 msgstr ""
    3606 
    3607 # <p>Required content:</p>%1$s<p>Current content:</p>%2$s
    3608 #, php-format
    3609 msgctxt "admin.Notice"
    3610 msgid "ContentDropinNotMatchEx_%1$s%2$s"
    3611 msgstr ""
    3612 
    3613 # The '%2$s' drop-in file in '%1$s' directory has wrong content. Please, <strong>save the plugin settings</strong> to correct it.
    3614 #, php-format
    3615 msgctxt "admin.Notice"
    3616 msgid "ContentDropinNotMatch_%1$s%2$s"
    3617 msgstr ""
    3618 
    3619 # The '%2$s' drop-in file in '%1$s' directory is not loaded. It looks like it's some kind of special hosting or site setup.
    3620 #, php-format
    3621 msgctxt "admin.Notice"
    3622 msgid "ContentDropinNotLoaded_%1$s%2$s"
    3623 msgstr ""
    3624 
    3625 # The configuration file '%1$s' is not writable. Please, make it writable and save the plugin settings.
    3626 #, php-format
    3627 msgctxt "admin.Notice"
    3628 msgid "ConfigFileNotWrittable_%1$s"
    3629 msgstr ""
    3630 
    3631 # The WordPress cache system is not active. Please, <strong>save the plugin settings</strong> to activate it.
    3632 msgctxt "admin.Notice"
    3633 msgid "WpCacheNotActive"
    3634 msgstr ""
    3635 
    3636 # PHP '%1$s' extension at least %2$s version must be active to work correctly. Please, enable it at hosting's PHP settings.
    3637 #, php-format
    3638 msgctxt "admin.Notice"
    3639 msgid "PhpBrotliNotActive_%1$s%2$s"
    3640 msgstr ""
    3641 
    3642 # The file '%1$s' is not writable. Please, make it writable.
    3643 #, php-format
    3644 msgctxt "admin.Notice"
    3645 msgid "TmpFileNotWrittable_%1$s"
    3646 msgstr ""
    3647 
    3648 # PHP '%1$s' extension must be active to work correctly. Please, enable it at hosting's PHP settings.
    3649 #, php-format
    3650 msgctxt "admin.Notice"
    3651 msgid "PhpExtNotActive_%1$s"
    3652 msgstr ""
    3653 
    3654 # '%2$s' function requres PHP '%1$s' extension to work correctly. But, <strong>if the site has wellformed HTML</strong> this function is not necessary and can be just turned off in the '%3$s' group. Otherwise, please, enable '%1$s' extension at hosting's PHP settings.
    3655 #, php-format
    3656 msgctxt "admin.Notice"
    3657 msgid "PhpTidyNotActive_%1$s%2$s%3$s"
    3658 msgstr ""
    3659 
    3660 # '%2$s' function requres PHP '%1$s' extension to work correctly. If this function is not needed it can be just turned off in the '%3$s' group. Otherwise, please, enable '%1$s' extension at hosting's PHP settings.
    3661 #, php-format
    3662 msgctxt "admin.Notice"
    3663 msgid "PhpGdNotActive_%1$s%2$s%3$s"
    3664 msgstr ""
    3665 
    3666 # A conflicting setting has been detected that is preventing correct working. The <strong>'%2$s' should be turned off</strong> in '%1$s''s settings.
    3667 #, php-format
    3668 msgctxt "admin.Notice"
    3669 msgid "3rdSett_ConflictSoft_%1$s%2$s"
    3670 msgstr ""
    3671 
    3672 # A conflicting module has been detected that is preventing correct working. The <strong>'%1$s' should be disabled</strong>.
    3673 #, php-format
    3674 msgctxt "admin.Notice"
    3675 msgid "3rdMdl_Conflict_%1$s"
    3676 msgstr ""
    3677 
    3678 # A conflicting setting has been detected that is preventing correct working. The <strong>'%1$s' should be disabled</strong> or <strong>'%2$s' should be turned off</strong> in it's settings.
    3679 #, php-format
    3680 msgctxt "admin.Notice"
    3681 msgid "3rdSett_Conflict_%1$s%2$s"
    3682 msgstr ""
    3683 
    3684 # A requred module is missing. The <strong>'%1$s' should be enabled</strong>.
    3685 #, php-format
    3686 msgctxt "admin.Notice"
    3687 msgid "3rdMdl_ConflictOff_%1$s"
    3688 msgstr ""
    3689 
    3690 # A conflicting setting has been detected that is preventing correct working. The <strong>'%2$s' should be turned off</strong> in '%1$s' settings.
    3691 #, php-format
    3692 msgctxt "admin.SelfDiag"
    3693 msgid "3rdExtSett_Conflict_%1$s%2$s"
    3694 msgstr ""
    3695 
    3696 # The <strong>'%2$s'</strong> in '%1$s' settings might decrease the site's loading speed.
    3697 #, php-format
    3698 msgctxt "admin.SelfDiag"
    3699 msgid "3rdExtSett_SpeedDecr_%1$s%2$s"
    3700 msgstr ""
    3701 
    3702 # Images' auto-redirection to '%3$s' is not active. Please, find %1$show to enable it%2$s or try turn on the <strong>%5$s</strong> mode. If all previous steps are unsuccessful you can just turn off the <strong>%4$s</strong> option.
    3703 #, php-format
    3704 msgctxt "admin.Notice"
    3705 msgid "ImgConvRedir_NotActive_%1$s%2$s%3$s%4$s%5$s"
    3706 msgstr ""
    3707 
    3708 # Images' compression to '%3$s' is not supported on current hosting configuration. Please, find %1$show to enable it%2$s or just turn off the <strong>%4$s</strong> option.
    3709 #, php-format
    3710 msgctxt "admin.Notice"
    3711 msgid "ImgConv_NotSupp_%1$s%2$s%3$s%4$s"
    3712 msgstr ""
    3713 
    3714 # Images' compression to '%3$s' doesn't work: %5$s. Please, find %1$show to fix it%2$s or just turn off the <strong>%4$s</strong> option.
    3715 #, php-format
    3716 msgctxt "admin.Notice"
    3717 msgid "ImgConv_NotWork_%1$s%2$s%3$s%4$s%5$s"
    3718 msgstr ""
    3719 
    3720 # Asset's loading of '%1$s' type has bad compression. Please, check the hosting's settings.
    3721 #, php-format
    3722 msgctxt "admin.Notice"
    3723 msgid "AssetCompr_Bad_%1$s"
    3724 msgstr ""
     3728msgid "WpSaltNotDefined"
     3729msgstr ""
  • seraphinite-accelerator/trunk/languages/seraphinite-accelerator.pot

    r3307788 r3310682  
    77msgid ""
    88msgstr ""
    9 "Project-Id-Version: seraphinite-accelerator 2.27.30\n"
     9"Project-Id-Version: seraphinite-accelerator 2.27.31\n"
    1010"Report-Msgid-Bugs-To: [email protected]\n"
    1111"MIME-Version: 1.0\n"
  • seraphinite-accelerator/trunk/main.php

    r3307788 r3310682  
    4242function _AddMenus( $accepted = false )
    4343{
    44     add_menu_page( Plugin::GetPluginString( 'TitleLong' ), Plugin::GetNavMenuTitle(), 'manage_options', 'seraph_accel_manage',                                                                      $accepted ? 'seraph_accel\\_ManagePage' : 'seraph_accel\\Plugin::OutputNotAcceptedPageContent', Plugin::FileUri( 'icon.png?v=2.27.30', __FILE__ ) );
     44    add_menu_page( Plugin::GetPluginString( 'TitleLong' ), Plugin::GetNavMenuTitle(), 'manage_options', 'seraph_accel_manage',                                                                      $accepted ? 'seraph_accel\\_ManagePage' : 'seraph_accel\\Plugin::OutputNotAcceptedPageContent', Plugin::FileUri( 'icon.png?v=2.27.31', __FILE__ ) );
    4545    add_submenu_page( 'seraph_accel_manage', esc_html_x( 'Title', 'admin.Manage', 'seraphinite-accelerator' ), esc_html_x( 'Title', 'admin.Manage', 'seraphinite-accelerator' ), 'manage_options', 'seraph_accel_manage',   $accepted ? 'seraph_accel\\_ManagePage' : 'seraph_accel\\Plugin::OutputNotAcceptedPageContent' );
    4646    add_submenu_page( 'seraph_accel_manage', Wp::GetLocString( 'Settings' ), Wp::GetLocString( 'Settings' ), 'manage_options', 'seraph_accel_settings',                                     $accepted ? 'seraph_accel\\_SettingsPage' : 'seraph_accel\\Plugin::OutputNotAcceptedPageContent' );
     
    12721272{
    12731273    Plugin::CmnScripts( array( 'Cmn', 'Gen', 'Ui', 'Net', 'AdminUi' ) );
    1274     wp_register_script( Plugin::ScriptId( 'Admin' ), add_query_arg( Plugin::GetFileUrlPackageParams(), Plugin::FileUrl( 'Admin.js', __FILE__ ) ), array_merge( array( 'jquery' ), Plugin::CmnScriptId( array( 'Cmn', 'Gen', 'Ui', 'Net' ) ) ), '2.27.30' );
     1274    wp_register_script( Plugin::ScriptId( 'Admin' ), add_query_arg( Plugin::GetFileUrlPackageParams(), Plugin::FileUrl( 'Admin.js', __FILE__ ) ), array_merge( array( 'jquery' ), Plugin::CmnScriptId( array( 'Cmn', 'Gen', 'Ui', 'Net' ) ) ), '2.27.31' );
    12751275    Plugin::Loc_ScriptLoad( Plugin::ScriptId( 'Admin' ) );
    12761276    wp_enqueue_script( Plugin::ScriptId( 'Admin' ) );
     
    15081508    $rmtCfg = PluginRmtCfg::Get();
    15091509
    1510     $urlLogoImg = add_query_arg( array( 'v' => '2.27.30' ), Plugin::FileUri( 'Images/hosting-icon-banner.svg', __FILE__ ) );
     1510    $urlLogoImg = add_query_arg( array( 'v' => '2.27.31' ), Plugin::FileUri( 'Images/hosting-icon-banner.svg', __FILE__ ) );
    15111511    $urlMoreInfo = Plugin::RmtCfgFld_GetLoc( $rmtCfg, 'Links.UrlHostingInfo' );
    15121512
  • seraphinite-accelerator/trunk/oper.php

    r3307788 r3310682  
    12081208    foreach( $viewId === null ? array( 'cmn' ) : $viewId as $viewIdI )
    12091209        if( CacheOpViewsHeadersGetViewId( $viewIdI ) == 'cmn' )
    1210             $res[ $viewIdI ] = array( 'User-Agent' => 'Mozilla/99999.9 AppleWebKit/9999999.99 (KHTML, like Gecko) Chrome/999999.0.9999.99 Safari/9999999.99 seraph-accel-Agent/2.27.30' );
     1210            $res[ $viewIdI ] = array( 'User-Agent' => 'Mozilla/99999.9 AppleWebKit/9999999.99 (KHTML, like Gecko) Chrome/999999.0.9999.99 Safari/9999999.99 seraph-accel-Agent/2.27.31' );
    12111211
    12121212    if( ($settCache[ 'views' ]??null) )
  • seraphinite-accelerator/trunk/options.php

    r3307788 r3310682  
    142142
    143143    Plugin::CmnScripts( array( 'Cmn', 'Gen', 'Ui', 'Net', 'AdminUi' ) );
    144     wp_register_script( Plugin::ScriptId( 'Admin' ), add_query_arg( Plugin::GetFileUrlPackageParams(), Plugin::FileUrl( 'Admin.js', __FILE__ ) ), array_merge( array( 'jquery' ), Plugin::CmnScriptId( array( 'Cmn', 'Gen', 'Ui', 'Net' ) ) ), '2.27.30' );
     144    wp_register_script( Plugin::ScriptId( 'Admin' ), add_query_arg( Plugin::GetFileUrlPackageParams(), Plugin::FileUrl( 'Admin.js', __FILE__ ) ), array_merge( array( 'jquery' ), Plugin::CmnScriptId( array( 'Cmn', 'Gen', 'Ui', 'Net' ) ) ), '2.27.31' );
    145145    Plugin::Loc_ScriptLoad( Plugin::ScriptId( 'Admin' ) );
    146146    wp_enqueue_script( Plugin::ScriptId( 'Admin' ) );
  • seraphinite-accelerator/trunk/plugin_root.php

    r3307788 r3310682  
    66Text Domain: seraphinite-accelerator
    77Domain Path: /languages
    8 Version: 2.27.30
     8Version: 2.27.31
    99Author: Seraphinite Solutions
    1010Author URI: https://www.s-sols.com
  • seraphinite-accelerator/trunk/readme.txt

    r3307788 r3310682  
    66Requires at least: 4.5
    77Tested up to: 6.8
    8 Stable tag: 2.27.30
     8Stable tag: 2.27.31
    99License: GPLv2 or later (if another license is not provided)
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    163163== Changelog ==
    164164
     165= 2.27.31 =
     166
     167Improvements:
     168
     169* Preventing random content to avoid cache growing: XStore Theme.
     170* Sticky elements from Divi.
     171* Warning about missed SALT in WordPress configuration.
     172
    165173= 2.27.30 =
    166174
  • seraphinite-accelerator/trunk/tune.php

    r3307788 r3310682  
    6060            }
    6161        }
     62
     63        if( !GetSalt() )
     64            call_user_func_array( $cb, array( Ui::MsgErr, Wp::safe_html_x( 'WpSaltNotDefined', 'admin.Notice', 'seraphinite-accelerator' ) ) );
    6265
    6366        if( ( in_array( 'br', Gen::GetArrField( $sett, 'cache/encs', array(), '/' ) ) || in_array( 'brotli', Gen::GetArrField( $sett, 'cache/dataCompr', array(), '/' ) ) ) && @version_compare( @phpversion( 'brotli' ), '0.1.0' ) === -1 )
Note: See TracChangeset for help on using the changeset viewer.