From 516e6191a6531e21cc9c8753993163113f80db8b Mon Sep 17 00:00:00 2001 From: renzms Date: Thu, 14 Apr 2016 10:20:47 +0800 Subject: [PATCH 01/29] Enable Comet Cache to clear cache for Custom Term Archive Views by default; see websharks/commet-cache#693 --- src/includes/classes/Plugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/includes/classes/Plugin.php b/src/includes/classes/Plugin.php index 2d3bc711..fb228d28 100644 --- a/src/includes/classes/Plugin.php +++ b/src/includes/classes/Plugin.php @@ -348,7 +348,7 @@ public function setup() 'cache_clear_term_category_enable' => '1', // `0|1`. 'cache_clear_term_post_tag_enable' => '1', // `0|1`. - 'cache_clear_term_other_enable' => '0', // `0|1`. + 'cache_clear_term_other_enable' => '1', // `0|1`. /* Misc. cache behaviors. */ From f22e7ba9d3fb7c47a38d9e416492a82f599487ca Mon Sep 17 00:00:00 2001 From: Raam Dev Date: Thu, 14 Apr 2016 21:37:17 -0400 Subject: [PATCH 02/29] Version upgrade routine to reset default cache_clear_term_other_enable See websharks/comet-cache#693 --- src/includes/classes/VsUpgrades.php | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/includes/classes/VsUpgrades.php b/src/includes/classes/VsUpgrades.php index d3d80ed2..c040cad6 100644 --- a/src/includes/classes/VsUpgrades.php +++ b/src/includes/classes/VsUpgrades.php @@ -41,6 +41,7 @@ protected function runHandlers() $this->fromLte151107(); $this->fromLte151114(); $this->fromZenCache(); + $this->fromLte160227(); } /** @@ -204,4 +205,22 @@ protected function fromZenCache() ); } } + + /** + * Before we enabled "Auto-Clear Custom Term Archive Views" by default. + * + * @since 16xxxx + */ + protected function fromLte160227() + { + if (version_compare($this->prev_version, '160227', '<=')) { + if (is_array($existing_options = get_site_option(GLOBAL_NS.'_options'))) { + $this->plugin->options['cache_clear_term_other_enable'] = $this->plugin->default_options['cache_clear_term_other_enable']; + if ($this->plugin->options !== $existing_options) { + $this->plugin->updateOptions($this->plugin->options); // Save/update options. + $this->plugin->activate(); // Reactivate plugin w/ new options. + } + } + } + } } From bdcaccef4eb4a255261f3cf2266c4066aaea21d9 Mon Sep 17 00:00:00 2001 From: Raam Dev Date: Sun, 17 Apr 2016 17:09:39 -0400 Subject: [PATCH 03/29] Update changelog. --- CHANGELOG.md | 4 ++++ readme.txt | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f4d8b9b3..79d0043c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ += v160417 = + +- **Bug Fix**: Fixed a "PHP Fatal error: Undefined class constant 'CACHE_PATH_NO_SCHEME'" introduced by the previous release (v160416). This issue only affected sites where Feed Caching was enabled (_Comet Cache → Plugin Options → RSS, RDF, and Atom Feeds_). Props to MassimoD and @emanwebdev for reporting. See [Issue #739](https://github.com/websharks/comet-cache/issues/739). + = v160416 = - **Enhancement**: Several PHP 5.4+ enhancements, most notably a conversion from PHP Closures to PHP Traits. See [Issue #635](https://github.com/websharks/comet-cache/issues/635). diff --git a/readme.txt b/readme.txt index ee349118..dda322f6 100644 --- a/readme.txt +++ b/readme.txt @@ -338,7 +338,7 @@ Requires WordPress v4.2+. = v160417 = -- **Bug Fix**: Fixed a "PHP Fatal error: Undefined class constant 'CACHE_PATH_NO_SCHEME'" with introduced by the previous release (v160416). This issue only affected sites where Feed Caching was enabled (_Comet Cache → Plugin Options → RSS, RDF, and Atom Feeds_). Props to MassimoD and @emanwebdev for reporting. See [Issue #739](https://github.com/websharks/comet-cache/issues/739). +- **Bug Fix**: Fixed a "PHP Fatal error: Undefined class constant 'CACHE_PATH_NO_SCHEME'" introduced by the previous release (v160416). This issue only affected sites where Feed Caching was enabled (_Comet Cache → Plugin Options → RSS, RDF, and Atom Feeds_). Props to MassimoD and @emanwebdev for reporting. See [Issue #739](https://github.com/websharks/comet-cache/issues/739). = v160416 = From 7366c4f252e0a338cae0ea476e5250e773d2d6c7 Mon Sep 17 00:00:00 2001 From: Raam Dev Date: Mon, 18 Apr 2016 09:32:03 -0400 Subject: [PATCH 04/29] Add Travis build status badge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 287d986e..efc28a3e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -## Comet Cache Pro +## Comet Cache Pro [![Build Status](https://travis-ci.org/websharks/comet-cache-pro.svg?branch=000000-dev)](https://travis-ci.org/websharks/comet-cache-pro) Caching plugin for WordPress®. From 3ad4ade9c172a3c247a7123a9580bbea6662140f Mon Sep 17 00:00:00 2001 From: Raam Dev Date: Mon, 18 Apr 2016 10:48:05 -0400 Subject: [PATCH 05/29] Update to Phings v160418 --- phings | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phings b/phings index 1b75e4ed..63ba684a 160000 --- a/phings +++ b/phings @@ -1 +1 @@ -Subproject commit 1b75e4ed1ab89e504b7e0709547ae1aa940daab5 +Subproject commit 63ba684aef99bb87711518d71a6221161eba1291 From 2f0825a56b430d2011124945c9775d1b08c35fcf Mon Sep 17 00:00:00 2001 From: renzms Date: Mon, 18 Apr 2016 23:21:45 +0800 Subject: [PATCH 06/29] Add UI to enable Admin Bar while Logged-In User caching is enabled; see: websharks/comet-cache#690 --- src/includes/classes/MenuPageOptions.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/includes/classes/MenuPageOptions.php b/src/includes/classes/MenuPageOptions.php index 03d896c9..b3857d5c 100644 --- a/src/includes/classes/MenuPageOptions.php +++ b/src/includes/classes/MenuPageOptions.php @@ -615,8 +615,23 @@ public function __construct() echo ' '."\n"; echo '

'."\n"; echo '

'.__('Note: Static CDN Filters serve static resources. Static resources, are, simply put, static. Thus, it is not a problem to cache these resources for any visitor (logged-in or not logged-in). To avoid confusion, this defaults to a value of No, and we ask that you set it to Yes on your own so that you\'ll know to expect this behavior; i.e., that static resources will always be served from the CDN (logged-in or not logged-in) even though Logged-In User caching may be disabled above.', SLUG_TD).'

'."\n"; + echo '
'."\n"; + echo '

'.__('Enable the Admin Bar for Logged-In Users & Comment Authors?', SLUG_TD).'

'."\n"; + echo '

'.__('When Logged-In User caching is enabled, Comet Cache will automatically disable the WordPress Admin Bar for logged-in users (on the front-end of the site). This option allows you to override this and turn back on the Admin Bar when Logged-In User caching is enabled.).', SLUG_TD).'

'."\n"; + echo '

'."\n"; + if ($this->plugin->options['when_logged_in'] === '1' && $this->plugin->applyWpFilters(GLOBAL_NS.'_when_logged_in_no_admin_bar', true)) { + echo '

'.sprintf(__('Warning: Whenever you enable caching for logged-in users (without a separate cache for each user), the WordPress Admin Bar must be disabled to prevent one user from seeing another user\'s details in the Admin Bar. Given your current configuration, %1$s will automatically hide the WordPress Admin Bar on the front-end of your site.', SLUG_TD), esc_html(NAME)).'

'."\n"; + } + echo '

'.__('Note: If you are enabling the WordPress Admin Bar for logged-in users, and are allowing Nonce caching using COMET_CACHE_CACHE_NONCE_VALUES_WHEN_LOGGED_IN;, please see this article.', SLUG_TD).'

'."\n"; echo ' '."\n"; + echo ''."\n"; } /* ----------------------------------------------------------------------------------------- */ From 2ef529bfe65a278ab8800fa470966e5b066b36a7 Mon Sep 17 00:00:00 2001 From: renzms Date: Sun, 24 Apr 2016 01:52:01 +0800 Subject: [PATCH 07/29] Updates for Adding UI to enable Admin Bar while logged-in; see websharks/comet-cache#690 --- src/includes/classes/MenuPageOptions.php | 15 ++++++--------- src/includes/classes/Plugin.php | 4 ++++ src/includes/templates/advanced-cache.txt | 12 ++++++++++++ 3 files changed, 22 insertions(+), 9 deletions(-) diff --git a/src/includes/classes/MenuPageOptions.php b/src/includes/classes/MenuPageOptions.php index b3857d5c..93647525 100644 --- a/src/includes/classes/MenuPageOptions.php +++ b/src/includes/classes/MenuPageOptions.php @@ -618,15 +618,12 @@ public function __construct() echo '
'."\n"; echo '

'.__('Enable the Admin Bar for Logged-In Users & Comment Authors?', SLUG_TD).'

'."\n"; echo '

'.__('When Logged-In User caching is enabled, Comet Cache will automatically disable the WordPress Admin Bar for logged-in users (on the front-end of the site). This option allows you to override this and turn back on the Admin Bar when Logged-In User caching is enabled.).', SLUG_TD).'

'."\n"; - echo '

'."\n"; - if ($this->plugin->options['when_logged_in'] === '1' && $this->plugin->applyWpFilters(GLOBAL_NS.'_when_logged_in_no_admin_bar', true)) { - echo '

'.sprintf(__('Warning: Whenever you enable caching for logged-in users (without a separate cache for each user), the WordPress Admin Bar must be disabled to prevent one user from seeing another user\'s details in the Admin Bar. Given your current configuration, %1$s will automatically hide the WordPress Admin Bar on the front-end of your site.', SLUG_TD), esc_html(NAME)).'

'."\n"; + echo '

'."\n"; - echo ' '."\n"; - echo ' '."\n"; + echo '

'."\n"; - echo ' '."\n"; - echo ' '."\n"; + echo ' '."\n"; + echo ' '."\n"; + echo '

'."\n"; - if ($this->plugin->options['when_logged_in_admin_bar'] === '0' && $this->plugin->applyWpFilters(GLOBAL_NS.'_when_logged_in_no_admin_bar', true)) { - echo '

'.sprintf(__('Warning: Whenever you enable caching for logged-in users (without a separate cache for each user), the WordPress Admin Bar must be disabled to prevent one user from seeing another user\'s details in the Admin Bar. Given your current configuration, %1$s will automatically hide the WordPress Admin Bar on the front-end of your site.', SLUG_TD), esc_html(NAME)).'

'."\n"; - } echo '

'.__('Note: If you are enabling the WordPress Admin Bar for logged-in users, and are allowing Nonce caching using COMET_CACHE_CACHE_NONCE_VALUES_WHEN_LOGGED_IN;, please see this article.', SLUG_TD).'

'."\n"; echo ' '."\n"; - echo ''."\n"; } /* ----------------------------------------------------------------------------------------- */ diff --git a/src/includes/classes/Plugin.php b/src/includes/classes/Plugin.php index f8be133a..6e9f86ec 100644 --- a/src/includes/classes/Plugin.php +++ b/src/includes/classes/Plugin.php @@ -575,7 +575,7 @@ public function setup() } /*[pro strip-from="lite"]*/ - if ($this->options['when_logged_in'] === '1' && $this->applyWpFilters(GLOBAL_NS.'_when_logged_in_no_admin_bar', true)) { + if ($this->options['when_logged_in'] && $this->applyWpFilters(GLOBAL_NS.'_when_logged_in_no_admin_bar', true)) { show_admin_bar(false); // Prevent admin bar from being cached. } /*[/pro]*/ From e88f3284c988287a476fd962ad9ca27f0ffdee96 Mon Sep 17 00:00:00 2001 From: Raam Dev Date: Fri, 13 May 2016 18:06:15 -0400 Subject: [PATCH 23/29] Remove COMET_CACHE_WHEN_LOGGED_IN_ADMIN_BAR from advanced-cache.txt This is not used and not necessary. See websharks/comet-cache#690 --- src/includes/templates/advanced-cache.txt | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/includes/templates/advanced-cache.txt b/src/includes/templates/advanced-cache.txt index 9581f164..4489feaa 100644 --- a/src/includes/templates/advanced-cache.txt +++ b/src/includes/templates/advanced-cache.txt @@ -143,18 +143,6 @@ if (!defined('COMET_CACHE_WHEN_LOGGED_IN')) { define('COMET_CACHE_WHEN_LOGGED_IN', '%%COMET_CACHE_WHEN_LOGGED_IN%%'); } /*[/pro]*/ -/*[pro strip-from="lite"]*/ -if (!defined('COMET_CACHE_WHEN_LOGGED_IN_ADMIN_BAR')) { - /** - * Enable Admin Bar when caching for logged-in users is enabled? - * - * @since 160xxx First documented version. - * - * @var string|integer|boolean A boolean-ish value; e.g. `1` or `0`. - */ - define('COMET_CACHE_WHEN_LOGGED_IN_ADMIN_BAR', '%%COMET_CACHE_WHEN_LOGGED_IN_ADMIN_BAR%%'); -} -/*[/pro]*/ if (!defined('COMET_CACHE_DIR')) { /** * Directory used to store cache files; relative to `WP_CONTENT_DIR`. From 45205d71d47f67247ceb981e95ddf487cee1e270 Mon Sep 17 00:00:00 2001 From: Raam Dev Date: Fri, 13 May 2016 18:07:03 -0400 Subject: [PATCH 24/29] Disable the admin bar by default when logged-in user caching enabled Disabled is the recommended setting, so we should default to disabled. See websharks/comet-cache#690 --- src/includes/classes/Plugin.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/includes/classes/Plugin.php b/src/includes/classes/Plugin.php index 6e9f86ec..6980ea3d 100644 --- a/src/includes/classes/Plugin.php +++ b/src/includes/classes/Plugin.php @@ -392,7 +392,7 @@ public function setup() 'htmlc_when_logged_in' => '0', // `0|1`; enable when logged in? /* Related to Logged-In User Caching */ - 'when_logged_in_admin_bar' => '1', // `0|1`; enable when logged in? + 'when_logged_in_admin_bar' => '0', // `0|1`; enable when logged in? /* Related to auto-cache engine. */ @@ -575,7 +575,7 @@ public function setup() } /*[pro strip-from="lite"]*/ - if ($this->options['when_logged_in'] && $this->applyWpFilters(GLOBAL_NS.'_when_logged_in_no_admin_bar', true)) { + if ($this->options['when_logged_in'] && !$this->options['when_logged_in_admin_bar'] && $this->applyWpFilters(GLOBAL_NS.'_when_logged_in_no_admin_bar', true)) { show_admin_bar(false); // Prevent admin bar from being cached. } /*[/pro]*/ From 12e27feea330a7199fbf0169658652c6463511bb Mon Sep 17 00:00:00 2001 From: Raam Dev Date: Fri, 13 May 2016 18:16:47 -0400 Subject: [PATCH 25/29] Improve wording for new Admin Toolbar option for Logged-In User Caching See websharks/comet-cache#690 --- src/includes/classes/MenuPageOptions.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/includes/classes/MenuPageOptions.php b/src/includes/classes/MenuPageOptions.php index 47fae7d3..7430cab7 100644 --- a/src/includes/classes/MenuPageOptions.php +++ b/src/includes/classes/MenuPageOptions.php @@ -616,14 +616,14 @@ public function __construct() echo '

'."\n"; echo '

'.__('Note: Static CDN Filters serve static resources. Static resources, are, simply put, static. Thus, it is not a problem to cache these resources for any visitor (logged-in or not logged-in). To avoid confusion, this defaults to a value of No, and we ask that you set it to Yes on your own so that you\'ll know to expect this behavior; i.e., that static resources will always be served from the CDN (logged-in or not logged-in) even though Logged-In User caching may be disabled above.', SLUG_TD).'

'."\n"; echo '
'."\n"; - echo '

'.__('Enable the Admin Bar for Logged-In Users & Comment Authors?', SLUG_TD).'

'."\n"; - echo '

'.__('When Logged-In User caching is enabled, Comet Cache will automatically disable the WordPress Admin Bar for logged-in users (on the front-end of the site). This option allows you to override this and turn back on the Admin Bar when Logged-In User caching is enabled.).', SLUG_TD).'

'."\n"; + echo '

'.__('Enable the Admin Toolbar for Logged-In Users & Comment Authors?', SLUG_TD).'

'."\n"; + echo '

'.__('When Logged-In User caching is enabled above, Comet Cache will automatically disable the WordPress Admin Toolbar for logged-in users (on the front-end of the site) because the Toolbar is generally NOT cache-compatible. If you want to enable the Toolbar for logged-in users anyway, you can do that below.', SLUG_TD).'

'."\n"; echo '

'."\n"; - echo '

'.__('Note: If you are enabling the WordPress Admin Bar for logged-in users, and are allowing Nonce caching using COMET_CACHE_CACHE_NONCE_VALUES_WHEN_LOGGED_IN;, please see this article.', SLUG_TD).'

'."\n"; + echo '

'.__('Note: Enabling the Toolbar for logged-in users will cause WordPress Nonce values to appear in the page source; nonce values are generally NOT cache-compatible. Please see this article for details.', SLUG_TD).'

'."\n"; echo ' '."\n"; echo ''."\n"; From 28d03985b816b51452f7eda2680d33b526b1d9a1 Mon Sep 17 00:00:00 2001 From: Raam Dev Date: Fri, 13 May 2016 19:47:19 -0400 Subject: [PATCH 26/29] Releasing Comet Cache v160514-RC --- comet-cache-pro.php | 2 +- readme.txt | 2 +- src/includes/stub.php | 2 +- src/includes/translations/comet-cache-pro.pot | 2918 +++++++++++++---- 4 files changed, 2304 insertions(+), 620 deletions(-) diff --git a/comet-cache-pro.php b/comet-cache-pro.php index 1379e73d..c32d00aa 100644 --- a/comet-cache-pro.php +++ b/comet-cache-pro.php @@ -1,6 +1,6 @@ \n" "Language-Team: LANGUAGE \n" +#: .~build/comet-cache/.~build/comet-cache/plugin.php:17 +#: .~build/comet-cache/plugin.php:17 .~build/comet-cache-pro/plugin.php:17 #: plugin.php:17 msgid "NOTICE: Comet Cache Minimum PHP Version" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/plugin.php:18 +#: .~build/comet-cache/plugin.php:18 .~build/comet-cache-pro/plugin.php:18 #: plugin.php:18 msgid "As of December 1st, 2015 Comet Cache requires PHP 5.4 or higher. Your server is currently running PHP v%1$s. You will need to upgrade to PHP 5.4 or higher to run this version of Comet Cache." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/plugin.php:19 +#: .~build/comet-cache/plugin.php:19 .~build/comet-cache-pro/plugin.php:19 #: plugin.php:19 msgid "Learn more about this change here: New Minimum PHP Version: PHP 5.4" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/plugin.php:21 +#: .~build/comet-cache/plugin.php:21 .~build/comet-cache-pro/plugin.php:21 #: plugin.php:21 msgid "Your server is also running the outdated PHP APC extension. Please see: PHP APC Extension No Longer Supported" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/plugin.php:41 +#: .~build/comet-cache/plugin.php:41 .~build/comet-cache-pro/plugin.php:41 #: plugin.php:41 msgid "NOTICE: Comet Cache + PHP APC Extension" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/plugin.php:42 +#: .~build/comet-cache/plugin.php:42 .~build/comet-cache-pro/plugin.php:42 #: plugin.php:42 msgid "As of December 1st, 2015 Comet Cache no longer runs with the outdated PHP APC extension. It appears that you're currently running PHP v%1$s with APC enabled. You will need to follow one of the actions below to run this version of Comet Cache." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/plugin.php:43 +#: .~build/comet-cache/plugin.php:43 .~build/comet-cache-pro/plugin.php:43 #: plugin.php:43 msgid "

Options Available (Action Required):

" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/plugin.php:45 +#: .~build/comet-cache/plugin.php:45 .~build/comet-cache-pro/plugin.php:45 #: plugin.php:45 msgid "Please add ini_set('apc.cache_by_default', false); to the top of your /wp-config.php file. That will get rid of this message and allow Comet Cache to run without issue." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/plugin.php:46 +#: .~build/comet-cache/plugin.php:46 .~build/comet-cache-pro/plugin.php:46 #: plugin.php:46 msgid "Or, contact your web hosting provider and ask about upgrading to PHP v5.5+; which includes the new OPcache extension for PHP. The new OPcache extension replaces APC in modern versions of PHP." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/plugin.php:48 +#: .~build/comet-cache/plugin.php:48 .~build/comet-cache-pro/plugin.php:48 #: plugin.php:48 msgid "To learn more about this change, please see the announcement: PHP APC Extension No Longer Supported" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/plugin.php:70 +#: .~build/comet-cache/plugin.php:70 .~build/comet-cache-pro/plugin.php:70 #: plugin.php:70 msgid "NOTICE: Comet Cache Will Require the PHP mbstring Extension" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/plugin.php:71 +#: .~build/comet-cache/plugin.php:71 .~build/comet-cache-pro/plugin.php:71 #: plugin.php:71 msgid "After March 1st, 2016 Comet Cache will require PHP Multibyte String support. It appears that your site is currently running PHP v%1$s without the mbstring extension enabled. You will need to contact your web hosting company and have them enable the PHP mbstring extension if you want to run the next version of Comet Cache." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/plugin.php:72 +#: .~build/comet-cache/plugin.php:72 .~build/comet-cache-pro/plugin.php:72 #: plugin.php:72 msgid "The mbstring extension provides Multibyte String support to PHP and is required to properly handle UTF-8 characters, which many sites now use. Without Multibyte String support, Comet Cache will be unstable. For that reason we are requiring the mbstring extension to improve reliablity when caching and to prevent your site from experiencing unforeseen issues in the future." msgstr "" -#: src/includes/classes/AbsBase.php:117 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/AbsBase.php:117 +#: .~build/comet-cache/src/includes/classes/AbsBase.php:117 +#: .~build/comet-cache-pro/src/includes/classes/AbsBase.php:119 +#: src/includes/classes/AbsBase.php:119 msgid "Undefined overload property: `%1$s`." msgstr "" -#: src/includes/classes/AbsBase.php:135 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/AbsBase.php:135 +#: .~build/comet-cache/src/includes/classes/AbsBase.php:135 +#: .~build/comet-cache-pro/src/includes/classes/AbsBase.php:137 +#: src/includes/classes/AbsBase.php:137 msgid "Refused to set overload property: `%1$s`." msgstr "" -#: src/includes/classes/AbsBase.php:152 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/AbsBase.php:152 +#: .~build/comet-cache/src/includes/classes/AbsBase.php:152 +#: .~build/comet-cache-pro/src/includes/classes/AbsBase.php:154 +#: src/includes/classes/AbsBase.php:154 msgid "Refused to unset overload property: `%1$s`." msgstr "" -#: src/includes/classes/AbsBaseAp.php:73 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/AbsBaseAp.php:73 +#: .~build/comet-cache/src/includes/classes/AbsBaseAp.php:73 +#: .~build/comet-cache-pro/src/includes/classes/AbsBaseAp.php:72 +#: src/includes/classes/AbsBaseAp.php:72 msgid "Undefined method/closure: `%1$s`." msgstr "" -#: src/includes/classes/Actions.php:169 -msgid "

Wiped a total of %2$s cache files.

" -msgstr "" - -#: src/includes/classes/Actions.php:170 -msgid "

Cache wiped for all sites. Recreation will occur automatically over time.

" -msgstr "" - -#: src/includes/classes/Actions.php:173 -msgid "

Also wiped %1$s OPcache keys.

" -msgstr "" - -#: src/includes/classes/Actions.php:176 -msgid "

Also wiped %1$s s2Clean cache files.

" -msgstr "" - -#: src/includes/classes/Actions.php:182 -msgid "

Also wiped CDN cache. Invalidation counter is now %1$s.

" -msgstr "" - -#: src/includes/classes/Actions.php:210 -msgid "

Cleared a total of %2$s cache files.

" -msgstr "" - -#: src/includes/classes/Actions.php:213 -msgid "

Cache cleared for main site. Recreation will occur automatically over time.

" -msgstr "" - -#: src/includes/classes/Actions.php:215 -msgid "

Cache cleared for this site. Recreation will occur automatically over time.

" -msgstr "" - -#: src/includes/classes/Actions.php:218 -msgid "

Also cleared %1$s OPcache keys.

" -msgstr "" - -#: src/includes/classes/Actions.php:221 -msgid "

Also cleared %1$s s2Clean cache files.

" -msgstr "" - -#: src/includes/classes/Actions.php:227 -msgid "

Also cleared CDN cache. Invalidation counter is now %1$s.

" -msgstr "" - -#: src/includes/classes/Actions.php:266 -msgid "

Home Page cache cleared successfully.

" -msgstr "" - -#: src/includes/classes/Actions.php:268 -msgid "

Cache cleared successfully.

" -msgstr "" - -#: src/includes/classes/Actions.php:270 -msgid "

URL: %1$s

" -msgstr "" - -#: src/includes/classes/Actions.php:273 -msgid "

Notice: The domain you entered did not match your WordPress Home URL.

" -msgstr "" - -#: src/includes/classes/Actions.php:297 -msgid "

Opcache successfully wiped.

" -msgstr "" - -#: src/includes/classes/Actions.php:298 -msgid "

Wiped out %1$s OPcache keys.

" -msgstr "" - -#: src/includes/classes/Actions.php:322 -msgid "

Opcache successfully cleared.

" -msgstr "" - -#: src/includes/classes/Actions.php:323 -msgid "

Cleared %1$s OPcache keys.

" -msgstr "" - -#: src/includes/classes/Actions.php:347 -msgid "

CDN cache successfully wiped.

" -msgstr "" - -#: src/includes/classes/Actions.php:348 src/includes/classes/Actions.php:373 -msgid "

The CDN cache invalidation counter is now: %1$s

" -msgstr "" - -#: src/includes/classes/Actions.php:372 -msgid "

CDN cache successfully cleared.

" -msgstr "" - -#: src/includes/classes/Actions.php:397 -msgid "

Expired transients wiped successfully.

" -msgstr "" - -#: src/includes/classes/Actions.php:398 -msgid "

Wiped %1$s expired transients.

" -msgstr "" - -#: src/includes/classes/Actions.php:422 -msgid "

Expired transients cleared successfully.

" -msgstr "" - -#: src/includes/classes/Actions.php:423 -msgid "

Cleared %1$s expired transients for this site.

" -msgstr "" - -#: src/includes/classes/Actions.php:778 -msgid "Unknown error. Please wait 15 minutes and try again." -msgstr "" - -#: src/includes/classes/AutoCache.php:184 -#: src/includes/classes/AutoCache.php:221 -msgid "Auto-cache log file is NOT writable: `%1$s`. Please set permissions to `644` (or higher). `666` might be needed in some cases." -msgstr "" - +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/Conflicts.php:91 +#: .~build/comet-cache/src/includes/classes/Conflicts.php:91 +#: .~build/comet-cache-pro/src/includes/classes/Conflicts.php:91 #: src/includes/classes/Conflicts.php:91 msgid "Pro" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/Conflicts.php:92 +#: .~build/comet-cache/src/includes/classes/Conflicts.php:92 +#: .~build/comet-cache-pro/src/includes/classes/Conflicts.php:92 #: src/includes/classes/Conflicts.php:92 msgid "Lite" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/Conflicts.php:97 +#: .~build/comet-cache/src/includes/classes/Conflicts.php:97 +#: .~build/comet-cache-pro/src/includes/classes/Conflicts.php:97 #: src/includes/classes/Conflicts.php:97 msgid "%1$s is NOT running. A conflicting plugin, %2$s, is currently active. Please deactivate the %2$s plugin to clear this message." msgstr "" -#: src/includes/classes/DirStats.php:514 src/includes/classes/DirStats.php:585 -#: src/includes/classes/DirStats.php:619 src/includes/classes/DirStats.php:692 -msgid "Unexpected data type." -msgstr "" - -#: src/includes/classes/DirStats.php:568 -#: src/includes/traits/Shared/CacheDirUtils.php:281 -msgid "Invalid argument; host token empty!" -msgstr "" - +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:30 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:30 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:30 #: src/includes/classes/MenuPageOptions.php:30 msgid "Wipe Cache (Start Fresh); clears the cache for all sites in this network at once!" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:32 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:32 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:32 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:102 #: src/includes/classes/MenuPageOptions.php:32 #: src/includes/traits/Plugin/AdminBarUtils.php:102 msgid "Wipe" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:34 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:34 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:34 #: src/includes/classes/MenuPageOptions.php:34 msgid "Clear Cache (Start Fresh)" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:34 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:34 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:34 #: src/includes/classes/MenuPageOptions.php:34 msgid "; affects the current site only." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:36 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:36 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:36 #: src/includes/classes/MenuPageOptions.php:36 msgid "Clear" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:39 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:39 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:39 #: src/includes/classes/MenuPageOptions.php:39 msgid "Restore default plugin options? You will lose all of your current settings! Are you absolutely sure about this?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:41 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:41 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:41 #: src/includes/classes/MenuPageOptions.php:41 msgid "Restore" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:43 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:43 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:43 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:31 #: src/includes/classes/MenuPageOptions.php:43 #: src/includes/classes/MenuPageProUpdater.php:31 msgid "All Panels" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:50 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:50 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:50 #: src/includes/classes/MenuPageOptions.php:50 msgid "Pro Updater" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:51 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:73 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:51 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:73 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:51 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:73 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:41 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:59 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:37 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:55 #: src/includes/classes/MenuPageOptions.php:51 #: src/includes/classes/MenuPageOptions.php:73 #: src/includes/classes/MenuPageProUpdater.php:41 @@ -262,6 +225,17 @@ msgstr "" msgid "Newsletter" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:52 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:74 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:52 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:74 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:52 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:74 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:42 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:60 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:148 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:38 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:56 #: src/includes/classes/MenuPageOptions.php:52 #: src/includes/classes/MenuPageOptions.php:74 #: src/includes/classes/MenuPageProUpdater.php:42 @@ -272,45 +246,87 @@ msgstr "" msgid "Beta Testers" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:55 +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:133 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:55 +#: .~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:133 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:55 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/MenuPageUtils.php:144 #: src/includes/classes/MenuPageOptions.php:55 #: src/includes/traits/Plugin/MenuPageUtils.php:144 msgid "Preview Pro Features" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:56 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:56 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:56 #: src/includes/classes/MenuPageOptions.php:56 msgid "Pro Upgrade" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:62 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:62 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:62 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:48 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:44 #: src/includes/classes/MenuPageOptions.php:62 #: src/includes/classes/MenuPageProUpdater.php:48 #: src/includes/classes/MenuPageStats.php:44 msgid "Support" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:65 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:65 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:65 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:51 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:47 #: src/includes/classes/MenuPageOptions.php:65 #: src/includes/classes/MenuPageProUpdater.php:51 #: src/includes/classes/MenuPageStats.php:47 msgid "Community Forum" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:67 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:67 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:67 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:53 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:49 #: src/includes/classes/MenuPageOptions.php:67 #: src/includes/classes/MenuPageProUpdater.php:53 #: src/includes/classes/MenuPageStats.php:49 msgid "Knowledge Base" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:68 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:68 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:68 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:54 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:50 #: src/includes/classes/MenuPageOptions.php:68 #: src/includes/classes/MenuPageProUpdater.php:54 #: src/includes/classes/MenuPageStats.php:50 msgid "Blog" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:80 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:80 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:80 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:66 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:62 #: src/includes/classes/MenuPageOptions.php:80 #: src/includes/classes/MenuPageProUpdater.php:66 #: src/includes/classes/MenuPageStats.php:62 msgid "%1$s™ Pro v%2$s" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:83 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:93 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:83 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:93 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:83 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:93 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:69 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:65 #: src/includes/classes/MenuPageOptions.php:83 #: src/includes/classes/MenuPageOptions.php:93 #: src/includes/classes/MenuPageProUpdater.php:69 @@ -318,6 +334,14 @@ msgstr "" msgid "update available" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:85 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:95 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:85 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:95 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:85 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:95 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:71 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:67 #: src/includes/classes/MenuPageOptions.php:85 #: src/includes/classes/MenuPageOptions.php:95 #: src/includes/classes/MenuPageProUpdater.php:71 @@ -325,1976 +349,3021 @@ msgstr "" msgid "changelog" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:90 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:90 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:90 #: src/includes/classes/MenuPageOptions.php:90 msgid "%1$s™ v%2$s" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:99 +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:84 +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:107 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:99 +#: .~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:84 +#: .~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:107 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:99 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/MenuPageUtils.php:84 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/MenuPageUtils.php:113 #: src/includes/classes/MenuPageOptions.php:99 #: src/includes/traits/Plugin/MenuPageUtils.php:84 #: src/includes/traits/Plugin/MenuPageUtils.php:113 msgid "Plugin Options" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:113 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:113 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:113 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:89 #: src/includes/classes/MenuPageOptions.php:113 #: src/includes/classes/MenuPageProUpdater.php:89 msgid "Options updated successfully." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:118 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:118 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:118 #: src/includes/classes/MenuPageOptions.php:118 msgid "Default options successfully restored." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:123 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:123 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:123 #: src/includes/classes/MenuPageOptions.php:123 msgid "Cache wiped across all sites; recreation will occur automatically over time." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:129 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:129 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:129 #: src/includes/classes/MenuPageOptions.php:129 msgid "Cache cleared for main site; recreation will occur automatically over time." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:131 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:131 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:131 #: src/includes/classes/MenuPageOptions.php:131 msgid "Cache cleared for this site; recreation will occur automatically over time." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:137 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:142 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:137 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:142 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:137 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:142 #: src/includes/classes/MenuPageOptions.php:137 #: src/includes/classes/MenuPageOptions.php:142 msgid "Failed to update your /.htaccess file automatically. Most likely a permissions error. Please make sure it has permissions 644 or higher (perhaps 666). Once you've done this, please try saving the %1$s options again." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:147 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:147 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:147 #: src/includes/classes/MenuPageOptions.php:147 msgid "It appears that your server is running NGINX and does not support .htaccess rules. Please update your server configuration manually. If you've already updated your NGINX configuration, you can safely ignore this message." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:152 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:152 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:152 #: src/includes/classes/MenuPageOptions.php:152 msgid "Failed to update your /wp-config.php file automatically. Please add the following line to your /wp-config.php file (right after the opening <?php tag; on it's own line).
<?php
define('WP_CACHE', TRUE);
" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:157 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:157 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:157 #: src/includes/classes/MenuPageOptions.php:157 msgid "Failed to update your /wp-config.php file automatically. Please remove the following line from your /wp-config.php file, or set WP_CACHE to a FALSE value.
define('WP_CACHE', TRUE);
" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:163 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:163 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:163 #: src/includes/classes/MenuPageOptions.php:163 msgid "Failed to update your /wp-content/advanced-cache.php file. Cannot write stat file: %1$s/%2$s-advanced-cache. Please be sure this directory exists (and that it's writable): %1$s. Please use directory permissions 755 or higher (perhaps 777). Once you've done this, please try again." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:165 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:165 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:165 #: src/includes/classes/MenuPageOptions.php:165 msgid "Failed to update your /wp-content/advanced-cache.php file. Most likely a permissions error. Please create an empty file here: /wp-content/advanced-cache.php (just an empty PHP file, with nothing in it); give it permissions 644 or higher (perhaps 666). Once you've done this, please try again." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:171 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:171 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:171 #: src/includes/classes/MenuPageOptions.php:171 msgid "Failed to remove your /wp-content/advanced-cache.php file. Most likely a permissions error. Please delete (or empty the contents of) this file: /wp-content/advanced-cache.php." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:176 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:176 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:176 #: src/includes/classes/MenuPageOptions.php:176 msgid "close" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:177 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:177 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:177 #: src/includes/classes/MenuPageOptions.php:177 msgid "Pro Features (Preview) ~ New option panels below. Please explore before upgrading .
NOTE: the free version of %1$s (this lite version) is more-than-adequate for most sites. Please upgrade only if you desire advanced features or would like to support the developer." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:182 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:182 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:182 #: src/includes/classes/MenuPageOptions.php:182 msgid "%1$s is currently disabled; please review options below." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:192 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:192 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:192 #: src/includes/classes/MenuPageOptions.php:192 msgid "Basic Configuration (Required)" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:193 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:193 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:193 #: src/includes/classes/MenuPageOptions.php:193 msgid "Review these basic options and %1$s™ will be ready-to-go!" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:201 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:201 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:201 #: src/includes/classes/MenuPageOptions.php:201 msgid "Enable/Disable" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:206 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:206 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:206 #: src/includes/classes/MenuPageOptions.php:206 msgid "%1$s™ = SPEED!!" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:207 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:207 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:207 #: src/includes/classes/MenuPageOptions.php:207 msgid "Yes, enable %1$s™" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:207 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:207 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:207 #: src/includes/classes/MenuPageOptions.php:207 msgid "No, disable." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:208 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:208 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:208 #: src/includes/classes/MenuPageOptions.php:208 msgid "HUGE Time-Saver: Approx. 95%% of all WordPress sites running %1$s, simply enable it here; and that's it :-) No further configuration is necessary (really). All of the other options (down below) are already tuned for the BEST performance on a typical WordPress installation. Simply enable %1$s here and click \"Save All Changes\". If you get any warnings please follow the instructions given. Otherwise, you're good . This plugin is designed to run just fine like it is. Take it for a spin right away; you can always fine-tune things later if you deem necessary." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:211 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:211 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:211 #: src/includes/classes/MenuPageOptions.php:211 msgid "How Can I Tell %1$s is Working?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:212 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:212 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:212 #: src/includes/classes/MenuPageOptions.php:212 msgid "First of all, please make sure that you've enabled %1$s here; then scroll down to the bottom of this page and click \"Save All Changes\". All of the other options (below) are already pre-configured for typical usage. Feel free to skip them all for now. You can go back through all of these later and fine-tune things the way you like them." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:213 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:213 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:213 #: src/includes/classes/MenuPageOptions.php:213 msgid "Once %1$s has been enabled, you'll need to log out (and/or clear browser cookies). By default, cache files are NOT served to visitors who are logged-in, and that includes you too ;-) Cache files are NOT served to recent comment authors either. If you've commented (or replied to a comment lately); please clear your browser cookies before testing." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:214 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:214 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:214 #: src/includes/classes/MenuPageOptions.php:214 msgid "To verify that %1$s is working, navigate your site like a normal visitor would. Right-click on any page (choose View Source), then scroll to the very bottom of the document. At the bottom, you'll find comments that show %1$s stats and information. You should also notice that page-to-page navigation is lightning fast now that %1$s is running; and it gets faster over time!" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:216 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:216 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:216 #: src/includes/classes/MenuPageOptions.php:216 msgid "Yes, enable notes in the source code so I can see it's working (recommended)." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:217 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:217 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:217 #: src/includes/classes/MenuPageOptions.php:217 msgid "Yes, enable notes in the source code AND show debugging details (not recommended for production)." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:218 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:218 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:218 #: src/includes/classes/MenuPageOptions.php:218 msgid "No, I don't want my source code to contain any of these notes." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:229 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:229 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:229 #: src/includes/classes/MenuPageOptions.php:229 msgid "Plugin Deletion Safeguards" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:234 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:234 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:234 #: src/includes/classes/MenuPageOptions.php:234 msgid "Uninstall on Plugin Deletion; or Safeguard Options?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:235 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:235 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:235 #: src/includes/classes/MenuPageOptions.php:235 msgid "Tip: By default, if you delete %1$s using the plugins menu in WordPress, nothing is lost. However, if you want to completely uninstall %1$s you should set this to Yes and THEN deactivate & delete %1$s from the plugins menu in WordPress. This way %1$s will erase your options for the plugin, erase directories/files created by the plugin, remove the advanced-cache.php file, terminate CRON jobs, etc. It erases itself from existence completely." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:237 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:237 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:237 #: src/includes/classes/MenuPageOptions.php:237 msgid "Safeguard my options and the cache (recommended)." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:238 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:238 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:238 #: src/includes/classes/MenuPageOptions.php:238 msgid "Yes, uninstall (completely erase) %1$s on plugin deletion." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:247 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:247 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:247 #: src/includes/classes/MenuPageOptions.php:247 msgid "Advanced Configuration (All Optional)" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:248 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:248 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:248 #: src/includes/classes/MenuPageOptions.php:248 msgid "Recommended for advanced site owners only; already pre-configured for most WP installs." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:257 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:257 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:257 #: src/includes/classes/MenuPageOptions.php:257 msgid "Manual Cache Clearing" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:261 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:261 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:261 #: src/includes/classes/MenuPageOptions.php:261 msgid "Clearing the Cache Manually" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:263 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:263 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:263 #: src/includes/classes/MenuPageOptions.php:263 msgid "Once %1$s is enabled, you will find this new option in your WordPress Admin Bar (screenshot on right). Clicking this button will clear the cache and you can start fresh at anytime (e.g., you can do this manually; and as often as you wish)." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:264 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:264 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:264 #: src/includes/classes/MenuPageOptions.php:264 msgid "Depending on the structure of your site, there could be many reasons to clear the cache. However, the most common reasons are related to Post/Page edits or deletions, Category/Tag edits or deletions, and Theme changes. %1$s handles most scenarios all by itself. However, many site owners like to clear the cache manually; for a variety of reasons (just to force a refresh)." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:266 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:266 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:266 #: src/includes/classes/MenuPageOptions.php:266 msgid "Yes, enable "Clear Cache" button in admin bar" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:267 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:267 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:267 #: src/includes/classes/MenuPageOptions.php:267 msgid "No, I don't intend to clear the cache manually." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:270 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:270 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:270 #: src/includes/classes/MenuPageOptions.php:270 msgid "w/ dropdown options." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:271 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:271 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:271 #: src/includes/classes/MenuPageOptions.php:271 msgid "w/ dropdown options in split menu." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:272 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:272 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:272 #: src/includes/classes/MenuPageOptions.php:272 msgid "w/o dropdown options." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:277 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:277 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:277 #: src/includes/classes/MenuPageOptions.php:277 msgid "Also allow Child Sites in a Network to clear the cache from their Admin Bar?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:278 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:278 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:278 #: src/includes/classes/MenuPageOptions.php:278 msgid "In a Multisite Network, each child site can clear its own cache. If you want child sites to see the \"Clear Cache\" button in their WordPress Admin Bar, you can specify a comma-delimited list of Roles and/or Capabilities that are allowed. For example, if I want Administrators to be capable of clearing the cache from their Admin Bar, I could enter administrator here. If I also want to allow Editors, I can use a comma-delimited list: administrator,editor. Or, I could use a single Capability of: edit_others_posts; which covers both Administrators & Editors at the same time." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:280 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:471 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:280 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:471 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:280 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:471 #: src/includes/classes/MenuPageOptions.php:280 #: src/includes/classes/MenuPageOptions.php:471 msgid "Note: As a security measure, in addition to the Role(s) and/or Capabilities that you list here, each child site owner must also have the ability to %1$s." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:285 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:285 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:285 #: src/includes/classes/MenuPageOptions.php:285 msgid "Also allow others to clear the cache from their Admin Bar?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:286 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:286 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:286 #: src/includes/classes/MenuPageOptions.php:286 msgid "If you want others to see the \"Clear Cache\" button in their WordPress Admin Bar, you can specify a comma-delimited list of Roles and/or Capabilities that are allowed. For example, if I want Editors to be capable of clearing the cache from their Admin Bar, I could enter editor here. If I also want to allow Authors, I can use a comma-delimited list: editor,author. Or, I could use a single Capability of: publish_posts; which covers both Editors & Authors at the same time." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:288 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:479 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:288 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:479 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:288 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:479 #: src/includes/classes/MenuPageOptions.php:288 #: src/includes/classes/MenuPageOptions.php:479 msgid "Note: As a security measure, in addition to the Role(s) and/or Capabilities that you list here, each user must also have the ability to %1$s." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:294 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:294 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:294 #: src/includes/classes/MenuPageOptions.php:294 msgid "Clear the PHP OPcache Too?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:295 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:295 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:295 #: src/includes/classes/MenuPageOptions.php:295 msgid "If you clear the cache manually, do you want %1$s to clear the PHP OPcache too? This is not necessary, but if you want a truly clean start, this will clear all PHP files in the server's opcode cache also. Note: If you don't already know what the PHP OPcache is, it is suggested that you leave this disabled. It really is not necessary. This is just an added feature for advanced users." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:297 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:297 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:297 #: src/includes/classes/MenuPageOptions.php:297 msgid "No, I don't use the PHP OPcache extension; or, I don't want the opcode cache cleared." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:298 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:298 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:298 #: src/includes/classes/MenuPageOptions.php:298 msgid "Yes, if the PHP OPcache extension is enabled, also clear the entire PHP opcode cache." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:303 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:303 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:303 #: src/includes/classes/MenuPageOptions.php:303 msgid "Clear the s2Clean Cache Too?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:304 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:304 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:304 #: src/includes/classes/MenuPageOptions.php:304 msgid "If the s2Clean theme is installed, and you clear the cache manually, %1$s can clear the s2Clean Markdown cache too (if you've enabled Markdown processing with s2Clean)." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:306 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:306 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:306 #: src/includes/classes/MenuPageOptions.php:306 msgid "Yes, if the s2Clean theme is installed, also clear s2Clean-related caches." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:307 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:307 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:307 #: src/includes/classes/MenuPageOptions.php:307 msgid "No, I don't use s2Clean; or, I don't want s2Clean-related caches cleared." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:311 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:311 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:311 #: src/includes/classes/MenuPageOptions.php:311 msgid "Evaluate Custom PHP Code when Clearing the Cache?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:312 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:312 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:312 #: src/includes/classes/MenuPageOptions.php:312 msgid "If you have any custom routines you'd like to process when the cache is cleared manually, please enter PHP code here. If your PHP code outputs a message, it will be displayed along with any other notes from %1$s itself. This feature is intended for developers, and it may come in handy if you need to clear any system caches not already covered by %1$s configuration options." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:314 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:314 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:314 #: src/includes/classes/MenuPageOptions.php:314 msgid "Example: <?php apc_clear_cache(); echo '<p>Also cleared APC cache.</p>'; ?>" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:317 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:317 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:317 #: src/includes/classes/MenuPageOptions.php:317 msgid "Clear the CDN Cache Too?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:318 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:318 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:318 #: src/includes/classes/MenuPageOptions.php:318 msgid "If you clear the cache manually, do you want %1$s to automatically bump the CDN invalidation counter too? i.e., automatically increment the ?%2$s=[counter] in all static CDN URLs?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:320 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:320 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:320 #: src/includes/classes/MenuPageOptions.php:320 msgid "No, I don't use Static CDN Filters; or, I don't want the CDN cache cleared." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:321 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:321 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:321 #: src/includes/classes/MenuPageOptions.php:321 msgid "Yes, if Static CDN Filters are enabled, also clear the CDN cache." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:332 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:332 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:332 #: src/includes/classes/MenuPageOptions.php:332 msgid "Automatic Cache Clearing" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:337 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:337 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:337 #: src/includes/classes/MenuPageOptions.php:337 msgid "Clearing the Cache Automatically" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:339 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:339 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:339 #: src/includes/classes/MenuPageOptions.php:339 msgid "This is built into the %1$s plugin; i.e., this functionality is \"always on\". If you edit a Post/Page (or delete one), %1$s will automatically clear the cache file(s) associated with that content. This way a new updated version of the cache will be created automatically the next time this content is accessed. Simple updates like this occur each time you make changes in the Dashboard, and %1$s will notify you of these as they occur. %1$s monitors changes to Posts (of any kind, including Pages), Categories, Tags, Links, Themes (even Users), and more." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:343 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:343 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:343 #: src/includes/classes/MenuPageOptions.php:343 msgid "Yes, enable %1$s notifications in the Dashboard when changes are detected & one or more cache files are cleared automatically." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:344 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:344 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:344 #: src/includes/classes/MenuPageOptions.php:344 msgid "No, I don't want to know (don't really care) what %1$s is doing behind-the-scene." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:349 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:349 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:349 #: src/includes/classes/MenuPageOptions.php:349 msgid "Primary Page Options" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:351 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:351 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:351 #: src/includes/classes/MenuPageOptions.php:351 msgid "Auto-Clear Designated \"Home Page\" Too?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:352 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:352 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:352 #: src/includes/classes/MenuPageOptions.php:352 msgid "On many sites, the Home Page (aka: the Front Page) offers an archive view of all Posts (or even Pages). Therefore, if a single Post/Page is changed in some way; and %1$s clears/resets the cache for a single Post/Page, would you like %1$s to also clear any existing cache files for the \"Home Page\"?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:354 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:354 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:354 #: src/includes/classes/MenuPageOptions.php:354 msgid "Yes, if any single Post/Page is cleared/reset; also clear the \"Home Page\"." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:355 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:355 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:355 #: src/includes/classes/MenuPageOptions.php:355 msgid "No, my Home Page does not provide a list of Posts/Pages; e.g., this is not necessary." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:357 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:357 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:357 #: src/includes/classes/MenuPageOptions.php:357 msgid "Auto-Clear Designated \"Posts Page\" Too?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:358 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:358 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:358 #: src/includes/classes/MenuPageOptions.php:358 msgid "On many sites, the Posts Page (aka: the Blog Page) offers an archive view of all Posts (or even Pages). Therefore, if a single Post/Page is changed in some way; and %1$s clears/resets the cache for a single Post/Page, would you like %1$s to also clear any existing cache files for the \"Posts Page\"?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:360 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:360 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:360 #: src/includes/classes/MenuPageOptions.php:360 msgid "Yes, if any single Post/Page is cleared/reset; also clear the \"Posts Page\"." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:361 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:361 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:361 #: src/includes/classes/MenuPageOptions.php:361 msgid "No, I don't use a separate Posts Page; e.g., my Home Page IS my Posts Page." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:365 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:365 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:365 #: src/includes/classes/MenuPageOptions.php:365 msgid "Author, Archive, and Tag/Term Options" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:367 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:367 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:367 #: src/includes/classes/MenuPageOptions.php:367 msgid "Auto-Clear \"Author Page\" Too?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:368 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:368 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:368 #: src/includes/classes/MenuPageOptions.php:368 msgid "On many sites, each author has a related \"Author Page\" that offers an archive view of all posts associated with that author. Therefore, if a single Post/Page is changed in some way; and %1$s clears/resets the cache for a single Post/Page, would you like %1$s to also clear any existing cache files for the related \"Author Page\"?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:370 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:370 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:370 #: src/includes/classes/MenuPageOptions.php:370 msgid "Yes, if any single Post/Page is cleared/reset; also clear the \"Author Page\"." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:371 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:371 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:371 #: src/includes/classes/MenuPageOptions.php:371 msgid "No, my site doesn't use multiple authors and/or I don't have any \"Author Page\" archive views." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:374 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:374 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:374 #: src/includes/classes/MenuPageOptions.php:374 msgid "Auto-Clear \"Category Archives\" Too?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:375 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:375 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:375 #: src/includes/classes/MenuPageOptions.php:375 msgid "On many sites, each post is associated with at least one Category. Each category then has an archive view that contains all the posts within that category. Therefore, if a single Post/Page is changed in some way; and %1$s clears/resets the cache for a single Post/Page, would you like %1$s to also clear any existing cache files for the associated Category archive views?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:377 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:377 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:377 #: src/includes/classes/MenuPageOptions.php:377 msgid "Yes, if any single Post/Page is cleared/reset; also clear the associated Category archive views." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:378 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:378 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:378 #: src/includes/classes/MenuPageOptions.php:378 msgid "No, my site doesn't use Categories and/or I don't have any Category archive views." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:381 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:381 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:381 #: src/includes/classes/MenuPageOptions.php:381 msgid "Auto-Clear \"Tag Archives\" Too?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:382 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:382 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:382 #: src/includes/classes/MenuPageOptions.php:382 msgid "On many sites, each post may be associated with at least one Tag. Each tag then has an archive view that contains all the posts assigned that tag. Therefore, if a single Post/Page is changed in some way; and %1$s clears/resets the cache for a single Post/Page, would you like %1$s to also clear any existing cache files for the associated Tag archive views?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:384 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:384 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:384 #: src/includes/classes/MenuPageOptions.php:384 msgid "Yes, if any single Post/Page is cleared/reset; also clear the associated Tag archive views." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:385 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:385 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:385 #: src/includes/classes/MenuPageOptions.php:385 msgid "No, my site doesn't use Tags and/or I don't have any Tag archive views." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:388 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:388 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:388 #: src/includes/classes/MenuPageOptions.php:388 msgid "Auto-Clear \"Custom Term Archives\" Too?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:389 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:389 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:389 #: src/includes/classes/MenuPageOptions.php:389 msgid "Most sites do not use any custom Terms so it should be safe to leave this disabled. However, if your site uses custom Terms and they have their own Term archive views, you may want to clear those when the associated post is cleared. Therefore, if a single Post/Page is changed in some way; and %1$s clears/resets the cache for a single Post/Page, would you like %1$s to also clear any existing cache files for the associated Tag archive views?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:391 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:391 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:391 #: src/includes/classes/MenuPageOptions.php:391 msgid "Yes, if any single Post/Page is cleared/reset; also clear any associated custom Term archive views." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:392 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:392 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:392 #: src/includes/classes/MenuPageOptions.php:392 msgid "No, my site doesn't use any custom Terms and/or I don't have any custom Term archive views." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:395 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:395 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:395 #: src/includes/classes/MenuPageOptions.php:395 msgid "Auto-Clear \"Custom Post Type Archives\" Too?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:396 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:396 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:396 #: src/includes/classes/MenuPageOptions.php:396 msgid "Most sites do not use any Custom Post Types so it should be safe to disable this option. However, if your site uses Custom Post Types and they have their own Custom Post Type archive views, you may want to clear those when any associated post is cleared. Therefore, if a single Post with a Custom Post Type is changed in some way; and %1$s clears/resets the cache for that post, would you like %1$s to also clear any existing cache files for the associated Custom Post Type archive views?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:398 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:398 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:398 #: src/includes/classes/MenuPageOptions.php:398 msgid "Yes, if any single Post with a Custom Post Type is cleared/reset; also clear any associated Custom Post Type archive views." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:399 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:399 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:399 #: src/includes/classes/MenuPageOptions.php:399 msgid "No, my site doesn't use any Custom Post Types and/or I don't have any Custom Post Type archive views." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:403 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:403 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:403 #: src/includes/classes/MenuPageOptions.php:403 msgid "Feed-Related Options" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:405 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:405 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:405 #: src/includes/classes/MenuPageOptions.php:405 msgid "Auto-Clear \"RSS/RDF/ATOM Feeds\" Too?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:406 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:406 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:406 #: src/includes/classes/MenuPageOptions.php:406 msgid "If you enable Feed Caching (below), this can be quite handy. If enabled, when you update a Post/Page, approve a Comment, or make other changes where %1$s can detect that certain types of Feeds should be cleared to keep your site up-to-date, then %1$s will do this for you automatically. For instance, the blog's master feed, the blog's master comments feed, feeds associated with comments on a Post/Page, term-related feeds (including mixed term-related feeds), author-related feeds, etc. Under various circumstances (i.e., as you work in the Dashboard) these can be cleared automatically to keep your site up-to-date." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:408 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:408 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:408 #: src/includes/classes/MenuPageOptions.php:408 msgid "Yes, automatically clear RSS/RDF/ATOM Feeds from the cache when certain changes occur." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:409 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:409 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:409 #: src/includes/classes/MenuPageOptions.php:409 msgid "No, I don't have Feed Caching enabled, or I prefer not to automatically clear Feeds." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:413 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:413 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:413 #: src/includes/classes/MenuPageOptions.php:413 msgid "Sitemap-Related Options" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:415 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:415 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:415 #: src/includes/classes/MenuPageOptions.php:415 msgid "Auto-Clear \"XML Sitemaps\" Too?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:416 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:416 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:416 #: src/includes/classes/MenuPageOptions.php:416 msgid "If you're generating XML Sitemaps with a plugin like Google XML Sitemaps, you can tell %1$s to automatically clear the cache of any XML Sitemaps whenever it clears a Post/Page. Note: This does NOT clear the XML Sitemap itself of course, only the cache. The point being, to clear the cache and allow changes to a Post/Page to be reflected by a fresh copy of your XML Sitemap; sooner rather than later." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:418 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:418 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:418 #: src/includes/classes/MenuPageOptions.php:418 msgid "Yes, if any single Post/Page is cleared/reset; also clear the cache for any XML Sitemaps." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:419 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:419 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:419 #: src/includes/classes/MenuPageOptions.php:419 msgid "No, my site doesn't use any XML Sitemaps and/or I prefer NOT to clear the cache for XML Sitemaps." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:422 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:422 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:422 #: src/includes/classes/MenuPageOptions.php:422 msgid "XML Sitemap Patterns... A default value of /sitemap**.xml covers all XML Sitemaps for most installations. However, you may customize this further if you deem necessary. Please list one pattern per line. These XML Sitemap Pattern searches are performed against the REQUEST_URI. A wildcard ** character can also be used when necessary; e.g., /sitemap**.xml (where ** = 0 or more characters of any kind, including / slashes). Other special characters include: * = 0 or more characters that are NOT a slash /; ^ = beginning of the string; $ = end of the string. To learn more about this syntax, please see this KB article." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:425 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:425 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:425 #: src/includes/classes/MenuPageOptions.php:425 msgid "In a Multisite Network, each child blog (whether it be a sub-domain, a sub-directory, or a mapped domain); will automatically change the leading http://[sub.]domain/[sub-directory] used in pattern matching. In short, there is no need to add sub-domains or sub-directories for each child blog in these patterns. Please include only the REQUEST_URI (i.e., the path) which leads to the XML Sitemap on all child blogs in the network." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:431 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:431 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:431 #: src/includes/classes/MenuPageOptions.php:431 msgid "Misc. Auto-Clear Options" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:432 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:432 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:432 #: src/includes/classes/MenuPageOptions.php:432 msgid "Auto-Clear a List of Custom URLs Too?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:433 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:433 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:433 #: src/includes/classes/MenuPageOptions.php:433 msgid "When you update a Post/Page, approve a Comment, or make other changes where %1$s can detect that a Post/Page cache should be cleared to keep your site up-to-date; then %1$s will also clear a list of custom URLs that you list here. Please list one URL per line. A wildcard * character can also be used when necessary; e.g., /category/abc-followed-by-* (where * = 0 or more characters that are NOT a slash /). Other special characters include: ** = 0 or more characters of any kind, including / slashes; ^ = beginning of the string; $ = end of the string. To learn more about this syntax, please see this KB article." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:446 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:446 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:446 #: src/includes/classes/MenuPageOptions.php:446 msgid "Cache-Related Statistics" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:451 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:451 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:451 #: src/includes/classes/MenuPageOptions.php:451 msgid "Enable Cache-Related Stats & Charts?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:452 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:452 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:452 #: src/includes/classes/MenuPageOptions.php:452 msgid "%1$s can collect and display cache-related statistics (including charts). Stats are displayed in the WordPress Admin Bar, and also in your Dashboard under: %1$s → Stats/Charts. Cache-related stats provide you with a quick look at what's happening behind-the-scenes. Your site grows faster and faster as the cache grows larger in size." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:454 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:454 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:454 #: src/includes/classes/MenuPageOptions.php:454 msgid "Yes, enable stats collection & the menu page in WordPress for viewing stats." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:455 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:455 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:455 #: src/includes/classes/MenuPageOptions.php:455 msgid "No, I have a VERY large site and I want to avoid any unnecessary directory scans." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:457 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:457 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:457 #: src/includes/classes/MenuPageOptions.php:457 msgid "Note: %1$s does a great job of collecting stats, in ways that don't cause a performance issue. In addition, as your cache grows larger than several hundred files in total size, statistics are collected less often and at longer intervals. All of that being said, if you run a VERY large site (e.g., more than 20K posts), you might want to disable stats collection in favor of blazing fast speeds not impeded by any directory scans needed to collect stats." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:461 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:461 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:461 #: src/includes/classes/MenuPageOptions.php:461 msgid "Show Stats in the WordPress Admin Bar?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:463 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:463 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:463 #: src/includes/classes/MenuPageOptions.php:463 msgid "Yes, enable stats in the WordPress admin bar." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:464 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:464 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:464 #: src/includes/classes/MenuPageOptions.php:464 msgid "No, I'll review stats from the menu page in WordPress if I need to." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:468 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:468 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:468 #: src/includes/classes/MenuPageOptions.php:468 msgid "Allow Child Sites in a Network to See Stats in Admin Bar?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:469 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:469 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:469 #: src/includes/classes/MenuPageOptions.php:469 msgid "In a Multisite Network, each child site has stats of its own. If you want child sites to see cache-related stats in their WordPress Admin Bar, you can specify a comma-delimited list of Roles and/or Capabilities that are allowed to see stats. For example, if I want the Administrator to see stats in their Admin Bar, I could enter administrator here. If I also want to show stats to Editors, I can use a comma-delimited list: administrator,editor. Or, I could use a single Capability of: edit_others_posts; which covers both Administrators & Editors at the same time." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:476 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:476 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:476 #: src/includes/classes/MenuPageOptions.php:476 msgid "Allow Others to See Stats in Admin Bar?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:477 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:477 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:477 #: src/includes/classes/MenuPageOptions.php:477 msgid "If you want others to see cache-related stats in their WordPress Admin Bar, you can specify a comma-delimited list of Roles and/or Capabilities that are allowed to see stats. For example, if I want Editors to see stats in their Admin Bar, I could enter editor here. If I also want to show stats to Authors, I can use a comma-delimited list: editor,author. Or, I could use a single Capability of: publish_posts; which covers both Editors & Authors at the same time." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:493 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:493 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:493 #: src/includes/classes/MenuPageOptions.php:493 msgid "Cache Directory" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:497 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:497 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:497 #: src/includes/classes/MenuPageOptions.php:497 msgid "Base Cache Directory (Must be Writable; i.e., Permissions 755 or Higher)" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:498 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:498 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:498 #: src/includes/classes/MenuPageOptions.php:498 msgid "This is where %1$s will store the cached version of your site. If you're not sure how to deal with directory permissions, don't worry too much about this. If there is a problem, %1$s will let you know about it. By default, this directory is created by %1$s and the permissions are setup automatically. In most cases there is nothing more you need to do." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:509 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:509 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:509 #: src/includes/classes/MenuPageOptions.php:509 msgid "Cache Expiration Time" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:514 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:514 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:514 #: src/includes/classes/MenuPageOptions.php:514 msgid "Automatic Expiration Time (Max Age)" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:515 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:515 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:515 #: src/includes/classes/MenuPageOptions.php:515 msgid "If you don't update your site much, you could set this to 6 months and optimize everything even further. The longer the Cache Expiration Time is, the greater your performance gain. Alternatively, the shorter the Expiration Time, the fresher everything will remain on your site. A default value of 7 days (recommended); is a good conservative middle-ground." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:516 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:516 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:516 #: src/includes/classes/MenuPageOptions.php:516 msgid "Keep in mind that your Expiration Time is only one part of the big picture. %1$s will also clear the cache automatically as changes are made to the site (i.e., you edit a post, someone comments on a post, you change your theme, you add a new navigation menu item, etc., etc.). Thus, your Expiration Time is really just a fallback; e.g., the maximum amount of time that a cache file could ever possibly live." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:517 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:517 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:517 #: src/includes/classes/MenuPageOptions.php:517 msgid "All of that being said, you could set this to just 60 seconds and you would still see huge differences in speed and performance. If you're just starting out with %1$s (perhaps a bit nervous about old cache files being served to your visitors); you could set this to something like 30 minutes and experiment with it while you build confidence in %1$s. It's not necessary to do so, but many site owners have reported this makes them feel like they're more-in-control when the cache has a short expiration time. All-in-all, it's a matter of preference ." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:519 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:519 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:519 #: src/includes/classes/MenuPageOptions.php:519 msgid "Tip: the value that you specify here MUST be compatible with PHP's strtotime() function. Examples: 30 seconds, 2 hours, 7 days, 6 months, 1 year." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:520 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:520 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:520 #: src/includes/classes/MenuPageOptions.php:520 msgid "Note: %1$s will never serve a cache file that is older than what you specify here (even if one exists in your cache directory; stale cache files are never used). In addition, a WP Cron job will automatically cleanup your cache directory (once per hour); purging expired cache files periodically. This prevents a HUGE cache from building up over time, creating a potential storage issue." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:524 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:524 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:524 #: src/includes/classes/MenuPageOptions.php:524 msgid "Cache Cleanup Schedule" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:525 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:525 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:525 #: src/includes/classes/MenuPageOptions.php:525 msgid "If you have an extremely large site and you lower the default Cache Expiration Time of 7 days, expired cache files can build up more quickly. By default, %1$s cleans up expired cache files via WP Cron at an hourly interval, but you can tell %1$s to use a custom Cache Cleanup Schedule below to run the cleanup process more or less frequently, depending on your specific needs." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:537 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:537 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:537 #: src/includes/classes/MenuPageOptions.php:537 msgid "Disable Cache Expiration If Server Load Average is High?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:538 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:538 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:538 #: src/includes/classes/MenuPageOptions.php:538 msgid "If you have high traffic at certain times of the day, %1$s can be told to check the current load average via sys_getloadavg(). If your server's load average has been high in the last 15 minutes or so, cache expiration is disabled automatically to help reduce stress on the server; i.e., to avoid generating a new version of the cache while the server is very busy." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:539 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:539 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:539 #: src/includes/classes/MenuPageOptions.php:539 msgid "To enable this functionality you should first determine what a high load average is for your server. If you log into your machine via SSH you can run the top command to get a feel for what a high load average looks like. Once you know the number, you can enter it in the field below; e.g., 1.05 might be a high load average for a server with one CPU. See also: Understanding Load Average" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:542 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:542 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:542 #: src/includes/classes/MenuPageOptions.php:542 msgid "Note: It appears that your server is running Windows. The sys_getloadavg() function has not been implemented in PHP for Windows servers yet." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:544 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:544 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:544 #: src/includes/classes/MenuPageOptions.php:544 msgid "Note: sys_getloadavg() has been disabled by your web hosting company or is not available on your server." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:557 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:557 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:557 #: src/includes/classes/MenuPageOptions.php:557 msgid "Client-Side Cache" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:562 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:562 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:562 #: src/includes/classes/MenuPageOptions.php:562 msgid "Allow Double-Caching In The Client-Side Browser?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:563 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:563 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:563 #: src/includes/classes/MenuPageOptions.php:563 msgid "Recommended setting: No (for membership sites, very important). Otherwise, Yes would be better (if users do NOT log in/out of your site)." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:564 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:564 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:564 #: src/includes/classes/MenuPageOptions.php:564 msgid "%1$s handles content delivery through its ability to communicate with a browser using PHP. If you allow a browser to (cache) the caching system itself, you are momentarily losing some control; and this can have a negative impact on users that see more than one version of your site; e.g., one version while logged-in, and another while NOT logged-in. For instance, a user may log out of your site, but upon logging out they report seeing pages on the site which indicate they are STILL logged in (even though they're not — that's bad). This can happen if you allow a client-side cache, because their browser may cache web pages they visited while logged into your site which persist even after logging out. Sending no-cache headers will work to prevent this issue." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:565 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:565 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:565 #: src/includes/classes/MenuPageOptions.php:565 msgid "All of that being said, if all you care about is blazing fast speed and users don't log in/out of your site (only you do); you can safely set this to Yes (recommended in this case). Allowing a client-side browser cache will improve speed and reduce outgoing bandwidth when this option is feasible." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:567 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:567 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:567 #: src/includes/classes/MenuPageOptions.php:567 msgid "No, prevent a client-side browser cache (safest option)." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:568 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:568 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:568 #: src/includes/classes/MenuPageOptions.php:568 msgid "Yes, I will allow a client-side browser cache of pages on the site." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:570 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:570 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:570 #: src/includes/classes/MenuPageOptions.php:570 msgid "Tip: Setting this to No is highly recommended when running a membership plugin like s2Member (as one example). In fact, many plugins like s2Member will send nocache_headers() on their own, so your configuration here will likely be overwritten when you run such plugins (which is better anyway). In short, if you run a membership plugin, you should NOT allow a client-side browser cache." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:571 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:571 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:571 #: src/includes/classes/MenuPageOptions.php:571 msgid "Tip: Setting this to No will NOT impact static content; e.g., CSS, JS, images, or other media. This setting pertains only to dynamic PHP scripts which produce content generated by WordPress." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:572 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:572 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:572 #: src/includes/classes/MenuPageOptions.php:572 msgid "Advanced Tip: if you have this set to No, but you DO want to allow a few special URLs to be cached by the browser; you can add this parameter to your URL ?%2$sABC=1. This tells %1$s that it's OK for the browser to cache that particular URL. In other words, the %2$sABC=1 parameter tells %1$s NOT to send no-cache headers to the browser." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:573 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:573 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:573 #: src/includes/classes/MenuPageOptions.php:573 msgid "Exclusion Patterns for Client-Side Caching" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:574 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:574 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:574 #: src/includes/classes/MenuPageOptions.php:574 msgid "When you enable Client-Side Caching above, you may want to prevent certain pages on your site from being cached by a client-side browser. This is where you will enter those if you need to (one per line). Searches are performed against the REQUEST_URI; i.e., /path/?query (caSe insensitive). So, don't put in full URLs here, just word fragments found in the file path (or query string) is all you need, excluding the http:// and domain name. A wildcard * character can also be used when necessary; e.g., /category/abc-followed-by-* (where * = 0 or more characters that are NOT a slash /). Other special characters include: ** = 0 or more characters of any kind, including / slashes; ^ = beginning of the string; $ = end of the string. To learn more about this syntax, please see this KB article." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:576 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:709 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:870 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:576 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:709 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:870 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:576 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:709 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:870 #: src/includes/classes/MenuPageOptions.php:576 -#: src/includes/classes/MenuPageOptions.php:700 -#: src/includes/classes/MenuPageOptions.php:861 +#: src/includes/classes/MenuPageOptions.php:709 +#: src/includes/classes/MenuPageOptions.php:870 msgid "Tip: let's use this example URL: http://www.example.com/post/example-post-123. To exclude this URL, you would put this line into the field above: /post/example-post-123. Or, you could also just put in a small fragment, like: example or example-*-123 and that would exclude any URI containing that word fragment." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:577 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:710 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:728 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:746 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:862 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:866 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:871 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:995 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:577 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:710 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:728 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:746 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:862 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:866 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:871 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:995 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:577 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:710 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:728 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:746 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:862 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:866 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:871 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:995 #: src/includes/classes/MenuPageOptions.php:577 -#: src/includes/classes/MenuPageOptions.php:701 -#: src/includes/classes/MenuPageOptions.php:719 -#: src/includes/classes/MenuPageOptions.php:737 -#: src/includes/classes/MenuPageOptions.php:853 -#: src/includes/classes/MenuPageOptions.php:857 +#: src/includes/classes/MenuPageOptions.php:710 +#: src/includes/classes/MenuPageOptions.php:728 +#: src/includes/classes/MenuPageOptions.php:746 #: src/includes/classes/MenuPageOptions.php:862 -#: src/includes/classes/MenuPageOptions.php:986 +#: src/includes/classes/MenuPageOptions.php:866 +#: src/includes/classes/MenuPageOptions.php:871 +#: src/includes/classes/MenuPageOptions.php:995 msgid "Note: please remember that your entries here should be formatted as a line-delimited list; e.g., one exclusion pattern per line." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:588 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:588 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:588 #: src/includes/classes/MenuPageOptions.php:588 msgid "Logged-In Users" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:593 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:593 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:593 #: src/includes/classes/MenuPageOptions.php:593 msgid "Caching Enabled for Logged-In Users & Comment Authors?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:594 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:594 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:594 #: src/includes/classes/MenuPageOptions.php:594 msgid "This should almost ALWAYS be set to No. Most sites will NOT want to cache content generated while a user is logged-in. Doing so could result in a cache of dynamic content generated specifically for a particular user, where the content being cached may contain details that pertain only to the user that was logged-in when the cache was generated. Imagine visiting a website that says you're logged-in as Billy Bob (but you're not Billy Bob; NOT good). In short, do NOT turn this on unless you know what you're doing." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:596 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:596 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:596 #: src/includes/classes/MenuPageOptions.php:596 msgid "Exception (Membership Sites): If you run a site with many users and the majority of your traffic comes from users who ARE logged-in, please choose: Yes (maintain separate cache). %1$s will operate normally; but when a user is logged-in, the cache is user-specific. %1$s will intelligently refresh the cache when/if a user submits a form on your site with the GET or POST method. Or, if you make changes to their account (or another plugin makes changes to their account); including user option|meta additions, updates & deletions too. However, please note that enabling this feature (e.g., user-specific cache entries); will eat up MUCH more disk space. That being said, the benefits of this feature for most sites will outweigh the disk overhead (e.g., it's NOT an issue in most cases). Unless you are short on disk space (or you have MANY thousands of users), the disk overhead is neglible." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:598 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:598 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:598 #: src/includes/classes/MenuPageOptions.php:598 msgid "No, do NOT cache; or serve a cache file when a user is logged-in (safest option)." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:599 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:599 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:599 #: src/includes/classes/MenuPageOptions.php:599 msgid "Yes, and maintain a separate cache for each user (recommended for membership sites)." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:602 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:602 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:602 #: src/includes/classes/MenuPageOptions.php:602 msgid "Yes, but DON'T maintain a separate cache for each user (I know what I'm doing)." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:606 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:606 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:606 #: src/includes/classes/MenuPageOptions.php:606 msgid "Warning: Whenever you enable caching for logged-in users (without a separate cache for each user), the WordPress Admin Bar must be disabled to prevent one user from seeing another user's details in the Admin Bar. Given your current configuration, %1$s will automatically hide the WordPress Admin Bar on the front-end of your site." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:608 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:608 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:608 #: src/includes/classes/MenuPageOptions.php:608 msgid "Note: For most sites, the majority of their traffic (if not all of their traffic) comes from visitors who are not logged in, so disabling the cache for logged-in users is NOT ordinarily a performance issue. When a user IS logged-in, disabling the cache is considered ideal, because a logged-in user has a session open with your site; and the content they view should remain very dynamic in this scenario." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:609 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:609 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:609 #: src/includes/classes/MenuPageOptions.php:609 msgid "Note: This setting includes some users who AREN'T actually logged into the system, but who HAVE authored comments recently. %1$s includes comment authors as part of it's logged-in user check. This way comment authors will be able to see updates to the comment thread immediately; and, so that any dynamically-generated messages displayed by your theme will work as intended. In short, %1$s thinks of a comment author as a logged-in user, even though technically they are not. ~ Users who gain access to password-protected Posts/Pages are also included." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:611 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:611 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:611 #: src/includes/classes/MenuPageOptions.php:611 msgid "Static CDN Filters Enabled for Logged-In Users & Comment Authors?" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:612 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:612 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:612 #: src/includes/classes/MenuPageOptions.php:612 msgid "While this defaults to a value of No, it should almost always be set to Yes. This value defaults to No only because Logged-In User caching (see above) defaults to No and setting this value to Yes by default can cause confusion for some users. Once you understand that Static CDN Filters can be applied safely for all visitors (logged-in or not logged-in), please choose Yes in the dropdown below. If you are not using Static CDN Filters, the value below is ignored." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:614 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:614 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:614 #: src/includes/classes/MenuPageOptions.php:614 msgid "No, disable Static CDN Filters when a user is logged-in." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:615 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:615 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:615 #: src/includes/classes/MenuPageOptions.php:615 msgid "Yes, enable Static CDN Filters for logged-in users (recommended) ." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:617 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:617 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:617 #: src/includes/classes/MenuPageOptions.php:617 msgid "Note: Static CDN Filters serve static resources. Static resources, are, simply put, static. Thus, it is not a problem to cache these resources for any visitor (logged-in or not logged-in). To avoid confusion, this defaults to a value of No, and we ask that you set it to Yes on your own so that you'll know to expect this behavior; i.e., that static resources will always be served from the CDN (logged-in or not logged-in) even though Logged-In User caching may be disabled above." msgstr "" -#: src/includes/classes/MenuPageOptions.php:627 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:619 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:619 +msgid "Enable the Admin Bar for Logged-In Users & Comment Authors?" +msgstr "" + +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:620 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:620 +msgid "When Logged-In User caching is enabled, Comet Cache will automatically disable the WordPress Admin Bar for logged-in users (on the front-end of the site). This option allows you to override this and turn back on the Admin Bar when Logged-In User caching is enabled.)." +msgstr "" + +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:622 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:622 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:622 +#: src/includes/classes/MenuPageOptions.php:622 +msgid "No, leave the Admin Bar disabled for logged-in users (recommended option)." +msgstr "" + +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:623 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:623 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:623 +#: src/includes/classes/MenuPageOptions.php:623 +msgid "Yes, enable the Admin Bar for logged-in users." +msgstr "" + +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:626 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:626 +msgid "Note: If you are enabling the WordPress Admin Bar for logged-in users, and are allowing Nonce caching using COMET_CACHE_CACHE_NONCE_VALUES_WHEN_LOGGED_IN;, please see this article." +msgstr "" + +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:636 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:636 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:636 +#: src/includes/classes/MenuPageOptions.php:636 msgid "GET Requests" msgstr "" -#: src/includes/classes/MenuPageOptions.php:632 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:641 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:641 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:641 +#: src/includes/classes/MenuPageOptions.php:641 msgid "Caching Enabled for GET (Query String) Requests?" msgstr "" -#: src/includes/classes/MenuPageOptions.php:633 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:642 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:642 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:642 +#: src/includes/classes/MenuPageOptions.php:642 msgid "This should almost ALWAYS be set to No. UNLESS, you're using unfriendly Permalinks. In other words, if all of your URLs contain a query string (e.g., /?key=value); you're using unfriendly Permalinks. Ideally, you would refrain from doing this; and instead, update your Permalink options immediately; which also optimizes your site for search engines. That being said, if you really want to use unfriendly Permalinks, and ONLY if you're using unfriendly Permalinks, you should set this to Yes; and don't worry too much, the sky won't fall on your head :-)" msgstr "" -#: src/includes/classes/MenuPageOptions.php:635 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:644 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:644 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:644 +#: src/includes/classes/MenuPageOptions.php:644 msgid "No, do NOT cache (or serve a cache file) when a query string is present." msgstr "" -#: src/includes/classes/MenuPageOptions.php:636 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:645 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:645 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:645 +#: src/includes/classes/MenuPageOptions.php:645 msgid "Yes, I would like to cache URLs that contain a query string." msgstr "" -#: src/includes/classes/MenuPageOptions.php:638 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:647 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:647 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:647 +#: src/includes/classes/MenuPageOptions.php:647 msgid "Note: POST requests (i.e., forms with method="post") are always excluded from the cache, which is the way it should be. Any POST/PUT/DELETE request should NEVER (ever) be cached. CLI (and self-serve) requests are also excluded from the cache (always). A CLI request is one that comes from the command line; commonly used by CRON jobs and other automated routines. A self-serve request is an HTTP connection established from your site -› to your site. For instance, a WP Cron job, or any other HTTP request that is spawned not by a user, but by the server itself." msgstr "" -#: src/includes/classes/MenuPageOptions.php:639 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:648 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:648 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:648 +#: src/includes/classes/MenuPageOptions.php:648 msgid "Advanced Tip: If you are NOT caching GET requests (recommended), but you DO want to allow some special URLs that include query string parameters to be cached; you can add this special parameter to any URL ?%2$sAC=1. This tells %1$s that it's OK to cache that particular URL, even though it contains query string arguments. If you ARE caching GET requests and you want to force %1$s to NOT cache a specific request, you can add this special parameter to any URL ?%2$sAC=0." msgstr "" -#: src/includes/classes/MenuPageOptions.php:649 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:658 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:658 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:658 +#: src/includes/classes/MenuPageOptions.php:658 msgid "404 Requests" msgstr "" -#: src/includes/classes/MenuPageOptions.php:654 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:663 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:663 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:663 +#: src/includes/classes/MenuPageOptions.php:663 msgid "Caching Enabled for 404 Requests?" msgstr "" -#: src/includes/classes/MenuPageOptions.php:655 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:664 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:664 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:664 +#: src/includes/classes/MenuPageOptions.php:664 msgid "When this is set to No, %1$s will ignore all 404 requests and no cache file will be served. While this is fine for most site owners, caching the 404 page on a high-traffic site may further reduce server load. When this is set to Yes, %1$s will cache the 404 page (see Creating an Error 404 Page) and then serve that single cache file to all future 404 requests." msgstr "" -#: src/includes/classes/MenuPageOptions.php:657 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:666 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:666 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:666 +#: src/includes/classes/MenuPageOptions.php:666 msgid "No, do NOT cache (or serve a cache file) for 404 requests." msgstr "" -#: src/includes/classes/MenuPageOptions.php:658 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:667 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:667 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:667 +#: src/includes/classes/MenuPageOptions.php:667 msgid "Yes, I would like to cache the 404 page and serve the cached file for 404 requests." msgstr "" -#: src/includes/classes/MenuPageOptions.php:660 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:669 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:669 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:669 +#: src/includes/classes/MenuPageOptions.php:669 msgid "How does %1$s cache 404 requests? %1$s will create a special cache file (----404----.html, see Advanced Tip below) for the first 404 request and then symlink future 404 requests to this special cache file. That way you don't end up with lots of 404 cache files that all contain the same thing (the contents of the 404 page). Instead, you'll have one 404 cache file and then several symlinks (i.e., references) to that 404 cache file." msgstr "" -#: src/includes/classes/MenuPageOptions.php:661 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:670 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:670 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:670 +#: src/includes/classes/MenuPageOptions.php:670 msgid "Advanced Tip: The default 404 cache filename (----404----.html) is designed to minimize the chance of a collision with a cache file for a real page with the same name. However, if you want to override this default and define your own 404 cache filename, you can do so by adding define('COMET_CACHE_404_CACHE_FILENAME', 'your-404-cache-filename'); to your wp-config.php file (note that the .html extension should be excluded when defining a new filename)." msgstr "" -#: src/includes/classes/MenuPageOptions.php:671 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:680 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:680 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:680 +#: src/includes/classes/MenuPageOptions.php:680 msgid "RSS, RDF, and Atom Feeds" msgstr "" -#: src/includes/classes/MenuPageOptions.php:676 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:685 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:685 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:685 +#: src/includes/classes/MenuPageOptions.php:685 msgid "Caching Enabled for RSS, RDF, Atom Feeds?" msgstr "" -#: src/includes/classes/MenuPageOptions.php:677 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:686 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:686 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:686 +#: src/includes/classes/MenuPageOptions.php:686 msgid "This should almost ALWAYS be set to No. UNLESS, you're sure that you want to cache your feeds. If you use a web feed management provider like Google® Feedburner and you set this option to Yes, you may experience delays in the detection of new posts. NOTE: If you do enable this, it is highly recommended that you also enable automatic Feed Clearing too. Please see the section above: \"Automatic Cache Clearing\". Find the sub-section titled: \"Auto-Clear RSS/RDF/ATOM Feeds\"." msgstr "" -#: src/includes/classes/MenuPageOptions.php:679 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:688 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:688 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:688 +#: src/includes/classes/MenuPageOptions.php:688 msgid "No, do NOT cache (or serve a cache file) when displaying a feed." msgstr "" -#: src/includes/classes/MenuPageOptions.php:680 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:689 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:689 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:689 +#: src/includes/classes/MenuPageOptions.php:689 msgid "Yes, I would like to cache feed URLs." msgstr "" -#: src/includes/classes/MenuPageOptions.php:682 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:691 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:691 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:691 +#: src/includes/classes/MenuPageOptions.php:691 msgid "Note: This option affects all feeds served by WordPress, including the site feed, the site comment feed, post-specific comment feeds, author feeds, search feeds, and category and tag feeds. See also: WordPress Feeds." msgstr "" -#: src/includes/classes/MenuPageOptions.php:692 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:701 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:701 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:701 +#: src/includes/classes/MenuPageOptions.php:701 msgid "URI Exclusion Patterns" msgstr "" -#: src/includes/classes/MenuPageOptions.php:696 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:705 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:705 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:705 +#: src/includes/classes/MenuPageOptions.php:705 msgid "Don't Cache These Special URI Exclusion Patterns?" msgstr "" -#: src/includes/classes/MenuPageOptions.php:697 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:706 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:706 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:706 +#: src/includes/classes/MenuPageOptions.php:706 msgid "Sometimes there are certain cases where a particular file, or a particular group of files, should never be cached. This is where you will enter those if you need to (one per line). Searches are performed against the REQUEST_URI; i.e., /path/?query (caSe insensitive). So, don't put in full URLs here, just word fragments found in the file path (or query string) is all you need, excluding the http:// and domain name. A wildcard * character can also be used when necessary; e.g., /category/abc-followed-by-* (where * = 0 or more characters that are NOT a slash /). Other special characters include: ** = 0 or more characters of any kind, including / slashes; ^ = beginning of the string; $ = end of the string. To learn more about this syntax, please see this KB article." msgstr "" -#: src/includes/classes/MenuPageOptions.php:711 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:720 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:720 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:720 +#: src/includes/classes/MenuPageOptions.php:720 msgid "HTTP Referrer Exclusion Patterns" msgstr "" -#: src/includes/classes/MenuPageOptions.php:715 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:724 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:724 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:724 +#: src/includes/classes/MenuPageOptions.php:724 msgid "Don't Cache These Special HTTP Referrer Exclusion Patterns?" msgstr "" -#: src/includes/classes/MenuPageOptions.php:716 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:725 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:725 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:725 +#: src/includes/classes/MenuPageOptions.php:725 msgid "Sometimes there are special cases where a particular referring URL (or referring domain) that sends you traffic; or even a particular group of referring URLs or domains that send you traffic; should result in a page being loaded on your site that is NOT from the cache (and that resulting page should never be cached). This is where you will enter those if you need to (one per line). Searches are performed against the HTTP_REFERER (caSe insensitive). A wildcard * character can also be used when necessary; e.g., *.domain.com (where * = 0 or more characters that are NOT a slash /). Other special characters include: ** = 0 or more characters of any kind, including / slashes; ^ = beginning of the string; $ = end of the string. To learn more about this syntax, please see this KB article." msgstr "" -#: src/includes/classes/MenuPageOptions.php:718 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:727 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:727 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:727 +#: src/includes/classes/MenuPageOptions.php:727 msgid "Tip: let's use this example URL: http://www.referring-domain.com/search/?q=search+terms. To exclude this referring URL, you could put this line into the field above: www.referring-domain.com. Or, you could also just put in a small fragment, like: /search/ or q=*; and that would exclude any referrer containing that word fragment." msgstr "" -#: src/includes/classes/MenuPageOptions.php:729 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:738 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:738 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:738 +#: src/includes/classes/MenuPageOptions.php:738 msgid "User-Agent Exclusion Patterns" msgstr "" -#: src/includes/classes/MenuPageOptions.php:733 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:742 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:742 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:742 +#: src/includes/classes/MenuPageOptions.php:742 msgid "Don't Cache These Special User-Agent Exclusion Patterns?" msgstr "" -#: src/includes/classes/MenuPageOptions.php:734 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:743 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:743 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:743 +#: src/includes/classes/MenuPageOptions.php:743 msgid "Sometimes there are special cases when a particular user-agent (e.g., a specific browser or a specific type of device); should be shown a page on your site that is NOT from the cache (and that resulting page should never be cached). This is where you will enter those if you need to (one per line). Searches are performed against the HTTP_USER_AGENT (caSe insensitive). A wildcard * character can also be used when necessary; e.g., Android *; Chrome/* Mobile (where * = 0 or more characters that are NOT a slash /). Other special characters include: ** = 0 or more characters of any kind, including / slashes; ^ = beginning of the string; $ = end of the string. To learn more about this syntax, please see this KB article." msgstr "" -#: src/includes/classes/MenuPageOptions.php:736 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:745 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:745 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:745 +#: src/includes/classes/MenuPageOptions.php:745 msgid "Tip: if you wanted to exclude iPhones put this line into the field above: iPhone;*AppleWebKit. Or, you could also just put in a small fragment, like: iphone; and that would exclude any user-agent containing that word fragment. Note, this is just an example. With a default installation of %1$s, there is no compelling reason to exclude iOS devices (or any mobile device for that matter)." msgstr "" -#: src/includes/classes/MenuPageOptions.php:748 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:757 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:757 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:757 +#: src/includes/classes/MenuPageOptions.php:757 msgid "Auto-Cache Engine" msgstr "" -#: src/includes/classes/MenuPageOptions.php:753 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:762 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:762 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:762 +#: src/includes/classes/MenuPageOptions.php:762 msgid "Enable the Auto-Cache Engine?" msgstr "" -#: src/includes/classes/MenuPageOptions.php:754 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:763 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:763 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:763 +#: src/includes/classes/MenuPageOptions.php:763 msgid "After using %1$s for awhile (or any other page caching plugin, for that matter); it becomes obvious that at some point (based on your configured Expiration Time) %1$s has to refresh itself. It does this by ditching its cached version of a page, reloading the database-driven content, and then recreating the cache with the latest data. This is a never ending regeneration cycle that is based entirely on your configured Expiration Time." msgstr "" -#: src/includes/classes/MenuPageOptions.php:755 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:764 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:764 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:764 +#: src/includes/classes/MenuPageOptions.php:764 msgid "Understanding this, you can see that 99% of your visitors are going to receive a lightning fast response from your server. However, there will always be around 1% of your visitors that land on a page for the very first time (before it's been cached), or land on a page that needs to have its cache regenerated, because the existing cache has become outdated. We refer to this as a First-Come Slow-Load Issue. Not a huge problem, but if you're optimizing your site for every ounce of speed possible, the Auto-Cache Engine can help with this. The Auto-Cache Engine has been designed to combat this issue by taking on the responsibility of being that first visitor to a page that has not yet been cached, or has an expired cache. The Auto-Cache Engine is powered, in part, by WP-Cron (already built into WordPress). The Auto-Cache Engine runs at 15-minute intervals via WP-Cron. It also uses the WP_Http class, which is also built into WordPress already." msgstr "" -#: src/includes/classes/MenuPageOptions.php:756 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:765 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:765 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:765 +#: src/includes/classes/MenuPageOptions.php:765 msgid "The Auto-Cache Engine obtains its list of URLs to auto-cache, from two different sources. It can read an XML Sitemap and/or a list of specific URLs that you supply. If you supply both sources, it will use both sources collectively. The Auto-Cache Engine takes ALL of your other configuration options into consideration too, including your Expiration Time, as well as any cache exclusion rules." msgstr "" -#: src/includes/classes/MenuPageOptions.php:758 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:767 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:767 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:767 +#: src/includes/classes/MenuPageOptions.php:767 msgid "No, leave the Auto-Cache Engine disabled please." msgstr "" -#: src/includes/classes/MenuPageOptions.php:759 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:768 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:768 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:768 +#: src/includes/classes/MenuPageOptions.php:768 msgid "Yes, I want the Auto-Cache Engine to keep pages cached automatically." msgstr "" -#: src/includes/classes/MenuPageOptions.php:765 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:774 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:774 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:774 +#: src/includes/classes/MenuPageOptions.php:774 msgid "XML Sitemap URL (or an XML Sitemap Index)" msgstr "" -#: src/includes/classes/MenuPageOptions.php:769 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:778 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:778 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:778 +#: src/includes/classes/MenuPageOptions.php:778 msgid "All URLs in this network are in the sitemap for the main site." msgstr "" -#: src/includes/classes/MenuPageOptions.php:770 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:779 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:779 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:779 +#: src/includes/classes/MenuPageOptions.php:779 msgid "Using the path I've given, look for blog-specific sitemaps in each child blog also." msgstr "" -#: src/includes/classes/MenuPageOptions.php:772 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:781 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:781 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:781 +#: src/includes/classes/MenuPageOptions.php:781 msgid " If enabled here, each child blog can be auto-cached too. %1$s will dynamically change the leading %2$s as necessary; for each child blog in the network. %1$s supports both sub-directory & sub-domain networks, including domain mapping plugins. For more information about how the Auto-Cache Engine caches child blogs, see this article." msgstr "" -#: src/includes/classes/MenuPageOptions.php:776 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:785 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:785 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:785 +#: src/includes/classes/MenuPageOptions.php:785 msgid "And/Or; a List of URLs to Auto-Cache (One Per Line)" msgstr "" -#: src/includes/classes/MenuPageOptions.php:778 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:787 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:787 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:787 +#: src/includes/classes/MenuPageOptions.php:787 msgid "Note: Wildcards are NOT supported here. If you are going to supply a list of URLs above, each line must contain one full URL for the Auto-Cache Engine to auto-cache. If you have many URLs, we recommend using an XML Sitemap." msgstr "" -#: src/includes/classes/MenuPageOptions.php:782 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:791 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:791 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:791 +#: src/includes/classes/MenuPageOptions.php:791 msgid "Auto-Cache Delay Timer (in Milliseconds)" msgstr "" -#: src/includes/classes/MenuPageOptions.php:783 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:792 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:792 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:792 +#: src/includes/classes/MenuPageOptions.php:792 msgid "As the Auto-Cache Engine runs through each URL, you can tell it to wait X number of milliseconds between each connection that it makes. It is strongly suggested that you DO have some small delay here. Otherwise, you run the risk of hammering your own web server with multiple repeated connections whenever the Auto-Cache Engine is running. This is especially true on very large sites; where there is the potential for hundreds of repeated connections as the Auto-Cache Engine goes through a long list of URLs. Adding a delay between each connection will prevent the Auto-Cache Engine from placing a heavy load on the processor that powers your web server. A value of 500 milliseconds is suggested here (half a second). If you experience problems, you can bump this up a little at a time, in increments of 500 milliseconds; until you find a happy place for your server. Please note that 1000 milliseconds = 1 full second." msgstr "" -#: src/includes/classes/MenuPageOptions.php:788 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:797 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:797 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:797 +#: src/includes/classes/MenuPageOptions.php:797 msgid "Auto-Cache User-Agent String" msgstr "" -#: src/includes/classes/MenuPageOptions.php:790 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:799 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:799 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:799 +#: src/includes/classes/MenuPageOptions.php:799 msgid "This is how the Auto-Cache Engine identifies itself when connecting to URLs. See User Agent in the Wikipedia." msgstr "" -#: src/includes/classes/MenuPageOptions.php:802 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:811 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:811 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:811 +#: src/includes/classes/MenuPageOptions.php:811 msgid "HTML Compression" msgstr "" -#: src/includes/classes/MenuPageOptions.php:807 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:816 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:816 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:816 +#: src/includes/classes/MenuPageOptions.php:816 msgid "Enable WebSharks™ HTML Compression?" msgstr "" -#: src/includes/classes/MenuPageOptions.php:809 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:818 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:818 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:818 +#: src/includes/classes/MenuPageOptions.php:818 msgid "No, do NOT compress HTML/CSS/JS code at runtime." msgstr "" -#: src/includes/classes/MenuPageOptions.php:810 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:819 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:819 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:819 +#: src/includes/classes/MenuPageOptions.php:819 msgid "Yes, I want to compress HTML/CSS/JS for blazing fast speeds." msgstr "" -#: src/includes/classes/MenuPageOptions.php:812 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:821 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:821 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:821 +#: src/includes/classes/MenuPageOptions.php:821 msgid "Note: This is experimental. Please report issues here." msgstr "" -#: src/includes/classes/MenuPageOptions.php:815 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:824 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:824 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:824 +#: src/includes/classes/MenuPageOptions.php:824 msgid "HTML Compression Options" msgstr "" -#: src/includes/classes/MenuPageOptions.php:816 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:825 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:825 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:825 +#: src/includes/classes/MenuPageOptions.php:825 msgid "You can learn more about all of these options here." msgstr "" -#: src/includes/classes/MenuPageOptions.php:818 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:827 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:827 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:827 +#: src/includes/classes/MenuPageOptions.php:827 msgid "Yes, combine CSS from <head> and <body> into fewer files." msgstr "" -#: src/includes/classes/MenuPageOptions.php:819 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:828 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:828 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:828 +#: src/includes/classes/MenuPageOptions.php:828 msgid "No, do not combine CSS from <head> and <body> into fewer files." msgstr "" -#: src/includes/classes/MenuPageOptions.php:822 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:831 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:831 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:831 +#: src/includes/classes/MenuPageOptions.php:831 msgid "Yes, compress the code in any unified CSS files." msgstr "" -#: src/includes/classes/MenuPageOptions.php:823 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:832 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:832 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:832 +#: src/includes/classes/MenuPageOptions.php:832 msgid "No, do not compress the code in any unified CSS files." msgstr "" -#: src/includes/classes/MenuPageOptions.php:826 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:835 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:835 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:835 +#: src/includes/classes/MenuPageOptions.php:835 msgid "Yes, combine JS from <head> into fewer files." msgstr "" -#: src/includes/classes/MenuPageOptions.php:827 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:836 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:836 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:836 +#: src/includes/classes/MenuPageOptions.php:836 msgid "No, do not combine JS from <head> into fewer files." msgstr "" -#: src/includes/classes/MenuPageOptions.php:830 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:839 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:839 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:839 +#: src/includes/classes/MenuPageOptions.php:839 msgid "Yes, combine JS footer scripts into fewer files." msgstr "" -#: src/includes/classes/MenuPageOptions.php:831 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:840 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:840 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:840 +#: src/includes/classes/MenuPageOptions.php:840 msgid "No, do not combine JS footer scripts into fewer files." msgstr "" -#: src/includes/classes/MenuPageOptions.php:834 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:843 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:843 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:843 +#: src/includes/classes/MenuPageOptions.php:843 msgid "Yes, combine CSS/JS from remote resources too." msgstr "" -#: src/includes/classes/MenuPageOptions.php:835 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:844 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:844 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:844 +#: src/includes/classes/MenuPageOptions.php:844 msgid "No, do not combine CSS/JS from remote resources." msgstr "" -#: src/includes/classes/MenuPageOptions.php:838 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:847 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:847 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:847 +#: src/includes/classes/MenuPageOptions.php:847 msgid "Yes, compress the code in any unified JS files." msgstr "" -#: src/includes/classes/MenuPageOptions.php:839 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:848 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:848 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:848 +#: src/includes/classes/MenuPageOptions.php:848 msgid "No, do not compress the code in any unified JS files." msgstr "" -#: src/includes/classes/MenuPageOptions.php:842 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:851 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:851 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:851 +#: src/includes/classes/MenuPageOptions.php:851 msgid "Yes, compress inline JavaScript snippets." msgstr "" -#: src/includes/classes/MenuPageOptions.php:843 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:852 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:852 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:852 +#: src/includes/classes/MenuPageOptions.php:852 msgid "No, do not compress inline JavaScript snippets." msgstr "" -#: src/includes/classes/MenuPageOptions.php:846 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:855 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:855 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:855 +#: src/includes/classes/MenuPageOptions.php:855 msgid "Yes, compress (remove extra whitespace) in the final HTML code too." msgstr "" -#: src/includes/classes/MenuPageOptions.php:847 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:856 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:856 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:856 +#: src/includes/classes/MenuPageOptions.php:856 msgid "No, do not compress the final HTML code." msgstr "" -#: src/includes/classes/MenuPageOptions.php:850 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:859 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:859 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:859 +#: src/includes/classes/MenuPageOptions.php:859 msgid "CSS Exclusion Patterns?" msgstr "" -#: src/includes/classes/MenuPageOptions.php:851 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:860 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:860 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:860 +#: src/includes/classes/MenuPageOptions.php:860 msgid "Sometimes there are special cases when a particular CSS file should NOT be consolidated or compressed in any way. This is where you will enter those if you need to (one per line). Searches are performed against the <link href=""> value, and also against the contents of any inline <style> tags (caSe insensitive). A wildcard * character can also be used when necessary; e.g., xy*-framework (where * = 0 or more characters that are NOT a slash /). Other special characters include: ** = 0 or more characters of any kind, including / slashes; ^ = beginning of the string; $ = end of the string. To learn more about this syntax, please see this KB article." msgstr "" -#: src/includes/classes/MenuPageOptions.php:854 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:863 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:863 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:863 +#: src/includes/classes/MenuPageOptions.php:863 msgid "JavaScript Exclusion Patterns?" msgstr "" -#: src/includes/classes/MenuPageOptions.php:855 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:864 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:864 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:864 +#: src/includes/classes/MenuPageOptions.php:864 msgid "Sometimes there are special cases when a particular JS file should NOT be consolidated or compressed in any way. This is where you will enter those if you need to (one per line). Searches are performed against the <script src=""> value, and also against the contents of any inline <script> tags (caSe insensitive). A wildcard * character can also be used when necessary; e.g., xy*-framework (where * = 0 or more characters that are NOT a slash /). Other special characters include: ** = 0 or more characters of any kind, including / slashes; ^ = beginning of the string; $ = end of the string. To learn more about this syntax, please see this KB article." msgstr "" -#: src/includes/classes/MenuPageOptions.php:858 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:867 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:867 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:867 +#: src/includes/classes/MenuPageOptions.php:867 msgid "URI Exclusions for HTML Compressor?" msgstr "" -#: src/includes/classes/MenuPageOptions.php:859 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:868 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:868 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:868 +#: src/includes/classes/MenuPageOptions.php:868 msgid "When you enable HTML Compression above, you may want to prevent certain pages on your site from being cached by the HTML Compressor. This is where you will enter those if you need to (one per line). Searches are performed against the REQUEST_URI; i.e., /path/?query (caSe insensitive). So, don't put in full URLs here, just word fragments found in the file path (or query string) is all you need, excluding the http:// and domain name. A wildcard * character can also be used when necessary; e.g., /category/abc-followed-by-* (where * = 0 or more characters that are NOT a slash /). Other special characters include: ** = 0 or more characters of any kind, including / slashes; ^ = beginning of the string; $ = end of the string. To learn more about this syntax, please see this KB article." msgstr "" -#: src/includes/classes/MenuPageOptions.php:864 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:873 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:873 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:873 +#: src/includes/classes/MenuPageOptions.php:873 msgid "HTML Compression Cache Expiration" msgstr "" -#: src/includes/classes/MenuPageOptions.php:866 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:875 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:875 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:875 +#: src/includes/classes/MenuPageOptions.php:875 msgid "Tip: the value that you specify here MUST be compatible with PHP's strtotime() function. Examples: 2 hours, 7 days, 6 months, 1 year." msgstr "" -#: src/includes/classes/MenuPageOptions.php:867 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:876 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:876 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:876 +#: src/includes/classes/MenuPageOptions.php:876 msgid "Note: This does NOT impact the overall cache expiration time that you configure with %1$s. It only impacts the sub-routines provided by the HTML Compressor. In fact, this expiration time is mostly irrelevant. The HTML Compressor uses an internal checksum, and it also checks filemtime() before using an existing cache file. The HTML Compressor class also handles the automatic cleanup of your cache directories to keep it from growing too large over time. Therefore, unless you have VERY little disk space there is no reason to set this to a lower value (even if your site changes dynamically quite often). If anything, you might like to increase this value which could help to further reduce server load. You can learn more here. We recommend setting this value to at least double that of your overall %1$s expiration time." msgstr "" -#: src/includes/classes/MenuPageOptions.php:869 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:878 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:878 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:878 +#: src/includes/classes/MenuPageOptions.php:878 msgid "Enable HTML Compression for Logged-In Users?" msgstr "" -#: src/includes/classes/MenuPageOptions.php:870 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:879 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:879 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:879 +#: src/includes/classes/MenuPageOptions.php:879 msgid "Disabled by default. This setting is only applicable when caching for Logged-In Users is enabled. This should remain disabled for logged-in users because the user-specific cache has a much shorter Time To Live (TTL) which means their cache is likely to expire more quickly than a normal visitor. Rebuilding the HTML Compressor cache is time-consuming and doing it too frequently will actually slow things down for them. For example, if you're logged into the site as a user and you submit a form, that triggers a clearing of the cache for that user, including the HTML Compressor cache (when Logged-In User caching is enabled). Lots of little actions you take can result in a clearing of the cache. This shorter TTL is not ideal when running the HTML Compressor because it does a deep analysis of the page content and the associated resources in order to intelligently compress things. For logged-in users, it is better to skip that extra work and just cache the HTML source as-is, avoiding that extra overhead. In short, do NOT turn this on unless you know what you're doing." msgstr "" -#: src/includes/classes/MenuPageOptions.php:872 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:881 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:881 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:881 +#: src/includes/classes/MenuPageOptions.php:881 msgid "No, disable HTML Compression for logged-in users (recommended)." msgstr "" -#: src/includes/classes/MenuPageOptions.php:873 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:882 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:882 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:882 +#: src/includes/classes/MenuPageOptions.php:882 msgid "Yes, enable HTML Compression for logged-in users." msgstr "" -#: src/includes/classes/MenuPageOptions.php:885 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:894 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:894 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:894 +#: src/includes/classes/MenuPageOptions.php:894 msgid "GZIP Compression" msgstr "" -#: src/includes/classes/MenuPageOptions.php:890 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:899 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:899 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:899 +#: src/includes/classes/MenuPageOptions.php:899 msgid "GZIP Compression (Optional; Highly Recommended)" msgstr "" -#: src/includes/classes/MenuPageOptions.php:891 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:900 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:900 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:900 +#: src/includes/classes/MenuPageOptions.php:900 msgid "You don't have to use an .htaccess file to enjoy the performance enhancements provided by this plugin; caching is handled automatically by WordPress/PHP alone. That being said, if you want to take advantage of the additional speed enhancements associated w/ GZIP compression (and we do recommend this), then you WILL need an .htaccess file to accomplish that part." msgstr "" -#: src/includes/classes/MenuPageOptions.php:892 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:901 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:901 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:901 +#: src/includes/classes/MenuPageOptions.php:901 msgid "%1$s fully supports GZIP compression on its output. However, it does not handle GZIP compression directly. We purposely left GZIP compression out of this plugin, because GZIP compression is something that should really be enabled at the Apache level or inside your php.ini file. GZIP compression can be used for things like JavaScript and CSS files as well, so why bother turning it on for only WordPress-generated pages when you can enable GZIP at the server level and cover all the bases!" msgstr "" -#: src/includes/classes/MenuPageOptions.php:893 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:902 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:902 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:902 +#: src/includes/classes/MenuPageOptions.php:902 msgid "If you want to enable GZIP, create an .htaccess file in your WordPress® installation directory, and put the following few lines in it. Alternatively, if you already have an .htaccess file, just add these lines to it, and that is all there is to it. GZIP is now enabled in the recommended way! See also: video about GZIP Compression." msgstr "" -#: src/includes/classes/MenuPageOptions.php:907 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:916 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:916 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:916 +#: src/includes/classes/MenuPageOptions.php:916 msgid "Static CDN Filters" msgstr "" -#: src/includes/classes/MenuPageOptions.php:911 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:920 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:920 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:920 +#: src/includes/classes/MenuPageOptions.php:920 msgid "Clear CDN Cache (Bump CDN Invalidation Counter)" msgstr "" -#: src/includes/classes/MenuPageOptions.php:911 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:920 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:920 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:920 +#: src/includes/classes/MenuPageOptions.php:920 msgid "Clear CDN Cache" msgstr "" -#: src/includes/classes/MenuPageOptions.php:912 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:921 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:921 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:921 +#: src/includes/classes/MenuPageOptions.php:921 msgid "Enable Static CDN Filters (e.g., MaxCDN/CloudFront)?" msgstr "" -#: src/includes/classes/MenuPageOptions.php:913 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:922 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:922 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:922 +#: src/includes/classes/MenuPageOptions.php:922 msgid "This feature allows you to serve some and/or ALL static files on your site from a CDN of your choosing. This is made possible through content/URL filters exposed by WordPress and implemented by %1$s. All it requires is that you setup a CDN host name sourced by your WordPress installation domain. You enter that CDN host name below and %1$s will do the rest! Super easy, and it doesn't require any DNS changes either. :-) Please click here for a general set of instructions." msgstr "" -#: src/includes/classes/MenuPageOptions.php:914 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:923 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:923 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:923 +#: src/includes/classes/MenuPageOptions.php:923 msgid "What's a CDN? It's a Content Delivery Network (i.e., a network of optimized servers) designed to cache static resources served from your site (e.g., JS/CSS/images and other static files) onto it's own servers, which are located strategically in various geographic areas around the world. Integrating a CDN for static files can dramatically improve the speed and performance of your site, lower the burden on your own server, and reduce latency associated with visitors attempting to access your site from geographic areas of the world that might be very far away from the primary location of your own web servers." msgstr "" -#: src/includes/classes/MenuPageOptions.php:917 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:926 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:926 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:926 +#: src/includes/classes/MenuPageOptions.php:926 msgid "It appears that your server is running NGINX and does not support .htaccess rules. Please update your server configuration manually. Note that updating your NGINX server configuration before enabling Static CDN Filters is recommended to prevent any CORS errors with your CDN. If you've already updated your NGINX configuration, you can safely ignore this message." msgstr "" -#: src/includes/classes/MenuPageOptions.php:921 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:930 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:930 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:930 +#: src/includes/classes/MenuPageOptions.php:930 msgid "No, I do NOT want CDN filters applied at runtime." msgstr "" -#: src/includes/classes/MenuPageOptions.php:922 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:931 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:931 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:931 +#: src/includes/classes/MenuPageOptions.php:931 msgid "Yes, I want CDN filters applied w/ my configuration below." msgstr "" -#: src/includes/classes/MenuPageOptions.php:929 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:938 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:938 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:938 +#: src/includes/classes/MenuPageOptions.php:938 msgid "CDN Host Name (Required)" msgstr "" -#: src/includes/classes/MenuPageOptions.php:935 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:944 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:944 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:944 +#: src/includes/classes/MenuPageOptions.php:944 msgid "This field is really all that's necessary to get Static CDN Filters working! However, it does requires a little bit of work on your part. You need to setup and configure a CDN before you can fill in this field. Once you configure a CDN, you'll receive a host name (provided by your CDN), which you'll enter here; e.g., js9dgjsl4llqpp.cloudfront.net. We recommend MaxCDN, Amazon CloudFront, KeyCDN, and/or CDN77 but this should work with many of the most popular CDNs. Please read this article for a general set of instructions. We also have a MaxCDN tutorial, CloudFront tutorial, KeyCDN tutorial, and a CDN77 tutorial to walk you through the process." msgstr "" -#: src/includes/classes/MenuPageOptions.php:940 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:949 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:949 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:949 +#: src/includes/classes/MenuPageOptions.php:949 msgid "Multiple CDN Host Names for Domain Sharding and Multisite Networks (Optional)" msgstr "" -#: src/includes/classes/MenuPageOptions.php:941 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:950 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:950 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:950 +#: src/includes/classes/MenuPageOptions.php:950 msgid "%1$s also supports multiple CDN Host Names for any given domain. Using multiple CDN Host Names (instead of just one, as seen above) is referred to as Domain Sharding (click here to learn more). If you configure multiple CDN Host Names (i.e., if you implement Domain Sharding), %1$s will use the first one that you list for static resources loaded in the HTML <head> section, the last one for static resources loaded in the footer, and it will choose one at random for all other static resource locations. Configuring multiple CDN Host Names can improve speed! This is a way for advanced site owners to work around concurrency limits in popular browsers; i.e., making it possible for browsers to download many more resources simultaneously, resulting in a faster overall completion time. In short, this tells the browser that your website will not be overloaded by concurrent requests, because static resources are in fact being served by a content-delivery network (i.e., multiple CDN host names). If you use this functionality for Domain Sharding, we suggest that you setup one CDN Distribution (aka: Pull Zone), and then create multiple CNAME records pointing to that distribution. You can enter each of your CNAMES in the field below, as instructed." msgstr "" -#: src/includes/classes/MenuPageOptions.php:942 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:951 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:951 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:951 +#: src/includes/classes/MenuPageOptions.php:951 msgid "On WordPress Multisite Network installations, this field also allows you to configure different CDN Host Names for each domain (or sub-domain) that you run from a single installation of WordPress. For more information about configuring Static CDN Filters on a WordPress Multisite Network, see this tutorial: Static CDN Filters for WordPress Multisite Networks." msgstr "" -#: src/includes/classes/MenuPageOptions.php:944 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:953 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:953 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:953 +#: src/includes/classes/MenuPageOptions.php:953 msgid "↑ Syntax: This is a line-delimited list of domain mappings. Each line should start with your WordPress domain name (e.g., %1$s), followed by an = sign, followed by a comma-delimited list of CDN Host Names associated with the domain in that line. If you're running a Multisite Network installation of WordPress, you might have multiple configuration lines. Otherwise, you should only need one line to configure multiple CDN Host Names for a standard WordPress installation." msgstr "" -#: src/includes/classes/MenuPageOptions.php:948 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:957 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:957 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:957 +#: src/includes/classes/MenuPageOptions.php:957 msgid "CDN Supports HTTPS Connections?" msgstr "" -#: src/includes/classes/MenuPageOptions.php:950 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:959 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:959 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:959 +#: src/includes/classes/MenuPageOptions.php:959 msgid "No, I don't serve content over https://; or I haven't configured my CDN w/ an SSL certificate." msgstr "" -#: src/includes/classes/MenuPageOptions.php:951 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:960 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:960 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:960 +#: src/includes/classes/MenuPageOptions.php:960 msgid "Yes, I've configured my CDN w/ an SSL certificate; I need https:// enabled." msgstr "" -#: src/includes/classes/MenuPageOptions.php:958 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:967 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:967 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:967 +#: src/includes/classes/MenuPageOptions.php:967 msgid "Additional Options (For Advanced Users)" msgstr "" -#: src/includes/classes/MenuPageOptions.php:963 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:972 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:972 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:972 +#: src/includes/classes/MenuPageOptions.php:972 msgid "Everything else below is 100% completely optional; i.e., not required to enjoy the benefits of Static CDN Filters." msgstr "" -#: src/includes/classes/MenuPageOptions.php:967 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:976 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:976 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:976 +#: src/includes/classes/MenuPageOptions.php:976 msgid "Whitelisted File Extensions (Optional; Comma-Delimited)" msgstr "" -#: src/includes/classes/MenuPageOptions.php:969 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:978 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:978 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:978 +#: src/includes/classes/MenuPageOptions.php:978 msgid "If you leave this empty a default set of extensions are taken from WordPress itself. The default set of whitelisted file extensions includes everything supported by the WordPress media library." msgstr "" -#: src/includes/classes/MenuPageOptions.php:971 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:980 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:980 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:980 +#: src/includes/classes/MenuPageOptions.php:980 msgid "Blacklisted File Extensions (Optional; Comma-Delimited)" msgstr "" -#: src/includes/classes/MenuPageOptions.php:973 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:982 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:982 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:982 +#: src/includes/classes/MenuPageOptions.php:982 msgid "With or without a whitelist, you can force exclusions by explicitly blacklisting certain file extensions of your choosing. Please note, the php extension will never be considered a static resource; i.e., it is automatically blacklisted at all times." msgstr "" -#: src/includes/classes/MenuPageOptions.php:977 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:986 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:986 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:986 +#: src/includes/classes/MenuPageOptions.php:986 msgid "Whitelisted URI Inclusion Patterns (Optional; One Per Line)" msgstr "" -#: src/includes/classes/MenuPageOptions.php:979 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:988 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:988 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:988 +#: src/includes/classes/MenuPageOptions.php:988 msgid "Note: please remember that your entries here should be formatted as a line-delimited list; e.g., one inclusion pattern per line." msgstr "" -#: src/includes/classes/MenuPageOptions.php:980 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:989 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:989 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:989 +#: src/includes/classes/MenuPageOptions.php:989 msgid "If provided, only local URIs matching one of the patterns you list here will be served from your CDN Host Name. URI patterns are caSe-insensitive. A wildcard * will match zero or more characters in any of your patterns. A caret ^ symbol will match zero or more characters that are NOT the / character. For instance, */wp-content/* here would indicate that you only want to filter URLs that lead to files located inside the wp-content directory. Adding an additional line with */wp-includes/* would filter URLs in the wp-includes directory also. If you leave this empty, ALL files matching a static file extension will be served from your CDN; i.e., the default behavior." msgstr "" -#: src/includes/classes/MenuPageOptions.php:981 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:990 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:990 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:990 +#: src/includes/classes/MenuPageOptions.php:990 msgid "Please note that URI patterns are tested against a file's path (i.e., a file's URI, and NOT its full URL). A URI always starts with a leading /. To clarify, a URI is the portion of the URL which comes after the host name. For instance, given the following URL: http://example.com/path/to/style.css?ver=3, the URI you are matching against would be: /path/to/style.css?ver=3. To whitelist this URI, you could use a line that contains something like this: /path/to/*.css*" msgstr "" -#: src/includes/classes/MenuPageOptions.php:983 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:992 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:992 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:992 +#: src/includes/classes/MenuPageOptions.php:992 msgid "Blacklisted URI Exclusion Patterns (Optional; One Per Line)" msgstr "" -#: src/includes/classes/MenuPageOptions.php:985 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:994 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:994 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:994 +#: src/includes/classes/MenuPageOptions.php:994 msgid "With or without a whitelist, you can force exclusions by explicitly blacklisting certain URI patterns. URI patterns are caSe-insensitive. A wildcard * will match zero or more characters in any of your patterns. A caret ^ symbol will match zero or more characters that are NOT the / character. For instance, */wp-content/*/dynamic.pdf* would exclude a file with the name dynamic.pdf located anywhere inside a sub-directory of wp-content." msgstr "" -#: src/includes/classes/MenuPageOptions.php:990 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:999 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:999 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:999 +#: src/includes/classes/MenuPageOptions.php:999 msgid "Query String Invalidation Variable Name" msgstr "" -#: src/includes/classes/MenuPageOptions.php:992 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1001 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1001 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1001 +#: src/includes/classes/MenuPageOptions.php:1001 msgid "Each filtered URL (which then leads to your CDN) will include this query string variable as an easy way to invalidate the CDN cache at any time. Invalidating the CDN cache is simply a matter of changing the global invalidation counter (i.e., the value assigned to this query string variable). %1$s manages invalidations automatically; i.e., %1$s will automatically bump an internal counter each time you upgrade a WordPress component (e.g., a plugin, theme, or WP itself). Or, if you ask %1$s to invalidate the CDN cache (e.g., a manual clearing of the CDN cache); the internal counter is bumped then too. In short, %1$s handles cache invalidations for you reliably. This option simply allows you to customize the query string variable name which makes cache invalidations possible. Please note, the default value is adequate for most sites. You can change this if you like, but it's not necessary." msgstr "" -#: src/includes/classes/MenuPageOptions.php:993 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1002 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1002 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1002 +#: src/includes/classes/MenuPageOptions.php:1002 msgid "Tip: You can also tell %1$s to automatically bump the CDN Invalidation Counter whenever you clear the cache manually. See: %1$s → Manual Cache Clearing → Clear the CDN Cache Too?" msgstr "" -#: src/includes/classes/MenuPageOptions.php:994 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1003 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1003 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1003 +#: src/includes/classes/MenuPageOptions.php:1003 msgid "Note: If you empty this field, it will effectively disable the %1$s invalidation system for Static CDN Filters; i.e., the query string variable will NOT be included if you do not supply a variable name." msgstr "" -#: src/includes/classes/MenuPageOptions.php:1007 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1016 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1016 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1016 +#: src/includes/classes/MenuPageOptions.php:1016 msgid "Dynamic Version Salt" msgstr "" -#: src/includes/classes/MenuPageOptions.php:1012 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1021 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1021 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1021 +#: src/includes/classes/MenuPageOptions.php:1021 msgid " GEEK ALERT This is for VERY advanced users only..." msgstr "" -#: src/includes/classes/MenuPageOptions.php:1013 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1022 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1022 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1022 +#: src/includes/classes/MenuPageOptions.php:1022 msgid "Note: Understanding the %1$s Branched Cache Structure is a prerequisite to understanding how Dynamic Version Salts are added to the mix." msgstr "" -#: src/includes/classes/MenuPageOptions.php:1014 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1023 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1023 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1023 +#: src/includes/classes/MenuPageOptions.php:1023 msgid "A Version Salt gives you the ability to dynamically create multiple variations of the cache, and those dynamic variations will be served on subsequent visits; e.g., if a visitor has a specific cookie (of a certain value) they will see pages which were cached with that version (i.e., w/ that Version Salt: the value of the cookie). A Version Salt can really be anything." msgstr "" -#: src/includes/classes/MenuPageOptions.php:1015 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1024 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1024 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1024 +#: src/includes/classes/MenuPageOptions.php:1024 msgid "A Version Salt can be a single variable like $_COOKIE['my_cookie'], or it can be a combination of multiple variables, like $_COOKIE['my_cookie'].$_COOKIE['my_other_cookie']. (When using multiple variables, please separate them with a dot, as shown in the example.)" msgstr "" -#: src/includes/classes/MenuPageOptions.php:1016 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1025 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1025 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1025 +#: src/includes/classes/MenuPageOptions.php:1025 msgid "Experts could even use PHP ternary expressions that evaluate into something. For example: ((preg_match('/iPhone/i', $_SERVER['HTTP_USER_AGENT'])) ? 'iPhones' : ''). This would force a separate version of the cache to be created for iPhones (e.g., /cache/PROTOCOL/HOST/REQUEST-URI.v/iPhones.html)." msgstr "" -#: src/includes/classes/MenuPageOptions.php:1017 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1026 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1026 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1026 +#: src/includes/classes/MenuPageOptions.php:1026 msgid "For more documentation, please see Dynamic Version Salts." msgstr "" -#: src/includes/classes/MenuPageOptions.php:1019 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1028 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1028 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1028 +#: src/includes/classes/MenuPageOptions.php:1028 msgid "Create a Dynamic Version Salt For %1$s?       150%% OPTIONAL" msgstr "" -#: src/includes/classes/MenuPageOptions.php:1021 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1030 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1030 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1030 +#: src/includes/classes/MenuPageOptions.php:1030 msgid "Super Globals work here; $GLOBALS['table_prefix'] is a popular one.
Or, perhaps a PHP Constant defined in /wp-config.php; such as WPLANG or DB_HOST." msgstr "" -#: src/includes/classes/MenuPageOptions.php:1022 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1031 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1031 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1031 +#: src/includes/classes/MenuPageOptions.php:1031 msgid "Important: your Version Salt is scanned for PHP syntax errors via phpCodeChecker.com. If errors are found, you'll receive a notice in the Dashboard." msgstr "" -#: src/includes/classes/MenuPageOptions.php:1023 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1032 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1032 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1032 +#: src/includes/classes/MenuPageOptions.php:1032 msgid "If you've enabled a separate cache for each user (optional) that's perfectly OK. A Version Salt works with user caching too." msgstr "" -#: src/includes/classes/MenuPageOptions.php:1033 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1042 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1042 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1042 +#: src/includes/classes/MenuPageOptions.php:1042 msgid "Theme/Plugin Developers" msgstr "" -#: src/includes/classes/MenuPageOptions.php:1038 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1047 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1047 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1047 +#: src/includes/classes/MenuPageOptions.php:1047 msgid "Developing a Theme or Plugin for WordPress?" msgstr "" -#: src/includes/classes/MenuPageOptions.php:1039 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1048 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1048 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1048 +#: src/includes/classes/MenuPageOptions.php:1048 msgid "Tip: %1$s can be disabled temporarily. If you're a theme/plugin developer, you can set a flag within your PHP code to disable the cache engine at runtime. Perhaps on a specific page, or in a specific scenario. In your PHP script, set: $_SERVER['COMET_CACHE_ALLOWED'] = FALSE; or define('COMET_CACHE_ALLOWED', FALSE). %1$s is also compatible with: define('DONOTCACHEPAGE', TRUE). It does't matter where or when you define one of these, because %1$s is the last thing to run before script execution ends." msgstr "" -#: src/includes/classes/MenuPageOptions.php:1041 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1050 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1050 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1050 +#: src/includes/classes/MenuPageOptions.php:1050 msgid "Writing \"Advanced Cache\" Plugins Specifically for %1$s" msgstr "" -#: src/includes/classes/MenuPageOptions.php:1042 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1051 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1051 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1051 +#: src/includes/classes/MenuPageOptions.php:1051 msgid "Theme/plugin developers can take advantage of the %1$s plugin architecture by creating PHP files inside this special directory: /wp-content/ac-plugins/. There is an example plugin file @ GitHub (please review it carefully and ask questions). If you develop a plugin for %1$s, please share it with the community by publishing it in the plugins respository at WordPress.org." msgstr "" -#: src/includes/classes/MenuPageOptions.php:1043 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1052 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1052 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1052 +#: src/includes/classes/MenuPageOptions.php:1052 msgid "Why does %1$s have it's own plugin architecture? WordPress loads the advanced-cache.php drop-in file (for caching purposes) very early-on; before any other plugins or a theme. For this reason, %1$s implements it's own watered-down version of functions like add_action(), do_action(), add_filter(), apply_filters()." msgstr "" -#: src/includes/classes/MenuPageOptions.php:1054 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1063 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1063 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1063 +#: src/includes/classes/MenuPageOptions.php:1063 msgid "Import/Export Options" msgstr "" -#: src/includes/classes/MenuPageOptions.php:1059 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1068 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1068 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1068 +#: src/includes/classes/MenuPageOptions.php:1068 msgid "Import Options from Another %1$s Installation?" msgstr "" -#: src/includes/classes/MenuPageOptions.php:1060 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1069 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1069 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1069 +#: src/includes/classes/MenuPageOptions.php:1069 msgid "Upload your %1$s-options.json file and click \"Save All Changes\" below. The options provided by your import file will override any that exist currently." msgstr "" -#: src/includes/classes/MenuPageOptions.php:1063 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1072 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1072 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1072 +#: src/includes/classes/MenuPageOptions.php:1072 msgid "Export Existing Options from this %1$s Installation?" msgstr "" -#: src/includes/classes/MenuPageOptions.php:1066 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1075 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1075 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1075 +#: src/includes/classes/MenuPageOptions.php:1075 msgid "%1$s-options.json" msgstr "" -#: src/includes/classes/MenuPageOptions.php:1067 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1076 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1076 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1076 +#: src/includes/classes/MenuPageOptions.php:1076 msgid "Download your existing options and import them all into another %1$s installation; saves time on future installs." msgstr "" -#: src/includes/classes/MenuPageOptions.php:1075 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1084 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1084 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1084 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:168 +#: src/includes/classes/MenuPageOptions.php:1084 #: src/includes/classes/MenuPageProUpdater.php:168 msgid "Save All Changes" msgstr "" -#: src/includes/classes/MenuPageProUpdater.php:29 -msgid "Update %1$s Now" +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/VsUpgrades.php:202 +#: .~build/comet-cache/src/includes/classes/VsUpgrades.php:202 +#: .~build/comet-cache-pro/src/includes/classes/VsUpgrades.php:202 +#: src/includes/classes/VsUpgrades.php:202 +msgid "Woohoo! %1$s activated. :-)" msgstr "" -#: src/includes/classes/MenuPageProUpdater.php:38 -#: src/includes/classes/MenuPageStats.php:34 -msgid "Options" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:82 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:82 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:82 +#: src/includes/traits/Ac/NcDebugUtils.php:82 +msgid "because `PHP_SAPI` reports that you are currently running from the command line." msgstr "" -#: src/includes/classes/MenuPageProUpdater.php:75 -#: src/includes/traits/Plugin/MenuPageUtils.php:93 -#: src/includes/traits/Plugin/MenuPageUtils.php:121 -msgid "Pro Plugin Updater" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:86 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:86 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:86 +#: src/includes/traits/Ac/NcDebugUtils.php:86 +msgid "because `$_SERVER['HTTP_HOST']` is missing from your server configuration." msgstr "" -#: src/includes/classes/MenuPageProUpdater.php:106 -msgid "Update Credentials" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:90 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:90 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:90 +#: src/includes/traits/Ac/NcDebugUtils.php:90 +msgid "because `$_SERVER['REQUEST_URI']` is missing from your server configuration." msgstr "" -#: src/includes/classes/MenuPageProUpdater.php:111 -msgid "CometCache.com Authentication" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:95 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:95 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:95 +#: src/includes/traits/Ac/NcDebugUtils.php:95 +msgid "because the s2Member plugin set the PHP constant `COMET_CACHE_ALLOWED` to a boolean-ish `FALSE` value at runtime. The s2Member plugin is serving content that must remain dynamic on this particular page, and therefore this page was intentionally not cached for a very good reason." msgstr "" -#: src/includes/classes/MenuPageProUpdater.php:112 -msgid "From this page you can update to the latest version of %1$s Pro for WordPress. %1$s Pro is a premium product available for purchase @ cometcache.com. In order to connect with our update servers, you must supply your License Key. Your License Key is located under \"My Account\" when you log in @ cometcache.com. This will authenticate your copy of %1$s Pro; providing you with access to the latest version. You only need to enter these credentials once. %1$s Pro will save them in your WordPress database; making future upgrades even easier. If you prefer to upgrade manually, see this article." +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:97 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:97 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:97 +#: src/includes/traits/Ac/NcDebugUtils.php:97 +msgid "because the PHP constant `COMET_CACHE_ALLOWED` has been set to a boolean-ish `FALSE` value at runtime. Perhaps by WordPress itself, or by one of your themes/plugins. This usually means that you have a theme/plugin intentionally disabling the cache on this page; and it's usually for a very good reason." msgstr "" -#: src/includes/classes/MenuPageProUpdater.php:114 -msgid "Username" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:102 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:102 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:102 +#: src/includes/traits/Ac/NcDebugUtils.php:102 +msgid "because the environment variable `$_SERVER['COMET_CACHE_ALLOWED']` has been set to a boolean-ish `FALSE` value at runtime. Perhaps by WordPress itself, or by one of your themes/plugins. This usually means that you have a theme/plugin intentionally disabling the cache on this page; and it's usually for a very good reason." msgstr "" -#: src/includes/classes/MenuPageProUpdater.php:116 -msgid "License Key" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:106 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:106 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:106 +#: src/includes/traits/Ac/NcDebugUtils.php:106 +msgid "because the PHP constant `DONOTCACHEPAGE` has been set at runtime. Perhaps by WordPress itself, or by one of your themes/plugins. This usually means that you have a theme/plugin intentionally disabling the cache on this page; and it's usually for a very good reason." msgstr "" -#: src/includes/classes/MenuPageProUpdater.php:127 -msgid "Update Notifier" -msgstr "" - -#: src/includes/classes/MenuPageProUpdater.php:132 -msgid "%1$s™ Update Notifier" -msgstr "" - -#: src/includes/classes/MenuPageProUpdater.php:133 -msgid "When a new version of %1$s Pro becomes available, %1$s Pro can display a notification in your WordPress Dashboard prompting you to return to this page and perform an upgrade. Would you like this functionality enabled or disabled?" -msgstr "" - -#: src/includes/classes/MenuPageProUpdater.php:136 -msgid "Yes, display a notification in my WordPress Dashboard when a new version is available." -msgstr "" - -#: src/includes/classes/MenuPageProUpdater.php:137 -msgid "No, do not display any %1$s update notifications in my WordPress Dashboard." -msgstr "" - -#: src/includes/classes/MenuPageProUpdater.php:153 -msgid "%1$s™ Beta Testers" -msgstr "" - -#: src/includes/classes/MenuPageProUpdater.php:154 -msgid "If you would like to participate in our beta program and receive new features and bug fixes before they are released to the public, %1$s can include Release Candidates when checking for updates. Release Candidates are almost-ready-for-production and have already been through many internal test runs. Our team runs the latest Release Candidate on all of our production sites, but that doesn't mean you'll want to do the same. :-) Please report any issues with Release Candidates on GitHub." -msgstr "" - -#: src/includes/classes/MenuPageProUpdater.php:157 -msgid "No, do not check for Release Candidates; I only want public releases." -msgstr "" - -#: src/includes/classes/MenuPageProUpdater.php:158 -msgid "Yes, check for Release Candidates; I want to help with testing." -msgstr "" - -#: src/includes/classes/MenuPageProUpdater.php:160 -msgid "How do you know if you're running a Release Candidate? If you're running a Release Candidate, the version number will end with -RC, e.g., Comet Cache™ Pro v151201-RC. To receive updates about Release Candidates, including a Release Candidate changelog for each release, please sign up for the beta testers mailing list." -msgstr "" - -#: src/includes/classes/MenuPageStats.php:29 -msgid "Refresh Stats/Charts" -msgstr "" - -#: src/includes/classes/MenuPageStats.php:71 -msgid "Statistics" -msgstr "" - -#: src/includes/classes/MenuPageStats.php:94 -#: src/includes/traits/Plugin/AdminBarUtils.php:263 -msgid "Current Cache Totals" -msgstr "" - -#: src/includes/classes/MenuPageStats.php:101 -#: src/includes/traits/Plugin/AdminBarUtils.php:270 -msgid "Current Disk Health" -msgstr "" - -#: src/includes/classes/MenuPageStats.php:102 -#: src/includes/traits/Plugin/AdminBarUtils.php:271 -msgid "total capacity" -msgstr "" - -#: src/includes/classes/MenuPageStats.php:103 -#: src/includes/traits/Plugin/AdminBarUtils.php:272 -msgid "available" -msgstr "" - -#: src/includes/classes/MenuPageStats.php:107 -msgid "Current System Health" -msgstr "" - -#: src/includes/classes/MenuPageStats.php:108 -msgid "Memory Usage:" -msgstr "" - -#: src/includes/classes/MenuPageStats.php:109 -msgid "Load Average:" -msgstr "" - -#: src/includes/classes/MenuPageStats.php:115 -msgid "Cache File Counts" -msgstr "" - -#: src/includes/classes/MenuPageStats.php:121 -msgid "Cache File Sizes" -msgstr "" - -#: src/includes/classes/MenuPageStats.php:130 -msgid "OPcache Memory" -msgstr "" - -#: src/includes/classes/MenuPageStats.php:131 -msgid "free" -msgstr "" - -#: src/includes/classes/MenuPageStats.php:132 -msgid "used" -msgstr "" - -#: src/includes/classes/MenuPageStats.php:133 -msgid "wasted" -msgstr "" - -#: src/includes/classes/MenuPageStats.php:137 -msgid "OPcache Totals" -msgstr "" - -#: src/includes/classes/MenuPageStats.php:138 -msgid "cached scripts" -msgstr "" - -#: src/includes/classes/MenuPageStats.php:139 -msgid "total cached keys" -msgstr "" - -#: src/includes/classes/MenuPageStats.php:143 -msgid "OPcache Hits/Misses" -msgstr "" - -#: src/includes/classes/MenuPageStats.php:144 -msgid "hits" -msgstr "" - -#: src/includes/classes/MenuPageStats.php:145 -msgid "misses" -msgstr "" - -#: src/includes/classes/MenuPageStats.php:146 -msgid "hit rate" -msgstr "" - -#: src/includes/classes/VsUpgrades.php:201 -msgid "Woohoo! %1$s activated. :-)" -msgstr "" - -#: src/includes/traits/Ac/HtmlCUtils.php:46 -msgid "%1$s HTML Compressor" -msgstr "" - -#: src/includes/traits/Ac/HtmlCUtils.php:79 -msgid "Failure: %1$s" -msgstr "" - -#: src/includes/traits/Ac/NcDebugUtils.php:82 -msgid "because `PHP_SAPI` reports that you are currently running from the command line." -msgstr "" - -#: src/includes/traits/Ac/NcDebugUtils.php:86 -msgid "because `$_SERVER['HTTP_HOST']` is missing from your server configuration." -msgstr "" - -#: src/includes/traits/Ac/NcDebugUtils.php:90 -msgid "because `$_SERVER['REQUEST_URI']` is missing from your server configuration." -msgstr "" - -#: src/includes/traits/Ac/NcDebugUtils.php:95 -msgid "because the s2Member plugin set the PHP constant `COMET_CACHE_ALLOWED` to a boolean-ish `FALSE` value at runtime. The s2Member plugin is serving content that must remain dynamic on this particular page, and therefore this page was intentionally not cached for a very good reason." -msgstr "" - -#: src/includes/traits/Ac/NcDebugUtils.php:97 -msgid "because the PHP constant `COMET_CACHE_ALLOWED` has been set to a boolean-ish `FALSE` value at runtime. Perhaps by WordPress itself, or by one of your themes/plugins. This usually means that you have a theme/plugin intentionally disabling the cache on this page; and it's usually for a very good reason." -msgstr "" - -#: src/includes/traits/Ac/NcDebugUtils.php:102 -msgid "because the environment variable `$_SERVER['COMET_CACHE_ALLOWED']` has been set to a boolean-ish `FALSE` value at runtime. Perhaps by WordPress itself, or by one of your themes/plugins. This usually means that you have a theme/plugin intentionally disabling the cache on this page; and it's usually for a very good reason." -msgstr "" - -#: src/includes/traits/Ac/NcDebugUtils.php:106 -msgid "because the PHP constant `DONOTCACHEPAGE` has been set at runtime. Perhaps by WordPress itself, or by one of your themes/plugins. This usually means that you have a theme/plugin intentionally disabling the cache on this page; and it's usually for a very good reason." -msgstr "" - -#: src/includes/traits/Ac/NcDebugUtils.php:110 -msgid "because the environment variable `$_SERVER['DONOTCACHEPAGE']` has been set at runtime. Perhaps by WordPress itself, or by one of your themes/plugins. This usually means that you have a theme/plugin intentionally disabling the cache on this page; and it's usually for a very good reason." +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:110 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:110 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:110 +#: src/includes/traits/Ac/NcDebugUtils.php:110 +msgid "because the environment variable `$_SERVER['DONOTCACHEPAGE']` has been set at runtime. Perhaps by WordPress itself, or by one of your themes/plugins. This usually means that you have a theme/plugin intentionally disabling the cache on this page; and it's usually for a very good reason." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:114 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:114 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:114 #: src/includes/traits/Ac/NcDebugUtils.php:114 msgid "because `$_GET['%1$sAC']` is set to a boolean-ish FALSE value." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:118 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:118 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:118 #: src/includes/traits/Ac/NcDebugUtils.php:118 msgid "because `$_SERVER['REQUEST_METHOD']` is `POST`, `PUT`, `DELETE`, `HEAD`, `OPTIONS`, `TRACE` or `CONNECT`. These request methods should never (ever) be cached in any way." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:122 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:122 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:122 #: src/includes/traits/Ac/NcDebugUtils.php:122 msgid "because `[current IP address]` === `$_SERVER['SERVER_ADDR']`; i.e. a self-serve request. DEVELOPER TIP: if you are testing on a localhost installation, please add `define('LOCALHOST', TRUE);` to your `/wp-config.php` file while you run tests :-) Remove it (or set it to a `FALSE` value) once you go live on the web." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:126 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:126 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:126 #: src/includes/traits/Ac/NcDebugUtils.php:126 msgid "because `$_SERVER['REQUEST_URI']` indicates this is a `/feed`; and the configuration of this site says not to cache XML-based feeds." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:130 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:130 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:130 #: src/includes/traits/Ac/NcDebugUtils.php:130 msgid "because `$_SERVER['REQUEST_URI']` indicates this is a `wp-` or `xmlrpc` file; i.e. a WordPress systematic file. WordPress systematics are never (ever) cached in any way." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:134 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:134 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:134 #: src/includes/traits/Ac/NcDebugUtils.php:134 msgid "because `$_SERVER['REQUEST_URI']` or the `is_admin()` function indicates this is an administrative area of the site." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:138 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:138 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:138 #: src/includes/traits/Ac/NcDebugUtils.php:138 msgid "because `$_SERVER['REQUEST_URI']` indicates this is a Multisite Network; and this was a request for `/files/*`, not a page." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:143 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:143 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:143 #: src/includes/traits/Ac/NcDebugUtils.php:143 msgid "because the current user visiting this page (usually YOU), appears to be logged-in. The current configuration says NOT to cache pages for logged-in visitors. This message may also appear if you have an active PHP session on this site, or if you've left (or replied to) a comment recently. If this message continues, please clear your cookies and try again." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:147 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:147 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:147 #: src/includes/traits/Ac/NcDebugUtils.php:147 msgid "because the current page contains `_wpnonce` or `akismet_comment_nonce`. While your current configuration states that pages SHOULD be cache for logged-in visitors, `*nonce*` values in the markup are not cache-compatible. See http://wsharks.com/1O1Kudy for further details." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:151 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:151 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:151 #: src/includes/traits/Ac/NcDebugUtils.php:151 msgid "because the current page contains `_wpnonce` or `akismet_comment_nonce`. Note that `*nonce*` values in the markup are not cache-compatible. See http://wsharks.com/1O1Kudy for further details." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:155 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:155 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:155 #: src/includes/traits/Ac/NcDebugUtils.php:155 msgid "because the current user appeared to be logged into the site (in one way or another); but %1$s was unable to formulate a User Token for them. Please report this as a possible bug." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:159 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:159 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:159 #: src/includes/traits/Ac/NcDebugUtils.php:159 msgid "because `$_GET` contains query string data. The current configuration says NOT to cache GET requests with a query string." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:163 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:163 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:163 #: src/includes/traits/Ac/NcDebugUtils.php:163 msgid "because `$_REQUEST` indicates this is simply a preview of something to come." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:167 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:167 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:167 #: src/includes/traits/Ac/NcDebugUtils.php:167 msgid "because `$_SERVER['REQUEST_URI']` matches a configured URI Exclusion Pattern on this installation." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:171 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:171 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:171 #: src/includes/traits/Ac/NcDebugUtils.php:171 msgid "because `$_SERVER['HTTP_USER_AGENT']` matches a configured User-Agent Exclusion Pattern on this installation." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:175 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:175 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:175 #: src/includes/traits/Ac/NcDebugUtils.php:175 msgid "because `$_SERVER['HTTP_REFERER']` and/or `$_GET['_wp_http_referer']` matches a configured HTTP Referrer Exclusion Pattern on this installation." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:179 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:179 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:179 #: src/includes/traits/Ac/NcDebugUtils.php:179 msgid "because the WordPress `is_404()` Conditional Tag says the current page is a 404 error. The current configuration says NOT to cache 404 errors." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:183 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:183 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:183 #: src/includes/traits/Ac/NcDebugUtils.php:183 msgid "because a plugin running on this installation says this page is in Maintenance Mode; i.e. is not available publicly at this time." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:187 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:187 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:187 #: src/includes/traits/Ac/NcDebugUtils.php:187 msgid "because %1$s is unable to cache already-compressed output. Please use `mod_deflate` w/ Apache; or use `zlib.output_compression` in your `php.ini` file. %1$s is NOT compatible with `ob_gzhandler()` and others like this." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:191 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:191 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:191 #: src/includes/traits/Ac/NcDebugUtils.php:191 msgid "because the contents of this document contain ``, which indicates this is an auto-generated WordPress error message." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:195 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:195 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:195 #: src/includes/traits/Ac/NcDebugUtils.php:195 msgid "because a `Content-Type:` header was set via PHP at runtime. The header contains a MIME type which is NOT a variation of HTML or XML. This header might have been set by your hosting company, by WordPress itself; or by one of your themes/plugins." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:199 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:199 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:199 #: src/includes/traits/Ac/NcDebugUtils.php:199 msgid "because a `Status:` header (or an `HTTP/` header) was set via PHP at runtime. The header contains a non-`2xx` status code. This indicates the current page was not loaded successfully. This header might have been set by your hosting company, by WordPress itself; or by one of your themes/plugins." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:203 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:203 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:203 #: src/includes/traits/Ac/NcDebugUtils.php:203 msgid "because the WordPress `is_404()` Conditional Tag says the current page is a 404 error; and this is the first time it's happened on this page. Your current configuration says that 404 errors SHOULD be cached, so %1$s built a cached symlink which points future requests for this location to your already-cached 404 error document. If you reload this page (assuming you don't clear the cache before you do so); you should get a cached version of your 404 error document. This message occurs ONCE for each new/unique 404 error request." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:207 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:207 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:207 #: src/includes/traits/Ac/NcDebugUtils.php:207 msgid "because %1$s detected an early output buffer termination. This may happen when a theme/plugin ends, cleans, or flushes all output buffers before reaching the PHP shutdown phase. It's not always a bad thing. Sometimes it is necessary for a theme/plugin to do this. However, in this scenario it is NOT possible to cache the output; since %1$s is effectively disabled at runtime when this occurs." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:211 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:211 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:211 #: src/includes/traits/Ac/NcDebugUtils.php:211 msgid "due to an unexpected behavior in the application. Please report this as a bug!" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:215 +#: .~build/comet-cache/src/includes/traits/Ac/NcDebugUtils.php:215 +#: .~build/comet-cache-pro/src/includes/traits/Ac/NcDebugUtils.php:215 #: src/includes/traits/Ac/NcDebugUtils.php:215 msgid "%1$s is NOT caching this page, %2$s" msgstr "" #. translators: This string is actually NOT translatable because the `__()` #. function is not available at this point in the processing. +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/ObUtils.php:215 +#: .~build/comet-cache/src/includes/traits/Ac/ObUtils.php:215 +#: .~build/comet-cache-pro/src/includes/traits/Ac/ObUtils.php:221 #: src/includes/traits/Ac/ObUtils.php:221 msgid "%1$s fully functional :-) Cache file served for (%2$s) in %3$s seconds, on: %4$s." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/ObUtils.php:244 +#: .~build/comet-cache/src/includes/traits/Ac/ObUtils.php:244 +#: .~build/comet-cache-pro/src/includes/traits/Ac/ObUtils.php:250 #: src/includes/traits/Ac/ObUtils.php:250 msgid "Unexpected OB phase: `%1$s`." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/ObUtils.php:320 +#: .~build/comet-cache/src/includes/traits/Ac/ObUtils.php:320 +#: .~build/comet-cache-pro/src/includes/traits/Ac/ObUtils.php:326 #: src/includes/traits/Ac/ObUtils.php:326 msgid "Cache directory not writable. %1$s needs this directory please: `%2$s`. Set permissions to `755` or higher; `777` might be needed in some cases." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/ObUtils.php:326 +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/ObUtils.php:344 +#: .~build/comet-cache/src/includes/traits/Ac/ObUtils.php:326 +#: .~build/comet-cache/src/includes/traits/Ac/ObUtils.php:344 +#: .~build/comet-cache-pro/src/includes/traits/Ac/ObUtils.php:332 +#: .~build/comet-cache-pro/src/includes/traits/Ac/ObUtils.php:352 #: src/includes/traits/Ac/ObUtils.php:332 #: src/includes/traits/Ac/ObUtils.php:352 msgid "Unable to create symlink: `%1$s` » `%2$s`. Possible permissions issue (or race condition), please check your cache directory: `%3$s`." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/ObUtils.php:337 +#: .~build/comet-cache/src/includes/traits/Ac/ObUtils.php:337 +#: .~build/comet-cache-pro/src/includes/traits/Ac/ObUtils.php:345 #: src/includes/traits/Ac/ObUtils.php:345 msgid "%1$s file path: %2$s" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/ObUtils.php:338 +#: .~build/comet-cache/src/includes/traits/Ac/ObUtils.php:338 +#: .~build/comet-cache-pro/src/includes/traits/Ac/ObUtils.php:346 #: src/includes/traits/Ac/ObUtils.php:346 msgid "%1$s file built for (%2$s%3$s) in %4$s seconds, on: %5$s." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/ObUtils.php:338 +#: .~build/comet-cache/src/includes/traits/Ac/ObUtils.php:338 +#: .~build/comet-cache-pro/src/includes/traits/Ac/ObUtils.php:346 #: src/includes/traits/Ac/ObUtils.php:346 msgid "user token: %1$s" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/ObUtils.php:339 +#: .~build/comet-cache/src/includes/traits/Ac/ObUtils.php:339 +#: .~build/comet-cache-pro/src/includes/traits/Ac/ObUtils.php:347 #: src/includes/traits/Ac/ObUtils.php:347 msgid "This %1$s file will auto-expire (and be rebuilt) on: %2$s (based on your configured expiration time)." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Ac/ObUtils.php:354 +#: .~build/comet-cache/src/includes/traits/Ac/ObUtils.php:354 +#: .~build/comet-cache-pro/src/includes/traits/Ac/ObUtils.php:362 #: src/includes/traits/Ac/ObUtils.php:362 msgid "%1$s: failed to write cache file for: `%2$s`; possible permissions issue (or race condition), please check your cache directory: `%3$s`." msgstr "" -#: src/includes/traits/Ac/PostloadUtils.php:200 -msgid "%1$s fully functional :-) Cache file served for (%2$s; user token: %3$s) in %4$s seconds, on: %5$s." -msgstr "" - -#: src/includes/traits/Plugin/AdminBarUtils.php:106 -msgid "Wipe Cache (Start Fresh). Clears the cache for all sites in this network at once!" -msgstr "" - -#: src/includes/traits/Plugin/AdminBarUtils.php:115 -msgid "Clear the Home Page cache" -msgstr "" - -#: src/includes/traits/Plugin/AdminBarUtils.php:115 -msgid "Home Page" -msgstr "" - -#: src/includes/traits/Plugin/AdminBarUtils.php:118 -msgid "Clear the cache for the current URL" -msgstr "" - -#: src/includes/traits/Plugin/AdminBarUtils.php:118 -msgid "Current URL" -msgstr "" - -#: src/includes/traits/Plugin/AdminBarUtils.php:120 -msgid "Clear the cache for a specific URL" -msgstr "" - -#: src/includes/traits/Plugin/AdminBarUtils.php:120 -msgid "Specific URL" -msgstr "" - -#: src/includes/traits/Plugin/AdminBarUtils.php:123 -msgid "Clear PHP's OPcache" -msgstr "" - -#: src/includes/traits/Plugin/AdminBarUtils.php:123 -msgid "OPcache" -msgstr "" - -#: src/includes/traits/Plugin/AdminBarUtils.php:126 -msgid "Clear the CDN cache" -msgstr "" - -#: src/includes/traits/Plugin/AdminBarUtils.php:126 -msgid "CDN Cache" -msgstr "" - -#: src/includes/traits/Plugin/AdminBarUtils.php:129 -msgid "Clear expired transients from the database" -msgstr "" - -#: src/includes/traits/Plugin/AdminBarUtils.php:129 -msgid "Expired Transients" -msgstr "" - -#: src/includes/traits/Plugin/AdminBarUtils.php:143 -msgid "Clear Options" -msgstr "" - -#: src/includes/traits/Plugin/AdminBarUtils.php:165 -#: src/includes/traits/Plugin/AdminBarUtils.php:186 -msgid "Clear Cache" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/CronUtils.php:23 +#: .~build/comet-cache/src/includes/traits/Plugin/CronUtils.php:23 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/CronUtils.php:23 +#: src/includes/traits/Plugin/CronUtils.php:23 +msgid "Every 15 Minutes" msgstr "" -#: src/includes/traits/Plugin/AdminBarUtils.php:190 -msgid "Clear Cache (Start Fresh). Affects the current site only." +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/DirUtils.php:26 +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/DirUtils.php:54 +#: .~build/comet-cache/src/includes/traits/Plugin/DirUtils.php:26 +#: .~build/comet-cache/src/includes/traits/Plugin/DirUtils.php:54 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/DirUtils.php:26 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/DirUtils.php:54 +#: src/includes/traits/Plugin/DirUtils.php:26 +#: src/includes/traits/Plugin/DirUtils.php:54 +msgid "Missing `base_dir` option value." msgstr "" -#: src/includes/traits/Plugin/AdminBarUtils.php:233 -msgid "Cache Stats" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/InstallUtils.php:24 +#: .~build/comet-cache/src/includes/traits/Plugin/InstallUtils.php:24 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/InstallUtils.php:24 +#: src/includes/traits/Plugin/InstallUtils.php:24 +msgid "%1$s successfully installed! :-) Please enable caching and review options." msgstr "" -#: src/includes/traits/Plugin/AdminBarUtils.php:277 -msgid "More Info" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/InstallUtils.php:62 +#: .~build/comet-cache/src/includes/traits/Plugin/InstallUtils.php:62 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/InstallUtils.php:62 +#: src/includes/traits/Plugin/InstallUtils.php:62 +msgid "%1$s: detected a new version of itself. Recompiling w/ latest version... wiping the cache... all done :-)" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:55 +#: .~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:55 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:313 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/MenuPageUtils.php:55 #: src/includes/traits/Plugin/AdminBarUtils.php:313 #: src/includes/traits/Plugin/MenuPageUtils.php:55 msgid "%" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:56 +#: .~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:56 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:314 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/MenuPageUtils.php:56 #: src/includes/traits/Plugin/AdminBarUtils.php:314 #: src/includes/traits/Plugin/MenuPageUtils.php:56 msgid "file" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:57 +#: .~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:57 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:315 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/MenuPageUtils.php:57 #: src/includes/traits/Plugin/AdminBarUtils.php:315 #: src/includes/traits/Plugin/MenuPageUtils.php:57 msgid "files" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:58 +#: .~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:58 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:316 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/MenuPageUtils.php:58 #: src/includes/traits/Plugin/AdminBarUtils.php:316 #: src/includes/traits/Plugin/MenuPageUtils.php:58 msgid "Page Cache" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:59 +#: .~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:59 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:317 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/MenuPageUtils.php:59 #: src/includes/traits/Plugin/AdminBarUtils.php:317 #: src/includes/traits/Plugin/MenuPageUtils.php:59 msgid "HTML Compressor" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:60 +#: .~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:60 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:318 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/MenuPageUtils.php:60 #: src/includes/traits/Plugin/AdminBarUtils.php:318 #: src/includes/traits/Plugin/MenuPageUtils.php:60 msgid "Current Total" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:61 +#: .~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:61 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:319 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/MenuPageUtils.php:61 #: src/includes/traits/Plugin/AdminBarUtils.php:319 #: src/includes/traits/Plugin/MenuPageUtils.php:61 msgid "Current Site" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:62 +#: .~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:62 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:320 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/MenuPageUtils.php:62 #: src/includes/traits/Plugin/AdminBarUtils.php:320 #: src/includes/traits/Plugin/MenuPageUtils.php:62 msgid "%s Day High" msgstr "" -#: src/includes/traits/Plugin/AdminBarUtils.php:321 -msgid "Enter a specific URL to clear the cache for that page:" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:131 +#: .~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:131 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/MenuPageUtils.php:142 +#: src/includes/traits/Plugin/MenuPageUtils.php:142 +msgid "Settings" msgstr "" -#: src/includes/traits/Plugin/AutoCacheUtils.php:146 -msgid "Note: Most timeout errors are resolved by refreshing the page and trying again. If timeout errors persist, please see this article." -msgstr "" - -#: src/includes/traits/Plugin/AutoCacheUtils.php:149 -msgid "HEAD response code (%1$s) indicates an error." -msgstr "" - -#: src/includes/traits/Plugin/AutoCacheUtils.php:151 -msgid "Content-Type (%1$s) indicates an error." -msgstr "" - -#: src/includes/traits/Plugin/AutoCacheUtils.php:157 -msgid "%1$s says... The Auto-Cache Engine is currently configured with an XML Sitemap location that could not be found. We suggest that you install the Google XML Sitemaps plugin. Or, empty the XML Sitemap field and only use the list of URLs instead. See: Dashboard → %1$s → Auto-Cache Engine → XML Sitemap URL" -msgstr "" - -#: src/includes/traits/Plugin/AutoCacheUtils.php:158 -msgid "

Problematic Sitemap URL: %1$s / Diagnostic Report: %2$s" -msgstr "" - -#: src/includes/traits/Plugin/CronUtils.php:23 -msgid "Every 15 Minutes" -msgstr "" - -#: src/includes/traits/Plugin/DirUtils.php:26 -#: src/includes/traits/Plugin/DirUtils.php:54 -msgid "Missing `base_dir` option value." -msgstr "" - -#: src/includes/traits/Plugin/InstallUtils.php:24 -msgid "%1$s successfully installed! :-) Please enable caching and review options." -msgstr "" - -#: src/includes/traits/Plugin/InstallUtils.php:62 -msgid "%1$s: detected a new version of itself. Recompiling w/ latest version... wiping the cache... all done :-)" -msgstr "" - -#: src/includes/traits/Plugin/InstallUtils.php:334 -msgid "%1$s: ignoring your Version Salt; it seems to contain PHP syntax errors." -msgstr "" - -#: src/includes/traits/Plugin/MenuPageUtils.php:88 -#: src/includes/traits/Plugin/MenuPageUtils.php:117 -msgid "Stats / Charts" -msgstr "" - -#: src/includes/traits/Plugin/MenuPageUtils.php:93 -#: src/includes/traits/Plugin/MenuPageUtils.php:121 -msgid "Plugin Updater" -msgstr "" - -#: src/includes/traits/Plugin/MenuPageUtils.php:142 -msgid "Settings" -msgstr "" - -#: src/includes/traits/Plugin/MenuPageUtils.php:145 -msgid "Upgrade" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:134 +#: .~build/comet-cache/src/includes/traits/Plugin/MenuPageUtils.php:134 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/MenuPageUtils.php:145 +#: src/includes/traits/Plugin/MenuPageUtils.php:145 +msgid "Upgrade" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/NoticeUtils.php:162 +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/NoticeUtils.php:191 +#: .~build/comet-cache/src/includes/traits/Plugin/NoticeUtils.php:162 +#: .~build/comet-cache/src/includes/traits/Plugin/NoticeUtils.php:191 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/NoticeUtils.php:162 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/NoticeUtils.php:191 #: src/includes/traits/Plugin/NoticeUtils.php:162 #: src/includes/traits/Plugin/NoticeUtils.php:191 msgid "Dismiss this notice." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/NoticeUtils.php:184 +#: .~build/comet-cache/src/includes/traits/Plugin/NoticeUtils.php:184 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/NoticeUtils.php:184 #: src/includes/traits/Plugin/NoticeUtils.php:184 msgid "Show details." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/NoticeUtils.php:185 +#: .~build/comet-cache/src/includes/traits/Plugin/NoticeUtils.php:185 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/NoticeUtils.php:185 #: src/includes/traits/Plugin/NoticeUtils.php:185 msgid "Hide details." msgstr "" -#: src/includes/traits/Plugin/UpdateUtils.php:97 -msgid "%1$s Pro: a new version is now available. Please upgrade to v%3$s." -msgstr "" - +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/WcpAuthorUtils.php:86 +#: .~build/comet-cache/src/includes/traits/Plugin/WcpAuthorUtils.php:86 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/WcpAuthorUtils.php:86 #: src/includes/traits/Plugin/WcpAuthorUtils.php:86 msgid "Found %1$s in the cache for Author Page: %2$s; auto-clearing." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/WcpFeedUtils.php:117 +#: .~build/comet-cache/src/includes/traits/Plugin/WcpFeedUtils.php:117 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/WcpFeedUtils.php:117 #: src/includes/traits/Plugin/WcpFeedUtils.php:117 msgid "Found %1$s in the cache, for XML feeds of type: %2$s; auto-clearing." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/WcpHomeBlogUtils.php:42 +#: .~build/comet-cache/src/includes/traits/Plugin/WcpHomeBlogUtils.php:42 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/WcpHomeBlogUtils.php:42 #: src/includes/traits/Plugin/WcpHomeBlogUtils.php:42 msgid "Found %1$s in the cache for the designated \"Home Page\"; auto-clearing." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/WcpHomeBlogUtils.php:100 +#: .~build/comet-cache/src/includes/traits/Plugin/WcpHomeBlogUtils.php:100 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/WcpHomeBlogUtils.php:100 #: src/includes/traits/Plugin/WcpHomeBlogUtils.php:100 msgid "Found %1$s in the cache for the designated \"Posts Page\"; auto-clearing." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/WcpPostTypeUtils.php:56 +#: .~build/comet-cache/src/includes/traits/Plugin/WcpPostTypeUtils.php:56 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/WcpPostTypeUtils.php:56 #: src/includes/traits/Plugin/WcpPostTypeUtils.php:56 msgid "Untitled" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/WcpPostTypeUtils.php:65 +#: .~build/comet-cache/src/includes/traits/Plugin/WcpPostTypeUtils.php:65 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/WcpPostTypeUtils.php:65 #: src/includes/traits/Plugin/WcpPostTypeUtils.php:65 msgid "Found %1$s in the cache for Custom Post Type: %2$s; auto-clearing." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/WcpPostUtils.php:87 +#: .~build/comet-cache/src/includes/traits/Plugin/WcpPostUtils.php:87 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/WcpPostUtils.php:87 #: src/includes/traits/Plugin/WcpPostUtils.php:87 msgid "Post" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/WcpPostUtils.php:93 +#: .~build/comet-cache/src/includes/traits/Plugin/WcpPostUtils.php:93 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/WcpPostUtils.php:93 #: src/includes/traits/Plugin/WcpPostUtils.php:93 msgid "Found %1$s in the cache for %2$s ID: %3$s; auto-clearing." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/WcpSitemapUtils.php:48 +#: .~build/comet-cache/src/includes/traits/Plugin/WcpSitemapUtils.php:48 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/WcpSitemapUtils.php:48 #: src/includes/traits/Plugin/WcpSitemapUtils.php:48 msgid "Found %1$s in the cache for XML sitemaps; auto-clearing." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/WcpTermUtils.php:134 +#: .~build/comet-cache/src/includes/traits/Plugin/WcpTermUtils.php:134 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/WcpTermUtils.php:134 #: src/includes/traits/Plugin/WcpTermUtils.php:134 msgid "Found %1$s in the cache for %2$s: %3$s; auto-clearing." msgstr "" -#: src/includes/traits/Plugin/WcpUrlUtils.php:49 -msgid "Found %1$s in the cache matching a custom list of URLs; auto-clearing." -msgstr "" - -#: src/includes/traits/Plugin/WcpUserUtils.php:48 -msgid "Found %1$s in the cache for user ID: %2$s; auto-clearing." -msgstr "" - +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/WcpUtils.php:196 +#: .~build/comet-cache/src/includes/traits/Plugin/WcpUtils.php:196 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/WcpUtils.php:232 #: src/includes/traits/Plugin/WcpUtils.php:232 msgid "Detected significant changes that require a full wipe of the cache. Found %1$s in the cache; auto-wiping." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/WcpUtils.php:242 +#: .~build/comet-cache/src/includes/traits/Plugin/WcpUtils.php:242 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/WcpUtils.php:278 #: src/includes/traits/Plugin/WcpUtils.php:278 msgid "Detected important site changes that affect the entire cache. Found %1$s in the cache for this site; auto-clearing." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/WcpUtils.php:276 +#: .~build/comet-cache/src/includes/traits/Plugin/WcpUtils.php:276 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/WcpUtils.php:312 #: src/includes/traits/Plugin/WcpUtils.php:312 msgid "Detected important site changes. Found %1$s in the cache for this site that were expired; auto-purging." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/WcpUtils.php:310 +#: .~build/comet-cache/src/includes/traits/Plugin/WcpUtils.php:310 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/WcpUtils.php:346 #: src/includes/traits/Plugin/WcpUtils.php:346 msgid "Detected important site changes. Found %1$s in the cache that were expired; auto-purging." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/WcpUtils.php:332 +#: .~build/comet-cache/src/includes/traits/Plugin/WcpUtils.php:332 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/WcpUtils.php:368 #: src/includes/traits/Plugin/WcpUtils.php:368 msgid "%1$s: detected significant changes that would normally trigger cache wiping routines. However, cache wiping routines have been disabled by a site administrator. [?]" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/WcpUtils.php:355 +#: .~build/comet-cache/src/includes/traits/Plugin/WcpUtils.php:355 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/WcpUtils.php:391 #: src/includes/traits/Plugin/WcpUtils.php:391 msgid "%1$s: detected important site changes that would normally trigger cache clearing routines. However, cache clearing routines have been disabled by a site administrator. [?]" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Plugin/WcpUtils.php:378 +#: .~build/comet-cache/src/includes/traits/Plugin/WcpUtils.php:378 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/WcpUtils.php:414 #: src/includes/traits/Plugin/WcpUtils.php:414 msgid "%1$s: detected important site changes that would normally trigger cache purging routines. However, cache purging routines have been disabled by a site administrator. [?]" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:29 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:29 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:29 #: src/includes/traits/Shared/CacheDirUtils.php:29 msgid "Unable to determine cache directory location." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:130 +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:284 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:130 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:284 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:130 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:284 #: src/includes/traits/Shared/CacheDirUtils.php:130 #: src/includes/traits/Shared/CacheDirUtils.php:284 msgid "Invalid argument; isAdvancedCache!" msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:157 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:157 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:157 #: src/includes/traits/Shared/CacheDirUtils.php:157 msgid "Unable to delete files. Rename failure on directory: `%1$s`." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:181 +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:347 +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:487 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:181 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:347 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:487 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:181 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:347 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:487 #: src/includes/traits/Shared/CacheDirUtils.php:181 #: src/includes/traits/Shared/CacheDirUtils.php:347 #: src/includes/traits/Shared/CacheDirUtils.php:487 msgid "Unable to delete symlink: `%1$s`." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:196 +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:362 +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:497 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:196 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:362 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:497 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:196 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:362 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:497 #: src/includes/traits/Shared/CacheDirUtils.php:196 #: src/includes/traits/Shared/CacheDirUtils.php:362 #: src/includes/traits/Shared/CacheDirUtils.php:497 msgid "Unable to delete file: `%1$s`." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:212 +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:378 +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:507 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:212 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:378 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:507 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:212 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:378 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:507 #: src/includes/traits/Shared/CacheDirUtils.php:212 #: src/includes/traits/Shared/CacheDirUtils.php:378 #: src/includes/traits/Shared/CacheDirUtils.php:507 msgid "Unable to delete dir: `%1$s`." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:220 +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:386 +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:515 +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:610 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:220 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:386 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:515 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:610 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:220 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:386 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:515 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:610 #: src/includes/traits/Shared/CacheDirUtils.php:220 #: src/includes/traits/Shared/CacheDirUtils.php:386 #: src/includes/traits/Shared/CacheDirUtils.php:515 @@ -2302,75 +3371,690 @@ msgstr "" msgid "Unexpected resource type: `%1$s`." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:227 +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:323 +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:393 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:227 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:323 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:393 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:227 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:323 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:393 #: src/includes/traits/Shared/CacheDirUtils.php:227 #: src/includes/traits/Shared/CacheDirUtils.php:323 #: src/includes/traits/Shared/CacheDirUtils.php:393 msgid "Unable to delete files. Rename failure on tmp directory: `%1$s`." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:281 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:281 +#: .~build/comet-cache-pro/src/includes/classes/DirStats.php:568 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:281 +#: src/includes/classes/DirStats.php:568 +#: src/includes/traits/Shared/CacheDirUtils.php:281 +msgid "Invalid argument; host token empty!" +msgstr "" + +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:474 +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:522 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:474 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:522 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:474 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:522 #: src/includes/traits/Shared/CacheDirUtils.php:474 #: src/includes/traits/Shared/CacheDirUtils.php:522 msgid "Unable to delete all files/dirs. Rename failure on tmp directory: `%1$s`." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:526 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:526 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:526 #: src/includes/traits/Shared/CacheDirUtils.php:526 msgid "Unable to delete directory: `%1$s`." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:585 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:585 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:585 #: src/includes/traits/Shared/CacheDirUtils.php:585 msgid "Unable to erase symlink: `%1$s`." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:594 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:594 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:594 #: src/includes/traits/Shared/CacheDirUtils.php:594 msgid "Unable to erase file: `%1$s`." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:603 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:603 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:603 #: src/includes/traits/Shared/CacheDirUtils.php:603 msgid "Unable to erase dir: `%1$s`." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:617 +#: .~build/comet-cache/src/includes/traits/Shared/CacheDirUtils.php:617 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheDirUtils.php:617 #: src/includes/traits/Shared/CacheDirUtils.php:617 msgid "Unable to erase directory: `%1$s`." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheLockUtils.php:30 +#: .~build/comet-cache/src/includes/traits/Shared/CacheLockUtils.php:30 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheLockUtils.php:30 #: src/includes/traits/Shared/CacheLockUtils.php:30 msgid "Unable to find the wp-config.php file." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheLockUtils.php:47 +#: .~build/comet-cache/src/includes/traits/Shared/CacheLockUtils.php:47 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheLockUtils.php:47 #: src/includes/traits/Shared/CacheLockUtils.php:47 msgid "No writable tmp directory." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/CacheLockUtils.php:53 +#: .~build/comet-cache/src/includes/traits/Shared/CacheLockUtils.php:53 +#: .~build/comet-cache-pro/src/includes/traits/Shared/CacheLockUtils.php:53 #: src/includes/traits/Shared/CacheLockUtils.php:53 msgid "Unable to obtain an exclusive lock." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/HookUtils.php:45 +#: .~build/comet-cache/src/includes/traits/Shared/HookUtils.php:45 +#: .~build/comet-cache-pro/src/includes/traits/Shared/HookUtils.php:45 #: src/includes/traits/Shared/HookUtils.php:45 msgid "Invalid hook." msgstr "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/I18nUtils.php:20 +#: .~build/comet-cache/src/includes/traits/Shared/I18nUtils.php:20 +#: .~build/comet-cache-pro/src/includes/traits/Shared/I18nUtils.php:20 #: src/includes/traits/Shared/I18nUtils.php:20 msgid "%1$s file" msgid_plural "%1$s files" msgstr[0] "" msgstr[1] "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/I18nUtils.php:35 +#: .~build/comet-cache/src/includes/traits/Shared/I18nUtils.php:35 +#: .~build/comet-cache-pro/src/includes/traits/Shared/I18nUtils.php:35 #: src/includes/traits/Shared/I18nUtils.php:35 msgid "%1$s directory" msgid_plural "%1$s directories" msgstr[0] "" msgstr[1] "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/I18nUtils.php:50 +#: .~build/comet-cache/src/includes/traits/Shared/I18nUtils.php:50 +#: .~build/comet-cache-pro/src/includes/traits/Shared/I18nUtils.php:50 #: src/includes/traits/Shared/I18nUtils.php:50 msgid "%1$s file/directory" msgid_plural "%1$s files/directories" msgstr[0] "" msgstr[1] "" +#: .~build/comet-cache/.~build/comet-cache/src/includes/traits/Shared/SysUtils.php:71 +#: .~build/comet-cache/src/includes/traits/Shared/SysUtils.php:71 +#: .~build/comet-cache-pro/src/includes/traits/Shared/SysUtils.php:71 #: src/includes/traits/Shared/SysUtils.php:71 msgid "%s%%" msgstr "" +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:169 +#: src/includes/classes/Actions.php:169 +msgid "

Wiped a total of %2$s cache files.

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:170 +#: src/includes/classes/Actions.php:170 +msgid "

Cache wiped for all sites. Recreation will occur automatically over time.

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:173 +#: src/includes/classes/Actions.php:173 +msgid "

Also wiped %1$s OPcache keys.

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:176 +#: src/includes/classes/Actions.php:176 +msgid "

Also wiped %1$s s2Clean cache files.

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:182 +#: src/includes/classes/Actions.php:182 +msgid "

Also wiped CDN cache. Invalidation counter is now %1$s.

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:210 +#: src/includes/classes/Actions.php:210 +msgid "

Cleared a total of %2$s cache files.

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:213 +#: src/includes/classes/Actions.php:213 +msgid "

Cache cleared for main site. Recreation will occur automatically over time.

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:215 +#: src/includes/classes/Actions.php:215 +msgid "

Cache cleared for this site. Recreation will occur automatically over time.

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:218 +#: src/includes/classes/Actions.php:218 +msgid "

Also cleared %1$s OPcache keys.

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:221 +#: src/includes/classes/Actions.php:221 +msgid "

Also cleared %1$s s2Clean cache files.

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:227 +#: src/includes/classes/Actions.php:227 +msgid "

Also cleared CDN cache. Invalidation counter is now %1$s.

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:266 +#: src/includes/classes/Actions.php:266 +msgid "

Home Page cache cleared successfully.

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:268 +#: src/includes/classes/Actions.php:268 +msgid "

Cache cleared successfully.

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:270 +#: src/includes/classes/Actions.php:270 +msgid "

URL: %1$s

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:273 +#: src/includes/classes/Actions.php:273 +msgid "

Notice: The domain you entered did not match your WordPress Home URL.

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:297 +#: src/includes/classes/Actions.php:297 +msgid "

Opcache successfully wiped.

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:298 +#: src/includes/classes/Actions.php:298 +msgid "

Wiped out %1$s OPcache keys.

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:322 +#: src/includes/classes/Actions.php:322 +msgid "

Opcache successfully cleared.

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:323 +#: src/includes/classes/Actions.php:323 +msgid "

Cleared %1$s OPcache keys.

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:347 +#: src/includes/classes/Actions.php:347 +msgid "

CDN cache successfully wiped.

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:348 +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:373 +#: src/includes/classes/Actions.php:348 src/includes/classes/Actions.php:373 +msgid "

The CDN cache invalidation counter is now: %1$s

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:372 +#: src/includes/classes/Actions.php:372 +msgid "

CDN cache successfully cleared.

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:397 +#: src/includes/classes/Actions.php:397 +msgid "

Expired transients wiped successfully.

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:398 +#: src/includes/classes/Actions.php:398 +msgid "

Wiped %1$s expired transients.

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:422 +#: src/includes/classes/Actions.php:422 +msgid "

Expired transients cleared successfully.

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:423 +#: src/includes/classes/Actions.php:423 +msgid "

Cleared %1$s expired transients for this site.

" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/Actions.php:778 +#: src/includes/classes/Actions.php:778 +msgid "Unknown error. Please wait 15 minutes and try again." +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/AutoCache.php:184 +#: .~build/comet-cache-pro/src/includes/classes/AutoCache.php:221 +#: src/includes/classes/AutoCache.php:184 +#: src/includes/classes/AutoCache.php:221 +msgid "Auto-cache log file is NOT writable: `%1$s`. Please set permissions to `644` (or higher). `666` might be needed in some cases." +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/DirStats.php:514 +#: .~build/comet-cache-pro/src/includes/classes/DirStats.php:585 +#: .~build/comet-cache-pro/src/includes/classes/DirStats.php:619 +#: .~build/comet-cache-pro/src/includes/classes/DirStats.php:692 +#: src/includes/classes/DirStats.php:514 src/includes/classes/DirStats.php:585 +#: src/includes/classes/DirStats.php:619 src/includes/classes/DirStats.php:692 +msgid "Unexpected data type." +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:619 +#: src/includes/classes/MenuPageOptions.php:619 +msgid "Enable the Admin Toolbar for Logged-In Users & Comment Authors?" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:620 +#: src/includes/classes/MenuPageOptions.php:620 +msgid "When Logged-In User caching is enabled above, Comet Cache will automatically disable the WordPress Admin Toolbar for logged-in users (on the front-end of the site) because the Toolbar is generally NOT cache-compatible. If you want to enable the Toolbar for logged-in users anyway, you can do that below." +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:626 +#: src/includes/classes/MenuPageOptions.php:626 +msgid "Note: Enabling the Toolbar for logged-in users will cause WordPress Nonce values to appear in the page source; nonce values are generally NOT cache-compatible. Please see this article for details." +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:29 +#: src/includes/classes/MenuPageProUpdater.php:29 +msgid "Update %1$s Now" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:38 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:34 +#: src/includes/classes/MenuPageProUpdater.php:38 +#: src/includes/classes/MenuPageStats.php:34 +msgid "Options" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:75 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/MenuPageUtils.php:93 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/MenuPageUtils.php:121 +#: src/includes/classes/MenuPageProUpdater.php:75 +#: src/includes/traits/Plugin/MenuPageUtils.php:93 +#: src/includes/traits/Plugin/MenuPageUtils.php:121 +msgid "Pro Plugin Updater" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:106 +#: src/includes/classes/MenuPageProUpdater.php:106 +msgid "Update Credentials" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:111 +#: src/includes/classes/MenuPageProUpdater.php:111 +msgid "CometCache.com Authentication" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:112 +#: src/includes/classes/MenuPageProUpdater.php:112 +msgid "From this page you can update to the latest version of %1$s Pro for WordPress. %1$s Pro is a premium product available for purchase @ cometcache.com. In order to connect with our update servers, you must supply your License Key. Your License Key is located under \"My Account\" when you log in @ cometcache.com. This will authenticate your copy of %1$s Pro; providing you with access to the latest version. You only need to enter these credentials once. %1$s Pro will save them in your WordPress database; making future upgrades even easier. If you prefer to upgrade manually, see this article." +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:114 +#: src/includes/classes/MenuPageProUpdater.php:114 +msgid "Username" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:116 +#: src/includes/classes/MenuPageProUpdater.php:116 +msgid "License Key" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:127 +#: src/includes/classes/MenuPageProUpdater.php:127 +msgid "Update Notifier" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:132 +#: src/includes/classes/MenuPageProUpdater.php:132 +msgid "%1$s™ Update Notifier" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:133 +#: src/includes/classes/MenuPageProUpdater.php:133 +msgid "When a new version of %1$s Pro becomes available, %1$s Pro can display a notification in your WordPress Dashboard prompting you to return to this page and perform an upgrade. Would you like this functionality enabled or disabled?" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:136 +#: src/includes/classes/MenuPageProUpdater.php:136 +msgid "Yes, display a notification in my WordPress Dashboard when a new version is available." +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:137 +#: src/includes/classes/MenuPageProUpdater.php:137 +msgid "No, do not display any %1$s update notifications in my WordPress Dashboard." +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:153 +#: src/includes/classes/MenuPageProUpdater.php:153 +msgid "%1$s™ Beta Testers" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:154 +#: src/includes/classes/MenuPageProUpdater.php:154 +msgid "If you would like to participate in our beta program and receive new features and bug fixes before they are released to the public, %1$s can include Release Candidates when checking for updates. Release Candidates are almost-ready-for-production and have already been through many internal test runs. Our team runs the latest Release Candidate on all of our production sites, but that doesn't mean you'll want to do the same. :-) Please report any issues with Release Candidates on GitHub." +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:157 +#: src/includes/classes/MenuPageProUpdater.php:157 +msgid "No, do not check for Release Candidates; I only want public releases." +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:158 +#: src/includes/classes/MenuPageProUpdater.php:158 +msgid "Yes, check for Release Candidates; I want to help with testing." +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:160 +#: src/includes/classes/MenuPageProUpdater.php:160 +msgid "How do you know if you're running a Release Candidate? If you're running a Release Candidate, the version number will end with -RC, e.g., Comet Cache™ Pro v151201-RC. To receive updates about Release Candidates, including a Release Candidate changelog for each release, please sign up for the beta testers mailing list." +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:29 +#: src/includes/classes/MenuPageStats.php:29 +msgid "Refresh Stats/Charts" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:71 +#: src/includes/classes/MenuPageStats.php:71 +msgid "Statistics" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:94 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:263 +#: src/includes/classes/MenuPageStats.php:94 +#: src/includes/traits/Plugin/AdminBarUtils.php:263 +msgid "Current Cache Totals" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:101 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:270 +#: src/includes/classes/MenuPageStats.php:101 +#: src/includes/traits/Plugin/AdminBarUtils.php:270 +msgid "Current Disk Health" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:102 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:271 +#: src/includes/classes/MenuPageStats.php:102 +#: src/includes/traits/Plugin/AdminBarUtils.php:271 +msgid "total capacity" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:103 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:272 +#: src/includes/classes/MenuPageStats.php:103 +#: src/includes/traits/Plugin/AdminBarUtils.php:272 +msgid "available" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:107 +#: src/includes/classes/MenuPageStats.php:107 +msgid "Current System Health" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:108 +#: src/includes/classes/MenuPageStats.php:108 +msgid "Memory Usage:" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:109 +#: src/includes/classes/MenuPageStats.php:109 +msgid "Load Average:" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:115 +#: src/includes/classes/MenuPageStats.php:115 +msgid "Cache File Counts" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:121 +#: src/includes/classes/MenuPageStats.php:121 +msgid "Cache File Sizes" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:130 +#: src/includes/classes/MenuPageStats.php:130 +msgid "OPcache Memory" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:131 +#: src/includes/classes/MenuPageStats.php:131 +msgid "free" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:132 +#: src/includes/classes/MenuPageStats.php:132 +msgid "used" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:133 +#: src/includes/classes/MenuPageStats.php:133 +msgid "wasted" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:137 +#: src/includes/classes/MenuPageStats.php:137 +msgid "OPcache Totals" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:138 +#: src/includes/classes/MenuPageStats.php:138 +msgid "cached scripts" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:139 +#: src/includes/classes/MenuPageStats.php:139 +msgid "total cached keys" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:143 +#: src/includes/classes/MenuPageStats.php:143 +msgid "OPcache Hits/Misses" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:144 +#: src/includes/classes/MenuPageStats.php:144 +msgid "hits" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:145 +#: src/includes/classes/MenuPageStats.php:145 +msgid "misses" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/classes/MenuPageStats.php:146 +#: src/includes/classes/MenuPageStats.php:146 +msgid "hit rate" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Ac/HtmlCUtils.php:46 +#: src/includes/traits/Ac/HtmlCUtils.php:46 +msgid "%1$s HTML Compressor" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Ac/HtmlCUtils.php:79 +#: src/includes/traits/Ac/HtmlCUtils.php:79 +msgid "Failure: %1$s" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Ac/PostloadUtils.php:203 +#: src/includes/traits/Ac/PostloadUtils.php:203 +msgid "%1$s fully functional :-) Cache file served for (%2$s; user token: %3$s) in %4$s seconds, on: %5$s." +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:106 +#: src/includes/traits/Plugin/AdminBarUtils.php:106 +msgid "Wipe Cache (Start Fresh). Clears the cache for all sites in this network at once!" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:115 +#: src/includes/traits/Plugin/AdminBarUtils.php:115 +msgid "Clear the Home Page cache" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:115 +#: src/includes/traits/Plugin/AdminBarUtils.php:115 +msgid "Home Page" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:118 +#: src/includes/traits/Plugin/AdminBarUtils.php:118 +msgid "Clear the cache for the current URL" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:118 +#: src/includes/traits/Plugin/AdminBarUtils.php:118 +msgid "Current URL" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:120 +#: src/includes/traits/Plugin/AdminBarUtils.php:120 +msgid "Clear the cache for a specific URL" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:120 +#: src/includes/traits/Plugin/AdminBarUtils.php:120 +msgid "Specific URL" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:123 +#: src/includes/traits/Plugin/AdminBarUtils.php:123 +msgid "Clear PHP's OPcache" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:123 +#: src/includes/traits/Plugin/AdminBarUtils.php:123 +msgid "OPcache" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:126 +#: src/includes/traits/Plugin/AdminBarUtils.php:126 +msgid "Clear the CDN cache" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:126 +#: src/includes/traits/Plugin/AdminBarUtils.php:126 +msgid "CDN Cache" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:129 +#: src/includes/traits/Plugin/AdminBarUtils.php:129 +msgid "Clear expired transients from the database" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:129 +#: src/includes/traits/Plugin/AdminBarUtils.php:129 +msgid "Expired Transients" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:143 +#: src/includes/traits/Plugin/AdminBarUtils.php:143 +msgid "Clear Options" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:165 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:186 +#: src/includes/traits/Plugin/AdminBarUtils.php:165 +#: src/includes/traits/Plugin/AdminBarUtils.php:186 +msgid "Clear Cache" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:190 +#: src/includes/traits/Plugin/AdminBarUtils.php:190 +msgid "Clear Cache (Start Fresh). Affects the current site only." +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:233 +#: src/includes/traits/Plugin/AdminBarUtils.php:233 +msgid "Cache Stats" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:277 +#: src/includes/traits/Plugin/AdminBarUtils.php:277 +msgid "More Info" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AdminBarUtils.php:321 +#: src/includes/traits/Plugin/AdminBarUtils.php:321 +msgid "Enter a specific URL to clear the cache for that page:" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AutoCacheUtils.php:146 +#: src/includes/traits/Plugin/AutoCacheUtils.php:146 +msgid "Note: Most timeout errors are resolved by refreshing the page and trying again. If timeout errors persist, please see this article." +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AutoCacheUtils.php:149 +#: src/includes/traits/Plugin/AutoCacheUtils.php:149 +msgid "HEAD response code (%1$s) indicates an error." +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AutoCacheUtils.php:151 +#: src/includes/traits/Plugin/AutoCacheUtils.php:151 +msgid "Content-Type (%1$s) indicates an error." +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AutoCacheUtils.php:157 +#: src/includes/traits/Plugin/AutoCacheUtils.php:157 +msgid "%1$s says... The Auto-Cache Engine is currently configured with an XML Sitemap location that could not be found. We suggest that you install the Google XML Sitemaps plugin. Or, empty the XML Sitemap field and only use the list of URLs instead. See: Dashboard → %1$s → Auto-Cache Engine → XML Sitemap URL" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/AutoCacheUtils.php:158 +#: src/includes/traits/Plugin/AutoCacheUtils.php:158 +msgid "

Problematic Sitemap URL: %1$s / Diagnostic Report: %2$s" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/InstallUtils.php:334 +#: src/includes/traits/Plugin/InstallUtils.php:334 +msgid "%1$s: ignoring your Version Salt; it seems to contain PHP syntax errors." +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/MenuPageUtils.php:88 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/MenuPageUtils.php:117 +#: src/includes/traits/Plugin/MenuPageUtils.php:88 +#: src/includes/traits/Plugin/MenuPageUtils.php:117 +msgid "Stats / Charts" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/MenuPageUtils.php:93 +#: .~build/comet-cache-pro/src/includes/traits/Plugin/MenuPageUtils.php:121 +#: src/includes/traits/Plugin/MenuPageUtils.php:93 +#: src/includes/traits/Plugin/MenuPageUtils.php:121 +msgid "Plugin Updater" +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/UpdateUtils.php:97 +#: src/includes/traits/Plugin/UpdateUtils.php:97 +msgid "%1$s Pro: a new version is now available. Please upgrade to v%3$s." +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/WcpUrlUtils.php:49 +#: src/includes/traits/Plugin/WcpUrlUtils.php:49 +msgid "Found %1$s in the cache matching a custom list of URLs; auto-clearing." +msgstr "" + +#: .~build/comet-cache-pro/src/includes/traits/Plugin/WcpUserUtils.php:51 +#: src/includes/traits/Plugin/WcpUserUtils.php:51 +msgid "Found %1$s in the cache for user ID: %2$s; auto-clearing." +msgstr "" + #. Plugin Name of the plugin/theme msgid "Comet Cache Pro" msgstr "" From e0994236b6d2a44d6330ed378aeffcd19adb537c Mon Sep 17 00:00:00 2001 From: Raam Dev Date: Mon, 16 May 2016 19:18:46 -0400 Subject: [PATCH 27/29] Don't disable the Admin Toolbar by default w/ Logged-In Users caching See https://github.com/websharks/comet-cache/issues/769#issuecomment-219572634 See https://github.com/websharks/comet-cache/issues/690 --- src/includes/classes/MenuPageOptions.php | 10 +++++----- src/includes/classes/Plugin.php | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/includes/classes/MenuPageOptions.php b/src/includes/classes/MenuPageOptions.php index 7430cab7..d0c05b42 100644 --- a/src/includes/classes/MenuPageOptions.php +++ b/src/includes/classes/MenuPageOptions.php @@ -616,14 +616,14 @@ public function __construct() echo '

'."\n"; echo '

'.__('Note: Static CDN Filters serve static resources. Static resources, are, simply put, static. Thus, it is not a problem to cache these resources for any visitor (logged-in or not logged-in). To avoid confusion, this defaults to a value of No, and we ask that you set it to Yes on your own so that you\'ll know to expect this behavior; i.e., that static resources will always be served from the CDN (logged-in or not logged-in) even though Logged-In User caching may be disabled above.', SLUG_TD).'

'."\n"; echo '
'."\n"; - echo '

'.__('Enable the Admin Toolbar for Logged-In Users & Comment Authors?', SLUG_TD).'

'."\n"; - echo '

'.__('When Logged-In User caching is enabled above, Comet Cache will automatically disable the WordPress Admin Toolbar for logged-in users (on the front-end of the site) because the Toolbar is generally NOT cache-compatible. If you want to enable the Toolbar for logged-in users anyway, you can do that below.', SLUG_TD).'

'."\n"; + echo '

'.__('Disable the Admin Toolbar for Logged-In Users & Comment Authors?', SLUG_TD).'

'."\n"; + echo '

'.__('When Logged-In User caching is enabled above, it is recommended that you disable the WordPress Admin Toolbar for logged-in users (on the front-end of the site) because the Toolbar is generally NOT cache-compatible. If you want Comet Cache to automatically disable the Toolbar for logged-in users, you can choose that option below. Or, if you use another plugin to control the Admin Toolbar you can leave this option disabled.', SLUG_TD).'

'."\n"; echo '

'."\n"; - echo '

'.__('Note: Enabling the Toolbar for logged-in users will cause WordPress Nonce values to appear in the page source; nonce values are generally NOT cache-compatible. Please see this article for details.', SLUG_TD).'

'."\n"; + echo '

'.__('Note: If you don\'t disable the Admin Toolbar for logged-in users that will cause WordPress Nonce values to appear in the page source; nonce values are generally NOT cache-compatible. Please see this article for details.', SLUG_TD).'

'."\n"; echo ' '."\n"; echo ''."\n"; diff --git a/src/includes/classes/Plugin.php b/src/includes/classes/Plugin.php index f2fc0e2e..46d130c7 100644 --- a/src/includes/classes/Plugin.php +++ b/src/includes/classes/Plugin.php @@ -392,7 +392,7 @@ public function setup() 'htmlc_when_logged_in' => '0', // `0|1`; enable when logged in? /* Related to Logged-In User Caching */ - 'when_logged_in_admin_bar' => '0', // `0|1`; enable when logged in? + 'when_logged_in_admin_bar' => '1', // `0|1`; enable when logged in? /* Related to auto-cache engine. */ From 103cc72fc47d145be0b62aeef2e68e1cb535b7ae Mon Sep 17 00:00:00 2001 From: Raam Dev Date: Fri, 20 May 2016 19:08:58 -0400 Subject: [PATCH 28/29] Update to Phings v160517 --- phings | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phings b/phings index 63ba684a..ca720f31 160000 --- a/phings +++ b/phings @@ -1 +1 @@ -Subproject commit 63ba684aef99bb87711518d71a6221161eba1291 +Subproject commit ca720f316f9bcc7942ef6ad9761d68186eaa275c From 426fc557fff15d57ea24fc2a8eaf788f14e21153 Mon Sep 17 00:00:00 2001 From: Raam Dev Date: Fri, 20 May 2016 19:15:33 -0400 Subject: [PATCH 29/29] Releasing Comet Cache v160521 --- CHANGELOG.md | 8 + comet-cache-pro.php | 2 +- readme.txt | 10 +- src/includes/classes/VsUpgrades.php | 2 +- src/includes/stub.php | 2 +- .../traits/Plugin/WcpOpcacheUtils.php | 2 +- src/includes/translations/comet-cache-pro.pot | 1062 ++++++++--------- 7 files changed, 549 insertions(+), 539 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79d0043c..5423ad1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ += v160521 = + +- **Bug Fix**: Fixed a bug that, in some scenarios, resulted in "PHP Fatal error: Undefined class constant 'CACHE_PATH_NO_PATH_INDEX'". This also affected the Cache Statistics feature (Comet Cache Pro), resulting in a blank panel when hovering over the Cache Stats button in the menu bar. See [Issue #752](https://github.com/websharks/comet-cache/issues/752). +- **Bug Fix**: When the PHP OPCache extension is active, the OPCache is now cleared when a WordPress plugin is upgraded, activated, or deactivated. This works around an issue that could produce a fatal error when the PHP OPCache contains cached PHP code that conflicts with new PHP code introduced by an update. See [Issue #740](https://github.com/websharks/comet-cache/issues/740). +- **Enhancement** (Pro): It's now possible to disable the WordPress Admin Toolbar when Logged-In User Caching is enabled with a new option in _Comet Cache → Plugin Options → Logged-In Users → Disable the Admin Toolbar for Logged-In Users & Comment Authors?_ Props @renzms and @KTS915. See [Issue #690](https://github.com/websharks/comet-cache/issues/690). +- **Enhancement**: The the option to automatically clear the cache for Custom Term Archive Views (see _Comet Cache → Plugin Options → Automatic Cache Clearing → Auto-Clear "Custom Term Archives" Too?_) is now enabled by default. This feature was previously disabled by default, which lead to confusion about why those cache files were not being cleared automatically when a Custom Post Type with a Custom Term Archive View was being used. Props @renzms. See [Issue #693](https://github.com/websharks/comet-cache/issues/693). +- **Enhancement** (Pro): A new filter allows overriding the default behavior to clear the user cache upon login and logout when caching for Logged-In Users is enabled. See [this article](https://cometcache.com/r/kb-article-how-can-i-prevent-the-user-cache-from-being-cleared-upon-login-or-logout/) for details. Props @KTS915. See [Issue #756](https://github.com/websharks/comet-cache/issues/756). + = v160417 = - **Bug Fix**: Fixed a "PHP Fatal error: Undefined class constant 'CACHE_PATH_NO_SCHEME'" introduced by the previous release (v160416). This issue only affected sites where Feed Caching was enabled (_Comet Cache → Plugin Options → RSS, RDF, and Atom Feeds_). Props to MassimoD and @emanwebdev for reporting. See [Issue #739](https://github.com/websharks/comet-cache/issues/739). diff --git a/comet-cache-pro.php b/comet-cache-pro.php index c32d00aa..074a5808 100644 --- a/comet-cache-pro.php +++ b/comet-cache-pro.php @@ -1,6 +1,6 @@ mbstring extension provides Multibyte String support to PHP and is required to properly handle UTF-8 characters, which many sites now use. Without Multibyte String support, Comet Cache will be unstable. For that reason we are requiring the mbstring extension to improve reliablity when caching and to prevent your site from experiencing unforeseen issues in the future." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/AbsBase.php:117 -#: .~build/comet-cache/src/includes/classes/AbsBase.php:117 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/AbsBase.php:119 +#: .~build/comet-cache/src/includes/classes/AbsBase.php:119 #: .~build/comet-cache-pro/src/includes/classes/AbsBase.php:119 #: src/includes/classes/AbsBase.php:119 msgid "Undefined overload property: `%1$s`." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/AbsBase.php:135 -#: .~build/comet-cache/src/includes/classes/AbsBase.php:135 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/AbsBase.php:137 +#: .~build/comet-cache/src/includes/classes/AbsBase.php:137 #: .~build/comet-cache-pro/src/includes/classes/AbsBase.php:137 #: src/includes/classes/AbsBase.php:137 msgid "Refused to set overload property: `%1$s`." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/AbsBase.php:152 -#: .~build/comet-cache/src/includes/classes/AbsBase.php:152 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/AbsBase.php:154 +#: .~build/comet-cache/src/includes/classes/AbsBase.php:154 #: .~build/comet-cache-pro/src/includes/classes/AbsBase.php:154 #: src/includes/classes/AbsBase.php:154 msgid "Refused to unset overload property: `%1$s`." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/AbsBaseAp.php:73 -#: .~build/comet-cache/src/includes/classes/AbsBaseAp.php:73 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/AbsBaseAp.php:72 +#: .~build/comet-cache/src/includes/classes/AbsBaseAp.php:72 #: .~build/comet-cache-pro/src/includes/classes/AbsBaseAp.php:72 #: src/includes/classes/AbsBaseAp.php:72 msgid "Undefined method/closure: `%1$s`." @@ -1479,27 +1479,27 @@ msgstr "" #: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:573 #: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:573 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:573 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:575 #: src/includes/classes/MenuPageOptions.php:573 msgid "Exclusion Patterns for Client-Side Caching" msgstr "" #: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:574 #: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:574 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:574 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:576 #: src/includes/classes/MenuPageOptions.php:574 msgid "When you enable Client-Side Caching above, you may want to prevent certain pages on your site from being cached by a client-side browser. This is where you will enter those if you need to (one per line). Searches are performed against the REQUEST_URI; i.e., /path/?query (caSe insensitive). So, don't put in full URLs here, just word fragments found in the file path (or query string) is all you need, excluding the http:// and domain name. A wildcard * character can also be used when necessary; e.g., /category/abc-followed-by-* (where * = 0 or more characters that are NOT a slash /). Other special characters include: ** = 0 or more characters of any kind, including / slashes; ^ = beginning of the string; $ = end of the string. To learn more about this syntax, please see this KB article." msgstr "" #: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:576 -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:709 -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:870 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:710 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:871 #: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:576 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:709 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:870 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:576 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:709 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:870 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:710 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:871 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:578 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:720 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:881 #: src/includes/classes/MenuPageOptions.php:576 #: src/includes/classes/MenuPageOptions.php:709 #: src/includes/classes/MenuPageOptions.php:870 @@ -1507,29 +1507,29 @@ msgid "Tip: let's use this example URL: http://www.exampl msgstr "" #: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:577 -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:710 -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:728 -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:746 -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:862 -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:866 -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:871 -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:995 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:711 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:729 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:747 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:863 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:867 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:872 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:996 #: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:577 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:710 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:728 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:746 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:862 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:866 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:871 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:995 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:577 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:710 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:728 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:746 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:862 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:866 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:871 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:995 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:711 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:729 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:747 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:863 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:867 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:872 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:996 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:579 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:721 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:739 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:757 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:873 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:877 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:882 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:999 #: src/includes/classes/MenuPageOptions.php:577 #: src/includes/classes/MenuPageOptions.php:710 #: src/includes/classes/MenuPageOptions.php:728 @@ -1543,1163 +1543,1168 @@ msgstr "" #: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:588 #: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:588 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:588 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:591 #: src/includes/classes/MenuPageOptions.php:588 msgid "Logged-In Users" msgstr "" #: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:593 #: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:593 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:593 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:596 #: src/includes/classes/MenuPageOptions.php:593 msgid "Caching Enabled for Logged-In Users & Comment Authors?" msgstr "" #: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:594 #: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:594 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:594 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:597 #: src/includes/classes/MenuPageOptions.php:594 msgid "This should almost ALWAYS be set to No. Most sites will NOT want to cache content generated while a user is logged-in. Doing so could result in a cache of dynamic content generated specifically for a particular user, where the content being cached may contain details that pertain only to the user that was logged-in when the cache was generated. Imagine visiting a website that says you're logged-in as Billy Bob (but you're not Billy Bob; NOT good). In short, do NOT turn this on unless you know what you're doing." msgstr "" #: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:596 #: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:596 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:596 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:599 #: src/includes/classes/MenuPageOptions.php:596 msgid "Exception (Membership Sites): If you run a site with many users and the majority of your traffic comes from users who ARE logged-in, please choose: Yes (maintain separate cache). %1$s will operate normally; but when a user is logged-in, the cache is user-specific. %1$s will intelligently refresh the cache when/if a user submits a form on your site with the GET or POST method. Or, if you make changes to their account (or another plugin makes changes to their account); including user option|meta additions, updates & deletions too. However, please note that enabling this feature (e.g., user-specific cache entries); will eat up MUCH more disk space. That being said, the benefits of this feature for most sites will outweigh the disk overhead (e.g., it's NOT an issue in most cases). Unless you are short on disk space (or you have MANY thousands of users), the disk overhead is neglible." msgstr "" #: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:598 #: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:598 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:598 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:601 #: src/includes/classes/MenuPageOptions.php:598 msgid "No, do NOT cache; or serve a cache file when a user is logged-in (safest option)." msgstr "" #: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:599 #: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:599 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:599 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:602 #: src/includes/classes/MenuPageOptions.php:599 msgid "Yes, and maintain a separate cache for each user (recommended for membership sites)." msgstr "" #: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:602 #: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:602 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:602 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:605 #: src/includes/classes/MenuPageOptions.php:602 msgid "Yes, but DON'T maintain a separate cache for each user (I know what I'm doing)." msgstr "" #: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:606 #: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:606 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:606 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:609 #: src/includes/classes/MenuPageOptions.php:606 msgid "Warning: Whenever you enable caching for logged-in users (without a separate cache for each user), the WordPress Admin Bar must be disabled to prevent one user from seeing another user's details in the Admin Bar. Given your current configuration, %1$s will automatically hide the WordPress Admin Bar on the front-end of your site." msgstr "" #: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:608 #: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:608 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:608 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:611 #: src/includes/classes/MenuPageOptions.php:608 msgid "Note: For most sites, the majority of their traffic (if not all of their traffic) comes from visitors who are not logged in, so disabling the cache for logged-in users is NOT ordinarily a performance issue. When a user IS logged-in, disabling the cache is considered ideal, because a logged-in user has a session open with your site; and the content they view should remain very dynamic in this scenario." msgstr "" #: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:609 #: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:609 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:609 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:612 #: src/includes/classes/MenuPageOptions.php:609 msgid "Note: This setting includes some users who AREN'T actually logged into the system, but who HAVE authored comments recently. %1$s includes comment authors as part of it's logged-in user check. This way comment authors will be able to see updates to the comment thread immediately; and, so that any dynamically-generated messages displayed by your theme will work as intended. In short, %1$s thinks of a comment author as a logged-in user, even though technically they are not. ~ Users who gain access to password-protected Posts/Pages are also included." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:611 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:611 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:611 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:612 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:612 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:615 #: src/includes/classes/MenuPageOptions.php:611 msgid "Static CDN Filters Enabled for Logged-In Users & Comment Authors?" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:612 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:612 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:612 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:613 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:613 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:616 #: src/includes/classes/MenuPageOptions.php:612 msgid "While this defaults to a value of No, it should almost always be set to Yes. This value defaults to No only because Logged-In User caching (see above) defaults to No and setting this value to Yes by default can cause confusion for some users. Once you understand that Static CDN Filters can be applied safely for all visitors (logged-in or not logged-in), please choose Yes in the dropdown below. If you are not using Static CDN Filters, the value below is ignored." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:614 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:614 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:614 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:615 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:615 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:618 #: src/includes/classes/MenuPageOptions.php:614 msgid "No, disable Static CDN Filters when a user is logged-in." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:615 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:615 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:615 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:616 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:616 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:619 #: src/includes/classes/MenuPageOptions.php:615 msgid "Yes, enable Static CDN Filters for logged-in users (recommended) ." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:617 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:617 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:617 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:618 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:618 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:621 #: src/includes/classes/MenuPageOptions.php:617 msgid "Note: Static CDN Filters serve static resources. Static resources, are, simply put, static. Thus, it is not a problem to cache these resources for any visitor (logged-in or not logged-in). To avoid confusion, this defaults to a value of No, and we ask that you set it to Yes on your own so that you'll know to expect this behavior; i.e., that static resources will always be served from the CDN (logged-in or not logged-in) even though Logged-In User caching may be disabled above." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:619 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:619 -msgid "Enable the Admin Bar for Logged-In Users & Comment Authors?" -msgstr "" - #: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:620 #: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:620 -msgid "When Logged-In User caching is enabled, Comet Cache will automatically disable the WordPress Admin Bar for logged-in users (on the front-end of the site). This option allows you to override this and turn back on the Admin Bar when Logged-In User caching is enabled.)." +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:623 +#: src/includes/classes/MenuPageOptions.php:619 +msgid "Disable the Admin Toolbar for Logged-In Users & Comment Authors?" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:622 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:622 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:622 -#: src/includes/classes/MenuPageOptions.php:622 -msgid "No, leave the Admin Bar disabled for logged-in users (recommended option)." +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:621 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:621 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:624 +#: src/includes/classes/MenuPageOptions.php:620 +msgid "When Logged-In User caching is enabled above, it is recommended that you disable the WordPress Admin Toolbar for logged-in users (on the front-end of the site) because the Toolbar is generally NOT cache-compatible. If you want Comet Cache to automatically disable the Toolbar for logged-in users, you can choose that option below. Or, if you use another plugin to control the Admin Toolbar you can leave this option disabled." msgstr "" #: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:623 #: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:623 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:623 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:626 +#: src/includes/classes/MenuPageOptions.php:622 +msgid "Yes, disable the Admin Toolbar for all logged-in users (recommended option)." +msgstr "" + +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:624 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:624 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:627 #: src/includes/classes/MenuPageOptions.php:623 -msgid "Yes, enable the Admin Bar for logged-in users." +msgid "No, don't disable the Admin Toolbar for logged-in users." msgstr "" #: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:626 #: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:626 -msgid "Note: If you are enabling the WordPress Admin Bar for logged-in users, and are allowing Nonce caching using COMET_CACHE_CACHE_NONCE_VALUES_WHEN_LOGGED_IN;, please see this article." +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:629 +#: src/includes/classes/MenuPageOptions.php:626 +msgid "Note: If you don't disable the Admin Toolbar for logged-in users that will cause WordPress Nonce values to appear in the page source; nonce values are generally NOT cache-compatible. Please see this article for details." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:636 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:636 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:636 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:637 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:637 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:647 #: src/includes/classes/MenuPageOptions.php:636 msgid "GET Requests" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:641 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:641 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:641 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:642 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:642 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:652 #: src/includes/classes/MenuPageOptions.php:641 msgid "Caching Enabled for GET (Query String) Requests?" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:642 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:642 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:642 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:643 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:643 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:653 #: src/includes/classes/MenuPageOptions.php:642 msgid "This should almost ALWAYS be set to No. UNLESS, you're using unfriendly Permalinks. In other words, if all of your URLs contain a query string (e.g., /?key=value); you're using unfriendly Permalinks. Ideally, you would refrain from doing this; and instead, update your Permalink options immediately; which also optimizes your site for search engines. That being said, if you really want to use unfriendly Permalinks, and ONLY if you're using unfriendly Permalinks, you should set this to Yes; and don't worry too much, the sky won't fall on your head :-)" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:644 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:644 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:644 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:645 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:645 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:655 #: src/includes/classes/MenuPageOptions.php:644 msgid "No, do NOT cache (or serve a cache file) when a query string is present." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:645 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:645 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:645 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:646 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:646 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:656 #: src/includes/classes/MenuPageOptions.php:645 msgid "Yes, I would like to cache URLs that contain a query string." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:647 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:647 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:647 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:648 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:648 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:658 #: src/includes/classes/MenuPageOptions.php:647 msgid "Note: POST requests (i.e., forms with method="post") are always excluded from the cache, which is the way it should be. Any POST/PUT/DELETE request should NEVER (ever) be cached. CLI (and self-serve) requests are also excluded from the cache (always). A CLI request is one that comes from the command line; commonly used by CRON jobs and other automated routines. A self-serve request is an HTTP connection established from your site -› to your site. For instance, a WP Cron job, or any other HTTP request that is spawned not by a user, but by the server itself." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:648 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:648 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:648 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:649 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:649 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:659 #: src/includes/classes/MenuPageOptions.php:648 msgid "Advanced Tip: If you are NOT caching GET requests (recommended), but you DO want to allow some special URLs that include query string parameters to be cached; you can add this special parameter to any URL ?%2$sAC=1. This tells %1$s that it's OK to cache that particular URL, even though it contains query string arguments. If you ARE caching GET requests and you want to force %1$s to NOT cache a specific request, you can add this special parameter to any URL ?%2$sAC=0." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:658 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:658 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:658 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:659 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:659 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:669 #: src/includes/classes/MenuPageOptions.php:658 msgid "404 Requests" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:663 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:663 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:663 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:664 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:664 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:674 #: src/includes/classes/MenuPageOptions.php:663 msgid "Caching Enabled for 404 Requests?" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:664 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:664 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:664 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:665 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:665 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:675 #: src/includes/classes/MenuPageOptions.php:664 msgid "When this is set to No, %1$s will ignore all 404 requests and no cache file will be served. While this is fine for most site owners, caching the 404 page on a high-traffic site may further reduce server load. When this is set to Yes, %1$s will cache the 404 page (see Creating an Error 404 Page) and then serve that single cache file to all future 404 requests." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:666 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:666 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:666 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:667 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:667 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:677 #: src/includes/classes/MenuPageOptions.php:666 msgid "No, do NOT cache (or serve a cache file) for 404 requests." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:667 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:667 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:667 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:668 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:668 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:678 #: src/includes/classes/MenuPageOptions.php:667 msgid "Yes, I would like to cache the 404 page and serve the cached file for 404 requests." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:669 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:669 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:669 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:670 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:670 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:680 #: src/includes/classes/MenuPageOptions.php:669 msgid "How does %1$s cache 404 requests? %1$s will create a special cache file (----404----.html, see Advanced Tip below) for the first 404 request and then symlink future 404 requests to this special cache file. That way you don't end up with lots of 404 cache files that all contain the same thing (the contents of the 404 page). Instead, you'll have one 404 cache file and then several symlinks (i.e., references) to that 404 cache file." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:670 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:670 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:670 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:671 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:671 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:681 #: src/includes/classes/MenuPageOptions.php:670 msgid "Advanced Tip: The default 404 cache filename (----404----.html) is designed to minimize the chance of a collision with a cache file for a real page with the same name. However, if you want to override this default and define your own 404 cache filename, you can do so by adding define('COMET_CACHE_404_CACHE_FILENAME', 'your-404-cache-filename'); to your wp-config.php file (note that the .html extension should be excluded when defining a new filename)." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:680 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:680 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:680 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:681 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:681 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:691 #: src/includes/classes/MenuPageOptions.php:680 msgid "RSS, RDF, and Atom Feeds" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:685 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:685 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:685 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:686 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:686 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:696 #: src/includes/classes/MenuPageOptions.php:685 msgid "Caching Enabled for RSS, RDF, Atom Feeds?" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:686 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:686 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:686 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:687 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:687 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:697 #: src/includes/classes/MenuPageOptions.php:686 msgid "This should almost ALWAYS be set to No. UNLESS, you're sure that you want to cache your feeds. If you use a web feed management provider like Google® Feedburner and you set this option to Yes, you may experience delays in the detection of new posts. NOTE: If you do enable this, it is highly recommended that you also enable automatic Feed Clearing too. Please see the section above: \"Automatic Cache Clearing\". Find the sub-section titled: \"Auto-Clear RSS/RDF/ATOM Feeds\"." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:688 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:688 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:688 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:689 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:689 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:699 #: src/includes/classes/MenuPageOptions.php:688 msgid "No, do NOT cache (or serve a cache file) when displaying a feed." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:689 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:689 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:689 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:690 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:690 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:700 #: src/includes/classes/MenuPageOptions.php:689 msgid "Yes, I would like to cache feed URLs." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:691 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:691 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:691 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:692 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:692 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:702 #: src/includes/classes/MenuPageOptions.php:691 msgid "Note: This option affects all feeds served by WordPress, including the site feed, the site comment feed, post-specific comment feeds, author feeds, search feeds, and category and tag feeds. See also: WordPress Feeds." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:701 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:701 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:701 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:702 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:702 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:712 #: src/includes/classes/MenuPageOptions.php:701 msgid "URI Exclusion Patterns" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:705 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:705 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:705 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:706 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:706 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:716 #: src/includes/classes/MenuPageOptions.php:705 msgid "Don't Cache These Special URI Exclusion Patterns?" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:706 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:706 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:706 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:707 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:707 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:717 #: src/includes/classes/MenuPageOptions.php:706 msgid "Sometimes there are certain cases where a particular file, or a particular group of files, should never be cached. This is where you will enter those if you need to (one per line). Searches are performed against the REQUEST_URI; i.e., /path/?query (caSe insensitive). So, don't put in full URLs here, just word fragments found in the file path (or query string) is all you need, excluding the http:// and domain name. A wildcard * character can also be used when necessary; e.g., /category/abc-followed-by-* (where * = 0 or more characters that are NOT a slash /). Other special characters include: ** = 0 or more characters of any kind, including / slashes; ^ = beginning of the string; $ = end of the string. To learn more about this syntax, please see this KB article." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:720 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:720 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:720 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:721 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:721 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:731 #: src/includes/classes/MenuPageOptions.php:720 msgid "HTTP Referrer Exclusion Patterns" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:724 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:724 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:724 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:725 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:725 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:735 #: src/includes/classes/MenuPageOptions.php:724 msgid "Don't Cache These Special HTTP Referrer Exclusion Patterns?" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:725 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:725 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:725 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:726 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:726 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:736 #: src/includes/classes/MenuPageOptions.php:725 msgid "Sometimes there are special cases where a particular referring URL (or referring domain) that sends you traffic; or even a particular group of referring URLs or domains that send you traffic; should result in a page being loaded on your site that is NOT from the cache (and that resulting page should never be cached). This is where you will enter those if you need to (one per line). Searches are performed against the HTTP_REFERER (caSe insensitive). A wildcard * character can also be used when necessary; e.g., *.domain.com (where * = 0 or more characters that are NOT a slash /). Other special characters include: ** = 0 or more characters of any kind, including / slashes; ^ = beginning of the string; $ = end of the string. To learn more about this syntax, please see this KB article." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:727 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:727 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:727 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:728 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:728 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:738 #: src/includes/classes/MenuPageOptions.php:727 msgid "Tip: let's use this example URL: http://www.referring-domain.com/search/?q=search+terms. To exclude this referring URL, you could put this line into the field above: www.referring-domain.com. Or, you could also just put in a small fragment, like: /search/ or q=*; and that would exclude any referrer containing that word fragment." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:738 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:738 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:738 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:739 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:739 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:749 #: src/includes/classes/MenuPageOptions.php:738 msgid "User-Agent Exclusion Patterns" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:742 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:742 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:742 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:743 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:743 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:753 #: src/includes/classes/MenuPageOptions.php:742 msgid "Don't Cache These Special User-Agent Exclusion Patterns?" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:743 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:743 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:743 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:744 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:744 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:754 #: src/includes/classes/MenuPageOptions.php:743 msgid "Sometimes there are special cases when a particular user-agent (e.g., a specific browser or a specific type of device); should be shown a page on your site that is NOT from the cache (and that resulting page should never be cached). This is where you will enter those if you need to (one per line). Searches are performed against the HTTP_USER_AGENT (caSe insensitive). A wildcard * character can also be used when necessary; e.g., Android *; Chrome/* Mobile (where * = 0 or more characters that are NOT a slash /). Other special characters include: ** = 0 or more characters of any kind, including / slashes; ^ = beginning of the string; $ = end of the string. To learn more about this syntax, please see this KB article." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:745 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:745 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:745 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:746 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:746 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:756 #: src/includes/classes/MenuPageOptions.php:745 msgid "Tip: if you wanted to exclude iPhones put this line into the field above: iPhone;*AppleWebKit. Or, you could also just put in a small fragment, like: iphone; and that would exclude any user-agent containing that word fragment. Note, this is just an example. With a default installation of %1$s, there is no compelling reason to exclude iOS devices (or any mobile device for that matter)." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:757 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:757 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:757 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:758 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:758 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:768 #: src/includes/classes/MenuPageOptions.php:757 msgid "Auto-Cache Engine" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:762 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:762 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:762 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:763 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:763 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:773 #: src/includes/classes/MenuPageOptions.php:762 msgid "Enable the Auto-Cache Engine?" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:763 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:763 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:763 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:764 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:764 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:774 #: src/includes/classes/MenuPageOptions.php:763 msgid "After using %1$s for awhile (or any other page caching plugin, for that matter); it becomes obvious that at some point (based on your configured Expiration Time) %1$s has to refresh itself. It does this by ditching its cached version of a page, reloading the database-driven content, and then recreating the cache with the latest data. This is a never ending regeneration cycle that is based entirely on your configured Expiration Time." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:764 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:764 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:764 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:765 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:765 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:775 #: src/includes/classes/MenuPageOptions.php:764 msgid "Understanding this, you can see that 99% of your visitors are going to receive a lightning fast response from your server. However, there will always be around 1% of your visitors that land on a page for the very first time (before it's been cached), or land on a page that needs to have its cache regenerated, because the existing cache has become outdated. We refer to this as a First-Come Slow-Load Issue. Not a huge problem, but if you're optimizing your site for every ounce of speed possible, the Auto-Cache Engine can help with this. The Auto-Cache Engine has been designed to combat this issue by taking on the responsibility of being that first visitor to a page that has not yet been cached, or has an expired cache. The Auto-Cache Engine is powered, in part, by WP-Cron (already built into WordPress). The Auto-Cache Engine runs at 15-minute intervals via WP-Cron. It also uses the WP_Http class, which is also built into WordPress already." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:765 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:765 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:765 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:766 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:766 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:776 #: src/includes/classes/MenuPageOptions.php:765 msgid "The Auto-Cache Engine obtains its list of URLs to auto-cache, from two different sources. It can read an XML Sitemap and/or a list of specific URLs that you supply. If you supply both sources, it will use both sources collectively. The Auto-Cache Engine takes ALL of your other configuration options into consideration too, including your Expiration Time, as well as any cache exclusion rules." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:767 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:767 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:767 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:768 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:768 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:778 #: src/includes/classes/MenuPageOptions.php:767 msgid "No, leave the Auto-Cache Engine disabled please." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:768 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:768 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:768 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:769 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:769 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:779 #: src/includes/classes/MenuPageOptions.php:768 msgid "Yes, I want the Auto-Cache Engine to keep pages cached automatically." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:774 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:774 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:774 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:775 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:775 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:785 #: src/includes/classes/MenuPageOptions.php:774 msgid "XML Sitemap URL (or an XML Sitemap Index)" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:778 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:778 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:778 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:779 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:779 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:789 #: src/includes/classes/MenuPageOptions.php:778 msgid "All URLs in this network are in the sitemap for the main site." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:779 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:779 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:779 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:780 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:780 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:790 #: src/includes/classes/MenuPageOptions.php:779 msgid "Using the path I've given, look for blog-specific sitemaps in each child blog also." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:781 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:781 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:781 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:782 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:782 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:792 #: src/includes/classes/MenuPageOptions.php:781 msgid " If enabled here, each child blog can be auto-cached too. %1$s will dynamically change the leading %2$s as necessary; for each child blog in the network. %1$s supports both sub-directory & sub-domain networks, including domain mapping plugins. For more information about how the Auto-Cache Engine caches child blogs, see this article." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:785 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:785 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:785 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:786 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:786 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:796 #: src/includes/classes/MenuPageOptions.php:785 msgid "And/Or; a List of URLs to Auto-Cache (One Per Line)" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:787 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:787 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:787 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:788 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:788 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:798 #: src/includes/classes/MenuPageOptions.php:787 msgid "Note: Wildcards are NOT supported here. If you are going to supply a list of URLs above, each line must contain one full URL for the Auto-Cache Engine to auto-cache. If you have many URLs, we recommend using an XML Sitemap." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:791 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:791 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:791 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:792 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:792 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:802 #: src/includes/classes/MenuPageOptions.php:791 msgid "Auto-Cache Delay Timer (in Milliseconds)" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:792 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:792 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:792 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:793 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:793 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:803 #: src/includes/classes/MenuPageOptions.php:792 msgid "As the Auto-Cache Engine runs through each URL, you can tell it to wait X number of milliseconds between each connection that it makes. It is strongly suggested that you DO have some small delay here. Otherwise, you run the risk of hammering your own web server with multiple repeated connections whenever the Auto-Cache Engine is running. This is especially true on very large sites; where there is the potential for hundreds of repeated connections as the Auto-Cache Engine goes through a long list of URLs. Adding a delay between each connection will prevent the Auto-Cache Engine from placing a heavy load on the processor that powers your web server. A value of 500 milliseconds is suggested here (half a second). If you experience problems, you can bump this up a little at a time, in increments of 500 milliseconds; until you find a happy place for your server. Please note that 1000 milliseconds = 1 full second." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:797 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:797 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:797 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:798 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:798 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:808 #: src/includes/classes/MenuPageOptions.php:797 msgid "Auto-Cache User-Agent String" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:799 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:799 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:799 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:800 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:800 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:810 #: src/includes/classes/MenuPageOptions.php:799 msgid "This is how the Auto-Cache Engine identifies itself when connecting to URLs. See User Agent in the Wikipedia." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:811 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:811 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:811 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:812 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:812 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:822 #: src/includes/classes/MenuPageOptions.php:811 msgid "HTML Compression" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:816 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:816 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:816 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:817 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:817 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:827 #: src/includes/classes/MenuPageOptions.php:816 msgid "Enable WebSharks™ HTML Compression?" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:818 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:818 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:818 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:819 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:819 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:829 #: src/includes/classes/MenuPageOptions.php:818 msgid "No, do NOT compress HTML/CSS/JS code at runtime." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:819 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:819 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:819 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:820 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:820 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:830 #: src/includes/classes/MenuPageOptions.php:819 msgid "Yes, I want to compress HTML/CSS/JS for blazing fast speeds." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:821 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:821 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:821 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:822 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:822 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:832 #: src/includes/classes/MenuPageOptions.php:821 msgid "Note: This is experimental. Please report issues here." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:824 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:824 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:824 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:825 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:825 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:835 #: src/includes/classes/MenuPageOptions.php:824 msgid "HTML Compression Options" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:825 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:825 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:825 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:826 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:826 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:836 #: src/includes/classes/MenuPageOptions.php:825 msgid "You can learn more about all of these options here." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:827 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:827 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:827 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:828 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:828 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:838 #: src/includes/classes/MenuPageOptions.php:827 msgid "Yes, combine CSS from <head> and <body> into fewer files." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:828 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:828 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:828 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:829 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:829 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:839 #: src/includes/classes/MenuPageOptions.php:828 msgid "No, do not combine CSS from <head> and <body> into fewer files." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:831 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:831 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:831 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:832 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:832 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:842 #: src/includes/classes/MenuPageOptions.php:831 msgid "Yes, compress the code in any unified CSS files." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:832 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:832 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:832 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:833 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:833 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:843 #: src/includes/classes/MenuPageOptions.php:832 msgid "No, do not compress the code in any unified CSS files." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:835 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:835 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:835 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:836 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:836 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:846 #: src/includes/classes/MenuPageOptions.php:835 msgid "Yes, combine JS from <head> into fewer files." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:836 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:836 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:836 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:837 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:837 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:847 #: src/includes/classes/MenuPageOptions.php:836 msgid "No, do not combine JS from <head> into fewer files." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:839 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:839 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:839 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:840 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:840 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:850 #: src/includes/classes/MenuPageOptions.php:839 msgid "Yes, combine JS footer scripts into fewer files." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:840 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:840 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:840 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:841 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:841 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:851 #: src/includes/classes/MenuPageOptions.php:840 msgid "No, do not combine JS footer scripts into fewer files." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:843 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:843 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:843 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:844 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:844 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:854 #: src/includes/classes/MenuPageOptions.php:843 msgid "Yes, combine CSS/JS from remote resources too." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:844 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:844 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:844 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:845 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:845 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:855 #: src/includes/classes/MenuPageOptions.php:844 msgid "No, do not combine CSS/JS from remote resources." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:847 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:847 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:847 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:848 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:848 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:858 #: src/includes/classes/MenuPageOptions.php:847 msgid "Yes, compress the code in any unified JS files." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:848 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:848 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:848 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:849 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:849 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:859 #: src/includes/classes/MenuPageOptions.php:848 msgid "No, do not compress the code in any unified JS files." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:851 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:851 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:851 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:852 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:852 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:862 #: src/includes/classes/MenuPageOptions.php:851 msgid "Yes, compress inline JavaScript snippets." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:852 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:852 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:852 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:853 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:853 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:863 #: src/includes/classes/MenuPageOptions.php:852 msgid "No, do not compress inline JavaScript snippets." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:855 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:855 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:855 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:856 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:856 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:866 #: src/includes/classes/MenuPageOptions.php:855 msgid "Yes, compress (remove extra whitespace) in the final HTML code too." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:856 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:856 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:856 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:857 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:857 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:867 #: src/includes/classes/MenuPageOptions.php:856 msgid "No, do not compress the final HTML code." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:859 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:859 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:859 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:860 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:860 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:870 #: src/includes/classes/MenuPageOptions.php:859 msgid "CSS Exclusion Patterns?" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:860 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:860 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:860 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:861 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:861 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:871 #: src/includes/classes/MenuPageOptions.php:860 msgid "Sometimes there are special cases when a particular CSS file should NOT be consolidated or compressed in any way. This is where you will enter those if you need to (one per line). Searches are performed against the <link href=""> value, and also against the contents of any inline <style> tags (caSe insensitive). A wildcard * character can also be used when necessary; e.g., xy*-framework (where * = 0 or more characters that are NOT a slash /). Other special characters include: ** = 0 or more characters of any kind, including / slashes; ^ = beginning of the string; $ = end of the string. To learn more about this syntax, please see this KB article." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:863 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:863 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:863 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:864 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:864 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:874 #: src/includes/classes/MenuPageOptions.php:863 msgid "JavaScript Exclusion Patterns?" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:864 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:864 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:864 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:865 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:865 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:875 #: src/includes/classes/MenuPageOptions.php:864 msgid "Sometimes there are special cases when a particular JS file should NOT be consolidated or compressed in any way. This is where you will enter those if you need to (one per line). Searches are performed against the <script src=""> value, and also against the contents of any inline <script> tags (caSe insensitive). A wildcard * character can also be used when necessary; e.g., xy*-framework (where * = 0 or more characters that are NOT a slash /). Other special characters include: ** = 0 or more characters of any kind, including / slashes; ^ = beginning of the string; $ = end of the string. To learn more about this syntax, please see this KB article." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:867 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:867 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:867 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:868 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:868 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:878 #: src/includes/classes/MenuPageOptions.php:867 msgid "URI Exclusions for HTML Compressor?" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:868 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:868 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:868 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:869 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:869 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:879 #: src/includes/classes/MenuPageOptions.php:868 msgid "When you enable HTML Compression above, you may want to prevent certain pages on your site from being cached by the HTML Compressor. This is where you will enter those if you need to (one per line). Searches are performed against the REQUEST_URI; i.e., /path/?query (caSe insensitive). So, don't put in full URLs here, just word fragments found in the file path (or query string) is all you need, excluding the http:// and domain name. A wildcard * character can also be used when necessary; e.g., /category/abc-followed-by-* (where * = 0 or more characters that are NOT a slash /). Other special characters include: ** = 0 or more characters of any kind, including / slashes; ^ = beginning of the string; $ = end of the string. To learn more about this syntax, please see this KB article." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:873 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:873 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:873 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:874 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:874 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:884 #: src/includes/classes/MenuPageOptions.php:873 msgid "HTML Compression Cache Expiration" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:875 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:875 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:875 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:876 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:876 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:886 #: src/includes/classes/MenuPageOptions.php:875 msgid "Tip: the value that you specify here MUST be compatible with PHP's strtotime() function. Examples: 2 hours, 7 days, 6 months, 1 year." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:876 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:876 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:876 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:877 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:877 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:887 #: src/includes/classes/MenuPageOptions.php:876 msgid "Note: This does NOT impact the overall cache expiration time that you configure with %1$s. It only impacts the sub-routines provided by the HTML Compressor. In fact, this expiration time is mostly irrelevant. The HTML Compressor uses an internal checksum, and it also checks filemtime() before using an existing cache file. The HTML Compressor class also handles the automatic cleanup of your cache directories to keep it from growing too large over time. Therefore, unless you have VERY little disk space there is no reason to set this to a lower value (even if your site changes dynamically quite often). If anything, you might like to increase this value which could help to further reduce server load. You can learn more here. We recommend setting this value to at least double that of your overall %1$s expiration time." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:878 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:878 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:878 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:879 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:879 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:631 #: src/includes/classes/MenuPageOptions.php:878 msgid "Enable HTML Compression for Logged-In Users?" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:879 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:879 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:879 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:880 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:880 #: src/includes/classes/MenuPageOptions.php:879 msgid "Disabled by default. This setting is only applicable when caching for Logged-In Users is enabled. This should remain disabled for logged-in users because the user-specific cache has a much shorter Time To Live (TTL) which means their cache is likely to expire more quickly than a normal visitor. Rebuilding the HTML Compressor cache is time-consuming and doing it too frequently will actually slow things down for them. For example, if you're logged into the site as a user and you submit a form, that triggers a clearing of the cache for that user, including the HTML Compressor cache (when Logged-In User caching is enabled). Lots of little actions you take can result in a clearing of the cache. This shorter TTL is not ideal when running the HTML Compressor because it does a deep analysis of the page content and the associated resources in order to intelligently compress things. For logged-in users, it is better to skip that extra work and just cache the HTML source as-is, avoiding that extra overhead. In short, do NOT turn this on unless you know what you're doing." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:881 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:881 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:881 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:882 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:882 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:634 #: src/includes/classes/MenuPageOptions.php:881 msgid "No, disable HTML Compression for logged-in users (recommended)." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:882 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:882 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:882 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:883 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:883 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:635 #: src/includes/classes/MenuPageOptions.php:882 msgid "Yes, enable HTML Compression for logged-in users." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:894 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:894 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:894 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:895 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:895 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:898 #: src/includes/classes/MenuPageOptions.php:894 msgid "GZIP Compression" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:899 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:899 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:899 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:900 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:900 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:903 #: src/includes/classes/MenuPageOptions.php:899 msgid "GZIP Compression (Optional; Highly Recommended)" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:900 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:900 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:900 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:901 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:901 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:904 #: src/includes/classes/MenuPageOptions.php:900 msgid "You don't have to use an .htaccess file to enjoy the performance enhancements provided by this plugin; caching is handled automatically by WordPress/PHP alone. That being said, if you want to take advantage of the additional speed enhancements associated w/ GZIP compression (and we do recommend this), then you WILL need an .htaccess file to accomplish that part." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:901 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:901 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:901 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:902 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:902 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:905 #: src/includes/classes/MenuPageOptions.php:901 msgid "%1$s fully supports GZIP compression on its output. However, it does not handle GZIP compression directly. We purposely left GZIP compression out of this plugin, because GZIP compression is something that should really be enabled at the Apache level or inside your php.ini file. GZIP compression can be used for things like JavaScript and CSS files as well, so why bother turning it on for only WordPress-generated pages when you can enable GZIP at the server level and cover all the bases!" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:902 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:902 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:902 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:903 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:903 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:906 #: src/includes/classes/MenuPageOptions.php:902 msgid "If you want to enable GZIP, create an .htaccess file in your WordPress® installation directory, and put the following few lines in it. Alternatively, if you already have an .htaccess file, just add these lines to it, and that is all there is to it. GZIP is now enabled in the recommended way! See also: video about GZIP Compression." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:916 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:916 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:916 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:917 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:917 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:920 #: src/includes/classes/MenuPageOptions.php:916 msgid "Static CDN Filters" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:920 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:920 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:920 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:921 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:921 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:924 #: src/includes/classes/MenuPageOptions.php:920 msgid "Clear CDN Cache (Bump CDN Invalidation Counter)" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:920 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:920 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:920 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:921 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:921 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:924 #: src/includes/classes/MenuPageOptions.php:920 msgid "Clear CDN Cache" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:921 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:921 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:921 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:922 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:922 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:925 #: src/includes/classes/MenuPageOptions.php:921 msgid "Enable Static CDN Filters (e.g., MaxCDN/CloudFront)?" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:922 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:922 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:922 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:923 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:923 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:926 #: src/includes/classes/MenuPageOptions.php:922 msgid "This feature allows you to serve some and/or ALL static files on your site from a CDN of your choosing. This is made possible through content/URL filters exposed by WordPress and implemented by %1$s. All it requires is that you setup a CDN host name sourced by your WordPress installation domain. You enter that CDN host name below and %1$s will do the rest! Super easy, and it doesn't require any DNS changes either. :-) Please click here for a general set of instructions." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:923 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:923 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:923 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:924 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:924 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:927 #: src/includes/classes/MenuPageOptions.php:923 msgid "What's a CDN? It's a Content Delivery Network (i.e., a network of optimized servers) designed to cache static resources served from your site (e.g., JS/CSS/images and other static files) onto it's own servers, which are located strategically in various geographic areas around the world. Integrating a CDN for static files can dramatically improve the speed and performance of your site, lower the burden on your own server, and reduce latency associated with visitors attempting to access your site from geographic areas of the world that might be very far away from the primary location of your own web servers." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:926 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:926 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:926 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:927 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:927 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:930 #: src/includes/classes/MenuPageOptions.php:926 msgid "It appears that your server is running NGINX and does not support .htaccess rules. Please update your server configuration manually. Note that updating your NGINX server configuration before enabling Static CDN Filters is recommended to prevent any CORS errors with your CDN. If you've already updated your NGINX configuration, you can safely ignore this message." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:930 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:930 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:930 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:931 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:931 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:934 #: src/includes/classes/MenuPageOptions.php:930 msgid "No, I do NOT want CDN filters applied at runtime." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:931 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:931 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:931 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:932 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:932 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:935 #: src/includes/classes/MenuPageOptions.php:931 msgid "Yes, I want CDN filters applied w/ my configuration below." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:938 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:938 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:938 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:939 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:939 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:942 #: src/includes/classes/MenuPageOptions.php:938 msgid "CDN Host Name (Required)" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:944 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:944 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:944 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:945 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:945 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:948 #: src/includes/classes/MenuPageOptions.php:944 msgid "This field is really all that's necessary to get Static CDN Filters working! However, it does requires a little bit of work on your part. You need to setup and configure a CDN before you can fill in this field. Once you configure a CDN, you'll receive a host name (provided by your CDN), which you'll enter here; e.g., js9dgjsl4llqpp.cloudfront.net. We recommend MaxCDN, Amazon CloudFront, KeyCDN, and/or CDN77 but this should work with many of the most popular CDNs. Please read this article for a general set of instructions. We also have a MaxCDN tutorial, CloudFront tutorial, KeyCDN tutorial, and a CDN77 tutorial to walk you through the process." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:949 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:949 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:949 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:950 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:950 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:953 #: src/includes/classes/MenuPageOptions.php:949 msgid "Multiple CDN Host Names for Domain Sharding and Multisite Networks (Optional)" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:950 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:950 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:950 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:951 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:951 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:954 #: src/includes/classes/MenuPageOptions.php:950 msgid "%1$s also supports multiple CDN Host Names for any given domain. Using multiple CDN Host Names (instead of just one, as seen above) is referred to as Domain Sharding (click here to learn more). If you configure multiple CDN Host Names (i.e., if you implement Domain Sharding), %1$s will use the first one that you list for static resources loaded in the HTML <head> section, the last one for static resources loaded in the footer, and it will choose one at random for all other static resource locations. Configuring multiple CDN Host Names can improve speed! This is a way for advanced site owners to work around concurrency limits in popular browsers; i.e., making it possible for browsers to download many more resources simultaneously, resulting in a faster overall completion time. In short, this tells the browser that your website will not be overloaded by concurrent requests, because static resources are in fact being served by a content-delivery network (i.e., multiple CDN host names). If you use this functionality for Domain Sharding, we suggest that you setup one CDN Distribution (aka: Pull Zone), and then create multiple CNAME records pointing to that distribution. You can enter each of your CNAMES in the field below, as instructed." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:951 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:951 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:951 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:952 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:952 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:955 #: src/includes/classes/MenuPageOptions.php:951 msgid "On WordPress Multisite Network installations, this field also allows you to configure different CDN Host Names for each domain (or sub-domain) that you run from a single installation of WordPress. For more information about configuring Static CDN Filters on a WordPress Multisite Network, see this tutorial: Static CDN Filters for WordPress Multisite Networks." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:953 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:953 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:953 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:954 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:954 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:957 #: src/includes/classes/MenuPageOptions.php:953 msgid "↑ Syntax: This is a line-delimited list of domain mappings. Each line should start with your WordPress domain name (e.g., %1$s), followed by an = sign, followed by a comma-delimited list of CDN Host Names associated with the domain in that line. If you're running a Multisite Network installation of WordPress, you might have multiple configuration lines. Otherwise, you should only need one line to configure multiple CDN Host Names for a standard WordPress installation." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:957 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:957 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:957 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:958 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:958 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:961 #: src/includes/classes/MenuPageOptions.php:957 msgid "CDN Supports HTTPS Connections?" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:959 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:959 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:959 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:960 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:960 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:963 #: src/includes/classes/MenuPageOptions.php:959 msgid "No, I don't serve content over https://; or I haven't configured my CDN w/ an SSL certificate." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:960 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:960 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:960 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:961 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:961 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:964 #: src/includes/classes/MenuPageOptions.php:960 msgid "Yes, I've configured my CDN w/ an SSL certificate; I need https:// enabled." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:967 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:967 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:967 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:968 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:968 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:971 #: src/includes/classes/MenuPageOptions.php:967 msgid "Additional Options (For Advanced Users)" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:972 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:972 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:972 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:973 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:973 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:976 #: src/includes/classes/MenuPageOptions.php:972 msgid "Everything else below is 100% completely optional; i.e., not required to enjoy the benefits of Static CDN Filters." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:976 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:976 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:976 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:977 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:977 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:980 #: src/includes/classes/MenuPageOptions.php:976 msgid "Whitelisted File Extensions (Optional; Comma-Delimited)" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:978 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:978 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:978 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:979 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:979 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:982 #: src/includes/classes/MenuPageOptions.php:978 msgid "If you leave this empty a default set of extensions are taken from WordPress itself. The default set of whitelisted file extensions includes everything supported by the WordPress media library." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:980 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:980 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:980 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:981 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:981 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:984 #: src/includes/classes/MenuPageOptions.php:980 msgid "Blacklisted File Extensions (Optional; Comma-Delimited)" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:982 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:982 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:982 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:983 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:983 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:986 #: src/includes/classes/MenuPageOptions.php:982 msgid "With or without a whitelist, you can force exclusions by explicitly blacklisting certain file extensions of your choosing. Please note, the php extension will never be considered a static resource; i.e., it is automatically blacklisted at all times." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:986 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:986 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:986 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:987 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:987 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:990 #: src/includes/classes/MenuPageOptions.php:986 msgid "Whitelisted URI Inclusion Patterns (Optional; One Per Line)" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:988 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:988 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:988 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:989 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:989 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:992 #: src/includes/classes/MenuPageOptions.php:988 msgid "Note: please remember that your entries here should be formatted as a line-delimited list; e.g., one inclusion pattern per line." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:989 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:989 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:989 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:990 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:990 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:993 #: src/includes/classes/MenuPageOptions.php:989 msgid "If provided, only local URIs matching one of the patterns you list here will be served from your CDN Host Name. URI patterns are caSe-insensitive. A wildcard * will match zero or more characters in any of your patterns. A caret ^ symbol will match zero or more characters that are NOT the / character. For instance, */wp-content/* here would indicate that you only want to filter URLs that lead to files located inside the wp-content directory. Adding an additional line with */wp-includes/* would filter URLs in the wp-includes directory also. If you leave this empty, ALL files matching a static file extension will be served from your CDN; i.e., the default behavior." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:990 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:990 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:990 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:991 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:991 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:994 #: src/includes/classes/MenuPageOptions.php:990 msgid "Please note that URI patterns are tested against a file's path (i.e., a file's URI, and NOT its full URL). A URI always starts with a leading /. To clarify, a URI is the portion of the URL which comes after the host name. For instance, given the following URL: http://example.com/path/to/style.css?ver=3, the URI you are matching against would be: /path/to/style.css?ver=3. To whitelist this URI, you could use a line that contains something like this: /path/to/*.css*" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:992 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:992 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:992 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:993 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:993 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:996 #: src/includes/classes/MenuPageOptions.php:992 msgid "Blacklisted URI Exclusion Patterns (Optional; One Per Line)" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:994 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:994 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:994 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:995 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:995 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:998 #: src/includes/classes/MenuPageOptions.php:994 msgid "With or without a whitelist, you can force exclusions by explicitly blacklisting certain URI patterns. URI patterns are caSe-insensitive. A wildcard * will match zero or more characters in any of your patterns. A caret ^ symbol will match zero or more characters that are NOT the / character. For instance, */wp-content/*/dynamic.pdf* would exclude a file with the name dynamic.pdf located anywhere inside a sub-directory of wp-content." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:999 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:999 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:999 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1000 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1000 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1003 #: src/includes/classes/MenuPageOptions.php:999 msgid "Query String Invalidation Variable Name" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1001 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1001 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1001 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1002 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1002 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1005 #: src/includes/classes/MenuPageOptions.php:1001 msgid "Each filtered URL (which then leads to your CDN) will include this query string variable as an easy way to invalidate the CDN cache at any time. Invalidating the CDN cache is simply a matter of changing the global invalidation counter (i.e., the value assigned to this query string variable). %1$s manages invalidations automatically; i.e., %1$s will automatically bump an internal counter each time you upgrade a WordPress component (e.g., a plugin, theme, or WP itself). Or, if you ask %1$s to invalidate the CDN cache (e.g., a manual clearing of the CDN cache); the internal counter is bumped then too. In short, %1$s handles cache invalidations for you reliably. This option simply allows you to customize the query string variable name which makes cache invalidations possible. Please note, the default value is adequate for most sites. You can change this if you like, but it's not necessary." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1002 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1002 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1002 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1003 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1003 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1006 #: src/includes/classes/MenuPageOptions.php:1002 msgid "Tip: You can also tell %1$s to automatically bump the CDN Invalidation Counter whenever you clear the cache manually. See: %1$s → Manual Cache Clearing → Clear the CDN Cache Too?" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1003 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1003 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1003 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1004 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1004 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1007 #: src/includes/classes/MenuPageOptions.php:1003 msgid "Note: If you empty this field, it will effectively disable the %1$s invalidation system for Static CDN Filters; i.e., the query string variable will NOT be included if you do not supply a variable name." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1016 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1016 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1016 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1017 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1017 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1020 #: src/includes/classes/MenuPageOptions.php:1016 msgid "Dynamic Version Salt" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1021 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1021 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1021 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1022 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1022 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1025 #: src/includes/classes/MenuPageOptions.php:1021 msgid " GEEK ALERT This is for VERY advanced users only..." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1022 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1022 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1022 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1023 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1023 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1026 #: src/includes/classes/MenuPageOptions.php:1022 msgid "Note: Understanding the %1$s Branched Cache Structure is a prerequisite to understanding how Dynamic Version Salts are added to the mix." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1023 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1023 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1023 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1024 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1024 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1027 #: src/includes/classes/MenuPageOptions.php:1023 msgid "A Version Salt gives you the ability to dynamically create multiple variations of the cache, and those dynamic variations will be served on subsequent visits; e.g., if a visitor has a specific cookie (of a certain value) they will see pages which were cached with that version (i.e., w/ that Version Salt: the value of the cookie). A Version Salt can really be anything." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1024 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1024 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1024 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1025 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1025 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1028 #: src/includes/classes/MenuPageOptions.php:1024 msgid "A Version Salt can be a single variable like $_COOKIE['my_cookie'], or it can be a combination of multiple variables, like $_COOKIE['my_cookie'].$_COOKIE['my_other_cookie']. (When using multiple variables, please separate them with a dot, as shown in the example.)" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1025 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1025 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1025 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1026 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1026 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1029 #: src/includes/classes/MenuPageOptions.php:1025 msgid "Experts could even use PHP ternary expressions that evaluate into something. For example: ((preg_match('/iPhone/i', $_SERVER['HTTP_USER_AGENT'])) ? 'iPhones' : ''). This would force a separate version of the cache to be created for iPhones (e.g., /cache/PROTOCOL/HOST/REQUEST-URI.v/iPhones.html)." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1026 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1026 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1026 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1027 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1027 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1030 #: src/includes/classes/MenuPageOptions.php:1026 msgid "For more documentation, please see Dynamic Version Salts." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1028 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1028 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1028 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1029 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1029 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1032 #: src/includes/classes/MenuPageOptions.php:1028 msgid "Create a Dynamic Version Salt For %1$s?       150%% OPTIONAL" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1030 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1030 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1030 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1031 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1031 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1034 #: src/includes/classes/MenuPageOptions.php:1030 msgid "Super Globals work here; $GLOBALS['table_prefix'] is a popular one.
Or, perhaps a PHP Constant defined in /wp-config.php; such as WPLANG or DB_HOST." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1031 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1031 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1031 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1032 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1032 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1035 #: src/includes/classes/MenuPageOptions.php:1031 msgid "Important: your Version Salt is scanned for PHP syntax errors via phpCodeChecker.com. If errors are found, you'll receive a notice in the Dashboard." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1032 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1032 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1032 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1033 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1033 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1036 #: src/includes/classes/MenuPageOptions.php:1032 msgid "If you've enabled a separate cache for each user (optional) that's perfectly OK. A Version Salt works with user caching too." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1042 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1042 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1042 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1043 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1043 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1046 #: src/includes/classes/MenuPageOptions.php:1042 msgid "Theme/Plugin Developers" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1047 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1047 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1047 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1048 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1048 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1051 #: src/includes/classes/MenuPageOptions.php:1047 msgid "Developing a Theme or Plugin for WordPress?" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1048 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1048 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1048 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1049 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1049 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1052 #: src/includes/classes/MenuPageOptions.php:1048 msgid "Tip: %1$s can be disabled temporarily. If you're a theme/plugin developer, you can set a flag within your PHP code to disable the cache engine at runtime. Perhaps on a specific page, or in a specific scenario. In your PHP script, set: $_SERVER['COMET_CACHE_ALLOWED'] = FALSE; or define('COMET_CACHE_ALLOWED', FALSE). %1$s is also compatible with: define('DONOTCACHEPAGE', TRUE). It does't matter where or when you define one of these, because %1$s is the last thing to run before script execution ends." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1050 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1050 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1050 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1051 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1051 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1054 #: src/includes/classes/MenuPageOptions.php:1050 msgid "Writing \"Advanced Cache\" Plugins Specifically for %1$s" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1051 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1051 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1051 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1052 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1052 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1055 #: src/includes/classes/MenuPageOptions.php:1051 msgid "Theme/plugin developers can take advantage of the %1$s plugin architecture by creating PHP files inside this special directory: /wp-content/ac-plugins/. There is an example plugin file @ GitHub (please review it carefully and ask questions). If you develop a plugin for %1$s, please share it with the community by publishing it in the plugins respository at WordPress.org." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1052 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1052 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1052 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1053 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1053 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1056 #: src/includes/classes/MenuPageOptions.php:1052 msgid "Why does %1$s have it's own plugin architecture? WordPress loads the advanced-cache.php drop-in file (for caching purposes) very early-on; before any other plugins or a theme. For this reason, %1$s implements it's own watered-down version of functions like add_action(), do_action(), add_filter(), apply_filters()." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1063 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1063 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1063 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1064 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1064 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1067 #: src/includes/classes/MenuPageOptions.php:1063 msgid "Import/Export Options" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1068 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1068 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1068 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1069 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1069 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1072 #: src/includes/classes/MenuPageOptions.php:1068 msgid "Import Options from Another %1$s Installation?" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1069 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1069 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1069 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1070 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1070 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1073 #: src/includes/classes/MenuPageOptions.php:1069 msgid "Upload your %1$s-options.json file and click \"Save All Changes\" below. The options provided by your import file will override any that exist currently." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1072 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1072 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1072 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1073 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1073 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1076 #: src/includes/classes/MenuPageOptions.php:1072 msgid "Export Existing Options from this %1$s Installation?" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1075 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1075 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1075 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1076 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1076 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1079 #: src/includes/classes/MenuPageOptions.php:1075 msgid "%1$s-options.json" msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1076 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1076 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1076 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1077 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1077 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1080 #: src/includes/classes/MenuPageOptions.php:1076 msgid "Download your existing options and import them all into another %1$s installation; saves time on future installs." msgstr "" -#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1084 -#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1084 -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1084 +#: .~build/comet-cache/.~build/comet-cache/src/includes/classes/MenuPageOptions.php:1085 +#: .~build/comet-cache/src/includes/classes/MenuPageOptions.php:1085 +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:1088 #: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:168 #: src/includes/classes/MenuPageOptions.php:1084 #: src/includes/classes/MenuPageProUpdater.php:168 @@ -3655,19 +3660,8 @@ msgstr "" msgid "Unexpected data type." msgstr "" -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:619 -#: src/includes/classes/MenuPageOptions.php:619 -msgid "Enable the Admin Toolbar for Logged-In Users & Comment Authors?" -msgstr "" - -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:620 -#: src/includes/classes/MenuPageOptions.php:620 -msgid "When Logged-In User caching is enabled above, Comet Cache will automatically disable the WordPress Admin Toolbar for logged-in users (on the front-end of the site) because the Toolbar is generally NOT cache-compatible. If you want to enable the Toolbar for logged-in users anyway, you can do that below." -msgstr "" - -#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:626 -#: src/includes/classes/MenuPageOptions.php:626 -msgid "Note: Enabling the Toolbar for logged-in users will cause WordPress Nonce values to appear in the page source; nonce values are generally NOT cache-compatible. Please see this article for details." +#: .~build/comet-cache-pro/src/includes/classes/MenuPageOptions.php:632 +msgid "Disabled by default. This setting is only applicable when HTML Compression is enabled. HTML Compression should remain disabled for logged-in users because the user-specific cache has a much shorter Time To Live (TTL) which means their cache is likely to expire more quickly than a normal visitor. Rebuilding the HTML Compressor cache is time-consuming and doing it too frequently will actually slow things down for them. For example, if you're logged into the site as a user and you submit a form, that triggers a clearing of the cache for that user, including the HTML Compressor cache. Lots of little actions you take can result in a clearing of the cache. This shorter TTL is not ideal when running the HTML Compressor because it does a deep analysis of the page content and the associated resources in order to intelligently compress things. For logged-in users, it is better to skip that extra work and just cache the HTML source as-is, avoiding that extra overhead. In short, do NOT turn this on unless you know what you're doing." msgstr "" #: .~build/comet-cache-pro/src/includes/classes/MenuPageProUpdater.php:29