diff --git a/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/ConfigKeys.php b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/ConfigKeys.php index 4196ffb..2309816 100644 --- a/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/ConfigKeys.php +++ b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/ConfigKeys.php @@ -173,6 +173,18 @@ $keys = array( 'type' => 'boolean', 'default' => true ), + 'lazyload.googlemaps.google_maps_easy' => array( + 'type' => 'boolean', + 'default' => false + ), + 'lazyload.googlemaps.wp_google_maps' => array( + 'type' => 'boolean', + 'default' => false + ), + 'lazyload.googlemaps.wp_google_map_plugin' => array( + 'type' => 'boolean', + 'default' => false + ), 'lazyload.exclude' => array( 'type' => 'array', 'default' => array( @@ -223,7 +235,7 @@ $keys = array( ), 'objectcache.enabled_for_wp_admin' => array( 'type' => 'boolean', - 'default' => true + 'default' => false, ), 'objectcache.fallback_transients' => array( 'type' => 'boolean', diff --git a/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/SystemOpCache_GeneralPage_View.php b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/SystemOpCache_GeneralPage_View.php index 197dd88..4949702 100644 --- a/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/SystemOpCache_GeneralPage_View.php +++ b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/SystemOpCache_GeneralPage_View.php @@ -30,15 +30,15 @@ Util_Ui::config_item( array( ), ) ); -Util_Ui::config_item( array( - 'key' => 'opcache.validate_timestamps', - 'label' => 'Validate timestamps:', - 'control' => 'checkbox', - 'disabled' => true, - 'value' => $validate_timestamps, + $validate_timestamps = ''; + Util_Ui::config_item( array( + 'key' => 'opcache.validate_timestamps', + 'label' => 'Validate timestamps:', + 'control' => 'checkbox', + 'disabled' => true, + 'value' => $validate_timestamps, 'checkbox_label' => __( 'Enable', 'w3-total-cache' ), - 'description' => __( 'Once enabled, each file request will update the cache with the latest version.' - . 'When this setting is off, the Opcode Cache will not check, instead PHP must be restarted in order for setting changes to be reflected.', 'w3-total-cache' ) + 'description' => __( 'Once enabled, each file request will update the cache with the latest version. When this setting is off, the Opcode Cache will not check, instead PHP must be restarted in order for setting changes to be reflected.', 'w3-total-cache' ) ) ); ?> diff --git a/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/UserExperience_LazyLoad_GoogleMaps_GoogleMapsEasy.php b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/UserExperience_LazyLoad_GoogleMaps_GoogleMapsEasy.php new file mode 100644 index 0000000..24439fc --- /dev/null +++ b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/UserExperience_LazyLoad_GoogleMaps_GoogleMapsEasy.php @@ -0,0 +1,71 @@ +]+>)~i', + array( $this, 'tag_script' ), $buffer + ); + + if ( !empty( $this->preload_url ) ) { + $preload_html = ''; + + $buffer = preg_replace( '~]*)*>~Ui', + '\\0' . $preload_html, $buffer, 1 ); + + add_filter( 'w3tc_lazyload_on_initialized_javascript', array( + $this, 'w3tc_lazyload_on_initialized_javascript' ) ); + } + + $data['buffer'] = $buffer; + $data['modified'] |= !empty( $this->preload_url ); + + return $data; + } + + + + public function tag_script( $m ) { + $script_tag = $m[0]; + if ( !preg_match( '~]*src=["\']?([^"\'> ]+)["\'> ]~is', + $script_tag, $match ) ) { + return $script_tag; + } + + $script_src = $match[1]; + $script_src = Util_Environment::url_relative_to_full( $script_src ); + + if ( !$this->starts_with( $script_src, WP_PLUGIN_URL . '/google-maps-easy/modules/gmap/js/frontend.gmap.js' ) ) { + return $script_tag; + } + + $this->preload_url = $script_src; + return ''; + } + + + + private function starts_with( $v, $prefix ) { + return substr( $v, 0, strlen( $prefix ) ) == $prefix; + } + + + + public function w3tc_lazyload_on_initialized_javascript() { + return 'window.w3tc_lazyLazy_googlemaps_wpmaps = new LazyLoad({' . + 'elements_selector: ".gmp_map_opts",'. + 'callback_enter: function(e){' . + + // w3tc_load_js function + 'function w3tc_load_js(t,n){"use strict";var o=document.getElementsByTagName("script")[0],r=document.createElement("script");return r.src=t,r.async=!0,o.parentNode.insertBefore(r,o),n&&"function"==typeof n&&(r.onload=n),r};' . + + 'w3tc_load_js("' . esc_url( $this->preload_url ) . '");' . + '}});'; + } +} diff --git a/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/UserExperience_LazyLoad_GoogleMaps_WPGoogleMapPlugin.php b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/UserExperience_LazyLoad_GoogleMaps_WPGoogleMapPlugin.php new file mode 100644 index 0000000..dd2f83b --- /dev/null +++ b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/UserExperience_LazyLoad_GoogleMaps_WPGoogleMapPlugin.php @@ -0,0 +1,35 @@ +jQuery(document).ready(function($) {var map' ) === false ) { + return $data; + } + + $buffer = str_replace( + '' . '' . - ''; + ''; $buffer = preg_replace( '~]*)*>~Ui', '\\0' . $embed_script, $buffer, 1 ); - // add protection to footer if async script executed too early + // load lazyload in footer to make sure DOM is ready at the moment of initialization $footer_script = ''; + $on_initialized_javascript_wrapped . + 'window.w3tc_lazyload=1,' . + 'window.lazyLoadOptions=' . $config . + '' . + ''; $buffer = preg_replace( '~]*)*>~Ui', $footer_script . '\\0', $buffer, 1 ); @@ -138,18 +171,23 @@ class UserExperience_LazyLoad_Plugin { '' . ''; + 'window.w3tc_lazyload=new LazyLoad(' . $config . ');' . + $on_initialized_javascript . + ''; $buffer = preg_replace( '~]*)*>~Ui', $footer_script . '\\0', $buffer, 1 ); } else { // 'sync_head' $head_script = '' . - ''; + ''; $buffer = preg_replace( '~]*)*>~Ui', '\\0' . $head_script, $buffer, 1 ); $footer_script = - ''; + ''; $buffer = preg_replace( '~]*)*>~Ui', $footer_script . '\\0', $buffer, 1 ); } diff --git a/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/Util_Environment.php b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/Util_Environment.php index 5d2770d..7b005ec 100644 --- a/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/Util_Environment.php +++ b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/Util_Environment.php @@ -182,9 +182,11 @@ class Util_Environment { $result = true; } else { $blog_data = Util_WpmuBlogmap::get_current_blog_data(); - if ( is_null( $blog_data ) ) + if ( is_null( $blog_data ) ) { $result = true; - $result = ( $blog_data[0] == 'm' ); + } else { + $result = ( $blog_data[0] == 'm' ); + } } } @@ -332,10 +334,11 @@ class Util_Environment { $blog_data = Util_WpmuBlogmap::get_current_blog_data(); - if ( !is_null( $blog_data ) ) + if ( !is_null( $blog_data ) ) { $w3_current_blog_id = substr( $blog_data, 1 ); - else + } else { $w3_current_blog_id = 0; + } return $w3_current_blog_id; } diff --git a/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/Util_Ui.php b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/Util_Ui.php index 137905d..569e078 100644 --- a/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/Util_Ui.php +++ b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/Util_Ui.php @@ -791,7 +791,10 @@ class Util_Ui { echo $a['control_after']; } - Util_Ui::pro_wrap_description( $a['excerpt'], $a['description'], $a['control_name'] ); + if ( isset( $a['description'] ) ) { + Util_Ui::pro_wrap_description( $a['excerpt'], $a['description'], $a['control_name'] ); + } + Util_Ui::pro_wrap_maybe_end( $a['control_name'] ); if ( $a['label_class'] != 'w3tc_no_trtd' ) { @@ -802,7 +805,7 @@ class Util_Ui { - static private function config_item_preprocess( $a ) { + static public function config_item_preprocess( $a ) { $c = Dispatcher::config(); if ( !isset( $a['value'] ) || is_null( $a['value'] ) ) { diff --git a/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/inc/options/general.php b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/inc/options/general.php index 562ff4e..de94b5d 100644 --- a/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/inc/options/general.php +++ b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/inc/options/general.php @@ -126,7 +126,7 @@ Util_Ui::config_overloading_button( array( 'key' => 'minify.configuration_overloaded' ) ); ?> -

CSS and JS files. Automatically remove unncessary data from CSS, JS, feed, page and post HTML.' ) ?>

+

CSS and JS files. Automatically remove unnecessary data from CSS, JS, feed, page and post HTML.' ) ?>

API key:" +#: Extension_NewRelic_Widget_View_Apm.php:64 +msgid "Subscription level:" msgstr "" -#: extensions/CloudFlare/CloudFlareSettings.php:11 -msgid "Domain:" +#: ObjectCache_Plugin_Admin.php:32 +#, php-format +msgid "Object Cache: %s." msgstr "" -#: extensions/CloudFlare/CloudFlareSettings.php:15 +#: ObjectCache_Plugin_Admin.php:54 Minify_Plugin_Admin.php:165 +#, php-format msgid "" -"Cloudflare IPsIP4 addresses" +"The setting change(s) made either invalidate the cached data or modify the " +"behavior of the site. %s now to provide a consistent user experience." msgstr "" -#: extensions/CloudFlare/CloudFlareSettings.php:16 +#: ObjectCache_Plugin_Admin.php:57 +msgid "Empty the object cache" +msgstr "" + +#: Generic_Plugin_Admin_View_Faq.php:9 msgid "" -"Cloudflare IPsIP6 addresses" +"Request professional support or troubleshoot issues using the common " +"questions below:" msgstr "" -#: extensions/CloudFlare/general-settings-box.php:1 -msgid "Network Performance & Security powered by CloudFlare" +#: Cdnfsd_LimeLight_Popup_View_Intro.php:14 +#: Cdn_LimeLight_Popup_View_Intro.php:14 +msgid "Your LimeLight Account credentials" msgstr "" -#: extensions/CloudFlare/general-settings-box.php:3 -msgid "CloudFlare protects and accelerates websites." +#: Cdnfsd_LimeLight_Popup_View_Intro.php:45 +#: Cdn_RackSpaceCdn_Popup_View_Regions.php:41 +#: Cdnfsd_StackPath_Popup_View_Intro.php:34 +#: Cdn_StackPath_Popup_View_Intro.php:34 Cdn_StackPath2_Popup_View_Intro.php:42 +#: Cdnfsd_StackPath2_Popup_View_Intro.php:42 +#: Cdn_RackSpaceCdn_Popup_View_Service_Create.php:90 +#: Extension_CloudFlare_Popup_View_Intro.php:38 +#: Extension_CloudFlare_Popup_View_Zones.php:57 +#: Cdnfsd_CloudFront_Popup_View_Intro.php:37 +#: Cdn_LimeLight_Popup_View_Intro.php:53 Cdn_Highwinds_Popup_View_Intro.php:28 +#: Cdn_RackSpaceCloudFiles_Popup_View_Regions.php:41 +#: Cdn_RackSpaceCloudFiles_Popup_View_Intro.php:39 +#: Cdn_RackSpaceCdn_Popup_View_Intro.php:38 +#: Cdnfsd_MaxCdn_Popup_View_Intro.php:34 Cdn_MaxCdn_Popup_View_Intro.php:34 +msgid "Next" msgstr "" -#: extensions/CloudFlare/general-settings-box.php:14 -#: inc/options/general.php:37 inc/options/general.php:57 -#: inc/options/general.php:105 inc/options/general.php:192 -#: inc/options/general.php:243 inc/options/general.php:322 -#: inc/options/general.php:489 inc/options/pgcache.php:238 -#: lib/W3/UI/Settings/Minify.php:20 lib/W3/UI/Settings/Minify.php:25 -#: lib/W3/UI/Settings/Minify.php:32 +#: SystemOpCache_GeneralPage_View.php:8 SystemOpCache_Plugin_Admin.php:55 +#: inc/options/common/header.php:31 +msgid "Opcode Cache" +msgstr "" + +#: SystemOpCache_GeneralPage_View.php:20 +msgid "Not Available" +msgstr "" + +#: SystemOpCache_GeneralPage_View.php:24 +msgid "Opcode: Zend Opcache" +msgstr "" + +#: SystemOpCache_GeneralPage_View.php:28 Util_Ui.php:854 +#: inc/options/general.php:70 +msgid "Opcode: Alternative PHP Cache (APC / APCu)" +msgstr "" + +#: SystemOpCache_GeneralPage_View.php:40 +#: UsageStatistics_GeneralPage_View.php:20 Cdn_GeneralPage_View.php:22 +#: Minify_ConfigLabels.php:17 Minify_ConfigLabels.php:22 +#: Minify_ConfigLabels.php:29 Extension_Genesis_Page_View.php:34 +#: Extension_Genesis_Page_View.php:41 Extension_Genesis_Page_View.php:48 +#: Extension_Genesis_Page_View.php:55 Extension_Genesis_Page_View.php:72 +#: Extension_Genesis_Page_View.php:79 Extension_Genesis_Page_View.php:92 +#: Extension_Genesis_Page_View.php:99 Extension_Genesis_Page_View.php:112 +#: Extension_Genesis_Page_View.php:119 Extension_Genesis_Page_View.php:136 +#: Extension_Genesis_Page_View.php:159 Extension_Genesis_Page_View.php:166 +#: Extension_Genesis_Page_View.php:173 Cdnfsd_GeneralPage_View.php:19 +#: PgCache_ConfigLabels.php:40 inc/options/general.php:28 +#: inc/options/general.php:52 inc/options/general.php:136 +#: inc/options/general.php:213 inc/options/general.php:248 +#: inc/options/general.php:279 inc/options/minify.php:319 +#: inc/options/minify.php:444 inc/options/pgcache.php:105 +#: inc/options/pgcache.php:288 inc/options/pgcache.php:296 msgid "Enable" msgstr "" -#: extensions/CloudFlare/general-settings-box.php:33 -msgid "find it here" +#: SystemOpCache_GeneralPage_View.php:41 +msgid "" +"Once enabled, each file request will update the cache with the latest " +"version. When this setting is off, the Opcode Cache will not check, instead " +"PHP must be restarted in order for setting changes to be reflected." msgstr "" -#: extensions/CloudFlare/general-settings-box.php:45 -msgid "Security level:" +#: SystemOpCache_GeneralPage_View.php:48 +#: Extension_FragmentCache_GeneralPage_View.php:24 Cdn_GeneralPage_View.php:43 +#: Extension_CloudFlare_GeneralPage_View.php:43 inc/options/general.php:117 +#: inc/options/general.php:190 inc/options/general.php:229 +#: inc/options/general.php:260 +msgid "Empty cache" msgstr "" -#: extensions/CloudFlare/general-settings-box.php:58 -msgid "Rocket Loader:" +#: UsageStatistics_Page_DbRequests_View.php:10 +#: UsageStatistics_Page_View_Free.php:10 +#: UsageStatistics_Page_View_Disabled.php:10 +#: UsageStatistics_Page_ObjectCacheLog_View.php:10 +#: UsageStatistics_Page_View_NoDebugMode.php:10 +#: UsageStatistics_Page_PageCacheRequests_View.php:10 +msgid "Usage Statistics" msgstr "" -#: extensions/CloudFlare/general-settings-box.php:71 -msgid "Minification:" -msgstr "" - -#: extensions/CloudFlare/general-settings-box.php:84 -msgid "Development mode:" -msgstr "" - -#: extensions/CloudFlare/general-settings-box.php:95 +#: Generic_Environment.php:99 #, php-format -msgid "Will automatically turn off at %s" +msgid "" +"The Page Cache add-in file advanced-cache.php is not a W3 Total Cache drop-" +"in.\n" +" It should be removed. %s" msgstr "" -#: extensions/CloudFlare/general-settings-box.php:101 -#: inc/options/extensions/list.php:109 inc/options/general.php:83 -#: inc/options/general.php:170 inc/options/general.php:217 -#: inc/options/general.php:268 inc/options/general.php:298 -#: inc/options/general.php:353 inc/options/general.php:388 -#: inc/options/general.php:542 -msgid "Network policy:" +#: Generic_Environment.php:101 ObjectCache_Environment.php:126 +msgid "Yes, remove it for me" msgstr "" -#: extensions/CloudFlare/general-settings-box.php:103 -#: inc/options/general.php:85 inc/options/general.php:172 -#: inc/options/general.php:219 inc/options/general.php:270 -#: inc/options/general.php:300 inc/options/general.php:355 -#: inc/options/general.php:390 inc/options/general.php:544 -msgid "Apply the settings above to the entire network." +#: Cdnfsd_MaxCdn_Popup_View_Success.php:10 +#: Cdnfsd_LimeLight_Popup_View_Success.php:10 +#: Cdn_RackSpaceCdn_Popup_View_Service_Created.php:22 +#: Cdnfsd_CloudFront_Popup_View_Success.php:10 +#: Cdnfsd_StackPath2_Popup_View_Success.php:10 +#: Cdnfsd_StackPath_Popup_View_Success.php:10 +#: Cdn_MaxCdn_Popup_View_Success.php:10 +#: Cdn_StackPath2_Popup_View_Success.php:10 +#: Cdn_LimeLight_Popup_View_Success.php:10 +#: Cdn_StackPath_Popup_View_Success.php:10 +msgid "Succeeded" msgstr "" -#: extensions/CloudFlare/general-settings-box.php:111 -#: inc/options/browsercache.php:117 inc/options/browsercache.php:207 -#: inc/options/browsercache.php:285 inc/options/browsercache.php:373 -#: inc/options/cdn.php:140 inc/options/cdn.php:155 inc/options/cdn.php:303 -#: inc/options/dbcache.php:30 inc/options/dbcache.php:95 -#: inc/options/general.php:46 inc/options/general.php:93 -#: inc/options/general.php:180 inc/options/general.php:231 -#: inc/options/general.php:278 inc/options/general.php:308 -#: inc/options/general.php:363 inc/options/general.php:398 -#: inc/options/general.php:466 inc/options/general.php:661 -#: inc/options/general.php:691 inc/options/minify.php:70 -#: inc/options/minify.php:126 inc/options/minify.php:280 -#: inc/options/minify.php:397 inc/options/minify.php:497 -#: inc/options/mobile.php:83 inc/options/objectcache.php:83 -#: inc/options/pgcache.php:95 inc/options/pgcache.php:141 -#: inc/options/pgcache.php:228 inc/options/pgcache.php:397 -#: inc/options/pro/fragmentcache.php:101 inc/options/referrer.php:83 +#: Cdnfsd_MaxCdn_Popup_View_Success.php:22 +#: Cdnfsd_LimeLight_Popup_View_Success.php:18 +#: Cdn_RackSpaceCdn_Popup_View_Service_Created.php:52 +#: Cdnfsd_CloudFront_Popup_View_Success.php:21 +#: Cdnfsd_StackPath2_Popup_View_Success.php:19 +#: Cdnfsd_StackPath_Popup_View_Success.php:22 +#: Cdn_MaxCdn_Popup_View_Success.php:19 +#: Cdn_StackPath2_Popup_View_Success.php:19 +#: Cdn_LimeLight_Popup_View_Success.php:18 +#: Cdn_StackPath_Popup_View_Success.php:19 +msgid "Done" +msgstr "" + +#: Cdnfsd_StackPath_Engine.php:21 Cdnfsd_StackPath_Engine.php:43 +#: Cdnfsd_MaxCdn_Engine.php:21 Cdnfsd_MaxCdn_Engine.php:46 +#: Cdnfsd_StackPath2_Engine.php:19 Cdnfsd_StackPath2_Engine.php:49 +msgid "API key not specified." +msgstr "" + +#: PgCache_ContentGrabber.php:1561 +#, php-format +msgid "Page Caching using %s%s%s" +msgstr "" + +#: Licensing_Plugin_Admin.php:37 +msgid "" +"Upgrade Performance" +msgstr "" + +#: Licensing_Plugin_Admin.php:51 +msgid "Upgrade" +msgstr "" + +#: Licensing_Plugin_Admin.php:165 +#, php-format +msgid "" +"It looks like your W3 Total Cache Pro License has expired. %s to continue " +"using the Pro Features" +msgstr "" + +#: Licensing_Plugin_Admin.php:169 +msgid "Renew Now" +msgstr "" + +#: Licensing_Plugin_Admin.php:171 +msgid "The W3 Total Cache license key you entered is not valid." +msgstr "" + +#: Licensing_Plugin_Admin.php:173 +msgid "Please enter it again." +msgstr "" + +#: Licensing_Plugin_Admin.php:175 +msgid "The W3 Total Cache license key is not active for this site." +msgstr "" + +#: Licensing_Plugin_Admin.php:177 +msgid "The W3 Total Cache license key is not active for this site. " +msgstr "" + +#: Licensing_Plugin_Admin.php:179 +#, php-format +msgid "" +"You can switch your license to this website following this link" +msgstr "" + +#: Licensing_Plugin_Admin.php:183 +msgid "The W3 Total Cache license key is not active." +msgstr "" + +#: Licensing_Plugin_Admin.php:186 +msgid "The W3 Total Cache license key can't be verified." +msgstr "" + +#: Licensing_Plugin_Admin.php:202 +msgid "The W3 Total Cache license key is deactivated for this site." +msgstr "" + +#: Licensing_Plugin_Admin.php:206 +msgid "The W3 Total Cache license key is activated for this site." +msgstr "" + +#: Licensing_Plugin_Admin.php:222 +msgid "Accept" +msgstr "" + +#: Licensing_Plugin_Admin.php:225 +msgid "Decline" +msgstr "" + +#: Licensing_Plugin_Admin.php:249 +#, php-format +msgid "" +"Our terms of use and privacy policies have been updated. Please review and accept them." +msgstr "" + +#: Licensing_Plugin_Admin.php:254 +#, php-format +msgid "" +"Thanks for using W3 Total Cache! Please review the latest terms of use and privacy policy, and accept them." +msgstr "" + +#: Cdn_Page_View_Fsd_HeaderActions.php:11 +msgid "" +"Purge CDN completely" +msgstr "" + +#: Cdn_Highwinds_Popup_View_ConfigureCnamesForm.php:13 +#: Cdn_RackSpaceCdn_Popup_View_ConfigureDomains.php:13 +msgid "CNAMEs to use" +msgstr "" + +#: Cdn_Highwinds_Popup_View_ConfigureCnamesForm.php:15 +#: Cdn_RackSpaceCdn_Popup_View_ConfigureDomains.php:15 +#: Cdn_RackSpaceCdn_Page_View.php:54 Cdn_RackSpaceCloudFiles_Page_View.php:63 +msgid "" +"Enter hostname mapped to " +"CDN host, this value will replace your site's hostname in the " +"HTML." +msgstr "" + +#: Extension_NewRelic_Plugin.php:122 +msgid "XSL not tracked" +msgstr "" + +#: Extension_NewRelic_Plugin.php:129 Extension_Swarmify_Plugin.php:95 +msgid "rejected by filter: " +msgstr "" + +#: Extension_NewRelic_Plugin.php:138 Extension_Swarmify_Plugin.php:104 +msgid "DOING_AJAX constant is defined" +msgstr "" + +#: Extension_NewRelic_Plugin.php:148 +msgid "DONOTAUTORUM constant is defined" +msgstr "" + +#: Extension_NewRelic_Plugin.php:158 +msgid "logged in role is rejected" +msgstr "" + +#: Extension_NewRelic_Plugin.php:206 +#, php-format +msgid "Application Monitoring using New Relic%s" +msgstr "" + +#: Cdn_Core_Admin.php:701 +msgid "Purge from CDN" +msgstr "" + +#: Extension_FragmentCache_Plugin_Admin.php:24 +msgid "" +"Increase the performance of dynamic sites that cannot benefit from the " +"caching of entire pages." +msgstr "" + +#: Extension_FragmentCache_Plugin_Admin.php:26 +msgid "" +"Fragment caching extends the core functionality of WordPress by enabling " +"caching policies to be set on groups of objects that are cached. The benefit " +"of this approach is not only that capabilities in themes and plugins can be " +"optimized to use caching to save resources and reduce response times, but " +"caching methods like Memcached or Redis (for example) can also be used to " +"scale. Instructions for use are available in the FAQ available under the " +"help menu or contact support for premium services to improve website " +"performance." +msgstr "" + +#: Extension_FragmentCache_Plugin_Admin.php:28 +msgid "" +"This feature gives you control over the caching policies by the group as " +"well as visibility into the configuration by extending the WordPress Object " +"API with additional functionality." +msgstr "" + +#: Extension_FragmentCache_Plugin_Admin.php:102 +#: Extension_FragmentCache_Plugin_Admin.php:104 +#: Extension_FragmentCache_Plugin_Admin.php:162 +#: Extension_FragmentCache_Plugin_Admin.php:170 inc/options/general.php:508 +#: inc/options/common/header.php:35 +msgid "Fragment Cache" +msgstr "" + +#: Extension_FragmentCache_Plugin_Admin.php:119 +msgid "Fragment Cache: All Fragments" +msgstr "" + +#: Extension_Amp_Page_View.php:11 Extension_Swarmify_Page_View.php:24 +#: inc/options/cdn.php:18 +msgid "Configuration" +msgstr "" + +#: Extension_Amp_Page_View.php:16 +msgid "AMP URL Type:" +msgstr "" + +#: Extension_Amp_Page_View.php:28 +msgid "AMP URL Postfix:" +msgstr "" + +#: UsageStatistics_Page_View_Free.php:17 inc/options/edd/buy.php:11 +msgid "upgrade" +msgstr "" + +#: Cdn_RackSpaceCdn_Popup_View_Regions.php:23 +#: Cdn_RackSpaceCloudFiles_Popup_View_Regions.php:23 +msgid "Select region" +msgstr "" + +#: DbCache_Plugin_Admin.php:61 +#, php-format +msgid "Database Cache: %s." +msgstr "" + +#: ObjectCache_Environment.php:124 +#, php-format +msgid "" +"The Object Cache add-in file object-cache.php is not a W3 Total Cache drop-" +"in.\n" +" Remove it or disable Object Caching. %s" +msgstr "" + +#: Extension_NewRelic_Popup_View_ListApplications.php:14 +msgid "Select Application" +msgstr "" + +#: Cdnfsd_Plugin.php:62 +#, php-format +msgid "Content Delivery Network Full Site Delivery via %s" +msgstr "" + +#: Cdn_StackPath_Page_View.php:10 Cdn_StackPath2_Page_View.php:10 +#: Cdn_MaxCdn_Page_View.php:10 +msgid "Create account:" +msgstr "" + +#: Cdn_StackPath_Page_View.php:23 Cdnfsd_MaxCdn_Page_View.php:20 +#: Cdnfsd_StackPath_Page_View.php:20 Cdnfsd_StackPath2_Page_View.php:20 +#: Extension_CloudFlare_Page_View.php:40 Cdnfsd_LimeLight_Page_View.php:20 +#: Cdn_StackPath2_Page_View.php:34 Cdnfsd_CloudFront_Page_View.php:20 +#: Cdn_MaxCdn_Page_View.php:23 +msgid "Specify account credentials:" +msgstr "" + +#: Cdn_StackPath_Page_View.php:30 Cdnfsd_MaxCdn_Page_View.php:29 +#: Cdnfsd_StackPath_Page_View.php:29 Cdn_LimeLight_Page_View.php:17 +#: Cdnfsd_StackPath2_Page_View.php:29 Cdn_Highwinds_Page_View.php:17 +#: Cdn_GoogleDrive_Page_View.php:18 Cdn_RackSpaceCdn_Page_View.php:13 +#: Extension_CloudFlare_Page_View.php:49 Cdnfsd_LimeLight_Page_View.php:29 +#: Cdn_StackPath2_Page_View.php:47 Cdnfsd_CloudFront_Page_View.php:29 +#: Cdn_RackSpaceCloudFiles_Page_View.php:16 Cdn_MaxCdn_Page_View.php:30 +msgid "Reauthorize" +msgstr "" + +#: Cdn_StackPath_Page_View.php:35 Cdnfsd_MaxCdn_Page_View.php:34 +#: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:16 +#: Cdnfsd_StackPath_Page_View.php:34 Cdn_LimeLight_Page_View.php:14 +#: Cdnfsd_StackPath2_Page_View.php:34 Cdn_Highwinds_Page_View.php:14 +#: Cdn_GoogleDrive_Page_View.php:15 +#: Cdn_StackPath2_Widget_View_Unauthorized.php:31 +#: Cdn_RackSpaceCdn_Page_View.php:16 Extension_CloudFlare_Page_View.php:54 +#: Cdnfsd_LimeLight_Page_View.php:34 Cdn_StackPath2_Page_View.php:52 +#: Cdnfsd_CloudFront_Page_View.php:34 Cdn_RackSpaceCloudFiles_Page_View.php:13 +#: Cdn_MaxCdn_Page_View.php:35 Cdn_StackPath_Widget_View_Unauthorized.php:16 +msgid "Authorize" +msgstr "" + +#: Cdn_StackPath_Page_View.php:45 Cdn_StackPath2_Page_View.php:64 +msgid "" +"CDNHTTPCNAME:" +msgstr "" + +#: Cdn_StackPath_Page_View.php:59 Cdn_StackPath2_Page_View.php:78 +msgid "" +"CDNHTTPSCNAME:" +msgstr "" + +#: Cdn_StackPath_Page_View.php:72 Cdn_StackPath2_Page_View.php:91 +#: Cdn_MaxCdn_Page_View.php:72 +msgid "SSL support" +msgstr "" + +#: Cdn_StackPath_Page_View.php:75 Cdn_LimeLight_Page_View.php:27 +#: Cdn_Highwinds_Page_View.php:33 Cdn_StackPath2_Page_View.php:94 +#: Cdn_RackSpaceCloudFiles_Page_View.php:51 Cdn_MaxCdn_Page_View.php:75 +#: inc/options/cdn/att.php:26 inc/options/cdn/ftp.php:58 +#: inc/options/cdn/s3_compatible.php:41 inc/options/cdn/cf2.php:40 +#: inc/options/cdn/mirror.php:12 inc/options/cdn/cf.php:49 +#: inc/options/cdn/cotendo.php:33 inc/options/cdn/edgecast.php:26 +#: inc/options/cdn/rscf.php:46 inc/options/cdn/s3.php:49 +#: inc/options/cdn/azure.php:35 inc/options/cdn/akamai.php:52 +msgid "Auto (determine connection type automatically)" +msgstr "" + +#: Cdn_StackPath_Page_View.php:76 Cdn_StackPath2_Page_View.php:95 +#: Cdn_MaxCdn_Page_View.php:76 +msgid "" +"Enabled (always use SSL)" +msgstr "" + +#: Cdn_StackPath_Page_View.php:77 Cdn_StackPath2_Page_View.php:96 +msgid "" +"Disabled (always use " +"HTTP)" +msgstr "" + +#: Cdn_StackPath_Page_View.php:79 Cdn_LimeLight_Page_View.php:31 +#: Cdn_Highwinds_Page_View.php:37 Cdn_StackPath2_Page_View.php:98 +#: Cdn_RackSpaceCloudFiles_Page_View.php:55 Cdn_MaxCdn_Page_View.php:79 +#: inc/options/cdn/att.php:30 inc/options/cdn/ftp.php:62 +#: inc/options/cdn/s3_compatible.php:45 inc/options/cdn/cf2.php:44 +#: inc/options/cdn/mirror.php:16 inc/options/cdn/cf.php:53 +#: inc/options/cdn/cotendo.php:37 inc/options/cdn/edgecast.php:30 +#: inc/options/cdn/rscf.php:50 inc/options/cdn/s3.php:53 +#: inc/options/cdn/azure.php:39 +msgid "" +"Some CDN providers may " +"or may not support SSL, " +"contact your vendor for more information." +msgstr "" + +#: Cdn_StackPath_Page_View.php:83 Cdn_LimeLight_Page_View.php:35 +#: Cdn_Highwinds_Page_View.php:41 Cdn_RackSpaceCdn_Page_View.php:48 +#: Cdn_RackSpaceCdn_Page_View.php:60 Cdn_StackPath2_Page_View.php:102 +#: Cdn_RackSpaceCloudFiles_Page_View.php:59 Cdn_MaxCdn_Page_View.php:83 +#: inc/options/cdn/att.php:34 inc/options/cdn/ftp.php:86 +#: inc/options/cdn/s3_compatible.php:49 inc/options/cdn/cf2.php:48 +#: inc/options/cdn/mirror.php:20 inc/options/cdn/cf.php:57 +#: inc/options/cdn/cotendo.php:41 inc/options/cdn/edgecast.php:34 +#: inc/options/cdn/rscf.php:54 inc/options/cdn/s3.php:57 +#: inc/options/cdn/azure.php:43 inc/options/cdn/akamai.php:60 +msgid "Replace site's hostname with:" +msgstr "" + +#: Cdn_StackPath_Page_View.php:86 Cdn_StackPath2_Page_View.php:105 +#: Cdn_MaxCdn_Page_View.php:86 inc/options/cdn/att.php:37 +#: inc/options/cdn/mirror.php:23 inc/options/cdn/cotendo.php:44 +#: inc/options/cdn/edgecast.php:37 inc/options/cdn/akamai.php:63 +msgid "" +"Enter the hostname provided by your CDN provider, this value will replace your site's " +"hostname in the HTML." +msgstr "" + +#: Cdn_StackPath_Page_View.php:91 Cdn_StackPath2_Page_View.php:110 +msgid "Test StackPath" +msgstr "" + +#: Extension_NewRelic_Api.php:45 lib/NewRelic/NewRelicAPI.php:39 +msgid "Invalid API key" +msgstr "" + +#: Extension_NewRelic_Service.php:46 +msgid "Supported" +msgstr "" + +#: Extension_NewRelic_Service.php:48 +msgid "PHP version" +msgstr "" + +#: Extension_NewRelic_Service.php:50 +#, php-format +msgid "Not supported: %s." +msgstr "" + +#: Extension_NewRelic_Service.php:96 +msgid "Operating System" +msgstr "" + +#: Extension_NewRelic_Service.php:97 Extension_NewRelic_Service.php:133 +#, php-format +msgid "Not Supported. (%s %s See %s page.)" +msgstr "" + +#: Extension_NewRelic_Service.php:132 +msgid "Web Server" +msgstr "" + +#: Extension_NewRelic_Service.php:152 +msgid "API Key is not configured." +msgstr "" + +#: Extension_NewRelic_Service.php:158 Extension_NewRelic_Service.php:168 +msgid "Application ID is not configured. Enter/Select application name." +msgstr "" + +#: Extension_NewRelic_Service.php:161 +msgid "PHP module is not enabled." +msgstr "" + +#: Extension_NewRelic_Service.php:163 +msgid "PHP agent is not enabled." +msgstr "" + +#: Extension_NewRelic_Service.php:166 +msgid "Account ID is not configured." +msgstr "" + +#: Extension_NewRelic_Service.php:171 +msgid "License key could not be detected in ini file." +msgstr "" + +#: Extension_NewRelic_Service.php:176 +#, php-format +msgid "" +"Configured license key does not match license key(s) in account:
%s " +"
%s" +msgstr "" + +#: Extension_NewRelic_Service.php:181 +msgid "API Key is invalid." +msgstr "" + +#: Extension_NewRelic_Widget_View_Browser.php:8 +msgid "Metrics are not available for browser applications" +msgstr "" + +#: Extension_NewRelic_Widget_View_Browser.php:11 +msgid "Upgrade your New Relic account to enable more metrics." +msgstr "" + +#: Cdnfsd_MaxCdn_Page_View.php:13 Cdnfsd_StackPath_Page_View.php:13 +#: Cdnfsd_StackPath2_Page_View.php:13 Extension_CloudFlare_Cdn_Page_View.php:10 +#: Cdnfsd_LimeLight_Page_View.php:13 Cdnfsd_CloudFront_Page_View.php:13 +msgid "Configuration: Full-Site Delivery" +msgstr "" + +#: Cdnfsd_MaxCdn_Page_View.php:43 Cdnfsd_StackPath_Page_View.php:43 +#: Cdnfsd_StackPath2_Page_View.php:43 Cdnfsd_CloudFront_Page_View.php:43 +msgid "" +"CDNCNAME:" +msgstr "" + +#: Root_AdminMenu.php:26 Root_AdminMenu.php:27 inc/options/dashboard.php:42 +msgid "Dashboard" +msgstr "" + +#: Root_AdminMenu.php:32 Root_AdminMenu.php:33 Generic_Plugin.php:324 +msgid "General Settings" +msgstr "" + +#: Root_AdminMenu.php:38 Root_AdminMenu.php:39 +#: Extension_NewRelic_AdminNotes.php:19 PgCache_ConfigLabels.php:9 +#: PgCache_Plugin.php:273 PgCache_Plugin.php:281 PgCache_Plugin.php:288 +#: inc/options/general.php:39 inc/options/common/header.php:29 +msgid "Page Cache" +msgstr "" + +#: Root_AdminMenu.php:44 Root_AdminMenu.php:45 +#: UsageStatistics_Page_View.php:213 Extension_NewRelic_AdminNotes.php:21 +#: Minify_ConfigLabels.php:9 Minify_Plugin_Admin.php:52 Minify_Plugin.php:306 +#: inc/options/general.php:124 inc/options/minify.php:153 +#: inc/options/minify.php:172 inc/options/minify.php:192 +#: inc/options/minify.php:210 +msgid "Minify" +msgstr "" + +#: Root_AdminMenu.php:50 Root_AdminMenu.php:51 DbCache_Plugin.php:251 +#: DbCache_Plugin.php:258 DbCache_Plugin.php:266 DbCache_ConfigLabels.php:9 +#: inc/options/general.php:201 inc/options/common/header.php:32 +msgid "Database Cache" +msgstr "" + +#: Root_AdminMenu.php:56 Root_AdminMenu.php:57 +#: UsageStatistics_Page_View.php:249 ObjectCache_Plugin.php:274 +#: ObjectCache_Plugin.php:310 ObjectCache_Plugin.php:318 +#: ObjectCache_Plugin.php:326 ObjectCache_ConfigLabels.php:9 +#: inc/options/common/header.php:33 +msgid "Object Cache" +msgstr "" + +#: Root_AdminMenu.php:62 Root_AdminMenu.php:63 inc/options/general.php:267 +#: inc/options/common/header.php:38 +msgid "Browser Cache" +msgstr "" + +#: Root_AdminMenu.php:68 Root_AdminMenu.php:69 +msgid "User Agent Groups" +msgstr "" + +#: Root_AdminMenu.php:74 Root_AdminMenu.php:75 +msgid "Referrer Groups" +msgstr "" + +#: Root_AdminMenu.php:80 +msgid "Content Delivery Network" +msgstr "" + +#: Root_AdminMenu.php:81 Cdn_ConfigLabels.php:9 Cdn_GeneralPage_View.php:7 +msgid "CDN" +msgstr "" + +#: Root_AdminMenu.php:86 Root_AdminMenu.php:87 Generic_Plugin.php:337 +msgid "FAQ" +msgstr "" + +#: Root_AdminMenu.php:93 Generic_Plugin.php:344 +msgid "Support" +msgstr "" + +#: Root_AdminMenu.php:94 +msgid "Support" +msgstr "" + +#: Root_AdminMenu.php:99 Root_AdminMenu.php:100 +msgid "Install" +msgstr "" + +#: Root_AdminMenu.php:105 Root_AdminMenu.php:106 +msgid "About" +msgstr "" + +#: Root_AdminMenu.php:124 Root_AdminMenu.php:125 Generic_Plugin.php:291 +msgid "Performance" +msgstr "" + +#: UserExperience_Plugin_Admin.php:24 UserExperience_Plugin_Admin.php:25 +#: UserExperience_GeneralPage_View.php:9 +msgid "User Experience" +msgstr "" + +#: Generic_Plugin_AdminRowActions.php:36 Generic_Plugin_AdminRowActions.php:55 +#: Generic_Plugin_AdminRowActions.php:74 +msgid "Purge from cache" +msgstr "" + +#: Generic_AdminActions_Test.php:76 +msgid "Test passed." +msgstr "" + +#: Generic_AdminActions_Test.php:81 +msgid "Test failed." +msgstr "" + +#: Generic_AdminActions_Test.php:104 +msgid "Empty JAVA executable path." +msgstr "" + +#: Generic_AdminActions_Test.php:106 +msgid "Empty JAR file path." +msgstr "" + +#: Generic_AdminActions_Test.php:141 +msgid "Invalid engine." +msgstr "" + +#: Cdnfsd_Plugin_Admin.php:81 Cdn_Plugin_Admin.php:169 +msgid "Amazon CloudFront" +msgstr "" + +#: Cdnfsd_Plugin_Admin.php:84 +msgid "CloudFlare (extension not activated)" +msgstr "" + +#: Cdnfsd_Plugin_Admin.php:88 +msgid "Limelight" +msgstr "" + +#: Cdnfsd_Plugin_Admin.php:91 Cdn_Plugin_Admin.php:194 +msgid "MaxCDN" +msgstr "" + +#: Cdnfsd_Plugin_Admin.php:94 Cdn_Plugin_Admin.php:206 +msgid "StackPath SecureCDN (Legacy)" +msgstr "" + +#: Cdnfsd_Plugin_Admin.php:97 Cdn_Plugin_Admin.php:202 +msgid "StackPath (recommended)" +msgstr "" + +#: Extensions_AdminActions.php:17 +#, php-format +msgid "Extension %s has been successfully activated." +msgstr "" + +#: Extension_FragmentCache_Page_View.php:12 Extension_Swarmify_Page_View.php:10 +#: Extension_FeedBurner_Page_View.php:10 Extension_Genesis_Page_View.php:10 +#: Extension_CloudFlare_Page_View.php:9 Extension_NewRelic_Page_View_Apm.php:10 +#: extension-example/Extension_Example_Page_View.php:10 inc/options/cdn.php:16 +#: inc/options/common/header.php:71 inc/options/common/header.php:87 +#: inc/options/common/header.php:103 inc/options/common/header.php:115 +#: inc/options/common/header.php:126 inc/options/common/header.php:141 +#: inc/options/common/header.php:152 +msgid "Main Menu" +msgstr "" + +#: Extension_FragmentCache_Page_View.php:13 Extension_Swarmify_Page_View.php:11 +#: Extension_FeedBurner_Page_View.php:11 Extension_Genesis_Page_View.php:11 +#: Extension_CloudFlare_Page_View.php:10 Extensions_Plugin_Admin.php:103 +#: Extensions_Plugin_Admin.php:104 Extension_NewRelic_Page_View_Apm.php:11 +#: extension-example/Extension_Example_Page_View.php:11 +msgid "Extensions" +msgstr "" + +#: Extension_FragmentCache_Page_View.php:15 +#: Extension_FragmentCache_Page_View.php:78 inc/options/dbcache.php:37 +#: inc/options/cdn.php:19 inc/options/cdn.php:184 +#: inc/options/objectcache.php:29 inc/options/minify.php:455 +#: inc/options/pgcache.php:282 inc/options/common/header.php:74 +#: inc/options/common/header.php:92 inc/options/common/header.php:105 +#: inc/options/common/header.php:116 +msgid "Advanced" +msgstr "" + +#: Extension_FragmentCache_Page_View.php:48 +msgid "Empty the entire cache" +msgstr "" + +#: Extension_FragmentCache_Page_View.php:49 +#: Extension_CloudFlare_Page_View.php:28 +msgid "if needed." +msgstr "" + +#: Extension_FragmentCache_Page_View.php:58 +msgid "Registered fragment groups:" +msgstr "" + +#: Extension_FragmentCache_Page_View.php:69 +msgid "The groups above will be flushed upon setting changes." +msgstr "" + +#: Extension_FragmentCache_Page_View.php:71 +msgid "No groups have been registered." +msgstr "" + +#: Extension_FragmentCache_Page_View.php:91 +msgid "Default lifetime of cached fragments:" +msgstr "" + +#: Extension_FragmentCache_Page_View.php:93 +#: Extension_FragmentCache_Page_View.php:100 inc/options/dbcache.php:53 +#: inc/options/dbcache.php:61 inc/options/cdn.php:269 inc/options/cdn.php:278 +#: inc/options/objectcache.php:44 inc/options/objectcache.php:52 +#: inc/options/browsercache.php:179 inc/options/browsercache.php:283 +#: inc/options/browsercache.php:365 inc/options/minify.php:471 +#: inc/options/minify.php:480 inc/options/pgcache.php:135 +#: inc/options/pgcache.php:345 inc/options/pgcache.php:355 +#: inc/options/pgcache.php:362 +msgid "seconds" +msgstr "" + +#: Extension_FragmentCache_Page_View.php:94 inc/options/dbcache.php:54 +#: inc/options/objectcache.php:45 inc/options/pgcache.php:346 +msgid "" +"Determines the natural expiration time of unchanged cache items. The higher " +"the value, the larger the cache." +msgstr "" + +#: Extension_FragmentCache_Page_View.php:98 DbCache_ConfigLabels.php:12 +#: Minify_ConfigLabels.php:33 PgCache_ConfigLabels.php:44 +#: ObjectCache_ConfigLabels.php:11 +msgid "Garbage collection interval:" +msgstr "" + +#: Extension_FragmentCache_Page_View.php:101 inc/options/dbcache.php:62 +#: inc/options/objectcache.php:53 inc/options/minify.php:481 +#: inc/options/pgcache.php:356 +msgid "" +"If caching to disk, specify how frequently expired cache data is removed. " +"For busy sites, a lower value is best." +msgstr "" + +#: Extension_FragmentCache_Page_View.php:105 +msgid "Manual fragment groups:" +msgstr "" + +#: Extension_FragmentCache_Page_View.php:110 +msgid "" +"Specify fragment groups that should be managed by W3 Total Cache. Enter one " +"action per line comma delimited, e.g. (group, action1, action2). Include the " +"prefix used for a transient by a theme or plugin." +msgstr "" + +#: Extension_NewRelic_Widget.php:77 +msgid "view visualizations" +msgstr "" + +#: Cdnfsd_CloudFront_Popup_View_Distributions.php:13 +msgid "Select distribution to use" +msgstr "" + +#: Cdn_StackPath_Widget_View_Authorized.php:18 +#: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:29 +msgid "Status" +msgstr "" + +#: Cdn_StackPath_Widget_View_Authorized.php:22 +#: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:33 +msgid "Content Zone:" +msgstr "" + +#: Cdn_StackPath_Widget_View_Authorized.php:30 +#: Cdn_StackPath2_Widget_View_Authorized.php:17 +#: Cdn_Highwinds_Widget_View.php:12 +#: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:41 +msgid "Manage" +msgstr "" + +#: Cdn_StackPath_Widget_View_Authorized.php:31 +#: Cdn_StackPath2_Widget_View_Authorized.php:18 +#: Cdn_Highwinds_Widget_View.php:15 +#: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:42 +msgid "Reports" +msgstr "" + +#: Cdn_StackPath_Widget_View_Authorized.php:32 +#: Cdn_StackPath2_Widget_View_Authorized.php:19 +#: Cdn_Highwinds_Widget_View.php:18 +#: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:43 inc/options/cdn.php:49 +#: inc/popup/cdn_purge.php:41 +msgid "Purge" +msgstr "" + +#: Cdn_StackPath_Widget_View_Authorized.php:36 Cdn_Highwinds_Widget_View.php:30 +#: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:47 +msgid "Report - 30 days" +msgstr "" + +#: Cdn_StackPath_Widget_View_Authorized.php:40 +#: Cdn_StackPath2_Widget_View_Authorized.php:27 +#: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:51 +msgid "Transferred" +msgstr "" + +#: Cdn_StackPath_Widget_View_Authorized.php:44 +#: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:55 +msgid "Cache Hits" +msgstr "" + +#: Cdn_StackPath_Widget_View_Authorized.php:51 +#: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:62 +msgid "Cache Misses" +msgstr "" + +#: Cdn_StackPath_Widget_View_Authorized.php:59 +#: Cdn_StackPath2_Widget_View_Authorized.php:31 +#: Cdn_StackPath2_Widget_View_Authorized.php:36 +#: Cdn_Highwinds_Widget_View.php:38 +#: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:70 +msgid "Requests" +msgstr "" + +#: Cdn_StackPath_Widget_View_Authorized.php:61 +#: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:72 +msgid "Content Breakdown" +msgstr "" + +#: Cdn_StackPath_Widget_View_Authorized.php:63 +#: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:74 +msgid "File" +msgstr "" + +#: Cdn_StackPath_Widget_View_Authorized.php:64 +#: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:75 +msgid "Hits" +msgstr "" + +#: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:9 +msgid "" +"Dramatically increase website speeds in just a few clicks! Add the MaxCDN " +"content delivery network (" +"CDN) service to your site." +msgstr "" + +#: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:10 +#: Extension_Swarmify_Widget_View_NotConfigured.php:10 +#: Cdn_StackPath_Widget_View_Unauthorized.php:10 +msgid "New customers" +msgstr "" + +#: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:11 +msgid "MaxCDN works magically with W3 Total Cache." +msgstr "" + +#: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:12 +msgid "Create an Account" +msgstr "" + +#: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:13 +#: Cdn_StackPath_Widget_View_Unauthorized.php:13 +msgid "Exclusive offers availabel for W3TC users!" +msgstr "" + +#: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:14 +#: Extension_Swarmify_Widget_View_NotConfigured.php:14 +#: Cdn_StackPath2_Widget_View_Unauthorized.php:28 +#: Cdn_StackPath_Widget_View_Unauthorized.php:14 +msgid "Current customers" +msgstr "" + +#: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:15 +msgid "" +"Existing MaxCDN customers, enable " +"CDN and:" +msgstr "" + +#: Util_Activation.php:57 +#, php-format +msgid "%s
then %s." +msgstr "" + +#: Util_Activation.php:72 +#, php-format +msgid "
  • chmod 777 %s
  • " +msgstr "" + +#: Util_Activation.php:79 +#, php-format +msgid "" +"%s could not be created, please run following command:
    " +"%s" +msgstr "" + +#: Util_Activation.php:83 +#, php-format +msgid "" +"%s could not be created, open_basedir\n" +" restriction in effect, please check your " +"php.ini settings:
    \n" +" open_basedir = " +"\"%s\"" +msgstr "" + +#: Util_Activation.php:139 +#, php-format +msgid "" +"Create the %s file and paste the following text into it:\n" +"
    " +msgstr "" + +#: Util_Activation.php:170 +msgid "Technical info" +msgstr "" + +#: Util_Activation.php:183 +msgid "Execute next commands in a shell:" +msgstr "" + +#: Util_Activation.php:225 +#, php-format +msgid "" +"W3 Total Cache Error:\n" +" Files and directories could not be " +"automatically\n" +" deleted.\n" +"
    \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +"
    Please execute commands manually\n" +" %s\n" +"
    or use FTP form to allow\n" +" W3 Total Cache make it " +"automatically.\n" +" \n" +" %s\n" +"
    " +msgstr "" + +#: Util_Activation.php:243 +msgid "View required changes" +msgstr "" + +#: Util_Activation.php:244 +msgid "Update via FTP" +msgstr "" + +#: PgCache_Page_CookieGroups_View.php:10 +msgid "" +"Cookie group support is always enabled." +msgstr "" + +#: PgCache_Page_CookieGroups_View.php:15 +msgid "Manage Cookie Groups" +msgstr "" + +#: PgCache_Page_CookieGroups_View.php:19 inc/options/referrer.php:25 +#: inc/options/mobile.php:27 +msgid "Create a group" +msgstr "" + +#: PgCache_Page_CookieGroups_View.php:20 +msgid "" +"of Cookies by specifying names in the Cookies field. Assign a set of Cookies " +"to ensure that a unique cache is created for each Cookie group. Drag and " +"drop groups into order (if needed) to determine their priority (top -> " +"down)." +msgstr "" + +#: PgCache_Page_CookieGroups_View.php:29 inc/options/referrer.php:34 +#: inc/options/mobile.php:37 +msgid "Group name:" +msgstr "" + +#: PgCache_Page_CookieGroups_View.php:42 inc/options/referrer.php:42 +#: inc/options/mobile.php:48 +msgid "Enabled:" +msgstr "" + +#: PgCache_Page_CookieGroups_View.php:56 +msgid "Cache:" +msgstr "" + +#: PgCache_Page_CookieGroups_View.php:70 +msgid "Cookies:" +msgstr "" + +#: PgCache_Page_CookieGroups_View.php:78 +msgid "" +"Specify the cookies for this group. Values like 'cookie', 'cookie=value', " +"and cookie[a-z]+=value[a-z]+ are supported. Remember to escape special " +"characters like spaces, dots or dashes with a backslash. Regular expressions " +"are also supported." +msgstr "" + +#: PgCache_Page_CookieGroups_View.php:86 +msgid "" +"No groups added. All Cookies recieve the same page and minify cache results." +msgstr "" + +#: PgCache_Page_CookieGroups_View.php:93 inc/options/cdn.php:363 +#: inc/options/minify.php:540 inc/options/install.php:82 +#: inc/options/mobile.php:114 +msgid "Note(s):" +msgstr "" + +#: PgCache_Page_CookieGroups_View.php:101 +msgid "Content is cached for each group separately." +msgstr "" + +#: PgCache_Page_CookieGroups_View.php:104 Mobile_Page_UserAgentGroups.php:32 +msgid "" +"Per the above, make sure that visitors are notified about the cookie as per " +"any regulations in your market." +msgstr "" + +#: PgCache_Plugin_Admin.php:303 +#, php-format +msgid "Page Cache: %s." +msgstr "" + +#: PgCache_Plugin_Admin.php:313 PgCache_Plugin_Admin.php:314 +msgid "Cookie Groups" +msgstr "" + +#: BrowserCache_Page_View_QuickReference.php:9 +msgid "Security Headers: Quick Reference" +msgstr "" + +#: BrowserCache_Page_View_QuickReference.php:12 inc/lightbox/self_test.php:11 +msgid "Legend" +msgstr "" + +#: Cdnfsd_StackPath_Popup_View_Intro.php:14 +#: Cdn_StackPath_Popup_View_Intro.php:14 Cdn_StackPath2_Popup_View_Intro.php:14 +#: Cdnfsd_StackPath2_Popup_View_Intro.php:14 +msgid "Your StackPath Account credentials" +msgstr "" + +#: Cdnfsd_LimeLight_Engine.php:26 CdnEngine_Mirror_LimeLight.php:43 +msgid "Credentials are not specified." +msgstr "" + +#: Cdnfsd_LimeLight_Engine.php:65 Cdnfsd_CloudFront_Engine.php:77 +#: CdnEngine_Mirror_LimeLight.php:94 +msgid "Access key not specified." +msgstr "" + +#: Cdn_LimeLight_Page_View.php:10 Cdn_Highwinds_Page_View.php:10 +#: Cdn_GoogleDrive_Page_View.php:11 Cdn_RackSpaceCdn_Page_View.php:9 +#: Cdn_RackSpaceCloudFiles_Page_View.php:9 +msgid "Authorize:" +msgstr "" + +#: Cdn_LimeLight_Page_View.php:24 Cdn_Highwinds_Page_View.php:30 +#: Cdn_RackSpaceCloudFiles_Page_View.php:48 inc/options/cdn/akamai.php:49 +msgid "SSL support:" +msgstr "" + +#: Cdn_LimeLight_Page_View.php:28 Cdn_Highwinds_Page_View.php:34 +#: Cdn_RackSpaceCloudFiles_Page_View.php:52 inc/options/cdn/att.php:27 +#: inc/options/cdn/ftp.php:59 inc/options/cdn/s3_compatible.php:42 +#: inc/options/cdn/cf2.php:41 inc/options/cdn/mirror.php:13 +#: inc/options/cdn/cf.php:50 inc/options/cdn/cotendo.php:34 +#: inc/options/cdn/edgecast.php:27 inc/options/cdn/rscf.php:47 +#: inc/options/cdn/s3.php:50 inc/options/cdn/azure.php:36 +#: inc/options/cdn/akamai.php:53 +msgid "Enabled (always use SSL)" +msgstr "" + +#: Cdn_LimeLight_Page_View.php:29 Cdn_Highwinds_Page_View.php:35 +#: Cdn_RackSpaceCloudFiles_Page_View.php:53 inc/options/cdn/att.php:28 +#: inc/options/cdn/ftp.php:60 inc/options/cdn/s3_compatible.php:43 +#: inc/options/cdn/cf2.php:42 inc/options/cdn/mirror.php:14 +#: inc/options/cdn/cf.php:51 inc/options/cdn/cotendo.php:35 +#: inc/options/cdn/edgecast.php:28 inc/options/cdn/rscf.php:48 +#: inc/options/cdn/s3.php:51 inc/options/cdn/azure.php:37 +#: inc/options/cdn/akamai.php:54 +msgid "Disabled (always use HTTP)" +msgstr "" + +#: Cdn_LimeLight_Page_View.php:38 Cdn_Highwinds_Page_View.php:46 +msgid "" +"Hostname provided by your " +"CDN provider, this value will replace your site's hostname in the " +"HTML." +msgstr "" + +#: Cdn_LimeLight_Page_View.php:46 Cdn_Highwinds_Page_View.php:54 +#: Cdn_RackSpaceCdn_Page_View.php:77 Cdn_RackSpaceCloudFiles_Page_View.php:72 +#: inc/options/parts/memcached_extension.php:21 +#: inc/options/parts/redis_extension.php:23 inc/options/parts/memcached.php:20 +#: inc/options/parts/redis.php:21 +msgid "Test" +msgstr "" + +#: Cdnfsd_Page_View_Header.php:11 Cdn_Page_View_Header.php:12 +#: inc/options/cdn.php:25 +#, php-format +msgid "Content Delivery Network support via %1$s is currently %2$s." +msgstr "" + +#: Cdnfsd_Page_View_Header.php:13 Cdn_Page_View_Header.php:14 +#: inc/options/dbcache.php:12 inc/options/cdn.php:27 inc/options/general.php:12 +#: inc/options/dashboard.php:13 inc/options/extensions.php:10 +#: inc/options/objectcache.php:15 inc/options/browsercache.php:18 +#: inc/options/minify.php:22 inc/options/pgcache.php:15 +msgid "enabled" +msgstr "" + +#: Cdnfsd_Page_View_Header.php:13 Cdn_Page_View_Header.php:14 +#: inc/options/dbcache.php:12 inc/options/cdn.php:27 inc/options/general.php:12 +#: inc/options/dashboard.php:13 inc/options/objectcache.php:15 +#: inc/options/browsercache.php:18 inc/options/minify.php:22 +#: inc/options/pgcache.php:15 +msgid "disabled" +msgstr "" + +#: Cdn_Plugin_Admin.php:158 +msgid "Origin Pull / Mirror:" +msgstr "" + +#: Cdn_Plugin_Admin.php:161 +msgid "Origin Push:" +msgstr "" + +#: Cdn_Plugin_Admin.php:165 +msgid "Akamai" +msgstr "" + +#: Cdn_Plugin_Admin.php:174 +msgid "AT&T" +msgstr "" + +#: Cdn_Plugin_Admin.php:178 +msgid "Cotendo (Akamai)" +msgstr "" + +#: Cdn_Plugin_Admin.php:182 +msgid "Generic Mirror" +msgstr "" + +#: Cdn_Plugin_Admin.php:186 +msgid "Highwinds" +msgstr "" + +#: Cdn_Plugin_Admin.php:190 +msgid "LimeLight" +msgstr "" + +#: Cdn_Plugin_Admin.php:198 +msgid "RackSpace CDN" +msgstr "" + +#: Cdn_Plugin_Admin.php:210 +msgid "Verizon Digital Media Services (EdgeCast) / Media Temple ProCDN" +msgstr "" + +#: Cdn_Plugin_Admin.php:215 +msgid "Amazon CloudFront Over S3" +msgstr "" + +#: Cdn_Plugin_Admin.php:220 +msgid "Amazon Simple Storage Service (S3)" +msgstr "" + +#: Cdn_Plugin_Admin.php:225 +msgid "Amazon Simple Storage Service (S3) Compatible" +msgstr "" + +#: Cdn_Plugin_Admin.php:229 +msgid "Google Drive" +msgstr "" + +#: Cdn_Plugin_Admin.php:233 +msgid "Microsoft Azure Storage" +msgstr "" + +#: Cdn_Plugin_Admin.php:238 +msgid "Rackspace Cloud Files" +msgstr "" + +#: Cdn_Plugin_Admin.php:243 +msgid "Self-hosted / File Transfer Protocol Upload" +msgstr "" + +#: CdnEngine_Mirror_StackPath2.php:32 CdnEngine_Mirror_StackPath2.php:68 +#: CdnEngine_Mirror_StackPath.php:33 CdnEngine_Mirror_StackPath.php:82 +#: CdnEngine_Mirror_MaxCdn.php:35 CdnEngine_Mirror_MaxCdn.php:110 +msgid "Empty Authorization Key." +msgstr "" + +#: CdnEngine_Mirror_StackPath2.php:54 CdnEngine_Mirror_StackPath2.php:87 +#: CdnEngine_Mirror_StackPath.php:68 CdnEngine_Mirror_StackPath.php:108 +#: CdnEngine_Mirror_MaxCdn.php:96 CdnEngine_Mirror_MaxCdn.php:166 +msgid "Failure to pull zone: " +msgstr "" + +#: Cdn_ConfigLabels.php:7 +msgid "CDN:" +msgstr "" + +#: Cdn_ConfigLabels.php:8 +msgid "CDN Type:" +msgstr "" + +#: Cdn_ConfigLabels.php:10 +msgid "" +"FSD CDN" +msgstr "" + +#: Cdn_ConfigLabels.php:11 +msgid "Host attachments" +msgstr "" + +#: Cdn_ConfigLabels.php:12 +msgid "Host wp-includes/ files" +msgstr "" + +#: Cdn_ConfigLabels.php:13 +msgid "Host theme files" +msgstr "" + +#: Cdn_ConfigLabels.php:14 +msgid "" +"Host minified CSS and " +"JS files" +msgstr "" + +#: Cdn_ConfigLabels.php:15 +msgid "Host custom files" +msgstr "" + +#: Cdn_ConfigLabels.php:16 +msgid "Force over-writing of existing files" +msgstr "" + +#: Cdn_ConfigLabels.php:17 +msgid "Import external media library attachments" +msgstr "" + +#: Cdn_ConfigLabels.php:18 +msgid "Add canonical header" +msgstr "" + +#: Cdn_ConfigLabels.php:19 +msgid "" +"Disable CDN on " +"SSL pages" +msgstr "" + +#: Cdn_ConfigLabels.php:20 +msgid "" +"Use CDN links for the " +"Media Library on admin pages" +msgstr "" + +#: Cdn_ConfigLabels.php:21 +msgid "" +"Disable CDN for the " +"following roles" +msgstr "" + +#: Cdn_ConfigLabels.php:22 +msgid "" +"Disable CDN on the " +"following pages:" +msgstr "" + +#: Cdn_ConfigLabels.php:23 +msgid "Export changed files automatically" +msgstr "" + +#: Cdn_ConfigLabels.php:24 +msgid "Auto upload interval:" +msgstr "" + +#: Cdn_ConfigLabels.php:25 +msgid "Re-transfer cycle interval:" +msgstr "" + +#: Cdn_ConfigLabels.php:26 +msgid "Re-transfer cycle limit:" +msgstr "" + +#: Cdn_ConfigLabels.php:27 +msgid "wp-includes file types to upload:" +msgstr "" + +#: Cdn_ConfigLabels.php:28 +msgid "Theme file types to upload:" +msgstr "" + +#: Cdn_ConfigLabels.php:29 +msgid "File types to import:" +msgstr "" + +#: Cdn_ConfigLabels.php:30 +msgid "Custom file list:" +msgstr "" + +#: Cdn_ConfigLabels.php:31 +msgid "Location:" +msgstr "" + +#: Cdn_ConfigLabels.php:32 Minify_ConfigLabels.php:37 +#: PgCache_ConfigLabels.php:47 +msgid "Rejected user agents:" +msgstr "" + +#: Cdn_ConfigLabels.php:33 +msgid "Rejected files:" +msgstr "" + +#: Util_WpFile.php:158 +msgid "FTP credentials don't allow to delete folder " +msgstr "" + +#: Util_WpFile.php:188 +msgid "FTP credentials don't allow to chmod " +msgstr "" + +#: Util_WpFile.php:222 +msgid "FTP credentials don't allow to delete " +msgstr "" + +#: Extension_FragmentCache_GeneralPage_View.php:15 +msgid "Fragment Cache Method:" +msgstr "" + +#: Generic_WidgetSpreadTheWord_Plugin.php:44 +msgid "Spread the Word" +msgstr "" + +#: Generic_Plugin_AdminCompatibility.php:97 +msgid "" +"The following plugins are not compatible with W3 Total Cache and will cause " +"unintended results:" +msgstr "" + +#: Generic_Plugin_AdminCompatibility.php:103 +msgid "Deactivate this plugin" +msgstr "" + +#: Generic_Plugin_AdminCompatibility.php:105 inc/options/extensions/list.php:32 +#: inc/options/extensions/list.php:159 +msgid "Deactivate" +msgstr "" + +#: Extension_CloudFlare_Widget_View.php:9 +msgid "You have not configured well email, API key or domain" +msgstr "" + +#: ObjectCache_WpObjectCache_Regular.php:851 +#, php-format +msgid "Object Caching %d/%d objects using %s%s" +msgstr "" + +#: ObjectCache_WpObjectCache_Regular.php:901 +msgid "Object caching is disabled" +msgstr "" + +#: ObjectCache_WpObjectCache_Regular.php:903 +msgid "DONOTCACHEOBJECT constant is defined" +msgstr "" + +#: UsageStatistics_GeneralPage_View.php:22 +msgid "" +"Enable statistics collection. Note that this consumes additional resources " +"and is not recommended to be run continuously." +msgstr "" + +#: UsageStatistics_GeneralPage_View.php:25 +msgid "" +"Statistics provide transparency into the behavior of your caching " +"performance. Without statistics, it’s challenging to identify opportunities " +"for improvement or ensure operations are working as expected consistently. " +"Metrics like cache sizes, object lifetimes, hit vs miss ratio, etc across " +"every caching method configured in your settings." +msgstr "" + +#: UsageStatistics_GeneralPage_View.php:27 +msgid "" +"Some statistics are available directly on your Performance Dashboard, " +"however, the comprehensive suite of statistics are available on the " +"Statistics screen. Web server logs created by Nginx or Apache can be " +"analyzed if accessible." +msgstr "" + +#: UsageStatistics_GeneralPage_View.php:29 +msgid "" +"Use the caching statistics to compare the performance of different " +"configurations like caching methods, object lifetimes and so on. Contact " +"support for any help optimizing performance metrics or troubleshooting." +msgstr "" + +#: UsageStatistics_GeneralPage_View.php:35 +msgid "Slot time (seconds):" +msgstr "" + +#: UsageStatistics_GeneralPage_View.php:43 +msgid "Slots collected:" +msgstr "" + +#: UsageStatistics_GeneralPage_View.php:53 +msgid "Use the system reported averages of CPU resource usage." +msgstr "" + +#: UsageStatistics_GeneralPage_View.php:54 +msgid "Collect CPU usage" +msgstr "" + +#: UsageStatistics_GeneralPage_View.php:59 +msgid "Parse server access log" +msgstr "" + +#: UsageStatistics_GeneralPage_View.php:61 +msgid "" +"Enable collecting statistics from an Access Log. This provides much more " +"precise statistics." +msgstr "" + +#: UsageStatistics_GeneralPage_View.php:65 +msgid "Webserver:" +msgstr "" + +#: UsageStatistics_GeneralPage_View.php:75 +msgid "Access Log Filename:" +msgstr "" + +#: UsageStatistics_GeneralPage_View.php:84 +msgid "Access Log Format:" +msgstr "" + +#: UserExperience_LazyLoad_Page_View.php:8 +#: UserExperience_LazyLoad_Plugin.php:104 +#: UserExperience_GeneralPage_View.php:20 +msgid "Lazy Loading" +msgstr "" + +#: UserExperience_LazyLoad_Page_View.php:14 +msgid "Process HTML image tags" +msgstr "" + +#: UserExperience_LazyLoad_Page_View.php:15 +msgid "Process img tags" +msgstr "" + +#: UserExperience_LazyLoad_Page_View.php:22 +msgid "Process background images" +msgstr "" + +#: UserExperience_LazyLoad_Page_View.php:23 +msgid "Process background styles" +msgstr "" + +#: UserExperience_LazyLoad_Page_View.php:31 +msgid "Exclude tags containing words" +msgstr "" + +#: UserExperience_LazyLoad_Page_View.php:37 +msgid "Script Embed method:" +msgstr "" + +#: Extension_FragmentCache_WpObjectCache.php:530 +#, php-format +msgid "Fragment Caching %d/%d fragments using %s%s" +msgstr "" + +#: Generic_AdminActions_Config.php:57 +#, php-format +msgid "Content-Disposition: attachment; filename=%s.json" +msgstr "" + +#: Generic_AdminActions_Config.php:151 +msgid "Database Cluster configuration file has been successfully saved" +msgstr "" + +#: Extension_Swarmify_Page_View.php:30 +msgid "API Key:" +msgstr "" + +#: Extension_Swarmify_Page_View.php:44 Extension_NewRelic_Page_View_Apm.php:122 +msgid "Behavior Settings" +msgstr "" + +#: Extension_Swarmify_Page_View.php:49 +msgid "<video>:" +msgstr "" + +#: Extension_Swarmify_Page_View.php:60 +msgid "JWPlayer:" +msgstr "" + +#: Extension_Swarmify_Page_View.php:71 +msgid "Logged In:" +msgstr "" + +#: CdnEngine_Mirror_RackSpaceCdn.php:122 CdnEngine_Mirror_Highwinds.php:53 +#: CdnEngine_Mirror_LimeLight.php:79 +msgid "Failed to purge: " +msgstr "" + +#: Cdn_Highwinds_Popup_View_SelectHost.php:20 +msgid "Select host to use" +msgstr "" + +#: Cdn_RackSpaceCdn_Popup_View_Services.php:24 +msgid "Select service to use" +msgstr "" + +#: Cdn_MaxCdn_Popup_View_Zone.php:15 Cdnfsd_StackPath_Popup_View_Zone.php:15 +#: Cdnfsd_MaxCdn_Popup_View_Zone.php:15 Cdn_StackPath_Popup_View_Zone.php:15 +msgid "Configure zone" +msgstr "" + +#: Extension_NewRelic_GeneralPage_View.php:9 +#: Extension_NewRelic_Plugin_Admin.php:97 +#: Extension_NewRelic_Plugin_Admin.php:98 inc/options/common/header.php:43 +msgid "Monitoring" +msgstr "" + +#: Extension_NewRelic_GeneralPage_View.php:28 +#: Extension_CloudFlare_Popup_View_Intro.php:26 +#: Extension_NewRelic_Popup_View_Intro.php:20 Generic_ConfigLabels.php:9 +#: Cdn_RackSpaceCloudFiles_Popup_View_Intro.php:27 +#: Cdn_RackSpaceCdn_Popup_View_Intro.php:26 inc/options/cdn/rscf.php:16 +msgid "API key:" +msgstr "" + +#: Extension_NewRelic_GeneralPage_View.php:39 +msgid "Application name:" +msgstr "" + +#: UsageStatistics_Page_View.php:22 +msgid "Web Requests" +msgstr "" + +#: UsageStatistics_Page_View.php:310 DbCache_Plugin.php:218 +msgid "Database" +msgstr "" + +#: UsageStatistics_Page_View.php:366 +msgid "System Info" +msgstr "" + +#: UsageStatistics_Page_View.php:399 +msgid "Cache Storage" +msgstr "" + +#: Cdnfsd_StackPath_Popup_View_Zone.php:54 +#: Cdnfsd_CloudFront_Popup_View_Distribution.php:56 +#: Cdnfsd_MaxCdn_Popup_View_Zone.php:54 +msgid "Don't reconfigure, I know what I'm doing" +msgstr "" + +#: ObjectCache_Page_View_PurgeLog.php:13 +msgid "Object Cache Purges Log" +msgstr "" + +#: Extension_FeedBurner_Page_View.php:23 +msgid "Google FeedBurner" +msgstr "" + +#: Extension_FeedBurner_Page_View.php:29 +msgid "Additional URLs:" +msgstr "" + +#: Extension_FeedBurner_Page_View.php:30 +msgid "" +"Specify any additional feed " +"URLs to ping on FeedBurner." +msgstr "" + +#: Cdn_RackSpaceCdn_Popup_View_Service_Create.php:23 +msgid "Create new service" +msgstr "" + +#: Cdn_RackSpaceCdn_Popup_View_Service_Create.php:67 +msgid "" +"The domain name through which visitors retrieve content. You will be " +"provided with a target domain to use as an alias for this CNAME" +msgstr "" + +#: Cdn_RackSpaceCdn_Popup_View_Service_Create.php:81 +msgid "The name should be a single word, and cannot contain any dots (.)." +msgstr "" + +#: Extension_Swarmify_Widget_View_NotConfigured.php:9 +msgid "" +"Just as the load time and overall performance of your website impacts user " +"satisfaction, so does the performance of your online videos. Optimize your " +"video performance by enabling the Swarmify SmartVideo™ solution." +msgstr "" + +#: Extension_Swarmify_Widget_View_NotConfigured.php:11 +msgid "" +"Swarmify is a service that lets you speed up your site even more with W3 " +"Total Cache." +msgstr "" + +#: Extension_Swarmify_Widget_View_NotConfigured.php:12 +msgid "Sign Up Now and Save 25%" +msgstr "" + +#: Extension_Swarmify_Widget_View_NotConfigured.php:13 +msgid "Free 14 day limited trial" +msgstr "" + +#: Extension_Swarmify_Widget_View_NotConfigured.php:15 +msgid "" +"If you already have a Swarmify configuration key, or need to update your " +"existing key, click here:" +msgstr "" + +#: Extension_Swarmify_Widget_View_NotConfigured.php:16 +msgid "Configure" +msgstr "" + +#: Generic_WidgetServices.php:33 Cdn_StackPath2_Widget_View_Unauthorized.php:32 +#: Cdn_StackPath2_Page_View.php:55 +msgid "Premium Services" +msgstr "" + +#: Extension_CloudFlare_Popup_View_Intro.php:15 +msgid "Your CloudFlare API key" +msgstr "" + +#: Extension_CloudFlare_Popup_View_Intro.php:18 +msgid "Email:" +msgstr "" + +#: CdnEngine_Mirror_Edgecast.php:38 +msgid "Empty account #." +msgstr "" + +#: CdnEngine_Mirror_Edgecast.php:44 +msgid "Empty token." +msgstr "" + +#: CdnEngine_Mirror_Edgecast.php:59 CdnEngine_Mirror_Akamai.php:105 +#: CdnEngine_Mirror_MaxCdn.php:156 CdnEngine_Mirror_Cotendo.php:106 +#: inc/lightbox/self_test.php:276 inc/lightbox/self_test.php:293 +#: inc/lightbox/self_test.php:307 +msgid "OK" +msgstr "" + +#: CdnEngine_Mirror_Edgecast.php:63 CdnEngine_Mirror_Akamai.php:95 +#: CdnEngine_Mirror_Akamai.php:100 CdnEngine_Mirror_Cotendo.php:100 +#, php-format +msgid "Unable to purge (%s)." +msgstr "" + +#: CdnEngine_Mirror_Edgecast.php:118 +msgid "Invalid Request Parameter" +msgstr "" + +#: CdnEngine_Mirror_Edgecast.php:122 +msgid "Authentication Failure or Insufficient Access Rights" +msgstr "" + +#: CdnEngine_Mirror_Edgecast.php:126 +msgid "Invalid Request URI" +msgstr "" + +#: CdnEngine_Mirror_Edgecast.php:130 +msgid "Invalid Request" +msgstr "" + +#: CdnEngine_Mirror_Edgecast.php:134 +msgid "Server Error" +msgstr "" + +#: Extension_CloudFlare_Plugin.php:151 +msgid "CloudFlare" +msgstr "" + +#: Extension_CloudFlare_Plugin.php:157 +msgid "My Websites" +msgstr "" + +#: Extension_CloudFlare_Plugin.php:163 +msgid "Analytics" +msgstr "" + +#: Extension_CloudFlare_Plugin.php:169 +msgid "Account" +msgstr "" + +#: Extension_NewRelic_AdminNotes.php:23 +msgid "CDN" +msgstr "" + +#: Extension_NewRelic_AdminNotes.php:25 +msgid "Browser Cache and use compression" +msgstr "" + +#: Extension_NewRelic_AdminNotes.php:29 +#, php-format +msgid "" +"Application monitoring has detected that your page load time is higher than " +"300ms. It is recommended that you enable the following features: %s %s" +msgstr "" + +#: Extension_Wpml_Plugin_Admin.php:22 +#, php-format +msgid "" +"W3 Total Cache's Page caching cannot work effectively when WPML Language URL " +"formatis \"Language name added as a parameter\" used. Please consider " +"another URL format. Visit the WPML -> Languages settings. %s" +msgstr "" + +#: Extension_Wpml_Plugin_Admin.php:50 +msgid "Improves page caching interoperability with WPML." +msgstr "" + +#: Extension_Wpml_Plugin_Admin.php:56 +msgid "Improve the caching performance of websites localized by WPML." +msgstr "" + +#: Extension_Wpml_Plugin_Admin.php:58 +msgid "" +"Localization is a type of personalization that makes websites more difficult " +"to scale. This extension reduces the response time of websites localized by " +"WPML." +msgstr "" + +#: Extension_Wpml_Plugin_Admin.php:121 +#, php-format +msgid "" +"Activating the WPML extension for W3 Total Cache may be " +"helpful for your site. %s%s" +msgstr "" + +#: Extension_Wpml_Plugin_Admin.php:126 Util_Ui.php:99 +#: Extension_Genesis_Plugin_Admin.php:130 +#: Extension_WordPressSeo_Plugin_Admin.php:93 +msgid "Hide this message" +msgstr "" + +#: UsageStatistics_Widget.php:25 +msgid "Caching Statistics" +msgstr "" + +#: Cdn_StackPath2_Widget_View_Authorized.php:23 +msgid "Report - 7 days" +msgstr "" + +#: Cdn_Highwinds_Page_View.php:24 Cdn_RackSpaceCdn_Page_View.php:41 +#: Cdn_RackSpaceCloudFiles_Page_View.php:41 +msgid "" +"CDN host (CNAME target):" +msgstr "" + +#: Cdn_Highwinds_Page_View.php:45 +msgid "Configure CNAMEs" +msgstr "" + +#: BrowserCache_Plugin.php:349 +msgid "Browser Cache: Update Media Query String" +msgstr "" + +#: Generic_AdminNotes.php:25 +#, php-format +msgid "" +"%s is write-able. When finished installing the plugin, " +"change the permissions back to the default: chmod 755 %s. " +"Permissions are currently %s. %s" +msgstr "" + +#: Generic_AdminNotes.php:43 +#, php-format +msgid "" +"Unfortunately the PHP installation is incomplete, the zlib module is " +"missing. This is a core PHP module. Notify the server administrator." +" %s" +msgstr "" + +#: Generic_AdminNotes.php:57 +#, php-format +msgid "" +"Either the PHP configuration, web server configuration or a script in the " +"WordPress installation has zlib.output_compression enabled." +"
    Please locate and disable this setting to ensure proper HTTP " +"compression behavior. %s" +msgstr "" + +#: Generic_AdminNotes.php:68 +#, php-format +msgid "" +"nginx.conf rules have been updated. Please restart nginx server to provide a " +"consistent user experience. %s" +msgstr "" + +#: Generic_AdminNotes.php:81 +#, php-format +msgid "" +"Preview mode is active: Changed settings will not take effect until preview " +"mode is %s or %s." +msgstr "" + +#: Generic_AdminNotes.php:82 +msgid "deploy" +msgstr "" + +#: Generic_AdminNotes.php:85 +msgid "disable" +msgstr "" + +#: Generic_AdminNotes.php:90 inc/options/general.php:26 +#, php-format +msgid "To preview any changed settings (without deploying): %s" +msgstr "" + +#: Generic_AdminNotes.php:105 +msgid "empty the page cache" +msgstr "" + +#: Generic_AdminNotes.php:111 +#, php-format +msgid "check the %s to maintain the desired user experience" +msgstr "" + +#: Generic_AdminNotes.php:114 +msgid "minify settings" +msgstr "" + +#: Generic_AdminNotes.php:123 +#, php-format +msgid "One or more plugins have been activated or deactivated, please %s. %s" +msgstr "" + +#: Generic_AdminNotes.php:125 Cdn_AdminNotes.php:246 +msgid " and " +msgstr "" + +#: Generic_AdminNotes.php:142 Generic_AdminNotes.php:161 +#, php-format +msgid "" +"The setting change(s) made either invalidate the cached data or modify the " +"behavior of the site. %s now to provide a consistent user experience. %s" +msgstr "" + +#: Generic_AdminNotes.php:182 +#, php-format +msgid "" +"You’re running debug mode, it’s using Resources and not recommend to run " +"continuously. %s" +msgstr "" + +#: Generic_AdminNotes.php:209 +#, php-format +msgid "" +"The required directives for fancy permalinks could not be detected, please " +"confirm they are available: Creating and " +"editing %s" +msgstr "" + +#: Generic_AdminNotes.php:222 +msgid "" +"The following memcached servers are not responding or not running:

      " +msgstr "" + +#: Generic_AdminNotes.php:229 +msgid "" +"

    This message will automatically disappear once the issue is resolved." +msgstr "" + +#: Cdn_StackPath2_Popup_View_Stacks.php:12 +#: Cdnfsd_StackPath2_Popup_View_Stacks.php:12 +msgid "Select stack to use" +msgstr "" + +#: BrowserCache_ConfigLabels.php:7 +msgid "Browser Cache:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:8 +msgid "Prevent caching exception list:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:9 +msgid "Do not process 404 errors for static objects with WordPress" +msgstr "" + +#: BrowserCache_ConfigLabels.php:10 +msgid "404 error exception list:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:11 BrowserCache_ConfigLabels.php:22 +#: BrowserCache_ConfigLabels.php:31 inc/options/browsercache.php:40 +msgid "Set Last-Modified header" +msgstr "" + +#: BrowserCache_ConfigLabels.php:12 BrowserCache_ConfigLabels.php:23 +#: BrowserCache_ConfigLabels.php:32 inc/options/browsercache.php:49 +msgid "Set expires header" +msgstr "" + +#: BrowserCache_ConfigLabels.php:13 BrowserCache_ConfigLabels.php:24 +#: BrowserCache_ConfigLabels.php:33 +msgid "Expires header lifetime:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:14 BrowserCache_ConfigLabels.php:25 +#: BrowserCache_ConfigLabels.php:34 inc/options/browsercache.php:56 +msgid "Set cache control header" +msgstr "" + +#: BrowserCache_ConfigLabels.php:15 BrowserCache_ConfigLabels.php:26 +#: BrowserCache_ConfigLabels.php:35 +msgid "Cache Control policy:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:16 +msgid "Set entity tag (eTag)" +msgstr "" + +#: BrowserCache_ConfigLabels.php:17 BrowserCache_ConfigLabels.php:28 +#: BrowserCache_ConfigLabels.php:37 inc/options/browsercache.php:71 +msgid "Set W3 Total Cache header" +msgstr "" + +#: BrowserCache_ConfigLabels.php:18 BrowserCache_ConfigLabels.php:29 +#: inc/options/browsercache.php:79 +msgid "" +"Enable HTTP (gzip) " +"compression" +msgstr "" + +#: BrowserCache_ConfigLabels.php:19 BrowserCache_ConfigLabels.php:30 +#: inc/options/browsercache.php:88 +msgid "" +"Enable HTTP (brotli)" +" compression" +msgstr "" + +#: BrowserCache_ConfigLabels.php:20 BrowserCache_ConfigLabels.php:40 +#: inc/options/browsercache.php:96 +msgid "Prevent caching of objects after settings change" +msgstr "" + +#: BrowserCache_ConfigLabels.php:21 BrowserCache_ConfigLabels.php:41 +msgid "Disable cookies for static files" +msgstr "" + +#: BrowserCache_ConfigLabels.php:27 BrowserCache_ConfigLabels.php:36 +#: inc/options/browsercache.php:64 +msgid "Set entity tag (ETag)" +msgstr "" + +#: BrowserCache_ConfigLabels.php:38 +msgid "" +"Enable HTTP (gzip) " +"compression" +msgstr "" + +#: BrowserCache_ConfigLabels.php:39 +msgid "" +"Enable HTTP (brotli)" +" compression" +msgstr "" + +#: BrowserCache_ConfigLabels.php:42 +msgid "" +"Access session cookies through the HTTP only:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:43 +msgid "Send session cookies only to secure connections:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:44 +msgid "Use cookies to store session IDs:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:45 +msgid "" +"HTTP Strict " +"Transport Security policy" +msgstr "" + +#: BrowserCache_ConfigLabels.php:46 BrowserCache_ConfigLabels.php:48 +#: BrowserCache_ConfigLabels.php:50 BrowserCache_ConfigLabels.php:59 +msgid "Directive:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:47 +msgid "X-Frame-Options" +msgstr "" + +#: BrowserCache_ConfigLabels.php:49 +msgid "X-XSS-Protection" +msgstr "" + +#: BrowserCache_ConfigLabels.php:51 +msgid "X-Content-Type-Options" +msgstr "" + +#: BrowserCache_ConfigLabels.php:52 +msgid "" +"HTTP Public Key " +"Pinning" +msgstr "" + +#: BrowserCache_ConfigLabels.php:53 +msgid "Public Key:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:54 +msgid "Public Key (Backup):" +msgstr "" + +#: BrowserCache_ConfigLabels.php:55 +msgid "Extra Parameters:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:56 +msgid "Report URL:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:57 +msgid "Report Mode Only:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:58 +msgid "Referrer Policy" +msgstr "" + +#: BrowserCache_ConfigLabels.php:60 +msgid "Content Security Policy" +msgstr "" + +#: BrowserCache_ConfigLabels.php:61 +msgid "base-uri:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:62 +msgid "frame-src:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:63 +msgid "connect-src:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:64 +msgid "font-src:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:65 +msgid "script-src:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:66 +msgid "style-src:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:67 +msgid "img-src:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:68 +msgid "media-src:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:69 +msgid "object-src:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:70 +msgid "plugin-types:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:71 +msgid "form-action:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:72 +msgid "frame-ancestors:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:73 +msgid "sandbox:" +msgstr "" + +#: BrowserCache_ConfigLabels.php:74 +msgid "default-src:" +msgstr "" + +#: Extension_CloudFlare_Popup_View_Zones.php:23 +msgid "Select zone" +msgstr "" + +#: Cdn_GoogleDrive_Page_View.php:25 +msgid "Folder:" +msgstr "" + +#: Cdn_GoogleDrive_Page_View.php:35 +msgid "Test upload" +msgstr "" + +#: Cdn_AdminNotes.php:25 +#, php-format +msgid "" +"The active theme has changed, please %s now to ensure proper operation. %s" +msgstr "" + +#: Cdn_AdminNotes.php:28 +msgid "upload active theme files" +msgstr "" + +#: Cdn_AdminNotes.php:42 +#, php-format +msgid "Upgraded WordPress? Please %s files now to ensure proper operation. %s" +msgstr "" + +#: Cdn_AdminNotes.php:84 +#, php-format +msgid "" +"Make sure to %s and upload the %s, files to the CDN to ensure proper operation. %s" +msgstr "" + +#: Cdn_AdminNotes.php:97 +#, php-format +msgid "" +"Settings that affect Browser Cache settings for files hosted by the CDN have " +"been changed. To apply the new settings %s and %s. %s" +msgstr "" + +#: Cdn_AdminNotes.php:100 +msgid "export the media library" +msgstr "" + +#: Cdn_AdminNotes.php:116 +#, php-format +msgid "" +"Make sure to whitelist your servers IPs. Follow the instructions on %s. The " +"IP for this server is %s. %s" +msgstr "" + +#: Cdn_AdminNotes.php:131 +#, php-format +msgid "" +"The CURL PHP extension is not available. Please install it " +"to enable S3 or CloudFront functionality. %s" +msgstr "" + +#: Cdn_AdminNotes.php:155 +#, php-format +msgid "" +"The %s has unresolved errors. Empty the queue to restore normal operation." +msgstr "" + +#: Cdn_AdminNotes.php:158 +msgid "unsuccessful transfer queue" +msgstr "" + +#: Cdn_AdminNotes.php:180 +#, php-format +msgid "" +"The uploads directory is not available. Default WordPress directories will " +"be created: %s." +msgstr "" + +#: Cdn_AdminNotes.php:187 +#, php-format +msgid "" +"The uploads path found in the database (%s) is inconsistent with the actual " +"path. Please manually adjust the upload path either in miscellaneous " +"settings or if not using a custom path %s automatically to resolve the issue." +msgstr "" + +#: Cdn_AdminNotes.php:190 +msgid "update the path" +msgstr "" + +#: Cdn_AdminNotes.php:203 +msgid "" +"A configuration issue prevents " +"CDN from working:\n" +" The \"Replace default " +"hostname with\"\n" +" field cannot be empty. Enter " +"" +"CDN\n" +" provider hostname here.\n" +" (This is the hostname used in " +"order to view objects\n" +" in a browser.)" +msgstr "" + +#: Cdn_AdminNotes.php:213 +msgid "" +"The \"Access key\", \"Secret key\" and \"Bucket\" fields " +"cannot be empty." +msgstr "" + +#: Cdn_AdminNotes.php:217 +msgid "" +"The \"Access key\", \"Secret key\", \"Bucket\" and \"Replace default " +"hostname with\" fields cannot be empty." +msgstr "" + +#: Cdn_AdminNotes.php:221 +msgid "" +"The \"Access key\", \"Secret key\" and \"Replace default hostname " +"with\" fields cannot be empty." +msgstr "" + +#: Cdn_AdminNotes.php:225 +msgid "" +"The \"Username\", \"API key\", \"Container\" and \"Replace default " +"hostname with\" fields cannot be empty." +msgstr "" + +#: Cdn_AdminNotes.php:229 +msgid "" +"The \"Account name\", \"Account key\" and \"Container\" " +"fields cannot be empty." +msgstr "" + +#: Cdn_AdminNotes.php:233 Cdn_AdminNotes.php:258 Cdn_AdminNotes.php:262 +#: Cdn_AdminNotes.php:266 +msgid "" +"The \"Replace default hostname with\" field cannot be empty." +msgstr "" + +#: Cdn_AdminNotes.php:239 +msgid "Authorization key" +msgstr "" + +#: Cdn_AdminNotes.php:242 +msgid "Replace default hostname with" +msgstr "" + +#: Cdn_AdminNotes.php:245 +#, php-format +msgid "The %s field(s) cannot be empty." +msgstr "" + +#: Cdn_AdminNotes.php:251 +msgid "The \"Authorization key\" is not correct." +msgstr "" + +#: Cdn_AdminNotes.php:253 +msgid "You need to select / create a pull zone." +msgstr "" + +#: Cdn_AdminNotes.php:275 +msgid "" +"A configuration issue prevents " +"CDN from working: " +msgstr "" + +#: Cdn_AdminNotes.php:275 +msgid " Specify it here." +msgstr "" + +#: Cdn_AdminNotes.php:297 +#, php-format +msgid "" +"Encountered issue with CDN: %s. See %s for instructions of creating correct " +"table." +msgstr "" + +#: Cdn_AdminNotes.php:299 +msgid "Install page" +msgstr "" + +#: Cdn_AdminNotes.php:302 +#, php-format +msgid "Encountered issue with CDN: %s." +msgstr "" + +#: Generic_WidgetServices_View.php:33 +msgid "Buy now" +msgstr "" + +#: Cdn_GeneralPage_View.php:14 Cdnfsd_GeneralPage_View.php:10 +#, php-format +msgid "" +" If you do not have a " +"CDN provider try StackPath. Sign " +"up now to enjoy a special offer!." +msgstr "" + +#: Cdn_GeneralPage_View.php:23 +msgid "" +"Theme files, media library attachments, CSS, JS files etc " +"will quickly for site visitors." +msgstr "" + +#: Cdn_GeneralPage_View.php:32 Cdnfsd_GeneralPage_View.php:38 +msgid "" +"Select the CDN type " +"you wish to use." +msgstr "" + +#: Util_Ui.php:167 +msgid "Click to toggle" +msgstr "" + +#: Util_Ui.php:192 msgid "Save all settings" msgstr "" -#: extensions/CloudFlare/general-settings-box.php:112 -#: inc/options/general.php:364 inc/options/general.php:399 -msgid "Purge cache" +#: Util_Ui.php:198 +msgid "Save Settings & Purge Caches" msgstr "" -#: extensions/CloudFlareAdmin.php:63 inc/options/extensions/list.php:62 -msgid "Settings" +#: Util_Ui.php:849 +msgid "Disk" msgstr "" -#: extensions/CloudFlareAdmin.php:101 +#: Util_Ui.php:859 inc/options/general.php:75 +msgid "Opcode: eAccelerator" +msgstr "" + +#: Util_Ui.php:864 inc/options/general.php:80 +msgid "Opcode: XCache" +msgstr "" + +#: Util_Ui.php:869 inc/options/general.php:85 +msgid "Opcode: WinCache" +msgstr "" + +#: Util_Ui.php:874 inc/options/general.php:90 +msgid "Memcached" +msgstr "" + +#: Util_Ui.php:879 inc/options/general.php:101 +msgid "Redis" +msgstr "" + +#: Util_Ui.php:890 +msgid "Shared Server:" +msgstr "" + +#: Util_Ui.php:891 inc/options/general.php:107 +msgid "Dedicated / Virtual Server:" +msgstr "" + +#: Util_Ui.php:892 inc/options/general.php:108 +msgid "Multiple Servers:" +msgstr "" + +#: Util_Ui.php:992 +msgid "Use common settings" +msgstr "" + +#: Util_Ui.php:996 +msgid "Use specific settings" +msgstr "" + +#: Util_Ui.php:1024 +msgid "Preview" +msgstr "" + +#: Util_Ui.php:1045 +#, php-format +msgid "%dh" +msgstr "" + +#: Util_Ui.php:1047 +#, php-format +msgid "%dm" +msgstr "" + +#: Util_Ui.php:1049 +#, php-format +msgid "%ds" +msgstr "" + +#: Util_Ui.php:1051 Util_Ui.php:1054 +#, php-format +msgid "%dms" +msgstr "" + +#: Generic_WidgetSpreadTheWord_View.php:8 +msgid "Enjoying W3TC? Please support us!" +msgstr "" + +#: Generic_Plugin_WidgetForum.php:50 +msgid "Discussions" +msgstr "" + +#: CdnEngine_Mirror_Akamai.php:34 CdnEngine_Mirror_Cotendo.php:36 +msgid "Empty username." +msgstr "" + +#: CdnEngine_Mirror_Akamai.php:40 CdnEngine_Mirror_Cotendo.php:42 +msgid "Empty password." +msgstr "" + +#: CdnEngine_Mirror_Akamai.php:55 CdnEngine_Mirror_Cotendo.php:63 +#, php-format +msgid "Constructor error (%s)." +msgstr "" + +#: CdnEngine_Mirror_Akamai.php:85 CdnEngine_Mirror_Cotendo.php:92 +msgid "Invalid response." +msgstr "" + +#: CdnEngine_Mirror_StackPath.php:41 CdnEngine_Mirror_StackPath.php:88 +#: CdnEngine_Mirror_MaxCdn.php:41 CdnEngine_Mirror_MaxCdn.php:116 +msgid "Malformed Authorization Key." +msgstr "" + +#: CdnEngine_Mirror_StackPath.php:55 CdnEngine_Mirror_StackPath.php:102 +msgid "No zone defined" +msgstr "" + +#: DbCache_ConfigLabels.php:7 +msgid "Database Cache Method:" +msgstr "" + +#: DbCache_ConfigLabels.php:8 +msgid "Database Cache:" +msgstr "" + +#: DbCache_ConfigLabels.php:10 +msgid "Don't cache queries for logged in users" +msgstr "" + +#: DbCache_ConfigLabels.php:11 PgCache_ConfigLabels.php:43 +msgid "Maximum lifetime of cache objects:" +msgstr "" + +#: DbCache_ConfigLabels.php:13 PgCache_ConfigLabels.php:49 +msgid "Never cache the following pages:" +msgstr "" + +#: DbCache_ConfigLabels.php:14 +msgid "Ignored query stems:" +msgstr "" + +#: DbCache_ConfigLabels.php:15 +msgid "Reject query words:" +msgstr "" + +#: Minify_ConfigLabels.php:7 +msgid "Minify Cache Method:" +msgstr "" + +#: Minify_ConfigLabels.php:8 +msgid "Minify:" +msgstr "" + +#: Minify_ConfigLabels.php:10 +msgid "HTML minifier:" +msgstr "" + +#: Minify_ConfigLabels.php:11 +msgid "JS minifier:" +msgstr "" + +#: Minify_ConfigLabels.php:12 +msgid "CSS minifier:" +msgstr "" + +#: Minify_ConfigLabels.php:13 +msgid "Minify mode:" +msgstr "" + +#: Minify_ConfigLabels.php:14 +msgid "" +"Rewrite URL structure" +msgstr "" + +#: Minify_ConfigLabels.php:15 +msgid "Disable minify for logged in users" +msgstr "" + +#: Minify_ConfigLabels.php:16 +msgid "Minify error notification:" +msgstr "" + +#: Minify_ConfigLabels.php:18 +msgid "" +"Inline CSS minification" +msgstr "" + +#: Minify_ConfigLabels.php:19 +msgid "Inline JS minification" +msgstr "" + +#: Minify_ConfigLabels.php:20 +msgid "Don't minify feeds" +msgstr "" + +#: Minify_ConfigLabels.php:21 +msgid "Ignored comment stems:" +msgstr "" + +#: Minify_ConfigLabels.php:23 +msgid "Embed type:" +msgstr "" + +#: Minify_ConfigLabels.php:24 Minify_ConfigLabels.php:26 +#: Minify_ConfigLabels.php:28 Minify_ConfigLabels.php:30 +msgid "Combine only" +msgstr "" + +#: Minify_ConfigLabels.php:25 +msgid "After <body>" +msgstr "" + +#: Minify_ConfigLabels.php:27 +msgid "Before </body>" +msgstr "" + +#: Minify_ConfigLabels.php:31 +msgid "@import handling:" +msgstr "" + +#: Minify_ConfigLabels.php:32 +msgid "Update external files every:" +msgstr "" + +#: Minify_ConfigLabels.php:34 +msgid "Never minify the following pages:" +msgstr "" + +#: Minify_ConfigLabels.php:35 +msgid "" +"Never minify the following JS files:" +msgstr "" + +#: Minify_ConfigLabels.php:36 +msgid "" +"Never minify the following " +"CSS files:" +msgstr "" + +#: Minify_ConfigLabels.php:38 +msgid "Include external files/libraries:" +msgstr "" + +#: Minify_ConfigLabels.php:40 +msgid "Pretty print" +msgstr "" + +#: Minify_ConfigLabels.php:42 Minify_ConfigLabels.php:77 +#: inc/options/minify/yuijs2.php:9 +msgid "Path to JAVA executable:" +msgstr "" + +#: Minify_ConfigLabels.php:43 Minify_ConfigLabels.php:78 +#: inc/options/minify/yuijs2.php:16 +msgid "Path to JAR file:" +msgstr "" + +#: Minify_ConfigLabels.php:44 +msgid "Compilation level:" +msgstr "" + +#: Minify_ConfigLabels.php:46 Minify_ConfigLabels.php:74 +msgid "Preserved comment removal (not applied when combine only is active)" +msgstr "" + +#: Minify_ConfigLabels.php:47 +msgid "Line break removal (not applied when combine only is active)" +msgstr "" + +#: Minify_ConfigLabels.php:49 +msgid "Remove unnecessary backslashes" +msgstr "" + +#: Minify_ConfigLabels.php:50 +msgid "Compress colors" +msgstr "" + +#: Minify_ConfigLabels.php:51 +msgid "Compress font-weight" +msgstr "" + +#: Minify_ConfigLabels.php:52 +msgid "Lowercase selectors" +msgstr "" + +#: Minify_ConfigLabels.php:53 +msgid "Remove last ;" +msgstr "" + +#: Minify_ConfigLabels.php:54 +msgid "Remove space before !important" +msgstr "" + +#: Minify_ConfigLabels.php:55 +msgid "Sort Properties" +msgstr "" + +#: Minify_ConfigLabels.php:56 +msgid "Sort Selectors (caution)" +msgstr "" + +#: Minify_ConfigLabels.php:57 +msgid "Discard invalid selectors" +msgstr "" + +#: Minify_ConfigLabels.php:58 +msgid "Discard invalid properties" +msgstr "" + +#: Minify_ConfigLabels.php:59 +msgid "Preserve CSS" +msgstr "" + +#: Minify_ConfigLabels.php:60 +msgid "Add timestamp" +msgstr "" + +#: Minify_ConfigLabels.php:62 +msgid "Compression:" +msgstr "" + +#: Minify_ConfigLabels.php:63 +msgid "Optimize shorthands:" +msgstr "" + +#: Minify_ConfigLabels.php:64 +msgid "Case for properties:" +msgstr "" + +#: Minify_ConfigLabels.php:65 +msgid "Regroup selectors:" +msgstr "" + +#: Minify_ConfigLabels.php:67 +msgid "Line break removal" +msgstr "" + +#: Minify_ConfigLabels.php:69 +msgid "Clean" +msgstr "" + +#: Minify_ConfigLabels.php:70 +msgid "Hide comments" +msgstr "" + +#: Minify_ConfigLabels.php:72 +msgid "Wrap after:" +msgstr "" + +#: Minify_ConfigLabels.php:75 +msgid "Line break removal (not safe, not applied when combine only is active)" +msgstr "" + +#: Minify_ConfigLabels.php:79 Minify_ConfigLabels.php:84 +msgid "Line break after:" +msgstr "" + +#: Minify_ConfigLabels.php:81 +msgid "Minify only, do not obfuscate local symbols" +msgstr "" + +#: Minify_ConfigLabels.php:82 +msgid "Preserve unnecessary semicolons" +msgstr "" + +#: Minify_ConfigLabels.php:83 +msgid "Disable all the built-in micro optimizations" +msgstr "" + +#: Minify_Plugin_Admin.php:131 #, php-format msgid "" -"CloudFlare protects and accelerates websites. Sign up now for free to get started,\n" -" \tor if you have an account simply log in to obtain your API key from the account page to enter it " -"below.\n" -" \tContact the CloudFlare AWS CloudFront Account " +"Credentials" +msgstr "" + +#: Extension_CloudFlare_GeneralPage_View.php:8 +msgid "Network Performance & Security powered by CloudFlare" +msgstr "" + +#: Extension_CloudFlare_GeneralPage_View.php:15 +msgid "CloudFlare protects and accelerates websites." +msgstr "" + +#: Extension_CloudFlare_GeneralPage_View.php:22 +#: Extension_CloudFlare_Page_View.php:116 +#: Extension_NewRelic_Page_View_Apm.php:108 +msgid "Cache time:" +msgstr "" + +#: Extension_CloudFlare_GeneralPage_View.php:31 +msgid "Page Caching:" +msgstr "" + +#: Cdn_RackSpaceCdn_Page_View.php:23 +#: Cdn_RackSpaceCloudFiles_Popup_View_Intro.php:19 +#: Cdn_RackSpaceCloudFiles_Page_View.php:23 +#: Cdn_RackSpaceCdn_Popup_View_Intro.php:18 inc/options/cdn/cotendo.php:9 +#: inc/options/cdn/rscf.php:9 inc/options/cdn/akamai.php:9 +msgid "Username:" +msgstr "" + +#: Cdn_RackSpaceCdn_Page_View.php:29 Cdn_RackSpaceCloudFiles_Page_View.php:29 +msgid "Region:" +msgstr "" + +#: Cdn_RackSpaceCdn_Page_View.php:35 +msgid "Service:" +msgstr "" + +#: Cdn_RackSpaceCdn_Page_View.php:52 +msgid "Configure CNAMEs" +msgstr "" + +#: Cdn_RackSpaceCdn_Page_View.php:65 +msgid "" +"Reload CCNAMEs from RackSpace" +msgstr "" + +#: Cdn_RackSpaceCdn_Page_View.php:67 +msgid "" +"Hostname(s) mapped to " +"CDN host, this value will replace your site's hostname in the " +"HTML. You can manage " +"them from RackSpace management console and load here afterwards." +msgstr "" + +#: Extension_Amp_Plugin_Admin.php:14 +msgid "Adds compatibility for accelerated mobile pages (AMP) to minify." +msgstr "" + +#: Cdnfsd_StackPath2_Popup_View_Sites.php:12 +#: Cdn_StackPath2_Popup_View_Sites.php:12 +msgid "Select site to use" +msgstr "" + +#: UsageStatistics_Plugin_Admin.php:67 +#, php-format +msgid "" +"W3 Total Cache: Statistics collection is currently enabled. This consumes " +"additional resources, and is not recommended to be run continuously. %s %s" +msgstr "" + +#: UsageStatistics_Plugin_Admin.php:70 +msgid "Disable statistics" +msgstr "" + +#: UsageStatistics_Plugin_Admin.php:87 UsageStatistics_Plugin_Admin.php:88 +msgid "Statistics" +msgstr "" + +#: Util_ConfigLabel.php:9 +msgid "" +"Memcached hostname:port / IP:" +"port:" +msgstr "" + +#: Util_ConfigLabel.php:10 Util_ConfigLabel.php:15 +msgid "Persistent connection" +msgstr "" + +#: Util_ConfigLabel.php:11 +msgid "Memcached username:" +msgstr "" + +#: Util_ConfigLabel.php:12 +msgid "Memcached password:" +msgstr "" + +#: Util_ConfigLabel.php:13 +msgid "Binary protocol" +msgstr "" + +#: Util_ConfigLabel.php:14 +msgid "" +"Redis hostname:port / IP:port:" +msgstr "" + +#: Util_ConfigLabel.php:16 +msgid "Redis Database ID:" +msgstr "" + +#: Util_ConfigLabel.php:17 +msgid "Redis password:" +msgstr "" + +#: Cdn_Plugin.php:781 +msgid "CDN: All" +msgstr "" + +#: Cdn_Plugin.php:792 +msgid "CDN: Manual Purge" +msgstr "" + +#: Cdn_Plugin.php:807 +#, php-format +msgid "Content Delivery Network via %s%s" +msgstr "" + +#: Extension_Genesis_Page_View.php:12 Extension_Genesis_Page_View.php:27 +msgid "Header" +msgstr "" + +#: Extension_Genesis_Page_View.php:13 Extension_Genesis_Page_View.php:66 +msgid "Content" +msgstr "" + +#: Extension_Genesis_Page_View.php:14 Extension_Genesis_Page_View.php:130 +msgid "Sidebar" +msgstr "" + +#: Extension_Genesis_Page_View.php:15 Extension_Genesis_Page_View.php:183 +msgid "Exclusions" +msgstr "" + +#: Extension_Genesis_Page_View.php:33 +msgid "Cache wp_head loop:" +msgstr "" + +#: Extension_Genesis_Page_View.php:35 +msgid "Cache wp_head. This includes the embedded CSS, JS etc." +msgstr "" + +#: Extension_Genesis_Page_View.php:40 +msgid "Cache header:" +msgstr "" + +#: Extension_Genesis_Page_View.php:42 +msgid "Cache header loop. This is the area where the logo is located." +msgstr "" + +#: Extension_Genesis_Page_View.php:47 +msgid "Cache primary navigation:" +msgstr "" + +#: Extension_Genesis_Page_View.php:49 +msgid "Caches the navigation filter; per page." +msgstr "" + +#: Extension_Genesis_Page_View.php:54 +msgid "Cache secondary navigation:" +msgstr "" + +#: Extension_Genesis_Page_View.php:56 +msgid "Caches secondary navigation filter; per page." +msgstr "" + +#: Extension_Genesis_Page_View.php:73 +msgid "Cache front page post loop:" +msgstr "" + +#: Extension_Genesis_Page_View.php:74 +msgid "Caches the front page post loop, pagination is supported." +msgstr "" + +#: Extension_Genesis_Page_View.php:80 +msgid "Cache author/tag/categories/term post loop:" +msgstr "" + +#: Extension_Genesis_Page_View.php:81 +msgid "" +"Caches the posts listed on tag, categories, author and other term pages, " +"pagination is supported." +msgstr "" + +#: Extension_Genesis_Page_View.php:86 +msgid "Excluded terms pages / posts:" +msgstr "" + +#: Extension_Genesis_Page_View.php:87 +msgid "" +"List of pages / posts that should not have the terms loop cached. Specify " +"one page / post per line. This area supports regular expressions." +msgstr "" + +#: Extension_Genesis_Page_View.php:93 +msgid "Flush posts loop:" +msgstr "" + +#: Extension_Genesis_Page_View.php:94 +msgid "" +"Flushes the posts loop cache on post updates. See setting above for affected " +"loops." +msgstr "" + +#: Extension_Genesis_Page_View.php:100 +msgid "Cache single post / page:" +msgstr "" + +#: Extension_Genesis_Page_View.php:101 +msgid "Caches the single post / page loop, pagination is supported." +msgstr "" + +#: Extension_Genesis_Page_View.php:106 +msgid "Excluded single pages / posts:" +msgstr "" + +#: Extension_Genesis_Page_View.php:107 +msgid "" +"List of pages / posts that should not have the single post / post loop " +"cached. Specify one page / post per line. This area supports regular " +"expressions." +msgstr "" + +#: Extension_Genesis_Page_View.php:113 +msgid "Cache comments:" +msgstr "" + +#: Extension_Genesis_Page_View.php:114 +msgid "Caches the comments loop, pagination is supported." +msgstr "" + +#: Extension_Genesis_Page_View.php:120 +msgid "Cache pings:" +msgstr "" + +#: Extension_Genesis_Page_View.php:121 +msgid "Caches the ping loop, pagination is supported. One per line." +msgstr "" + +#: Extension_Genesis_Page_View.php:137 +msgid "Cache sidebar:" +msgstr "" + +#: Extension_Genesis_Page_View.php:138 +msgid "Caches sidebar loop, the widget area." +msgstr "" + +#: Extension_Genesis_Page_View.php:143 +msgid "Exclude pages:" +msgstr "" + +#: Extension_Genesis_Page_View.php:144 +msgid "" +"List of pages that should not have sidebar cached. Specify one page / post " +"per line. This area supports regular expressions." +msgstr "" + +#: Extension_Genesis_Page_View.php:153 +msgid "Footer" +msgstr "" + +#: Extension_Genesis_Page_View.php:160 +msgid "Cache genesis footer:" +msgstr "" + +#: Extension_Genesis_Page_View.php:161 +msgid "Caches footer loop." +msgstr "" + +#: Extension_Genesis_Page_View.php:167 +msgid "Cache footer:" +msgstr "" + +#: Extension_Genesis_Page_View.php:168 +msgid "Caches wp_footer loop." +msgstr "" + +#: Extension_Genesis_Page_View.php:174 +msgid "Disable fragment cache:" +msgstr "" + +#: Extension_Genesis_Page_View.php:186 +msgid "Select hooks" +msgstr "" + +#: Extension_Genesis_Page_View.php:218 +msgid "" +"Select hooks from the list that should not be cached if user belongs to any " +"of the roles selected below." +msgstr "" + +#: Extension_Genesis_Page_View.php:223 +msgid "Select roles:" +msgstr "" + +#: Extension_Genesis_Page_View.php:239 +msgid "Select user roles that should not use the fragment cache." +msgstr "" + +#: Cdn_AdminActions.php:40 +msgid "File successfully deleted from the queue." +msgstr "" + +#: Cdn_AdminActions.php:48 +msgid "Queue successfully emptied." +msgstr "" + +#: Cdn_AdminActions.php:55 +#, php-format +msgid "Number of processed queue items: %d" +msgstr "" + +#: Cdn_AdminActions.php:61 +msgid "Unsuccessful file transfer queue." +msgstr "" + +#: Cdn_AdminActions.php:75 +msgid "Media Library export" +msgstr "" + +#: Cdn_AdminActions.php:148 +msgid "Media Library import" +msgstr "" + +#: Cdn_AdminActions.php:195 +msgid "Modify attachment URLs" +msgstr "" + +#: Cdn_AdminActions.php:241 +msgid "Includes files export" +msgstr "" + +#: Cdn_AdminActions.php:246 +msgid "Theme files export" +msgstr "" + +#: Cdn_AdminActions.php:251 +msgid "Minify files export" +msgstr "" + +#: Cdn_AdminActions.php:257 +msgid "Custom files export" +msgstr "" + +#: Cdn_AdminActions.php:313 Cdn_AdminActions.php:326 +msgid "Content Delivery Network (CDN): Purge Tool" +msgstr "" + +#: Cdn_AdminActions.php:345 +msgid "Empty files list." +msgstr "" + +#: Cdn_AdminActions.php:429 +msgid "Test passed" +msgstr "" + +#: Cdn_AdminActions.php:432 Cdn_AdminActions.php:436 Cdn_AdminActions.php:479 +#, php-format +msgid "Error: %s" +msgstr "" + +#: Cdn_AdminActions.php:477 +msgid "Created successfully." +msgstr "" + +#: Cdn_AdminActions.php:486 +msgid "Incorrect type." +msgstr "" + +#: Cdnfsd_CloudFront_Popup_View_Distribution.php:16 +msgid "Configure distribution" +msgstr "" + +#: Cdnfsd_GeneralPage_View.php:17 +msgid "" +"FSD CDN:" +msgstr "" + +#: Cdnfsd_GeneralPage_View.php:21 +msgid "" +"Deliver visitors the lowest possible response and load times for all site " +"content including HTML, media (e.g. images or fonts), CSS, and JavaScript." +msgstr "" + +#: Cdnfsd_GeneralPage_View.php:23 +msgid "" +"Without Full Site Delivery, the HTML of your website is not delivered with " +"the lowest latency possible. A small change to DNS settings means that every " +"component of your website is delivered to visitors using a worldwide network " +"of servers. The net result is more resources for content creation or for " +"authenticated users to post comments or browser personalized experiences " +"like e-commerce and membership sites etc." +msgstr "" + +#: Cdnfsd_GeneralPage_View.php:24 +msgid "" +"For even better performance, combine FSD with other powerful features like " +"Browser Cache, Minify, Fragment caching, or Lazy Load!" +msgstr "" + +#: Cdnfsd_GeneralPage_View.php:25 +msgid "" +"Contact support for any help maximizing your performance scores or " +"troubleshooting." +msgstr "" + +#: Cdnfsd_GeneralPage_View.php:33 +msgid "" +"FSD CDN Type:" +msgstr "" + +#: PageSpeed_Plugin_Widget.php:55 +msgid "Page Speed Report" +msgstr "" + +#: Extension_CloudFlare_Page_View.php:11 Extension_CloudFlare_Page_View.php:34 +msgid "Credentials" +msgstr "" + +#: Extension_CloudFlare_Page_View.php:12 Extension_CloudFlare_Page_View.php:74 +#: inc/options/dbcache.php:24 inc/options/cdn.php:17 inc/options/cdn.php:59 +#: inc/options/general.php:17 inc/options/browsercache.php:32 +#: inc/options/minify.php:42 inc/options/pgcache.php:30 +#: inc/options/common/header.php:28 inc/options/common/header.php:72 +#: inc/options/common/header.php:88 inc/options/common/header.php:104 +#: inc/options/common/header.php:127 +msgid "General" +msgstr "" + +#: Extension_CloudFlare_Page_View.php:13 +msgid "Information" +msgstr "" + +#: Extension_CloudFlare_Page_View.php:27 +msgid "Purge CloudFlare cache" +msgstr "" + +#: Extension_CloudFlare_Page_View.php:63 +msgid "Zone:" +msgstr "" + +#: Extension_CloudFlare_Page_View.php:101 +msgid "Widget statistics interval:" +msgstr "" + +#: Extension_CloudFlare_Page_View.php:126 +msgid "Page caching:" +msgstr "" + +#: Extension_CloudFlare_Page_View.php:144 +msgid "CloudFlare: Caching" +msgstr "" + +#: Extension_CloudFlare_Page_View.php:155 +msgid "Cache level:" +msgstr "" + +#: Extension_CloudFlare_Page_View.php:251 +msgid "CloudFlare: Content Processing" +msgstr "" + +#: Extension_CloudFlare_Page_View.php:257 +msgid "Rocket Loader:" +msgstr "" + +#: Extension_CloudFlare_Page_View.php:316 +msgid "CloudFlare: Image Processing" +msgstr "" + +#: Extension_CloudFlare_Page_View.php:332 +msgid "Images polishing:" +msgstr "" + +#: Extension_CloudFlare_Page_View.php:346 +msgid "CloudFlare: Protection" +msgstr "" + +#: Extension_CloudFlare_Page_View.php:352 +msgid "Security level:" +msgstr "" + +#: Extension_CloudFlare_Page_View.php:393 +msgid "CloudFlare: IP" +msgstr "" + +#: Extension_CloudFlare_Page_View.php:417 +msgid "CloudFlare: SSL" +msgstr "" + +#: CdnEngine_Mirror_MaxCdn.php:71 CdnEngine_Mirror_MaxCdn.php:147 +#, php-format +msgid "No zones match site: %s." +msgstr "" + +#: CdnEngine_Mirror_MaxCdn.php:73 CdnEngine_Mirror_MaxCdn.php:149 +#, php-format +msgid "No zones match site: %s or %s." +msgstr "" + +#: CdnEngine_Mirror_MaxCdn.php:90 +#, php-format +msgid "" +"Failed with error code %s Please check your alias, consumer key, and private " +"key." +msgstr "" + +#: CdnEngine_Mirror_MaxCdn.php:92 CdnEngine_Mirror_MaxCdn.php:161 +msgid "Failed with error code " +msgstr "" + +#: CdnEngine_Mirror_MaxCdn.php:159 +#, php-format +msgid "" +"Failed with error code %s. Please check your alias, consumer key, and " +"private key." +msgstr "" + +#: Extension_CloudFlare_Cdn_Page_View.php:17 +msgid "Configuration:" +msgstr "" + +#: CdnEngine_S3.php:16 +msgid "US East (N. Virginia)" +msgstr "" + +#: CdnEngine_S3.php:17 +msgid "US East (Ohio)" +msgstr "" + +#: CdnEngine_S3.php:18 +msgid "US-West (N. California)" +msgstr "" + +#: CdnEngine_S3.php:19 +msgid "US-West (Oregon)" +msgstr "" + +#: CdnEngine_S3.php:20 +msgid "Asia Pacific (Hong Kong)" +msgstr "" + +#: CdnEngine_S3.php:21 +msgid "Asia Pacific (Tokyo)" +msgstr "" + +#: CdnEngine_S3.php:22 +msgid "Asia Pacific (Seoul)" +msgstr "" + +#: CdnEngine_S3.php:23 +msgid "Asia Pacific (Osaka-Local)" +msgstr "" + +#: CdnEngine_S3.php:24 +msgid "Asia Pacific (Mumbai)" +msgstr "" + +#: CdnEngine_S3.php:25 +msgid "Asia Pacific (Singapore)" +msgstr "" + +#: CdnEngine_S3.php:26 +msgid "Asia Pacific (Sydney)" +msgstr "" + +#: CdnEngine_S3.php:27 +msgid "Canada (Central)" +msgstr "" + +#: CdnEngine_S3.php:28 +msgid "China (Ningxia)" +msgstr "" + +#: CdnEngine_S3.php:29 +msgid "EU (Frankfurt)" +msgstr "" + +#: CdnEngine_S3.php:30 +msgid "EU (Stockholm)" +msgstr "" + +#: CdnEngine_S3.php:31 +msgid "EU (Ireland)" +msgstr "" + +#: CdnEngine_S3.php:32 +msgid "EU (London)" +msgstr "" + +#: CdnEngine_S3.php:33 +msgid "EU (Paris)" +msgstr "" + +#: CdnEngine_S3.php:34 +msgid "Middle East (Bahrain)" +msgstr "" + +#: CdnEngine_S3.php:35 +msgid "South America (São Paulo)" +msgstr "" + +#: Mobile_Page_UserAgentGroups.php:28 +msgid "" +"Enabling even a single user agent group will set a cookie called " +"\"w3tc_referrer.\" It is used to ensure a consistent user experience across " +"page views. Make sure any reverse proxy servers etc respect this cookie for " +"proper operation." +msgstr "" + +#: Extension_Swarmify_Plugin_Admin.php:16 +msgid "" +"Optimize your video performance by enabling the Swarmify SmartVideo™ " +"solution." +msgstr "" + +#: Util_Rule.php:312 +#, php-format +msgid "" +"Edit file %s and add the following rules above the " +"WordPress directives:" +msgstr "" + +#: Util_Rule.php:379 +#, php-format +msgid "" +"Edit file %s and remove all lines between and including " +"%s\n" +"\t\t\t\tand %s markers." +msgstr "" + +#: CdnEngine_Mirror_Highwinds.php:79 CdnEngine_Mirror_LimeLight.php:125 +msgid "Failed to purge all: " +msgstr "" + +#: Util_Theme.php:80 +msgid "All Templates" +msgstr "" + +#: DbCache_WpdbInjection_QueryCaching.php:679 +msgid "Request-wide" +msgstr "" + +#: DbCache_WpdbInjection_QueryCaching.php:694 +msgid "Database caching is disabled" +msgstr "" + +#: DbCache_WpdbInjection_QueryCaching.php:696 +msgid "DONOTCACHEDB constant is defined" +msgstr "" + +#: DbCache_WpdbInjection_QueryCaching.php:698 +msgid "Doing AJAX" +msgstr "" + +#: DbCache_WpdbInjection_QueryCaching.php:700 +msgid "Request URI is rejected" +msgstr "" + +#: DbCache_WpdbInjection_QueryCaching.php:702 +msgid "Cookie is rejected" +msgstr "" + +#: DbCache_WpdbInjection_QueryCaching.php:704 +msgid "Doing cron" +msgstr "" + +#: DbCache_WpdbInjection_QueryCaching.php:706 +msgid "Application request" +msgstr "" + +#: DbCache_WpdbInjection_QueryCaching.php:708 +msgid "XMLRPC request" +msgstr "" + +#: DbCache_WpdbInjection_QueryCaching.php:710 +msgid "wp-admin" +msgstr "" + +#: DbCache_WpdbInjection_QueryCaching.php:712 +msgid "Short init" +msgstr "" + +#: DbCache_WpdbInjection_QueryCaching.php:714 +msgid "Query is rejected" +msgstr "" + +#: DbCache_WpdbInjection_QueryCaching.php:716 +msgid "User is logged in" +msgstr "" + +#: DbCache_WpdbInjection_QueryCaching.php:728 +#, php-format +msgid "Database Caching %d/%d queries in %.3f seconds using %s%s" +msgstr "" + +#: DbCache_WpdbInjection_QueryCaching.php:734 +#, php-format +msgid "Database Caching using %s%s" +msgstr "" + +#: Extension_CloudFlare_Plugin_Admin.php:30 +#, php-format +msgid "" +"CloudFlare protects and accelerates websites. Sign up now for free to get started,\n" +" or if you have an account simply log in to obtain your API key from the account " +"page to enter it on the General Settings box that appears after plugin " +"activation.\n" +" Contact the CloudFlare support team with any questions." msgstr "" -#: extensions/CloudFlareAdmin.php:120 extensions/CloudFlareAdmin.php:127 -msgid "Unable to make CloudFlare API request." -msgstr "" - -#: extensions/CloudFlareAdmin.php:126 -msgid "All caches except CloudFlare successfully emptied." -msgstr "" - -#: extensions/CloudFlareAdmin.php:145 -msgid "empty all caches except CloudFlare" -msgstr "" - -#: extensions/CloudFlareAdmin.php:147 -msgid "at once" -msgstr "" - -#: extensions/CloudFlareAdmin.php:168 +#: Extension_CloudFlare_Plugin_Admin.php:145 msgid "" "CloudFlare plugin detected. We recommend removing the\n" " plugin as it offers no additional capabilities when W3 Total " @@ -195,441 +3599,1504 @@ msgid "" " when CloudFlare is removed." msgstr "" -#: extensions/FeedBurnerAdmin.php:52 +#: Extension_CloudFlare_Plugin_Admin.php:159 +msgid "CloudFlare: All" +msgstr "" + +#: Extension_CloudFlare_Plugin_Admin.php:303 +msgid "empty all caches except CloudFlare" +msgstr "" + +#: Extension_CloudFlare_Plugin_Admin.php:305 +msgid "at once" +msgstr "" + +#: Generic_Plugin.php:299 +msgid "Purge All Caches" +msgstr "" + +#: Generic_Plugin.php:308 +msgid "Purge Current Page" +msgstr "" + +#: Generic_Plugin.php:317 +msgid "Purge Modules" +msgstr "" + +#: Generic_Plugin.php:330 +msgid "Manage Extensions" +msgstr "" + +#: Generic_Plugin.php:352 +msgid "Debug: Overlays" +msgstr "" + +#: Generic_Plugin.php:357 +msgid "Support Us" +msgstr "" + +#: Generic_Plugin.php:365 +msgid "Edge" +msgstr "" + +#: Cli.php:36 +msgid "Environment adjustment failed with error" +msgstr "" + +#: Cli.php:40 +msgid "Environment adjusted." +msgstr "" + +#: Cli.php:83 +msgid "Flushing all failed." +msgstr "" + +#: Cli.php:85 +msgid "Everything flushed successfully." +msgstr "" + +#: Cli.php:93 +msgid "Flushing posts/pages failed." +msgstr "" + +#: Cli.php:95 +msgid "Posts/pages flushed successfully." +msgstr "" + +#: Cli.php:105 +msgid "Flushing the DB cache failed." +msgstr "" + +#: Cli.php:107 +msgid "The DB cache is flushed successfully." +msgstr "" + +#: Cli.php:116 +msgid "Flushing the minify cache failed." +msgstr "" + +#: Cli.php:118 +msgid "The minify cache is flushed successfully." +msgstr "" + +#: Cli.php:127 +msgid "Flushing the object cache failed." +msgstr "" + +#: Cli.php:129 +msgid "The object cache is flushed successfully." +msgstr "" + +#: Cli.php:139 Cli.php:151 +msgid "Flushing the page from cache failed." +msgstr "" + +#: Cli.php:141 Cli.php:153 +msgid "The page is flushed from cache successfully." +msgstr "" + +#: Cli.php:143 +msgid "This is not a valid post id." +msgstr "" + +#: Cli.php:162 +msgid "Flushing the page cache failed." +msgstr "" + +#: Cli.php:164 +msgid "The page cache is flushed successfully." +msgstr "" + +#: Cli.php:169 +msgid "Not specified what to flush" +msgstr "" + +#: Cli.php:219 +msgid " parameter is not specified" +msgstr "" + +#: Cli.php:260 +msgid " parameter is not specified" +msgstr "" + +#: Cli.php:271 +msgid " is not boolean" +msgstr "" + +#: Cli.php:289 +msgid "Option updated successfully." +msgstr "" + +#: Cli.php:291 +msgid "Option value update failed." +msgstr "" + +#: Cli.php:295 +msgid " parameter is not specified" +msgstr "" + +#: Cli.php:322 +msgid "Configuration successfully imported." +msgstr "" + +#: Cli.php:335 #, php-format -msgid "The FeedBurner extension is currently %s " +msgid "updating the query string failed. with error %s" msgstr "" -#: extensions/FeedBurnerAdmin.php:53 extensions/GenesisAdmin.php:32 -#: extensions/WordPressSEOAdmin.php:50 inc/options/browsercache.php:6 -#: inc/options/cdn.php:8 inc/options/dashboard.php:7 inc/options/dbcache.php:6 -#: inc/options/extensions.php:11 inc/options/general.php:11 -#: inc/options/minify.php:16 inc/options/new_relic.php:4 -#: inc/options/objectcache.php:9 inc/options/pgcache.php:9 -#: inc/options/pro/fragmentcache.php:6 inc/widget/new_relic.php:89 -msgid "enabled" +#: Cli.php:339 +msgid "The query string was updated successfully." msgstr "" -#: extensions/FeedBurnerAdmin.php:82 +#: Cli.php:366 +#, php-format +msgid "Files did not successfully purge with error %s" +msgstr "" + +#: Cli.php:368 +msgid "Files purged successfully." +msgstr "" + +#: Cli.php:381 +msgid " is not supported. Change to SNS or local to delete opcache files" +msgstr "" + +#: Cli.php:402 Cli.php:409 +#, php-format +msgid "Files did not successfully delete with error %s" +msgstr "" + +#: Cli.php:404 +msgid "Files did not successfully delete with message: " +msgstr "" + +#: Cli.php:411 +msgid "Files deleted successfully." +msgstr "" + +#: Cli.php:423 +#, php-format +msgid "PageCache Garbage cleanup failed: %s" +msgstr "" + +#: Cli.php:427 +msgid "PageCache Garbage cleanup triggered successfully." +msgstr "" + +#: Cli.php:455 +#, php-format +msgid "PageCache Priming did failed: %s" +msgstr "" + +#: Cli.php:459 +msgid "PageCache Priming triggered successfully." +msgstr "" + +#: Cdn_Highwinds_Popup_View_Intro.php:14 +msgid "Your Highwinds API Token" +msgstr "" + +#: Cdn_RackSpaceCdn_Popup_View_Service_Actualize.php:24 +msgid "Configure service" +msgstr "" + +#: Extension_CloudFlare_AdminActions.php:24 +msgid "Failed to purge CloudFlare cache: " +msgstr "" + +#: Extension_CloudFlare_AdminActions.php:33 +msgid "CloudFlare cache successfully emptied." +msgstr "" + +#: Extension_CloudFlare_AdminActions.php:64 +msgid "CloudFlare settings are successfully updated." +msgstr "" + +#: Extension_CloudFlare_AdminActions.php:72 +msgid "Failed to update CloudFlare settings:" +msgstr "" + +#: CdnEngine_Mirror_Cotendo.php:48 +msgid "Empty zones list." +msgstr "" + +#: Extension_Genesis_Plugin_Admin.php:43 +msgid "" +"Increase the performance of themes powered by the Genesis Theme Framework by " +"up to 60%." +msgstr "" + +#: Extension_Genesis_Plugin_Admin.php:65 +msgid "" +"Please enable Fragment Cache module to make sure " +"Genesis extension works properly." +msgstr "" + +#: Extension_Genesis_Plugin_Admin.php:125 +#, php-format +msgid "" +"Activating the Genesis Theme extension for W3 Total Cache " +"may be helpful for your site. Click here to try it. %s" +msgstr "" + +#: PgCache_ConfigLabels.php:7 +msgid "Page Cache Method:" +msgstr "" + +#: PgCache_ConfigLabels.php:8 +msgid "Page Cache:" +msgstr "" + +#: PgCache_ConfigLabels.php:10 +msgid "Cache front page" +msgstr "" + +#: PgCache_ConfigLabels.php:10 +msgid "Cache posts page" +msgstr "" + +#: PgCache_ConfigLabels.php:11 +msgid "Don't cache front page" +msgstr "" + +#: PgCache_ConfigLabels.php:12 +msgid "Cache feeds: site, categories, tags, comments" +msgstr "" + +#: PgCache_ConfigLabels.php:13 +msgid "" +"Cache SSL (HTTPS) requests" +msgstr "" + +#: PgCache_ConfigLabels.php:14 +msgid "" +"Cache URIs with " +"query string variables" +msgstr "" + +#: PgCache_ConfigLabels.php:15 +msgid "Cache 404 (not found) pages" +msgstr "" + +#: PgCache_ConfigLabels.php:16 +msgid "Don't cache pages for logged in users" +msgstr "" + +#: PgCache_ConfigLabels.php:17 +msgid "Don't cache pages for following user roles" +msgstr "" + +#: PgCache_ConfigLabels.php:18 +msgid "Automatically prime the page cache" +msgstr "" + +#: PgCache_ConfigLabels.php:19 +msgid "Update interval:" +msgstr "" + +#: PgCache_ConfigLabels.php:20 +msgid "Pages per interval:" +msgstr "" + +#: PgCache_ConfigLabels.php:21 +msgid "Sitemap URL:" +msgstr "" + +#: PgCache_ConfigLabels.php:22 +msgid "Preload the post cache upon publish events" +msgstr "" + +#: PgCache_ConfigLabels.php:23 PgCache_ConfigLabels.php:24 +msgid "Front page" +msgstr "" + +#: PgCache_ConfigLabels.php:24 +msgid "Posts page" +msgstr "" + +#: PgCache_ConfigLabels.php:25 +msgid "Post page" +msgstr "" + +#: PgCache_ConfigLabels.php:26 +msgid "Blog feed" +msgstr "" + +#: PgCache_ConfigLabels.php:27 +msgid "Post comments pages" +msgstr "" + +#: PgCache_ConfigLabels.php:28 +msgid "Post author pages" +msgstr "" + +#: PgCache_ConfigLabels.php:29 +msgid "Post terms pages" +msgstr "" + +#: PgCache_ConfigLabels.php:30 +msgid "Post comments feed" +msgstr "" + +#: PgCache_ConfigLabels.php:31 +msgid "Post author feed" +msgstr "" + +#: PgCache_ConfigLabels.php:32 +msgid "Post terms feeds" +msgstr "" + +#: PgCache_ConfigLabels.php:33 +msgid "Daily archive pages" +msgstr "" + +#: PgCache_ConfigLabels.php:34 +msgid "Monthly archive pages" +msgstr "" + +#: PgCache_ConfigLabels.php:35 +msgid "Yearly archive pages" +msgstr "" + +#: PgCache_ConfigLabels.php:36 +msgid "Specify the feed types to purge:" +msgstr "" + +#: PgCache_ConfigLabels.php:37 +msgid "Purge limit:" +msgstr "" + +#: PgCache_ConfigLabels.php:38 +msgid "Additional pages:" +msgstr "" + +#: PgCache_ConfigLabels.php:39 +msgid "Purge sitemaps:" +msgstr "" + +#: PgCache_ConfigLabels.php:41 +msgid "" +"Disable UTF-8 " +"blog charset support" +msgstr "" + +#: PgCache_ConfigLabels.php:42 +msgid "" +" Disable caching of HEAD " +"HTTP requests" +msgstr "" + +#: PgCache_ConfigLabels.php:45 +msgid "Comment cookie lifetime:" +msgstr "" + +#: PgCache_ConfigLabels.php:46 +msgid "Accepted query strings:" +msgstr "" + +#: PgCache_ConfigLabels.php:48 +msgid "Rejected cookies:" +msgstr "" + +#: PgCache_ConfigLabels.php:50 +msgid "Never cache pages associated with these categories:" +msgstr "" + +#: PgCache_ConfigLabels.php:51 +msgid "Never cache pages that use these tags:" +msgstr "" + +#: PgCache_ConfigLabels.php:52 +msgid "Never cache pages by these authors:" +msgstr "" + +#: PgCache_ConfigLabels.php:53 +msgid "Never cache pages that use these custom fields:" +msgstr "" + +#: PgCache_ConfigLabels.php:54 +msgid "Cache exception list:" +msgstr "" + +#: PgCache_ConfigLabels.php:55 +msgid "Non-trailing slash pages:" +msgstr "" + +#: PgCache_ConfigLabels.php:56 +msgid "Specify page headers:" +msgstr "" + +#: PgCache_ConfigLabels.php:57 +msgid "" +"Handle XML mime type" +msgstr "" + +#: Generic_AdminActions_Flush.php:100 +msgid "Static files cache successfully emptied." +msgstr "" + +#: Cdn_GoogleDrive_Popup_AuthReturn_View.php:16 +msgid "Select folder" +msgstr "" + +#: Extension_CloudFlare_Page.php:127 +msgid "Save CloudFlare settings" +msgstr "" + +#: Extension_WordPressSeo_Plugin_Admin.php:37 +msgid "" +"Configures W3 Total Cache to comply with Yoast SEO requirements " +"automatically." +msgstr "" + +#: Extension_WordPressSeo_Plugin_Admin.php:88 +#, php-format +msgid "" +"Activating the Yoast SEO extension for W3 Total Cache may " +"be helpful for your site. Click here to " +"try it. %s" +msgstr "" + +#: Generic_AdminActions_Default.php:226 +msgid "You do not have the rights to perform this action." +msgstr "" + +#: Generic_AdminActions_Default.php:742 +msgid "Added by W3 Total Cache" +msgstr "" + +#: Extension_NewRelic_Widget_View_NotConfigured.php:8 +msgid "You have not configured API key and Account Id." +msgstr "" + +#: Generic_ConfigLabels.php:7 +msgid "" +"Enable cache purge via Amazon " +"SNS" +msgstr "" + +#: Generic_ConfigLabels.php:8 +msgid "" +"Amazon SNS region:" +msgstr "" + +#: Generic_ConfigLabels.php:10 +msgid "" +"API secret:" +msgstr "" + +#: Generic_ConfigLabels.php:11 +msgid "Topic ID:" +msgstr "" + +#: Generic_ConfigLabels.php:12 inc/options/common/header.php:42 +msgid "Message Bus" +msgstr "" + +#: Generic_ConfigLabels.php:13 +msgid "" +"Page Speed API" +" Key:" +msgstr "" + +#: Generic_ConfigLabels.php:14 +msgid "Key Restriction (Referrer):" +msgstr "" + +#: Generic_ConfigLabels.php:15 +msgid "Use single network configuration file for all sites." +msgstr "" + +#: Generic_ConfigLabels.php:16 +msgid "Nginx server configuration file path" +msgstr "" + +#: Generic_ConfigLabels.php:17 +msgid "Verify rewrite rules" +msgstr "" + +#: Generic_ConfigLabels.php:18 +msgid "License:" +msgstr "" + +#: Generic_ConfigLabels.php:20 inc/options/referrer.php:74 +msgid "Referrers:" +msgstr "" + +#: Generic_ConfigLabels.php:21 +msgid "Referrer groups" +msgstr "" + +#: Generic_ConfigLabels.php:22 +msgid "User Agents:" +msgstr "" + +#: Generic_ConfigLabels.php:23 +msgid "User Agent groups" +msgstr "" + +#: Generic_ConfigLabels.php:25 +msgid "Enable reverse proxy caching via varnish" +msgstr "" + +#: Generic_ConfigLabels.php:26 Varnish_Plugin.php:79 +#: inc/options/general.php:291 inc/options/common/header.php:40 +msgid "Reverse Proxy" +msgstr "" + +#: Generic_ConfigLabels.php:27 +msgid "Varnish servers:" +msgstr "" + +#: ObjectCache_ConfigLabels.php:7 +msgid "Object Cache Method:" +msgstr "" + +#: ObjectCache_ConfigLabels.php:8 +msgid "Object Cache:" +msgstr "" + +#: ObjectCache_ConfigLabels.php:10 +msgid "Default lifetime of cache objects:" +msgstr "" + +#: ObjectCache_ConfigLabels.php:12 +msgid "Global groups:" +msgstr "" + +#: ObjectCache_ConfigLabels.php:13 +msgid "Non-persistent groups:" +msgstr "" + +#: ObjectCache_ConfigLabels.php:14 +msgid "Flush all cache on post, comment etc changes." +msgstr "" + +#: PgCache_Plugin.php:122 +msgid "REST API disabled." +msgstr "" + +#: PgCache_Plugin.php:299 +msgid "Page Cache: All" +msgstr "" + +#: PgCache_Plugin.php:309 +msgid "Page Cache: Current Page" +msgstr "" + +#: Generic_Plugin_WidgetNews.php:43 +msgid "News" +msgstr "" + +#: Generic_Plugin_Admin.php:528 +msgid "Empty Caches" +msgstr "" + +#: Generic_Plugin_Admin.php:572 +msgid "Take a minute to update, here's why:" +msgstr "" + +#: Generic_Plugin_Admin.php:606 +#, php-format +msgid "" +"Fancy permalinks are disabled. Please %s it first, then re-attempt to " +"enabling enhanced disk mode." +msgstr "" + +#: Generic_Plugin_Admin.php:607 +#, php-format +msgid "" +"Fancy permalinks are disabled. Please %s it first, then re-attempt to " +"enabling the 'Do not process 404 errors for static objects with WordPress'." +msgstr "" + +#: Generic_Plugin_Admin.php:608 +msgid "Failed to send support request." +msgstr "" + +#: Generic_Plugin_Admin.php:609 +msgid "Please select request type." +msgstr "" + +#: Generic_Plugin_Admin.php:610 +msgid "" +"Please enter the address of the site in the site URL field." +msgstr "" + +#: Generic_Plugin_Admin.php:611 +msgid "Please enter your name in the Name field" +msgstr "" + +#: Generic_Plugin_Admin.php:612 +msgid "Please enter valid email address in the E-Mail field." +msgstr "" + +#: Generic_Plugin_Admin.php:613 +msgid "Please enter your phone in the phone field." +msgstr "" + +#: Generic_Plugin_Admin.php:614 +msgid "Please enter subject in the subject field." +msgstr "" + +#: Generic_Plugin_Admin.php:615 +msgid "Please describe the issue in the issue description field." +msgstr "" + +#: Generic_Plugin_Admin.php:616 +msgid "" +"Please enter an administrator login. Create a temporary one just for this " +"support case if needed." +msgstr "" + +#: Generic_Plugin_Admin.php:617 +msgid "Please enter WP Admin password, be sure it's spelled correctly." +msgstr "" + +#: Generic_Plugin_Admin.php:618 +msgid "" +"Please enter SSH or FTP host for the site." +msgstr "" + +#: Generic_Plugin_Admin.php:619 +msgid "" +"Please enter SSH or FTP login for the server. Create " +"a temporary one just for this support case if needed." +msgstr "" + +#: Generic_Plugin_Admin.php:620 +msgid "" +"Please enter SSH or FTP password for the FTP account." +msgstr "" + +#: Generic_Plugin_Admin.php:621 +msgid "Unable to send the support request." +msgstr "" + +#: Generic_Plugin_Admin.php:622 +msgid "Please select config file." +msgstr "" + +#: Generic_Plugin_Admin.php:623 +msgid "Unable to upload config file." +msgstr "" + +#: Generic_Plugin_Admin.php:624 +msgid "Configuration file could not be imported." +msgstr "" + +#: Generic_Plugin_Admin.php:625 +#, php-format +msgid "" +"Default settings could not be restored. Please run chmod 777 " +"%s to make the configuration file write-able, then try again." +msgstr "" + +#: Generic_Plugin_Admin.php:626 +msgid "Unable to purge attachment." +msgstr "" + +#: Generic_Plugin_Admin.php:627 +msgid "Unable to purge post." +msgstr "" + +#: Generic_Plugin_Admin.php:628 +#, php-format +msgid "" +"%swp-config.php could not be written, please edit config " +"and add:
    define('COOKIE_DOMAIN', '%s');" +" before require_once(ABSPATH . 'wp-" +"settings.php');." +msgstr "" + +#: Generic_Plugin_Admin.php:629 +#, php-format +msgid "" +"%swp-config.php could not be written, please edit config " +"and add:
    define('COOKIE_DOMAIN', false);" +" before require_once(ABSPATH . 'wp-" +"settings.php');." +msgstr "" + +#: Generic_Plugin_Admin.php:630 +msgid "Pull Zone could not be automatically created." +msgstr "" + +#: Generic_Plugin_Admin.php:634 +msgid "Plugin configuration successfully updated." +msgstr "" + +#: Generic_Plugin_Admin.php:635 +msgid "All caches successfully emptied." +msgstr "" + +#: Generic_Plugin_Admin.php:636 +msgid "Memcached cache(s) successfully emptied." +msgstr "" + +#: Generic_Plugin_Admin.php:637 +msgid "Opcode cache(s) successfully emptied." +msgstr "" + +#: Generic_Plugin_Admin.php:638 +msgid "Disk cache(s) successfully emptied." +msgstr "" + +#: Generic_Plugin_Admin.php:639 +msgid "Page cache successfully emptied." +msgstr "" + +#: Generic_Plugin_Admin.php:640 +msgid "Database cache successfully emptied." +msgstr "" + +#: Generic_Plugin_Admin.php:641 +msgid "Object cache successfully emptied." +msgstr "" + +#: Generic_Plugin_Admin.php:642 +msgid "Fragment cache successfully emptied." +msgstr "" + +#: Generic_Plugin_Admin.php:643 +msgid "Minify cache successfully emptied." +msgstr "" + +#: Generic_Plugin_Admin.php:644 +msgid "Media Query string has been successfully updated." +msgstr "" + +#: Generic_Plugin_Admin.php:645 +msgid "Varnish servers successfully purged." +msgstr "" + +#: Generic_Plugin_Admin.php:646 +msgid "" +"CDN was successfully " +"purged." +msgstr "" + +#: Generic_Plugin_Admin.php:647 +msgid "The support request has been successfully sent." +msgstr "" + +#: Generic_Plugin_Admin.php:648 +msgid "Settings successfully imported." +msgstr "" + +#: Generic_Plugin_Admin.php:649 +msgid "Settings successfully restored." +msgstr "" + +#: Generic_Plugin_Admin.php:650 +msgid "Preview mode was successfully enabled" +msgstr "" + +#: Generic_Plugin_Admin.php:651 +msgid "Preview mode was successfully disabled" +msgstr "" + +#: Generic_Plugin_Admin.php:652 +msgid "" +"Preview settings successfully deployed. Preview mode remains enabled until " +"it's disabled. Continue testing new settings or disable preview mode if done." +msgstr "" + +#: Generic_Plugin_Admin.php:653 +msgid "Attachment successfully purged." +msgstr "" + +#: Generic_Plugin_Admin.php:654 +msgid "Post successfully purged." +msgstr "" + +#: Generic_Plugin_Admin.php:655 +msgid "New relic settings have been updated." +msgstr "" + +#: Generic_Plugin_Admin.php:656 +msgid "The add-in has been removed." +msgstr "" + +#: Generic_Plugin_Admin.php:657 +msgid "Edge mode has been enabled." +msgstr "" + +#: Generic_Plugin_Admin.php:658 +msgid "Edge mode has been disabled." +msgstr "" + +#: Generic_Plugin_Admin.php:659 +msgid "Pull Zone was automatically created." +msgstr "" + +#: Generic_Plugin_Admin.php:705 +msgid "Required files and directories have been automatically created" +msgstr "" + +#: Cdn_RackSpaceCloudFiles_Popup_View_Intro.php:16 +#: Cdn_RackSpaceCdn_Popup_View_Intro.php:15 +msgid "Your RackSpace API key" +msgstr "" + +#: Minify_Plugin.php:317 +#, php-format +msgid "Minified using %s%s" +msgstr "" + +#: Cdn_RackSpaceCloudFiles_Page_View.php:35 inc/options/cdn/rscf.php:33 +#: inc/options/cdn/azure.php:23 +msgid "Container:" +msgstr "" + +#: Cdn_MaxCdn_Page_View.php:45 +msgid "" +"CDN HTTP CNAME:" +msgstr "" + +#: Cdn_MaxCdn_Page_View.php:59 +msgid "" +"CDN HTTPS CNAME:" +msgstr "" + +#: Cdn_MaxCdn_Page_View.php:77 +msgid "" +"Disabled (always use " +"HTTP)" +msgstr "" + +#: Cdn_MaxCdn_Page_View.php:91 +msgid "Test MaxCDN" +msgstr "" + +#: UserExperience_GeneralPage_View.php:21 +msgid "Defer loading offscreen images." +msgstr "" + +#: UserExperience_GeneralPage_View.php:28 +msgid "Disable Emoji" +msgstr "" + +#: UserExperience_GeneralPage_View.php:29 +msgid "Remove emojis support from your website." +msgstr "" + +#: UserExperience_GeneralPage_View.php:36 +msgid "Disable wp-embed script" +msgstr "" + +#: UserExperience_GeneralPage_View.php:37 +msgid "" +"Remove wp-embed.js script from your website. oEmbed functionality still " +"works but you will not be able to embed other WordPress posts on your pages." +msgstr "" + +#: Extension_NewRelic_Plugin_Admin.php:20 +msgid "" +"Legacy: New Relic is software analytics platform offering app performance " +"management and mobile monitoring solutions." +msgstr "" + +#: Extension_NewRelic_Plugin_Admin.php:146 +msgid "New Relic is not running correctly. " +msgstr "" + +#: Extension_NewRelic_Plugin_Admin.php:150 +msgid "The plugin has detected the following issues:. " +msgstr "" + +#: Extension_NewRelic_Plugin_Admin.php:158 +#, php-format +msgid "Please review the settings." +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:13 +msgid "" +"controls whether the current document is allowed to gather information about " +"the acceleration of the device through the Accelerometer interface" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:16 +msgid "" +"controls whether the current document is allowed to gather information about " +"the amount of light in the environment around the device through the " +"AmbientLightSensor interface" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:19 +msgid "" +"controls whether the current document is allowed to autoplay media requested " +"through the HTMLMediaElement interface" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:22 +msgid "" +"controls whether the current document is allowed to use video input devices" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:25 +msgid "" +"controls whether or not the document is permitted to use Screen Capture API" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:28 +msgid "controls whether the current document is allowed to set document.domain" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:31 +msgid "" +"controls whether the current document is allowed to use the Encrypted Media " +"Extensions API (EME)" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:34 +msgid "" +"controls whether the current document is allowed to use Element." +"requestFullScreen()" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:37 +msgid "" +"controls whether the current document is allowed to use the Geolocation " +"Interface" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:40 +msgid "" +"controls whether the current document is allowed to gather information about " +"the orientation of the device through the Gyroscope interface" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:43 +msgid "" +"controls whether the current document is allowed to show layout animations" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:46 +msgid "" +"controls whether the current document is allowed to display images in legacy " +"formats" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:49 +msgid "" +"controls whether the current document is allowed to gather information about " +"the orientation of the device through the Magnetometer interface" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:52 +msgid "" +"controls whether the current document is allowed to use audio input devices" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:55 +msgid "" +"controls whether the current document is allowed to use the Web MIDI API" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:58 +msgid "" +"controls whether the current document is allowed to download and display " +"large images" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:61 +msgid "" +"controls whether the current document is allowed to use the Payment Request " +"API" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:64 +msgid "" +"controls whether the current document is allowed to play a video in a " +"Picture-in-Picture mode via the corresponding API" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:67 +msgid "" +"controls whether the current document is allowed to access Web Authentcation " +"API" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:70 +msgid "" +"controls whether the current document is allowed to play audio via any " +"methods" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:73 +msgid "" +"controls whether the current document is allowed to make synchronous " +"XMLHttpRequest requests" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:76 +msgid "" +"controls whether the current document is allowed to download and display " +"unoptimized images" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:79 +msgid "" +"controls whether the current document is allowed to change the size of media " +"elements after the initial layout is complete" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:82 +msgid "controls whether the current document is allowed to use the WebUSB API" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:85 +msgid "" +"directive controls whether the current document is allowed to trigger device " +"vibrations via Vibration API" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:88 +msgid "" +"controls whether the current document is allowed to use Wake Lock API to " +"indicate that device should not enter power-saving mode" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:91 +msgid "" +"controls whether the current document is allowed to use the WebXR Device API." +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:96 +#: inc/options/common/header.php:131 +msgid "Security Headers" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:97 +msgid "" +"HTTP security " +"headers provide another layer of protection for your website by helping to " +"mitigate attacks and security vulnerabilities." +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:106 +msgid "" +"This setting prevents attacks that are caused by passing session IDs in " +"URLs." +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:115 +msgid "" +"This tells the user's browser not to make the session cookie accessible to " +"client side scripting such as JavaScript. This makes it harder for an " +"attacker to hijack the session ID and masquerade as the effected user." +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:124 +msgid "" +"This will prevent the user's session ID from being transmitted in plain text," +" making it much harder to hijack the user's session." +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:131 +msgid "" +"HTTP Strict-" +"Transport-Security (" +"HSTS) enforces secure (HTTP over " +"SSL/TLS) " +"connections to the server. This can help mitigate adverse effects caused by " +"bugs and session leaks through cookies and links. It also helps defend " +"against man-in-the-middle attacks. If there are SSL negotiation warnings then users will not be " +"permitted to ignore them." +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:143 +#: BrowserCache_Page_View_SectionSecurity.php:238 +msgid "max-age=EXPIRES_SECONDS" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:144 +msgid "max-age=EXPIRES_SECONDS; preload" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:145 +#: BrowserCache_Page_View_SectionSecurity.php:239 +msgid "max-age=EXPIRES_SECONDS; includeSubDomains" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:146 +msgid "max-age=EXPIRES_SECONDS; includeSubDomains; preload" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:154 +msgid "" +"This tells the browser if it is permitted to render a page within a frame-" +"like tag (i.e., <frame>, <iframe> or <object>). This is " +"useful for preventing clickjacking attacks." +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:166 +msgid "SameOrigin" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:167 +msgid "Deny" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:168 +msgid "Allow-From" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:178 +msgid "" +"This header enables the XSS" +" filter. It helps to stop malicious scripts from being injected into your " +"website. Although this is already built into and enabled by default in most " +"browsers today it is made available here to enforce its reactivation if it " +"was disabled within the user's browser." +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:190 +msgid "0" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:191 +msgid "1" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:192 +msgid "1; mode=block" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:200 +msgid "" +"This instructs the browser to not MIME-sniff a response outside its declared " +"content-type. It helps to reduce drive-by download attacks and stops sites " +"from serving malevolent content that could masquerade as an executable or " +"dynamic HTML file." +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:263 +msgid "No = Enforce HPKP" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:264 +msgid "Yes = Don't Enforce HPKP" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:284 +msgid "Not Set" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:285 +msgid "no-referrer" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:286 +msgid "no-referrer-when-downgrade" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:287 +msgid "same-origin" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:288 +msgid "origin" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:289 +msgid "strict-origin" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:290 +msgid "origin-when-cross-origin" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:291 +msgid "strict-origin-when-cross-origin" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:292 +msgid "unsafe-url" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:448 +msgid "Feature-Policy" +msgstr "" + +#: BrowserCache_Page_View_SectionSecurity.php:449 +msgid "Allows you to control which origins can use which features." +msgstr "" + +#: w3-total-cache-old-php.php:10 +msgid "" +"Please update your PHP. W3 Total Cache requires PHP version " +"5.3 or above" +msgstr "" + +#: UsageStatistics_Widget_View_Disabled.php:32 +msgid "Upgrade to Pro" +msgstr "" + +#: Extension_FeedBurner_Plugin_Admin.php:42 #, php-format msgid "" "Automatically ping (purge) FeedBurner feeds when pages / posts are modified. " "Default URL: %s" msgstr "" -#: extensions/FeedBurnerAdmin.php:83 +#: Extension_FeedBurner_Plugin_Admin.php:43 msgid "Network Admin has no main URL." msgstr "" -#: extensions/FeedBurnerAdmin.php:106 -msgid "Additional URLs:" +#: Generic_Page_PurgeLog_View.php:58 +msgid "Clear Log" msgstr "" -#: extensions/FeedBurnerAdmin.php:107 -msgid "Specify any additional feed URLs to ping on FeedBurner." +#: Cdnfsd_MaxCdn_Popup_View_Intro.php:14 Cdn_MaxCdn_Popup_View_Intro.php:14 +msgid "Your MaxCDN Account credentials" msgstr "" -#: extensions/GenesisAdmin.php:31 -#, php-format -msgid "The Genesis Framework extension is currently %s " -msgstr "" - -#: extensions/GenesisAdmin.php:33 inc/options/browsercache.php:6 -#: inc/options/cdn.php:8 inc/options/dashboard.php:7 inc/options/dbcache.php:6 -#: inc/options/general.php:11 inc/options/minify.php:16 -#: inc/options/new_relic.php:4 inc/options/objectcache.php:9 -#: inc/options/pgcache.php:9 inc/options/pro/fragmentcache.php:6 -#: inc/widget/new_relic.php:89 -msgid "disabled" -msgstr "" - -#: extensions/GenesisAdmin.php:35 -#, php-format -msgid "and caching via %s" -msgstr "" - -#: extensions/GenesisAdmin.php:189 -msgid "Cache wp_head loop:" -msgstr "" - -#: extensions/GenesisAdmin.php:190 -msgid "Cache wp_head. This includes the embedded CSS, JS etc." -msgstr "" - -#: extensions/GenesisAdmin.php:196 -msgid "Cache header:" -msgstr "" - -#: extensions/GenesisAdmin.php:197 -msgid "Cache header loop. This is the area where the logo is located." -msgstr "" - -#: extensions/GenesisAdmin.php:203 -msgid "Cache primary navigation:" -msgstr "" - -#: extensions/GenesisAdmin.php:204 -msgid "Caches the navigation filter; per page." -msgstr "" - -#: extensions/GenesisAdmin.php:210 -msgid "Cache secondary navigation:" -msgstr "" - -#: extensions/GenesisAdmin.php:211 -msgid "Caches secondary navigation filter; per page." -msgstr "" - -#: extensions/GenesisAdmin.php:217 -msgid "Cache front page post loop:" -msgstr "" - -#: extensions/GenesisAdmin.php:218 -msgid "Caches the front page post loop, pagination is supported." -msgstr "" - -#: extensions/GenesisAdmin.php:224 -msgid "Cache author/tag/categories/term post loop:" -msgstr "" - -#: extensions/GenesisAdmin.php:225 -msgid "" -"Caches the posts listed on tag, categories, author and other term pages, " -"pagination is supported." -msgstr "" - -#: extensions/GenesisAdmin.php:231 -msgid "Flush posts loop:" -msgstr "" - -#: extensions/GenesisAdmin.php:232 -msgid "" -"Flushes the posts loop cache on post updates. See setting above for affected " -"loops." -msgstr "" - -#: extensions/GenesisAdmin.php:238 -msgid "Cache single post / page:" -msgstr "" - -#: extensions/GenesisAdmin.php:239 -msgid "Caches the single post / page loop, pagination is supported." -msgstr "" - -#: extensions/GenesisAdmin.php:245 -msgid "Excluded single pages / posts:" -msgstr "" - -#: extensions/GenesisAdmin.php:246 -msgid "" -"List of pages / posts that should not have the single post / post loop " -"cached. Specify one page / post per line. This area supports regular " -"expressions." -msgstr "" - -#: extensions/GenesisAdmin.php:252 -msgid "Cache comments:" -msgstr "" - -#: extensions/GenesisAdmin.php:253 -msgid "Caches the comments loop, pagination is supported." -msgstr "" - -#: extensions/GenesisAdmin.php:259 -msgid "Cache pings:" -msgstr "" - -#: extensions/GenesisAdmin.php:260 -msgid "Caches the ping loop, pagination is supported. One per line." -msgstr "" - -#: extensions/GenesisAdmin.php:266 -msgid "Cache sidebar:" -msgstr "" - -#: extensions/GenesisAdmin.php:267 -msgid "Caches sidebar loop, the widget area." -msgstr "" - -#: extensions/GenesisAdmin.php:273 -msgid "Exclude pages:" -msgstr "" - -#: extensions/GenesisAdmin.php:274 -msgid "" -"List of pages that should not have sidebar cached. Specify one page / post " -"per line. This area supports regular expressions." -msgstr "" - -#: extensions/GenesisAdmin.php:280 extensions/GenesisAdmin.php:287 -msgid "Cache footer:" -msgstr "" - -#: extensions/GenesisAdmin.php:281 -msgid "Caches footer loop." -msgstr "" - -#: extensions/GenesisAdmin.php:288 -msgid "Caches wp_footer loop." -msgstr "" - -#: extensions/GenesisAdmin.php:293 -msgid "Disable fragment cache:" -msgstr "" - -#: extensions/GenesisAdmin.php:299 -msgid "Select hooks:" -msgstr "" - -#: extensions/GenesisAdmin.php:300 -msgid "" -"Select hooks from the list that should not be cached if user belongs to any " -"of the roles selected below." -msgstr "" - -#: extensions/GenesisAdmin.php:305 -msgid "Select roles:" -msgstr "" - -#: extensions/GenesisAdmin.php:306 -msgid "Select user roles that should not use the fragment cache." -msgstr "" - -#: extensions/WordPressSEOAdmin.php:49 -#, php-format -msgid "The WordPress SEO extension is currently %s " -msgstr "" - -#: extensions/WordPressSEOAdmin.php:66 -msgid "" -"Configures W3 Total Cache to comply with WordPress SEO requirements " -"automatically." -msgstr "" - -#: inc/define.php:284 -msgid "Stop Previewing" -msgstr "" - -#: inc/define.php:284 -msgid "Preview" -msgstr "" - -#: inc/define.php:1560 -#, php-format -msgid "%dh" -msgstr "" - -#: inc/define.php:1562 -#, php-format -msgid "%dm" -msgstr "" - -#: inc/define.php:1564 -#, php-format -msgid "%ds" -msgstr "" - -#: inc/define.php:1566 inc/define.php:1569 -#, php-format -msgid "%dms" -msgstr "" - -#: inc/functions/activation.php:57 -#, php-format -msgid "%s
    then %s." -msgstr "" - -#: inc/functions/activation.php:70 +#: DbCache_Environment.php:122 #, php-format msgid "" -"%s could not be read, please run following command:
    \n" -" chmod 777 %s" +"The Database add-in file db.php is not a W3 Total Cache drop-in.\n" +" Remove it or disable Database Caching. %s" msgstr "" -#: inc/functions/activation.php:74 +#: DbCache_Environment.php:124 +msgid "Remove it for me" +msgstr "" + +#: Cdn_RackSpaceCloudFiles_Popup_View_Containers.php:24 +msgid "Select container to use" +msgstr "" + +#: Extension_NewRelic_Page_View_Apm.php:24 +msgid "Application Settings" +msgstr "" + +#: Extension_NewRelic_Page_View_Apm.php:95 #, php-format msgid "" -"%s could not be read, open_basedir " -"restriction in effect,\n" -" please check your php.ini settings:
    open_basedir = \"%s\"" +"Application settings could not be retrieved. New Relic may not be properly " +"configured, review the settings." msgstr "" -#: inc/functions/activation.php:96 -#, php-format -msgid "

  • chmod 777 %s
  • " +#: Extension_NewRelic_Page_View_Apm.php:97 +msgid "Application settings are only visible when New Relic is enabled" msgstr "" -#: inc/functions/activation.php:103 +#: Extension_NewRelic_Page_View_Apm.php:103 +msgid "Dashboard Settings" +msgstr "" + +#: Extension_NewRelic_Page_View_Apm.php:114 +msgid "" +"How many minutes data retrieved from New Relic should be stored. Minimum is " +"1 minute." +msgstr "" + +#: Extension_NewRelic_Page_View_Apm.php:131 +msgid "" +"Use RUM only for following " +"user roles" +msgstr "" + +#: Extension_NewRelic_Page_View_Apm.php:134 +msgid "" +"Select user roles that RUM " +"should be enabled for:" +msgstr "" + +#: Extension_NewRelic_Page_View_Apm.php:153 +msgid "" +"Include RUM in compressed " +"or cached pages:" +msgstr "" + +#: Extension_NewRelic_Page_View_Apm.php:164 +msgid "" +"This enables inclusion of " +"RUM when using Page Cache together with Browser Cache gzip or when " +"using Page Cache with Disc: Enhanced" +msgstr "" + +#: Extension_NewRelic_Page_View_Apm.php:171 +msgid "" +"Use PHP function to " +"set application name:" +msgstr "" + +#: Extension_NewRelic_Page_View_Apm.php:177 +msgid "" +"This is required when using New Relic on a network install to set the proper " +"names for sites." +msgstr "" + +#: Extension_NewRelic_Page_View_Apm.php:183 +msgid "" +"Enable this to dynamically set proper application name. (See New Relic Per-directory " +"settings for other methods." +msgstr "" + +#: Extension_NewRelic_Page_View_Apm.php:191 +msgid "Enable XMIT:" +msgstr "" + +#: lib/NetDNA/NetDNAPresentation.php:64 +msgid "Pending" +msgstr "" + +#: lib/NetDNA/NetDNAPresentation.php:66 +msgid "Active" +msgstr "" + +#: lib/NetDNA/NetDNAPresentation.php:68 +msgid "Cancelled" +msgstr "" + +#: lib/NetDNA/NetDNAPresentation.php:70 +msgid "Suspended" +msgstr "" + +#: lib/NetDNA/NetDNAPresentation.php:72 +msgid "Fraud" +msgstr "" + +#: lib/NetDNA/NetDNAPresentation.php:74 +msgid "unknown" +msgstr "" + +#: inc/lightbox/upgrade.php:19 inc/lightbox/upgrade.php:25 +msgid "Subscribe to Go Faster Now" +msgstr "" + +#: inc/lightbox/minify_recommendations.php:11 +msgid "" +"To get started with minify, we've identified the following external CSS and " +"JS objects in the" +msgstr "" + +#: inc/lightbox/minify_recommendations.php:17 +msgid "" +"theme. Select \"add\" the files you wish to minify, then click \"apply & " +"close\" to save the settings." +msgstr "" + +#: inc/lightbox/minify_recommendations.php:29 +#: inc/lightbox/minify_recommendations.php:83 +msgid "Add:" +msgstr "" + +#: inc/lightbox/minify_recommendations.php:31 +#: inc/lightbox/minify_recommendations.php:85 inc/options/minify.php:272 +#: inc/options/minify.php:405 +msgid "File URI:" +msgstr "" + +#: inc/lightbox/minify_recommendations.php:32 +#: inc/lightbox/minify_recommendations.php:86 inc/options/minify.php:273 +#: inc/options/minify.php:406 +msgid "Template:" +msgstr "" + +#: inc/lightbox/minify_recommendations.php:33 inc/options/minify.php:274 +msgid "Embed Location:" +msgstr "" + +#: inc/lightbox/minify_recommendations.php:53 inc/options/minify.php:292 +msgid "Embed in <head>" +msgstr "" + +#: inc/lightbox/minify_recommendations.php:54 inc/options/minify.php:293 +msgid "Embed after <body>" +msgstr "" + +#: inc/lightbox/minify_recommendations.php:55 inc/options/minify.php:294 +msgid "Embed before </body>" +msgstr "" + +#: inc/lightbox/minify_recommendations.php:59 +#: inc/lightbox/minify_recommendations.php:104 inc/options/minify.php:299 +#: inc/options/minify.php:424 +msgid "Verify URI" +msgstr "" + +#: inc/lightbox/minify_recommendations.php:68 +#: inc/lightbox/minify_recommendations.php:113 +msgid "Check / Uncheck All" +msgstr "" + +#: inc/lightbox/minify_recommendations.php:71 +msgid "No files found." +msgstr "" + +#: inc/lightbox/minify_recommendations.php:74 +msgid "Cascading Style Sheets:" +msgstr "" + +#: inc/lightbox/minify_recommendations.php:122 +msgid "Apply & close" +msgstr "" + +#: inc/lightbox/minify_recommendations.php:126 +msgid "Notes" +msgstr "" + +#: inc/lightbox/minify_recommendations.php:129 +msgid "" +"Typically minification of advertiser code, analytics/statistics or any other " +"types of tracking code is not recommended." +msgstr "" + +#: inc/lightbox/minify_recommendations.php:130 +msgid "" +"Scripts that were not already detected above may require professional " +"consultation to implement." +msgstr "" + +#: inc/lightbox/support_us.php:42 +msgid "" +"Thank you! You've been using W3 Total Cache for seven days or so! Please " +"support us:" +msgstr "" + +#: inc/lightbox/support_us.php:50 +msgid "Login & Rate Us" +msgstr "" + +#: inc/lightbox/support_us.php:61 +msgid "Tell Your Friends" +msgstr "" + +#: inc/lightbox/support_us.php:75 +msgid "Yes, sign me up." +msgstr "" + +#: inc/lightbox/support_us.php:82 #, php-format msgid "" -"%s could not be created, please run following command:
    " -"%s" -msgstr "" - -#: inc/functions/activation.php:107 -#, php-format -msgid "" -"%s could not be created, open_basedir\n" -" restriction in effect, please check your php." -"ini settings:
    \n" -" open_basedir = \"%s\"" -msgstr "" - -#: inc/functions/activation.php:286 -msgid "FTP credentials don't allow to delete folder " -msgstr "" - -#: inc/functions/activation.php:314 -msgid "FTP credentials don't allow to chmod " -msgstr "" - -#: inc/functions/activation.php:346 -msgid "FTP credentials don't allow to delete " -msgstr "" - -#: inc/functions/activation.php:464 -#, php-format -msgid "" -"Create the %s file and paste the following text into it:\n" -"
    " -msgstr "" - -#: inc/functions/activation.php:495 -msgid "Technical info" -msgstr "" - -#: inc/functions/activation.php:508 -msgid "Execute next commands in a shell:" -msgstr "" - -#: inc/functions/activation.php:776 -#, php-format -msgid "" -"W3 Total Cache Error:\n" -"\t\t Files and directories could not be automatically\n" -"\t\t deleted.\n" -"\t\t \n" -"\t\t \n" -"\t\t \n" -"\t\t \n" -"\t\t \n" -"\t\t \n" -"\t\t \n" -"\t\t \n" -"\t\t
    Please execute commands manually\n" -"\t\t\t\t\t\t\t\t%s\n" -"\t\t
    or use FTP form to allow\n" -"\t\t W3 Total Cache make it " -"automatically.\n" -"\t\t \n" -"\t\t\t\t\t\t\t\t%s\n" -"\t\t
    " -msgstr "" - -#: inc/functions/activation.php:794 -msgid "View required changes" -msgstr "" - -#: inc/functions/activation.php:795 -msgid "Update via FTP" -msgstr "" - -#: inc/functions/admin_ui.php:73 inc/functions/widgets.php:61 -#: inc/options/support/form.php:26 -#: inc/options/support/payment.php:21 -msgid "Cancel" -msgstr "" - -#: inc/functions/admin_ui.php:128 -msgid "Take a minute to update, here's why:" -msgstr "" - -#: inc/functions/admin_ui.php:224 lib/W3/UI/PluginView.php:494 -msgid "Click to toggle" -msgstr "" - -#: inc/functions/extensions.php:255 -#, php-format -msgid "" -"Your site meets the criteria for the %s extension for W3 Total Cache. Click here to activate it. %s" -msgstr "" - -#: inc/functions/extensions.php:258 lib/W3/Plugin/NotificationsAdmin.php:97 -#: lib/W3/Plugin/TotalCacheAdmin.php:676 lib/W3/Plugin/TotalCacheAdmin.php:702 -#: lib/W3/UI/CdnNotes.php:27 lib/W3/UI/CdnNotes.php:34 -#: lib/W3/UI/CdnNotes.php:65 lib/W3/UI/PluginView.php:193 -#: lib/W3/UI/PluginView.php:200 lib/W3/UI/PluginView.php:217 -#: lib/W3/UI/PluginView.php:235 lib/W3/UI/PluginView.php:243 -#: lib/W3/UI/PluginView.php:388 -msgid "Hide this message" -msgstr "" - -#: inc/functions/rule.php:333 -#, php-format -msgid "" -"Edit file %s\n" -" and replace all lines between and " -"including %s and\n" -" %s markers with:" -msgstr "" - -#: inc/functions/rule.php:339 -#, php-format -msgid "" -"Edit file %s and add the following rules\n" -" above the WordPress directives:" -msgstr "" - -#: inc/functions/rule.php:383 -#, php-format -msgid "" -"Edit file %s and remove all lines between and including " -"%s\n" -" and %s markers." -msgstr "" - -#: inc/functions/themes.php:28 -msgid "All Templates" -msgstr "" - -#: inc/functions/widgets.php:31 -msgid "View all" -msgstr "" - -#: inc/functions/widgets.php:65 -msgid "Configure" -msgstr "" - -#: inc/functions/widgets.php:83 -msgid "Submit" -msgstr "" - -#: inc/lightbox/cdn_s3_bucket_location.php:14 inc/options/cdn/s3.php:26 -msgid "Create bucket" -msgstr "" - -#: inc/lightbox/cdn_s3_bucket_location.php:18 inc/lightbox/self_test.php:320 -msgid "Close" +"Please review the latest terms of use and " +"privacy policy, and accept them." msgstr "" #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:2 #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:30 -#: inc/widget/maxcdn_signup.php:43 inc/widget/netdna_signup.php:15 -#: inc/widget/netdna_signup.php:45 msgid "Create Pull Zone" msgstr "" #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:8 -#: inc/options/support/form/bug_report.php:13 -#: inc/options/support/form/email_support.php:13 -#: inc/options/support/form/linux_config.php:13 -#: inc/options/support/form/new_feature.php:13 -#: inc/options/support/form/phone_support.php:13 -#: inc/options/support/form/plugin_config.php:13 -#: inc/options/support/form/theme_config.php:13 msgid "Name:" msgstr "" @@ -655,962 +5122,614 @@ msgstr "" msgid "Something that describes your zone. Length: 1-255 chars" msgstr "" -#: inc/lightbox/minify_recommendations.php:5 +#: inc/lightbox/self_test.php:8 +msgid "Compatibility Check" +msgstr "" + +#: inc/lightbox/self_test.php:14 msgid "" -"To get started with minify, we've identified the following external CSS and " -"JS objects in the" +"Installed/Ok/Yes/True: " +"Functionality will work properly." msgstr "" -#: inc/lightbox/minify_recommendations.php:11 +#: inc/lightbox/self_test.php:15 msgid "" -"theme. Select \"add\" the files you wish to minify, then click \"apply & " -"close\" to save the settings." -msgstr "" - -#: inc/lightbox/minify_recommendations.php:23 -#: inc/lightbox/minify_recommendations.php:77 -msgid "Add:" -msgstr "" - -#: inc/lightbox/minify_recommendations.php:25 -#: inc/lightbox/minify_recommendations.php:79 inc/options/minify.php:234 -#: inc/options/minify.php:359 -msgid "File URI:" -msgstr "" - -#: inc/lightbox/minify_recommendations.php:26 -#: inc/lightbox/minify_recommendations.php:80 inc/options/minify.php:235 -#: inc/options/minify.php:360 -msgid "Template:" -msgstr "" - -#: inc/lightbox/minify_recommendations.php:27 inc/options/minify.php:236 -msgid "Embed Location:" -msgstr "" - -#: inc/lightbox/minify_recommendations.php:47 inc/options/minify.php:254 -msgid "Embed in <head>" -msgstr "" - -#: inc/lightbox/minify_recommendations.php:48 inc/options/minify.php:255 -msgid "Embed after <body>" -msgstr "" - -#: inc/lightbox/minify_recommendations.php:49 inc/options/minify.php:256 -msgid "Embed before </body>" -msgstr "" - -#: inc/lightbox/minify_recommendations.php:53 -#: inc/lightbox/minify_recommendations.php:98 inc/options/minify.php:261 -#: inc/options/minify.php:378 -msgid "Verify URI" -msgstr "" - -#: inc/lightbox/minify_recommendations.php:62 -#: inc/lightbox/minify_recommendations.php:107 -msgid "Check / Uncheck All" -msgstr "" - -#: inc/lightbox/minify_recommendations.php:65 -msgid "No files found." -msgstr "" - -#: inc/lightbox/minify_recommendations.php:68 -msgid "Cascading Style Sheets:" -msgstr "" - -#: inc/lightbox/minify_recommendations.php:116 -msgid "Apply & close" -msgstr "" - -#: inc/lightbox/minify_recommendations.php:120 -msgid "Notes" -msgstr "" - -#: inc/lightbox/minify_recommendations.php:123 -msgid "" -"Typically minification of advertiser code, analytics/statistics or any other " -"types of tracking code is not recommended." -msgstr "" - -#: inc/lightbox/minify_recommendations.php:124 -msgid "" -"Scripts that were not already detected above may require professional " -"consultation to implement." -msgstr "" - -#: inc/lightbox/self_test.php:10 -msgid "Compatibility Test" -msgstr "" - -#: inc/lightbox/self_test.php:13 -msgid "Legend" +"Not detected/Not " +"installed/Off: May be installed, but cannot be automatically " +"confirmed. Functionality will be limited." msgstr "" #: inc/lightbox/self_test.php:16 -msgid "Installed: Functionality will work properly." -msgstr "" - -#: inc/lightbox/self_test.php:17 msgid "" -"Not detected: May be installed, but cannot be automatically " -"confirmed." +"Not Installed/Error/No/False" +": Plugin or some functions may not work." msgstr "" -#: inc/lightbox/self_test.php:18 -msgid "Ok: Current value is acceptable." -msgstr "" - -#: inc/lightbox/self_test.php:19 -msgid "Yes / No: The value was successful detected." -msgstr "" - -#: inc/lightbox/self_test.php:24 +#: inc/lightbox/self_test.php:21 msgid "Server Modules & Resources:" msgstr "" -#: inc/lightbox/self_test.php:28 +#: inc/lightbox/self_test.php:25 msgid "Plugin Version:" msgstr "" -#: inc/lightbox/self_test.php:32 +#: inc/lightbox/self_test.php:29 msgid "PHP Version:" msgstr "" -#: inc/lightbox/self_test.php:60 +#: inc/lightbox/self_test.php:57 msgid "" -"(required for Self-hosted (FTP) CDN support)" +"(required for Self-hosted (" +"FTP) CDN " +"support)" msgstr "" -#: inc/lightbox/self_test.php:64 +#: inc/lightbox/self_test.php:61 msgid "Multibyte String support:" msgstr "" -#: inc/lightbox/self_test.php:66 inc/lightbox/self_test.php:76 -#: inc/lightbox/self_test.php:86 inc/lightbox/self_test.php:111 -#: inc/lightbox/self_test.php:120 inc/lightbox/self_test.php:206 +#: inc/lightbox/self_test.php:63 inc/lightbox/self_test.php:73 +#: inc/lightbox/self_test.php:83 inc/lightbox/self_test.php:93 +#: inc/lightbox/self_test.php:120 inc/lightbox/self_test.php:129 +#: inc/lightbox/self_test.php:138 inc/lightbox/self_test.php:147 +#: inc/lightbox/self_test.php:208 inc/lightbox/self_test.php:236 msgid "Installed" msgstr "" -#: inc/lightbox/self_test.php:68 inc/lightbox/self_test.php:78 -#: inc/lightbox/self_test.php:88 inc/lightbox/self_test.php:104 +#: inc/lightbox/self_test.php:65 inc/lightbox/self_test.php:75 +#: inc/lightbox/self_test.php:85 inc/lightbox/self_test.php:95 #: inc/lightbox/self_test.php:113 inc/lightbox/self_test.php:122 -#: inc/lightbox/self_test.php:134 inc/lightbox/self_test.php:146 -#: inc/lightbox/self_test.php:208 +#: inc/lightbox/self_test.php:131 inc/lightbox/self_test.php:140 +#: inc/lightbox/self_test.php:149 inc/lightbox/self_test.php:161 +#: inc/lightbox/self_test.php:173 inc/lightbox/self_test.php:210 +#: inc/lightbox/self_test.php:238 msgid "Not installed" msgstr "" -#: inc/lightbox/self_test.php:70 +#: inc/lightbox/self_test.php:67 msgid "(required for Rackspace Cloud Files support)" msgstr "" -#: inc/lightbox/self_test.php:74 +#: inc/lightbox/self_test.php:71 msgid "cURL extension:" msgstr "" -#: inc/lightbox/self_test.php:80 +#: inc/lightbox/self_test.php:77 msgid "" "(required for Amazon S3, Amazon CloudFront, Rackspace CloudFiles support)" msgstr "" -#: inc/lightbox/self_test.php:90 -msgid "(required for compression support)" +#: inc/lightbox/self_test.php:87 +msgid "(required for gzip compression support)" msgstr "" -#: inc/lightbox/self_test.php:96 +#: inc/lightbox/self_test.php:97 +msgid "(required for brotli compression support)" +msgstr "" + +#: inc/lightbox/self_test.php:103 +msgid "Installed (OPCache)" +msgstr "" + +#: inc/lightbox/self_test.php:105 msgid "Installed (APC)" msgstr "" -#: inc/lightbox/self_test.php:98 +#: inc/lightbox/self_test.php:107 msgid "Installed (eAccelerator)" msgstr "" -#: inc/lightbox/self_test.php:100 +#: inc/lightbox/self_test.php:109 msgid "Installed (XCache)" msgstr "" -#: inc/lightbox/self_test.php:102 +#: inc/lightbox/self_test.php:111 msgid "PHP6" msgstr "" -#: inc/lightbox/self_test.php:109 +#: inc/lightbox/self_test.php:118 +msgid "Memcached extension:" +msgstr "" + +#: inc/lightbox/self_test.php:127 msgid "Memcache extension:" msgstr "" -#: inc/lightbox/self_test.php:118 +#: inc/lightbox/self_test.php:136 +msgid "Redis extension:" +msgstr "" + +#: inc/lightbox/self_test.php:145 msgid "HTML Tidy extension:" msgstr "" -#: inc/lightbox/self_test.php:124 +#: inc/lightbox/self_test.php:151 msgid "(required for HTML Tidy minifier support)" msgstr "" -#: inc/lightbox/self_test.php:128 +#: inc/lightbox/self_test.php:155 msgid "Mime type detection:" msgstr "" -#: inc/lightbox/self_test.php:130 +#: inc/lightbox/self_test.php:157 msgid "Installed (Fileinfo)" msgstr "" -#: inc/lightbox/self_test.php:132 +#: inc/lightbox/self_test.php:159 msgid "Installed (mime_content_type)" msgstr "" -#: inc/lightbox/self_test.php:136 +#: inc/lightbox/self_test.php:163 msgid "" "(required for CDN " "support)" msgstr "" -#: inc/lightbox/self_test.php:140 +#: inc/lightbox/self_test.php:167 msgid "Hash function:" msgstr "" -#: inc/lightbox/self_test.php:142 +#: inc/lightbox/self_test.php:169 msgid "Installed (hash)" msgstr "" -#: inc/lightbox/self_test.php:144 +#: inc/lightbox/self_test.php:171 msgid "Installed (mhash)" msgstr "" -#: inc/lightbox/self_test.php:148 +#: inc/lightbox/self_test.php:175 msgid "" -"(required for NetDNA / MaxCDN CDN purge support)" -msgstr "" - -#: inc/lightbox/self_test.php:152 -msgid "Safe mode:" -msgstr "" - -#: inc/lightbox/self_test.php:154 inc/lightbox/self_test.php:172 -msgid "On" -msgstr "" - -#: inc/lightbox/self_test.php:156 inc/lightbox/self_test.php:165 -#: inc/lightbox/self_test.php:174 -msgid "Off" -msgstr "" - -#: inc/lightbox/self_test.php:161 -msgid "Open basedir:" -msgstr "" - -#: inc/lightbox/self_test.php:163 -msgid "On:" -msgstr "" - -#: inc/lightbox/self_test.php:170 -msgid "zlib output compression:" +"(required for NetDNA / MaxCDN " +"CDN purge support)" msgstr "" #: inc/lightbox/self_test.php:179 -msgid "set_time_limit:" +msgid "Open basedir:" msgstr "" #: inc/lightbox/self_test.php:181 +msgid "On:" +msgstr "" + +#: inc/lightbox/self_test.php:183 inc/lightbox/self_test.php:192 +msgid "Off" +msgstr "" + +#: inc/lightbox/self_test.php:188 +msgid "zlib output compression:" +msgstr "" + +#: inc/lightbox/self_test.php:190 +msgid "On" +msgstr "" + +#: inc/lightbox/self_test.php:197 +msgid "set_time_limit:" +msgstr "" + +#: inc/lightbox/self_test.php:199 msgid "Available" msgstr "" -#: inc/lightbox/self_test.php:183 +#: inc/lightbox/self_test.php:201 msgid "Not available" msgstr "" -#: inc/lightbox/self_test.php:211 +#: inc/lightbox/self_test.php:212 +msgid "" +"(required for Self-hosted (" +"FTP) CDN " +"SFTP support)" +msgstr "" + +#: inc/lightbox/self_test.php:241 msgid "Not detected" msgstr "" -#: ../inc/lightbox/self_test.php:202 -msgid "(required for Self-hosted (FTP) CDN SFTP support)" -msgstr "" - -#: inc/lightbox/self_test.php:213 +#: inc/lightbox/self_test.php:243 msgid "(required for disk enhanced Page Cache and Browser Cache)" msgstr "" -#: inc/lightbox/self_test.php:220 +#: inc/lightbox/self_test.php:250 msgid "Additional Server Modules" msgstr "" -#: inc/lightbox/self_test.php:231 +#: inc/lightbox/self_test.php:261 msgid "WordPress Resources" msgstr "" -#: inc/lightbox/self_test.php:246 inc/lightbox/self_test.php:263 -#: inc/lightbox/self_test.php:277 lib/W3/Cdn/Mirror/Akamai.php:112 -#: lib/W3/Cdn/Mirror/Cotendo.php:114 lib/W3/Cdn/Mirror/Edgecast.php:66 -#: lib/W3/Cdn/Mirror/Netdna.php:234 -msgid "OK" -msgstr "" - -#: inc/lightbox/self_test.php:248 inc/lightbox/self_test.php:254 -#: inc/lightbox/self_test.php:265 inc/lightbox/self_test.php:275 +#: inc/lightbox/self_test.php:278 inc/lightbox/self_test.php:284 +#: inc/lightbox/self_test.php:295 inc/lightbox/self_test.php:305 msgid "Not write-able" msgstr "" -#: inc/lightbox/self_test.php:252 +#: inc/lightbox/self_test.php:282 msgid "Write-able" msgstr "" -#: inc/lightbox/self_test.php:273 +#: inc/lightbox/self_test.php:303 msgid "Error:" msgstr "" -#: inc/lightbox/self_test.php:282 +#: inc/lightbox/self_test.php:312 msgid "Fancy permalinks:" msgstr "" -#: inc/lightbox/self_test.php:286 inc/lightbox/self_test.php:304 -#: inc/options/minify.php:58 +#: inc/lightbox/self_test.php:316 inc/lightbox/self_test.php:336 +#: inc/options/minify.php:66 msgid "Disabled" msgstr "" -#: inc/lightbox/self_test.php:291 +#: inc/lightbox/self_test.php:321 msgid "WP_CACHE define:" msgstr "" -#: inc/lightbox/self_test.php:293 -msgid "Defined" +#: inc/lightbox/self_test.php:323 +msgid "Defined (true)" msgstr "" -#: inc/lightbox/self_test.php:295 +#: inc/lightbox/self_test.php:325 +msgid "Defined (false)" +msgstr "" + +#: inc/lightbox/self_test.php:327 msgid "Not defined" msgstr "" -#: inc/lightbox/self_test.php:300 +#: inc/lightbox/self_test.php:332 msgid "URL rewrite:" msgstr "" -#: inc/lightbox/self_test.php:302 +#: inc/lightbox/self_test.php:334 msgid "Enabled" msgstr "" -#: inc/lightbox/self_test.php:309 +#: inc/lightbox/self_test.php:341 msgid "Network mode:" msgstr "" -#: inc/lightbox/self_test.php:311 inc/options/support/form/bug_report.php:87 +#: inc/lightbox/self_test.php:343 msgid "Yes" msgstr "" -#: inc/lightbox/self_test.php:313 +#: inc/lightbox/self_test.php:345 msgid "No" msgstr "" -#: inc/lightbox/support_us.php:34 -msgid "Support Us, It's Free!" +#: inc/lightbox/self_test.php:352 +msgid "Close" msgstr "" -#: inc/lightbox/support_us.php:36 +#: inc/options/referrer.php:18 +msgid "Referrer group support is always enabled" +msgstr "" + +#: inc/options/referrer.php:23 inc/options/common/header.php:153 +msgid "Manage Referrer Groups" +msgstr "" + +#: inc/options/referrer.php:25 msgid "" -"We noticed you've been using W3 Total cache for at least 30 days, please " -"help us improve WordPress:" +"of referrers by specifying names in the referrers field. Assign a set of " +"referrers to use a specific theme, redirect them to another domain, create " +"referrer groups to ensure that a unique cache is created for each referrer " +"group. Drag and drop groups into order (if needed) to determine their " +"priority (top -> down)." msgstr "" -#: inc/lightbox/support_us.php:55 -msgid "Tell Your Friends" +#: inc/options/referrer.php:37 +msgid "Delete group" msgstr "" -#: inc/lightbox/support_us.php:63 -msgid "Login & Rate Us" +#: inc/options/referrer.php:51 inc/options/minify.php:253 +#: inc/options/minify.php:386 inc/options/mobile.php:61 +msgid "Theme:" msgstr "" -#: inc/lightbox/support_us.php:70 -msgid "Yes, sign me up." +#: inc/options/referrer.php:55 +msgid "-- Pass-through --" msgstr "" -#: inc/lightbox/upgrade.php:30 -msgid "Subscribe to Go Faster Now" -msgstr "" - -#: inc/options/about.php:5 +#: inc/options/referrer.php:60 msgid "" -"User experience is an important aspect of every web site and all web sites " -"can benefit from effective caching and file size reduction. We have applied " -"web site optimization methods typically used with high traffic sites and " -"simplified their implementation. Coupling these methods either memcached and/or opcode " -"caching and the CDN of " -"your choosing to provide the following features and benefits:" +"Assign this group of referrers to a specific theme. Selecting \"Pass-" +"through\" allows any plugin(s) (e.g. referrer plugins) to properly handle " +"requests for these referrers. If the \"redirect users to\" field is not " +"empty, this setting is ignored." msgstr "" -#: inc/options/about.php:8 -msgid "Improved Google search engine ranking" +#: inc/options/referrer.php:65 inc/options/mobile.php:79 +msgid "Redirect users to:" msgstr "" -#: inc/options/about.php:9 -msgid "Increased visitor time on site" -msgstr "" - -#: inc/options/about.php:10 -msgid "Optimized progressive render (pages start rendering immediately)" -msgstr "" - -#: inc/options/about.php:11 +#: inc/options/referrer.php:69 msgid "" -"Reduced HTTP " -"Transactions, DNS lookups " -"and reduced document load time" +"A 302 redirect is used to send this group of referrers to another hostname " +"(domain)." msgstr "" -#: inc/options/about.php:12 +#: inc/options/referrer.php:78 msgid "" -"Bandwidth savings via Minify and HTTP compression of HTML, CSS, " -"JavaScript and feeds" +"Specify the referrers for this group. Remember to escape special characters " +"like spaces, dots or dashes with a backslash. Regular expressions are also " +"supported." msgstr "" -#: inc/options/about.php:13 +#: inc/options/referrer.php:85 msgid "" -"Increased web server concurrency and increased scale (easily sustain high " -"traffic spikes)" +"No groups added. All referrers recieve the same page and minify cache " +"results." msgstr "" -#: inc/options/about.php:14 -msgid "" -"Transparent content delivery network (CDN) integration with Media Library, theme files and " -"WordPress core" -msgstr "" - -#: inc/options/about.php:15 -msgid "Caching of pages / posts in memory or on disk or on CDN (mirror only)" -msgstr "" - -#: inc/options/about.php:16 -msgid "" -"Caching of (minified) CSS " -"and JavaScript in memory, on disk or on CDN" -msgstr "" - -#: inc/options/about.php:17 -msgid "Caching of database objects in memory or on disk" -msgstr "" - -#: inc/options/about.php:18 -msgid "Caching of objects in memory or on disk" -msgstr "" - -#: inc/options/about.php:19 -msgid "" -"Caching of feeds (site, categories, tags, comments, search results) in " -"memory or on disk" -msgstr "" - -#: inc/options/about.php:20 -msgid "" -"Caching of search results pages (i.e. URIs with query string variables) in memory or on disk" -msgstr "" - -#: inc/options/about.php:21 -msgid "Minification of posts / pages and feeds" -msgstr "" - -#: inc/options/about.php:22 -msgid "" -"Minification (concatenation and white space removal) of inline, external or " -"3rd party JavaScript / CSS with automated updates" -msgstr "" - -#: inc/options/about.php:23 -msgid "" -"Complete header management including Etags" -msgstr "" - -#: inc/options/about.php:24 -msgid "JavaScript embedding group and location management" -msgstr "" - -#: inc/options/about.php:25 -msgid "" -"Import post attachments directly into the Media Library (and CDN)" -msgstr "" - -#: inc/options/about.php:28 -msgid "" -"Your users have less data to download, you can now serve more visitors at " -"once without upgrading your hardware and you don't have to change how you do " -"anything; just set it and forget it." -msgstr "" - -#: inc/options/about.php:30 -msgid "Who do I thank for all of this?" -msgstr "" - -#: inc/options/about.php:32 -msgid "" -"It's quite difficult to recall all of the innovators that have shared their " -"thoughts, code and experiences in the blogosphere over the years, but here " -"are some names to get you started:" -msgstr "" - -#: inc/options/about.php:49 -msgid "" -"Please reach out to all of these people and support their projects if you're " -"so inclined." -msgstr "" - -#: inc/options/browsercache.php:6 +# php-format +#: inc/options/dbcache.php:12 #, php-format -msgid "Browser caching is currently %s." +msgid "Database caching via %s is currently %s." msgstr "" -#: inc/options/browsercache.php:12 +#: inc/options/dbcache.php:15 +msgid "To rebuild the database cache use the" +msgstr "" + +#: inc/options/dbcache.php:17 inc/options/objectcache.php:22 +#: inc/options/minify.php:27 +msgid "empty cache" +msgstr "" + +#: inc/options/dbcache.php:18 +msgid "operation." +msgstr "" + +#: inc/options/dbcache.php:29 +msgid "" +"Enabling this option is recommended to maintain default WordPress behavior." +msgstr "" + +#: inc/options/dbcache.php:71 #, php-format msgid "" -"%sUpdate media query string%s to make existing file modifications visible to " -"visitors with a primed cache" +"Always ignore the specified pages / directories. Supports regular " +"expressions (See FAQ)." msgstr "" -#: inc/options/browsercache.php:20 inc/options/cdn.php:42 -#: inc/options/common/header.php:81 inc/options/common/header.php:122 -#: inc/options/common/header.php:137 inc/options/common/header.php:153 -#: inc/options/common/header.php:176 inc/options/common/header.php:212 -#: inc/options/dbcache.php:18 inc/options/general.php:18 -#: inc/options/minify.php:36 inc/options/pgcache.php:24 -msgid "General" -msgstr "" - -#: inc/options/browsercache.php:21 -msgid "Specify global browser cache policy." -msgstr "" - -#: inc/options/browsercache.php:29 lib/W3/UI/Settings/BrowserCache.php:14 -#: lib/W3/UI/Settings/BrowserCache.php:24 -#: lib/W3/UI/Settings/BrowserCache.php:32 -msgid "Set Last-Modified header" -msgstr "" - -#: inc/options/browsercache.php:30 inc/options/browsercache.php:129 -#: inc/options/browsercache.php:219 inc/options/browsercache.php:295 -msgid "Set the Last-Modified header to enable 304 Not Modified response." -msgstr "" - -#: inc/options/browsercache.php:39 lib/W3/UI/Settings/BrowserCache.php:15 -#: lib/W3/UI/Settings/BrowserCache.php:25 -#: lib/W3/UI/Settings/BrowserCache.php:33 -msgid "Set expires header" -msgstr "" - -#: inc/options/browsercache.php:40 inc/options/browsercache.php:136 -#: inc/options/browsercache.php:226 inc/options/browsercache.php:302 -msgid "Set the expires header to encourage browser caching of files." -msgstr "" - -#: inc/options/browsercache.php:46 lib/W3/UI/Settings/BrowserCache.php:17 -#: lib/W3/UI/Settings/BrowserCache.php:27 -#: lib/W3/UI/Settings/BrowserCache.php:35 -msgid "Set cache control header" -msgstr "" - -#: inc/options/browsercache.php:47 inc/options/browsercache.php:152 -#: inc/options/browsercache.php:243 inc/options/browsercache.php:318 +#: inc/options/dbcache.php:81 msgid "" -"Set pragma and cache-control headers to encourage browser caching of files." +"Do not cache queries that contain these terms. Any entered prefix (set in wp-" +"config.php) will be replaced with current database prefix (default: wp_). " +"Query stems can be identified using debug mode." msgstr "" -#: inc/options/browsercache.php:54 -msgid "Set entity tag (eTag)" +#: inc/options/dbcache.php:89 +msgid "Do not cache queries that contain these words or regular expressions." msgstr "" -#: inc/options/browsercache.php:55 inc/options/browsercache.php:176 -#: inc/options/browsercache.php:266 inc/options/browsercache.php:342 -msgid "Set the Etag header to encourage browser caching of files." +#: inc/options/dbcache.php:97 +msgid "Disable caching once specified constants defined." msgstr "" -#: inc/options/browsercache.php:61 lib/W3/UI/Settings/BrowserCache.php:20 -#: lib/W3/UI/Settings/BrowserCache.php:30 -#: lib/W3/UI/Settings/BrowserCache.php:38 -msgid "Set W3 Total Cache header" +#: inc/options/cdn.php:15 +msgid "Jump to:" msgstr "" -#: inc/options/browsercache.php:62 inc/options/browsercache.php:182 -#: inc/options/browsercache.php:272 inc/options/browsercache.php:348 -msgid "Set this header to assist in identifying optimized files." +#: inc/options/cdn.php:20 inc/options/pgcache.php:492 +#: inc/options/common/header.php:77 inc/options/common/header.php:93 +msgid "Note(s)" msgstr "" -#: inc/options/browsercache.php:69 lib/W3/UI/Settings/BrowserCache.php:21 -#: lib/W3/UI/Settings/BrowserCache.php:31 -msgid "" -"Enable HTTP (gzip) " -"compression" -msgstr "" - -#: inc/options/browsercache.php:70 inc/options/browsercache.php:188 -#: inc/options/browsercache.php:278 inc/options/browsercache.php:354 -msgid "Reduce the download time for text-based files." -msgstr "" - -#: inc/options/browsercache.php:77 lib/W3/UI/Settings/BrowserCache.php:22 -#: lib/W3/UI/Settings/BrowserCache.php:40 -msgid "Prevent caching of objects after settings change" -msgstr "" - -#: inc/options/browsercache.php:78 inc/options/browsercache.php:194 -#: inc/options/browsercache.php:360 -msgid "" -"Whenever settings are changed, a new query string will be generated and " -"appended to objects allowing the new policy to be applied." -msgstr "" - -#: inc/options/browsercache.php:87 -msgid "" -"Do not add the prevent caching query string to the specified files. Supports " -"regular expressions." -msgstr "" - -#: inc/options/browsercache.php:94 -msgid "Don't set cookies for static files" -msgstr "" - -#: inc/options/browsercache.php:95 inc/options/browsercache.php:200 -#: inc/options/browsercache.php:366 -msgid "Removes Set-Cookie header for responses." -msgstr "" - -#: inc/options/browsercache.php:101 -msgid "" -"Reduce server load by allowing the web server to handle 404 (not found) " -"errors for static files (images etc)." -msgstr "" - -#: inc/options/browsercache.php:110 -msgid "Never process 404 (not found) events for the specified files." -msgstr "" - -#: inc/options/browsercache.php:121 inc/options/common/header.php:177 -msgid "" -"CSS & JS" -msgstr "" - -#: inc/options/browsercache.php:122 -msgid "" -"Specify browser cache policy for Cascading Style Sheets and JavaScript files." -msgstr "" - -#: inc/options/browsercache.php:146 inc/options/browsercache.php:237 -#: inc/options/browsercache.php:312 inc/options/cdn.php:210 -#: inc/options/cdn.php:219 inc/options/dbcache.php:53 -#: inc/options/dbcache.php:61 inc/options/minify.php:436 -#: inc/options/minify.php:445 inc/options/objectcache.php:41 -#: inc/options/objectcache.php:49 inc/options/pgcache.php:111 -#: inc/options/pgcache.php:293 inc/options/pgcache.php:303 -#: inc/options/pgcache.php:310 inc/options/pro/fragmentcache.php:77 -#: inc/options/pro/fragmentcache.php:84 -msgid "seconds" -msgstr "" - -#: inc/options/browsercache.php:165 inc/options/browsercache.php:255 -#: inc/options/browsercache.php:331 -msgid "cache with max-age (\"public, max-age=EXPIRES_SECONDS\")" -msgstr "" - -#: inc/options/browsercache.php:166 -msgid "cache with validation (\"public, must-revalidate, proxy-revalidate\")" -msgstr "" - -#: inc/options/browsercache.php:167 inc/options/browsercache.php:257 -#: inc/options/browsercache.php:333 -msgid "" -"cache with max-age and validation (\"max-age=EXPIRES_SECONDS, public, must-" -"revalidate, proxy-revalidate\")" -msgstr "" - -#: inc/options/browsercache.php:168 inc/options/browsercache.php:258 -#: inc/options/browsercache.php:334 -msgid "cache without proxy (\"private, must-revalidate\")" -msgstr "" - -#: inc/options/browsercache.php:169 -msgid "no-cache (\"max-age=0, private, no-store, no-cache, must-revalidate\")" -msgstr "" - -#: inc/options/browsercache.php:211 -msgid "" -"HTML & XML" -msgstr "" - -#: inc/options/browsercache.php:212 -msgid "" -"Specify browser cache policy for posts, pages, feeds and text-based files." -msgstr "" - -#: inc/options/browsercache.php:256 inc/options/browsercache.php:332 -msgid "cache with validation (\"public, must-revalidate, proxy-revalidate\")" -msgstr "" - -#: inc/options/browsercache.php:259 inc/options/browsercache.php:335 -msgid "no-cache (\"max-age=0, private, no-store, no-cache, must-revalidate\")" -msgstr "" - -#: inc/options/browsercache.php:289 -msgid "Media & Other Files" -msgstr "" - -#: inc/options/browsercache.php:330 -msgid "cache (\"public\")" -msgstr "" - -#: inc/options/cdn.php:6 -#, php-format -msgid "Content Delivery Network support via %1$s is currently %2$s." -msgstr "" - -#: inc/options/cdn.php:26 +#: inc/options/cdn.php:45 msgid "" "Prepare the CDN by:" msgstr "" -#: inc/options/cdn.php:27 +#: inc/options/cdn.php:46 msgid "importing attachments into the Media Library" msgstr "" -#: inc/options/cdn.php:28 +#: inc/options/cdn.php:47 msgid "unsuccessful file transfers" msgstr "" -#: inc/options/cdn.php:28 +#: inc/options/cdn.php:47 msgid "if some objects appear to be missing." msgstr "" -#: inc/options/cdn.php:30 inc/popup/cdn_purge.php:35 inc/widget/maxcdn.php:25 -#: inc/widget/netdna.php:25 -msgid "Purge" -msgstr "" - -#: inc/options/cdn.php:30 +#: inc/options/cdn.php:49 msgid "" "objects from the CDN " "if needed." msgstr "" -#: inc/options/cdn.php:32 +#: inc/options/cdn.php:51 msgid "if the domain name of your site has ever changed." msgstr "" -#: inc/options/cdn.php:36 inc/options/minify.php:29 +#: inc/options/cdn.php:54 inc/options/minify.php:35 msgid "Update media query string" msgstr "" -#: inc/options/cdn.php:36 +#: inc/options/cdn.php:54 msgid "" "to make existing file modifications visible to visitors with a primed cache." msgstr "" -#: inc/options/cdn.php:47 +#: inc/options/cdn.php:70 msgid "" "If checked, all attachments will be hosted with the CDN." msgstr "" -#: inc/options/cdn.php:51 +#: inc/options/cdn.php:72 +msgid "" +"
    To enable that, switch off \"Use single network configuration file for " +"all sites\" option at General settings page and use specific settings for " +"each blog." +msgstr "" + +#: inc/options/cdn.php:79 msgid "Upload attachments" msgstr "" -#: inc/options/cdn.php:58 +#: inc/options/cdn.php:87 msgid "" "If checked, WordPress static core file types specified in the \"wp-includes " -"file types to upload\" field below will be hosted with the CDN." +"file types to upload\" field below will be hosted with the CDN." msgstr "" -#: inc/options/cdn.php:62 +#: inc/options/cdn.php:92 msgid "Upload includes files" msgstr "" -#: inc/options/cdn.php:69 +#: inc/options/cdn.php:100 msgid "" "If checked, all theme file types specified in the \"theme file types to " "upload\" field below will be hosted with the CDN." msgstr "" -#: inc/options/cdn.php:73 +#: inc/options/cdn.php:105 msgid "Upload theme files" msgstr "" -#: inc/options/cdn.php:80 +#: inc/options/cdn.php:113 msgid "" "If checked, minified CSS and JS files " -"will be hosted with the CDN." +"will be hosted with the " +"CDN." msgstr "" -#: inc/options/cdn.php:84 +#: inc/options/cdn.php:118 msgid "Upload minify files" msgstr "" -#: inc/options/cdn.php:92 -#, php-format +#: inc/options/cdn.php:127 msgid "" "If checked, any file names or paths specified in the \"custom file list\" " -"field below will be hosted with the CDN. Supports regular expressions (See FAQ)" +"field below will be hosted with the CDN." msgstr "" -#: inc/options/cdn.php:97 +#: inc/options/cdn.php:134 msgid "Upload custom files" msgstr "" -#: inc/options/cdn.php:105 +#: inc/options/cdn.php:143 msgid "" "If modified files are not always detected and replaced, use this option to " "over-write them." msgstr "" -#: inc/options/cdn.php:112 -msgid "" -"Download attachments hosted elsewhere into your media library and deliver " -"them via CDN." -msgstr "" - -#: inc/options/cdn.php:121 -#, php-format -msgid "" -"Enabling this option allows the CDN to handle requests for unauthenticated pages thereby " -"reducing the traffic load on the origin server(s). Purge policies are set on " -"the Page Cache settings tab." -msgstr "" - -#: inc/options/cdn.php:131 +#: inc/options/cdn.php:152 msgid "" "Adds canonical HTTP " "header to assets files." msgstr "" -#: inc/options/cdn.php:144 inc/options/common/header.php:213 -msgid "Configuration" +#: inc/options/cdn.php:161 +msgid "Configuration: Objects" msgstr "" -#: inc/options/cdn.php:159 inc/options/common/header.php:123 -#: inc/options/common/header.php:141 inc/options/common/header.php:154 -#: inc/options/common/header.php:165 inc/options/common/header.php:214 -#: inc/options/dbcache.php:34 inc/options/minify.php:401 -#: inc/options/objectcache.php:23 inc/options/pgcache.php:232 -#: inc/options/pro/fragmentcache.php:60 -msgid "Advanced" +#: inc/options/cdn.php:190 +msgid "" +"Only purge CDN manually" msgstr "" -#: inc/options/cdn.php:170 +#: inc/options/cdn.php:191 +msgid "" +"Purge CDN only if " +"explicit purge button is clicked." +msgstr "" + +#: inc/options/cdn.php:217 msgid "Select user roles that will use the origin server exclusively:" msgstr "" -#: inc/options/cdn.php:189 -#, php-format -msgid "" -"Always ignore the specified pages / directories. Supports regular expression " -"(See FAQ" -msgstr "" - -#: inc/options/cdn.php:194 +#: inc/options/cdn.php:241 msgid "Automatically upload minify files" msgstr "" -#: inc/options/cdn.php:195 +#: inc/options/cdn.php:242 msgid "" "If CDN is enabled (and " "not using the origin pull method), your minified files will be automatically " "uploaded." msgstr "" -#: inc/options/cdn.php:201 +#: inc/options/cdn.php:260 msgid "Automatically attempt to find and upload changed files." msgstr "" -#: inc/options/cdn.php:211 +#: inc/options/cdn.php:270 msgid "Specify the interval between upload of changed files." msgstr "" -#: inc/options/cdn.php:220 +#: inc/options/cdn.php:279 msgid "The number of seconds to wait before upload attempt." msgstr "" -#: inc/options/cdn.php:229 +#: inc/options/cdn.php:288 msgid "Number of files processed per upload attempt." msgstr "" -#: inc/options/cdn.php:239 +#: inc/options/cdn.php:298 msgid "" "Specify the file types within the WordPress core to host with the CDN." msgstr "" -#: inc/options/cdn.php:248 +#: inc/options/cdn.php:307 msgid "" -"Specify the file types in the active theme to host with the CDN." +"Specify the file types in the active theme to host with the CDN." msgstr "" -#: inc/options/cdn.php:257 +#: inc/options/cdn.php:316 msgid "" "Automatically import files hosted with 3rd parties of these types (if used " "in your posts / pages) to your media library." msgstr "" -#: inc/options/cdn.php:266 +#: inc/options/cdn.php:325 msgid "" "Specify any files outside of theme or other common directories to host with " "the CDN." msgstr "" -#: inc/options/cdn.php:269 +#: inc/options/cdn.php:328 msgid "" "To upload files in blogs.dir for current blog write wp-content/<" "currentblog>/." msgstr "" -#: inc/options/cdn.php:279 +#: inc/options/cdn.php:338 msgid "" "Specify user agents that should not access files hosted with the CDN." msgstr "" -#: inc/options/cdn.php:287 +#: inc/options/cdn.php:346 msgid "" "Specify the path of files that should not use the CDN." msgstr "" -#: inc/options/cdn.php:295 -#, php-format -msgid "Set cookie domain to "%s"" -msgstr "" - -#: inc/options/cdn.php:296 +#: inc/options/cdn.php:355 msgid "" -"If using subdomain for CDN functionality, this setting helps prevent new users from sending " -"cookies in requests to the CDN subdomain." +"If using subdomain for " +"CDN functionality, this setting helps prevent new users from " +"sending cookies in requests to the CDN subdomain." msgstr "" -#: inc/options/cdn.php:307 inc/options/install.php:278 -#: inc/options/minify.php:501 inc/options/mobile.php:87 -#: inc/options/support/form.php:6 -msgid "Note(s):" -msgstr "" - -#: inc/options/cdn.php:312 +#: inc/options/cdn.php:368 msgid "" "You can use placeholders {wp_content_dir}, {plugins_dir}, {uploads_dir} " -"instead of writing folder paths (wp-content, wp-content/plugins, wp-content/" -"uploads)." +"instead of writing folder paths (wp-content, wp-content/plugins, wp-" +"content/uploads)." msgstr "" -#: inc/options/cdn.php:313 +#: inc/options/cdn.php:369 msgid "" "If using Amazon Web Services or Self-Hosted CDN types, enable Settings tab." msgstr "" -#: inc/options/cdn/akamai.php:3 inc/options/cdn/cotendo.php:3 -#: inc/options/cdn/rscf.php:3 -msgid "Username:" -msgstr "" - -#: inc/options/cdn/akamai.php:10 inc/options/cdn/cotendo.php:10 -msgid "Password:" -msgstr "" - -#: inc/options/cdn/akamai.php:17 -msgid "Email notification:" -msgstr "" - -#: inc/options/cdn/akamai.php:22 -msgid "" -"Specify email addresses for completed removal notifications. One email per " -"line." -msgstr "" - -#: inc/options/cdn/akamai.php:26 -msgid "Domain to purge:" -msgstr "" - -#: inc/options/cdn/akamai.php:35 -msgid "Purge action:" -msgstr "" - -#: inc/options/cdn/akamai.php:44 -msgid "SSL support:" -msgstr "" - -#: inc/options/cdn/akamai.php:47 inc/options/cdn/att.php:20 -#: inc/options/cdn/azure.php:29 inc/options/cdn/cf.php:34 -#: inc/options/cdn/cf2.php:34 inc/options/cdn/cotendo.php:27 -#: inc/options/cdn/edgecast.php:20 inc/options/cdn/ftp.php:42 -#: inc/options/cdn/maxcdn.php:71 inc/options/cdn/mirror.php:6 -#: inc/options/cdn/netdna.php:71 inc/options/cdn/rscf.php:39 -#: inc/options/cdn/s3.php:33 -msgid "Auto (determine connection type automatically)" -msgstr "" - -#: inc/options/cdn/akamai.php:48 inc/options/cdn/att.php:21 -#: inc/options/cdn/azure.php:30 inc/options/cdn/cf.php:35 -#: inc/options/cdn/cf2.php:35 inc/options/cdn/cotendo.php:28 -#: inc/options/cdn/edgecast.php:21 inc/options/cdn/ftp.php:43 -#: inc/options/cdn/maxcdn.php:72 inc/options/cdn/mirror.php:7 -#: inc/options/cdn/netdna.php:72 inc/options/cdn/rscf.php:40 -#: inc/options/cdn/s3.php:34 -msgid "Enabled (always use SSL)" -msgstr "" - -#: inc/options/cdn/akamai.php:49 inc/options/cdn/att.php:22 -#: inc/options/cdn/azure.php:31 inc/options/cdn/cf.php:36 -#: inc/options/cdn/cf2.php:36 inc/options/cdn/cotendo.php:29 -#: inc/options/cdn/edgecast.php:22 inc/options/cdn/ftp.php:44 -#: inc/options/cdn/maxcdn.php:73 inc/options/cdn/mirror.php:8 -#: inc/options/cdn/netdna.php:73 inc/options/cdn/rscf.php:41 -#: inc/options/cdn/s3.php:35 -msgid "Disabled (always use HTTP)" -msgstr "" - -#: inc/options/cdn/akamai.php:51 inc/options/cdn/att.php:24 -#: inc/options/cdn/azure.php:33 inc/options/cdn/cf.php:38 -#: inc/options/cdn/cf2.php:38 inc/options/cdn/cotendo.php:31 -#: inc/options/cdn/edgecast.php:24 inc/options/cdn/ftp.php:46 -#: inc/options/cdn/maxcdn.php:75 inc/options/cdn/mirror.php:10 -#: inc/options/cdn/netdna.php:75 inc/options/cdn/rscf.php:43 -#: inc/options/cdn/s3.php:37 -msgid "" -"Some CDN providers may or may not support SSL, contact your vendor for more " -"information." -msgstr "" - -#: inc/options/cdn/ftp.php:67 -msgid "Use default SSH public/private key files" -msgstr "" - -#: inc/options/cdn/ftp.php:68 -msgid "Enable this option if you don't have special public/private key files." -msgstr "" - -#: inc/options/cdn/ftp.php:72 -msgid "SFTP public key:" -msgstr "" - -#: inc/options/cdn/ftp.php:79 -msgid "SFTP private key:" -msgstr "" - -#: inc/options/cdn/akamai.php:55 inc/options/cdn/att.php:28 -#: inc/options/cdn/azure.php:37 inc/options/cdn/cf.php:42 -#: inc/options/cdn/cf2.php:42 inc/options/cdn/cotendo.php:35 -#: inc/options/cdn/edgecast.php:28 inc/options/cdn/ftp.php:50 -#: inc/options/cdn/maxcdn.php:79 inc/options/cdn/mirror.php:14 -#: inc/options/cdn/netdna.php:79 inc/options/cdn/rscf.php:47 -#: inc/options/cdn/s3.php:41 -msgid "Replace site's hostname with:" -msgstr "" - -#: inc/options/cdn/akamai.php:58 inc/options/cdn/att.php:31 -#: inc/options/cdn/cotendo.php:38 inc/options/cdn/edgecast.php:31 -#: inc/options/cdn/maxcdn.php:82 inc/options/cdn/mirror.php:17 -#: inc/options/cdn/netdna.php:82 -msgid "" -"Enter the hostname provided by your CDN provider, this " -"value will replace your site's hostname in the HTML." -msgstr "" - -#: inc/options/cdn/akamai.php:63 -msgid "Test akamai" -msgstr "" - -#: inc/options/cdn/att.php:3 inc/options/cdn/edgecast.php:3 -msgid "Account #:" -msgstr "" - -#: inc/options/cdn/att.php:10 inc/options/cdn/edgecast.php:10 -msgid "Token:" -msgstr "" - -#: inc/options/cdn/att.php:17 inc/options/cdn/azure.php:26 -#: inc/options/cdn/cf.php:31 inc/options/cdn/cf2.php:31 -#: inc/options/cdn/cotendo.php:24 inc/options/cdn/edgecast.php:17 -#: inc/options/cdn/ftp.php:39 inc/options/cdn/mirror.php:3 -#: inc/options/cdn/rscf.php:36 inc/options/cdn/s3.php:30 -msgid "SSL support:" -msgstr "" - -#: inc/options/cdn/azure.php:3 -msgid "Account name:" -msgstr "" - -#: inc/options/cdn/azure.php:10 -msgid "Account key:" -msgstr "" - -#: inc/options/cdn/azure.php:17 inc/options/cdn/rscf.php:26 -msgid "Container:" -msgstr "" - -#: inc/options/cdn/azure.php:21 inc/options/cdn/rscf.php:31 -msgid "Create container" -msgstr "" - -#: inc/options/cdn/azure.php:43 inc/options/cdn/s3.php:47 -msgid "or CNAME:" -msgstr "" - -#: inc/options/cdn/azure.php:49 -msgid "Test Microsoft Azure Storage upload" -msgstr "" - -#: inc/options/cdn/cf.php:4 inc/options/cdn/cf2.php:4 inc/options/cdn/s3.php:4 -msgid "" -"We recommend that you use IAM " -"to create a new policy for AWS services that have limited permissions. A helpful tool: AWS Policy Generator" -msgstr "" - -#: inc/options/cdn/cf.php:8 inc/options/cdn/cf2.php:8 inc/options/cdn/s3.php:8 -msgid "Access key ID:" -msgstr "" - -#: inc/options/cdn/cf.php:15 inc/options/cdn/cf2.php:15 -#: inc/options/cdn/s3.php:15 -msgid "Secret key:" -msgstr "" - -#: inc/options/cdn/cf.php:22 inc/options/cdn/s3.php:22 -msgid "Bucket:" -msgstr "" - -#: inc/options/cdn/cf.php:27 -msgid "Create bucket & distribution" -msgstr "" - -#: inc/options/cdn/cf.php:47 inc/options/cdn/cf2.php:47 -msgid "" -"If you have already added a CNAME to your DNS Zone, enter it here." -msgstr "" - -#: inc/options/cdn/cf.php:52 -msgid "Test S3 upload & CloudFront distribution" -msgstr "" - -#: inc/options/cdn/cf2.php:22 -msgid "Origin:" -msgstr "" - -#: inc/options/cdn/cf2.php:26 -msgid "Create distribution" -msgstr "" - -#: inc/options/cdn/cf2.php:52 -msgid "Test CloudFront distribution" -msgstr "" - -#: inc/options/cdn/common/cnames.php:16 -msgid "(reserved for CSS)" -msgstr "" - -#: inc/options/cdn/common/cnames.php:20 -msgid "(reserved for JS in )" -msgstr "" - -#: inc/options/cdn/common/cnames.php:24 -msgid "(reserved for JS after )" -msgstr "" - -#: inc/options/cdn/common/cnames.php:28 -msgid "(reserved for JS before )" -msgstr "" - -#: inc/options/cdn/common/cnames.php:41 inc/options/minify.php:260 -#: inc/options/minify.php:377 inc/popup/cdn_queue.php:19 -#: inc/popup/cdn_queue.php:28 inc/popup/cdn_queue.php:52 -#: inc/popup/cdn_queue.php:61 inc/popup/cdn_queue.php:82 -#: inc/popup/cdn_queue.php:91 -msgid "Delete" -msgstr "" - -#: inc/options/cdn/common/cnames.php:46 -msgid "Add CNAME" -msgstr "" - -#: inc/options/cdn/cotendo.php:17 -msgid "Zones to purge:" -msgstr "" - -#: inc/options/cdn/cotendo.php:43 -msgid "Test Cotendo" -msgstr "" - -#: inc/options/cdn/edgecast.php:36 -msgid "Test EdgeCast" -msgstr "" - -#: inc/options/cdn/ftp.php:4 -msgid "" -"Use passive FTP mode" -msgstr "" - -#: inc/options/cdn/ftp.php:5 -msgid "" -"Enable this option only if there are connectivity issues, otherwise it's not " -"recommended." -msgstr "" - -#: inc/options/cdn/ftp.php:9 -msgid "FTP hostname:" -msgstr "" - -#: inc/options/cdn/ftp.php:13 -msgid "" -"Specify the server's address, e.g.: \"ftp.domain.com\". Try \"127.0.0.1\" if " -"using a sub-domain on the same server as your site." -msgstr "" - -#: inc/options/cdn/ftp.php:17 -msgid "FTP username:" -msgstr "" - -#: inc/options/cdn/ftp.php:24 -msgid "FTP password:" -msgstr "" - -#: inc/options/cdn/ftp.php:31 -msgid "FTP path:" -msgstr "" - -#: inc/options/cdn/ftp.php:35 -msgid "" -"Specify the directory where files must be uploaded to be accessible in a web " -"browser (the document root)." -msgstr "" - -#: inc/options/cdn/ftp.php:53 -msgid "" -"Enter the hostname or CNAME(s) of your FTP server configured above, these values will replace " -"your site's hostname in the HTML." -msgstr "" - -#: inc/options/cdn/ftp.php:58 -msgid "Test FTP server" -msgstr "" - -#: inc/options/cdn/maxcdn.php:10 inc/options/cdn/netdna.php:10 -msgid "Create account:" -msgstr "" - -#: inc/options/cdn/maxcdn.php:12 inc/widget/maxcdn_signup.php:10 -msgid "Sign Up Now and Save 25%" -msgstr "" - -#: inc/options/cdn/maxcdn.php:14 -msgid "" -"MaxCDN is a service that lets you speed up your site even more with W3 Total " -"Cache. 100% Money Back Guarantee (30 Days)!" -msgstr "" - -#: inc/options/cdn/maxcdn.php:21 inc/options/cdn/netdna.php:21 -msgid "Create pull zone:" -msgstr "" - -#: inc/options/cdn/maxcdn.php:21 inc/options/cdn/netdna.php:21 -msgid "Create new pull zone:" -msgstr "" - -#: inc/options/cdn/maxcdn.php:23 inc/options/cdn/netdna.php:23 -msgid "Create pull zone" -msgstr "" - -#: inc/options/cdn/maxcdn.php:23 inc/options/cdn/netdna.php:23 -msgid "Create new pull zone" -msgstr "" - -#: inc/options/cdn/maxcdn.php:25 inc/options/cdn/netdna.php:25 -msgid "" -"Click the Create Pull Zone button above and create a pull zone manually for " -"this site." -msgstr "" - -#: inc/options/cdn/maxcdn.php:30 inc/options/cdn/netdna.php:30 -msgid "Specify account credentials:" -msgstr "" - -#: inc/options/cdn/maxcdn.php:32 inc/options/cdn/netdna.php:32 -#: inc/widget/maxcdn_signup.php:15 inc/widget/netdna_signup.php:17 -msgid "Authorize" -msgstr "" - -#: inc/options/cdn/maxcdn.php:34 inc/options/cdn/netdna.php:34 -msgid "" -"Click the Authorize button above, log in, paste the key below and save " -"settings." -msgstr "" - -#: inc/options/cdn/maxcdn.php:39 inc/options/cdn/netdna.php:39 -#: inc/widget/maxcdn_signup.php:18 inc/widget/netdna_signup.php:20 -#: lib/W3/UI/PluginView.php:314 lib/W3/UI/PluginView.php:334 -msgid "Authorization key" -msgstr "" - -#: inc/options/cdn/maxcdn.php:43 inc/options/cdn/netdna.php:43 -#: inc/widget/maxcdn_signup.php:24 inc/widget/netdna_signup.php:25 -msgid "Validate" -msgstr "" - -#: inc/options/cdn/maxcdn.php:44 inc/options/cdn/netdna.php:44 -msgid "" -"Consists of alias+key+secret . Example: bluewidgets+asd897asd98a7sd" -"+798a7sd9 . If you use \"Authorize\" its already formatted correctly." -msgstr "" - -#: inc/options/cdn/maxcdn.php:48 inc/options/cdn/netdna.php:48 -msgid "Create zone:" -msgstr "" - -#: inc/options/cdn/maxcdn.php:49 inc/options/cdn/netdna.php:49 -#: inc/widget/maxcdn_signup.php:28 inc/widget/netdna_signup.php:30 -msgid "Create Default Zone" -msgstr "" - -#: inc/options/cdn/maxcdn.php:51 inc/options/cdn/netdna.php:51 -msgid "" -"You have no zone connected with this site. Click button to create a default " -"zone automatically." -msgstr "" - -#: inc/options/cdn/maxcdn.php:55 inc/options/cdn/netdna.php:55 -msgid "Select pull zone:" -msgstr "" - -#: inc/options/cdn/maxcdn.php:61 inc/options/cdn/netdna.php:61 -#: inc/widget/maxcdn_signup.php:37 inc/widget/netdna_signup.php:39 -msgid "Use Zone" -msgstr "" - -#: inc/options/cdn/maxcdn.php:63 inc/options/cdn/netdna.php:63 -#: inc/widget/maxcdn_signup.php:39 inc/widget/netdna_signup.php:41 -msgid "Select the pull zone to use with this site." -msgstr "" - -#: inc/options/cdn/maxcdn.php:68 inc/options/cdn/netdna.php:68 -msgid "SSL support" -msgstr "" - -#: inc/options/cdn/maxcdn.php:87 -msgid "Test MaxCDN" -msgstr "" - -#: inc/options/cdn/mirror.php:22 -msgid "Test Mirror" -msgstr "" - -#: inc/options/cdn/netdna.php:12 -msgid "Create Account" -msgstr "" - -#: inc/options/cdn/netdna.php:14 -msgid "" -"Are you a new customer? Click the Create Account button to receive a " -"discount on a new MaxCDN account." -msgstr "" - -#: inc/options/cdn/netdna.php:87 -msgid "Test NetDNA" -msgstr "" - -#: inc/options/cdn/rscf.php:10 lib/W3/UI/Settings/Monitoring.php:9 -#: lib/W3/UI/Settings/SNS.php:10 -msgid "API key:" -msgstr "" - -#: inc/options/cdn/rscf.php:17 -msgid "Location:" -msgstr "" - -#: inc/options/cdn/rscf.php:50 -msgid "" -"Enter the hostname provided by Rackspace Cloud Files, this value will " -"replace your site's hostname in the HTML." -msgstr "" - -#: inc/options/cdn/rscf.php:55 -msgid "Test Cloud Files upload" -msgstr "" - -#: inc/options/cdn/s3.php:49 -msgid "" -"If you have already added a CNAME to your DNS Zone, enter it here." -msgstr "" - -#: inc/options/cdn/s3.php:54 -msgid "Test S3 upload" -msgstr "" - -#: inc/options/common/header.php:14 -msgid "W3 Total Cache by W3 EDGE ®" -msgstr "" - -#: inc/options/common/header.php:27 inc/options/common/header.php:46 -msgid "" -"The following configuration changes are needed to ensure optimal performance:" -msgstr "" - -#: inc/options/common/header.php:36 -msgid "If permission allow this can be done automatically, by clicking here:" -msgstr "" - -#: inc/options/common/header.php:56 -msgid "" -"If permission allow this can be done using the FTP form below." -msgstr "" - -#: inc/options/common/header.php:82 inc/options/general.php:50 -#: lib/W3/Menus.php:48 lib/W3/Menus.php:49 lib/W3/UI/NewRelicNotes.php:28 -#: lib/W3/UI/Settings/PageCache.php:10 -msgid "Page Cache" -msgstr "" - -#: inc/options/common/header.php:84 inc/options/general.php:185 -#: lib/W3/Menus.php:58 lib/W3/Menus.php:59 -#: lib/W3/UI/Settings/DatabaseCache.php:10 -msgid "Database Cache" -msgstr "" - -#: inc/options/common/header.php:85 lib/W3/Menus.php:63 lib/W3/Menus.php:64 -#: lib/W3/UI/Settings/ObjectCache.php:10 -msgid "Object Cache" -msgstr "" - -#: inc/options/common/header.php:87 lib/W3/Menus.php:70 lib/W3/Menus.php:71 -#: lib/W3/UI/Settings/FragmentCache.php:10 -msgid "Fragment Cache" -msgstr "" - -#: inc/options/common/header.php:90 inc/options/general.php:285 -#: lib/W3/Menus.php:77 lib/W3/Menus.php:78 -msgid "Browser Cache" -msgstr "" - -#: inc/options/common/header.php:91 -msgid "CDN" -msgstr "" - -#: inc/options/common/header.php:92 -msgid "Varnish" -msgstr "" - -#: inc/options/common/header.php:94 -msgid "Amazon SNS" -msgstr "" - -#: inc/options/common/header.php:95 inc/options/general.php:471 -#: lib/W3/Menus.php:97 lib/W3/Menus.php:98 -msgid "Monitoring" -msgstr "" - -#: inc/options/common/header.php:97 inc/options/general.php:561 -msgid "Licensing" -msgstr "" - -#: inc/options/common/header.php:99 inc/options/general.php:582 -msgid "Miscellaneous" -msgstr "" - -#: inc/options/common/header.php:100 -msgid "Debug" -msgstr "" - -#: inc/options/common/header.php:101 inc/options/general.php:699 -msgid "Import / Export Settings" -msgstr "" - -#: inc/options/common/header.php:121 inc/options/common/header.php:136 -#: inc/options/common/header.php:152 inc/options/common/header.php:164 -#: inc/options/common/header.php:175 inc/options/common/header.php:189 -#: inc/options/common/header.php:200 inc/options/common/header.php:211 -msgid "Main Menu" -msgstr "" - -#: inc/options/common/header.php:124 inc/options/pgcache.php:99 -msgid "Cache Preload" -msgstr "" - -#: inc/options/common/header.php:125 -msgid "Purge Policy" -msgstr "" - -#: inc/options/common/header.php:126 inc/options/common/header.php:142 -#: inc/options/common/header.php:215 inc/options/pgcache.php:401 -msgid "Note(s)" -msgstr "" - -#: inc/options/common/header.php:135 inc/options/common/header.php:151 -#: inc/options/common/header.php:163 inc/options/common/header.php:174 -#: inc/options/common/header.php:188 inc/options/common/header.php:199 -msgid "Jump to: " -msgstr "" - -#: inc/options/common/header.php:138 inc/options/common/header.php:178 -#: inc/options/minify.php:74 -msgid "" -"HTML & XML" -msgstr "" - -#: inc/options/common/header.php:139 inc/options/minify.php:130 -msgid "JS" -msgstr "" - -#: inc/options/common/header.php:140 inc/options/minify.php:284 -msgid "CSS" -msgstr "" - -#: inc/options/common/header.php:179 -msgid "Media" -msgstr "" - -#: inc/options/common/header.php:190 inc/options/mobile.php:17 -msgid "Manage User Agent Groups" -msgstr "" - -#: inc/options/common/header.php:201 inc/options/referrer.php:17 -msgid "Manage Referrer Groups" -msgstr "" - -#: inc/options/common/header.php:210 -msgid "Jump to:" -msgstr "" - -#: inc/options/common/help.php:3 -msgid "" -"Request professional support or troubleshoot issues using the common " -"questions below:" -msgstr "" - -#: inc/options/dashboard.php:5 -#, php-format -msgid "" -"The plugin is currently %s in %s%s mode." -msgstr "" - -#: inc/options/dashboard.php:8 -msgid " edge" -msgstr "" - -#: inc/options/dashboard.php:14 -msgid "compatibility check" -msgstr "" - -#: inc/options/dashboard.php:16 -msgid "empty all caches" -msgstr "" - -#: inc/options/dashboard.php:16 -msgid "at once or" -msgstr "" - -#: inc/options/dashboard.php:17 -msgid "empty only the memcached cache(s)" -msgstr "" - -#: inc/options/dashboard.php:17 inc/options/dashboard.php:18 -#: inc/options/dashboard.php:20 inc/options/dashboard.php:22 -#: inc/options/dashboard.php:24 inc/options/dashboard.php:28 -msgid "or" -msgstr "" - -#: inc/options/dashboard.php:18 -msgid "empty only the opcode cache" -msgstr "" - -#: inc/options/dashboard.php:20 -msgid "empty only the APC system cache" -msgstr "" - -#: inc/options/dashboard.php:22 -msgid "empty only the disk cache(s)" -msgstr "" - -#: inc/options/dashboard.php:24 -msgid "purge CDN completely" -msgstr "" - -#: inc/options/dashboard.php:26 -msgid "update Media Query String" -msgstr "" - -#: inc/options/dashboard.php:39 lib/W3/Menus.php:38 lib/W3/Menus.php:39 -msgid "Dashboard" -msgstr "" - -# php-format -#: inc/options/dbcache.php:6 -#, php-format -msgid "Database caching via %s is currently %s." -msgstr "" - -#: inc/options/dbcache.php:9 -msgid "To rebuild the database cache use the" -msgstr "" - -#: inc/options/dbcache.php:11 inc/options/minify.php:21 -#: inc/options/objectcache.php:16 -msgid "empty cache" -msgstr "" - -#: inc/options/dbcache.php:12 -msgid "operation." -msgstr "" - -#: inc/options/dbcache.php:23 -msgid "" -"Enabling this option is recommended to maintain default WordPress behavior." -msgstr "" - -#: inc/options/dbcache.php:42 inc/options/minify.php:425 -#: inc/options/objectcache.php:31 inc/options/pro/fragmentcache.php:68 -msgid "Test" -msgstr "" - -#: inc/options/dbcache.php:44 inc/options/minify.php:427 -#: inc/options/objectcache.php:33 inc/options/pgcache.php:254 -#: inc/options/pro/fragmentcache.php:70 -msgid "" -"Multiple servers may be used and seperated by a comma; e.g. " -"192.168.1.100:11211, domain.com:22122" -msgstr "" - -#: inc/options/dbcache.php:54 inc/options/objectcache.php:42 -#: inc/options/pgcache.php:294 inc/options/pro/fragmentcache.php:78 -msgid "" -"Determines the natural expiration time of unchanged cache items. The higher " -"the value, the larger the cache." -msgstr "" - -#: inc/options/dbcache.php:62 inc/options/minify.php:446 -#: inc/options/objectcache.php:50 inc/options/pgcache.php:304 -#: inc/options/pro/fragmentcache.php:85 -msgid "" -"If caching to disk, specify how frequently expired cache data is removed. " -"For busy sites, a lower value is best." -msgstr "" - -#: inc/options/dbcache.php:71 -#, php-format -msgid "" -"Always ignore the specified pages / directories. Supports regular " -"expressions (See FAQ)." -msgstr "" - -#: inc/options/dbcache.php:80 -msgid "" -"Do not cache queries that contain these terms. Any entered prefix (set in wp-" -"config.php) will be replaced with current database prefix (default: wp_). " -"Query stems can be identified using debug mode." -msgstr "" - -#: inc/options/dbcache.php:88 -msgid "Do not cache queries that contain these words or regular expressions." -msgstr "" - -#: inc/options/edd/buy.php:2 -msgid "upgrade" -msgstr "" - -#: inc/options/edd/buy.php:4 -#, php-format -msgid "Please enter the license key you received after successful checkout %s." -msgstr "" - -#: inc/options/edd/buy.php:7 -msgid "here" -msgstr "" - -#: inc/options/enterprise/dbcluster-config.php:6 -msgid "Database Cluster Configuration File" -msgstr "" - -#: inc/options/enterprise/dbcluster-config.php:15 -msgid "" -"Note: Changes will have immediate effect on your database configuration. If " -"the application stops working creating the settings file, edit or remove " -"this configuration file manually at /wp-content/db-cluster-config." -"php." -msgstr "" - -#: inc/options/enterprise/dbcluster-config.php:23 -msgid "Save configuration file" -msgstr "" - -#: inc/options/extensions.php:11 -#, php-format -msgid "Extension support is always %s" -msgstr "" - -#: inc/options/extensions/list.php:23 inc/options/extensions/list.php:122 -msgid "Bulk Actions" -msgstr "" - -#: inc/options/extensions/list.php:24 inc/options/extensions/list.php:80 -#: inc/options/extensions/list.php:123 -msgid "Activate" -msgstr "" - -#: inc/options/extensions/list.php:25 inc/options/extensions/list.php:73 -#: inc/options/extensions/list.php:124 lib/W3/AdminCompatibility.php:98 -msgid "Deactivate" -msgstr "" - -#: inc/options/extensions/list.php:37 inc/options/extensions/list.php:42 -msgid "Select All" -msgstr "" - -#: inc/options/extensions/list.php:37 inc/options/extensions/list.php:42 -msgid "Extension" -msgstr "" - -#: inc/options/extensions/list.php:37 inc/options/extensions/list.php:42 -msgid "Description" -msgstr "" - -#: inc/options/extensions/list.php:55 -#, php-format -msgid "Select %s" -msgstr "" - -#: inc/options/extensions/list.php:83 -msgid "Disabled: Unsupported" -msgstr "" - -#: inc/options/extensions/list.php:94 -#, php-format -msgid "Requirements: %s" -msgstr "" - -#: inc/options/extensions/list.php:100 -#, php-format -msgid "Version %s" -msgstr "" - -#: inc/options/extensions/list.php:100 -#, php-format -msgid "By %s" -msgstr "" - -#: inc/options/extensions/list.php:100 -msgid "Visit author homepage" -msgstr "" - -#: inc/options/extensions/list.php:100 -msgid "Visit extension site" -msgstr "" - -#: inc/options/extensions/list.php:111 -#, php-format -msgid "Apply the %s settings to the entire network." -msgstr "" - -#: inc/options/extensions/list.php:137 -msgid "Save network settings" -msgstr "" - -#: inc/options/extensions/settings.php:18 -msgid "Save settings" -msgstr "" - -#: inc/options/faq.php:4 -msgid "Table of Contents" -msgstr "" - #: inc/options/general.php:24 -msgid "Toggle all caching types on or off (at once)" -msgstr "" - -#: inc/options/general.php:33 msgid "Disable" msgstr "" -#: inc/options/general.php:34 +#: inc/options/general.php:25 msgid "Deploy" msgstr "" -#: inc/options/general.php:35 lib/W3/UI/PluginView.php:380 -#, php-format -msgid "To preview any changed settings (without deploying): %s" -msgstr "" - -#: inc/options/general.php:39 +#: inc/options/general.php:30 msgid "" "Use preview mode to test configuration scenarios prior to releasing them " "(deploy) on the actual site. Preview mode remains active even after " "deploying settings until the feature is disabled." msgstr "" -#: inc/options/general.php:51 +#: inc/options/general.php:45 msgid "Enable page caching to decrease the response time of the site." msgstr "" -#: inc/options/general.php:58 +#: inc/options/general.php:53 msgid "" "Caching pages will reduce the response time of your site and increase the " "scale of your web server." msgstr "" -#: inc/options/general.php:65 -msgid "Shared Server (disk enhanced is best):" -msgstr "" - -#: inc/options/general.php:66 +#: inc/options/general.php:61 msgid "Disk: Basic" msgstr "" -#: inc/options/general.php:67 +#: inc/options/general.php:65 msgid "Disk: Enhanced" msgstr "" -#: inc/options/general.php:69 inc/options/general.php:127 -#: inc/options/general.php:254 -msgid "Dedicated / Virtual Server:" +#: inc/options/general.php:95 +msgid "Nginx + Memcached" msgstr "" -#: inc/options/general.php:70 inc/options/general.php:128 -#: inc/options/general.php:204 inc/options/general.php:255 -msgid "Opcode: Alternative PHP Cache (APC)" +#: inc/options/general.php:106 +msgid "Shared Server (disk enhanced is best):" msgstr "" -#: inc/options/general.php:71 inc/options/general.php:129 -#: inc/options/general.php:205 inc/options/general.php:256 -msgid "Opcode: eAccelerator" -msgstr "" - -#: inc/options/general.php:72 inc/options/general.php:130 -#: inc/options/general.php:206 inc/options/general.php:257 -msgid "Opcode: XCache" -msgstr "" - -#: inc/options/general.php:73 inc/options/general.php:131 -#: inc/options/general.php:207 inc/options/general.php:258 -msgid "Opcode: WinCache" -msgstr "" - -#: inc/options/general.php:75 inc/options/general.php:133 -#: inc/options/general.php:260 -msgid "Multiple Servers:" -msgstr "" - -#: inc/options/general.php:76 inc/options/general.php:134 -#: inc/options/general.php:210 inc/options/general.php:261 -msgid "Memcached" -msgstr "" - -#: inc/options/general.php:94 inc/options/general.php:181 -#: inc/options/general.php:232 inc/options/general.php:279 -msgid "Empty cache" -msgstr "" - -#: inc/options/general.php:98 inc/options/minify.php:141 -#: inc/options/minify.php:155 inc/options/minify.php:166 lib/W3/Menus.php:53 -#: lib/W3/Menus.php:54 lib/W3/UI/NewRelicNotes.php:30 -#: lib/W3/UI/Settings/Minify.php:10 -msgid "Minify" -msgstr "" - -#: inc/options/general.php:99 -msgid "" -"Reduce load time by decreasing the size and number of CSS and JS files. Automatically remove unncessary data from CSS, JS, feed, page and post HTML." -msgstr "" - -#: inc/options/general.php:107 -msgid "Minify is disabled because CloudFlare minification is enabled." -msgstr "" - -#: inc/options/general.php:109 +#: inc/options/general.php:137 #, php-format msgid "" "Minification can decrease file size of HTML, CSS, JS and feeds respectively " -"by ~10% on average." +"Language\">HTML, " +"CSS, JS and feeds " +"respectively by ~10% on average." msgstr "" -#: inc/options/general.php:115 +#: inc/options/general.php:144 msgid "Auto" msgstr "" -#: inc/options/general.php:116 +#: inc/options/general.php:145 msgid "Manual" msgstr "" -#: inc/options/general.php:117 +#: inc/options/general.php:147 msgid "" "Select manual mode to use fields on the minify settings tab to specify files " "to be minified, otherwise files will be minified automatically." msgstr "" -#: inc/options/general.php:124 -msgid "Shared Server (disk is best):" +#: inc/options/general.php:156 inc/options/general.php:178 +msgid "Minify (default)" msgstr "" -#: inc/options/general.php:125 inc/options/general.php:201 -#: inc/options/general.php:252 -msgid "Disk" -msgstr "" - -#: inc/options/general.php:143 inc/options/general.php:162 -msgid "Default" -msgstr "" - -#: inc/options/general.php:144 +#: inc/options/general.php:159 msgid "HTML Tidy" msgstr "" -#: inc/options/general.php:152 +#: inc/options/general.php:167 msgid "JSMin (default)" msgstr "" -#: inc/options/general.php:153 inc/options/general.php:163 +#: inc/options/general.php:168 +msgid "Google Closure Compiler (Web Service)" +msgstr "" + +#: inc/options/general.php:169 +msgid "Google Closure Compiler (Local Java)" +msgstr "" + +#: inc/options/general.php:170 +msgid "Narcissus" +msgstr "" + +#: inc/options/general.php:171 inc/options/general.php:181 msgid "YUI Compressor" msgstr "" -#: inc/options/general.php:154 -msgid "Closure Compiler" -msgstr "" - -#: inc/options/general.php:164 +#: inc/options/general.php:179 msgid "CSS Tidy" msgstr "" -#: inc/options/general.php:186 +#: inc/options/general.php:180 +msgid "YUI Compressor (PHP)" +msgstr "" + +#: inc/options/general.php:206 msgid "Enable database caching to reduce post, page and feed creation time." msgstr "" -#: inc/options/general.php:193 +#: inc/options/general.php:214 msgid "" "Caching database objects decreases the response time of your site. Best used " "if object caching is not possible." msgstr "" -#: inc/options/general.php:237 +#: inc/options/general.php:241 msgid "" "Enable object caching to further reduce execution time for common operations." msgstr "" -#: inc/options/general.php:244 +#: inc/options/general.php:249 msgid "" "Object caching greatly increases performance for highly dynamic sites that " -"use the Object Cache API." +"use the Object Cache " +"API." msgstr "" -#: inc/options/general.php:251 -msgid "Shared Server:" -msgstr "" - -#: inc/options/general.php:286 +#: inc/options/general.php:272 msgid "" "Reduce server load and decrease response time by using the cache available " "in site visitor's web browser." msgstr "" -#: inc/options/general.php:293 +#: inc/options/general.php:280 msgid "" "Enable HTTP " "compression and add headers to reduce server load and decrease file load " "time." msgstr "" -#: inc/options/general.php:312 lib/W3/Menus.php:93 -#: lib/W3/UI/Settings/CDN.php:10 -msgid "CDN" -msgstr "" - -#: inc/options/general.php:313 -msgid "" -"Host static files with your content delivery network provider to reduce page " -"load time." -msgstr "" - #: inc/options/general.php:315 -#, php-format msgid "" -"If you do not have a CDN provider try MaxCDN. Sign up and " -"save 25%." +"Specify the IP addresses of your varnish instances above. The VCL's ACL must allow this request." msgstr "" #: inc/options/general.php:323 -msgid "" -"Theme files, media library attachments, CSS, JS files etc " -"will appear to load instantly for site visitors." -msgstr "" - -#: inc/options/general.php:331 -msgid "Akamai" -msgstr "" - -#: inc/options/general.php:332 inc/options/general.php:341 -msgid "Amazon CloudFront" -msgstr "" - -#: inc/options/general.php:333 -msgid "Cotendo (Akamai)" -msgstr "" - -#: inc/options/general.php:334 -msgid "AT&T" -msgstr "" - -#: inc/options/general.php:335 -msgid "Generic Mirror" -msgstr "" - -#: inc/options/general.php:336 -msgid "Media Temple ProCDN / EdgeCast" -msgstr "" - -#: inc/options/general.php:337 -msgid "NetDNA" -msgstr "" - -#: inc/options/general.php:338 -msgid "MaxCDN" -msgstr "" - -#: inc/options/general.php:342 -msgid "Amazon Simple Storage Service (S3)" -msgstr "" - -#: inc/options/general.php:343 -msgid "Microsoft Azure Storage" -msgstr "" - -#: inc/options/general.php:344 -msgid "Rackspace Cloud Files" -msgstr "" - -#: inc/options/general.php:345 -msgid "Self-hosted / File Transfer Protocol Upload" +msgid "Purge cache" msgstr "" #: inc/options/general.php:348 msgid "" -"Select the CDN type " -"you wish to use." +"Specify the Amazon " +"SNS service endpoint hostname. If empty, then default \"sns.us-" +"east-1.amazonaws.com\" will be used." msgstr "" -#: inc/options/general.php:368 lib/W3/UI/Settings/Varnish.php:9 -msgid "Reverse Proxy" -msgstr "" - -#: inc/options/general.php:370 -#, php-format +#: inc/options/general.php:358 msgid "" -"Purge policies are set on the Page Cache settings page." +"Specify the " +"API Key." msgstr "" -#: inc/options/general.php:383 +#: inc/options/general.php:368 msgid "" -"Specify the IP addresses of your varnish instances above. The VCL's ACL must allow this request." +"Specify the " +"API secret." msgstr "" -#: inc/options/general.php:419 +#: inc/options/general.php:378 msgid "" -"Specify the Amazon SNS service endpoint hostname. If empty, then default " -"\"sns.us-east-1.amazonaws.com\" will be used." +"Specify the SNS " +"topic." msgstr "" -#: inc/options/general.php:429 -msgid "" -"Specify the API Key." +#: inc/options/general.php:392 inc/options/common/header.php:45 +msgid "Licensing" msgstr "" -#: inc/options/general.php:439 -msgid "" -"Specify the API secret." -msgstr "" - -#: inc/options/general.php:451 -msgid "Topic:" -msgstr "" - -#: inc/options/general.php:459 -msgid "" -"Subscribe to the SNS topic." -msgstr "" - -#: inc/options/general.php:473 -#, php-format -msgid "" -"\n" -" New Relic may not be installed on this server. %s. Visit %s " -"for installation instructions." -msgstr "" - -#: inc/options/general.php:475 -msgid "Sign up for a (free) account" -msgstr "" - -#: inc/options/general.php:481 -msgid "The network administrator has not provided the API Key." -msgstr "" - -#: inc/options/general.php:500 -#, php-format -msgid "Verify %s" -msgstr "" - -#: inc/options/general.php:506 -msgid "Application name:" -msgstr "" - -#: inc/options/general.php:510 -msgid "Obtain application ID via:" -msgstr "" - -#: inc/options/general.php:511 -msgid "Enter application name below:" -msgstr "" - -#: inc/options/general.php:512 -msgid "Select from the following list:" -msgstr "" - -#: inc/options/general.php:521 -msgid "-- Select Application --" -msgstr "" - -#: inc/options/general.php:531 -msgid "" -"Note: Changing application name may create a new application in New Relic if " -"no application with that name already exists." -msgstr "" - -#: inc/options/general.php:569 +#: inc/options/general.php:400 msgid "Verify license key" msgstr "" -#: inc/options/general.php:570 +#: inc/options/general.php:402 #, php-format -msgid "Please enter the license key provided you received after %s." +msgid "Please enter the license key provided after %s." msgstr "" -#: inc/options/general.php:570 +#: inc/options/general.php:402 msgid "upgrading" msgstr "" -#: inc/options/general.php:588 +#: inc/options/general.php:411 inc/options/common/header.php:47 +msgid "Miscellaneous" +msgstr "" + +#: inc/options/general.php:417 +msgid "Enable Google Page Speed dashboard widget" +msgstr "" + +#: inc/options/general.php:418 msgid "Display Google Page Speed results on the WordPress dashboard." msgstr "" -#: inc/options/general.php:595 +#: inc/options/general.php:426 msgid "" -"To acquire an API key, visit the APIs Console. Go to the Project Home tab, activate the Page Speed " -"Online API, " -"and accept the Terms of Service.\n" -" Then go to the API Access tab. The API key is in the Simple API Access section." +"Learn more about obtaining a API key here." msgstr "" -#: inc/options/general.php:603 +#: inc/options/general.php:440 +msgid "Show page rating in admin bar" +msgstr "" + +#: inc/options/general.php:449 msgid "" "Only one configuration file for whole network will be created and used. " "Recommended if all sites have the same configuration." msgstr "" -#: inc/options/general.php:609 -msgid "Prevent sites from independently managing their performance settings." -msgstr "" - -#: inc/options/general.php:618 +#: inc/options/general.php:458 msgid "If empty the default path will be used.." msgstr "" -#: inc/options/general.php:626 +#: inc/options/general.php:466 msgid "" "Notify of server configuration errors, if this option is disabled, the " "server configuration for active settings can be found on the install tab." msgstr "" -#: inc/options/general.php:632 +#: inc/options/general.php:472 msgid "Enable file locking" msgstr "" -#: inc/options/general.php:633 +#: inc/options/general.php:473 msgid "" "Not recommended for NFS " "systems." msgstr "" -#: inc/options/general.php:639 +#: inc/options/general.php:479 msgid "" -"Optimize disk enhanced page and minify disk caching for NFS" +"Optimize disk enhanced page and minify disk caching for NFS" msgstr "" -#: inc/options/general.php:640 +#: inc/options/general.php:480 msgid "" "Try this option if your hosting environment uses a network based file system " "for a possible performance improvement." msgstr "" -#: inc/options/general.php:648 -msgid "Enable Edge mode" +#: inc/options/general.php:487 +msgid "Anonymously track usage to improve product quality" msgstr "" -#: inc/options/general.php:650 -msgid "Disable Edge mode" -msgstr "" - -#: inc/options/general.php:666 +#: inc/options/general.php:497 msgid "" "Detailed information about each cache will be appended in (publicly " "available) HTML " @@ -2915,60 +6001,600 @@ msgid "" "optimal, use sparingly and disable when not in use." msgstr "" -#: inc/options/general.php:670 -msgid "Debug Mode:" +#: inc/options/general.php:501 +msgid "Debug mode:" msgstr "" -#: inc/options/general.php:684 +#: inc/options/general.php:517 msgid "" "If selected, detailed caching information will appear at the end of each " "page in a HTML " "comment. View a page's source code to review." msgstr "" -#: inc/options/general.php:703 +#: inc/options/general.php:521 +msgid "Purge Logs:" +msgstr "" + +#: inc/options/general.php:548 +msgid "" +"Purge Logs provide information on when your cache has been purged and what " +"triggered it." +msgstr "" + +#: inc/options/general.php:550 +msgid "" +"If you are troubleshooting a complex issue in which you are not sure why " +"your cache is being cleared, Purge Logs can tell you why" +msgstr "" + +#: inc/options/general.php:568 inc/options/common/header.php:49 +msgid "Import / Export Settings" +msgstr "" + +#: inc/options/general.php:572 msgid "Import configuration:" msgstr "" -#: inc/options/general.php:706 +#: inc/options/general.php:575 msgid "Upload" msgstr "" -#: inc/options/general.php:707 +#: inc/options/general.php:576 msgid "Upload and replace the active settings file." msgstr "" -#: inc/options/general.php:711 +#: inc/options/general.php:580 msgid "Export configuration:" msgstr "" -#: inc/options/general.php:713 +#: inc/options/general.php:582 msgid "Download" msgstr "" -#: inc/options/general.php:714 +#: inc/options/general.php:583 msgid "Download the active settings file." msgstr "" -#: inc/options/general.php:718 +#: inc/options/general.php:587 msgid "Reset configuration:" msgstr "" -#: inc/options/general.php:720 +#: inc/options/general.php:589 msgid "Restore Default Settings" msgstr "" -#: inc/options/general.php:721 +#: inc/options/general.php:590 msgid "" "Revert all settings to the defaults. Any settings staged in preview mode " "will not be modified." msgstr "" -#: inc/options/install.php:7 +#: inc/options/dashboard.php:11 +#, php-format +msgid "" +"The plugin is currently %s in " +"%s mode." +msgstr "" + +#: inc/options/dashboard.php:20 +msgid "compatibility check" +msgstr "" + +#: inc/options/dashboard.php:22 +msgid "empty all caches" +msgstr "" + +#: inc/options/dashboard.php:22 +msgid "at once or" +msgstr "" + +#: inc/options/dashboard.php:23 +msgid "empty only the memcached cache(s)" +msgstr "" + +#: inc/options/dashboard.php:23 inc/options/dashboard.php:24 +#: inc/options/dashboard.php:25 inc/options/dashboard.php:27 +#: inc/options/dashboard.php:31 +msgid "or" +msgstr "" + +#: inc/options/dashboard.php:24 +msgid "empty only the opcode cache" +msgstr "" + +#: inc/options/dashboard.php:25 +msgid "empty only the disk cache(s)" +msgstr "" + +#: inc/options/dashboard.php:27 +msgid "purge CDN completely" +msgstr "" + +#: inc/options/dashboard.php:29 +msgid "update Media Query String" +msgstr "" + +#: inc/options/extensions.php:10 +#, php-format +msgid "Extension support is always %s" +msgstr "" + +#: inc/options/objectcache.php:13 +#, php-format +msgid "Object caching via %1$s is currently %2$s" +msgstr "" + +#: inc/options/objectcache.php:61 +msgid "Groups shared amongst sites in network mode." +msgstr "" + +#: inc/options/objectcache.php:69 +msgid "Groups that should not be cached." +msgstr "" + +#: inc/options/objectcache.php:76 +msgid "" +"Enabling this option will increase wp-admin performance, but may cause side-" +"effects" +msgstr "" + +#: inc/options/objectcache.php:82 +msgid "" +"Use that to store transients in database even when external cache is used. " +"That allows transient values to survive object cache cleaning / expiration" +msgstr "" + +#: inc/options/objectcache.php:89 +msgid "" +"Enabling this option will increase load on server on certain actions but " +"will guarantee that\n" +"\t\t\t\t\tthe Object Cache is always clean and contains latest changes. " +"Enable if you are experiencing issues\n" +"\t\t\t\t\t with options displaying wrong value/state (checkboxes etc)." +msgstr "" + +#: inc/options/support.php:15 +msgid "" +"Request premium services, suggest a feature or submit a bug using the form " +"below:" +msgstr "" + +#: inc/options/browsercache.php:18 +#, php-format +msgid "Browser caching is currently %s." +msgstr "" + +#: inc/options/browsercache.php:24 +#, php-format +msgid "" +"%sUpdate media query string%s to make existing file modifications visible to " +"visitors with a primed cache" +msgstr "" + +#: inc/options/browsercache.php:33 +msgid "Specify global browser cache policy." +msgstr "" + +#: inc/options/browsercache.php:41 inc/options/browsercache.php:163 +#: inc/options/browsercache.php:266 inc/options/browsercache.php:349 +msgid "Set the Last-Modified header to enable 304 Not Modified response." +msgstr "" + +#: inc/options/browsercache.php:50 inc/options/browsercache.php:169 +#: inc/options/browsercache.php:272 inc/options/browsercache.php:355 +msgid "Set the expires header to encourage browser caching of files." +msgstr "" + +#: inc/options/browsercache.php:57 inc/options/browsercache.php:185 +#: inc/options/browsercache.php:289 inc/options/browsercache.php:371 +msgid "" +"Set pragma and cache-control headers to encourage browser caching of files." +msgstr "" + +#: inc/options/browsercache.php:65 inc/options/browsercache.php:215 +#: inc/options/browsercache.php:318 inc/options/browsercache.php:401 +msgid "Set the ETag header to encourage browser caching of files." +msgstr "" + +#: inc/options/browsercache.php:72 inc/options/browsercache.php:221 +#: inc/options/browsercache.php:324 inc/options/browsercache.php:407 +msgid "Set this header to assist in identifying optimized files." +msgstr "" + +#: inc/options/browsercache.php:80 inc/options/browsercache.php:89 +#: inc/options/browsercache.php:227 inc/options/browsercache.php:233 +#: inc/options/browsercache.php:330 inc/options/browsercache.php:336 +#: inc/options/browsercache.php:413 inc/options/browsercache.php:419 +msgid "Reduce the download time for text-based files." +msgstr "" + +#: inc/options/browsercache.php:97 inc/options/browsercache.php:239 +#: inc/options/browsercache.php:425 +msgid "" +"Whenever settings are changed, a new query string will be generated and " +"appended to objects allowing the new policy to be applied." +msgstr "" + +#: inc/options/browsercache.php:104 inc/options/browsercache.php:244 +#: inc/options/browsercache.php:430 +msgid "Remove query strings from static resources" +msgstr "" + +#: inc/options/browsercache.php:105 inc/options/browsercache.php:245 +#: inc/options/browsercache.php:431 +msgid "" +"Resources with a \"?\" in the " +"URL are not cached by some proxy caching servers." +msgstr "" + +#: inc/options/browsercache.php:114 +msgid "" +"Do not add the prevent caching query string to the specified URIs. Supports regular " +"expressions." +msgstr "" + +#: inc/options/browsercache.php:121 +msgid "Don't set cookies for static files" +msgstr "" + +#: inc/options/browsercache.php:128 +msgid "" +"Reduce server load by allowing the web server to handle 404 (not found) " +"errors for static files (images etc)." +msgstr "" + +#: inc/options/browsercache.php:129 +msgid "" +"If enabled - you may get 404 File Not Found response for some files " +"generated on-the-fly by WordPress plugins. You may add those file URIs to 404 error exception " +"list below to avoid that." +msgstr "" + +#: inc/options/browsercache.php:138 +msgid "" +"Never process 404 (not found) events for the specified URIs." +msgstr "" + +#: inc/options/browsercache.php:146 +msgid "" +"Rewrite URL " +"structure of objects" +msgstr "" + +#: inc/options/browsercache.php:147 +msgid "" +"Generate unique URI" +" for each file protected from caching by browser." +msgstr "" + +#: inc/options/browsercache.php:156 inc/options/common/header.php:128 +msgid "" +"CSS & JS" +msgstr "" + +#: inc/options/browsercache.php:157 +msgid "" +"Specify browser cache policy for Cascading Style Sheets and JavaScript files." +msgstr "" + +#: inc/options/browsercache.php:201 inc/options/browsercache.php:304 +#: inc/options/browsercache.php:387 +msgid "cache with max-age (\"public, max-age=EXPIRES_SECONDS\")" +msgstr "" + +#: inc/options/browsercache.php:202 inc/options/browsercache.php:305 +#: inc/options/browsercache.php:388 +msgid "cache with validation (\"public, must-revalidate, proxy-revalidate\")" +msgstr "" + +#: inc/options/browsercache.php:203 inc/options/browsercache.php:306 +#: inc/options/browsercache.php:389 +msgid "" +"cache with max-age and validation (\"max-age=EXPIRES_SECONDS, public, must-" +"revalidate, proxy-revalidate\")" +msgstr "" + +#: inc/options/browsercache.php:204 inc/options/browsercache.php:307 +#: inc/options/browsercache.php:390 +msgid "cache without proxy (\"private, must-revalidate\")" +msgstr "" + +#: inc/options/browsercache.php:205 +msgid "" +"don't cache (\"max-age=0, private, no-store, no-cache, must-revalidate\")" +msgstr "" + +#: inc/options/browsercache.php:208 inc/options/browsercache.php:311 +#: inc/options/browsercache.php:394 +msgid "The Expires header already sets the max-age." +msgstr "" + +#: inc/options/browsercache.php:251 inc/options/browsercache.php:437 +msgid "Removes Set-Cookie header for responses." +msgstr "" + +#: inc/options/browsercache.php:259 +msgid "" +"HTML & XML" +msgstr "" + +#: inc/options/browsercache.php:260 +msgid "" +"Specify browser cache policy for posts, pages, feeds and text-based files." +msgstr "" + +#: inc/options/browsercache.php:308 inc/options/browsercache.php:391 +msgid "no-cache (\"max-age=0, private, no-store, no-cache, must-revalidate\")" +msgstr "" + +#: inc/options/browsercache.php:344 +msgid "Media & Other Files" +msgstr "" + +#: inc/options/minify.php:22 +#, php-format +msgid "Minify via %s is currently %s." +msgstr "" + +#: inc/options/minify.php:26 +#, php-format +msgid "To rebuild the minify cache use the %s operation." +msgstr "" + +#: inc/options/minify.php:30 +msgid "Get minify hints using the" +msgstr "" + +#: inc/options/minify.php:31 +msgid "help" +msgstr "" + +#: inc/options/minify.php:32 +msgid "wizard." +msgstr "" + +#: inc/options/minify.php:34 +#, php-format +msgid "" +"%s to make existing file modifications visible to visitors with a primed " +"cache." +msgstr "" + +#: inc/options/minify.php:52 +msgid "" +"If disabled, CSS and " +"JS embeddings will use GET variables " +"instead of \"fancy\" links." +msgstr "" + +#: inc/options/minify.php:58 +msgid "" +"Authenticated users will not receive minified pages if this option is " +"enabled." +msgstr "" + +#: inc/options/minify.php:67 +msgid "Admin Notification" +msgstr "" + +#: inc/options/minify.php:68 +msgid "Email Notification" +msgstr "" + +#: inc/options/minify.php:69 +msgid "Both Admin & Email Notification" +msgstr "" + +#: inc/options/minify.php:72 +msgid "Notify when minify cache creation errors occur." +msgstr "" + +#: inc/options/minify.php:81 inc/options/common/header.php:89 +#: inc/options/common/header.php:129 +msgid "" +"HTML & XML" +msgstr "" + +#: inc/options/minify.php:84 +msgid "" +"HTML minify settings:" +msgstr "" + +#: inc/options/minify.php:112 +msgid "Do not remove comments that contain these terms." +msgstr "" + +#: inc/options/minify.php:134 inc/options/common/header.php:90 +msgid "JS" +msgstr "" + +#: inc/options/minify.php:137 +msgid "JS minify settings:" +msgstr "" + +#: inc/options/minify.php:140 +msgid "Operations in areas:" +msgstr "" + +#: inc/options/minify.php:149 +msgid "Before </head>" +msgstr "" + +#: inc/options/minify.php:158 inc/options/minify.php:177 +#: inc/options/minify.php:196 +msgid "Default (blocking)" +msgstr "" + +#: inc/options/minify.php:159 inc/options/minify.php:178 +#: inc/options/minify.php:197 +msgid "Non-blocking using JS" +msgstr "" + +#: inc/options/minify.php:160 inc/options/minify.php:179 +#: inc/options/minify.php:198 +msgid "Non-blocking using \"async\"" +msgstr "" + +#: inc/options/minify.php:161 inc/options/minify.php:180 +#: inc/options/minify.php:199 +msgid "Non-blocking using \"defer\"" +msgstr "" + +#: inc/options/minify.php:163 inc/options/minify.php:182 +#: inc/options/minify.php:200 +msgid "Non-blocking using \"extsrc\"" +msgstr "" + +#: inc/options/minify.php:164 inc/options/minify.php:183 +#: inc/options/minify.php:201 +msgid "Non-blocking using \"asyncsrc\"" +msgstr "" + +#: inc/options/minify.php:249 +msgid "JS file management:" +msgstr "" + +#: inc/options/minify.php:261 +msgid "" +"Files are minified by template. First select the theme to manage, then add " +"scripts used in all templates to the \"All Templates\" group. Use the menu " +"above to manage scripts unique to a specific template. If necessary drag " +"& drop to resolve dependency issues (due to incorrect order)." +msgstr "" + +#: inc/options/minify.php:298 inc/options/minify.php:423 +#: inc/popup/cdn_queue.php:25 inc/popup/cdn_queue.php:34 +#: inc/popup/cdn_queue.php:58 inc/popup/cdn_queue.php:67 +#: inc/popup/cdn_queue.php:88 inc/popup/cdn_queue.php:97 +#: inc/options/cdn/common/cnames.php:56 +msgid "Delete" +msgstr "" + +#: inc/options/minify.php:309 +msgid "No JS files added" +msgstr "" + +#: inc/options/minify.php:310 +msgid "Add a script" +msgstr "" + +#: inc/options/minify.php:320 inc/options/minify.php:445 +msgid "" +"For better performance, send files to browser before they are requested when " +"using the HTTP/2 " +"protocol." +msgstr "" + +#: inc/options/minify.php:323 inc/options/minify.php:448 +msgid "" +"
    Not supported by \"Disk: Enhanced\" page cache method for Nginx" +msgstr "" + +#: inc/options/minify.php:330 inc/options/common/header.php:91 +msgid "CSS" +msgstr "" + +#: inc/options/minify.php:333 +msgid "CSS minify settings:" +msgstr "" + +#: inc/options/minify.php:382 +msgid "CSS file management:" +msgstr "" + +#: inc/options/minify.php:394 +msgid "" +"Files are minified by template. First select the theme to manage, then add " +"style sheets used in all templates to the \"All Templates\" group. Use the " +"menu above to manage style sheets unique to a specific template. If " +"necessary drag & drop to resolve dependency issues (due to incorrect " +"order)." +msgstr "" + +#: inc/options/minify.php:434 +msgid "No CSS files added" +msgstr "" + +#: inc/options/minify.php:435 +msgid "Add a style sheet" +msgstr "" + +#: inc/options/minify.php:472 +msgid "" +"Specify the interval between download and update of external files in the " +"minify cache. Hint: 6 hours is 21600 seconds. 12 hours is 43200 seconds. 24 " +"hours is 86400 seconds." +msgstr "" + +#: inc/options/minify.php:489 +msgid "" +"Always ignore the specified pages / directories. Use relative paths. Omit: " +"protocol, hostname, leading forward slash and query strings." +msgstr "" + +#: inc/options/minify.php:497 +msgid "" +"Always ignore the specified JS files." +" Use relative paths. Omit: protocol, hostname, leading forward slash and " +"query strings." +msgstr "" + +#: inc/options/minify.php:505 +msgid "" +"Always ignore the specified " +"CSS files. Use relative paths. Omit: protocol, hostname, leading " +"forward slash and query strings." +msgstr "" + +#: inc/options/minify.php:514 +msgid "Specify user agents that will never receive minified content." +msgstr "" + +#: inc/options/minify.php:524 +msgid "Specify external files/libraries that should be combined." +msgstr "" + +#: inc/options/minify.php:530 +msgid "Use Regular Expressions for file name matching" +msgstr "" + +#: inc/options/minify.php:531 +msgid "" +"If external script file names vary, use regular expressions in the \"Include " +"external files/libraries\" field to simplify matching." +msgstr "" + +#: inc/options/minify.php:545 +msgid "" +"Enable HTTP " +"compression in the \"Cascading Style Sheets & JavaScript\" section on Browser Cache Settings tab." +msgstr "" + +#: inc/options/minify.php:546 +msgid "" +"The TTL of page cache files is set " +"via the \"Expires header lifetime\" field in the \"Cascading Style Sheets " +"& JavaScript\" section on " +"Browser Cache Settings tab." +msgstr "" + +#: inc/options/install.php:11 inc/options/common/header.php:162 +msgid "Initial Installation" +msgstr "" + +#: inc/options/install.php:14 msgid "Set the permissions of wp-content/ back to 755, e.g.:" msgstr "" -#: inc/options/install.php:10 +#: inc/options/install.php:17 msgid "" "On the \"General\" tab and " "select your caching methods for page, database and minify. In most cases, " @@ -2976,7 +6602,7 @@ msgid "" "mode for database caching are \"good\" settings." msgstr "" -#: inc/options/install.php:11 +#: inc/options/install.php:18 msgid "" "1. The \"Compatibility Mode\" option found in the advanced section of the " "\"Page Cache Settings\" tab will " @@ -2987,26 +6613,28 @@ msgid "" "cache performance under load tests will be decreased by ~20% at scale." msgstr "" -#: inc/options/install.php:12 +#: inc/options/install.php:19 msgid "" -"Recommended: On the \"Minify\" tab all of the recommended settings are preset. Use the help " -"button to simplify discovery of your CSS and JS files and " -"groups. Pay close attention to the method and location of your JS group embeddings. See the plugin's FAQ for more information on usage." +"Recommended: On the \"" +"Minify\" tab all of the recommended settings are preset. Use the help " +"button to simplify discovery of your CSS and JS files " +"and groups. Pay close attention to the method and location of your JS group embeddings. See the plugin's FAQ for more information " +"on usage." msgstr "" -#: inc/options/install.php:13 +#: inc/options/install.php:20 msgid "" -"Recommended: On the \"Browser Cache\" tab, HTTP compression is enabled by default. Make sure to enable " -"other options to suit your goals." +"Recommended: On the \"" +"Browser Cache\" tab, " +"HTTP compression is enabled by default. Make sure to enable other " +"options to suit your goals." msgstr "" -#: inc/options/install.php:14 +#: inc/options/install.php:21 msgid "" "Recommended: If you already have a content delivery network " "(CDN) provider, " @@ -3020,12 +6648,12 @@ msgid "" "own server, create a subdomain and matching DNS Zone record; e.g. static.domain.com and configure " "FTP options on the " -"\"Content Delivery Network\" tab accordingly. Be sure to FTP upload the appropriate files, using " -"the available upload buttons." +"\"Content Delivery Network\" tab accordingly. Be sure to FTP upload the appropriate files, " +"using the available upload buttons." msgstr "" -#: inc/options/install.php:15 +#: inc/options/install.php:22 msgid "" "Optional: On the \"Database " "Cache\" tab the recommended settings are preset. If using a shared " @@ -3034,295 +6662,87 @@ msgid "" "is disabled by default." msgstr "" -#: inc/options/install.php:16 +#: inc/options/install.php:23 msgid "" -"Optional: On the \"Object Cache\" tab the recommended settings are preset. If using a " +"Optional: On the \"" +"Object Cache\" tab the recommended settings are preset. If using a " "shared hosting account use the \"disk\" method with caution, the response " "time of the disk may not be fast enough, so this option is disabled by " "default. Test this option with and without database cache to ensure that it " "provides a performance increase." msgstr "" -#: inc/options/install.php:17 +#: inc/options/install.php:24 msgid "" "Optional: On the \"User " "Agent Groups\" tab, specify any user agents, like mobile phones if a " "mobile theme is used." msgstr "" -#: inc/options/install.php:21 +#: inc/options/install.php:28 msgid "" "Check out the FAQ " "for more details on usage" msgstr "" -#: inc/options/install.php:26 -msgid "Rewrite rules" +#: inc/options/install.php:33 +msgid "Rewrite Rules (based on active settings)" msgstr "" -#: inc/options/install.php:34 +#: inc/options/install.php:41 inc/options/common/header.php:167 msgid "Other" msgstr "" -#: inc/options/install.php:43 -msgid "" -"Software Installation for Dedicated / Virtual Dedicated / Multiple Servers " -"(Optional)" -msgstr "" - -#: inc/options/install.php:45 -msgid "" -"Server Preparation:
    Time required: ~1 minute" -msgstr "" - -#: inc/options/install.php:49 -msgid "" -"Install yum if " -"you don't already have it. Then, if you like, you can update all of your " -"installed software, but do so only if you have the experience and time to " -"double check configurations afterwards:" +#: inc/options/install.php:50 inc/options/common/header.php:169 +msgid "Services" msgstr "" #: inc/options/install.php:53 -msgid "" -"Install PECL:" +msgid "Server Preparation" msgstr "" -#: inc/options/install.php:57 -msgid "" -"Install the PHP " -"Development package:" +#: inc/options/install.php:56 +msgid "Install Memcached Deamon" msgstr "" -#: inc/options/install.php:61 -msgid "Install apxs with the following command:" +#: inc/options/install.php:60 inc/options/common/header.php:170 +msgid "PHP Modules" msgstr "" -#: inc/options/install.php:65 -msgid "Make sure GCC is up-to-date:" +#: inc/options/install.php:63 +msgid "Install Memcached Module" +msgstr "" + +#: inc/options/install.php:66 +msgid "Install APC module" msgstr "" #: inc/options/install.php:69 -msgid "Make sure ZLIB is fully installed:" +msgid "Install XCache Module" msgstr "" -#: inc/options/install.php:73 -msgid "Make sure PCRE is fully installed:" +#: inc/options/install.php:72 +msgid "Install eAccelerator Module" msgstr "" -#: inc/options/install.php:80 -msgid "" -"Memcached (Daemon) Installation:

    Time required: 2 minutes" -msgstr "" - -#: inc/options/install.php:84 -msgid "Try to install with yum:" +#: inc/options/install.php:75 +msgid "New Relic Module" msgstr "" #: inc/options/install.php:87 msgid "" -"If this succeeds skip to #5. If this fails, then let's compile. Download and " -"extract the latest stable version:" +"Additional installation guides can be found in the wiki." msgstr "" -#: inc/options/install.php:91 inc/options/install.php:109 -msgid "Let's compile:" -msgstr "" - -#: inc/options/install.php:95 -msgid "In the output you should see:" -msgstr "" - -#: inc/options/install.php:96 -#, php-format -msgid "Libraries have been installed in: %s" -msgstr "" - -#: inc/options/install.php:97 -msgid "If so you can:" -msgstr "" - -#: inc/options/install.php:101 -msgid "Configure your server for the new install:" -msgstr "" - -#: inc/options/install.php:105 +#: inc/options/install.php:88 msgid "" -"Now find the latest " -"stable memcached, download and extract:" +"Best compatibility with " +"IIS is realized via WinCache opcode cache." msgstr "" -#: inc/options/install.php:113 -msgid "Make sure memcached is starts automatically on server boot:" -msgstr "" - -#: inc/options/install.php:121 -msgid "And finally, let's start memcached:" -msgstr "" - -#: inc/options/install.php:128 -msgid "" -"PECL " -"Memcache Module Installation:
    Time required: 1 minute" -msgstr "" - -#: inc/options/install.php:132 -msgid "" -"Either use PECL " -"(and skip to #4 if successful):" -msgstr "" - -#: inc/options/install.php:136 -msgid "" -"Or via compilation. Download the latest stable version and extract:" -msgstr "" - -#: inc/options/install.php:140 -msgid "Now we start to compile:" -msgstr "" - -#: inc/options/install.php:144 -msgid "You can also use the memcache.ini file we prepared for you:" -msgstr "" - -#: inc/options/install.php:148 -msgid "Finally restart apache:" -msgstr "" - -#: inc/options/install.php:152 -msgid "" -"You're done! Memcache should now be available. If the following command " -"retuns anything, you're all set:" -msgstr "" - -#: inc/options/install.php:159 -msgid "" -"PECL " -"Alternative PHP Cache (APC) Installation (Recommended):
    Time required: 1 " -"minute" -msgstr "" - -#: inc/options/install.php:163 -msgid "" -"Install APC using the " -"PECL command " -"(and skip to #5 if successful):" -msgstr "" - -#: inc/options/install.php:167 -msgid "" -"Or via compilation. Download the latest stable version and extract:" -msgstr "" - -#: inc/options/install.php:171 -msgid "Note the paths returned for the following commands:" -msgstr "" - -#: inc/options/install.php:176 -msgid "" -"Use the output from #2 to modify the --with-apxs and --with-php-config flags " -"in the following compile command:" -msgstr "" - -#: inc/options/install.php:179 -#, php-format -msgid "Installing shared extensions: %s" -msgstr "" - -#: inc/options/install.php:182 -msgid "You can also use the apc.ini file we prepared for you:" -msgstr "" - -#: inc/options/install.php:186 inc/options/install.php:219 -#: inc/options/install.php:252 -msgid "Restart apache when ready:" -msgstr "" - -#: inc/options/install.php:190 -msgid "" -"You're done! APC should " -"now be available. If the following command retuns anything, you're all set:" -msgstr "" - -#: inc/options/install.php:197 -msgid "" -"XCache Installation:
    Time required: 1 minute" -msgstr "" - -#: inc/options/install.php:201 -msgid "" -"Download the latest compatible version and extract:" -msgstr "" - -#: inc/options/install.php:205 inc/options/install.php:238 -msgid "Note the path returned for the following command:" -msgstr "" - -#: inc/options/install.php:209 inc/options/install.php:242 -msgid "" -"Use the output from #2 to modify the --with-php-config flag in the following " -"compile command:" -msgstr "" - -#: inc/options/install.php:211 inc/options/install.php:244 -msgid "The result should be similar to:" -msgstr "" - -#: inc/options/install.php:215 inc/options/install.php:248 -msgid "You can also use the eaccelerator.ini file we prepared for you:" -msgstr "" - -#: inc/options/install.php:223 -msgid "" -"You're done! XCache should now be available. If the following command retuns " -"anything, you're all set:" -msgstr "" - -#: inc/options/install.php:230 -msgid "" -"eAccelerator Installation:
    Time required: 1 " -"minute" -msgstr "" - -#: inc/options/install.php:234 -msgid "" -"If using PHP v5+, " -"download the lastest " -"compatible version and extract. Remember v0.9.5.3 is the last version " -"that supports user objects, later versions only support opcode caching." -msgstr "" - -#: inc/options/install.php:256 -msgid "" -"You're done! eAccelerator should now be available. If the following command " -"retuns anything, you're all set:" -msgstr "" - -#: inc/options/install.php:283 -msgid "" -"The provided instructions are for 32-bit CentOS, however we can provide " -"others based on your " -"requests." -msgstr "" - -#: inc/options/install.php:284 -msgid "" -"Best compatibility with IIS is realized via WebMatrix, which also includes the supported WinCache opcode cache." -msgstr "" - -#: inc/options/install.php:285 +#: inc/options/install.php:89 msgid "" "In the case where Apache is not used, the .htaccess file located in the root " "directory of the WordPress installation, wp-content/w3tc/pgcache/.htaccess " @@ -3330,7 +6750,7 @@ msgid "" "created for your web server software." msgstr "" -#: inc/options/install.php:286 +#: inc/options/install.php:90 msgid "" "Restarting the web server will empty the opcode cache, which means it will " "have to be rebuilt over time and your site's performance will suffer during " @@ -3338,255 +6758,773 @@ msgid "" "maximize WordPress performance." msgstr "" -#: inc/options/install.php:287 +#: inc/options/install.php:91 msgid "" "Consider using memcached for objects that must persist across web server " -"restarts or that you wish to share amongst your pool of servers (or " -"cluster), e.g.: database objects or page cache." +"restarts or that you wish to share amongst your server pool, e.g.: database " +"objects or page cache." msgstr "" -#: inc/options/install.php:288 +#: inc/options/about.php:14 +msgid "Improved Google search engine ranking" +msgstr "" + +#: inc/options/about.php:15 +msgid "Increased visitor time on site" +msgstr "" + +#: inc/options/about.php:16 +msgid "Optimized progressive render (pages start rendering immediately)" +msgstr "" + +#: inc/options/about.php:17 msgid "" -"Some yum or mirrors may not have the necessary packages, in such cases you " -"may have to do a manual installation." +"Reduced HTTP " +"Transactions, DNS lookups " +"and reduced document load time" msgstr "" -#: inc/options/minify.php:16 +#: inc/options/about.php:18 +msgid "" +"Bandwidth savings via Minify and HTTP compression of HTML, " +"CSS, JavaScript and feeds" +msgstr "" + +#: inc/options/about.php:19 +msgid "" +"Increased web server concurrency and increased scale (easily sustain high " +"traffic spikes)" +msgstr "" + +#: inc/options/about.php:20 +msgid "" +"Transparent content delivery network (CDN) integration with Media Library, theme files and " +"WordPress core" +msgstr "" + +#: inc/options/about.php:21 +msgid "" +"Caching of pages / posts in memory or on disk or on CDN (mirror only)" +msgstr "" + +#: inc/options/about.php:22 +msgid "" +"Caching of (minified) CSS " +"and JavaScript in memory, on disk or on CDN" +msgstr "" + +#: inc/options/about.php:23 +msgid "Caching of database objects in memory or on disk" +msgstr "" + +#: inc/options/about.php:24 +msgid "Caching of objects in memory or on disk" +msgstr "" + +#: inc/options/about.php:25 +msgid "" +"Caching of feeds (site, categories, tags, comments, search results) in " +"memory or on disk" +msgstr "" + +#: inc/options/about.php:26 +msgid "" +"Caching of search results pages (i.e. URIs with query string variables) in memory or on disk" +msgstr "" + +#: inc/options/about.php:27 +msgid "Minification of posts / pages and feeds" +msgstr "" + +#: inc/options/about.php:28 +msgid "" +"Minification (concatenation and white space removal) of inline, external or " +"3rd party JavaScript / CSS" +" with automated updates" +msgstr "" + +#: inc/options/about.php:29 +msgid "" +"Complete header management including ETags" +msgstr "" + +#: inc/options/about.php:30 +msgid "JavaScript embedding group and location management" +msgstr "" + +#: inc/options/about.php:31 +msgid "" +"Import post attachments directly into the Media Library (and CDN)" +msgstr "" + +#: inc/options/about.php:34 +msgid "" +"Your users have less data to download, you can now serve more visitors at " +"once without upgrading your hardware and you don't have to change how you do " +"anything; just set it and forget it." +msgstr "" + +#: inc/options/about.php:36 +msgid "Who do I thank for all of this?" +msgstr "" + +#: inc/options/about.php:38 +msgid "" +"It's quite difficult to recall all of the innovators that have shared their " +"thoughts, code and experiences in the blogosphere over the years, but here " +"are some names to get you started:" +msgstr "" + +#: inc/options/about.php:55 +msgid "" +"Please reach out to all of these people and support their projects if you're " +"so inclined." +msgstr "" + +#: inc/options/mobile.php:18 +msgid "" +"User agent group support is always " +"enabled." +msgstr "" + +#: inc/options/mobile.php:23 inc/options/common/header.php:142 +msgid "Manage User Agent Groups" +msgstr "" + +#: inc/options/mobile.php:28 +msgid "" +"of user agents by specifying names in the user agents field. Assign a set of " +"user agents to use a specific theme, redirect them to another domain or if " +"an existing mobile plugin is active, create user agent groups to ensure that " +"a unique cache is created for each user agent group. Drag and drop groups " +"into order (if needed) to determine their priority (top -> down)." +msgstr "" + +#: inc/options/mobile.php:73 +msgid "" +"Assign this group of user agents to a specific theme. Selecting \"Pass-" +"through\" allows any plugin(s) (e.g. mobile plugins) to properly handle " +"requests for these user agents. If the \"redirect users to\" field is not " +"empty, this setting is ignored." +msgstr "" + +#: inc/options/mobile.php:87 +msgid "" +"A 302 redirect is used to send this group of users to another hostname " +"(domain); recommended if a 3rd party service provides a mobile version of " +"your site." +msgstr "" + +#: inc/options/mobile.php:92 +msgid "User agents:" +msgstr "" + +#: inc/options/mobile.php:99 +msgid "" +"Specify the user agents for this group. Remember to escape special " +"characters like spaces, dots or dashes with a backslash. Regular expressions " +"are also supported." +msgstr "" + +#: inc/options/mobile.php:107 +msgid "" +"No groups added. All user agents recieve the same page and minify cache " +"results." +msgstr "" + +# php-format +#: inc/options/pgcache.php:13 #, php-format -msgid "Minify via %s is currently %s." +msgid "Page caching via %1$s is currently %2$s" msgstr "" -#: inc/options/minify.php:20 +#: inc/options/pgcache.php:21 #, php-format -msgid "To rebuild the minify cache use the %s operation." +msgid "To rebuild the page cache use the %s operation" msgstr "" -#: inc/options/minify.php:24 -msgid "Get minify hints using the" +#: inc/options/pgcache.php:35 +msgid "" +"For many blogs this is your most visited page, it is recommended that you " +"cache it." msgstr "" -#: inc/options/minify.php:25 -msgid "help" +#: inc/options/pgcache.php:42 +msgid "" +"By default the front page is cached when using static front page in reading " +"settings." msgstr "" -#: inc/options/minify.php:26 -msgid "wizard." +#: inc/options/pgcache.php:49 +msgid "" +"Even if using a feed proxy service (like FeedBurner), enabling this " +"option is still recommended." msgstr "" -#: inc/options/minify.php:28 +#: inc/options/pgcache.php:55 +msgid "" +"Cache SSL requests " +"(uniquely) for improved performance." +msgstr "" + +#: inc/options/pgcache.php:63 +msgid "Search result (and similar) pages will be cached if enabled." +msgstr "" + +#: inc/options/pgcache.php:69 +msgid "" +"Reduce server load by caching 404 pages. If the disk enhanced method of disk " +"caching is used, 404 pages will be returned with a 200 response code. Use at " +"your own risk." +msgstr "" + +#: inc/options/pgcache.php:75 +msgid "" +"Unauthenticated users may view a cached version of the last authenticated " +"user's view of a given page. Disabling this option is not recommended." +msgstr "" + +#: inc/options/pgcache.php:81 +msgid "Select user roles that should not receive cached pages:" +msgstr "" + +#: inc/options/pgcache.php:98 +msgid "Aliases" +msgstr "" + +#: inc/options/pgcache.php:104 +msgid "Cache alias hostnames:" +msgstr "" + +#: inc/options/pgcache.php:107 +msgid "If the same WordPress content is accessed from different domains" +msgstr "" + +#: inc/options/pgcache.php:113 +msgid "" +"Additional home URLs:" +msgstr "" + +#: inc/options/pgcache.php:115 +msgid "" +"Specify full home URLs " +"of your mirrors so that plugin will flush it's cache when content is changed." +" For example:
    http://my-site.com
    http://www.my-site.com
    " +"https://my-site.com" +msgstr "" + +#: inc/options/pgcache.php:123 inc/options/common/header.php:75 +msgid "Cache Preload" +msgstr "" + +#: inc/options/pgcache.php:136 +msgid "" +"The number of seconds to wait before creating another set of cached pages." +msgstr "" + +#: inc/options/pgcache.php:145 +msgid "" +"Limit the number of pages to create per batch. Fewer pages may be better for " +"under-powered servers." +msgstr "" + +#: inc/options/pgcache.php:154 +msgid "" +"A compliant sitemap can be used to specify the pages to " +"maintain in the primed cache. Pages will be cached according to the " +"priorities specified in the " +"XML file." +msgstr "" + +#: inc/options/pgcache.php:171 +msgid "Purge Policy: " +msgstr "" + +#: inc/options/pgcache.php:175 +msgid "" +"Specify the pages and feeds to purge when posts are created, edited, or " +"comments posted. The defaults are recommended because additional options may " +"reduce server performance:" +msgstr "" + +#: inc/options/pgcache.php:227 +msgid "" +"Specify number of pages that lists posts (archive etc) that should be purged " +"on post updates etc, i.e example.com/ ... example.com/page/5.
    0 means " +"all pages that lists posts are purged, i.e example.com/page/2 ... ." +msgstr "" + +#: inc/options/pgcache.php:236 +msgid "" +"Specify additional pages to purge. Including parent page in path. Ex: " +"parent/posts." +msgstr "" + +#: inc/options/pgcache.php:243 +msgid "Specify a regular expression that matches your sitemaps." +msgstr "" + +#: inc/options/pgcache.php:251 +msgid "" +"REST API" +msgstr "" + +#: inc/options/pgcache.php:264 +msgid "" +"If you’re using the WordPress API make sure to use caching to scale " +"performance." +msgstr "" + +#: inc/options/pgcache.php:266 +msgid "" +"If you use WordPress as a backend for integrations, API caching may be for " +"you. Similar to page caching, repeat requests will benefit by having " +"significantly lower response times and consume fewer resources to deliver." +msgstr "" + +#: inc/options/pgcache.php:268 +msgid "" +"Note: If WordPress is not used as a backend, for additional security, the " +"API can be disabled completely." +msgstr "" + +#: inc/options/pgcache.php:274 +msgid "" +"Controls WordPress " +"REST " +"API functionality." +msgstr "" + +#: inc/options/pgcache.php:285 +msgid "Late initialization:" +msgstr "" + +#: inc/options/pgcache.php:289 +msgid "" +"Enables support for WordPress functionality in fragment caching for the page " +"caching engine. Use of this feature may increase response times." +msgstr "" + +#: inc/options/pgcache.php:293 +msgid "Late caching:" +msgstr "" + +#: inc/options/pgcache.php:297 +msgid "" +"Overwrites key of page caching via custom filters by postponing entry " +"extraction during the init action." +msgstr "" + +#: inc/options/pgcache.php:312 +msgid "Compatibility mode:" +msgstr "" + +#: inc/options/pgcache.php:315 +msgid "" +"Decreases performance by ~20% at scale in exchange for increasing " +"interoperability with more hosting environments and WordPress idiosyncrasies." +" This option should be enabled for most sites." +msgstr "" + +#: inc/options/pgcache.php:320 +msgid "Charset:" +msgstr "" + +#: inc/options/pgcache.php:323 +msgid "" +"Resolve issues incorrect odd character encoding that may appear in cached " +"pages." +msgstr "" + +#: inc/options/pgcache.php:328 +msgid "Reject HEAD requests:" +msgstr "" + +#: inc/options/pgcache.php:335 +msgid "" +"If disabled, HEAD requests can often be cached resulting in \"empty pages\" " +"being returned for subsequent requests for a URL." +msgstr "" + +#: inc/options/pgcache.php:363 +msgid "" +"Significantly reduce the default " +"TTL for comment cookies to reduce the number of authenticated user " +"traffic. Enter -1 to revert to default " +"TTL." +msgstr "" + +#: inc/options/pgcache.php:372 +msgid "" +"Always cache URLs that " +"use these query string name-value pairs. The value part is not required. But " +"if used, separate name-value pairs with an equals sign (i.e., name=value). " +"Each pair should be on their own line." +msgstr "" + +#: inc/options/pgcache.php:381 +msgid "Never send cache pages for these user agents." +msgstr "" + +#: inc/options/pgcache.php:390 +msgid "Never cache pages that use the specified cookies." +msgstr "" + +#: inc/options/pgcache.php:403 #, php-format msgid "" -"%s to make existing file modifications visible to visitors with a primed " -"cache." +"Always ignore the specified pages / directories. Supports regular " +"expressions (See FAQ)" msgstr "" -#: inc/options/minify.php:41 +#: inc/options/pgcache.php:417 +msgid "Always ignore all pages filed under the specified category slugs." +msgstr "" + +#: inc/options/pgcache.php:426 +msgid "Always ignore all pages filed under the specified tag slugs." +msgstr "" + +#: inc/options/pgcache.php:435 +msgid "Always ignore all pages filed under the specified author usernames." +msgstr "" + +#: inc/options/pgcache.php:444 msgid "" -"If disabled, CSS and " -"JS embeddings will use GET variables " -"instead of \"fancy\" links." +"Always ignore all pages filed under the specified custom fields. Separate " +"name-value pairs with an equals sign (i.e., name=value)." msgstr "" -#: inc/options/minify.php:47 +#: inc/options/pgcache.php:454 +#, php-format msgid "" -"Authenticated users will not receive minified pages if this option is " -"enabled." +"Cache the specified pages / directories even if listed in the \"never cache " +"the following pages\" field. Supports regular expression (See " +"FAQ)" msgstr "" -#: inc/options/minify.php:59 -msgid "Admin Notification" +#: inc/options/pgcache.php:465 +msgid "Cache the specified pages even if they don't have tailing slash." msgstr "" -#: inc/options/minify.php:60 -msgid "Email Notification" +#: inc/options/pgcache.php:475 +msgid "Specify additional page headers to cache." msgstr "" -#: inc/options/minify.php:61 -msgid "Both Admin & Email Notification" -msgstr "" - -#: inc/options/minify.php:63 -msgid "Notify when minify cache creation errors occur." -msgstr "" - -#: inc/options/minify.php:77 +#: inc/options/pgcache.php:483 msgid "" -"HTML minify settings:" +"Return correct Content-Type header for XML files (e.g., feeds and sitemaps). Slows down cache " +"engine." msgstr "" -#: inc/options/minify.php:105 -msgid "Do not remove comments that contain these terms." -msgstr "" - -#: inc/options/minify.php:133 -msgid "JS minify settings:" -msgstr "" - -#: inc/options/minify.php:136 -msgid "Operations in areas:" -msgstr "" - -#: inc/options/minify.php:140 -msgid "Before </head>" -msgstr "" - -#: inc/options/minify.php:143 inc/options/minify.php:157 -#: inc/options/minify.php:168 -msgid "Default (blocking)" -msgstr "" - -#: inc/options/minify.php:144 inc/options/minify.php:158 -#: inc/options/minify.php:169 -msgid "Non-blocking using JS" -msgstr "" - -#: inc/options/minify.php:145 inc/options/minify.php:159 -#: inc/options/minify.php:170 -msgid "Non-blocking using \"async\"" -msgstr "" - -#: inc/options/minify.php:146 inc/options/minify.php:160 -#: inc/options/minify.php:171 -msgid "Non-blocking using \"defer\"" -msgstr "" - -#: inc/options/minify.php:148 inc/options/minify.php:161 -#: inc/options/minify.php:172 -msgid "Non-blocking using \"extsrc\"" -msgstr "" - -#: inc/options/minify.php:149 inc/options/minify.php:162 -#: inc/options/minify.php:173 -msgid "Non-blocking using \"asyncsrc\"" -msgstr "" - -#: inc/options/minify.php:211 -msgid "JS file management:" -msgstr "" - -#: inc/options/minify.php:215 inc/options/minify.php:340 -#: inc/options/mobile.php:45 inc/options/referrer.php:45 -msgid "Theme:" -msgstr "" - -#: inc/options/minify.php:223 -msgid "" -"Files are minified by template. First select the theme to manage, then add " -"scripts used in all templates to the \"All Templates\" group. Use the menu " -"above to manage scripts unique to a specific template. If necessary drag " -"& drop to resolve dependency issues (due to incorrect order)." -msgstr "" - -#: inc/options/minify.php:271 -msgid "No JS files added" -msgstr "" - -#: inc/options/minify.php:272 -msgid "Add a script" -msgstr "" - -#: inc/options/minify.php:287 -msgid "CSS minify settings:" -msgstr "" - -#: inc/options/minify.php:336 -msgid "CSS file management:" -msgstr "" - -#: inc/options/minify.php:348 -msgid "" -"Files are minified by template. First select the theme to manage, then add " -"style sheets used in all templates to the \"All Templates\" group. Use the " -"menu above to manage style sheets unique to a specific template. If " -"necessary drag & drop to resolve dependency issues (due to incorrect " -"order)." -msgstr "" - -#: inc/options/minify.php:388 -msgid "No CSS files added" -msgstr "" - -#: inc/options/minify.php:389 -msgid "Add a style sheet" -msgstr "" - -#: inc/options/minify.php:406 -msgid "" -"Do not automatically attempt to determine the optimal file name length " -"minify files created in auto mode." -msgstr "" - -#: inc/options/minify.php:410 -msgid "" -"Change this value to decrease or determine the number of minified files that " -"are generated.\n" -" The more CSS / JS files you have the " -"more files will be generated because their file names are combined in\n" -" the final URL of the minified file name. File name length is only applicable when " -"minify is in auto mode and file name length testing is enabled. The maximum " -"file name length value is 246." -msgstr "" - -#: inc/options/minify.php:437 -msgid "" -"Specify the interval between download and update of external files in the " -"minify cache. Hint: 6 hours is 21600 seconds. 12 hours is 43200 seconds. 24 " -"hours is 86400 seconds." -msgstr "" - -#: inc/options/minify.php:454 -msgid "Always ignore the specified pages / directories." -msgstr "" - -#: inc/options/minify.php:462 -msgid "Always ignore the specified JS files." -msgstr "" - -#: inc/options/minify.php:470 -msgid "Always ignore the specified CSS files." -msgstr "" - -#: inc/options/minify.php:479 -msgid "Specify user agents that will never receive minified content." -msgstr "" - -#: inc/options/minify.php:489 -msgid "Specify external files/libraries that should be combined." -msgstr "" - -#: inc/options/minify.php:506 +#: inc/options/pgcache.php:497 msgid "" "Enable HTTP " -"compression in the \"Cascading Style Sheets & JavaScript\" section on " +"HTML\" section on " +"Browser Cache Settings tab." +msgstr "" + +#: inc/options/pgcache.php:498 +msgid "" +"The TTL of page cache files is set " +"via the \"Expires header lifetime\" field in the \"HTML\" section on Browser Cache Settings tab." msgstr "" -#: inc/options/minify.php:507 +#: inc/popup/cdn_rename_domain.php:17 msgid "" -"The TTL of page cache files is set " -"via the \"Expires header lifetime\" field in the \"Cascading Style Sheets " -"& JavaScript\" section on Browser Cache Settings tab." +"This tool allows you to modify the URL of Media Library attachments. Use it " +"if the \"WordPress address (" +"URL)\" value has been changed in the past." msgstr "" -#: inc/options/minify/ccjs2.php:8 +#: inc/popup/cdn_rename_domain.php:20 inc/popup/cdn_import_library.php:21 +msgid "Total posts:" +msgstr "" + +#: inc/popup/cdn_rename_domain.php:24 inc/popup/cdn_export_file.php:31 +#: inc/popup/cdn_export_library.php:24 inc/popup/cdn_import_library.php:25 +msgid "Processed:" +msgstr "" + +#: inc/popup/cdn_rename_domain.php:28 inc/popup/cdn_export_file.php:35 +#: inc/popup/cdn_export_library.php:28 inc/popup/cdn_import_library.php:29 +msgid "Status:" +msgstr "" + +#: inc/popup/cdn_rename_domain.php:32 inc/popup/cdn_export_file.php:39 +#: inc/popup/cdn_export_library.php:32 inc/popup/cdn_import_library.php:33 +msgid "Time elapsed:" +msgstr "" + +#: inc/popup/cdn_rename_domain.php:36 inc/popup/cdn_export_file.php:43 +#: inc/popup/cdn_export_library.php:36 inc/popup/cdn_import_library.php:37 +msgid "Last response:" +msgstr "" + +#: inc/popup/cdn_rename_domain.php:40 +msgid "Domains to rename:" +msgstr "" + +#: inc/popup/cdn_rename_domain.php:43 +msgid "e.g.: domain.com" +msgstr "" + +#: inc/popup/cdn_rename_domain.php:49 inc/popup/cdn_export_file.php:49 +#: inc/popup/cdn_export_library.php:42 inc/popup/cdn_import_library.php:59 +msgid "Start" +msgstr "" + +#: inc/popup/cdn_export_file.php:24 inc/popup/cdn_export_library.php:17 +msgid "" +"This tool will upload files of the selected type to content delivery network " +"provider." +msgstr "" + +#: inc/popup/cdn_export_file.php:27 +msgid "Total files:" +msgstr "" + +#: inc/popup/pagespeed_results.php:11 +msgid "Page Speed Score:" +msgstr "" + +#: inc/popup/pagespeed_results.php:15 +msgid "Expand all" +msgstr "" + +#: inc/popup/pagespeed_results.php:16 +msgid "Collapse all" +msgstr "" + +#: inc/popup/pagespeed_results.php:17 +msgid "Refresh analysis" +msgstr "" + +#: inc/popup/pagespeed_results.php:48 +msgid "Resolution:" +msgstr "" + +#: inc/popup/pagespeed_results.php:56 +msgid "Unable to fetch Page Speed results." +msgstr "" + +#: inc/popup/pagespeed_results.php:58 +msgid "Refresh Analysis" +msgstr "" + +#: inc/popup/cdn_purge.php:11 +msgid "" +"Remove objects from the " +"CDN by specifying the relative path on individual lines below and " +"clicking the \"Purge\" button when done. For example:" +msgstr "" + +#: inc/popup/cdn_purge.php:17 +msgid "the directory itself (only when accessed directly without any file)." +msgstr "" + +#: inc/popup/cdn_purge.php:18 +msgid "" +"all files in the directory with no extension, with all parameter variations." +msgstr "" + +#: inc/popup/cdn_purge.php:19 +msgid "all files in the directory whose extension is \"jpg\"." +msgstr "" + +#: inc/popup/cdn_purge.php:20 +msgid "" +"the specific file (when the file does not have an extension), and without " +"parameters." +msgstr "" + +#: inc/popup/cdn_purge.php:21 +msgid "the specific file with its extension, and without parameters." +msgstr "" + +#: inc/popup/cdn_purge.php:22 +msgid "the specific file with its extension, with all variation of parameters." +msgstr "" + +#: inc/popup/cdn_purge.php:23 +msgid "the specific file with its extension, with the specific parameters." +msgstr "" + +#: inc/popup/cdn_purge.php:35 +msgid "Files to purge:" +msgstr "" + +#: inc/popup/cdn_export_library.php:20 +msgid "Total media library attachments:" +msgstr "" + +#: inc/popup/cdn_import_library.php:18 +msgid "" +"This tool will copy post or page attachments into the Media Library allowing " +"WordPress to work as intended." +msgstr "" + +#: inc/popup/cdn_import_library.php:42 +msgid "" +"Create a list of permanent (301) redirects for use in your site's .htaccess " +"file" +msgstr "" + +#: inc/popup/cdn_import_library.php:47 +msgid "" +"Create a list of redirects to " +"CDN (hostname specified in hostname field #1.)" +msgstr "" + +#: inc/popup/cdn_import_library.php:70 +msgid "" +"Add the following directives to your .htaccess file or if there are several " +"hundred they should be added directly to your configuration file:" +msgstr "" + +#: inc/popup/cdn_queue.php:10 +msgid "This tool lists the pending file uploads and deletions." +msgstr "" + +#: inc/popup/cdn_queue.php:12 +msgid "Upload queue" +msgstr "" + +#: inc/popup/cdn_queue.php:13 +msgid "Delete queue" +msgstr "" + +#: inc/popup/cdn_queue.php:14 +msgid "Purge queue" +msgstr "" + +#: inc/popup/cdn_queue.php:21 inc/popup/cdn_queue.php:54 +#: inc/popup/cdn_queue.php:84 +msgid "Local Path" +msgstr "" + +#: inc/popup/cdn_queue.php:22 inc/popup/cdn_queue.php:55 +#: inc/popup/cdn_queue.php:85 +msgid "Remote Path" +msgstr "" + +#: inc/popup/cdn_queue.php:23 inc/popup/cdn_queue.php:56 +#: inc/popup/cdn_queue.php:86 +msgid "Last Error" +msgstr "" + +#: inc/popup/cdn_queue.php:24 inc/popup/cdn_queue.php:57 +#: inc/popup/cdn_queue.php:87 +msgid "Date" +msgstr "" + +#: inc/popup/cdn_queue.php:40 +msgid "Empty upload queue" +msgstr "" + +#: inc/popup/cdn_queue.php:43 +msgid "Process CDN queue now" +msgstr "" + +#: inc/popup/cdn_queue.php:46 +msgid "Upload queue is empty" +msgstr "" + +#: inc/popup/cdn_queue.php:73 +msgid "Empty delete queue" +msgstr "" + +#: inc/popup/cdn_queue.php:76 +msgid "Delete queue is empty" +msgstr "" + +#: inc/popup/cdn_queue.php:103 +msgid "Empty purge queue" +msgstr "" + +#: inc/popup/cdn_queue.php:106 +msgid "Purge queue is empty" +msgstr "" + +#: inc/options/edd/buy.php:9 +#, php-format +msgid "Unlock more speed, %s now!" +msgstr "" + +#: inc/options/edd/buy.php:13 +#, php-format +msgid "Please enter the license key you received after successful checkout %s." +msgstr "" + +#: inc/options/edd/buy.php:14 +msgid "here" +msgstr "" + +#: inc/options/minify/ccjs2.php:8 inc/options/minify/googleccjs2.php:8 msgid "Whitespace only" msgstr "" -#: inc/options/minify/ccjs2.php:9 +#: inc/options/minify/ccjs2.php:9 inc/options/minify/googleccjs2.php:9 msgid "Simple optimizations" msgstr "" -#: inc/options/minify/ccjs2.php:10 +#: inc/options/minify/ccjs2.php:10 inc/options/minify/googleccjs2.php:10 msgid "Advanced optimizations" msgstr "" -#: inc/options/minify/ccjs2.php:32 +#: inc/options/minify/ccjs2.php:50 inc/options/minify/googleccjs2.php:18 msgid "Test Closure Compiler" msgstr "" +#: inc/options/minify/yuicss2.php:37 inc/options/minify/yuijs2.php:25 +msgid "Test YUI Compressor" +msgstr "" + +#: inc/options/minify/css.php:17 +msgid "" +"Eliminate render-blocking " +"CSS by moving it to " +"HTTP body" +msgstr "" + +#: inc/options/minify/css.php:20 +msgid "" +"Website visitors cannot navigate your website until a given page is ready - " +"reduce the wait time with this feature." +msgstr "" + +#: inc/options/minify/css.php:22 +msgid "" +"Opportunities to improve user experience exist in nearly every aspect of " +"your website. Once the components are delivered to the web browser there’s " +"an opportunity to improve the performance of how a given page is painted in " +"the browser. Enable, this feature to reduce wait times and ensure that users " +"can interact with your website as quickly as possible." +msgstr "" + +#: inc/options/minify/css.php:24 +msgid "" +"Faster paint time is a key last step in lowering bounce rates even for " +"repeat page views." +msgstr "" + #: inc/options/minify/csstidy2.php:8 msgid "Highest (no readability, smallest size)" msgstr "" @@ -3612,3585 +7550,553 @@ msgid "Safe optimisations" msgstr "" #: inc/options/minify/csstidy2.php:17 +msgid "Level II optimisations" +msgstr "" + +#: inc/options/minify/csstidy2.php:18 msgid "All optimisations" msgstr "" -#: inc/options/minify/csstidy2.php:21 +#: inc/options/minify/csstidy2.php:22 msgid "None" msgstr "" -#: inc/options/minify/csstidy2.php:22 +#: inc/options/minify/csstidy2.php:23 msgid "Lowercase" msgstr "" -#: inc/options/minify/csstidy2.php:23 +#: inc/options/minify/csstidy2.php:24 msgid "Uppercase" msgstr "" -#: inc/options/minify/csstidy2.php:27 +#: inc/options/minify/csstidy2.php:28 msgid "Do not change anything" msgstr "" -#: inc/options/minify/csstidy2.php:28 +#: inc/options/minify/csstidy2.php:29 msgid "Only seperate selectors (split at ,)" msgstr "" -#: inc/options/minify/csstidy2.php:29 +#: inc/options/minify/csstidy2.php:30 msgid "Merge selectors with the same properties (fast)" msgstr "" -#: inc/options/minify/yuicss2.php:17 inc/options/minify/yuijs2.php:19 -msgid "Test YUI Compressor" -msgstr "" - -#: inc/options/minify/yuijs2.php:3 lib/W3/UI/Settings/Minify.php:48 -#: lib/W3/UI/Settings/Minify.php:81 -msgid "Path to JAVA executable:" -msgstr "" - -#: inc/options/minify/yuijs2.php:10 lib/W3/UI/Settings/Minify.php:49 -#: lib/W3/UI/Settings/Minify.php:82 -msgid "Path to JAR file:" -msgstr "" - -#: inc/options/minify/yuijs2.php:28 +#: inc/options/minify/yuijs2.php:34 msgid "symbols (set to 0 to disable)" msgstr "" -#: inc/options/mobile.php:12 +#: inc/options/parts/memcached_extension.php:23 +#: inc/options/parts/redis_extension.php:25 inc/options/parts/memcached.php:22 +#: inc/options/parts/redis.php:23 msgid "" -"User agent group support is always enabled." +"Multiple servers may be used and seperated by a comma; e.g. 192.168.1.100:" +"11211, domain.com:22122" msgstr "" -#: inc/options/mobile.php:19 inc/options/referrer.php:19 -msgid "Create a group" +#: inc/options/parts/memcached_extension.php:30 +#: inc/options/parts/redis_extension.php:32 inc/options/parts/memcached.php:26 +#: inc/options/parts/redis.php:27 +msgid "Use persistent connection:" msgstr "" -#: inc/options/mobile.php:19 -msgid "" -"of user agents by specifying names in the user agents field. Assign a set of " -"user agents to use a specific theme, redirect them to another domain or if " -"an existing mobile plugin is active, create user agent groups to ensure that " -"a unique cache is created for each user agent group. Drag and drop groups " -"into order (if needed) to determine their priority (top -> down)." -msgstr "" - -#: inc/options/mobile.php:28 inc/options/referrer.php:28 -msgid "Group name:" -msgstr "" - -#: inc/options/mobile.php:36 inc/options/referrer.php:36 -msgid "Enabled:" -msgstr "" - -#: inc/options/mobile.php:54 -msgid "" -"Assign this group of user agents to a specific theme. Selecting \"Pass-" -"through\" allows any plugin(s) (e.g. mobile plugins) to properly handle " -"requests for these user agents. If the \"redirect users to\" field is not " -"empty, this setting is ignored." -msgstr "" - -#: inc/options/mobile.php:59 inc/options/referrer.php:59 -msgid "Redirect users to:" -msgstr "" - -#: inc/options/mobile.php:63 -msgid "" -"A 302 redirect is used to send this group of users to another hostname " -"(domain); recommended if a 3rd party service provides a mobile version of " -"your site." -msgstr "" - -#: inc/options/mobile.php:68 -msgid "User agents:" -msgstr "" - -#: inc/options/mobile.php:72 -msgid "" -"Specify the user agents for this group. Remember to escape special " -"characters like spaces, dots or dashes with a backslash. Regular expressions " -"are also supported." -msgstr "" - -#: inc/options/mobile.php:79 -msgid "" -"No groups added. All user agents recieve the same page and minify cache " -"results." -msgstr "" - -#: inc/options/mobile.php:92 -msgid "" -"Enabling even a single user agent group will set a cookie called " -"\"w3tc_referrer.\" It is used to ensure a consistent user experience across " -"page views. Make sure any reverse proxy servers etc respect this cookie for " -"proper operation." -msgstr "" - -#: inc/options/mobile.php:93 -msgid "" -"Per the above, make sure that visitors are notified about the cookie as per " -"any regulations in your market." -msgstr "" - -#: inc/options/new_relic.php:4 -msgid "Monitoring via New Relic is currently" -msgstr "" - -#: inc/options/new_relic.php:8 -msgid "Application Settings" -msgstr "" - -#: inc/options/new_relic.php:67 -#, php-format -msgid "" -"Application settings could not be retrieved. New Relic may not be properly " -"configured, review the settings." -msgstr "" - -#: inc/options/new_relic.php:69 -msgid "Application settings are only visible when New Relic is enabled" -msgstr "" - -#: inc/options/new_relic.php:75 -msgid "Dashboard Settings" -msgstr "" - -#: inc/options/new_relic.php:81 -msgid "" -"How many minutes data retrieved from New Relic should be stored. Minimum is " -"1 minute." -msgstr "" - -#: inc/options/new_relic.php:92 -msgid "Behavior Settings" -msgstr "" - -#: inc/options/new_relic.php:118 -msgid "" -"This enables inclusion of RUM when using Page Cache together with Browser Cache gzip or when " -"using Page Cache with Disc: Enhanced" -msgstr "" - -#: inc/options/new_relic.php:134 -msgid "" -"This means that the data collected for sites in the network will be included " -"in the main network sites data on New Relic." -msgstr "" - -#: inc/options/new_relic.php:146 -msgid "" -"This is required when using New Relic on a network install to set the proper " -"names for sites." -msgstr "" - -#: inc/options/new_relic.php:151 -msgid "" -"Enable this to dynamically set proper application name. (See New Relic Per-directory " -"settings for other methods." -msgstr "" - -#: inc/options/objectcache.php:7 -#, php-format -msgid "Object caching via %1$s is currently %2$s" -msgstr "" - -#: inc/options/objectcache.php:58 -msgid "Groups shared amongst sites in network mode." -msgstr "" - -#: inc/options/objectcache.php:66 -msgid "Groups that should not be cached." -msgstr "" - -#: inc/options/objectcache.php:73 -msgid "" -"Enabling this option will increase load on server on certain actions but " -"will guarantee that\n" -" the Object Cache is always clean and contains latest " -"changes. Enable if you are experiencing issues\n" -" with options displaying wrong value/state (checkboxes " -"etc)." -msgstr "" - -# php-format -#: inc/options/pgcache.php:7 -#, php-format -msgid "Page caching via %1$s is currently %2$s" -msgstr "" - -#: inc/options/pgcache.php:15 -#, php-format -msgid "To rebuild the page cache use the %s operation" -msgstr "" - -#: inc/options/pgcache.php:29 -msgid "" -"For many blogs this is your most visited page, it is recommended that you " -"cache it." -msgstr "" - -#: inc/options/pgcache.php:36 -msgid "" -"By default the front page is cached when using static front page in reading " -"settings." -msgstr "" - -#: inc/options/pgcache.php:43 -msgid "" -"Even if using a feed proxy service (like FeedBurner), enabling this option is " -"still recommended." -msgstr "" - -#: inc/options/pgcache.php:49 -msgid "" -"Cache SSL requests " -"(uniquely) for improved performance." -msgstr "" - -#: inc/options/pgcache.php:55 -msgid "Search result (and similar) pages will be cached if enabled." -msgstr "" - -#: inc/options/pgcache.php:61 -msgid "" -"Reduce server load by caching 404 pages. If the disk enhanced method of disk " -"caching is used, 404 pages will be returned with a 200 response code. Use at " -"your own risk." +#: inc/options/parts/memcached_extension.php:39 +#: inc/options/parts/memcached.php:33 +msgid "Node Auto Discovery:" msgstr "" -#: inc/options/pgcache.php:67 +#: inc/options/parts/memcached_extension.php:45 +#: inc/options/parts/memcached.php:41 msgid "" -"Cache only requests with the same URL as the site's site address." +"ElastiCache PHP module " +"not found" msgstr "" -#: inc/options/pgcache.php:73 +#: inc/options/parts/memcached_extension.php:46 msgid "" -"Unauthenticated users may view a cached version of the last authenticated " -"user's view of a given page. Disabling this option is not recommended." -msgstr "" - -#: inc/options/pgcache.php:79 -msgid "Select user roles that should not receive cached pages:" +"When Amazon ElastiCache used, specify configuration endpoint as Memecached " +"host" msgstr "" -#: inc/options/pgcache.php:112 +#: inc/options/parts/memcached_extension.php:56 +#: inc/options/parts/memcached.php:66 msgid "" -"The number of seconds to wait before creating another set of cached pages." +"Specify memcached username, when SASL authentication used" msgstr "" -#: inc/options/pgcache.php:121 +#: inc/options/parts/memcached_extension.php:58 +#: inc/options/parts/memcached.php:68 msgid "" -"Limit the number of pages to create per batch. Fewer pages may be better for " -"under-powered servers." +"
    Available when memcached extension installed, built with SASL" msgstr "" -#: inc/options/pgcache.php:130 +#: inc/options/parts/memcached_extension.php:68 +#: inc/options/parts/memcached.php:81 msgid "" -"A
    compliant sitemap can be used to specify the pages to " -"maintain in the primed cache. Pages will be cached according to the " -"priorities specified in the XML file. Due to its completeness and integrations, WordPress SEO is recommended for use with this feature." +"Specify memcached password, when SASL authentication used" msgstr "" -#: inc/options/pgcache.php:150 -msgid "Purge Policy: " +#: inc/options/parts/redis_extension.php:44 inc/options/parts/redis.php:40 +msgid "Database ID to use" msgstr "" -#: inc/options/pgcache.php:154 -msgid "" -"Specify the pages and feeds to purge when posts are created, edited, or " -"comments posted. The defaults are recommended because additional options may " -"reduce server performance:" +#: inc/options/parts/redis_extension.php:52 +msgid "Specify redis password" msgstr "" -#: inc/options/pgcache.php:205 +#: inc/options/parts/memcached.php:29 msgid "" -"Specify number of pages that lists posts (archive etc) that should be purged " -"on post updates etc, i.e example.com/ ... example.com/page/5.
    0 means " -"all pages that lists posts are purged, i.e example.com/page/2 ... ." +"Using persistent connection doesn't reinitialize memcached driver on each " +"request" msgstr "" -#: inc/options/pgcache.php:214 +#: inc/options/parts/memcached.php:43 msgid "" -"Specify additional pages to purge. Including parent page in path. Ex: parent/" -"posts." +"When Amazon ElastiCache used, specify configuration endpoint as Memcached " +"host" msgstr "" -#: inc/options/pgcache.php:221 -msgid "Specify a regular expression that matches your sitemaps." +#: inc/options/parts/memcached.php:49 +msgid "Use binary protocol:" msgstr "" -#: inc/options/pgcache.php:235 -msgid "Late initialization:" +#: inc/options/parts/memcached.php:52 +msgid "Using binary protocol can increase throughput." msgstr "" -#: inc/options/pgcache.php:239 +#: inc/options/parts/redis.php:30 msgid "" -"Enables support for WordPress functionality in fragment caching for the page " -"caching engine. As a result, use of this feature will increase response " -"times." +"Using persistent connection doesn't reinitialize redis driver on each request" msgstr "" -#: inc/options/pgcache.php:260 -msgid "Compatibility mode" -msgstr "" - -#: inc/options/pgcache.php:263 +#: inc/options/parts/redis.php:52 msgid "" -"Decreases performance by ~20% at scale in exchange for increasing " -"interoperability with more hosting environments and WordPress " -"idiosyncrasies. This option should be enabled for most sites" +"Specify redis password, when SASL authentication used" msgstr "" -#: inc/options/pgcache.php:268 -msgid "Charset:" +#: inc/options/extensions/list.php:30 inc/options/extensions/list.php:157 +msgid "Bulk Actions" msgstr "" -#: inc/options/pgcache.php:271 -msgid "" -"Resolve issues incorrect odd character encoding that may appear in cached " -"pages." +#: inc/options/extensions/list.php:31 inc/options/extensions/list.php:158 +msgid "Activate" msgstr "" -#: inc/options/pgcache.php:276 -msgid "Reject HEAD requests:" +#: inc/options/extensions/list.php:46 inc/options/extensions/list.php:51 +msgid "Select All" msgstr "" -#: inc/options/pgcache.php:283 -msgid "" -"If disabled, HEAD requests can often be cached resulting in \"empty pages\" " -"being returned for subsequent requests for a URL." +#: inc/options/extensions/list.php:46 inc/options/extensions/list.php:51 +msgid "Extension" msgstr "" -#: inc/options/pgcache.php:311 -msgid "" -"Significantly reduce the default TTL for comment cookies to reduce the number of authenticated user " -"traffic. Enter -1 to revert to default TTL." +#: inc/options/extensions/list.php:46 inc/options/extensions/list.php:51 +msgid "Description" msgstr "" -#: inc/options/pgcache.php:320 -msgid "Always cache URLs with these query strings." +#: inc/options/extensions/list.php:91 +msgid "Deactivate this extension" msgstr "" -#: inc/options/pgcache.php:329 -msgid "Never send cache pages for these user agents." +#: inc/options/extensions/list.php:100 +msgid "Activate this extension" msgstr "" -#: inc/options/pgcache.php:338 -msgid "Never cache pages that use the specified cookies." +#: inc/options/extensions/list.php:108 +msgid "Disabled: see Requirements" msgstr "" -#: inc/options/pgcache.php:350 +#: inc/options/extensions/list.php:128 #, php-format -msgid "" -"Always ignore the specified pages / directories. Supports regular " -"expressions (See FAQ)" +msgid "Requirements: %s" msgstr "" -#: inc/options/pgcache.php:361 +#: inc/options/extensions/list.php:135 #, php-format -msgid "" -"Cache the specified pages / directories even if listed in the \"never cache " -"the following pages\" field. Supports regular expression (See FAQ)" -msgstr "" - -#: inc/options/pgcache.php:371 -msgid "Cache the specified pages even if they don't have tailing slash." -msgstr "" - -#: inc/options/pgcache.php:381 -msgid "Specify additional page headers to cache." -msgstr "" - -#: inc/options/pgcache.php:389 -msgid "" -"Return correct Content-Type header for XML files. Slows down cache engine." -msgstr "" - -#: inc/options/pgcache.php:406 -msgid "" -"Enable HTTP " -"compression in the \"HTML\" section on Browser " -"Cache Settings tab." -msgstr "" - -#: inc/options/pgcache.php:407 -msgid "" -"The TTL of page cache files is set " -"via the \"Expires header lifetime\" field in the \"HTML\" section on Browser Cache Settings tab." +msgid "Version %s" msgstr "" -# php-format -#: inc/options/pro/fragmentcache.php:6 +#: inc/options/extensions/list.php:137 #, php-format -msgid "Fragment caching via %s is currently %s." +msgid "By %s" msgstr "" -#: inc/options/pro/fragmentcache.php:10 -msgid "Empty the entire cache" +#: inc/options/extensions/list.php:142 inc/options/extensions/list.php:143 +msgid "Visit extension site" msgstr "" -#: inc/options/pro/fragmentcache.php:11 -msgid "if needed." +#: inc/options/enterprise/dbcluster-config.php:12 +msgid "Database Cluster Configuration File" msgstr "" -#: inc/options/pro/fragmentcache.php:17 inc/widget/new_relic.php:11 -msgid "Overview" -msgstr "" - -#: inc/options/pro/fragmentcache.php:20 -msgid "Registered fragment groups:" +#: inc/options/enterprise/dbcluster-config.php:20 +msgid "" +"Note: Changes will have immediate effect on your database configuration. If " +"the application stops working creating the settings file, edit or remove " +"this configuration file manually at /wp-content/db-cluster-config." +"php." msgstr "" -#: inc/options/pro/fragmentcache.php:31 -msgid "The groups above will be flushed upon setting changes." +#: inc/options/enterprise/dbcluster-config.php:28 +msgid "Save configuration file" msgstr "" -#: inc/options/pro/fragmentcache.php:33 -msgid "No groups have been registered." +#: inc/options/cdn/att.php:9 inc/options/cdn/edgecast.php:9 +msgid "Account #:" msgstr "" -#: inc/options/pro/fragmentcache.php:39 -msgid "Registered site-wide fragment groups:" +#: inc/options/cdn/att.php:16 inc/options/cdn/edgecast.php:16 +msgid "Token:" msgstr "" -#: inc/options/pro/fragmentcache.php:50 -msgid "The site-wide groups above will be purged upon setting changes." +#: inc/options/cdn/att.php:23 inc/options/cdn/ftp.php:55 +#: inc/options/cdn/s3_compatible.php:38 inc/options/cdn/cf2.php:37 +#: inc/options/cdn/mirror.php:9 inc/options/cdn/cf.php:46 +#: inc/options/cdn/cotendo.php:30 inc/options/cdn/edgecast.php:23 +#: inc/options/cdn/rscf.php:43 inc/options/cdn/s3.php:46 +#: inc/options/cdn/azure.php:32 +msgid "SSL support:" msgstr "" -#: inc/options/pro/fragmentcache.php:52 -msgid "No site-wide groups have been registered." +#: inc/options/cdn/ftp.php:10 +msgid "" +"Use passive FTP mode" msgstr "" -#: inc/options/pro/fragmentcache.php:94 +#: inc/options/cdn/ftp.php:11 msgid "" -"Specify fragment groups that should be managed by W3 Total Cache. Enter one " -"action per line comma delimited, e.g. (group, action1, action2). Include the " -"prefix used for a transient by a theme or plugin." +"Enable this option only if there are connectivity issues, otherwise it's not " +"recommended." msgstr "" -#: inc/options/referrer.php:12 -msgid "Referrer group support is always enabled" +#: inc/options/cdn/ftp.php:15 +msgid "FTP hostname:" msgstr "" -#: inc/options/referrer.php:19 +#: inc/options/cdn/ftp.php:19 msgid "" -"of referrers by specifying names in the referrers field. Assign a set of " -"referrers to use a specific theme, redirect them to another domain, create " -"referrer groups to ensure that a unique cache is created for each referrer " -"group. Drag and drop groups into order (if needed) to determine their " -"priority (top -> down)." +"Specify the server's address, e.g.: \"ftp.domain.com\". Try \"127.0.0.1\" if " +"using a sub-domain on the same server as your site." msgstr "" -#: inc/options/referrer.php:31 -msgid "Delete group" +#: inc/options/cdn/ftp.php:23 +msgid "FTP connection:" msgstr "" -#: inc/options/referrer.php:49 -msgid "-- Pass-through --" +#: inc/options/cdn/ftp.php:26 +msgid "Plain FTP" msgstr "" -#: inc/options/referrer.php:54 -msgid "" -"Assign this group of referrers to a specific theme. Selecting \"Pass-through" -"\" allows any plugin(s) (e.g. referrer plugins) to properly handle requests " -"for these referrers. If the \"redirect users to\" field is not empty, this " -"setting is ignored." -msgstr "" - -#: inc/options/referrer.php:63 -msgid "" -"A 302 redirect is used to send this group of referrers to another hostname " -"(domain)." +#: inc/options/cdn/ftp.php:27 +msgid "SSL-FTP connection (FTPS)" msgstr "" -#: inc/options/referrer.php:68 lib/W3/UI/Settings/Referrer.php:10 -msgid "Referrers:" +#: inc/options/cdn/ftp.php:28 +msgid "FTP over SSH (SFTP)" msgstr "" -#: inc/options/referrer.php:72 -msgid "" -"Specify the referrers for this group. Remember to escape special characters " -"like spaces, dots or dashes with a backslash. Regular expressions are also " -"supported." +#: inc/options/cdn/ftp.php:33 +msgid "FTP username:" msgstr "" -#: inc/options/referrer.php:79 -msgid "" -"No groups added. All referrers recieve the same page and minify cache " -"results." +#: inc/options/cdn/ftp.php:40 +msgid "FTP password:" msgstr "" -#: inc/options/support.php:9 -msgid "" -"Request premium services, suggest a feature or submit a bug using the form " -"below:" +#: inc/options/cdn/ftp.php:47 +msgid "FTP path:" msgstr "" -#: inc/options/support/form.php:11 +#: inc/options/cdn/ftp.php:51 msgid "" -"All submitted data will not be saved and is used solely for the purposes " -"your support request. You will not be added to a mailing list, solicited " -"without your permission, nor will your site be administered after this " -"support case is closed." +"Specify the directory where files must be uploaded to be accessible in a web " +"browser (the document root)." msgstr "" -#: inc/options/support/form.php:12 +#: inc/options/cdn/ftp.php:67 msgid "" -"Instead of providing your primary administrative or SSH / FTP accounts, create a new administrator account that can be disabled " -"when the support case is closed." -msgstr "" - -#: inc/options/support/form.php:13 -msgid "" -"Please add the domain w3-edge.com to your email whitelist as soon as possible." -msgstr "" - -#: inc/options/support/form.php:25 -msgid "Submit request" -msgstr "" - -#: inc/options/support/form/bug_report.php:2 -msgid "Required Information" -msgstr "" - -#: inc/options/support/form/bug_report.php:5 -#: inc/options/support/form/email_support.php:5 -#: inc/options/support/form/linux_config.php:5 -#: inc/options/support/form/new_feature.php:5 -#: inc/options/support/form/phone_support.php:5 -#: inc/options/support/form/plugin_config.php:5 -#: inc/options/support/form/theme_config.php:5 -#: inc/options/support/select.php:6 -msgid "Request type:" -msgstr "" - -#: inc/options/support/form/bug_report.php:9 -#: inc/options/support/form/email_support.php:9 -#: inc/options/support/form/linux_config.php:9 -#: inc/options/support/form/new_feature.php:9 -#: inc/options/support/form/phone_support.php:9 -#: inc/options/support/form/plugin_config.php:9 -#: inc/options/support/form/theme_config.php:9 -msgid "Blog URL:" +"Use default SSH public/private key " +"files" msgstr "" -#: inc/options/support/form/bug_report.php:17 -#: inc/options/support/form/email_support.php:17 -#: inc/options/support/form/linux_config.php:17 -#: inc/options/support/form/new_feature.php:17 -#: inc/options/support/form/phone_support.php:17 -#: inc/options/support/form/plugin_config.php:17 -#: inc/options/support/form/theme_config.php:17 -msgid "E-Mail:" -msgstr "" - -#: inc/options/support/form/bug_report.php:21 -#: inc/options/support/form/email_support.php:21 -#: inc/options/support/form/linux_config.php:21 -#: inc/options/support/form/new_feature.php:21 -#: inc/options/support/form/phone_support.php:21 -#: inc/options/support/form/plugin_config.php:21 -#: inc/options/support/form/theme_config.php:21 -msgid "Twitter ID:" -msgstr "" - -#: inc/options/support/form/bug_report.php:25 -#: inc/options/support/form/email_support.php:25 -#: inc/options/support/form/linux_config.php:25 -#: inc/options/support/form/new_feature.php:25 -#: inc/options/support/form/phone_support.php:29 -#: inc/options/support/form/plugin_config.php:25 -#: inc/options/support/form/theme_config.php:25 -msgid "Subject:" -msgstr "" - -#: inc/options/support/form/bug_report.php:29 -#: inc/options/support/form/email_support.php:29 -#: inc/options/support/form/linux_config.php:29 -#: inc/options/support/form/new_feature.php:29 -#: inc/options/support/form/phone_support.php:33 -#: inc/options/support/form/plugin_config.php:29 -#: inc/options/support/form/theme_config.php:29 -msgid "Issue description:" -msgstr "" - -#: inc/options/support/form/bug_report.php:33 -#: inc/options/support/form/email_support.php:33 -#: inc/options/support/form/phone_support.php:37 -#: inc/options/support/form/plugin_config.php:33 -#: inc/options/support/form/theme_config.php:33 -msgid "Attach template:" -msgstr "" - -#: inc/options/support/form/bug_report.php:41 -#: inc/options/support/form/email_support.php:41 -#: inc/options/support/form/linux_config.php:33 -#: inc/options/support/form/phone_support.php:45 -#: inc/options/support/form/plugin_config.php:41 -#: inc/options/support/form/theme_config.php:41 -msgid "Attach file:" -msgstr "" - -#: inc/options/support/form/bug_report.php:44 -#: inc/options/support/form/email_support.php:44 -#: inc/options/support/form/linux_config.php:36 -#: inc/options/support/form/phone_support.php:48 -#: inc/options/support/form/plugin_config.php:44 -#: inc/options/support/form/theme_config.php:44 -msgid "Attach more files" -msgstr "" - -#: inc/options/support/form/bug_report.php:50 -#: inc/options/support/form/email_support.php:50 -#: inc/options/support/form/linux_config.php:62 -#: inc/options/support/form/new_feature.php:35 -#: inc/options/support/form/phone_support.php:54 -#: inc/options/support/form/plugin_config.php:58 -#: inc/options/support/form/theme_config.php:70 -msgid "Additional Information" -msgstr "" - -#: inc/options/support/form/bug_report.php:53 -#: inc/options/support/form/email_support.php:53 -#: inc/options/support/form/linux_config.php:65 -#: inc/options/support/form/new_feature.php:38 -#: inc/options/support/form/phone_support.php:25 -#: inc/options/support/form/plugin_config.php:61 -#: inc/options/support/form/theme_config.php:73 -msgid "Phone:" -msgstr "" - -#: inc/options/support/form/bug_report.php:57 -#: inc/options/support/form/email_support.php:57 -#: inc/options/support/form/new_feature.php:42 -#: inc/options/support/form/phone_support.php:57 -msgid "Forum Topic URL:" -msgstr "" - -#: inc/options/support/form/bug_report.php:61 -msgid "WP Admin login:" -msgstr "" - -#: inc/options/support/form/bug_report.php:65 -msgid "WP Admin password:" -msgstr "" - -#: inc/options/support/form/bug_report.php:69 -#: inc/options/support/form/email_support.php:69 -#: inc/options/support/form/linux_config.php:48 -#: inc/options/support/form/phone_support.php:69 -#: inc/options/support/form/plugin_config.php:65 -#: inc/options/support/form/theme_config.php:56 -msgid "" -"SSH / FTP host:" +#: inc/options/cdn/ftp.php:68 +msgid "Enable this option if you don't have special public/private key files." msgstr "" -#: inc/options/support/form/bug_report.php:73 -#: inc/options/support/form/email_support.php:73 -#: inc/options/support/form/linux_config.php:52 -#: inc/options/support/form/phone_support.php:73 -#: inc/options/support/form/plugin_config.php:69 -#: inc/options/support/form/theme_config.php:60 +#: inc/options/cdn/ftp.php:72 msgid "" -"SSH / FTP login:" +"SFTP public key:" msgstr "" -#: inc/options/support/form/bug_report.php:77 -#: inc/options/support/form/email_support.php:77 -#: inc/options/support/form/linux_config.php:56 -#: inc/options/support/form/phone_support.php:77 -#: inc/options/support/form/plugin_config.php:73 -#: inc/options/support/form/theme_config.php:64 +#: inc/options/cdn/ftp.php:79 msgid "" -"SSH / FTP password:" -msgstr "" - -#: inc/options/support/form/bug_report.php:82 -#: inc/options/support/form/email_support.php:82 -#: inc/options/support/form/linux_config.php:70 -#: inc/options/support/form/new_feature.php:47 -#: inc/options/support/form/phone_support.php:82 -#: inc/options/support/form/plugin_config.php:78 -#: inc/options/support/form/theme_config.php:78 -msgid "Would you like to be notified when products are announced and updated?" +"SFTP private key:" msgstr "" -#: inc/options/support/form/bug_report.php:87 -#: inc/options/support/form/email_support.php:87 -#: inc/options/support/form/linux_config.php:75 -#: inc/options/support/form/new_feature.php:52 -#: inc/options/support/form/phone_support.php:87 -#: inc/options/support/form/plugin_config.php:83 -#: inc/options/support/form/theme_config.php:83 -msgid "Yes, please notify me." -msgstr "" - -#: inc/options/support/form/email_support.php:61 -#: inc/options/support/form/linux_config.php:40 -#: inc/options/support/form/phone_support.php:61 -#: inc/options/support/form/plugin_config.php:48 -#: inc/options/support/form/theme_config.php:48 -msgid "WP Admin login:" -msgstr "" - -#: inc/options/support/form/email_support.php:65 -#: inc/options/support/form/linux_config.php:44 -#: inc/options/support/form/phone_support.php:65 -#: inc/options/support/form/plugin_config.php:52 -#: inc/options/support/form/theme_config.php:52 -msgid "WP Admin password:" -msgstr "" - -#: inc/options/support/payment.php:4 -msgid "Make Payment" -msgstr "" - -#: inc/options/support/payment.php:8 -#, php-format -msgid "Price: %.2f USD" -msgstr "" - -#: inc/options/support/payment.php:20 inc/widget/services.php:10 -msgid "Buy now" -msgstr "" - -#: inc/options/support/select.php:3 -msgid "Choose Request Type" -msgstr "" - -#: inc/options/support/select.php:9 -msgid "-- Choose Type --" -msgstr "" - -#: inc/popup/cdn_export_file.php:18 inc/popup/cdn_export_library.php:11 +#: inc/options/cdn/ftp.php:89 msgid "" -"This tool will upload files of the selected type to content delivery network " -"provider." -msgstr "" - -#: inc/popup/cdn_export_file.php:21 -msgid "Total files:" -msgstr "" - -#: inc/popup/cdn_export_file.php:25 inc/popup/cdn_export_library.php:18 -#: inc/popup/cdn_import_library.php:19 inc/popup/cdn_rename_domain.php:18 -msgid "Processed:" -msgstr "" - -#: inc/popup/cdn_export_file.php:29 inc/popup/cdn_export_library.php:22 -#: inc/popup/cdn_import_library.php:23 inc/popup/cdn_rename_domain.php:22 -msgid "Status:" +"Enter the hostname or CNAME(s) " +"of your FTP server " +"configured above, these values will replace your site's hostname in the " +"HTML." msgstr "" -#: inc/popup/cdn_export_file.php:33 inc/popup/cdn_export_library.php:26 -#: inc/popup/cdn_import_library.php:27 inc/popup/cdn_rename_domain.php:26 -msgid "Time elapsed:" +#: inc/options/cdn/ftp.php:94 +msgid "Test FTP server" msgstr "" -#: inc/popup/cdn_export_file.php:37 inc/popup/cdn_export_library.php:30 -#: inc/popup/cdn_import_library.php:31 inc/popup/cdn_rename_domain.php:30 -msgid "Last response:" +#: inc/options/cdn/s3_compatible.php:9 +msgid "API host:" msgstr "" -#: inc/popup/cdn_export_file.php:43 inc/popup/cdn_export_library.php:36 -#: inc/popup/cdn_import_library.php:47 inc/popup/cdn_rename_domain.php:43 -msgid "Start" +#: inc/options/cdn/s3_compatible.php:12 +msgid "Host of API endpoint, comptabile with Amazon S3 API" msgstr "" -#: inc/popup/cdn_export_library.php:14 -msgid "Total media library attachments:" +#: inc/options/cdn/s3_compatible.php:16 inc/options/cdn/cf2.php:14 +#: inc/options/cdn/cf.php:14 inc/options/cdn/s3.php:14 +msgid "Access key ID:" msgstr "" -#: inc/popup/cdn_import_library.php:12 +#: inc/options/cdn/s3_compatible.php:19 msgid "" -"This tool will copy post or page attachments into the Media Library allowing " -"WordPress to work as intended." +"Theme files, media library attachments, CSS, JS files etc " +"will appear to load instantly for site visitors." msgstr "" -#: inc/popup/cdn_import_library.php:15 inc/popup/cdn_rename_domain.php:14 -msgid "Total posts:" +#: inc/options/cdn/s3_compatible.php:24 inc/options/cdn/cf2.php:21 +#: inc/options/cdn/cf.php:21 inc/options/cdn/s3.php:21 +msgid "Secret key:" msgstr "" -#: inc/popup/cdn_import_library.php:36 -msgid "" -"Create a list of permanent (301) redirects for use in your site's .htaccess " -"file" +#: inc/options/cdn/s3_compatible.php:31 inc/options/cdn/cf.php:28 +#: inc/options/cdn/s3.php:28 +msgid "Bucket:" msgstr "" -#: inc/popup/cdn_import_library.php:41 +#: inc/options/cdn/s3_compatible.php:52 inc/options/cdn/s3.php:65 msgid "" -"Create a list of redirects to CDN (hostname specified in hostname field #1.)" +"If you have already added a CNAME to your DNS Zone, enter it here." msgstr "" -#: inc/popup/cdn_import_library.php:58 -msgid "" -"Add the following directives to your .htaccess file or if there are several " -"hundred they should be added directly to your configuration file:" +#: inc/options/cdn/s3_compatible.php:57 inc/options/cdn/s3.php:70 +msgid "Test S3 upload" msgstr "" -#: inc/popup/cdn_purge.php:5 +#: inc/options/cdn/cf2.php:10 inc/options/cdn/cf.php:10 +#: inc/options/cdn/s3.php:10 msgid "" -"Remove objects from the CDN by specifying the relative path on individual " -"lines below and clicking the \"Purge\" button when done. For example:" -msgstr "" - -#: inc/popup/cdn_purge.php:11 -msgid "the directory itself (only when accessed directly without any file)." +"We recommend that you use " +"IAM to create a new policy for AWS services that have limited permissions. A helpful " +"tool: AWS " +"Policy Generator" msgstr "" -#: inc/popup/cdn_purge.php:12 -msgid "" -"all files in the directory with no extension, with all parameter variations." +#: inc/options/cdn/cf2.php:28 +msgid "Origin:" msgstr "" -#: inc/popup/cdn_purge.php:13 -msgid "all files in the directory whose extension is \"jpg\"." +#: inc/options/cdn/cf2.php:32 +msgid "Create distribution" msgstr "" -#: inc/popup/cdn_purge.php:14 +#: inc/options/cdn/cf2.php:53 inc/options/cdn/cf.php:62 msgid "" -"the specific file (when the file does not have an extension), and without " -"parameters." -msgstr "" - -#: inc/popup/cdn_purge.php:15 -msgid "the specific file with its extension, and without parameters." -msgstr "" - -#: inc/popup/cdn_purge.php:16 -msgid "the specific file with its extension, with all variation of parameters." +"If you have already added a CNAME to " +"your DNS Zone, enter it here." msgstr "" -#: inc/popup/cdn_purge.php:17 -msgid "the specific file with its extension, with the specific parameters." +#: inc/options/cdn/cf2.php:58 +msgid "Test CloudFront distribution" msgstr "" -#: inc/popup/cdn_purge.php:29 -msgid "Files to purge:" +#: inc/options/cdn/mirror.php:28 +msgid "Test Mirror" msgstr "" -#: inc/popup/cdn_queue.php:4 -msgid "This tool lists the pending file uploads and deletions." +#: inc/options/cdn/cf.php:42 +msgid "Create as new bucket with distribution" msgstr "" -#: inc/popup/cdn_queue.php:6 -msgid "Upload queue" +#: inc/options/cdn/cf.php:67 +msgid "Test S3 upload & CloudFront distribution" msgstr "" -#: inc/popup/cdn_queue.php:7 -msgid "Delete queue" +#: inc/options/cdn/cotendo.php:16 inc/options/cdn/akamai.php:16 +msgid "Password:" msgstr "" -#: inc/popup/cdn_queue.php:8 -msgid "Purge queue" +#: inc/options/cdn/cotendo.php:23 +msgid "Zones to purge:" msgstr "" -#: inc/popup/cdn_queue.php:15 inc/popup/cdn_queue.php:48 -#: inc/popup/cdn_queue.php:78 -msgid "Local Path" +#: inc/options/cdn/cotendo.php:49 +msgid "Test Cotendo" msgstr "" -#: inc/popup/cdn_queue.php:16 inc/popup/cdn_queue.php:49 -#: inc/popup/cdn_queue.php:79 -msgid "Remote Path" +#: inc/options/cdn/edgecast.php:42 +msgid "Test EdgeCast" msgstr "" -#: inc/popup/cdn_queue.php:17 inc/popup/cdn_queue.php:50 -#: inc/popup/cdn_queue.php:80 -msgid "Last Error" +#: inc/options/cdn/rscf.php:38 inc/options/cdn/azure.php:27 +msgid "Create container" msgstr "" -#: inc/popup/cdn_queue.php:18 inc/popup/cdn_queue.php:51 -#: inc/popup/cdn_queue.php:81 -msgid "Date" -msgstr "" - -#: inc/popup/cdn_queue.php:34 -msgid "Empty upload queue" -msgstr "" - -#: inc/popup/cdn_queue.php:37 -msgid "Process CDN queue now" -msgstr "" - -#: inc/popup/cdn_queue.php:40 -msgid "Upload queue is empty" -msgstr "" - -#: inc/popup/cdn_queue.php:67 -msgid "Empty delete queue" -msgstr "" - -#: inc/popup/cdn_queue.php:70 -msgid "Delete queue is empty" -msgstr "" - -#: inc/popup/cdn_queue.php:97 -msgid "Empty purge queue" -msgstr "" - -#: inc/popup/cdn_queue.php:100 -msgid "Purge queue is empty" -msgstr "" - -#: inc/popup/cdn_rename_domain.php:11 +#: inc/options/cdn/rscf.php:57 msgid "" -"This tool allows you to modify the URL of Media Library attachments. Use it " -"if the \"WordPress address (URL)\" value has been changed in the past." -msgstr "" - -#: inc/popup/cdn_rename_domain.php:34 -msgid "Domains to rename:" -msgstr "" - -#: inc/popup/cdn_rename_domain.php:37 -msgid "e.g.: domain.com" -msgstr "" - -#: inc/popup/pagespeed_results.php:5 -msgid "Page Speed Score:" -msgstr "" - -#: inc/popup/pagespeed_results.php:9 -msgid "Expand all" -msgstr "" - -#: inc/popup/pagespeed_results.php:10 -msgid "Collapse all" -msgstr "" - -#: inc/popup/pagespeed_results.php:11 -msgid "Refresh analysis" -msgstr "" - -#: inc/popup/pagespeed_results.php:42 -msgid "Resolution:" -msgstr "" - -#: inc/popup/pagespeed_results.php:50 -msgid "Unable to fetch Page Speed results." +"Enter the hostname provided by Rackspace Cloud Files, this value will " +"replace your site's hostname in the HTML." msgstr "" -#: inc/popup/pagespeed_results.php:52 -msgid "Refresh Analysis" +#: inc/options/cdn/rscf.php:62 +msgid "Test Cloud Files upload" msgstr "" -#: inc/widget/latest.php:3 inc/widget/latest_news.php:3 -msgid "Loading…" +#: inc/options/cdn/s3.php:42 +msgid "Create as new bucket" msgstr "" -#: inc/widget/latest.php:6 inc/widget/latest_news.php:6 -msgid "This widget requires JavaScript." +#: inc/options/cdn/s3.php:63 +msgid "or CNAME:" msgstr "" -#: inc/widget/maxcdn.php:16 inc/widget/netdna.php:16 -#, php-format -msgid "Status: %s" -msgstr "" - -#: inc/widget/maxcdn.php:17 inc/widget/netdna.php:17 -#, php-format -msgid "Content Zone: %s" -msgstr "" - -#: inc/widget/maxcdn.php:23 inc/widget/netdna.php:23 -msgid "Manage" -msgstr "" - -#: inc/widget/maxcdn.php:24 inc/widget/netdna.php:24 -msgid "Reports" -msgstr "" - -#: inc/widget/maxcdn.php:29 inc/widget/netdna.php:29 -msgid "Reports - 30 days" -msgstr "" - -#: inc/widget/maxcdn.php:31 inc/widget/netdna.php:31 -#, php-format -msgid "Transferred: %s" -msgstr "" - -#: inc/widget/maxcdn.php:32 inc/widget/netdna.php:32 -#, php-format -msgid "Cache Hits: %d (%d%%)" -msgstr "" - -#: inc/widget/maxcdn.php:34 inc/widget/netdna.php:34 -#, php-format -msgid "Cache Misses (non-cache hits): %d (%d%%)" -msgstr "" - -#: inc/widget/maxcdn.php:39 inc/widget/netdna.php:39 -msgid "Requests" -msgstr "" - -#: inc/widget/maxcdn.php:41 inc/widget/netdna.php:41 -msgid "Content Breakdown" -msgstr "" - -#: inc/widget/maxcdn.php:43 inc/widget/netdna.php:43 -msgid "File" -msgstr "" - -#: inc/widget/maxcdn.php:44 inc/widget/netdna.php:44 -msgid "Hits" -msgstr "" - -#: inc/widget/maxcdn_signup.php:4 -#, php-format -msgid "" -"MaxCDN encountered an error trying to retrieve data, make sure your host " -"support cURL and outgoing requests: %s" -msgstr "" - -#: inc/widget/maxcdn_signup.php:7 -msgid "" -"Add the MaxCDN content delivery network to increase website speeds " -"dramatically in just a few minutes!" +#: inc/options/cdn/azure.php:9 +msgid "Account name:" msgstr "" -#: inc/widget/maxcdn_signup.php:8 -msgid "New customers" +#: inc/options/cdn/azure.php:16 +msgid "Account key:" msgstr "" -#: inc/widget/maxcdn_signup.php:9 -msgid "" -"MaxCDN is a service that lets you speed up your site even more with W3 Total " -"Cache." +#: inc/options/cdn/azure.php:49 +msgid "or CNAME:" msgstr "" -#: inc/widget/maxcdn_signup.php:11 -msgid "100% Money Back Guarantee (30 Days)" +#: inc/options/cdn/azure.php:55 +msgid "Test Microsoft Azure Storage upload" msgstr "" -#: inc/widget/maxcdn_signup.php:13 inc/widget/netdna_signup.php:12 -msgid "Current customers" +#: inc/options/cdn/akamai.php:23 +msgid "Email notification:" msgstr "" -#: inc/widget/maxcdn_signup.php:14 +#: inc/options/cdn/akamai.php:27 msgid "" -"Once you've signed up or if you're an existing MaxCDN customer, to enable " -"CDN:" +"Specify email addresses for completed removal notifications. One email per " +"line." msgstr "" -#: inc/widget/maxcdn_signup.php:30 inc/widget/netdna_signup.php:32 -msgid "" -"You have no zone connected with this site. Click button to create a default " -"zone." +#: inc/options/cdn/akamai.php:31 +msgid "Domain to purge:" msgstr "" -#: inc/widget/netdna_signup.php:10 -#, php-format -msgid "" -"NetDNA encountered an error trying to retrieve data, make sure your host " -"support cURL and outgoing requests: %s" +#: inc/options/cdn/akamai.php:40 +msgid "Purge action:" msgstr "" -#: inc/widget/netdna_signup.php:13 +#: inc/options/cdn/akamai.php:56 msgid "" -"Once you've signed up or if you're an existing NetDNA customer, to enable " -"CDN:" -msgstr "" - -#: inc/widget/new_relic.php:4 -msgid "You have not configured API key and Account Id." -msgstr "" - -#: inc/widget/new_relic.php:20 -msgid "Average times" -msgstr "" - -#: inc/widget/new_relic.php:29 -msgid "Top 5 slowest times" -msgstr "" - -#: inc/widget/new_relic.php:31 -msgid "Page load times" -msgstr "" - -#: inc/widget/new_relic.php:41 inc/widget/new_relic.php:60 -#: inc/widget/new_relic.php:78 -msgid "Not enough data" +"Some CDN providers may or may not support SSL, contact your vendor for more " +"information." msgstr "" -#: inc/widget/new_relic.php:43 inc/widget/new_relic.php:62 -#: inc/widget/new_relic.php:80 -msgid "Data not available to this subscription level." +#: inc/options/cdn/akamai.php:68 +msgid "Test akamai" msgstr "" -#: inc/widget/new_relic.php:49 -msgid "Web Transaction times" +#: inc/options/common/header.php:17 +msgid "W3 Total Cache by W3 EDGE ®" msgstr "" -#: inc/widget/new_relic.php:68 -msgid "Database times" +#: inc/options/common/header.php:39 +msgid "CDN" msgstr "" -#: inc/widget/new_relic.php:89 -msgid "PHP agent:" +#: inc/options/common/header.php:48 +msgid "Debug" msgstr "" -#: inc/widget/new_relic.php:90 -msgid "Subscription level:" +#: inc/options/common/header.php:73 +msgid "Mirrors" msgstr "" -#: inc/widget/new_relic.php:92 -msgid "Upgrade your New Relic account to enable more metrics." +#: inc/options/common/header.php:76 +msgid "Purge Policy" msgstr "" -#: inc/widget/spreadtheword.php:1 -msgid "We're working to make WordPress better. Please support us, here's how:" +#: inc/options/common/header.php:86 inc/options/common/header.php:102 +#: inc/options/common/header.php:114 inc/options/common/header.php:125 +#: inc/options/common/header.php:140 inc/options/common/header.php:151 +msgid "Jump to: " msgstr "" -#: inc/widget/spreadtheword.php:4 -msgid "Rate:" +#: inc/options/common/header.php:130 +msgid "Media" msgstr "" -#: inc/widget/spreadtheword.php:5 -msgid "Link:" +#: inc/options/common/header.php:164 +msgid "Rewrite Rules" msgstr "" -#: inc/widget/spreadtheword.php:15 -msgid "Or manually place a link, here is the code:" +#: inc/options/cdn/common/cnames-readonly.php:17 +#: inc/options/cdn/common/cnames.php:31 +msgid "(reserved for CSS)" msgstr "" -#: inc/widget/spreadtheword.php:16 -#, php-format -msgid "Performance Optimization %s by W3 EDGE" -msgstr "" - -#: lib/NetDNA/NetDNA.php:341 -#, php-format -msgid "Zone for %s was created by W3 Total Cache" -msgstr "" - -#: lib/NetDNA/NetDNAPresentation.php:63 -msgid "Pending" -msgstr "" - -#: lib/NetDNA/NetDNAPresentation.php:65 -msgid "Active" +#: inc/options/cdn/common/cnames-readonly.php:19 +#: inc/options/cdn/common/cnames.php:35 +msgid "(reserved for JS in )" msgstr "" -#: lib/NetDNA/NetDNAPresentation.php:67 -msgid "Cancelled" +#: inc/options/cdn/common/cnames-readonly.php:21 +#: inc/options/cdn/common/cnames.php:39 +msgid "(reserved for JS after )" msgstr "" -#: lib/NetDNA/NetDNAPresentation.php:69 -msgid "Suspended" +#: inc/options/cdn/common/cnames-readonly.php:23 +#: inc/options/cdn/common/cnames.php:43 +msgid "(reserved for JS before )" msgstr "" -#: lib/NetDNA/NetDNAPresentation.php:71 -msgid "Fraud" +#: inc/options/cdn/common/cnames.php:61 +msgid "Add CNAME" msgstr "" -#: lib/NetDNA/NetDNAPresentation.php:73 lib/W3/Widget/NewRelic.php:89 -msgid "unknown" +#. Name of the plugin +msgid "W3 Total Cache" msgstr "" -#: lib/NewRelic/NewRelicAPI.php:41 -msgid "Invalid API key or Account ID" -msgstr "" - -#: lib/NewRelic/NewRelicPresentation.php:14 -msgid "Page load time" -msgstr "" - -#: lib/NewRelic/NewRelicPresentation.php:17 -msgid "Web Transaction" +#. Description of the plugin +msgid "" +"The highest rated and most complete WordPress performance plugin. " +"Dramatically improve the speed and user experience of your site. Add browser," +" page, object and database caching as well as minify and content delivery " +"network (CDN) to WordPress." msgstr "" -#: lib/NewRelic/NewRelicPresentation.php:20 -msgid "Database" +#. URI of the plugin +msgid "https://www.boldgrid.com/totalcache/" msgstr "" -#: lib/W3/AdminActions/ActionHandler.php:45 -#, php-format -msgid "%s is not an correct action." +#. Author of the plugin +msgid "BoldGrid" msgstr "" -#: lib/W3/AdminActions/ActionHandler.php:64 -#, php-format -msgid "action %s does not exist for %s" -msgstr "" - -#: lib/W3/AdminActions/CdnActionsAdmin.php:50 -msgid "File successfully deleted from the queue." -msgstr "" - -#: lib/W3/AdminActions/CdnActionsAdmin.php:58 -msgid "Queue successfully emptied." -msgstr "" - -#: lib/W3/AdminActions/CdnActionsAdmin.php:65 -#, php-format -msgid "Number of processed queue items: %d" -msgstr "" - -#: lib/W3/AdminActions/CdnActionsAdmin.php:71 -msgid "Unsuccessful file transfer queue." -msgstr "" - -#: lib/W3/AdminActions/CdnActionsAdmin.php:85 -msgid "Media Library export" -msgstr "" - -#: lib/W3/AdminActions/CdnActionsAdmin.php:134 -msgid "Media Library import" -msgstr "" - -#: lib/W3/AdminActions/CdnActionsAdmin.php:179 -msgid "Modify attachment URLs" -msgstr "" - -#: lib/W3/AdminActions/CdnActionsAdmin.php:229 -msgid "Includes files export" -msgstr "" - -#: lib/W3/AdminActions/CdnActionsAdmin.php:234 -msgid "Theme files export" -msgstr "" - -#: lib/W3/AdminActions/CdnActionsAdmin.php:239 -msgid "Minify files export" -msgstr "" - -#: lib/W3/AdminActions/CdnActionsAdmin.php:245 -msgid "Custom files export" -msgstr "" - -#: lib/W3/AdminActions/CdnActionsAdmin.php:291 -#: lib/W3/AdminActions/CdnActionsAdmin.php:306 -msgid "Content Delivery Network (CDN): Purge Tool" -msgstr "" - -#: lib/W3/AdminActions/CdnActionsAdmin.php:327 -msgid "Empty files list." -msgstr "" - -#: lib/W3/AdminActions/CdnActionsAdmin.php:389 -msgid "Incorrect engine." -msgstr "" - -#: lib/W3/AdminActions/CdnActionsAdmin.php:401 -msgid "Test passed" -msgstr "" - -#: lib/W3/AdminActions/CdnActionsAdmin.php:404 -#: lib/W3/AdminActions/CdnActionsAdmin.php:457 -#, php-format -msgid "Error: %s" -msgstr "" - -#: lib/W3/AdminActions/CdnActionsAdmin.php:434 -msgid "Incorrect type." -msgstr "" - -#: lib/W3/AdminActions/CdnActionsAdmin.php:454 -msgid "Created successfully." -msgstr "" - -#: lib/W3/AdminActions/CdnActionsAdmin.php:483 -msgid "US-West (Northern California)" -msgstr "" - -#: lib/W3/AdminActions/CdnActionsAdmin.php:485 -msgid "AP-SouthEast (Singapore)" -msgstr "" - -#: lib/W3/AdminActions/CdnActionsAdmin.php:665 -msgid "An authorization key was not provided." -msgstr "" - -#: lib/W3/AdminActions/CdnActionsAdmin.php:671 -#, php-format -msgid "" -"The provided authorization key is\n" -" not in the correct format: %s." -msgstr "" - -#: lib/W3/AdminActions/CdnActionsAdmin.php:739 -msgid "Could not create default zone." -msgstr "" - -#: lib/W3/AdminActions/CdnActionsAdmin.php:793 -msgid "" -"The provided zone id was not connected to the provided authorization key." -msgstr "" - -#: lib/W3/AdminActions/CdnActionsAdmin.php:861 -#, php-format -msgid "" -"%s is not supported for Pull Zone\n" -" selection." -msgstr "" - -#: lib/W3/AdminActions/ConfigActionsAdmin.php:67 -#, php-format -msgid "Content-Disposition: attachment; filename=%s.php" -msgstr "" - -#: lib/W3/AdminActions/ConfigActionsAdmin.php:152 -msgid "Database Cluster configuration file has been successfully saved" -msgstr "" - -#: lib/W3/AdminActions/DefaultActionsAdmin.php:137 -msgid "You do not have the rights to perform this action." -msgstr "" - -#: lib/W3/AdminActions/DefaultActionsAdmin.php:685 -msgid "Added by W3 Total Cache" -msgstr "" - -#: lib/W3/AdminActions/SupportActionsAdmin.php:65 -#: lib/W3/UI/SupportAdminView.php:61 -msgid "Submit a Bug Report" -msgstr "" - -#: lib/W3/AdminActions/SupportActionsAdmin.php:66 -#: lib/W3/UI/SupportAdminView.php:62 -msgid "Suggest a New Feature" -msgstr "" - -#: lib/W3/AdminActions/SupportActionsAdmin.php:67 -#: lib/W3/UI/SupportAdminView.php:63 -msgid "Less than 15 Minute Email Support Response (M-F 9AM - 5PM EDT): $75 USD" -msgstr "" - -#: lib/W3/AdminActions/SupportActionsAdmin.php:68 -#: lib/W3/UI/SupportAdminView.php:64 -msgid "" -"Less than 15 Minute Phone Support Response (M-F 9AM - 5PM EDT): $150 USD" -msgstr "" - -#: lib/W3/AdminActions/SupportActionsAdmin.php:69 -#: lib/W3/UI/SupportAdminView.php:65 -msgid "Professional Plugin Configuration: Starting @ $100 USD" -msgstr "" - -#: lib/W3/AdminActions/SupportActionsAdmin.php:70 -#: lib/W3/UI/SupportAdminView.php:66 -msgid "" -"Theme Performance Optimization & Plugin Configuration: Starting @ $150 USD" -msgstr "" - -#: lib/W3/AdminActions/SupportActionsAdmin.php:71 -#: lib/W3/UI/SupportAdminView.php:67 -msgid "Linux Server Optimization & Plugin Configuration: Starting @ $200 USD" -msgstr "" - -#: lib/W3/AdminActions/TestActionsAdmin.php:48 -msgid "Test passed." -msgstr "" - -#: lib/W3/AdminActions/TestActionsAdmin.php:51 -msgid "Test failed." -msgstr "" - -#: lib/W3/AdminActions/TestActionsAdmin.php:78 -msgid "Empty JAVA executable path." -msgstr "" - -#: lib/W3/AdminActions/TestActionsAdmin.php:80 -msgid "Empty JAR file path." -msgstr "" - -#: lib/W3/AdminActions/TestActionsAdmin.php:111 -msgid "Invalid engine." -msgstr "" - -#: lib/W3/AdminCompatibility.php:90 -msgid "" -"The following plugins are not compatible with W3 Total Cache and will cause " -"unintended results:" -msgstr "" - -#: lib/W3/AdminCompatibility.php:96 -msgid "Network Deactivate" -msgstr "" - -#: lib/W3/Cdn/Mirror/Akamai.php:41 lib/W3/Cdn/Mirror/Cotendo.php:44 -msgid "Empty username." -msgstr "" - -#: lib/W3/Cdn/Mirror/Akamai.php:47 lib/W3/Cdn/Mirror/Cotendo.php:50 -msgid "Empty password." -msgstr "" - -#: lib/W3/Cdn/Mirror/Akamai.php:62 lib/W3/Cdn/Mirror/Cotendo.php:71 -#, php-format -msgid "Constructor error (%s)." -msgstr "" - -#: lib/W3/Cdn/Mirror/Akamai.php:92 lib/W3/Cdn/Mirror/Cotendo.php:100 -msgid "Invalid response." -msgstr "" - -#: lib/W3/Cdn/Mirror/Akamai.php:102 lib/W3/Cdn/Mirror/Akamai.php:107 -#: lib/W3/Cdn/Mirror/Cotendo.php:108 lib/W3/Cdn/Mirror/Edgecast.php:68 -#: lib/W3/Cdn/Mirror/Netdna.php:126 lib/W3/Cdn/Mirror/Netdna.php:142 -#: lib/W3/Cdn/Mirror/Netdna.php:245 lib/W3/Cdn/Mirror/Netdna.php:259 -#, php-format -msgid "Unable to purge (%s)." -msgstr "" - -#: lib/W3/Cdn/Mirror/Cotendo.php:56 -msgid "Empty zones list." -msgstr "" - -#: lib/W3/Cdn/Mirror/Edgecast.php:46 -msgid "Empty account #." -msgstr "" - -#: lib/W3/Cdn/Mirror/Edgecast.php:52 -msgid "Empty token." -msgstr "" - -#: lib/W3/Cdn/Mirror/Edgecast.php:121 -msgid "Invalid Request Parameter" -msgstr "" - -#: lib/W3/Cdn/Mirror/Edgecast.php:125 -msgid "Authentication Failure or Insufficient Access Rights" -msgstr "" - -#: lib/W3/Cdn/Mirror/Edgecast.php:129 -msgid "Invalid Request URI" -msgstr "" - -#: lib/W3/Cdn/Mirror/Edgecast.php:133 -msgid "Invalid Request" -msgstr "" - -#: lib/W3/Cdn/Mirror/Edgecast.php:137 -msgid "Server Error" -msgstr "" - -#: lib/W3/Cdn/Mirror/Netdna.php:46 lib/W3/Cdn/Mirror/Netdna.php:165 -msgid "Empty Authorization Key." -msgstr "" - -#: lib/W3/Cdn/Mirror/Netdna.php:52 lib/W3/Cdn/Mirror/Netdna.php:171 -msgid "Malformed Authorization Key." -msgstr "" - -#: lib/W3/Cdn/Mirror/Netdna.php:85 lib/W3/Cdn/Mirror/Netdna.php:152 -#: lib/W3/Cdn/Mirror/Netdna.php:205 lib/W3/Cdn/Mirror/Netdna.php:269 -#, php-format -msgid "No zones match site: %s." -msgstr "" - -#: lib/W3/Cdn/Mirror/Netdna.php:87 lib/W3/Cdn/Mirror/Netdna.php:207 -#, php-format -msgid "No zones match site: %s or %s." -msgstr "" - -#: lib/W3/Cdn/Mirror/Netdna.php:118 -#, php-format -msgid "" -"Failed with error code %s Please check your alias, consumer key, and private " -"key." -msgstr "" - -#: lib/W3/Cdn/Mirror/Netdna.php:120 lib/W3/Cdn/Mirror/Netdna.php:138 -#: lib/W3/Cdn/Mirror/Netdna.php:239 lib/W3/Cdn/Mirror/Netdna.php:255 -msgid "Failed with error code " -msgstr "" - -#: lib/W3/Cdn/Mirror/Netdna.php:129 lib/W3/Cdn/Mirror/Netdna.php:248 -#, php-format -msgid "No registered CNAMEs match %s." -msgstr "" - -#: lib/W3/Cdn/Mirror/Netdna.php:136 lib/W3/Cdn/Mirror/Netdna.php:237 -#: lib/W3/Cdn/Mirror/Netdna.php:253 -#, php-format -msgid "" -"Failed with error code %s. Please check your alias, consumer key, and " -"private key." -msgstr "" - -#: lib/W3/Cdn/Mirror/Netdna.php:146 lib/W3/Cdn/Mirror/Netdna.php:263 -msgid "Failure to pull zone: " -msgstr "" - -#: lib/W3/Cdn/Mirror/Netdna.php:150 lib/W3/Cdn/Mirror/Netdna.php:267 -msgid "No zones match custom domain." -msgstr "" - -#: lib/W3/CdnAdminEnvironment.php:152 -msgid "CDN module: Required Database SQL" -msgstr "" - -#: lib/W3/Cli.php:32 -msgid "Flushing the DB cache failed." -msgstr "" - -#: lib/W3/Cli.php:34 -msgid "The DB cache is flushed successfully." -msgstr "" - -#: lib/W3/Cli.php:43 -msgid "Flushing the minify cache failed." -msgstr "" - -#: lib/W3/Cli.php:45 -msgid "The minify cache is flushed successfully." -msgstr "" - -#: lib/W3/Cli.php:54 -msgid "Flushing the object cache failed." -msgstr "" - -#: lib/W3/Cli.php:56 -msgid "The object cache is flushed successfully." -msgstr "" - -#: lib/W3/Cli.php:69 lib/W3/Cli.php:88 -msgid "Flushing the page from cache failed." -msgstr "" - -#: lib/W3/Cli.php:71 lib/W3/Cli.php:90 -msgid "The page is flushed from cache successfully." -msgstr "" - -#: lib/W3/Cli.php:73 -msgid "This is not a valid post id." -msgstr "" - -#: lib/W3/Cli.php:92 -msgid "There is no post with this permalink." -msgstr "" - -#: lib/W3/Cli.php:105 -msgid "Flushing the page cache failed." -msgstr "" - -#: lib/W3/Cli.php:107 -msgid "The page cache is flushed successfully." -msgstr "" - -#: lib/W3/Cli.php:124 -#, php-format -msgid "updating the query string failed. with error %s" -msgstr "" - -#: lib/W3/Cli.php:127 -msgid "The query string was updated successfully." -msgstr "" - -#: lib/W3/Cli.php:149 -#, php-format -msgid "Files did not successfully purge with error %s" -msgstr "" - -#: lib/W3/Cli.php:151 -msgid "Files purged successfully." -msgstr "" - -#: lib/W3/Cli.php:163 -msgid " is not supported. Change to SNS or local to reload APC files" -msgstr "" - -#: lib/W3/Cli.php:180 lib/W3/Cli.php:187 -#, php-format -msgid "Files did not successfully reload with error %s" -msgstr "" - -#: lib/W3/Cli.php:182 -msgid "Files did not successfully reload with message: " -msgstr "" - -#: lib/W3/Cli.php:189 -msgid "Files reloaded successfully." -msgstr "" - -#: lib/W3/Cli.php:201 -msgid " is not supported. Change to SNS or local to delete APC files" -msgstr "" - -#: lib/W3/Cli.php:219 lib/W3/Cli.php:226 -#, php-format -msgid "Files did not successfully delete with error %s" -msgstr "" - -#: lib/W3/Cli.php:221 -msgid "Files did not successfully delete with message: " -msgstr "" - -#: lib/W3/Cli.php:228 -msgid "Files deleted successfully." -msgstr "" - -#: lib/W3/Cli.php:241 -#, php-format -msgid "PageCache Garbage cleanup did not start with error %s" -msgstr "" - -#: lib/W3/Cli.php:243 -msgid "PageCache Garbage cleanup triggered successfully." -msgstr "" - -#: lib/W3/DbCache.php:611 -msgid "Request-wide" -msgstr "" - -#: lib/W3/DbCache.php:624 -msgid "Database caching is disabled" -msgstr "" - -#: lib/W3/DbCache.php:626 -msgid "DONOTCACHEDB constant is defined" -msgstr "" - -#: lib/W3/DbCache.php:628 -msgid "Doing AJAX" -msgstr "" - -#: lib/W3/DbCache.php:630 -msgid "Request URI is rejected" -msgstr "" - -#: lib/W3/DbCache.php:632 -msgid "Cookie is rejected" -msgstr "" - -#: lib/W3/DbCache.php:634 -msgid "Doing cron" -msgstr "" - -#: lib/W3/DbCache.php:636 -msgid "Application request" -msgstr "" - -#: lib/W3/DbCache.php:638 -msgid "XMLRPC request" -msgstr "" - -#: lib/W3/DbCache.php:640 -msgid "wp-admin" -msgstr "" - -#: lib/W3/DbCache.php:642 -msgid "Short init" -msgstr "" - -#: lib/W3/DbCache.php:644 -msgid "Query is rejected" -msgstr "" - -#: lib/W3/DbCache.php:646 -msgid "User is logged in" -msgstr "" - -#: lib/W3/DbCacheAdminEnvironment.php:113 -#, php-format -msgid "" -"The Database add-in file db.php is not a W3 Total Cache drop-in.\n" -" Remove it or disable Database Caching. %s" -msgstr "" - -#: lib/W3/DbCacheAdminEnvironment.php:115 -msgid "Remove it for me" -msgstr "" - -#: lib/W3/Enterprise/DbCluster.php:586 -#, php-format -msgid "ERROR: WordPress %s requires MySQL 4.1.2 or higher" -msgstr "" - -#: lib/W3/GeneralActions.php:31 lib/W3/GeneralActions.php:47 -#: lib/W3/GeneralActions.php:59 -msgid "Purge from cache" -msgstr "" - -#: lib/W3/GenericAdminEnvironment.php:101 -#, php-format -msgid "" -"The Page Cache add-in file advanced-cache.php is not a W3 Total Cache drop-" -"in.\n" -" It should be removed. %s" -msgstr "" - -#: lib/W3/GenericAdminEnvironment.php:103 -#: lib/W3/ObjectCacheAdminEnvironment.php:115 -msgid "Yes, remove it for me" -msgstr "" - -#: lib/W3/Licensing.php:86 -#, php-format -msgid "The W3 Total Cache license key has expired. Please renew it: %s" -msgstr "" - -#: lib/W3/Licensing.php:87 -msgid "Renew" -msgstr "" - -#: lib/W3/Licensing.php:90 -msgid "The W3 Total Cache license key you entered is not valid." -msgstr "" - -#: lib/W3/Licensing.php:92 -msgid "Please enter it again." -msgstr "" - -#: lib/W3/Licensing.php:95 -msgid "The W3 Total Cache license key is not active." -msgstr "" - -#: lib/W3/Licensing.php:98 -msgid "The W3 Total Cache license key is not active for this site." -msgstr "" - -#: lib/W3/Licensing.php:107 -msgid "The W3 Total Cache license key can't be verified." -msgstr "" - -#: lib/W3/Licensing.php:117 -msgid "check again" -msgstr "" - -#: lib/W3/Licensing.php:123 -msgid "The W3 Total Cache license key is deactivated for this site." -msgstr "" - -#: lib/W3/Licensing.php:127 -msgid "The W3 Total Cache license key is activated for this site." -msgstr "" - -#: lib/W3/Menus.php:43 lib/W3/Menus.php:44 -msgid "General Settings" -msgstr "" - -#: lib/W3/Menus.php:82 lib/W3/Menus.php:83 -msgid "User Agent Groups" -msgstr "" - -#: lib/W3/Menus.php:87 lib/W3/Menus.php:88 -msgid "Referrer Groups" -msgstr "" - -#: lib/W3/Menus.php:92 -msgid "Content Delivery Network" -msgstr "" - -#: lib/W3/Menus.php:104 lib/W3/Menus.php:105 lib/W3/Plugin/TotalCache.php:389 -msgid "FAQ" -msgstr "" - -#: lib/W3/Menus.php:109 -msgid "Support" -msgstr "" - -#: lib/W3/Menus.php:110 -msgid "Support" -msgstr "" - -#: lib/W3/Menus.php:114 lib/W3/Menus.php:115 -msgid "Install" -msgstr "" - -#: lib/W3/Menus.php:119 lib/W3/Menus.php:120 -msgid "About" -msgstr "" - -#: lib/W3/Menus.php:130 lib/W3/Plugin/TotalCache.php:235 -msgid "Performance" -msgstr "" - -#: lib/W3/NewRelicService.php:45 -msgid "Supported" -msgstr "" - -#: lib/W3/NewRelicService.php:51 -msgid "PHP version" -msgstr "" - -#: lib/W3/NewRelicService.php:52 -#, php-format -msgid "Not supported: %s. Supported versions are %s." -msgstr "" - -#: lib/W3/NewRelicService.php:99 -msgid "Operating System" -msgstr "" - -#: lib/W3/NewRelicService.php:100 lib/W3/NewRelicService.php:136 -#, php-format -msgid "Not Supported. (%s %s See %s page.)" -msgstr "" - -#: lib/W3/NewRelicService.php:135 -msgid "Web Server" -msgstr "" - -#: lib/W3/NewRelicService.php:152 -msgid "PHP module is not enabled." -msgstr "" - -#: lib/W3/NewRelicService.php:154 -msgid "PHP agent is not enabled." -msgstr "" - -#: lib/W3/NewRelicService.php:156 -msgid "API Key is not configured." -msgstr "" - -#: lib/W3/NewRelicService.php:158 -msgid "Account ID is not configured." -msgstr "" - -#: lib/W3/NewRelicService.php:160 -msgid "Application ID is not configured. Enter/Select application name." -msgstr "" - -#: lib/W3/NewRelicService.php:163 -msgid "License key could not be detected." -msgstr "" - -#: lib/W3/NewRelicService.php:168 -#, php-format -msgid "" -"Configured license key does not match license key(s) in account:
    %s " -"
    %s" -msgstr "" - -#: lib/W3/NewRelicService.php:173 -msgid "API Key is invalid." -msgstr "" - -#: lib/W3/ObjectCache.php:683 -msgid "Object caching is disabled" -msgstr "" - -#: lib/W3/ObjectCache.php:685 -msgid "DONOTCACHEOBJECT constant is defined" -msgstr "" - -#: lib/W3/ObjectCacheAdminEnvironment.php:113 -#, php-format -msgid "" -"The Object Cache add-in file object-cache.php is not a W3 Total Cache drop-" -"in.\n" -" Remove it or disable Object Caching. %s" -msgstr "" - -#: lib/W3/PgCacheAdminEnvironment.php:477 -#, php-format -msgid "" -"Edit file %s and remove all lines between and including " -"\n" -" %s and %s markers." -msgstr "" - -#: lib/W3/PgCacheAdminEnvironment.php:486 -#, php-format -msgid "" -"Edit file %s and remove all lines between and including\n" -" %s and %s " -"markers." -msgstr "" - -#: lib/W3/PgCacheAdminEnvironment.php:497 -#, php-format -msgid "" -"Edit file %s and replace all lines between and including\n" -" %s and %s markers with:" -msgstr "" - -#: lib/W3/PgCacheAdminEnvironment.php:506 -#, php-format -msgid "" -"Edit file %s and add the following rules above the " -"WordPress\n" -" directives:" -msgstr "" - -#: lib/W3/Plugin/Cdn.php:230 -msgid "Upgrading database" -msgstr "" - -#: lib/W3/Plugin/CdnAdmin.php:705 -msgid "Purge from CDN" -msgstr "" - -#: lib/W3/Plugin/DefaultSettings.php:116 lib/W3/Plugin/DefaultSettings.php:144 -msgid "Apply all changes" -msgstr "" - -#: lib/W3/Plugin/DefaultSettings.php:130 -msgid "Append" -msgstr "" - -#: lib/W3/Plugin/DefaultSettings.php:130 -msgid "Replace" -msgstr "" - -#: lib/W3/Plugin/DefaultSettings.php:130 -msgid "Remove" -msgstr "" - -#: lib/W3/Plugin/ExtensionsAdmin.php:69 lib/W3/Plugin/ExtensionsAdmin.php:70 -msgid "Extensions" -msgstr "" - -#: lib/W3/Plugin/MinifyAdmin.php:113 -#, php-format -msgid "" -"Minify Auto encountered an error. The filename length value is most likely " -"too high for\n" -" your host. It is currently %d. The plugin is " -"trying to solve the issue for you:\n" -" (solving ...)." -msgstr "" - -#: lib/W3/Plugin/NewRelic.php:71 -msgid "DOING_AJAX constant is defined" -msgstr "" - -#: lib/W3/Plugin/NewRelic.php:81 -msgid "DONOTAUTORUM constant is defined" -msgstr "" - -#: lib/W3/Plugin/NewRelic.php:90 -msgid "logged in role is rejected" -msgstr "" - -#: lib/W3/Plugin/NewRelicAdmin.php:56 -msgid "" -"New Relic is not running correctly. The plugin has detected the following " -"issues:" -msgstr "" - -#: lib/W3/Plugin/NewRelicAdmin.php:63 -#, php-format -msgid "Please review the settings." -msgstr "" - -#: lib/W3/Plugin/NotificationsAdmin.php:94 -#, php-format -msgid "" -"

    You can now keep W3 Total Cache up-to-date without having to worry about " -"new features breaking your website. There will be more releases with bug " -"fixes, security fixes and settings updates.

    \n" -"

    Also, you can now try out our new features as soon as they're " -"ready. %s to enable \"edge mode\" and unlock pre-release features. %s

    " -msgstr "" - -#: lib/W3/Plugin/NotificationsAdmin.php:96 -msgid "Click Here" -msgstr "" - -#: lib/W3/Plugin/TotalCache.php:243 -msgid "Purge From Cache" -msgstr "" - -#: lib/W3/Plugin/TotalCache.php:252 -msgid "Empty Disc Cache(s)" -msgstr "" - -#: lib/W3/Plugin/TotalCache.php:261 -msgid "Empty Opcode Cache" -msgstr "" - -#: lib/W3/Plugin/TotalCache.php:270 -msgid "Empty Memcached Cache(s)" -msgstr "" - -#: lib/W3/Plugin/TotalCache.php:279 -msgid "Update Media Query String" -msgstr "" - -#: lib/W3/Plugin/TotalCache.php:288 -msgid "Empty All Caches" -msgstr "" - -#: lib/W3/Plugin/TotalCache.php:295 -msgid "Empty Modules" -msgstr "" - -#: lib/W3/Plugin/TotalCache.php:303 -msgid "Empty Page Cache" -msgstr "" - -#: lib/W3/Plugin/TotalCache.php:312 -msgid "Empty Minify Cache" -msgstr "" - -#: lib/W3/Plugin/TotalCache.php:321 -msgid "Empty Database Cache" -msgstr "" - -#: lib/W3/Plugin/TotalCache.php:330 -msgid "Empty Object Cache" -msgstr "" - -#: lib/W3/Plugin/TotalCache.php:340 -msgid "Empty Fragment Cache" -msgstr "" - -#: lib/W3/Plugin/TotalCache.php:350 -msgid "Purge Varnish Cache" -msgstr "" - -#: lib/W3/Plugin/TotalCache.php:360 -msgid "Purge CDN" -msgstr "" - -#: lib/W3/Plugin/TotalCache.php:370 -msgid "Purge CDN Completely" -msgstr "" - -#: lib/W3/Plugin/TotalCache.php:378 -msgid "Unsuccessful file transfers" -msgstr "" - -#: lib/W3/Plugin/TotalCache.php:395 -msgid "Support" -msgstr "" - -#: lib/W3/Plugin/TotalCache.php:536 -#, php-format -msgid "Minified using %s%s" -msgstr "" - -#: lib/W3/Plugin/TotalCache.php:542 -#, php-format -msgid "Page Caching using %s%s" -msgstr "" - -#: lib/W3/Plugin/TotalCache.php:554 -#, php-format -msgid "Database Caching %d/%d queries in %.3f seconds using %s%s" -msgstr "" - -#: lib/W3/Plugin/TotalCache.php:559 -#, php-format -msgid "Database Caching using %s%s" -msgstr "" - -#: lib/W3/Plugin/TotalCache.php:577 -#, php-format -msgid "Object Caching %d/%d objects using %s%s" -msgstr "" - -#: lib/W3/Plugin/TotalCache.php:587 -#, php-format -msgid "Fragment Caching %d/%d fragments using %s%s" -msgstr "" - -#: lib/W3/Plugin/TotalCache.php:599 -#, php-format -msgid "Content Delivery Network via %s%s" -msgstr "" - -#: lib/W3/Plugin/TotalCache.php:606 -#, php-format -msgid "Application Monitoring using New Relic%s" -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:176 -msgid "SSH / FTP host" -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:177 -msgid "SSH / FTP login" -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:178 -msgid "SSH / FTP password" -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:431 -msgid "Empty Caches" -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:483 -#, php-format -msgid "" -"Fancy permalinks are disabled. Please %s it first, then re-attempt to " -"enabling enhanced disk mode." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:484 -#, php-format -msgid "" -"Fancy permalinks are disabled. Please %s it first, then re-attempt to " -"enabling the 'Do not process 404 errors for static objects with WordPress'." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:485 -msgid "Please select request type." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:486 -msgid "" -"Please enter the address of the site in the site URL field." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:487 -msgid "Please enter your name in the Name field" -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:488 -msgid "Please enter valid email address in the E-Mail field." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:489 -msgid "Please enter your phone in the phone field." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:490 -msgid "Please enter subject in the subject field." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:491 -msgid "Please describe the issue in the issue description field." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:492 -msgid "" -"Please enter an administrator login. Create a temporary one just for this " -"support case if needed." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:493 -msgid "Please enter WP Admin password, be sure it's spelled correctly." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:494 -msgid "" -"Please enter SSH or FTP host for the site." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:495 -msgid "" -"Please enter SSH or FTP login for the server. Create a " -"temporary one just for this support case if needed." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:496 -msgid "" -"Please enter SSH or FTP password for the FTP account." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:497 -msgid "Unable to send the support request." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:498 -msgid "Please select config file." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:499 -msgid "Unable to upload config file." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:500 -msgid "Configuration file could not be imported." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:501 -#, php-format -msgid "" -"Default settings could not be restored. Please run chmod 777 %s to make the configuration file write-able, then try again." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:502 -msgid "Unable to purge attachment." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:503 -msgid "Unable to purge post." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:504 -msgid "Unable to purge page." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:505 -#, php-format -msgid "" -"%swp-config.php could not be written, please edit config " -"and add:
    define('COOKIE_DOMAIN', '%s'); before require_once(ABSPATH . 'wp-" -"settings.php');." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:506 -#, php-format -msgid "" -"%swp-config.php could not be written, please edit config " -"and add:
    define('COOKIE_DOMAIN', false); before require_once(ABSPATH . 'wp-" -"settings.php');." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:507 -msgid "Pull Zone could not be automatically created." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:511 -msgid "Plugin configuration successfully updated." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:512 -msgid "All caches successfully emptied." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:513 -msgid "Memcached cache(s) successfully emptied." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:514 -msgid "Opcode cache(s) successfully emptied." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:515 -msgid "APC system cache successfully emptied" -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:516 -msgid "Disk cache(s) successfully emptied." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:517 -msgid "Page cache successfully emptied." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:518 -msgid "Database cache successfully emptied." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:519 -msgid "Object cache successfully emptied." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:520 -msgid "Fragment cache successfully emptied." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:521 -msgid "Minify cache successfully emptied." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:522 -msgid "Media Query string has been successfully updated." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:523 -msgid "Varnish servers successfully purged." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:524 -msgid "CDN was successfully purged." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:525 -msgid "The support request has been successfully sent." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:526 -msgid "Settings successfully imported." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:527 -msgid "Settings successfully restored." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:528 -msgid "Preview mode was successfully enabled" -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:529 -msgid "Preview mode was successfully disabled" -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:530 -msgid "" -"Preview settings successfully deployed. Preview mode remains enabled until " -"it's disabled. Continue testing new settings or disable preview mode if done." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:531 -msgid "Attachment successfully purged." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:532 -msgid "Post successfully purged." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:533 -msgid "Page successfully purged." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:534 -msgid "New relic settings have been updated." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:535 -msgid "The add-in has been removed." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:536 -msgid "Site has been subscribed." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:537 -msgid "Edge mode has been enabled." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:538 -msgid "Edge mode has been disabled." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:539 -msgid "Pull Zone was automatically created." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:583 -msgid "Required files and directories have been automatically created" -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:668 -msgid "empty the page cache" -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:672 -#, php-format -msgid "check the %s to maintain the desired user experience" -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:672 -msgid "minify settings" -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:676 -#, php-format -msgid "One or more plugins have been activated or deactivated, please %s. %s" -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:676 lib/W3/UI/PluginView.php:321 -#: lib/W3/UI/PluginView.php:341 -msgid " and " -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:691 lib/W3/Plugin/TotalCacheAdmin.php:709 -#, php-format -msgid "" -"The setting change(s) made either invalidate the cached data or modify the " -"behavior of the site. %s now to provide a consistent user experience." -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:691 -msgid "Empty the object cache" -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:702 -#, php-format -msgid "" -"Recently an error occurred while creating the CSS / JS minify cache: %s. %s" -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:709 -msgid "Empty the minify cache" -msgstr "" - -#: lib/W3/Plugin/TotalCacheAdmin.php:728 -#, php-format -msgid "" -"The directory w3tc can be deleted. %s: %s. However, do not remove the " -"w3tc-config directory. %s" -msgstr "" - -#: lib/W3/Pro/FragmentCache.php:588 -msgid "Fragment caching is disabled" -msgstr "" - -#: lib/W3/UI/CdnNotes.php:27 -#, php-format -msgid "" -"The active theme has changed, please %s now to ensure proper operation. %s" -msgstr "" - -#: lib/W3/UI/CdnNotes.php:27 -msgid "upload active theme files" -msgstr "" - -#: lib/W3/UI/CdnNotes.php:34 -#, php-format -msgid "Upgraded WordPress? Please %s files now to ensure proper operation. %s" -msgstr "" - -#: lib/W3/UI/CdnNotes.php:61 -#, php-format -msgid "" -"Make sure to %s and upload the %s, files to the CDN to ensure proper operation. %s" -msgstr "" - -#: lib/W3/UI/CdnNotes.php:65 -#, php-format -msgid "" -"Settings that affect Browser Cache settings for files hosted by the CDN have " -"been changed. To apply the new settings %s and %s. %s" -msgstr "" - -#: lib/W3/UI/CdnNotes.php:65 -msgid "export the media library" -msgstr "" - -#: lib/W3/UI/CdnNotes.php:74 -#, php-format -msgid "" -"Make sure to whitelist your servers IPs. Follow the instructions on %s. The " -"IP for this server is %s. %s" -msgstr "" - -#: lib/W3/UI/CdnNotes.php:86 -#, php-format -msgid "" -"The %s has unresolved errors. Empty the queue to restore normal operation." -msgstr "" - -#: lib/W3/UI/CdnNotes.php:86 -msgid "unsuccessful transfer queue" -msgstr "" - -#: lib/W3/UI/CdnNotes.php:113 -#, php-format -msgid "" -"Encountered issue with CDN: %s. See %s for instructions of creating correct " -"table." -msgstr "" - -#: lib/W3/UI/CdnNotes.php:115 -msgid "Install page" -msgstr "" - -#: lib/W3/UI/CdnNotes.php:118 -#, php-format -msgid "Encountered issue with CDN: %s." -msgstr "" - -#: lib/W3/UI/NewRelicNotes.php:32 -msgid "CDN" -msgstr "" - -#: lib/W3/UI/NewRelicNotes.php:34 -msgid "Browser Cache and use compression" -msgstr "" - -#: lib/W3/UI/NewRelicNotes.php:36 -#, php-format -msgid "" -"Application monitoring has detected that your page load time is\n" -" higher than 300ms. It " -"is recommended that you enable the following\n" -" features: %s %s" -msgstr "" - -#: lib/W3/UI/PluginView.php:142 -#, php-format -msgid "Page Cache: %s." -msgstr "" - -#: lib/W3/UI/PluginView.php:150 -#, php-format -msgid "Minify: %s." -msgstr "" - -#: lib/W3/UI/PluginView.php:158 -#, php-format -msgid "Database Cache: %s." -msgstr "" - -#: lib/W3/UI/PluginView.php:166 -#, php-format -msgid "Object Cache: %s." -msgstr "" - -#: lib/W3/UI/PluginView.php:171 -msgid "" -"The following memcached servers are not responding or not running:

      " -msgstr "" - -#: lib/W3/UI/PluginView.php:177 -msgid "" -"

    This message will automatically disappear once the issue is resolved." -msgstr "" - -#: lib/W3/UI/PluginView.php:186 -#, php-format -msgid "" -"The CURL PHP extension is not available. Please install it " -"to enable S3 or CloudFront functionality. %s" -msgstr "" - -#: lib/W3/UI/PluginView.php:193 -#, php-format -msgid "" -"Unfortunately the PHP installation is incomplete, the zlib module is " -"missing. This is a core PHP module. Notify the server " -"administrator. %s" -msgstr "" - -#: lib/W3/UI/PluginView.php:200 -#, php-format -msgid "" -"Either the PHP configuration, web server configuration or a script in the " -"WordPress installation has zlib.output_compression enabled." -"
    Please locate and disable this setting to ensure proper HTTP " -"compression behavior. %s" -msgstr "" - -#: lib/W3/UI/PluginView.php:211 -#, php-format -msgid "" -"%s is write-able. When finished installing the plugin,\n" -" change the permissions back to the " -"default: chmod 755 %s.\n" -" Permissions are currently %s. %s" -msgstr "" - -#: lib/W3/UI/PluginView.php:228 -#, php-format -msgid "" -"%s permissions were changed during the setup process.\n" -" Permissions are currently %s.
    To restore permissions run\n" -" chmod %s %s. %s" -msgstr "" - -#: lib/W3/UI/PluginView.php:243 -#, php-format -msgid "" -"The required directives for fancy permalinks could not be detected, please " -"confirm they are available: Creating and " -"editing %s" -msgstr "" - -#: lib/W3/UI/PluginView.php:263 -#, php-format -msgid "" -"The uploads directory is not available. Default WordPress directories will " -"be created: %s." -msgstr "" - -#: lib/W3/UI/PluginView.php:267 -#, php-format -msgid "" -"The uploads path found in the database (%s) is inconsistent with the actual " -"path. Please manually adjust the upload path either in miscellaneous " -"settings or if not using a custom path %s automatically to resolve the issue." -msgstr "" - -#: lib/W3/UI/PluginView.php:267 -msgid "update the path" -msgstr "" - -#: lib/W3/UI/PluginView.php:278 -msgid "" -"A configuration issue prevents CDN from working:\n" -" The \"Replace default " -"hostname with\"\n" -" field cannot be empty. Enter " -"CDN\n" -" provider hostname here.\n" -" (This is the hostname used " -"in order to view objects\n" -" in a browser.)" -msgstr "" - -#: lib/W3/UI/PluginView.php:288 -msgid "" -"The \"Access key\", \"Secret key\" and \"Bucket\" fields " -"cannot be empty." -msgstr "" - -#: lib/W3/UI/PluginView.php:292 -msgid "" -"The \"Access key\", \"Secret key\", \"Bucket\" and \"Replace default " -"hostname with\" fields cannot be empty." -msgstr "" - -#: lib/W3/UI/PluginView.php:296 -msgid "" -"The \"Access key\", \"Secret key\" and \"Replace default hostname " -"with\" fields cannot be empty." -msgstr "" - -#: lib/W3/UI/PluginView.php:300 -msgid "" -"The \"Username\", \"API key\", \"Container\" and \"Replace default " -"hostname with\" fields cannot be empty." -msgstr "" - -#: lib/W3/UI/PluginView.php:304 -msgid "" -"The \"Account name\", \"Account key\" and \"Container\" " -"fields cannot be empty." -msgstr "" - -#: lib/W3/UI/PluginView.php:308 lib/W3/UI/PluginView.php:353 -#: lib/W3/UI/PluginView.php:357 lib/W3/UI/PluginView.php:361 -msgid "" -"The \"Replace default hostname with\" field cannot be empty." -msgstr "" - -#: lib/W3/UI/PluginView.php:317 lib/W3/UI/PluginView.php:337 -msgid "Replace default hostname with" -msgstr "" - -#: lib/W3/UI/PluginView.php:320 lib/W3/UI/PluginView.php:340 -#, php-format -msgid "The %s field(s) cannot be empty." -msgstr "" - -#: lib/W3/UI/PluginView.php:326 lib/W3/UI/PluginView.php:346 -msgid "The \"Authorization key\" is not correct." -msgstr "" - -#: lib/W3/UI/PluginView.php:328 lib/W3/UI/PluginView.php:348 -msgid "You need to select / create a pull zone." -msgstr "" - -#: lib/W3/UI/PluginView.php:370 -msgid "" -"A configuration issue prevents CDN from working: " -msgstr "" - -#: lib/W3/UI/PluginView.php:370 -msgid " Specify it here." -msgstr "" - -#: lib/W3/UI/PluginView.php:379 -#, php-format -msgid "" -"Preview mode is active: Changed settings will not take effect until preview " -"mode is %s or %s." -msgstr "" - -#: lib/W3/UI/PluginView.php:379 -msgid "deploy" -msgstr "" - -#: lib/W3/UI/PluginView.php:379 -msgid "disable" -msgstr "" - -#: lib/W3/UI/PluginView.php:399 -#, php-format -msgid "" -"File permissions are %s, however they should be\n" -"\t\t\t\t\t644." -msgstr "" - -#: lib/W3/UI/PluginView.php:404 lib/W3/UI/PluginView.php:412 -#, php-format -msgid "File permissions are %s" -msgstr "" - -#: lib/W3/UI/PluginView.php:407 -#, php-format -msgid "" -"File permissions are %s, however they should be\n" -"\t\t\t\t\t\t\t\t\t\t\t644." -msgstr "" - -#: lib/W3/UI/PluginView.php:416 -#, php-format -msgid "" -"Directory permissions are %s, however they should be\n" -"\t\t\t\t\t\t\t\t\t\t\t755." -msgstr "" - -#: lib/W3/UI/PluginView.php:420 lib/W3/UI/PluginView.php:426 -#, php-format -msgid "File: %s %s File owner: %s" -msgstr "" - -#: lib/W3/UI/PluginView.php:432 -#, php-format -msgid "Directory: %s %s File owner: %s" -msgstr "" - -#: lib/W3/UI/PluginView.php:438 -#, php-format -msgid "Owner of current file: %s" -msgstr "" - -#: lib/W3/UI/PluginView.php:442 -msgid "" -"

  • The files and directories have different ownership, they should have the " -"same ownership.\n" -"\t\t\t\t\t\t\t\t
  • " -msgstr "" - -#: lib/W3/UI/PluginView.php:446 -#, php-format -msgid "" -"W3 Total Cache Error: The plugin tried to edit, %s, but " -"failed.\n" -"\t\t\t\t\t\t\t\tFiles and directories cannot be modified. Please review " -"your\n" -"\t\t\t\t\t\t\t\t\n" -"\t\t\t\t\t\t\t\tfile permissions. A common cause is %s and %s having " -"different ownership or permissions.\n" -"\t\t\t\t\t\t\t\t%s %s" -msgstr "" - -#: lib/W3/UI/PluginView.php:454 -msgid "View technical information" -msgstr "" - -#: lib/W3/UI/PluginView.php:465 -msgid "" -"Please enter FTP details below to remove " -"the disabled modules. " -msgstr "" - -#: lib/W3/UI/Settings/BrowserCache.php:8 -msgid "Browser Cache:" -msgstr "" - -#: lib/W3/UI/Settings/BrowserCache.php:11 -msgid "Prevent caching exception list:" -msgstr "" - -#: lib/W3/UI/Settings/BrowserCache.php:12 -msgid "Do not process 404 errors for static objects with WordPress" -msgstr "" - -#: lib/W3/UI/Settings/BrowserCache.php:13 -msgid "404 error exception list:" -msgstr "" - -#: lib/W3/UI/Settings/BrowserCache.php:16 -#: lib/W3/UI/Settings/BrowserCache.php:26 -#: lib/W3/UI/Settings/BrowserCache.php:34 -msgid "Expires header lifetime:" -msgstr "" - -#: lib/W3/UI/Settings/BrowserCache.php:18 -#: lib/W3/UI/Settings/BrowserCache.php:28 -#: lib/W3/UI/Settings/BrowserCache.php:36 -msgid "Cache Control policy:" -msgstr "" - -#: lib/W3/UI/Settings/BrowserCache.php:19 -#: lib/W3/UI/Settings/BrowserCache.php:29 -#: lib/W3/UI/Settings/BrowserCache.php:37 -msgid "Set entity tag (ETag)" -msgstr "" - -#: lib/W3/UI/Settings/BrowserCache.php:23 -#: lib/W3/UI/Settings/BrowserCache.php:41 -msgid "Disable cookies for static files" -msgstr "" - -#: lib/W3/UI/Settings/BrowserCache.php:39 -msgid "" -"Enable HTTP (gzip) " -"compression" -msgstr "" - -#: lib/W3/UI/Settings/CDN.php:8 -msgid "CDN:" -msgstr "" - -#: lib/W3/UI/Settings/CDN.php:9 -msgid "CDN Type:" -msgstr "" - -#: lib/W3/UI/Settings/CDN.php:13 -msgid "Host attachments" -msgstr "" - -#: lib/W3/UI/Settings/CDN.php:14 -msgid "Host wp-includes/ files" -msgstr "" - -#: lib/W3/UI/Settings/CDN.php:15 -msgid "Host theme files" -msgstr "" - -#: lib/W3/UI/Settings/CDN.php:16 -msgid "" -"Host minified CSS and " -"JS files" -msgstr "" - -#: lib/W3/UI/Settings/CDN.php:17 -msgid "Host custom files" -msgstr "" - -#: lib/W3/UI/Settings/CDN.php:18 -msgid "Force over-writing of existing files" -msgstr "" - -#: lib/W3/UI/Settings/CDN.php:19 -msgid "Import external media library attachments" -msgstr "" - -#: lib/W3/UI/Settings/CDN.php:20 -msgid "Enable mirroring of pages" -msgstr "" - -#: lib/W3/UI/Settings/CDN.php:21 -msgid "Add canonical header" -msgstr "" - -#: lib/W3/UI/Settings/CDN.php:22 -msgid "" -"Disable CDN on " -"SSL pages" -msgstr "" - -#: lib/W3/UI/Settings/CDN.php:23 -msgid "" -"Disable CDN for the " -"following roles" -msgstr "" - -#: lib/W3/UI/Settings/CDN.php:24 -msgid "" -"Disable CDN on the " -"following pages:" -msgstr "" - -#: lib/W3/UI/Settings/CDN.php:25 -msgid "Export changed files automatically" -msgstr "" - -#: lib/W3/UI/Settings/CDN.php:26 -msgid "Auto upload interval:" -msgstr "" - -#: lib/W3/UI/Settings/CDN.php:27 -msgid "Re-transfer cycle interval:" -msgstr "" - -#: lib/W3/UI/Settings/CDN.php:28 -msgid "Re-transfer cycle limit:" -msgstr "" - -#: lib/W3/UI/Settings/CDN.php:29 -msgid "wp-includes file types to upload:" -msgstr "" - -#: lib/W3/UI/Settings/CDN.php:30 -msgid "Theme file types to upload:" -msgstr "" - -#: lib/W3/UI/Settings/CDN.php:31 -msgid "File types to import:" -msgstr "" - -#: lib/W3/UI/Settings/CDN.php:32 -msgid "Custom file list:" -msgstr "" - -#: lib/W3/UI/Settings/CDN.php:33 lib/W3/UI/Settings/Minify.php:43 -#: lib/W3/UI/Settings/PageCache.php:52 -msgid "Rejected user agents:" -msgstr "" - -#: lib/W3/UI/Settings/CDN.php:34 -msgid "Rejected files:" -msgstr "" - -#: lib/W3/UI/Settings/DatabaseCache.php:8 -msgid "Database Cache Method:" -msgstr "" - -#: lib/W3/UI/Settings/DatabaseCache.php:9 -msgid "Database Cache:" -msgstr "" - -#: lib/W3/UI/Settings/DatabaseCache.php:13 -msgid "Don't cache queries for logged in users" -msgstr "" - -#: lib/W3/UI/Settings/DatabaseCache.php:14 -#: lib/W3/UI/Settings/FragmentCache.php:13 lib/W3/UI/Settings/Minify.php:37 -#: lib/W3/UI/Settings/ObjectCache.php:13 lib/W3/UI/Settings/PageCache.php:44 -msgid "" -"Memcached hostname:port / IP:" -"port:" -msgstr "" - -#: lib/W3/UI/Settings/DatabaseCache.php:15 lib/W3/UI/Settings/PageCache.php:48 -msgid "Maximum lifetime of cache objects:" -msgstr "" - -#: lib/W3/UI/Settings/DatabaseCache.php:16 -#: lib/W3/UI/Settings/FragmentCache.php:15 lib/W3/UI/Settings/Minify.php:39 -#: lib/W3/UI/Settings/ObjectCache.php:15 lib/W3/UI/Settings/PageCache.php:49 -msgid "Garbage collection interval:" -msgstr "" - -#: lib/W3/UI/Settings/DatabaseCache.php:17 lib/W3/UI/Settings/PageCache.php:54 -msgid "Never cache the following pages:" -msgstr "" - -#: lib/W3/UI/Settings/DatabaseCache.php:18 -msgid "Ignored query stems:" -msgstr "" - -#: lib/W3/UI/Settings/DatabaseCache.php:19 -msgid "Reject query words:" -msgstr "" - -#: lib/W3/UI/Settings/FragmentCache.php:8 -msgid "Fragment Cache Method:" -msgstr "" - -#: lib/W3/UI/Settings/FragmentCache.php:9 -msgid "Fragment Cache:" -msgstr "" - -#: lib/W3/UI/Settings/FragmentCache.php:14 -msgid "Default lifetime of cached fragments:" -msgstr "" - -#: lib/W3/UI/Settings/FragmentCache.php:16 -msgid "Manual fragment groups:" -msgstr "" - -#: lib/W3/UI/Settings/General.php:8 -msgid "Enable Google Page Speed dashboard widget" -msgstr "" - -#: lib/W3/UI/Settings/General.php:9 -msgid "" -"Page Speed API Key:" -msgstr "" - -#: lib/W3/UI/Settings/General.php:10 -msgid "Use single network configuration file for all sites." -msgstr "" - -#: lib/W3/UI/Settings/General.php:11 -msgid "Hide performance settings" -msgstr "" - -#: lib/W3/UI/Settings/General.php:12 -msgid "Nginx server configuration file path" -msgstr "" - -#: lib/W3/UI/Settings/General.php:13 -msgid "Verify rewrite rules" -msgstr "" - -#: lib/W3/UI/Settings/General.php:14 -msgid "License" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:8 -msgid "Minify cache method:" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:9 -msgid "Minify:" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:11 -msgid "HTML minifier:" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:12 -msgid "JS minifier:" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:13 -msgid "CSS minifier:" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:14 -msgid "Minify mode:" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:17 -msgid "" -"Rewrite URL structure" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:18 -msgid "Disable minify for logged in users" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:19 -msgid "Minify error notification:" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:21 -msgid "" -"Inline CSS minification" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:22 -msgid "Inline JS minification" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:23 -msgid "Don't minify feeds" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:24 -msgid "Ignored comment stems:" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:26 -msgid "Embed type:" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:27 lib/W3/UI/Settings/Minify.php:29 -#: lib/W3/UI/Settings/Minify.php:31 lib/W3/UI/Settings/Minify.php:33 -msgid "Combine only" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:28 -msgid "After <body>" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:30 -msgid "Before </body>" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:34 -msgid "@import handling:" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:35 -msgid "Disable minify automatic file name length test" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:36 -msgid "Filename length:" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:38 -msgid "Update external files every:" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:40 -msgid "Never minify the following pages:" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:41 -msgid "Never minify the following JS files:" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:42 -msgid "Never minify the following CSS files:" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:44 -msgid "Include external files/libaries:" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:46 -msgid "Pretty print" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:50 -msgid "Compilation level:" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:52 lib/W3/UI/Settings/Minify.php:78 -msgid "Preserved comment removal (not applied when combine only is active)" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:53 -msgid "Line break removal (not applied when combine only is active)" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:55 -msgid "Remove unnecessary backslashes" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:56 -msgid "Compress colors" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:57 -msgid "Compress font-weight" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:58 -msgid "Lowercase selectors" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:59 -msgid "Remove last ;" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:60 -msgid "Sort Properties" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:61 -msgid "Sort Selectors (caution)" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:62 -msgid "Discard invalid properties" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:63 -msgid "Preserve CSS" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:64 -msgid "Add timestamp" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:66 -msgid "Compression:" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:67 -msgid "Optimize shorthands:" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:68 -msgid "Case for properties:" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:69 -msgid "Regroup selectors:" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:71 -msgid "Line break removal" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:73 -msgid "Clean" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:74 -msgid "Hide comments" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:76 -msgid "Wrap after:" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:79 -msgid "Line break removal (not safe, not applied when combine only is active)" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:83 lib/W3/UI/Settings/Minify.php:88 -msgid "Line break after:" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:85 -msgid "Minify only, do not obfuscate local symbols" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:86 -msgid "Preserve unnecessary semicolons" -msgstr "" - -#: lib/W3/UI/Settings/Minify.php:87 -msgid "Disable all the built-in micro optimizations" -msgstr "" - -#: lib/W3/UI/Settings/Mobile.php:10 -msgid "User Agents:" -msgstr "" - -#: lib/W3/UI/Settings/Mobile.php:11 -msgid "User Agent groups" -msgstr "" - -#: lib/W3/UI/Settings/Monitoring.php:8 -msgid "New Relic:" -msgstr "" - -#: lib/W3/UI/Settings/Monitoring.php:10 -msgid "Use above application name and ID for all sites in network:" -msgstr "" - -#: lib/W3/UI/Settings/Monitoring.php:13 -msgid "Cache time:" -msgstr "" - -#: lib/W3/UI/Settings/Monitoring.php:14 -msgid "" -"Use RUM only for following " -"user roles" -msgstr "" - -#: lib/W3/UI/Settings/Monitoring.php:15 -msgid "" -"Select user roles that RUM " -"should be enabled for:" -msgstr "" - -#: lib/W3/UI/Settings/Monitoring.php:16 -msgid "" -"Include RUM in compressed " -"or cached pages" -msgstr "" - -#: lib/W3/UI/Settings/Monitoring.php:17 -msgid "Prefix network sites:" -msgstr "" - -#: lib/W3/UI/Settings/Monitoring.php:18 -msgid "Include network sites stats in network:" -msgstr "" - -#: lib/W3/UI/Settings/Monitoring.php:19 -msgid "Use PHP function to set application name:" -msgstr "" - -#: lib/W3/UI/Settings/Monitoring.php:20 -msgid "Enable XMIT" -msgstr "" - -#: lib/W3/UI/Settings/ObjectCache.php:8 -msgid "Object Cache Method:" -msgstr "" - -#: lib/W3/UI/Settings/ObjectCache.php:9 -msgid "Object Cache:" -msgstr "" - -#: lib/W3/UI/Settings/ObjectCache.php:14 -msgid "Default lifetime of cache objects:" -msgstr "" - -#: lib/W3/UI/Settings/ObjectCache.php:16 -msgid "Global groups:" -msgstr "" - -#: lib/W3/UI/Settings/ObjectCache.php:17 -msgid "Non-persistent groups:" -msgstr "" - -#: lib/W3/UI/Settings/ObjectCache.php:18 -msgid "Flush all cache on post, comment etc changes." -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:8 -msgid "Page cache method:" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:9 -msgid "Page cache:" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:13 -msgid "Cache front page" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:13 -msgid "Cache posts page" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:14 -msgid "Don't cache front page" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:15 -msgid "Cache feeds: site, categories, tags, comments" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:16 -msgid "" -"Cache SSL (https) requests" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:17 -msgid "" -"Cache URIs with " -"query string variables" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:18 -msgid "Cache 404 (not found) pages" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:19 -#, php-format -msgid "Cache requests only for %s site address" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:20 -msgid "Don't cache pages for logged in users" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:21 -msgid "Don't cache pages for following user roles" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:22 -msgid "Automatically prime the page cache" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:23 -msgid "Update interval:" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:24 -msgid "Pages per interval:" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:25 -msgid "Sitemap URL:" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:26 -msgid "Preload the post cache upon publish events." -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:27 lib/W3/UI/Settings/PageCache.php:28 -msgid "Front page" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:28 -msgid "Posts page" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:29 -msgid "Post page" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:30 -msgid "Blog feed" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:31 -msgid "Post comments pages" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:32 -msgid "Post author pages" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:33 -msgid "Post terms pages" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:34 -msgid "Post comments feed" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:35 -msgid "Post author feed" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:36 -msgid "Post terms feeds" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:37 -msgid "Daily archive pages" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:38 -msgid "Monthly archive pages" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:39 -msgid "Yearly archive pages" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:40 -msgid "Specify the feed types to purge:" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:41 -msgid "Purge Limit:" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:42 -msgid "Additional pages:" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:43 -msgid "Purge sitemaps:" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:45 -msgid "Enable compatibility mode" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:46 -msgid "Disable UTF-8 blog charset support" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:47 -msgid "" -" Disable caching of HEAD HTTP requests" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:50 -msgid "Comment cookie lifetime:" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:51 -msgid "Accepted query strings:" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:53 -msgid "Rejected cookies:" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:55 -msgid "Cache exception list:" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:56 -msgid "Non-trailing slash pages:" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:57 -msgid "Specify page headers:" -msgstr "" - -#: lib/W3/UI/Settings/PageCache.php:58 -msgid "" -"Handle XML mime type" -msgstr "" - -#: lib/W3/UI/Settings/Referrer.php:11 -msgid "Referrer groups" -msgstr "" - -#: lib/W3/UI/Settings/SNS.php:8 -msgid "" -"Manage the cache purge queue via SNS" -msgstr "" - -#: lib/W3/UI/Settings/SNS.php:9 -msgid "SNS region:" -msgstr "" - -#: lib/W3/UI/Settings/SNS.php:11 -msgid "" -"API secret:" -msgstr "" - -#: lib/W3/UI/Settings/SNS.php:12 -msgid "Topic ID:" -msgstr "" - -#: lib/W3/UI/Settings/SNS.php:13 -msgid "Amazon SNS" -msgstr "" - -#: lib/W3/UI/Settings/Varnish.php:8 -msgid "Enable varnish cache purging" -msgstr "" - -#: lib/W3/UI/Settings/Varnish.php:10 -msgid "Varnish servers:" -msgstr "" - -#: lib/W3/Widget/Forum.php:42 -msgid "Forums" -msgstr "" - -#: lib/W3/Widget/NewRelic.php:49 -msgid "view visualizations" -msgstr "" - -#: lib/W3/Widget/News.php:42 -msgid "News" -msgstr "" - -#: lib/W3/Widget/PageSpeed.php:26 -msgid "Page Speed Report" -msgstr "" - -#: lib/W3/Widget/Services.php:56 lib/W3/Widget/Services.php:63 -#, php-format -msgid "Less than 15 Minute Email Support Response %s" -msgstr "" - -#: lib/W3/Widget/Services.php:57 lib/W3/Widget/Services.php:64 -#, php-format -msgid "Less than 15 Minute Phone Support Response %s" -msgstr "" - -#: lib/W3/Widget/Services.php:58 lib/W3/Widget/Services.php:65 -#, php-format -msgid "Professional Plugin Configuration %s" -msgstr "" - -#: lib/W3/Widget/Services.php:59 lib/W3/Widget/Services.php:66 -#, php-format -msgid "Theme Performance Optimization & Plugin Configuration %s" -msgstr "" - -#: lib/W3/Widget/Services.php:60 lib/W3/Widget/Services.php:67 -#, php-format -msgid "Linux Server Optimization & Plugin Configuration %s" -msgstr "" - -#: lib/W3/Widget/Services.php:89 -msgid "Premium Services" -msgstr "" - -#: lib/W3/Widget/SpreadTheWord.php:42 -msgid "Spread The Word" -msgstr "" - -#: lib/W3/Widget/SpreadTheWord.php:84 -msgid "Thank you for linking to us!" -msgstr "" - -#: lib/W3/Widget/SpreadTheWord.php:86 -msgid "" -"You are no longer linking to us. Please support us in other ways instead." +#. Author URI of the plugin +msgid "https://www.boldgrid.com/" msgstr "" diff --git a/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/lib/Minify/Minify.php b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/lib/Minify/Minify.php index 1ce152c..4d04eef 100644 --- a/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/lib/Minify/Minify.php +++ b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/lib/Minify/Minify.php @@ -613,6 +613,9 @@ class Minify0_Minify { if ($type === self::TYPE_CSS && false !== strpos($content, '@import')) { $content = self::_handleCssImports($content); } + if ( $type === self::TYPE_CSS ) { + $content = apply_filters( 'w3tc_minify_css_content', $content, null, null ); + } // do any post-processing (esp. for editing build URIs) if (self::$_options['postprocessorRequire']) { diff --git a/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/lib/Minify/Minify/CSS/UriRewriter.php b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/lib/Minify/Minify/CSS/UriRewriter.php index c3feffa..315b482 100644 --- a/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/lib/Minify/Minify/CSS/UriRewriter.php +++ b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/lib/Minify/Minify/CSS/UriRewriter.php @@ -377,14 +377,14 @@ class Minify_CSS_UriRewriter { } // analyze URI if ( !empty($uri) - && '/' !== substr($uri, 0, 1) // root-relative - && false === strpos($uri, '//') // protocol (non-data) - && 0 !== strpos($uri, 'data:') // data protocol + && '/' !== substr($uri, 0, 1) // Root-relative (/) and protocol/non-data (//). + && 'data:' !== substr( $uri, 0, 5 ) // Data protocol. + && '%' !== substr( $uri, 0, 1 ) // URL-encoded entity. + && '#' !== substr( $uri, 0, 1 ) // URL fragment. ) { // URI is file-relative: rewrite depending on options if (self::$_prependPath === null) { $uri = self::rewriteRelative($uri, self::$_currentDir, self::$_docRoot, self::$_symlinks); - if (self::$_prependAbsolutePath) { $prependAbsolutePath = self::$_prependAbsolutePath; } elseif (self::$_prependAbsolutePathCallback) { diff --git a/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/lib/Minify/Minify/HTML.php b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/lib/Minify/Minify/HTML.php index 4d5a86f..6cfedd1 100644 --- a/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/lib/Minify/Minify/HTML.php +++ b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/lib/Minify/Minify/HTML.php @@ -142,11 +142,11 @@ class Minify_HTML { .'|canvas|caption|center|col(?:group)?|dd|dir|div|dl|dt|fieldset|figcaption|figure|footer|form' .'|frame(?:set)?|h[1-6]|head|header|hgroup|hr|html|legend|li|link|main|map|menu|meta|nav' .'|ol|opt(?:group|ion)|output|p|param|section|t(?:able|body|head|d|h||r|foot|itle)' - .'|ul|video)\\b[^>]*>)/iu', '$1', $this->_html); + .'|ul|video)\\b[^>]*>)/i', '$1', $this->_html); // remove whitespaces outside of all elements $this->_html = preg_replace( - '/>((\\s)(?:\\s*))?([^<]+?)((\\s)(?:\\s*))?((\\s)(?:\\s*))?([^<]+?)((\\s)(?:\\s*))?$2$3$5<' ,$this->_html); diff --git a/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/readme.txt b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/readme.txt index c68e398..f82cc97 100644 --- a/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/readme.txt +++ b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/readme.txt @@ -3,7 +3,7 @@ Contributors: boldgrid, fredericktownes, maxicusc, gidomanders, bwmarkle, harryj Tags: seo, cache, optimize, pagespeed, performance, caching, compression, maxcdn, nginx, varnish, redis, new relic, aws, amazon web services, s3, cloudfront, rackspace, cloudflare, azure, apache Requires at least: 3.2 Tested up to: 5.4 -Stable tag: 0.13.3 +Stable tag: 0.14.0 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -275,6 +275,15 @@ Please reach out to all of these people and support their projects if you're so == Changelog == += 0.14.0 = +* Added lazy loading for Google Maps +* Added a filter w3tc_minify_css_content for minified contents +* Fixed a minify regex issue in non-Unicode websites +* Fixed a PHP notice in WPMU: accessing array offset on null +* Fixed a minify issue where embedded CSS URL fragments were converted incorrectly +* i18n improvement +* Changed default to disabled for wp-admin requests in the object cache + = 0.13.3 = * Fixed HTML minification of img elements containing embedded SVG strings * Removed an identifying value for GDPR diff --git a/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/w3-total-cache-api.php b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/w3-total-cache-api.php index a540bcf..bf2410f 100644 --- a/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/w3-total-cache-api.php +++ b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/w3-total-cache-api.php @@ -5,7 +5,7 @@ if ( !defined( 'ABSPATH' ) ) { } define( 'W3TC', true ); -define( 'W3TC_VERSION', '0.13.3' ); +define( 'W3TC_VERSION', '0.14.0' ); define( 'W3TC_POWERED_BY', 'W3 Total Cache' ); define( 'W3TC_EMAIL', 'w3tc@w3-edge.com' ); define( 'W3TC_TEXT_DOMAIN', 'w3-total-cache' ); @@ -601,6 +601,7 @@ function w3tc_e( $key, $default_value ) { function w3tc_er( $key, $default_value ) { + $default_value = __( $default_value , 'w3-total-cache' ); $v = get_site_option( 'w3tc_generic_widgetservices' ); try { $v = json_decode( $v, true ); diff --git a/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/w3-total-cache.php b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/w3-total-cache.php index d672144..f2995be 100644 --- a/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/w3-total-cache.php +++ b/production/wordpress/wordpress/wp-content/plugins/w3-total-cache/w3-total-cache.php @@ -2,7 +2,7 @@ /* Plugin Name: W3 Total Cache Description: The highest rated and most complete WordPress performance plugin. Dramatically improve the speed and user experience of your site. Add browser, page, object and database caching as well as minify and content delivery network (CDN) to WordPress. -Version: 0.13.3 +Version: 0.14.0 Plugin URI: https://www.boldgrid.com/totalcache/ Author: BoldGrid Author URI: https://www.boldgrid.com/ diff --git a/production/wordpress/wordpress/wp-content/w3tc-config/master.php b/production/wordpress/wordpress/wp-content/w3tc-config/master.php index 723e74f..b7043fa 100644 --- a/production/wordpress/wordpress/wp-content/w3tc-config/master.php +++ b/production/wordpress/wordpress/wp-content/w3tc-config/master.php @@ -1,5 +1,5 @@ { - "version": "0.13.3", + "version": "0.14.0", "cluster.messagebus.debug": false, "cluster.messagebus.enabled": false, "cluster.messagebus.sns.region": "", @@ -61,6 +61,9 @@ "lazyload.enabled": true, "lazyload.process_img": true, "lazyload.process_background": true, + "lazyload.googlemaps.google_maps_easy": false, + "lazyload.googlemaps.wp_google_maps": false, + "lazyload.googlemaps.wp_google_map_plugin": false, "lazyload.exclude": [ "avia-bg-style-fixed", "data-bgposition=", @@ -893,5 +896,9 @@ "plugin.type": "", "fragmentcache": { "engine": "" + }, + "pgcache.bad_behavior_path": "", + "newrelic": { + "monitoring_type": "apm" } } \ No newline at end of file