W3 Total Cache - Version 0.14.0

Version Description

  • 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
Download this release

Release Info

Developer joemoto
Plugin Icon 128x128 W3 Total Cache
Version 0.14.0
Comparing to
See all releases

Code changes from version 0.13.3 to 0.14.0

ConfigKeys.php CHANGED
@@ -173,6 +173,18 @@ $keys = array(
173
  'type' => 'boolean',
174
  'default' => true
175
  ),
 
 
 
 
 
 
 
 
 
 
 
 
176
  'lazyload.exclude' => array(
177
  'type' => 'array',
178
  'default' => array(
@@ -223,7 +235,7 @@ $keys = array(
223
  ),
224
  'objectcache.enabled_for_wp_admin' => array(
225
  'type' => 'boolean',
226
- 'default' => true
227
  ),
228
  'objectcache.fallback_transients' => array(
229
  'type' => 'boolean',
173
  'type' => 'boolean',
174
  'default' => true
175
  ),
176
+ 'lazyload.googlemaps.google_maps_easy' => array(
177
+ 'type' => 'boolean',
178
+ 'default' => false
179
+ ),
180
+ 'lazyload.googlemaps.wp_google_maps' => array(
181
+ 'type' => 'boolean',
182
+ 'default' => false
183
+ ),
184
+ 'lazyload.googlemaps.wp_google_map_plugin' => array(
185
+ 'type' => 'boolean',
186
+ 'default' => false
187
+ ),
188
  'lazyload.exclude' => array(
189
  'type' => 'array',
190
  'default' => array(
235
  ),
236
  'objectcache.enabled_for_wp_admin' => array(
237
  'type' => 'boolean',
238
+ 'default' => false,
239
  ),
240
  'objectcache.fallback_transients' => array(
241
  'type' => 'boolean',
SystemOpCache_GeneralPage_View.php CHANGED
@@ -30,15 +30,15 @@ Util_Ui::config_item( array(
30
  ),
31
  ) );
32
 
33
- Util_Ui::config_item( array(
34
- 'key' => 'opcache.validate_timestamps',
35
- 'label' => 'Validate timestamps:',
36
- 'control' => 'checkbox',
37
- 'disabled' => true,
38
- 'value' => $validate_timestamps,
 
39
  'checkbox_label' => __( 'Enable', 'w3-total-cache' ),
40
- 'description' => __( 'Once enabled, each file request will update the cache with the latest version.'
41
- . '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' )
42
  ) );
43
  ?>
44
 
30
  ),
31
  ) );
32
 
33
+ $validate_timestamps = '';
34
+ Util_Ui::config_item( array(
35
+ 'key' => 'opcache.validate_timestamps',
36
+ 'label' => 'Validate timestamps:',
37
+ 'control' => 'checkbox',
38
+ 'disabled' => true,
39
+ 'value' => $validate_timestamps,
40
  'checkbox_label' => __( 'Enable', 'w3-total-cache' ),
41
+ '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' )
 
42
  ) );
43
  ?>
44
 
UserExperience_LazyLoad_GoogleMaps_GoogleMapsEasy.php ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace W3TC;
3
+
4
+ class UserExperience_LazyLoad_GoogleMaps_GoogleMapsEasy {
5
+ private $preload_url = '';
6
+
7
+
8
+
9
+ public function w3tc_lazyload_mutator_before( $data ) {
10
+ $buffer = $data['buffer'];
11
+ $buffer = preg_replace_callback(
12
+ '~(<script\s[^>]+>)~i',
13
+ array( $this, 'tag_script' ), $buffer
14
+ );
15
+
16
+ if ( !empty( $this->preload_url ) ) {
17
+ $preload_html = '<link rel="preload" href="' . esc_url( $this->preload_url ) . '" as="script">';
18
+
19
+ $buffer = preg_replace( '~<head(\s+[^>]*)*>~Ui',
20
+ '\\0' . $preload_html, $buffer, 1 );
21
+
22
+ add_filter( 'w3tc_lazyload_on_initialized_javascript', array(
23
+ $this, 'w3tc_lazyload_on_initialized_javascript' ) );
24
+ }
25
+
26
+ $data['buffer'] = $buffer;
27
+ $data['modified'] |= !empty( $this->preload_url );
28
+
29
+ return $data;
30
+ }
31
+
32
+
33
+
34
+ public function tag_script( $m ) {
35
+ $script_tag = $m[0];
36
+ if ( !preg_match( '~<script\s+[^<>]*src=["\']?([^"\'> ]+)["\'> ]~is',
37
+ $script_tag, $match ) ) {
38
+ return $script_tag;
39
+ }
40
+
41
+ $script_src = $match[1];
42
+ $script_src = Util_Environment::url_relative_to_full( $script_src );
43
+
44
+ if ( !$this->starts_with( $script_src, WP_PLUGIN_URL . '/google-maps-easy/modules/gmap/js/frontend.gmap.js' ) ) {
45
+ return $script_tag;
46
+ }
47
+
48
+ $this->preload_url = $script_src;
49
+ return '';
50
+ }
51
+
52
+
53
+
54
+ private function starts_with( $v, $prefix ) {
55
+ return substr( $v, 0, strlen( $prefix ) ) == $prefix;
56
+ }
57
+
58
+
59
+
60
+ public function w3tc_lazyload_on_initialized_javascript() {
61
+ return 'window.w3tc_lazyLazy_googlemaps_wpmaps = new LazyLoad({' .
62
+ 'elements_selector: ".gmp_map_opts",'.
63
+ 'callback_enter: function(e){' .
64
+
65
+ // w3tc_load_js function
66
+ '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};' .
67
+
68
+ 'w3tc_load_js("' . esc_url( $this->preload_url ) . '");' .
69
+ '}});';
70
+ }
71
+ }
UserExperience_LazyLoad_GoogleMaps_WPGoogleMapPlugin.php ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace W3TC;
3
+
4
+ class UserExperience_LazyLoad_GoogleMaps_WPGoogleMapPlugin {
5
+ public function w3tc_lazyload_mutator_before( $data ) {
6
+ $buffer = $data['buffer'];
7
+ if (strpos( $buffer, '<script>jQuery(document).ready(function($) {var map' ) === false ) {
8
+ return $data;
9
+ }
10
+
11
+ $buffer = str_replace(
12
+ '<script>jQuery(document).ready(function($) {var map',
13
+ '<script>window.w3tc_wpgmp_load = (function($) {var map',
14
+ $buffer
15
+ );
16
+
17
+ add_filter( 'w3tc_lazyload_on_initialized_javascript', array(
18
+ $this, 'w3tc_lazyload_on_initialized_javascript' ) );
19
+
20
+ $data['buffer'] = $buffer;
21
+ $data['modified'] = true;
22
+
23
+ return $data;
24
+ }
25
+
26
+
27
+
28
+ public function w3tc_lazyload_on_initialized_javascript() {
29
+ return 'window.w3tc_lazyLazy_googlemaps_wpmapplugin = new LazyLoad({' .
30
+ 'elements_selector: ".wpgmp_map_container",'.
31
+ 'callback_enter: function(e){' .
32
+ 'window.w3tc_wpgmp_load(jQuery)'.
33
+ '}});';
34
+ }
35
+ }
UserExperience_LazyLoad_GoogleMaps_WPGoogleMaps.php ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace W3TC;
3
+
4
+ class UserExperience_LazyLoad_GoogleMaps_WPGoogleMaps {
5
+ private $preload_url = '';
6
+
7
+
8
+
9
+ public function w3tc_lazyload_mutator_before( $data ) {
10
+ $buffer = $data['buffer'];
11
+ $buffer = preg_replace_callback(
12
+ '~(<script\s[^>]+>)~i',
13
+ array( $this, 'tag_script' ), $buffer
14
+ );
15
+
16
+ if ( !empty( $this->preload_url ) ) {
17
+ $preload_html = '<link rel="preload" href="' . esc_url( $this->preload_url ) . '" as="script">';
18
+
19
+ $buffer = preg_replace( '~<head(\s+[^>]*)*>~Ui',
20
+ '\\0' . $preload_html, $buffer, 1 );
21
+
22
+ add_filter( 'w3tc_lazyload_on_initialized_javascript', array(
23
+ $this, 'w3tc_lazyload_on_initialized_javascript' ) );
24
+ }
25
+
26
+ $data['buffer'] = $buffer;
27
+ $data['modified'] |= !empty( $this->preload_url );
28
+
29
+ return $data;
30
+ }
31
+
32
+
33
+
34
+ public function tag_script( $m ) {
35
+ $script_tag = $m[0];
36
+ if ( !preg_match( '~<script\s+[^<>]*src=["\']?([^"\'> ]+)["\'> ]~is',
37
+ $script_tag, $match ) ) {
38
+ return $script_tag;
39
+ }
40
+
41
+ $script_src = $match[1];
42
+ $script_src = Util_Environment::url_relative_to_full( $script_src );
43
+
44
+ if ( !$this->starts_with( $script_src, WP_PLUGIN_URL . '/wp-google-maps/js/wpgmaps.js' ) ) {
45
+ return $script_tag;
46
+ }
47
+
48
+ $this->preload_url = $script_src;
49
+ return '';
50
+ }
51
+
52
+
53
+
54
+ private function starts_with( $v, $prefix ) {
55
+ return substr( $v, 0, strlen( $prefix ) ) == $prefix;
56
+ }
57
+
58
+
59
+
60
+ public function w3tc_lazyload_on_initialized_javascript() {
61
+ return 'window.w3tc_lazyLazy_googlemaps_wpmaps = new LazyLoad({' .
62
+ 'elements_selector: "#wpgmza_map",'.
63
+ 'callback_enter: function(e){' .
64
+
65
+ // w3tc_load_js function
66
+ '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};' .
67
+
68
+ // hack to allow initialize-on-load script pass
69
+ 'MYMAP = {init: function() {},placeMarkers: function() {}};' .
70
+
71
+ 'w3tc_load_js("' . esc_url( $this->preload_url ) . '", function() {InitMap()});' .
72
+ '}});';
73
+ }
74
+ }
UserExperience_LazyLoad_Mutator.php CHANGED
@@ -20,6 +20,13 @@ class UserExperience_LazyLoad_Mutator {
20
  $this->excludes = apply_filters( 'w3tc_lazyload_excludes',
21
  $this->config->get_array( 'lazyload.exclude' ) );
22
 
 
 
 
 
 
 
 
23
  $unmutable = new UserExperience_LazyLoad_Mutator_Unmutable();
24
  $buffer = $unmutable->remove_unmutable( $buffer );
25
 
20
  $this->excludes = apply_filters( 'w3tc_lazyload_excludes',
21
  $this->config->get_array( 'lazyload.exclude' ) );
22
 
23
+ $r = apply_filters( 'w3tc_lazyload_mutator_before', array(
24
+ 'buffer' => $buffer,
25
+ 'modified' => $this->modified
26
+ ) );
27
+ $buffer = $r['buffer'];
28
+ $this->modified = $r['modified'];
29
+
30
  $unmutable = new UserExperience_LazyLoad_Mutator_Unmutable();
31
  $buffer = $unmutable->remove_unmutable( $buffer );
32
 
UserExperience_LazyLoad_Page_View.php CHANGED
@@ -4,6 +4,14 @@ namespace W3TC;
4
  if ( !defined( 'W3TC' ) )
5
  die();
6
 
 
 
 
 
 
 
 
 
7
  ?>
8
  <?php Util_Ui::postbox_header( __( 'Lazy Loading', 'w3-total-cache' ), '', 'application' ); ?>
9
  <table class="form-table">
@@ -44,7 +52,49 @@ if ( !defined( 'W3TC' ) )
44
  'description' => 'Use <code>inline</code> method only when your website has just a few pages'
45
  )
46
  );
 
47
  ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  </table>
49
  <p class="submit">
50
  <?php Util_Ui::button_config_save( 'lazyload' ); ?>
4
  if ( !defined( 'W3TC' ) )
5
  die();
6
 
7
+ $c = Dispatcher::config();
8
+ $is_pro = Util_Environment::is_w3tc_pro( $c );
9
+
10
+ $plugins = get_option( 'active_plugins' );
11
+ $is_wp_google_maps = ( in_array( 'wp-google-maps/wpGoogleMaps.php', $plugins ) );
12
+ $is_wp_google_map_plugin = ( in_array( 'wp-google-map-plugin/wp-google-map-plugin.php', $plugins ) );
13
+ $is_google_maps_easy = ( in_array( 'google-maps-easy/gmp.php', $plugins ) );
14
+
15
  ?>
16
  <?php Util_Ui::postbox_header( __( 'Lazy Loading', 'w3-total-cache' ), '', 'application' ); ?>
17
  <table class="form-table">
52
  'description' => 'Use <code>inline</code> method only when your website has just a few pages'
53
  )
54
  );
55
+
56
  ?>
57
+ <tr>
58
+ <th>Google Maps</th>
59
+ <td>
60
+ <?php Util_Ui::pro_wrap_maybe_start(); ?>
61
+ <p class="description w3tc-gopro-excerpt" style="padding-bottom: 10px">Lazy load google map</p>
62
+ <div>
63
+ <?php
64
+ Util_Ui::control2( Util_Ui::config_item_preprocess( array(
65
+ 'key' => 'lazyload.googlemaps.wp_google_map_plugin',
66
+ 'control' => 'checkbox',
67
+ 'disabled' => ( $is_pro ? !$is_wp_google_map_plugin : true ),
68
+ 'checkbox_label' => __( '<a href="https://wordpress.org/plugins/wp-google-map-plugin/" target="_blank">WP Google Map Plugin</a> plugin', 'w3-total-cache' ),
69
+ 'label_class' => 'w3tc_no_trtd'
70
+ ) ) );
71
+ ?>
72
+ </div>
73
+ <div>
74
+ <?php
75
+ Util_Ui::control2( Util_Ui::config_item_preprocess( array(
76
+ 'key' => 'lazyload.googlemaps.google_maps_easy',
77
+ 'control' => 'checkbox',
78
+ 'disabled' => ( $is_pro ? !$is_google_maps_easy : true ),
79
+ 'checkbox_label' => __( '<a href="https://wordpress.org/plugins/google-maps-easy/" target="_blank">Google Maps Easy</a> plugin', 'w3-total-cache' ),
80
+ 'label_class' => 'w3tc_no_trtd'
81
+ ) ) );
82
+ ?>
83
+ </div>
84
+ <div>
85
+ <?php
86
+ Util_Ui::control2( Util_Ui::config_item_preprocess( array(
87
+ 'key' => 'lazyload.googlemaps.wp_google_maps',
88
+ 'control' => 'checkbox',
89
+ 'disabled' => ( $is_pro ? !$is_wp_google_maps : true ),
90
+ 'checkbox_label' => __( '<a href="https://wordpress.org/plugins/wp-google-maps/" target="_blank">WP Google Maps</a> plugin', 'w3-total-cache' ),
91
+ 'label_class' => 'w3tc_no_trtd'
92
+ ) ) );
93
+ ?>
94
+ </div>
95
+ <?php Util_Ui::pro_wrap_maybe_end( 'lazyload_googlemaps' ); ?>
96
+ </td>
97
+ </tr>
98
  </table>
99
  <p class="submit">
100
  <?php Util_Ui::button_config_save( 'lazyload' ); ?>
UserExperience_LazyLoad_Plugin.php CHANGED
@@ -16,6 +16,25 @@ class UserExperience_LazyLoad_Plugin {
16
  Util_Bus::add_ob_callback( 'lazyload', array( $this, 'ob_callback' ) );
17
  $this->metaslider_hooks();
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  add_filter( 'wp_get_attachment_url',
20
  array( $this, 'wp_get_attachment_url' ), 10, 2 );
21
  add_filter( 'w3tc_footer_comment',
@@ -114,22 +133,36 @@ class UserExperience_LazyLoad_Plugin {
114
  $fireEvent = 'function(t){var e;try{e=new CustomEvent("w3tc_lazyload_loaded",{detail:{e:t}})}catch(a){(e=document.createEvent("CustomEvent")).initCustomEvent("w3tc_lazyload_loaded",!1,!1,{e:t})}window.dispatchEvent(e)}';
115
  $config = '{elements_selector:".lazy",callback_loaded:' . $fireEvent . '}';
116
 
 
 
117
  if ( $method == 'async_head' ) {
 
 
 
 
 
 
 
 
 
 
 
 
118
  $embed_script =
119
- '<script>window.w3tc_lazyload=1,window.lazyLoadOptions=' . $config . '</script>' .
120
  '<style>img.lazy{min-height:1px}</style>' .
121
- '<script async src="' . $js_url . '"></script>';
122
 
123
  $buffer = preg_replace( '~<head(\s+[^>]*)*>~Ui',
124
  '\\0' . $embed_script, $buffer, 1 );
125
 
126
- // add protection to footer if async script executed too early
127
  $footer_script =
128
  '<script>' .
129
- 'document.addEventListener("DOMContentLoaded",function() {' .
130
- 'if (typeof LazyLoad !== "undefined") {' .
131
- 'window.w3tc_lazyload=new LazyLoad(window.lazyLoadOptions)' .
132
- '}})</script>';
 
133
  $buffer = preg_replace( '~</body(\s+[^>]*)*>~Ui',
134
  $footer_script . '\\0', $buffer, 1 );
135
 
@@ -138,18 +171,23 @@ class UserExperience_LazyLoad_Plugin {
138
  '<style>img.lazy{min-height:1px}</style>' .
139
  '<script>' .
140
  file_get_contents( W3TC_DIR . '/pub/js/lazyload.min.js' ) .
141
- 'window.w3tc_lazyload=new LazyLoad(' . $config . ')</script>';
 
 
142
  $buffer = preg_replace( '~</body(\s+[^>]*)*>~Ui',
143
  $footer_script . '\\0', $buffer, 1 );
144
  } else { // 'sync_head'
145
  $head_script =
146
  '<style>img.lazy{min-height:1px}</style>' .
147
- '<script src="' . $js_url . '"></script>';
148
  $buffer = preg_replace( '~<head(\s+[^>]*)*>~Ui',
149
  '\\0' . $head_script, $buffer, 1 );
150
 
151
  $footer_script =
152
- '<script>window.w3tc_lazyload=new LazyLoad(' . $config . ')</script>';
 
 
 
153
  $buffer = preg_replace( '~</body(\s+[^>]*)*>~Ui',
154
  $footer_script . '\\0', $buffer, 1 );
155
  }
16
  Util_Bus::add_ob_callback( 'lazyload', array( $this, 'ob_callback' ) );
17
  $this->metaslider_hooks();
18
 
19
+ if ( $this->config->get_boolean( 'lazyload.googlemaps.google_maps_easy' ) ) {
20
+ $p = new UserExperience_LazyLoad_GoogleMaps_GoogleMapsEasy();
21
+
22
+ add_filter( 'w3tc_lazyload_mutator_before',
23
+ array( $p, 'w3tc_lazyload_mutator_before' ) );
24
+ }
25
+ if ( $this->config->get_boolean( 'lazyload.googlemaps.wp_google_maps' ) ) {
26
+ add_filter( 'w3tc_lazyload_mutator_before', array(
27
+ new UserExperience_LazyLoad_GoogleMaps_WPGoogleMaps(),
28
+ 'w3tc_lazyload_mutator_before'
29
+ ) );
30
+ }
31
+ if ( $this->config->get_boolean( 'lazyload.googlemaps.wp_google_map_plugin' ) ) {
32
+ $p = new UserExperience_LazyLoad_GoogleMaps_WPGoogleMapPlugin();
33
+
34
+ add_filter( 'w3tc_lazyload_mutator_before',
35
+ array( $p, 'w3tc_lazyload_mutator_before' ) );
36
+ }
37
+
38
  add_filter( 'wp_get_attachment_url',
39
  array( $this, 'wp_get_attachment_url' ), 10, 2 );
40
  add_filter( 'w3tc_footer_comment',
133
  $fireEvent = 'function(t){var e;try{e=new CustomEvent("w3tc_lazyload_loaded",{detail:{e:t}})}catch(a){(e=document.createEvent("CustomEvent")).initCustomEvent("w3tc_lazyload_loaded",!1,!1,{e:t})}window.dispatchEvent(e)}';
134
  $config = '{elements_selector:".lazy",callback_loaded:' . $fireEvent . '}';
135
 
136
+ $on_initialized_javascript = apply_filters( 'w3tc_lazyload_on_initialized_javascript', '' );
137
+
138
  if ( $method == 'async_head' ) {
139
+ $on_initialized_javascript_wrapped = '';
140
+ if ( !empty( $on_initialized_javascript ) ) {
141
+ // LazyLoad::Initialized fired just before making LazyLoad global
142
+ // so next execution cycle have it
143
+ $on_initialized_javascript_wrapped =
144
+ 'window.addEventListener("LazyLoad::Initialized", function(){' .
145
+ 'setTimeout(function() {' .
146
+ $on_initialized_javascript .
147
+ '}, 1);' .
148
+ '});';
149
+ }
150
+
151
  $embed_script =
 
152
  '<style>img.lazy{min-height:1px}</style>' .
153
+ '<link rel="preload" href="' . esc_url( $js_url ) . '" as="script">';
154
 
155
  $buffer = preg_replace( '~<head(\s+[^>]*)*>~Ui',
156
  '\\0' . $embed_script, $buffer, 1 );
157
 
158
+ // load lazyload in footer to make sure DOM is ready at the moment of initialization
159
  $footer_script =
160
  '<script>' .
161
+ $on_initialized_javascript_wrapped .
162
+ 'window.w3tc_lazyload=1,' .
163
+ 'window.lazyLoadOptions=' . $config .
164
+ '</script>' .
165
+ '<script async src="' . esc_url( $js_url ) . '"></script>';
166
  $buffer = preg_replace( '~</body(\s+[^>]*)*>~Ui',
167
  $footer_script . '\\0', $buffer, 1 );
168
 
171
  '<style>img.lazy{min-height:1px}</style>' .
172
  '<script>' .
173
  file_get_contents( W3TC_DIR . '/pub/js/lazyload.min.js' ) .
174
+ 'window.w3tc_lazyload=new LazyLoad(' . $config . ');' .
175
+ $on_initialized_javascript .
176
+ '</script>';
177
  $buffer = preg_replace( '~</body(\s+[^>]*)*>~Ui',
178
  $footer_script . '\\0', $buffer, 1 );
179
  } else { // 'sync_head'
180
  $head_script =
181
  '<style>img.lazy{min-height:1px}</style>' .
182
+ '<script src="' . esc_url( $js_url ) . '"></script>';
183
  $buffer = preg_replace( '~<head(\s+[^>]*)*>~Ui',
184
  '\\0' . $head_script, $buffer, 1 );
185
 
186
  $footer_script =
187
+ '<script>' .
188
+ 'window.w3tc_lazyload=new LazyLoad(' . $config . ');' .
189
+ $on_initialized_javascript .
190
+ '</script>';
191
  $buffer = preg_replace( '~</body(\s+[^>]*)*>~Ui',
192
  $footer_script . '\\0', $buffer, 1 );
193
  }
Util_Environment.php CHANGED
@@ -182,9 +182,11 @@ class Util_Environment {
182
  $result = true;
183
  } else {
184
  $blog_data = Util_WpmuBlogmap::get_current_blog_data();
185
- if ( is_null( $blog_data ) )
186
  $result = true;
187
- $result = ( $blog_data[0] == 'm' );
 
 
188
  }
189
  }
190
 
@@ -332,10 +334,11 @@ class Util_Environment {
332
 
333
 
334
  $blog_data = Util_WpmuBlogmap::get_current_blog_data();
335
- if ( !is_null( $blog_data ) )
336
  $w3_current_blog_id = substr( $blog_data, 1 );
337
- else
338
  $w3_current_blog_id = 0;
 
339
 
340
  return $w3_current_blog_id;
341
  }
182
  $result = true;
183
  } else {
184
  $blog_data = Util_WpmuBlogmap::get_current_blog_data();
185
+ if ( is_null( $blog_data ) ) {
186
  $result = true;
187
+ } else {
188
+ $result = ( $blog_data[0] == 'm' );
189
+ }
190
  }
191
  }
192
 
334
 
335
 
336
  $blog_data = Util_WpmuBlogmap::get_current_blog_data();
337
+ if ( !is_null( $blog_data ) ) {
338
  $w3_current_blog_id = substr( $blog_data, 1 );
339
+ } else {
340
  $w3_current_blog_id = 0;
341
+ }
342
 
343
  return $w3_current_blog_id;
344
  }
Util_Ui.php CHANGED
@@ -791,7 +791,10 @@ class Util_Ui {
791
  echo $a['control_after'];
792
  }
793
 
794
- Util_Ui::pro_wrap_description( $a['excerpt'], $a['description'], $a['control_name'] );
 
 
 
795
  Util_Ui::pro_wrap_maybe_end( $a['control_name'] );
796
 
797
  if ( $a['label_class'] != 'w3tc_no_trtd' ) {
@@ -802,7 +805,7 @@ class Util_Ui {
802
 
803
 
804
 
805
- static private function config_item_preprocess( $a ) {
806
  $c = Dispatcher::config();
807
 
808
  if ( !isset( $a['value'] ) || is_null( $a['value'] ) ) {
791
  echo $a['control_after'];
792
  }
793
 
794
+ if ( isset( $a['description'] ) ) {
795
+ Util_Ui::pro_wrap_description( $a['excerpt'], $a['description'], $a['control_name'] );
796
+ }
797
+
798
  Util_Ui::pro_wrap_maybe_end( $a['control_name'] );
799
 
800
  if ( $a['label_class'] != 'w3tc_no_trtd' ) {
805
 
806
 
807
 
808
+ static public function config_item_preprocess( $a ) {
809
  $c = Dispatcher::config();
810
 
811
  if ( !isset( $a['value'] ) || is_null( $a['value'] ) ) {
inc/options/general.php CHANGED
@@ -126,7 +126,7 @@ Util_Ui::config_overloading_button( array(
126
  'key' => 'minify.configuration_overloaded'
127
  ) );
128
  ?>
129
- <p><?php w3tc_e( 'minify.general.header', 'Reduce load time by decreasing the size and number of <acronym title="Cascading Style Sheet">CSS</acronym> and <acronym title="JavaScript">JS</acronym> files. Automatically remove unncessary data from <acronym title="Cascading Style Sheet">CSS</acronym>, <acronym title="JavaScript">JS</acronym>, feed, page and post <acronym title="Hypertext Markup Language">HTML</acronym>.' ) ?></p>
130
 
131
  <table class="form-table">
132
  <?php
126
  'key' => 'minify.configuration_overloaded'
127
  ) );
128
  ?>
129
+ <p><?php w3tc_e( 'minify.general.header', 'Reduce load time by decreasing the size and number of <acronym title="Cascading Style Sheet">CSS</acronym> and <acronym title="JavaScript">JS</acronym> files. Automatically remove unnecessary data from <acronym title="Cascading Style Sheet">CSS</acronym>, <acronym title="JavaScript">JS</acronym>, feed, page and post <acronym title="Hypertext Markup Language">HTML</acronym>.' ) ?></p>
130
 
131
  <table class="form-table">
132
  <?php
languages/w3-total-cache.pot CHANGED
@@ -1,7196 +1,8102 @@
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: W3 Total Cache\n"
4
- "POT-Creation-Date: 2014-03-03 12:04+0100\n"
5
- "PO-Revision-Date: 2014-03-03 12:04+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: W3 EDGE\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "X-Generator: Poedit 1.6.4\n"
12
  "X-Poedit-KeywordsList: __;_e\n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
-
16
- #: extensions/CloudFlare.php:90
17
- msgid "CloudFlare"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  msgstr ""
19
 
20
- #: extensions/CloudFlare.php:96
21
- msgid "My Websites"
22
  msgstr ""
23
 
24
- #: extensions/CloudFlare.php:102
25
- msgid "Analytics"
26
  msgstr ""
27
 
28
- #: extensions/CloudFlare.php:108
29
- msgid "Account"
30
  msgstr ""
31
 
32
- #: extensions/CloudFlare/CloudFlareAPI.php:66
33
- msgid "CloudFlare requires \"email\" to be set."
34
  msgstr ""
35
 
36
- #: extensions/CloudFlare/CloudFlareAPI.php:71
37
- msgid "CloudFlare requires \"API key\" to be set."
38
  msgstr ""
39
 
40
- #: extensions/CloudFlare/CloudFlareAPI.php:77
41
- msgid "CloudFlare requires \"domain\" to be set."
42
  msgstr ""
43
 
44
- #: extensions/CloudFlare/CloudFlareSettings.php:8
45
- msgid "CloudFlare:"
46
  msgstr ""
47
 
48
- #: extensions/CloudFlare/CloudFlareSettings.php:9
49
- msgid "CloudFlare account email:"
 
50
  msgstr ""
51
 
52
- #: extensions/CloudFlare/CloudFlareSettings.php:10
53
- msgid "<abbr title=\"Application Programming Interface\">API</abbr> key:"
 
 
 
54
  msgstr ""
55
 
56
- #: extensions/CloudFlare/CloudFlareSettings.php:11
57
- msgid "Domain:"
58
  msgstr ""
59
 
60
- #: extensions/CloudFlare/CloudFlareSettings.php:15
61
  msgid ""
62
- "Cloudflare <abbr title=\"Internet Protocol\">IPs</abbr> <abbr title="
63
- "\"Internet Protocol version 4\">IP4</abbr> addresses"
 
64
  msgstr ""
65
 
66
- #: extensions/CloudFlare/CloudFlareSettings.php:16
67
- msgid ""
68
- "Cloudflare <abbr title=\"Internet Protocol\">IPs</abbr> <abbr title="
69
- "\"Internet Protocol version 6\">IP6</abbr> addresses"
70
  msgstr ""
71
 
72
- #: extensions/CloudFlare/general-settings-box.php:1
73
- msgid "Network Performance &amp; Security powered by CloudFlare"
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  msgstr ""
75
 
76
- #: extensions/CloudFlare/general-settings-box.php:3
77
- msgid "CloudFlare protects and accelerates websites."
 
78
  msgstr ""
79
 
80
- #: extensions/CloudFlare/general-settings-box.php:14
81
- #: inc/options/general.php:37 inc/options/general.php:57
82
- #: inc/options/general.php:105 inc/options/general.php:192
83
- #: inc/options/general.php:243 inc/options/general.php:322
84
- #: inc/options/general.php:489 inc/options/pgcache.php:238
85
- #: lib/W3/UI/Settings/Minify.php:20 lib/W3/UI/Settings/Minify.php:25
86
- #: lib/W3/UI/Settings/Minify.php:32
87
- msgid "Enable"
88
  msgstr ""
89
 
90
- #: extensions/CloudFlare/general-settings-box.php:33
91
- msgid "find it here"
92
  msgstr ""
93
 
94
- #: extensions/CloudFlare/general-settings-box.php:45
95
- msgid "Security level:"
 
96
  msgstr ""
97
 
98
- #: extensions/CloudFlare/general-settings-box.php:58
99
- msgid "Rocket Loader:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  msgstr ""
101
 
102
- #: extensions/CloudFlare/general-settings-box.php:71
103
- msgid "Minification:"
 
 
 
104
  msgstr ""
105
 
106
- #: extensions/CloudFlare/general-settings-box.php:84
107
- msgid "Development mode:"
 
 
 
 
108
  msgstr ""
109
 
110
- #: extensions/CloudFlare/general-settings-box.php:95
111
- #, php-format
112
- msgid "Will automatically turn off at %s"
113
- msgstr ""
114
-
115
- #: extensions/CloudFlare/general-settings-box.php:101
116
- #: inc/options/extensions/list.php:109 inc/options/general.php:83
117
- #: inc/options/general.php:170 inc/options/general.php:217
118
- #: inc/options/general.php:268 inc/options/general.php:298
119
- #: inc/options/general.php:353 inc/options/general.php:388
120
- #: inc/options/general.php:542
121
- msgid "Network policy:"
122
- msgstr ""
123
-
124
- #: extensions/CloudFlare/general-settings-box.php:103
125
- #: inc/options/general.php:85 inc/options/general.php:172
126
- #: inc/options/general.php:219 inc/options/general.php:270
127
- #: inc/options/general.php:300 inc/options/general.php:355
128
- #: inc/options/general.php:390 inc/options/general.php:544
129
- msgid "Apply the settings above to the entire network."
130
- msgstr ""
131
-
132
- #: extensions/CloudFlare/general-settings-box.php:111
133
- #: inc/options/browsercache.php:117 inc/options/browsercache.php:207
134
- #: inc/options/browsercache.php:285 inc/options/browsercache.php:373
135
- #: inc/options/cdn.php:140 inc/options/cdn.php:155 inc/options/cdn.php:303
136
- #: inc/options/dbcache.php:30 inc/options/dbcache.php:95
137
- #: inc/options/general.php:46 inc/options/general.php:93
138
- #: inc/options/general.php:180 inc/options/general.php:231
139
- #: inc/options/general.php:278 inc/options/general.php:308
140
- #: inc/options/general.php:363 inc/options/general.php:398
141
- #: inc/options/general.php:466 inc/options/general.php:661
142
- #: inc/options/general.php:691 inc/options/minify.php:70
143
- #: inc/options/minify.php:126 inc/options/minify.php:280
144
- #: inc/options/minify.php:397 inc/options/minify.php:497
145
- #: inc/options/mobile.php:83 inc/options/objectcache.php:83
146
- #: inc/options/pgcache.php:95 inc/options/pgcache.php:141
147
- #: inc/options/pgcache.php:228 inc/options/pgcache.php:397
148
- #: inc/options/pro/fragmentcache.php:101 inc/options/referrer.php:83
149
- msgid "Save all settings"
150
  msgstr ""
151
 
152
- #: extensions/CloudFlare/general-settings-box.php:112
153
- #: inc/options/general.php:364 inc/options/general.php:399
154
- msgid "Purge cache"
 
 
 
155
  msgstr ""
156
 
157
- #: extensions/CloudFlareAdmin.php:63 inc/options/extensions/list.php:62
158
- msgid "Settings"
159
  msgstr ""
160
 
161
- #: extensions/CloudFlareAdmin.php:101
162
- #, php-format
163
- msgid ""
164
- "CloudFlare protects and accelerates websites. <a href=\"%s\" target=\"_blank"
165
- "\">Sign up now for free</a> to get started,\n"
166
- " \tor if you have an account simply log in to obtain your <abbr title="
167
- "\"Application Programming Interface\">API</abbr> key from the <a href="
168
- "\"https://www.cloudflare.com/my-account.html\">account page</a> to enter it "
169
- "below.\n"
170
- " \tContact the CloudFlare <a href=\"http://www.cloudflare.com/help."
171
- "html\" target=\"_blank\">support team</a> with any questions."
172
  msgstr ""
173
 
174
- #: extensions/CloudFlareAdmin.php:120 extensions/CloudFlareAdmin.php:127
175
- msgid "Unable to make CloudFlare API request."
 
 
 
 
 
 
 
 
 
176
  msgstr ""
177
 
178
- #: extensions/CloudFlareAdmin.php:126
179
- msgid "All caches except CloudFlare successfully emptied."
 
 
180
  msgstr ""
181
 
182
- #: extensions/CloudFlareAdmin.php:145
183
- msgid "empty all caches except CloudFlare"
 
184
  msgstr ""
185
 
186
- #: extensions/CloudFlareAdmin.php:147
187
- msgid "at once"
 
188
  msgstr ""
189
 
190
- #: extensions/CloudFlareAdmin.php:168
191
- msgid ""
192
- "CloudFlare plugin detected. We recommend removing the\n"
193
- " plugin as it offers no additional capabilities when W3 Total "
194
- "Cache is installed. This message will disappear\n"
195
- " when CloudFlare is removed."
196
  msgstr ""
197
 
198
- #: extensions/FeedBurnerAdmin.php:52
199
  #, php-format
200
- msgid "The FeedBurner extension is currently %s "
 
 
201
  msgstr ""
202
 
203
- #: extensions/FeedBurnerAdmin.php:53 extensions/GenesisAdmin.php:32
204
- #: extensions/WordPressSEOAdmin.php:50 inc/options/browsercache.php:6
205
- #: inc/options/cdn.php:8 inc/options/dashboard.php:7 inc/options/dbcache.php:6
206
- #: inc/options/extensions.php:11 inc/options/general.php:11
207
- #: inc/options/minify.php:16 inc/options/new_relic.php:4
208
- #: inc/options/objectcache.php:9 inc/options/pgcache.php:9
209
- #: inc/options/pro/fragmentcache.php:6 inc/widget/new_relic.php:89
210
- msgid "enabled"
211
  msgstr ""
212
 
213
- #: extensions/FeedBurnerAdmin.php:82
214
- #, php-format
215
- msgid ""
216
- "Automatically ping (purge) FeedBurner feeds when pages / posts are modified. "
217
- "Default URL: %s"
218
  msgstr ""
219
 
220
- #: extensions/FeedBurnerAdmin.php:83
221
- msgid "Network Admin has no main URL."
222
  msgstr ""
223
 
224
- #: extensions/FeedBurnerAdmin.php:106
225
- msgid "Additional URLs:"
226
  msgstr ""
227
 
228
- #: extensions/FeedBurnerAdmin.php:107
229
- msgid "Specify any additional feed URLs to ping on FeedBurner."
230
  msgstr ""
231
 
232
- #: extensions/GenesisAdmin.php:31
233
  #, php-format
234
- msgid "The Genesis Framework extension is currently %s "
 
 
235
  msgstr ""
236
 
237
- #: extensions/GenesisAdmin.php:33 inc/options/browsercache.php:6
238
- #: inc/options/cdn.php:8 inc/options/dashboard.php:7 inc/options/dbcache.php:6
239
- #: inc/options/general.php:11 inc/options/minify.php:16
240
- #: inc/options/new_relic.php:4 inc/options/objectcache.php:9
241
- #: inc/options/pgcache.php:9 inc/options/pro/fragmentcache.php:6
242
- #: inc/widget/new_relic.php:89
243
- msgid "disabled"
244
  msgstr ""
245
 
246
- #: extensions/GenesisAdmin.php:35
247
- #, php-format
248
- msgid "and caching via <strong>%s</strong>"
249
  msgstr ""
250
 
251
- #: extensions/GenesisAdmin.php:189
252
- msgid "Cache wp_head loop:"
253
  msgstr ""
254
 
255
- #: extensions/GenesisAdmin.php:190
256
- msgid "Cache wp_head. This includes the embedded CSS, JS etc."
257
  msgstr ""
258
 
259
- #: extensions/GenesisAdmin.php:196
260
- msgid "Cache header:"
261
  msgstr ""
262
 
263
- #: extensions/GenesisAdmin.php:197
264
- msgid "Cache header loop. This is the area where the logo is located."
265
  msgstr ""
266
 
267
- #: extensions/GenesisAdmin.php:203
268
- msgid "Cache primary navigation:"
 
 
 
269
  msgstr ""
270
 
271
- #: extensions/GenesisAdmin.php:204
272
- msgid "Caches the navigation filter; per page."
 
 
 
273
  msgstr ""
274
 
275
- #: extensions/GenesisAdmin.php:210
276
- msgid "Cache secondary navigation:"
 
277
  msgstr ""
278
 
279
- #: extensions/GenesisAdmin.php:211
280
- msgid "Caches secondary navigation filter; per page."
 
281
  msgstr ""
282
 
283
- #: extensions/GenesisAdmin.php:217
284
- msgid "Cache front page post loop:"
 
 
 
 
 
285
  msgstr ""
286
 
287
- #: extensions/GenesisAdmin.php:218
288
- msgid "Caches the front page post loop, pagination is supported."
289
  msgstr ""
290
 
291
- #: extensions/GenesisAdmin.php:224
292
- msgid "Cache author/tag/categories/term post loop:"
293
  msgstr ""
294
 
295
- #: extensions/GenesisAdmin.php:225
296
- msgid ""
297
- "Caches the posts listed on tag, categories, author and other term pages, "
298
- "pagination is supported."
299
  msgstr ""
300
 
301
- #: extensions/GenesisAdmin.php:231
302
- msgid "Flush posts loop:"
303
  msgstr ""
304
 
305
- #: extensions/GenesisAdmin.php:232
306
- msgid ""
307
- "Flushes the posts loop cache on post updates. See setting above for affected "
308
- "loops."
309
  msgstr ""
310
 
311
- #: extensions/GenesisAdmin.php:238
312
- msgid "Cache single post / page:"
 
313
  msgstr ""
314
 
315
- #: extensions/GenesisAdmin.php:239
316
- msgid "Caches the single post / page loop, pagination is supported."
317
  msgstr ""
318
 
319
- #: extensions/GenesisAdmin.php:245
320
- msgid "Excluded single pages / posts:"
 
 
321
  msgstr ""
322
 
323
- #: extensions/GenesisAdmin.php:246
324
  msgid ""
325
- "List of pages / posts that should not have the single post / post loop "
326
- "cached. Specify one page / post per line. This area supports regular "
327
- "expressions."
 
 
 
 
 
328
  msgstr ""
329
 
330
- #: extensions/GenesisAdmin.php:252
331
- msgid "Cache comments:"
 
 
 
332
  msgstr ""
333
 
334
- #: extensions/GenesisAdmin.php:253
335
- msgid "Caches the comments loop, pagination is supported."
 
 
 
 
336
  msgstr ""
337
 
338
- #: extensions/GenesisAdmin.php:259
339
- msgid "Cache pings:"
340
  msgstr ""
341
 
342
- #: extensions/GenesisAdmin.php:260
343
- msgid "Caches the ping loop, pagination is supported. One per line."
 
344
  msgstr ""
345
 
346
- #: extensions/GenesisAdmin.php:266
347
- msgid "Cache sidebar:"
348
  msgstr ""
349
 
350
- #: extensions/GenesisAdmin.php:267
351
- msgid "Caches sidebar loop, the widget area."
352
  msgstr ""
353
 
354
- #: extensions/GenesisAdmin.php:273
355
- msgid "Exclude pages:"
 
 
 
 
 
 
 
 
 
 
356
  msgstr ""
357
 
358
- #: extensions/GenesisAdmin.php:274
 
359
  msgid ""
360
- "List of pages that should not have sidebar cached. Specify one page / post "
361
- "per line. This area supports regular expressions."
 
362
  msgstr ""
363
 
364
- #: extensions/GenesisAdmin.php:280 extensions/GenesisAdmin.php:287
365
- msgid "Cache footer:"
366
  msgstr ""
367
 
368
- #: extensions/GenesisAdmin.php:281
369
- msgid "Caches footer loop."
 
370
  msgstr ""
371
 
372
- #: extensions/GenesisAdmin.php:288
373
- msgid "Caches wp_footer loop."
 
374
  msgstr ""
375
 
376
- #: extensions/GenesisAdmin.php:293
377
- msgid "Disable fragment cache:"
 
 
 
 
378
  msgstr ""
379
 
380
- #: extensions/GenesisAdmin.php:299
381
- msgid "Select hooks:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
382
  msgstr ""
383
 
384
- #: extensions/GenesisAdmin.php:300
385
  msgid ""
386
- "Select hooks from the list that should not be cached if user belongs to any "
387
- "of the roles selected below."
 
388
  msgstr ""
389
 
390
- #: extensions/GenesisAdmin.php:305
391
- msgid "Select roles:"
 
 
 
392
  msgstr ""
393
 
394
- #: extensions/GenesisAdmin.php:306
395
- msgid "Select user roles that should not use the fragment cache."
 
396
  msgstr ""
397
 
398
- #: extensions/WordPressSEOAdmin.php:49
399
- #, php-format
400
- msgid "The WordPress SEO extension is currently %s "
 
 
 
 
 
 
 
401
  msgstr ""
402
 
403
- #: extensions/WordPressSEOAdmin.php:66
 
404
  msgid ""
405
- "Configures W3 Total Cache to comply with WordPress SEO requirements "
406
- "automatically."
407
  msgstr ""
408
 
409
- #: inc/define.php:284
410
- msgid "Stop Previewing"
 
 
411
  msgstr ""
412
 
413
- #: inc/define.php:284
414
- msgid "Preview"
 
 
 
 
 
 
 
 
 
 
 
415
  msgstr ""
416
 
417
- #: inc/define.php:1560
418
- #, php-format
419
- msgid "%dh"
 
 
 
 
 
 
 
 
420
  msgstr ""
421
 
422
- #: inc/define.php:1562
423
- #, php-format
424
- msgid "%dm"
 
 
 
 
 
425
  msgstr ""
426
 
427
- #: inc/define.php:1564
428
- #, php-format
429
- msgid "%ds"
430
  msgstr ""
431
 
432
- #: inc/define.php:1566 inc/define.php:1569
433
- #, php-format
434
- msgid "%dms"
435
  msgstr ""
436
 
437
- #: inc/functions/activation.php:57
438
- #, php-format
439
- msgid "%s<br />then %s."
440
  msgstr ""
441
 
442
- #: inc/functions/activation.php:70
443
- #, php-format
444
- msgid ""
445
- "<strong>%s</strong> could not be read, please run following command:<br />\n"
446
- " <strong style=\"color: #f00;\">chmod 777 %s</strong>"
447
  msgstr ""
448
 
449
- #: inc/functions/activation.php:74
450
  #, php-format
451
- msgid ""
452
- "<strong>%s</strong> could not be read, <strong>open_basedir</strong> "
453
- "restriction in effect,\n"
454
- " please check your php.ini settings:<br /><strong style=\"color: #f00;"
455
- "\">open_basedir = \"%s\"</strong>"
456
  msgstr ""
457
 
458
- #: inc/functions/activation.php:96
459
- #, php-format
460
- msgid "<li><strong style=\"color: #f00;\">chmod 777 %s</strong></li>"
461
  msgstr ""
462
 
463
- #: inc/functions/activation.php:103
464
  #, php-format
465
- msgid ""
466
- "<strong>%s</strong> could not be created, please run following command:<br />"
467
- "%s"
468
  msgstr ""
469
 
470
- #: inc/functions/activation.php:107
471
- #, php-format
472
- msgid ""
473
- "<strong>%s</strong> could not be created, <strong>open_basedir\n"
474
- " </strong> restriction in effect, please check your php."
475
- "ini settings:<br />\n"
476
- " <strong style=\"color: #f00;\">open_basedir = \"%s\"</"
477
- "strong>"
478
  msgstr ""
479
 
480
- #: inc/functions/activation.php:286
481
- msgid "FTP credentials don't allow to delete folder "
482
  msgstr ""
483
 
484
- #: inc/functions/activation.php:314
485
- msgid "FTP credentials don't allow to chmod "
486
  msgstr ""
487
 
488
- #: inc/functions/activation.php:346
489
- msgid "FTP credentials don't allow to delete "
490
  msgstr ""
491
 
492
- #: inc/functions/activation.php:464
493
- #, php-format
494
- msgid ""
495
- "Create the <strong>%s</strong> file and paste the following text into it:\n"
496
- " <textarea>%s</textarea> <br />"
497
  msgstr ""
498
 
499
- #: inc/functions/activation.php:495
500
- msgid "Technical info"
501
  msgstr ""
502
 
503
- #: inc/functions/activation.php:508
504
- msgid "Execute next commands in a shell:"
505
  msgstr ""
506
 
507
- #: inc/functions/activation.php:776
508
  #, php-format
509
  msgid ""
510
- "<strong>W3 Total Cache Error:</strong>\n"
511
- "\t\t Files and directories could not be automatically\n"
512
- "\t\t deleted.\n"
513
- "\t\t <table>\n"
514
- "\t\t <tr>\n"
515
- "\t\t <td>Please execute commands manually</td>\n"
516
- "\t\t <td>\n"
517
- "\t\t\t\t\t\t\t\t%s\n"
518
- "\t\t </td>\n"
519
- "\t\t </tr>\n"
520
- "\t\t <tr>\n"
521
- "\t\t <td>or use FTP form to allow\n"
522
- "\t\t <strong>W3 Total Cache</strong> make it "
523
- "automatically.\n"
524
- "\t\t </td>\n"
525
- "\t\t <td>\n"
526
- "\t\t\t\t\t\t\t\t%s\n"
527
- "\t\t </td>\n"
528
- "\t\t </tr></table>"
529
  msgstr ""
530
 
531
- #: inc/functions/activation.php:794
532
- msgid "View required changes"
533
  msgstr ""
534
 
535
- #: inc/functions/activation.php:795
536
- msgid "Update via FTP"
537
  msgstr ""
538
 
539
- #: inc/functions/admin_ui.php:73 inc/functions/widgets.php:61
540
- #: inc/options/support/form.php:26
541
- #: inc/options/support/payment.php:21
542
- msgid "Cancel"
543
  msgstr ""
544
 
545
- #: inc/functions/admin_ui.php:128
546
- msgid "Take a minute to update, here's why:"
 
 
547
  msgstr ""
548
 
549
- #: inc/functions/admin_ui.php:224 lib/W3/UI/PluginView.php:494
550
- msgid "Click to toggle"
 
 
 
551
  msgstr ""
552
 
553
- #: inc/functions/extensions.php:255
554
- #, php-format
555
- msgid ""
556
- "Your site meets the criteria for the %s extension for W3 Total Cache. <a "
557
- "class=\"button\" href=\"%s\">Click here</a> to activate it. %s"
558
  msgstr ""
559
 
560
- #: inc/functions/extensions.php:258 lib/W3/Plugin/NotificationsAdmin.php:97
561
- #: lib/W3/Plugin/TotalCacheAdmin.php:676 lib/W3/Plugin/TotalCacheAdmin.php:702
562
- #: lib/W3/UI/CdnNotes.php:27 lib/W3/UI/CdnNotes.php:34
563
- #: lib/W3/UI/CdnNotes.php:65 lib/W3/UI/PluginView.php:193
564
- #: lib/W3/UI/PluginView.php:200 lib/W3/UI/PluginView.php:217
565
- #: lib/W3/UI/PluginView.php:235 lib/W3/UI/PluginView.php:243
566
- #: lib/W3/UI/PluginView.php:388
567
- msgid "Hide this message"
568
  msgstr ""
569
 
570
- #: inc/functions/rule.php:333
571
- #, php-format
572
- msgid ""
573
- "Edit file <strong>%s\n"
574
- " </strong> and replace all lines between and "
575
- "including <strong>%s</strong> and\n"
576
- " <strong>%s</strong> markers with:"
577
  msgstr ""
578
 
579
- #: inc/functions/rule.php:339
580
- #, php-format
581
- msgid ""
582
- "Edit file <strong>%s</strong> and add the following rules\n"
583
- " above the WordPress directives:"
 
 
584
  msgstr ""
585
 
586
- #: inc/functions/rule.php:383
587
- #, php-format
588
- msgid ""
589
- "Edit file <strong>%s</strong> and remove all lines between and including "
590
- "<strong>%s</strong>\n"
591
- " and <strong>%s</strong> markers."
592
  msgstr ""
593
 
594
- #: inc/functions/themes.php:28
595
- msgid "All Templates"
 
 
 
 
596
  msgstr ""
597
 
598
- #: inc/functions/widgets.php:31
599
- msgid "View all"
 
600
  msgstr ""
601
 
602
- #: inc/functions/widgets.php:65
603
- msgid "Configure"
604
  msgstr ""
605
 
606
- #: inc/functions/widgets.php:83
607
- msgid "Submit"
608
  msgstr ""
609
 
610
- #: inc/lightbox/cdn_s3_bucket_location.php:14 inc/options/cdn/s3.php:26
611
- msgid "Create bucket"
612
  msgstr ""
613
 
614
- #: inc/lightbox/cdn_s3_bucket_location.php:18 inc/lightbox/self_test.php:320
615
- msgid "Close"
616
  msgstr ""
617
 
618
- #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:2
619
- #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:30
620
- #: inc/widget/maxcdn_signup.php:43 inc/widget/netdna_signup.php:15
621
- #: inc/widget/netdna_signup.php:45
622
- msgid "Create Pull Zone"
623
  msgstr ""
624
 
625
- #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:8
626
- #: inc/options/support/form/bug_report.php:13
627
- #: inc/options/support/form/email_support.php:13
628
- #: inc/options/support/form/linux_config.php:13
629
- #: inc/options/support/form/new_feature.php:13
630
- #: inc/options/support/form/phone_support.php:13
631
- #: inc/options/support/form/plugin_config.php:13
632
- #: inc/options/support/form/theme_config.php:13
633
- msgid "Name:"
634
  msgstr ""
635
 
636
- #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:10
637
- msgid ""
638
- "Pull Zone Name. Length: 3-32 chars; only letters, digits, and dash (-) "
639
- "accepted"
640
  msgstr ""
641
 
642
- #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:14
643
- msgid "Origin <acronym title=\"Uniform Resource Indicator\">URL</acronym>:"
644
  msgstr ""
645
 
646
- #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:16
647
- msgid "Your server's hostname or domain"
648
  msgstr ""
649
 
650
- #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:20
651
- msgid "Description:"
652
  msgstr ""
653
 
654
- #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:22
655
- msgid "Something that describes your zone. Length: 1-255 chars"
 
656
  msgstr ""
657
 
658
- #: inc/lightbox/minify_recommendations.php:5
659
- msgid ""
660
- "To get started with minify, we've identified the following external CSS and "
661
- "JS objects in the"
662
  msgstr ""
663
 
664
- #: inc/lightbox/minify_recommendations.php:11
665
- msgid ""
666
- "theme. Select \"add\" the files you wish to minify, then click \"apply &amp; "
667
- "close\" to save the settings."
668
  msgstr ""
669
 
670
- #: inc/lightbox/minify_recommendations.php:23
671
- #: inc/lightbox/minify_recommendations.php:77
672
- msgid "Add:"
673
  msgstr ""
674
 
675
- #: inc/lightbox/minify_recommendations.php:25
676
- #: inc/lightbox/minify_recommendations.php:79 inc/options/minify.php:234
677
- #: inc/options/minify.php:359
678
- msgid "File URI:"
679
  msgstr ""
680
 
681
- #: inc/lightbox/minify_recommendations.php:26
682
- #: inc/lightbox/minify_recommendations.php:80 inc/options/minify.php:235
683
- #: inc/options/minify.php:360
684
- msgid "Template:"
685
  msgstr ""
686
 
687
- #: inc/lightbox/minify_recommendations.php:27 inc/options/minify.php:236
688
- msgid "Embed Location:"
689
  msgstr ""
690
 
691
- #: inc/lightbox/minify_recommendations.php:47 inc/options/minify.php:254
692
- msgid "Embed in &lt;head&gt;"
693
  msgstr ""
694
 
695
- #: inc/lightbox/minify_recommendations.php:48 inc/options/minify.php:255
696
- msgid "Embed after &lt;body&gt;"
697
  msgstr ""
698
 
699
- #: inc/lightbox/minify_recommendations.php:49 inc/options/minify.php:256
700
- msgid "Embed before &lt;/body&gt;"
701
  msgstr ""
702
 
703
- #: inc/lightbox/minify_recommendations.php:53
704
- #: inc/lightbox/minify_recommendations.php:98 inc/options/minify.php:261
705
- #: inc/options/minify.php:378
706
- msgid "Verify URI"
707
  msgstr ""
708
 
709
- #: inc/lightbox/minify_recommendations.php:62
710
- #: inc/lightbox/minify_recommendations.php:107
711
- msgid "Check / Uncheck All"
712
  msgstr ""
713
 
714
- #: inc/lightbox/minify_recommendations.php:65
715
- msgid "No files found."
716
  msgstr ""
717
 
718
- #: inc/lightbox/minify_recommendations.php:68
719
- msgid "Cascading Style Sheets:"
 
720
  msgstr ""
721
 
722
- #: inc/lightbox/minify_recommendations.php:116
723
- msgid "Apply &amp; close"
 
 
 
 
 
 
 
724
  msgstr ""
725
 
726
- #: inc/lightbox/minify_recommendations.php:120
727
- msgid "Notes"
 
 
 
 
728
  msgstr ""
729
 
730
- #: inc/lightbox/minify_recommendations.php:123
731
- msgid ""
732
- "Typically minification of advertiser code, analytics/statistics or any other "
733
- "types of tracking code is not recommended."
 
 
 
 
734
  msgstr ""
735
 
736
- #: inc/lightbox/minify_recommendations.php:124
737
- msgid ""
738
- "Scripts that were not already detected above may require <a href=\"admin.php?"
739
- "page=w3tc_support&amp;request_type=plugin_config\">professional "
740
- "consultation</a> to implement."
741
  msgstr ""
742
 
743
- #: inc/lightbox/self_test.php:10
744
- msgid "Compatibility Test"
 
745
  msgstr ""
746
 
747
- #: inc/lightbox/self_test.php:13
748
- msgid "Legend"
749
  msgstr ""
750
 
751
- #: inc/lightbox/self_test.php:16
752
- msgid "<code>Installed</code>: Functionality will work properly."
753
  msgstr ""
754
 
755
- #: inc/lightbox/self_test.php:17
756
- msgid ""
757
- "<code>Not detected</code>: May be installed, but cannot be automatically "
758
- "confirmed."
759
  msgstr ""
760
 
761
- #: inc/lightbox/self_test.php:18
762
- msgid "<code>Ok</code>: Current value is acceptable."
763
  msgstr ""
764
 
765
- #: inc/lightbox/self_test.php:19
766
- msgid "<code>Yes / No</code>: The value was successful detected."
 
 
 
 
 
 
 
 
767
  msgstr ""
768
 
769
- #: inc/lightbox/self_test.php:24
770
- msgid "Server Modules &amp; Resources:"
 
 
 
771
  msgstr ""
772
 
773
- #: inc/lightbox/self_test.php:28
774
- msgid "Plugin Version:"
 
 
775
  msgstr ""
776
 
777
- #: inc/lightbox/self_test.php:32
778
- msgid "PHP Version:"
 
 
 
 
 
 
 
 
779
  msgstr ""
780
 
781
- #: inc/lightbox/self_test.php:60
782
  msgid ""
783
- "(required for Self-hosted (<acronym title=\"File Transfer Protocol\">FTP</"
784
- "acronym>) <acronym title=\"Content Delivery Network\">CDN</acronym> support)"
 
785
  msgstr ""
786
 
787
- #: inc/lightbox/self_test.php:64
788
- msgid "Multibyte String support:"
789
  msgstr ""
790
 
791
- #: inc/lightbox/self_test.php:66 inc/lightbox/self_test.php:76
792
- #: inc/lightbox/self_test.php:86 inc/lightbox/self_test.php:111
793
- #: inc/lightbox/self_test.php:120 inc/lightbox/self_test.php:206
794
- msgid "Installed"
795
  msgstr ""
796
 
797
- #: inc/lightbox/self_test.php:68 inc/lightbox/self_test.php:78
798
- #: inc/lightbox/self_test.php:88 inc/lightbox/self_test.php:104
799
- #: inc/lightbox/self_test.php:113 inc/lightbox/self_test.php:122
800
- #: inc/lightbox/self_test.php:134 inc/lightbox/self_test.php:146
801
- #: inc/lightbox/self_test.php:208
802
- msgid "Not installed"
803
  msgstr ""
804
 
805
- #: inc/lightbox/self_test.php:70
806
- msgid "(required for Rackspace Cloud Files support)"
 
807
  msgstr ""
808
 
809
- #: inc/lightbox/self_test.php:74
810
- msgid "cURL extension:"
 
 
 
811
  msgstr ""
812
 
813
- #: inc/lightbox/self_test.php:80
814
- msgid ""
815
- "(required for Amazon S3, Amazon CloudFront, Rackspace CloudFiles support)"
 
 
816
  msgstr ""
817
 
818
- #: inc/lightbox/self_test.php:90
819
- msgid "(required for compression support)"
 
 
 
 
820
  msgstr ""
821
 
822
- #: inc/lightbox/self_test.php:96
823
- msgid "Installed (APC)"
 
824
  msgstr ""
825
 
826
- #: inc/lightbox/self_test.php:98
827
- msgid "Installed (eAccelerator)"
 
 
828
  msgstr ""
829
 
830
- #: inc/lightbox/self_test.php:100
831
- msgid "Installed (XCache)"
 
832
  msgstr ""
833
 
834
- #: inc/lightbox/self_test.php:102
835
- msgid "PHP6"
 
836
  msgstr ""
837
 
838
- #: inc/lightbox/self_test.php:109
839
- msgid "Memcache extension:"
 
 
 
 
840
  msgstr ""
841
 
842
- #: inc/lightbox/self_test.php:118
843
- msgid "HTML Tidy extension:"
 
844
  msgstr ""
845
 
846
- #: inc/lightbox/self_test.php:124
847
- msgid "(required for HTML Tidy minifier support)"
 
848
  msgstr ""
849
 
850
- #: inc/lightbox/self_test.php:128
851
- msgid "Mime type detection:"
 
852
  msgstr ""
853
 
854
- #: inc/lightbox/self_test.php:130
855
- msgid "Installed (Fileinfo)"
 
 
 
856
  msgstr ""
857
 
858
- #: inc/lightbox/self_test.php:132
859
- msgid "Installed (mime_content_type)"
 
 
860
  msgstr ""
861
 
862
- #: inc/lightbox/self_test.php:136
863
- msgid ""
864
- "(required for <acronym title=\"Content Delivery Network\">CDN</acronym> "
865
- "support)"
866
  msgstr ""
867
 
868
- #: inc/lightbox/self_test.php:140
869
- msgid "Hash function:"
870
  msgstr ""
871
 
872
- #: inc/lightbox/self_test.php:142
873
- msgid "Installed (hash)"
 
874
  msgstr ""
875
 
876
- #: inc/lightbox/self_test.php:144
877
- msgid "Installed (mhash)"
 
 
 
878
  msgstr ""
879
 
880
- #: inc/lightbox/self_test.php:148
881
  msgid ""
882
- "(required for NetDNA / MaxCDN <acronym title=\"Content Delivery Network"
883
- "\">CDN</acronym> purge support)"
884
  msgstr ""
885
 
886
- #: inc/lightbox/self_test.php:152
887
- msgid "Safe mode:"
 
888
  msgstr ""
889
 
890
- #: inc/lightbox/self_test.php:154 inc/lightbox/self_test.php:172
891
- msgid "On"
 
892
  msgstr ""
893
 
894
- #: inc/lightbox/self_test.php:156 inc/lightbox/self_test.php:165
895
- #: inc/lightbox/self_test.php:174
896
- msgid "Off"
 
 
897
  msgstr ""
898
 
899
- #: inc/lightbox/self_test.php:161
900
- msgid "Open basedir:"
 
 
 
 
 
 
901
  msgstr ""
902
 
903
- #: inc/lightbox/self_test.php:163
904
- msgid "On:"
 
 
 
905
  msgstr ""
906
 
907
- #: inc/lightbox/self_test.php:170
908
- msgid "zlib output compression:"
909
  msgstr ""
910
 
911
- #: inc/lightbox/self_test.php:179
912
- msgid "set_time_limit:"
913
  msgstr ""
914
 
915
- #: inc/lightbox/self_test.php:181
916
- msgid "Available"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
917
  msgstr ""
918
 
919
- #: inc/lightbox/self_test.php:183
920
- msgid "Not available"
921
  msgstr ""
922
 
923
- #: inc/lightbox/self_test.php:211
924
- msgid "Not detected"
925
  msgstr ""
926
 
927
- #: ../inc/lightbox/self_test.php:202
928
- msgid "(required for Self-hosted (<acronym title=\"File Transfer Protocol\">FTP</acronym>) <acronym title=\"Content Delivery Network\">CDN</acronym> <acronym title=\"Secure File Transfer Protocol\">SFTP</acronym> support)"
 
929
  msgstr ""
930
 
931
- #: inc/lightbox/self_test.php:213
932
- msgid "(required for disk enhanced Page Cache and Browser Cache)"
933
  msgstr ""
934
 
935
- #: inc/lightbox/self_test.php:220
936
- msgid "Additional Server Modules"
 
937
  msgstr ""
938
 
939
- #: inc/lightbox/self_test.php:231
940
- msgid "WordPress Resources"
 
 
 
 
941
  msgstr ""
942
 
943
- #: inc/lightbox/self_test.php:246 inc/lightbox/self_test.php:263
944
- #: inc/lightbox/self_test.php:277 lib/W3/Cdn/Mirror/Akamai.php:112
945
- #: lib/W3/Cdn/Mirror/Cotendo.php:114 lib/W3/Cdn/Mirror/Edgecast.php:66
946
- #: lib/W3/Cdn/Mirror/Netdna.php:234
947
- msgid "OK"
948
  msgstr ""
949
 
950
- #: inc/lightbox/self_test.php:248 inc/lightbox/self_test.php:254
951
- #: inc/lightbox/self_test.php:265 inc/lightbox/self_test.php:275
952
- msgid "Not write-able"
953
  msgstr ""
954
 
955
- #: inc/lightbox/self_test.php:252
956
- msgid "Write-able"
957
  msgstr ""
958
 
959
- #: inc/lightbox/self_test.php:273
960
- msgid "Error:"
961
  msgstr ""
962
 
963
- #: inc/lightbox/self_test.php:282
964
- msgid "Fancy permalinks:"
 
 
 
 
965
  msgstr ""
966
 
967
- #: inc/lightbox/self_test.php:286 inc/lightbox/self_test.php:304
968
- #: inc/options/minify.php:58
969
- msgid "Disabled"
970
  msgstr ""
971
 
972
- #: inc/lightbox/self_test.php:291
973
- msgid "WP_CACHE define:"
 
 
974
  msgstr ""
975
 
976
- #: inc/lightbox/self_test.php:293
977
- msgid "Defined"
978
  msgstr ""
979
 
980
- #: inc/lightbox/self_test.php:295
981
- msgid "Not defined"
 
 
982
  msgstr ""
983
 
984
- #: inc/lightbox/self_test.php:300
985
- msgid "URL rewrite:"
 
986
  msgstr ""
987
 
988
- #: inc/lightbox/self_test.php:302
989
- msgid "Enabled"
990
  msgstr ""
991
 
992
- #: inc/lightbox/self_test.php:309
993
- msgid "Network mode:"
994
  msgstr ""
995
 
996
- #: inc/lightbox/self_test.php:311 inc/options/support/form/bug_report.php:87
997
- msgid "Yes"
998
  msgstr ""
999
 
1000
- #: inc/lightbox/self_test.php:313
1001
- msgid "No"
 
 
1002
  msgstr ""
1003
 
1004
- #: inc/lightbox/support_us.php:34
1005
- msgid "Support Us, It's Free!"
1006
  msgstr ""
1007
 
1008
- #: inc/lightbox/support_us.php:36
1009
- msgid ""
1010
- "We noticed you've been using W3 Total cache for at least 30 days, please "
1011
- "help us improve WordPress:"
1012
  msgstr ""
1013
 
1014
- #: inc/lightbox/support_us.php:55
1015
- msgid "Tell Your Friends"
 
 
1016
  msgstr ""
1017
 
1018
- #: inc/lightbox/support_us.php:63
1019
- msgid "Login & Rate Us"
 
1020
  msgstr ""
1021
 
1022
- #: inc/lightbox/support_us.php:70
1023
- msgid "Yes, sign me up."
 
 
 
 
 
 
 
1024
  msgstr ""
1025
 
1026
- #: inc/lightbox/upgrade.php:30
1027
- msgid "Subscribe to Go Faster Now"
 
 
 
 
 
 
 
1028
  msgstr ""
1029
 
1030
- #: inc/options/about.php:5
1031
  msgid ""
1032
- "User experience is an important aspect of every web site and all web sites "
1033
- "can benefit from effective caching and file size reduction. We have applied "
1034
- "web site optimization methods typically used with high traffic sites and "
1035
- "simplified their implementation. Coupling these methods either <a href="
1036
- "\"http://memcached.org/\" target=\"_blank\">memcached</a> and/or opcode "
1037
- "caching and the <acronym title=\"Content Delivery Network\">CDN</acronym> of "
1038
- "your choosing to provide the following features and benefits:"
1039
  msgstr ""
1040
 
1041
- #: inc/options/about.php:8
1042
- msgid "Improved Google search engine ranking"
 
 
 
 
1043
  msgstr ""
1044
 
1045
- #: inc/options/about.php:9
1046
- msgid "Increased visitor time on site"
 
 
1047
  msgstr ""
1048
 
1049
- #: inc/options/about.php:10
1050
- msgid "Optimized progressive render (pages start rendering immediately)"
 
 
 
 
1051
  msgstr ""
1052
 
1053
- #: inc/options/about.php:11
1054
- msgid ""
1055
- "Reduced <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> "
1056
- "Transactions, <acronym title=\"Domain Name System\">DNS</acronym> lookups "
1057
- "and reduced document load time"
 
1058
  msgstr ""
1059
 
1060
- #: inc/options/about.php:12
1061
- msgid ""
1062
- "Bandwidth savings via Minify and <acronym title=\"Hypertext Transfer Protocol"
1063
- "\">HTTP</acronym> compression of <acronym title=\"Hypertext Markup Language"
1064
- "\">HTML</acronym>, <acronym title=\"Cascading Style Sheet\">CSS</acronym>, "
1065
- "JavaScript and feeds"
1066
  msgstr ""
1067
 
1068
- #: inc/options/about.php:13
1069
- msgid ""
1070
- "Increased web server concurrency and increased scale (easily sustain high "
1071
- "traffic spikes)"
1072
  msgstr ""
1073
 
1074
- #: inc/options/about.php:14
1075
- msgid ""
1076
- "Transparent content delivery network (<acronym title=\"Content Delivery "
1077
- "Network\">CDN</acronym>) integration with Media Library, theme files and "
1078
- "WordPress core"
1079
  msgstr ""
1080
 
1081
- #: inc/options/about.php:15
1082
- msgid "Caching of pages / posts in memory or on disk or on CDN (mirror only)"
1083
  msgstr ""
1084
 
1085
- #: inc/options/about.php:16
1086
- msgid ""
1087
- "Caching of (minified) <acronym title=\"Cascading Style Sheet\">CSS</acronym> "
1088
- "and JavaScript in memory, on disk or on <acronym title=\"Content Delivery "
1089
- "Network\">CDN</acronym>"
1090
  msgstr ""
1091
 
1092
- #: inc/options/about.php:17
1093
- msgid "Caching of database objects in memory or on disk"
1094
  msgstr ""
1095
 
1096
- #: inc/options/about.php:18
1097
- msgid "Caching of objects in memory or on disk"
1098
  msgstr ""
1099
 
1100
- #: inc/options/about.php:19
1101
- msgid ""
1102
- "Caching of feeds (site, categories, tags, comments, search results) in "
1103
- "memory or on disk"
1104
  msgstr ""
1105
 
1106
- #: inc/options/about.php:20
1107
- msgid ""
1108
- "Caching of search results pages (i.e. <acronym title=\"Uniform Resource "
1109
- "Identifier\">URI</acronym>s with query string variables) in memory or on disk"
1110
  msgstr ""
1111
 
1112
- #: inc/options/about.php:21
1113
- msgid "Minification of posts / pages and feeds"
1114
  msgstr ""
1115
 
1116
- #: inc/options/about.php:22
1117
- msgid ""
1118
- "Minification (concatenation and white space removal) of inline, external or "
1119
- "3rd party JavaScript / <acronym title=\"Cascading Style Sheet\">CSS</"
1120
- "acronym> with automated updates"
1121
  msgstr ""
1122
 
1123
- #: inc/options/about.php:23
1124
- msgid ""
1125
- "Complete header management including <a href=\"http://en.wikipedia.org/wiki/"
1126
- "HTTP_ETag\">Etags</a>"
1127
  msgstr ""
1128
 
1129
- #: inc/options/about.php:24
1130
- msgid "JavaScript embedding group and location management"
1131
  msgstr ""
1132
 
1133
- #: inc/options/about.php:25
1134
- msgid ""
1135
- "Import post attachments directly into the Media Library (and <acronym title="
1136
- "\"Content Delivery Network\">CDN</acronym>)"
1137
  msgstr ""
1138
 
1139
- #: inc/options/about.php:28
1140
- msgid ""
1141
- "Your users have less data to download, you can now serve more visitors at "
1142
- "once without upgrading your hardware and you don't have to change how you do "
1143
- "anything; just set it and forget it."
1144
  msgstr ""
1145
 
1146
- #: inc/options/about.php:30
1147
- msgid "Who do I thank for all of this?"
1148
  msgstr ""
1149
 
1150
- #: inc/options/about.php:32
1151
- msgid ""
1152
- "It's quite difficult to recall all of the innovators that have shared their "
1153
- "thoughts, code and experiences in the blogosphere over the years, but here "
1154
- "are some names to get you started:"
1155
  msgstr ""
1156
 
1157
- #: inc/options/about.php:49
1158
- msgid ""
1159
- "Please reach out to all of these people and support their projects if you're "
1160
- "so inclined."
1161
  msgstr ""
1162
 
1163
- #: inc/options/browsercache.php:6
1164
- #, php-format
1165
- msgid "Browser caching is currently %s."
 
1166
  msgstr ""
1167
 
1168
- #: inc/options/browsercache.php:12
1169
- #, php-format
1170
- msgid ""
1171
- "%sUpdate media query string%s to make existing file modifications visible to "
1172
- "visitors with a primed cache"
1173
  msgstr ""
1174
 
1175
- #: inc/options/browsercache.php:20 inc/options/cdn.php:42
1176
- #: inc/options/common/header.php:81 inc/options/common/header.php:122
1177
- #: inc/options/common/header.php:137 inc/options/common/header.php:153
1178
- #: inc/options/common/header.php:176 inc/options/common/header.php:212
1179
- #: inc/options/dbcache.php:18 inc/options/general.php:18
1180
- #: inc/options/minify.php:36 inc/options/pgcache.php:24
1181
- msgid "General"
1182
  msgstr ""
1183
 
1184
- #: inc/options/browsercache.php:21
1185
- msgid "Specify global browser cache policy."
 
 
1186
  msgstr ""
1187
 
1188
- #: inc/options/browsercache.php:29 lib/W3/UI/Settings/BrowserCache.php:14
1189
- #: lib/W3/UI/Settings/BrowserCache.php:24
1190
- #: lib/W3/UI/Settings/BrowserCache.php:32
1191
- msgid "Set Last-Modified header"
1192
  msgstr ""
1193
 
1194
- #: inc/options/browsercache.php:30 inc/options/browsercache.php:129
1195
- #: inc/options/browsercache.php:219 inc/options/browsercache.php:295
1196
- msgid "Set the Last-Modified header to enable 304 Not Modified response."
1197
  msgstr ""
1198
 
1199
- #: inc/options/browsercache.php:39 lib/W3/UI/Settings/BrowserCache.php:15
1200
- #: lib/W3/UI/Settings/BrowserCache.php:25
1201
- #: lib/W3/UI/Settings/BrowserCache.php:33
1202
- msgid "Set expires header"
1203
  msgstr ""
1204
 
1205
- #: inc/options/browsercache.php:40 inc/options/browsercache.php:136
1206
- #: inc/options/browsercache.php:226 inc/options/browsercache.php:302
1207
- msgid "Set the expires header to encourage browser caching of files."
 
1208
  msgstr ""
1209
 
1210
- #: inc/options/browsercache.php:46 lib/W3/UI/Settings/BrowserCache.php:17
1211
- #: lib/W3/UI/Settings/BrowserCache.php:27
1212
- #: lib/W3/UI/Settings/BrowserCache.php:35
1213
- msgid "Set cache control header"
1214
  msgstr ""
1215
 
1216
- #: inc/options/browsercache.php:47 inc/options/browsercache.php:152
1217
- #: inc/options/browsercache.php:243 inc/options/browsercache.php:318
1218
- msgid ""
1219
- "Set pragma and cache-control headers to encourage browser caching of files."
1220
  msgstr ""
1221
 
1222
- #: inc/options/browsercache.php:54
1223
- msgid "Set entity tag (eTag)"
1224
  msgstr ""
1225
 
1226
- #: inc/options/browsercache.php:55 inc/options/browsercache.php:176
1227
- #: inc/options/browsercache.php:266 inc/options/browsercache.php:342
1228
- msgid "Set the Etag header to encourage browser caching of files."
1229
  msgstr ""
1230
 
1231
- #: inc/options/browsercache.php:61 lib/W3/UI/Settings/BrowserCache.php:20
1232
- #: lib/W3/UI/Settings/BrowserCache.php:30
1233
- #: lib/W3/UI/Settings/BrowserCache.php:38
1234
- msgid "Set W3 Total Cache header"
1235
  msgstr ""
1236
 
1237
- #: inc/options/browsercache.php:62 inc/options/browsercache.php:182
1238
- #: inc/options/browsercache.php:272 inc/options/browsercache.php:348
1239
- msgid "Set this header to assist in identifying optimized files."
 
1240
  msgstr ""
1241
 
1242
- #: inc/options/browsercache.php:69 lib/W3/UI/Settings/BrowserCache.php:21
1243
- #: lib/W3/UI/Settings/BrowserCache.php:31
1244
  msgid ""
1245
- "Enable <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> (gzip) "
1246
- "compression"
1247
  msgstr ""
1248
 
1249
- #: inc/options/browsercache.php:70 inc/options/browsercache.php:188
1250
- #: inc/options/browsercache.php:278 inc/options/browsercache.php:354
1251
- msgid "Reduce the download time for text-based files."
 
1252
  msgstr ""
1253
 
1254
- #: inc/options/browsercache.php:77 lib/W3/UI/Settings/BrowserCache.php:22
1255
- #: lib/W3/UI/Settings/BrowserCache.php:40
1256
- msgid "Prevent caching of objects after settings change"
1257
  msgstr ""
1258
 
1259
- #: inc/options/browsercache.php:78 inc/options/browsercache.php:194
1260
- #: inc/options/browsercache.php:360
1261
- msgid ""
1262
- "Whenever settings are changed, a new query string will be generated and "
1263
- "appended to objects allowing the new policy to be applied."
1264
  msgstr ""
1265
 
1266
- #: inc/options/browsercache.php:87
1267
- msgid ""
1268
- "Do not add the prevent caching query string to the specified files. Supports "
1269
- "regular expressions."
1270
  msgstr ""
1271
 
1272
- #: inc/options/browsercache.php:94
1273
- msgid "Don't set cookies for static files"
1274
  msgstr ""
1275
 
1276
- #: inc/options/browsercache.php:95 inc/options/browsercache.php:200
1277
- #: inc/options/browsercache.php:366
1278
- msgid "Removes Set-Cookie header for responses."
1279
  msgstr ""
1280
 
1281
- #: inc/options/browsercache.php:101
1282
- msgid ""
1283
- "Reduce server load by allowing the web server to handle 404 (not found) "
1284
- "errors for static files (images etc)."
1285
  msgstr ""
1286
 
1287
- #: inc/options/browsercache.php:110
1288
- msgid "Never process 404 (not found) events for the specified files."
1289
  msgstr ""
1290
 
1291
- #: inc/options/browsercache.php:121 inc/options/common/header.php:177
1292
- msgid ""
1293
- "<acronym title=\"Cascading Style Sheet\">CSS</acronym> &amp; <acronym title="
1294
- "\"JavaScript\">JS</acronym>"
1295
  msgstr ""
1296
 
1297
- #: inc/options/browsercache.php:122
1298
- msgid ""
1299
- "Specify browser cache policy for Cascading Style Sheets and JavaScript files."
1300
  msgstr ""
1301
 
1302
- #: inc/options/browsercache.php:146 inc/options/browsercache.php:237
1303
- #: inc/options/browsercache.php:312 inc/options/cdn.php:210
1304
- #: inc/options/cdn.php:219 inc/options/dbcache.php:53
1305
- #: inc/options/dbcache.php:61 inc/options/minify.php:436
1306
- #: inc/options/minify.php:445 inc/options/objectcache.php:41
1307
- #: inc/options/objectcache.php:49 inc/options/pgcache.php:111
1308
- #: inc/options/pgcache.php:293 inc/options/pgcache.php:303
1309
- #: inc/options/pgcache.php:310 inc/options/pro/fragmentcache.php:77
1310
- #: inc/options/pro/fragmentcache.php:84
1311
- msgid "seconds"
1312
  msgstr ""
1313
 
1314
- #: inc/options/browsercache.php:165 inc/options/browsercache.php:255
1315
- #: inc/options/browsercache.php:331
1316
- msgid "cache with max-age (\"public, max-age=EXPIRES_SECONDS\")"
1317
  msgstr ""
1318
 
1319
- #: inc/options/browsercache.php:166
1320
- msgid "cache with validation (\"public, must-revalidate, proxy-revalidate\")"
1321
  msgstr ""
1322
 
1323
- #: inc/options/browsercache.php:167 inc/options/browsercache.php:257
1324
- #: inc/options/browsercache.php:333
1325
- msgid ""
1326
- "cache with max-age and validation (\"max-age=EXPIRES_SECONDS, public, must-"
1327
- "revalidate, proxy-revalidate\")"
1328
  msgstr ""
1329
 
1330
- #: inc/options/browsercache.php:168 inc/options/browsercache.php:258
1331
- #: inc/options/browsercache.php:334
1332
- msgid "cache without proxy (\"private, must-revalidate\")"
1333
  msgstr ""
1334
 
1335
- #: inc/options/browsercache.php:169
1336
- msgid "no-cache (\"max-age=0, private, no-store, no-cache, must-revalidate\")"
1337
  msgstr ""
1338
 
1339
- #: inc/options/browsercache.php:211
1340
- msgid ""
1341
- "<acronym title=\"Hypertext Markup Language\">HTML</acronym> &amp; <acronym "
1342
- "title=\"Extensible Markup Language\">XML</acronym>"
1343
  msgstr ""
1344
 
1345
- #: inc/options/browsercache.php:212
1346
  msgid ""
1347
- "Specify browser cache policy for posts, pages, feeds and text-based files."
1348
- msgstr ""
1349
-
1350
- #: inc/options/browsercache.php:256 inc/options/browsercache.php:332
1351
- msgid "cache with validation (\"public, must-revalidate, proxy-revalidate\")"
1352
  msgstr ""
1353
 
1354
- #: inc/options/browsercache.php:259 inc/options/browsercache.php:335
1355
- msgid "no-cache (\"max-age=0, private, no-store, no-cache, must-revalidate\")"
1356
  msgstr ""
1357
 
1358
- #: inc/options/browsercache.php:289
1359
- msgid "Media &amp; Other Files"
 
1360
  msgstr ""
1361
 
1362
- #: inc/options/browsercache.php:330
1363
- msgid "cache (\"public\")"
1364
  msgstr ""
1365
 
1366
- #: inc/options/cdn.php:6
1367
  #, php-format
1368
- msgid "Content Delivery Network support via %1$s is currently %2$s."
1369
  msgstr ""
1370
 
1371
- #: inc/options/cdn.php:26
1372
- msgid ""
1373
- "Prepare the <acronym title=\"Content Delivery Network\">CDN</acronym> by:"
1374
  msgstr ""
1375
 
1376
- #: inc/options/cdn.php:27
1377
- msgid "importing attachments into the Media Library"
1378
  msgstr ""
1379
 
1380
- #: inc/options/cdn.php:28
1381
- msgid "unsuccessful file transfers"
 
 
1382
  msgstr ""
1383
 
1384
- #: inc/options/cdn.php:28
1385
- msgid "if some objects appear to be missing."
 
 
 
 
 
1386
  msgstr ""
1387
 
1388
- #: inc/options/cdn.php:30 inc/popup/cdn_purge.php:35 inc/widget/maxcdn.php:25
1389
- #: inc/widget/netdna.php:25
1390
- msgid "Purge"
 
 
 
1391
  msgstr ""
1392
 
1393
- #: inc/options/cdn.php:30
1394
  msgid ""
1395
- "objects from the <acronym title=\"Content Delivery Network\">CDN</acronym> "
1396
- "if needed."
 
1397
  msgstr ""
1398
 
1399
- #: inc/options/cdn.php:32
1400
- msgid "if the domain name of your site has ever changed."
1401
  msgstr ""
1402
 
1403
- #: inc/options/cdn.php:36 inc/options/minify.php:29
1404
- msgid "Update media query string"
1405
  msgstr ""
1406
 
1407
- #: inc/options/cdn.php:36
1408
- msgid ""
1409
- "to make existing file modifications visible to visitors with a primed cache."
1410
  msgstr ""
1411
 
1412
- #: inc/options/cdn.php:47
1413
- msgid ""
1414
- "If checked, all attachments will be hosted with the <acronym title=\"Content "
1415
- "Delivery Network\">CDN</acronym>."
1416
  msgstr ""
1417
 
1418
- #: inc/options/cdn.php:51
1419
- msgid "Upload attachments"
1420
  msgstr ""
1421
 
1422
- #: inc/options/cdn.php:58
1423
  msgid ""
1424
- "If checked, WordPress static core file types specified in the \"wp-includes "
1425
- "file types to upload\" field below will be hosted with the <acronym title="
1426
- "\"Content Delivery Network\">CDN</acronym>."
1427
  msgstr ""
1428
 
1429
- #: inc/options/cdn.php:62
1430
- msgid "Upload includes files"
1431
  msgstr ""
1432
 
1433
- #: inc/options/cdn.php:69
1434
- msgid ""
1435
- "If checked, all theme file types specified in the \"theme file types to "
1436
- "upload\" field below will be hosted with the <acronym title=\"Content "
1437
- "Delivery Network\">CDN</acronym>."
1438
  msgstr ""
1439
 
1440
- #: inc/options/cdn.php:73
1441
- msgid "Upload theme files"
1442
  msgstr ""
1443
 
1444
- #: inc/options/cdn.php:80
1445
- msgid ""
1446
- "If checked, minified <acronym>CSS</acronym> and <acronym>JS</acronym> files "
1447
- "will be hosted with the <acronym title=\"Content Delivery Network\">CDN</"
1448
- "acronym>."
1449
  msgstr ""
1450
 
1451
- #: inc/options/cdn.php:84
1452
- msgid "Upload minify files"
1453
  msgstr ""
1454
 
1455
- #: inc/options/cdn.php:92
1456
- #, php-format
1457
- msgid ""
1458
- "If checked, any file names or paths specified in the \"custom file list\" "
1459
- "field below will be hosted with the <acronym title=\"Content Delivery Network"
1460
- "\">CDN</acronym>. Supports regular expressions (See <a href=\"%s\">FAQ</a>)"
1461
  msgstr ""
1462
 
1463
- #: inc/options/cdn.php:97
1464
- msgid "Upload custom files"
1465
  msgstr ""
1466
 
1467
- #: inc/options/cdn.php:105
1468
- msgid ""
1469
- "If modified files are not always detected and replaced, use this option to "
1470
- "over-write them."
1471
  msgstr ""
1472
 
1473
- #: inc/options/cdn.php:112
1474
- msgid ""
1475
- "Download attachments hosted elsewhere into your media library and deliver "
1476
- "them via <acronym title=\"Content Delivery Network\">CDN</acronym>."
 
 
1477
  msgstr ""
1478
 
1479
- #: inc/options/cdn.php:121
1480
  #, php-format
1481
- msgid ""
1482
- "Enabling this option allows the <acronym title=\"Content Delivery Network"
1483
- "\">CDN</acronym> to handle requests for unauthenticated pages thereby "
1484
- "reducing the traffic load on the origin server(s). Purge policies are set on "
1485
- "the <a href=\"%s\">Page Cache settings</a> tab."
1486
  msgstr ""
1487
 
1488
- #: inc/options/cdn.php:131
1489
- msgid ""
1490
- "Adds canonical <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> "
1491
- "header to assets files."
1492
  msgstr ""
1493
 
1494
- #: inc/options/cdn.php:144 inc/options/common/header.php:213
1495
- msgid "Configuration"
1496
  msgstr ""
1497
 
1498
- #: inc/options/cdn.php:159 inc/options/common/header.php:123
1499
- #: inc/options/common/header.php:141 inc/options/common/header.php:154
1500
- #: inc/options/common/header.php:165 inc/options/common/header.php:214
1501
- #: inc/options/dbcache.php:34 inc/options/minify.php:401
1502
- #: inc/options/objectcache.php:23 inc/options/pgcache.php:232
1503
- #: inc/options/pro/fragmentcache.php:60
1504
- msgid "Advanced"
1505
  msgstr ""
1506
 
1507
- #: inc/options/cdn.php:170
1508
- msgid "Select user roles that will use the origin server exclusively:"
1509
  msgstr ""
1510
 
1511
- #: inc/options/cdn.php:189
1512
- #, php-format
1513
- msgid ""
1514
- "Always ignore the specified pages / directories. Supports regular expression "
1515
- "(See <a href=\"%s\">FAQ</a>"
1516
  msgstr ""
1517
 
1518
- #: inc/options/cdn.php:194
1519
- msgid "Automatically upload minify files"
1520
  msgstr ""
1521
 
1522
- #: inc/options/cdn.php:195
1523
- msgid ""
1524
- "If <acronym title=\"Content Delivery Network\">CDN</acronym> is enabled (and "
1525
- "not using the origin pull method), your minified files will be automatically "
1526
- "uploaded."
1527
  msgstr ""
1528
 
1529
- #: inc/options/cdn.php:201
1530
- msgid "Automatically attempt to find and upload changed files."
 
1531
  msgstr ""
1532
 
1533
- #: inc/options/cdn.php:211
1534
- msgid "Specify the interval between upload of changed files."
1535
  msgstr ""
1536
 
1537
- #: inc/options/cdn.php:220
1538
- msgid "The number of seconds to wait before upload attempt."
1539
  msgstr ""
1540
 
1541
- #: inc/options/cdn.php:229
1542
- msgid "Number of files processed per upload attempt."
 
1543
  msgstr ""
1544
 
1545
- #: inc/options/cdn.php:239
1546
- msgid ""
1547
- "Specify the file types within the WordPress core to host with the <acronym "
1548
- "title=\"Content Delivery Network\">CDN</acronym>."
1549
  msgstr ""
1550
 
1551
- #: inc/options/cdn.php:248
1552
- msgid ""
1553
- "Specify the file types in the active theme to host with the <acronym title="
1554
- "\"Content Delivery Network\">CDN</acronym>."
 
 
1555
  msgstr ""
1556
 
1557
- #: inc/options/cdn.php:257
1558
- msgid ""
1559
- "Automatically import files hosted with 3rd parties of these types (if used "
1560
- "in your posts / pages) to your media library."
1561
  msgstr ""
1562
 
1563
- #: inc/options/cdn.php:266
1564
- msgid ""
1565
- "Specify any files outside of theme or other common directories to host with "
1566
- "the <acronym title=\"Content Delivery Network\">CDN</acronym>."
1567
  msgstr ""
1568
 
1569
- #: inc/options/cdn.php:269
1570
- msgid ""
1571
- "To upload files in blogs.dir for current blog write wp-content/&lt;"
1572
- "currentblog&gt;/."
1573
  msgstr ""
1574
 
1575
- #: inc/options/cdn.php:279
1576
- msgid ""
1577
- "Specify user agents that should not access files hosted with the <acronym "
1578
- "title=\"Content Delivery Network\">CDN</acronym>."
1579
  msgstr ""
1580
 
1581
- #: inc/options/cdn.php:287
1582
- msgid ""
1583
- "Specify the path of files that should not use the <acronym title=\"Content "
1584
- "Delivery Network\">CDN</acronym>."
1585
  msgstr ""
1586
 
1587
- #: inc/options/cdn.php:295
1588
- #, php-format
1589
- msgid "Set cookie domain to &quot;%s&quot"
 
1590
  msgstr ""
1591
 
1592
- #: inc/options/cdn.php:296
1593
- msgid ""
1594
- "If using subdomain for <acronym title=\"Content Delivery Network\">CDN</"
1595
- "acronym> functionality, this setting helps prevent new users from sending "
1596
- "cookies in requests to the <acronym title=\"Content Delivery Network\">CDN</"
1597
- "acronym> subdomain."
1598
  msgstr ""
1599
 
1600
- #: inc/options/cdn.php:307 inc/options/install.php:278
1601
- #: inc/options/minify.php:501 inc/options/mobile.php:87
1602
- #: inc/options/support/form.php:6
1603
- msgid "Note(s):"
1604
  msgstr ""
1605
 
1606
- #: inc/options/cdn.php:312
1607
- msgid ""
1608
- "You can use placeholders {wp_content_dir}, {plugins_dir}, {uploads_dir} "
1609
- "instead of writing folder paths (wp-content, wp-content/plugins, wp-content/"
1610
- "uploads)."
1611
  msgstr ""
1612
 
1613
- #: inc/options/cdn.php:313
1614
  msgid ""
1615
- "If using Amazon Web Services or Self-Hosted <acronym title=\"Content "
1616
- "Delivery Network\">CDN</acronym> types, enable <acronym title=\"Hypertext "
1617
- "Transfer Protocol\">HTTP</acronym> compression in the \"Media &amp; Other "
1618
- "Files\" section on <a href=\"admin.php?page=w3tc_browsercache\">Browser "
1619
- "Cache</a> Settings tab."
1620
  msgstr ""
1621
 
1622
- #: inc/options/cdn/akamai.php:3 inc/options/cdn/cotendo.php:3
1623
- #: inc/options/cdn/rscf.php:3
1624
- msgid "Username:"
1625
  msgstr ""
1626
 
1627
- #: inc/options/cdn/akamai.php:10 inc/options/cdn/cotendo.php:10
1628
- msgid "Password:"
 
 
1629
  msgstr ""
1630
 
1631
- #: inc/options/cdn/akamai.php:17
1632
- msgid "Email notification:"
1633
  msgstr ""
1634
 
1635
- #: inc/options/cdn/akamai.php:22
1636
  msgid ""
1637
- "Specify email addresses for completed removal notifications. One email per "
1638
- "line."
 
1639
  msgstr ""
1640
 
1641
- #: inc/options/cdn/akamai.php:26
1642
- msgid "Domain to purge:"
 
 
1643
  msgstr ""
1644
 
1645
- #: inc/options/cdn/akamai.php:35
1646
- msgid "Purge action:"
1647
  msgstr ""
1648
 
1649
- #: inc/options/cdn/akamai.php:44
1650
- msgid "<acronym title=\"Secure Sockets Layer\">SSL</acronym> support:</label>"
1651
  msgstr ""
1652
 
1653
- #: inc/options/cdn/akamai.php:47 inc/options/cdn/att.php:20
1654
- #: inc/options/cdn/azure.php:29 inc/options/cdn/cf.php:34
1655
- #: inc/options/cdn/cf2.php:34 inc/options/cdn/cotendo.php:27
1656
- #: inc/options/cdn/edgecast.php:20 inc/options/cdn/ftp.php:42
1657
- #: inc/options/cdn/maxcdn.php:71 inc/options/cdn/mirror.php:6
1658
- #: inc/options/cdn/netdna.php:71 inc/options/cdn/rscf.php:39
1659
- #: inc/options/cdn/s3.php:33
1660
- msgid "Auto (determine connection type automatically)"
1661
  msgstr ""
1662
 
1663
- #: inc/options/cdn/akamai.php:48 inc/options/cdn/att.php:21
1664
- #: inc/options/cdn/azure.php:30 inc/options/cdn/cf.php:35
1665
- #: inc/options/cdn/cf2.php:35 inc/options/cdn/cotendo.php:28
1666
- #: inc/options/cdn/edgecast.php:21 inc/options/cdn/ftp.php:43
1667
- #: inc/options/cdn/maxcdn.php:72 inc/options/cdn/mirror.php:7
1668
- #: inc/options/cdn/netdna.php:72 inc/options/cdn/rscf.php:40
1669
- #: inc/options/cdn/s3.php:34
1670
- msgid "Enabled (always use SSL)"
1671
  msgstr ""
1672
 
1673
- #: inc/options/cdn/akamai.php:49 inc/options/cdn/att.php:22
1674
- #: inc/options/cdn/azure.php:31 inc/options/cdn/cf.php:36
1675
- #: inc/options/cdn/cf2.php:36 inc/options/cdn/cotendo.php:29
1676
- #: inc/options/cdn/edgecast.php:22 inc/options/cdn/ftp.php:44
1677
- #: inc/options/cdn/maxcdn.php:73 inc/options/cdn/mirror.php:8
1678
- #: inc/options/cdn/netdna.php:73 inc/options/cdn/rscf.php:41
1679
- #: inc/options/cdn/s3.php:35
1680
- msgid "Disabled (always use HTTP)"
1681
  msgstr ""
1682
 
1683
- #: inc/options/cdn/akamai.php:51 inc/options/cdn/att.php:24
1684
- #: inc/options/cdn/azure.php:33 inc/options/cdn/cf.php:38
1685
- #: inc/options/cdn/cf2.php:38 inc/options/cdn/cotendo.php:31
1686
- #: inc/options/cdn/edgecast.php:24 inc/options/cdn/ftp.php:46
1687
- #: inc/options/cdn/maxcdn.php:75 inc/options/cdn/mirror.php:10
1688
- #: inc/options/cdn/netdna.php:75 inc/options/cdn/rscf.php:43
1689
- #: inc/options/cdn/s3.php:37
1690
- msgid ""
1691
- "Some <acronym>CDN</acronym> providers may or may not support <acronym title="
1692
- "\"Secure Sockets Layer\">SSL</acronym>, contact your vendor for more "
1693
- "information."
1694
  msgstr ""
1695
 
1696
- #: inc/options/cdn/ftp.php:67
1697
- msgid "Use default <acronym title=\"Secure Shell\">SSH</acronym> public/private key files"
1698
  msgstr ""
1699
 
1700
- #: inc/options/cdn/ftp.php:68
1701
- msgid "Enable this option if you don't have special public/private key files."
1702
  msgstr ""
1703
 
1704
- #: inc/options/cdn/ftp.php:72
1705
- msgid "<acronym title=\"Secure File Transfer Protocol\">SFTP</acronym> public key:"
1706
  msgstr ""
1707
 
1708
- #: inc/options/cdn/ftp.php:79
1709
- msgid "<acronym title=\"Secure File Transfer Protocol\">SFTP</acronym> private key:"
 
 
 
1710
  msgstr ""
1711
 
1712
- #: inc/options/cdn/akamai.php:55 inc/options/cdn/att.php:28
1713
- #: inc/options/cdn/azure.php:37 inc/options/cdn/cf.php:42
1714
- #: inc/options/cdn/cf2.php:42 inc/options/cdn/cotendo.php:35
1715
- #: inc/options/cdn/edgecast.php:28 inc/options/cdn/ftp.php:50
1716
- #: inc/options/cdn/maxcdn.php:79 inc/options/cdn/mirror.php:14
1717
- #: inc/options/cdn/netdna.php:79 inc/options/cdn/rscf.php:47
1718
- #: inc/options/cdn/s3.php:41
1719
- msgid "Replace site's hostname with:"
1720
  msgstr ""
1721
 
1722
- #: inc/options/cdn/akamai.php:58 inc/options/cdn/att.php:31
1723
- #: inc/options/cdn/cotendo.php:38 inc/options/cdn/edgecast.php:31
1724
- #: inc/options/cdn/maxcdn.php:82 inc/options/cdn/mirror.php:17
1725
- #: inc/options/cdn/netdna.php:82
1726
- msgid ""
1727
- "Enter the hostname provided by your <acronym>CDN</acronym> provider, this "
1728
- "value will replace your site's hostname in the <acronym title=\"Hypertext "
1729
- "Markup Language\">HTML</acronym>."
1730
  msgstr ""
1731
 
1732
- #: inc/options/cdn/akamai.php:63
1733
- msgid "Test akamai"
1734
  msgstr ""
1735
 
1736
- #: inc/options/cdn/att.php:3 inc/options/cdn/edgecast.php:3
1737
- msgid "Account #:"
1738
  msgstr ""
1739
 
1740
- #: inc/options/cdn/att.php:10 inc/options/cdn/edgecast.php:10
1741
- msgid "Token:"
1742
  msgstr ""
1743
 
1744
- #: inc/options/cdn/att.php:17 inc/options/cdn/azure.php:26
1745
- #: inc/options/cdn/cf.php:31 inc/options/cdn/cf2.php:31
1746
- #: inc/options/cdn/cotendo.php:24 inc/options/cdn/edgecast.php:17
1747
- #: inc/options/cdn/ftp.php:39 inc/options/cdn/mirror.php:3
1748
- #: inc/options/cdn/rscf.php:36 inc/options/cdn/s3.php:30
1749
- msgid "<acronym title=\"Secure Sockets Layer\">SSL</acronym> support:"
1750
  msgstr ""
1751
 
1752
- #: inc/options/cdn/azure.php:3
1753
- msgid "Account name:"
1754
  msgstr ""
1755
 
1756
- #: inc/options/cdn/azure.php:10
1757
- msgid "Account key:"
1758
  msgstr ""
1759
 
1760
- #: inc/options/cdn/azure.php:17 inc/options/cdn/rscf.php:26
1761
- msgid "Container:"
1762
  msgstr ""
1763
 
1764
- #: inc/options/cdn/azure.php:21 inc/options/cdn/rscf.php:31
1765
- msgid "Create container"
1766
  msgstr ""
1767
 
1768
- #: inc/options/cdn/azure.php:43 inc/options/cdn/s3.php:47
1769
- msgid "or CNAME:"
1770
  msgstr ""
1771
 
1772
- #: inc/options/cdn/azure.php:49
1773
- msgid "Test Microsoft Azure Storage upload"
1774
  msgstr ""
1775
 
1776
- #: inc/options/cdn/cf.php:4 inc/options/cdn/cf2.php:4 inc/options/cdn/s3.php:4
 
1777
  msgid ""
1778
- "We recommend that you use <a href=\"http://docs.amazonwebservices.com/IAM/"
1779
- "latest/UserGuide/AccessPolicyLanguage_KeyConcepts.html\" target=\"_blank"
1780
- "\"><acronym title=\"AWS Identity and Access Management\">IAM</acronym></a> "
1781
- "to create a new policy for <acronym title=\"Amazon Web Services\">AWS</"
1782
- "acronym> services that have limited permissions. A helpful tool: <a href="
1783
- "\"http://awspolicygen.s3.amazonaws.com/policygen.html\" target=\"_blank"
1784
- "\"><acronym title=\"Amazon Web Services\">AWS</acronym> Policy Generator</a>"
1785
  msgstr ""
1786
 
1787
- #: inc/options/cdn/cf.php:8 inc/options/cdn/cf2.php:8 inc/options/cdn/s3.php:8
1788
- msgid "Access key ID:"
 
 
 
 
1789
  msgstr ""
1790
 
1791
- #: inc/options/cdn/cf.php:15 inc/options/cdn/cf2.php:15
1792
- #: inc/options/cdn/s3.php:15
1793
- msgid "Secret key:"
1794
  msgstr ""
1795
 
1796
- #: inc/options/cdn/cf.php:22 inc/options/cdn/s3.php:22
1797
- msgid "Bucket:"
1798
  msgstr ""
1799
 
1800
- #: inc/options/cdn/cf.php:27
1801
- msgid "Create bucket &amp; distribution"
 
 
 
1802
  msgstr ""
1803
 
1804
- #: inc/options/cdn/cf.php:47 inc/options/cdn/cf2.php:47
 
1805
  msgid ""
1806
- "If you have already added a <a href=\"http://docs.amazonwebservices.com/"
1807
- "AmazonCloudFront/latest/DeveloperGuide/index.html?CNAMEs.html\" target="
1808
- "\"_blank\">CNAME</a> to your <acronym title=\"Domain Name System\">DNS</"
1809
- "acronym> Zone, enter it here."
1810
  msgstr ""
1811
 
1812
- #: inc/options/cdn/cf.php:52
1813
- msgid "Test S3 upload &amp; CloudFront distribution"
 
 
1814
  msgstr ""
1815
 
1816
- #: inc/options/cdn/cf2.php:22
1817
- msgid "Origin:"
1818
  msgstr ""
1819
 
1820
- #: inc/options/cdn/cf2.php:26
1821
- msgid "Create distribution"
1822
  msgstr ""
1823
 
1824
- #: inc/options/cdn/cf2.php:52
1825
- msgid "Test CloudFront distribution"
 
 
 
1826
  msgstr ""
1827
 
1828
- #: inc/options/cdn/common/cnames.php:16
1829
- msgid "(reserved for CSS)"
1830
  msgstr ""
1831
 
1832
- #: inc/options/cdn/common/cnames.php:20
1833
- msgid "(reserved for JS in <head>)"
1834
  msgstr ""
1835
 
1836
- #: inc/options/cdn/common/cnames.php:24
1837
- msgid "(reserved for JS after <body>)"
 
 
 
 
1838
  msgstr ""
1839
 
1840
- #: inc/options/cdn/common/cnames.php:28
1841
- msgid "(reserved for JS before </body>)"
 
 
 
 
1842
  msgstr ""
1843
 
1844
- #: inc/options/cdn/common/cnames.php:41 inc/options/minify.php:260
1845
- #: inc/options/minify.php:377 inc/popup/cdn_queue.php:19
1846
- #: inc/popup/cdn_queue.php:28 inc/popup/cdn_queue.php:52
1847
- #: inc/popup/cdn_queue.php:61 inc/popup/cdn_queue.php:82
1848
- #: inc/popup/cdn_queue.php:91
1849
- msgid "Delete"
 
1850
  msgstr ""
1851
 
1852
- #: inc/options/cdn/common/cnames.php:46
1853
- msgid "Add CNAME"
 
 
 
1854
  msgstr ""
1855
 
1856
- #: inc/options/cdn/cotendo.php:17
1857
- msgid "Zones to purge:"
 
 
 
1858
  msgstr ""
1859
 
1860
- #: inc/options/cdn/cotendo.php:43
1861
- msgid "Test Cotendo"
1862
  msgstr ""
1863
 
1864
- #: inc/options/cdn/edgecast.php:36
1865
- msgid "Test EdgeCast"
1866
  msgstr ""
1867
 
1868
- #: inc/options/cdn/ftp.php:4
1869
- msgid ""
1870
- "Use passive <acronym title=\"File Transfer Protocol\">FTP</acronym> mode"
1871
  msgstr ""
1872
 
1873
- #: inc/options/cdn/ftp.php:5
1874
- msgid ""
1875
- "Enable this option only if there are connectivity issues, otherwise it's not "
1876
- "recommended."
1877
  msgstr ""
1878
 
1879
- #: inc/options/cdn/ftp.php:9
1880
- msgid "<acronym title=\"File Transfer Protocol\">FTP</acronym> hostname:"
 
1881
  msgstr ""
1882
 
1883
- #: inc/options/cdn/ftp.php:13
1884
- msgid ""
1885
- "Specify the server's address, e.g.: \"ftp.domain.com\". Try \"127.0.0.1\" if "
1886
- "using a sub-domain on the same server as your site."
1887
  msgstr ""
1888
 
1889
- #: inc/options/cdn/ftp.php:17
1890
- msgid "<acronym title=\"File Transfer Protocol\">FTP</acronym> username:"
 
1891
  msgstr ""
1892
 
1893
- #: inc/options/cdn/ftp.php:24
1894
- msgid "<acronym title=\"File Transfer Protocol\">FTP</acronym> password:"
1895
  msgstr ""
1896
 
1897
- #: inc/options/cdn/ftp.php:31
1898
- msgid "<acronym title=\"File Transfer Protocol\">FTP</acronym> path:"
 
 
 
1899
  msgstr ""
1900
 
1901
- #: inc/options/cdn/ftp.php:35
 
1902
  msgid ""
1903
- "Specify the directory where files must be uploaded to be accessible in a web "
1904
- "browser (the document root)."
1905
  msgstr ""
1906
 
1907
- #: inc/options/cdn/ftp.php:53
 
1908
  msgid ""
1909
- "Enter the hostname or CNAME(s) of your <acronym title=\"File Transfer "
1910
- "Protocol\">FTP</acronym> server configured above, these values will replace "
1911
- "your site's hostname in the <acronym title=\"Hypertext Markup Language"
1912
- "\">HTML</acronym>."
1913
  msgstr ""
1914
 
1915
- #: inc/options/cdn/ftp.php:58
1916
- msgid "Test FTP server"
 
1917
  msgstr ""
1918
 
1919
- #: inc/options/cdn/maxcdn.php:10 inc/options/cdn/netdna.php:10
1920
- msgid "Create account:"
 
1921
  msgstr ""
1922
 
1923
- #: inc/options/cdn/maxcdn.php:12 inc/widget/maxcdn_signup.php:10
1924
- msgid "Sign Up Now and Save 25%"
 
1925
  msgstr ""
1926
 
1927
- #: inc/options/cdn/maxcdn.php:14
1928
- msgid ""
1929
- "MaxCDN is a service that lets you speed up your site even more with W3 Total "
1930
- "Cache. 100% Money Back Guarantee (30 Days)!"
1931
  msgstr ""
1932
 
1933
- #: inc/options/cdn/maxcdn.php:21 inc/options/cdn/netdna.php:21
1934
- msgid "Create pull zone:"
1935
  msgstr ""
1936
 
1937
- #: inc/options/cdn/maxcdn.php:21 inc/options/cdn/netdna.php:21
1938
- msgid "Create new pull zone:"
1939
  msgstr ""
1940
 
1941
- #: inc/options/cdn/maxcdn.php:23 inc/options/cdn/netdna.php:23
1942
- msgid "Create pull zone"
1943
  msgstr ""
1944
 
1945
- #: inc/options/cdn/maxcdn.php:23 inc/options/cdn/netdna.php:23
1946
- msgid "Create new pull zone"
 
1947
  msgstr ""
1948
 
1949
- #: inc/options/cdn/maxcdn.php:25 inc/options/cdn/netdna.php:25
1950
- msgid ""
1951
- "Click the Create Pull Zone button above and create a pull zone manually for "
1952
- "this site."
1953
  msgstr ""
1954
 
1955
- #: inc/options/cdn/maxcdn.php:30 inc/options/cdn/netdna.php:30
1956
- msgid "Specify account credentials:"
 
1957
  msgstr ""
1958
 
1959
- #: inc/options/cdn/maxcdn.php:32 inc/options/cdn/netdna.php:32
1960
- #: inc/widget/maxcdn_signup.php:15 inc/widget/netdna_signup.php:17
1961
- msgid "Authorize"
1962
  msgstr ""
1963
 
1964
- #: inc/options/cdn/maxcdn.php:34 inc/options/cdn/netdna.php:34
1965
- msgid ""
1966
- "Click the Authorize button above, log in, paste the key below and save "
1967
- "settings."
1968
  msgstr ""
1969
 
1970
- #: inc/options/cdn/maxcdn.php:39 inc/options/cdn/netdna.php:39
1971
- #: inc/widget/maxcdn_signup.php:18 inc/widget/netdna_signup.php:20
1972
- #: lib/W3/UI/PluginView.php:314 lib/W3/UI/PluginView.php:334
1973
- msgid "Authorization key"
1974
  msgstr ""
1975
 
1976
- #: inc/options/cdn/maxcdn.php:43 inc/options/cdn/netdna.php:43
1977
- #: inc/widget/maxcdn_signup.php:24 inc/widget/netdna_signup.php:25
1978
- msgid "Validate"
1979
  msgstr ""
1980
 
1981
- #: inc/options/cdn/maxcdn.php:44 inc/options/cdn/netdna.php:44
 
1982
  msgid ""
1983
- "Consists of alias+key+secret . Example: bluewidgets+asd897asd98a7sd"
1984
- "+798a7sd9 . If you use \"Authorize\" its already formatted correctly."
1985
- msgstr ""
1986
-
1987
- #: inc/options/cdn/maxcdn.php:48 inc/options/cdn/netdna.php:48
1988
- msgid "Create zone:"
1989
  msgstr ""
1990
 
1991
- #: inc/options/cdn/maxcdn.php:49 inc/options/cdn/netdna.php:49
1992
- #: inc/widget/maxcdn_signup.php:28 inc/widget/netdna_signup.php:30
1993
- msgid "Create Default Zone"
 
 
1994
  msgstr ""
1995
 
1996
- #: inc/options/cdn/maxcdn.php:51 inc/options/cdn/netdna.php:51
1997
- msgid ""
1998
- "You have no zone connected with this site. Click button to create a default "
1999
- "zone automatically."
2000
  msgstr ""
2001
 
2002
- #: inc/options/cdn/maxcdn.php:55 inc/options/cdn/netdna.php:55
2003
- msgid "Select pull zone:"
2004
  msgstr ""
2005
 
2006
- #: inc/options/cdn/maxcdn.php:61 inc/options/cdn/netdna.php:61
2007
- #: inc/widget/maxcdn_signup.php:37 inc/widget/netdna_signup.php:39
2008
- msgid "Use Zone"
2009
  msgstr ""
2010
 
2011
- #: inc/options/cdn/maxcdn.php:63 inc/options/cdn/netdna.php:63
2012
- #: inc/widget/maxcdn_signup.php:39 inc/widget/netdna_signup.php:41
2013
- msgid "Select the pull zone to use with this site."
 
2014
  msgstr ""
2015
 
2016
- #: inc/options/cdn/maxcdn.php:68 inc/options/cdn/netdna.php:68
2017
- msgid "<acronym title=\"Secure Sockets Layer\">SSL</acronym> support"
 
 
2018
  msgstr ""
2019
 
2020
- #: inc/options/cdn/maxcdn.php:87
2021
- msgid "Test MaxCDN"
 
 
2022
  msgstr ""
2023
 
2024
- #: inc/options/cdn/mirror.php:22
2025
- msgid "Test Mirror"
2026
  msgstr ""
2027
 
2028
- #: inc/options/cdn/netdna.php:12
2029
- msgid "Create Account"
2030
  msgstr ""
2031
 
2032
- #: inc/options/cdn/netdna.php:14
2033
  msgid ""
2034
- "Are you a new customer? Click the Create Account button to receive a "
2035
- "discount on a new MaxCDN account."
2036
  msgstr ""
2037
 
2038
- #: inc/options/cdn/netdna.php:87
2039
- msgid "Test NetDNA"
 
2040
  msgstr ""
2041
 
2042
- #: inc/options/cdn/rscf.php:10 lib/W3/UI/Settings/Monitoring.php:9
2043
- #: lib/W3/UI/Settings/SNS.php:10
2044
- msgid "<acronym title=\"Application Programming Interface\">API</acronym> key:"
2045
  msgstr ""
2046
 
2047
- #: inc/options/cdn/rscf.php:17
2048
- msgid "Location:"
2049
  msgstr ""
2050
 
2051
- #: inc/options/cdn/rscf.php:50
2052
- msgid ""
2053
- "Enter the hostname provided by Rackspace Cloud Files, this value will "
2054
- "replace your site's hostname in the <acronym title=\"Hypertext Markup "
2055
- "Language\">HTML</acronym>."
2056
  msgstr ""
2057
 
2058
- #: inc/options/cdn/rscf.php:55
2059
- msgid "Test Cloud Files upload"
 
 
2060
  msgstr ""
2061
 
2062
- #: inc/options/cdn/s3.php:49
2063
- msgid ""
2064
- "If you have already added a <a href=\"http://docs.amazonwebservices.com/"
2065
- "AmazonS3/latest/DeveloperGuide/VirtualHosting.html#VirtualHostingCustomURLs"
2066
- "\" target=\"_blank\">CNAME</a> to your <acronym title=\"Domain Name System"
2067
- "\">DNS</acronym> Zone, enter it here."
2068
  msgstr ""
2069
 
2070
- #: inc/options/cdn/s3.php:54
2071
- msgid "Test S3 upload"
2072
  msgstr ""
2073
 
2074
- #: inc/options/common/header.php:14
2075
- msgid "W3 Total Cache <span>by W3 EDGE <sup>&reg;</sup></span>"
2076
  msgstr ""
2077
 
2078
- #: inc/options/common/header.php:27 inc/options/common/header.php:46
2079
- msgid ""
2080
- "The following configuration changes are needed to ensure optimal performance:"
2081
  msgstr ""
2082
 
2083
- #: inc/options/common/header.php:36
2084
- msgid "If permission allow this can be done automatically, by clicking here:"
2085
  msgstr ""
2086
 
2087
- #: inc/options/common/header.php:56
2088
- msgid ""
2089
- "If permission allow this can be done using the <a href=\"#ftp_upload_form"
2090
- "\">FTP form</a> below."
2091
  msgstr ""
2092
 
2093
- #: inc/options/common/header.php:82 inc/options/general.php:50
2094
- #: lib/W3/Menus.php:48 lib/W3/Menus.php:49 lib/W3/UI/NewRelicNotes.php:28
2095
- #: lib/W3/UI/Settings/PageCache.php:10
2096
- msgid "Page Cache"
2097
  msgstr ""
2098
 
2099
- #: inc/options/common/header.php:84 inc/options/general.php:185
2100
- #: lib/W3/Menus.php:58 lib/W3/Menus.php:59
2101
- #: lib/W3/UI/Settings/DatabaseCache.php:10
2102
- msgid "Database Cache"
2103
  msgstr ""
2104
 
2105
- #: inc/options/common/header.php:85 lib/W3/Menus.php:63 lib/W3/Menus.php:64
2106
- #: lib/W3/UI/Settings/ObjectCache.php:10
2107
- msgid "Object Cache"
2108
  msgstr ""
2109
 
2110
- #: inc/options/common/header.php:87 lib/W3/Menus.php:70 lib/W3/Menus.php:71
2111
- #: lib/W3/UI/Settings/FragmentCache.php:10
2112
- msgid "Fragment Cache"
2113
  msgstr ""
2114
 
2115
- #: inc/options/common/header.php:90 inc/options/general.php:285
2116
- #: lib/W3/Menus.php:77 lib/W3/Menus.php:78
2117
- msgid "Browser Cache"
2118
  msgstr ""
2119
 
2120
- #: inc/options/common/header.php:91
2121
- msgid "<abbr title=\"Content Delivery Network\">CDN</abbr>"
2122
  msgstr ""
2123
 
2124
- #: inc/options/common/header.php:92
2125
- msgid "Varnish"
2126
  msgstr ""
2127
 
2128
- #: inc/options/common/header.php:94
2129
- msgid "Amazon <abbr title=\"Simple Notification Service\">SNS</abbr>"
2130
  msgstr ""
2131
 
2132
- #: inc/options/common/header.php:95 inc/options/general.php:471
2133
- #: lib/W3/Menus.php:97 lib/W3/Menus.php:98
2134
- msgid "Monitoring"
2135
  msgstr ""
2136
 
2137
- #: inc/options/common/header.php:97 inc/options/general.php:561
2138
- msgid "Licensing"
2139
  msgstr ""
2140
 
2141
- #: inc/options/common/header.php:99 inc/options/general.php:582
2142
- msgid "Miscellaneous"
2143
  msgstr ""
2144
 
2145
- #: inc/options/common/header.php:100
2146
- msgid "Debug"
2147
  msgstr ""
2148
 
2149
- #: inc/options/common/header.php:101 inc/options/general.php:699
2150
- msgid "Import / Export Settings"
2151
  msgstr ""
2152
 
2153
- #: inc/options/common/header.php:121 inc/options/common/header.php:136
2154
- #: inc/options/common/header.php:152 inc/options/common/header.php:164
2155
- #: inc/options/common/header.php:175 inc/options/common/header.php:189
2156
- #: inc/options/common/header.php:200 inc/options/common/header.php:211
2157
- msgid "Main Menu"
2158
  msgstr ""
2159
 
2160
- #: inc/options/common/header.php:124 inc/options/pgcache.php:99
2161
- msgid "Cache Preload"
2162
  msgstr ""
2163
 
2164
- #: inc/options/common/header.php:125
2165
- msgid "Purge Policy"
2166
  msgstr ""
2167
 
2168
- #: inc/options/common/header.php:126 inc/options/common/header.php:142
2169
- #: inc/options/common/header.php:215 inc/options/pgcache.php:401
2170
- msgid "Note(s)"
2171
  msgstr ""
2172
 
2173
- #: inc/options/common/header.php:135 inc/options/common/header.php:151
2174
- #: inc/options/common/header.php:163 inc/options/common/header.php:174
2175
- #: inc/options/common/header.php:188 inc/options/common/header.php:199
2176
- msgid "Jump to: "
2177
  msgstr ""
2178
 
2179
- #: inc/options/common/header.php:138 inc/options/common/header.php:178
2180
- #: inc/options/minify.php:74
2181
  msgid ""
2182
- "<acronym title=\"Hypertext Markup Language\">HTML</acronym> &amp; <acronym "
2183
- "title=\"eXtensible Markup Language\">XML</acronym>"
2184
  msgstr ""
2185
 
2186
- #: inc/options/common/header.php:139 inc/options/minify.php:130
2187
- msgid "<acronym title=\"JavaScript\">JS</acronym>"
2188
  msgstr ""
2189
 
2190
- #: inc/options/common/header.php:140 inc/options/minify.php:284
2191
- msgid "<acronym title=\"Cascading Style Sheet\">CSS</acronym>"
 
2192
  msgstr ""
2193
 
2194
- #: inc/options/common/header.php:179
2195
- msgid "Media"
 
 
 
2196
  msgstr ""
2197
 
2198
- #: inc/options/common/header.php:190 inc/options/mobile.php:17
2199
- msgid "Manage User Agent Groups"
 
 
 
2200
  msgstr ""
2201
 
2202
- #: inc/options/common/header.php:201 inc/options/referrer.php:17
2203
- msgid "Manage Referrer Groups"
2204
  msgstr ""
2205
 
2206
- #: inc/options/common/header.php:210
2207
- msgid "Jump to:"
 
 
 
2208
  msgstr ""
2209
 
2210
- #: inc/options/common/help.php:3
 
2211
  msgid ""
2212
- "Request professional <a href=\"admin.php?page=w3tc_support\" style=\"color: "
2213
- "red;\"><strong>support</strong></a> or troubleshoot issues using the common "
2214
- "questions below:"
2215
  msgstr ""
2216
 
2217
- #: inc/options/dashboard.php:5
2218
  #, php-format
2219
  msgid ""
2220
- "The plugin is currently <span class=\"w3tc-%s\">%s</span> in <strong>%s%s</"
2221
- "strong> mode."
2222
  msgstr ""
2223
 
2224
- #: inc/options/dashboard.php:8
2225
- msgid " edge"
2226
  msgstr ""
2227
 
2228
- #: inc/options/dashboard.php:14
2229
- msgid "compatibility check"
 
 
 
2230
  msgstr ""
2231
 
2232
- #: inc/options/dashboard.php:16
2233
- msgid "empty all caches"
 
 
 
 
2234
  msgstr ""
2235
 
2236
- #: inc/options/dashboard.php:16
2237
- msgid "at once or"
2238
  msgstr ""
2239
 
2240
- #: inc/options/dashboard.php:17
2241
- msgid "empty only the memcached cache(s)"
 
 
 
 
 
 
 
 
 
 
 
 
 
2242
  msgstr ""
2243
 
2244
- #: inc/options/dashboard.php:17 inc/options/dashboard.php:18
2245
- #: inc/options/dashboard.php:20 inc/options/dashboard.php:22
2246
- #: inc/options/dashboard.php:24 inc/options/dashboard.php:28
2247
- msgid "or"
2248
  msgstr ""
2249
 
2250
- #: inc/options/dashboard.php:18
2251
- msgid "empty only the opcode cache"
 
 
2252
  msgstr ""
2253
 
2254
- #: inc/options/dashboard.php:20
2255
- msgid "empty only the APC system cache"
 
 
2256
  msgstr ""
2257
 
2258
- #: inc/options/dashboard.php:22
2259
- msgid "empty only the disk cache(s)"
 
 
2260
  msgstr ""
2261
 
2262
- #: inc/options/dashboard.php:24
2263
- msgid "purge CDN completely"
 
 
2264
  msgstr ""
2265
 
2266
- #: inc/options/dashboard.php:26
2267
- msgid "update Media Query String"
 
 
2268
  msgstr ""
2269
 
2270
- #: inc/options/dashboard.php:39 lib/W3/Menus.php:38 lib/W3/Menus.php:39
2271
- msgid "Dashboard"
2272
  msgstr ""
2273
 
2274
- # php-format
2275
- #: inc/options/dbcache.php:6
2276
- #, php-format
2277
- msgid "Database caching via %s is currently %s."
2278
  msgstr ""
2279
 
2280
- #: inc/options/dbcache.php:9
2281
- msgid "To rebuild the database cache use the"
 
2282
  msgstr ""
2283
 
2284
- #: inc/options/dbcache.php:11 inc/options/minify.php:21
2285
- #: inc/options/objectcache.php:16
2286
- msgid "empty cache"
2287
  msgstr ""
2288
 
2289
- #: inc/options/dbcache.php:12
2290
- msgid "operation."
2291
  msgstr ""
2292
 
2293
- #: inc/options/dbcache.php:23
2294
  msgid ""
2295
- "Enabling this option is recommended to maintain default WordPress behavior."
 
2296
  msgstr ""
2297
 
2298
- #: inc/options/dbcache.php:42 inc/options/minify.php:425
2299
- #: inc/options/objectcache.php:31 inc/options/pro/fragmentcache.php:68
2300
- msgid "Test"
2301
  msgstr ""
2302
 
2303
- #: inc/options/dbcache.php:44 inc/options/minify.php:427
2304
- #: inc/options/objectcache.php:33 inc/options/pgcache.php:254
2305
- #: inc/options/pro/fragmentcache.php:70
2306
  msgid ""
2307
- "Multiple servers may be used and seperated by a comma; e.g. "
2308
- "192.168.1.100:11211, domain.com:22122"
2309
  msgstr ""
2310
 
2311
- #: inc/options/dbcache.php:54 inc/options/objectcache.php:42
2312
- #: inc/options/pgcache.php:294 inc/options/pro/fragmentcache.php:78
2313
- msgid ""
2314
- "Determines the natural expiration time of unchanged cache items. The higher "
2315
- "the value, the larger the cache."
2316
  msgstr ""
2317
 
2318
- #: inc/options/dbcache.php:62 inc/options/minify.php:446
2319
- #: inc/options/objectcache.php:50 inc/options/pgcache.php:304
2320
- #: inc/options/pro/fragmentcache.php:85
2321
- msgid ""
2322
- "If caching to disk, specify how frequently expired cache data is removed. "
2323
- "For busy sites, a lower value is best."
2324
  msgstr ""
2325
 
2326
- #: inc/options/dbcache.php:71
 
 
 
 
2327
  #, php-format
2328
  msgid ""
2329
- "Always ignore the specified pages / directories. Supports regular "
2330
- "expressions (See <a href=\"%s\">FAQ</a>)."
 
2331
  msgstr ""
2332
 
2333
- #: inc/options/dbcache.php:80
2334
  msgid ""
2335
- "Do not cache queries that contain these terms. Any entered prefix (set in wp-"
2336
- "config.php) will be replaced with current database prefix (default: wp_). "
2337
- "Query stems can be identified using debug mode."
2338
  msgstr ""
2339
 
2340
- #: inc/options/dbcache.php:88
2341
- msgid "Do not cache queries that contain these words or regular expressions."
 
 
2342
  msgstr ""
2343
 
2344
- #: inc/options/edd/buy.php:2
2345
- msgid "upgrade"
2346
  msgstr ""
2347
 
2348
- #: inc/options/edd/buy.php:4
2349
- #, php-format
2350
- msgid "Please enter the license key you received after successful checkout %s."
2351
  msgstr ""
2352
 
2353
- #: inc/options/edd/buy.php:7
2354
- msgid "here"
2355
  msgstr ""
2356
 
2357
- #: inc/options/enterprise/dbcluster-config.php:6
2358
- msgid "Database Cluster Configuration File"
2359
  msgstr ""
2360
 
2361
- #: inc/options/enterprise/dbcluster-config.php:15
2362
- msgid ""
2363
- "Note: Changes will have immediate effect on your database configuration. If "
2364
- "the application stops working creating the settings file, edit or remove "
2365
- "this configuration file manually at <strong>/wp-content/db-cluster-config."
2366
- "php</strong>."
2367
  msgstr ""
2368
 
2369
- #: inc/options/enterprise/dbcluster-config.php:23
2370
- msgid "Save configuration file"
2371
  msgstr ""
2372
 
2373
- #: inc/options/extensions.php:11
2374
- #, php-format
2375
- msgid "Extension support is always %s"
2376
  msgstr ""
2377
 
2378
- #: inc/options/extensions/list.php:23 inc/options/extensions/list.php:122
2379
- msgid "Bulk Actions"
2380
  msgstr ""
2381
 
2382
- #: inc/options/extensions/list.php:24 inc/options/extensions/list.php:80
2383
- #: inc/options/extensions/list.php:123
2384
- msgid "Activate"
2385
  msgstr ""
2386
 
2387
- #: inc/options/extensions/list.php:25 inc/options/extensions/list.php:73
2388
- #: inc/options/extensions/list.php:124 lib/W3/AdminCompatibility.php:98
2389
- msgid "Deactivate"
2390
  msgstr ""
2391
 
2392
- #: inc/options/extensions/list.php:37 inc/options/extensions/list.php:42
2393
- msgid "Select All"
2394
  msgstr ""
2395
 
2396
- #: inc/options/extensions/list.php:37 inc/options/extensions/list.php:42
2397
- msgid "Extension"
2398
  msgstr ""
2399
 
2400
- #: inc/options/extensions/list.php:37 inc/options/extensions/list.php:42
2401
- msgid "Description"
2402
  msgstr ""
2403
 
2404
- #: inc/options/extensions/list.php:55
2405
- #, php-format
2406
- msgid "Select %s"
2407
  msgstr ""
2408
 
2409
- #: inc/options/extensions/list.php:83
2410
- msgid "Disabled: Unsupported"
2411
  msgstr ""
2412
 
2413
- #: inc/options/extensions/list.php:94
2414
  #, php-format
2415
- msgid "Requirements: %s"
2416
  msgstr ""
2417
 
2418
- #: inc/options/extensions/list.php:100
2419
  #, php-format
2420
- msgid "Version %s"
2421
  msgstr ""
2422
 
2423
- #: inc/options/extensions/list.php:100
2424
  #, php-format
2425
- msgid "By %s"
2426
  msgstr ""
2427
 
2428
- #: inc/options/extensions/list.php:100
2429
- msgid "Visit author homepage"
 
2430
  msgstr ""
2431
 
2432
- #: inc/options/extensions/list.php:100
2433
- msgid "Visit extension site"
2434
  msgstr ""
2435
 
2436
- #: inc/options/extensions/list.php:111
2437
- #, php-format
2438
- msgid "Apply the %s settings to the entire network."
2439
  msgstr ""
2440
 
2441
- #: inc/options/extensions/list.php:137
2442
- msgid "Save network settings"
2443
  msgstr ""
2444
 
2445
- #: inc/options/extensions/settings.php:18
2446
- msgid "Save settings"
2447
  msgstr ""
2448
 
2449
- #: inc/options/faq.php:4
2450
- msgid "Table of Contents"
 
2451
  msgstr ""
2452
 
2453
- #: inc/options/general.php:24
2454
- msgid "Toggle all caching types on or off (at once)"
2455
  msgstr ""
2456
 
2457
- #: inc/options/general.php:33
2458
- msgid "Disable"
 
2459
  msgstr ""
2460
 
2461
- #: inc/options/general.php:34
2462
- msgid "Deploy"
2463
  msgstr ""
2464
 
2465
- #: inc/options/general.php:35 lib/W3/UI/PluginView.php:380
2466
- #, php-format
2467
- msgid "To preview any changed settings (without deploying): %s"
2468
  msgstr ""
2469
 
2470
- #: inc/options/general.php:39
2471
- msgid ""
2472
- "Use preview mode to test configuration scenarios prior to releasing them "
2473
- "(deploy) on the actual site. Preview mode remains active even after "
2474
- "deploying settings until the feature is disabled."
2475
  msgstr ""
2476
 
2477
- #: inc/options/general.php:51
2478
- msgid "Enable page caching to decrease the response time of the site."
2479
  msgstr ""
2480
 
2481
- #: inc/options/general.php:58
2482
- msgid ""
2483
- "Caching pages will reduce the response time of your site and increase the "
2484
- "scale of your web server."
2485
  msgstr ""
2486
 
2487
- #: inc/options/general.php:65
2488
- msgid "Shared Server (disk enhanced is best):"
2489
  msgstr ""
2490
 
2491
- #: inc/options/general.php:66
2492
- msgid "Disk: Basic"
2493
  msgstr ""
2494
 
2495
- #: inc/options/general.php:67
2496
- msgid "Disk: Enhanced"
2497
  msgstr ""
2498
 
2499
- #: inc/options/general.php:69 inc/options/general.php:127
2500
- #: inc/options/general.php:254
2501
- msgid "Dedicated / Virtual Server:"
2502
  msgstr ""
2503
 
2504
- #: inc/options/general.php:70 inc/options/general.php:128
2505
- #: inc/options/general.php:204 inc/options/general.php:255
2506
- msgid "Opcode: Alternative PHP Cache (APC)"
2507
  msgstr ""
2508
 
2509
- #: inc/options/general.php:71 inc/options/general.php:129
2510
- #: inc/options/general.php:205 inc/options/general.php:256
2511
- msgid "Opcode: eAccelerator"
2512
  msgstr ""
2513
 
2514
- #: inc/options/general.php:72 inc/options/general.php:130
2515
- #: inc/options/general.php:206 inc/options/general.php:257
2516
- msgid "Opcode: XCache"
2517
  msgstr ""
2518
 
2519
- #: inc/options/general.php:73 inc/options/general.php:131
2520
- #: inc/options/general.php:207 inc/options/general.php:258
2521
- msgid "Opcode: WinCache"
2522
  msgstr ""
2523
 
2524
- #: inc/options/general.php:75 inc/options/general.php:133
2525
- #: inc/options/general.php:260
2526
- msgid "Multiple Servers:"
2527
  msgstr ""
2528
 
2529
- #: inc/options/general.php:76 inc/options/general.php:134
2530
- #: inc/options/general.php:210 inc/options/general.php:261
2531
- msgid "Memcached"
2532
  msgstr ""
2533
 
2534
- #: inc/options/general.php:94 inc/options/general.php:181
2535
- #: inc/options/general.php:232 inc/options/general.php:279
2536
- msgid "Empty cache"
2537
  msgstr ""
2538
 
2539
- #: inc/options/general.php:98 inc/options/minify.php:141
2540
- #: inc/options/minify.php:155 inc/options/minify.php:166 lib/W3/Menus.php:53
2541
- #: lib/W3/Menus.php:54 lib/W3/UI/NewRelicNotes.php:30
2542
- #: lib/W3/UI/Settings/Minify.php:10
2543
- msgid "Minify"
2544
  msgstr ""
2545
 
2546
- #: inc/options/general.php:99
2547
  msgid ""
2548
- "Reduce load time by decreasing the size and number of <acronym title="
2549
- "\"Cascading Style Sheet\">CSS</acronym> and <acronym title=\"JavaScript"
2550
- "\">JS</acronym> files. Automatically remove unncessary data from <acronym "
2551
- "title=\"Cascading Style Sheet\">CSS</acronym>, <acronym title=\"JavaScript"
2552
- "\">JS</acronym>, feed, page and post <acronym title=\"Hypertext Markup "
2553
- "Language\">HTML</acronym>."
2554
  msgstr ""
2555
 
2556
- #: inc/options/general.php:107
2557
- msgid "Minify is disabled because CloudFlare minification is enabled."
2558
  msgstr ""
2559
 
2560
- #: inc/options/general.php:109
2561
- #, php-format
2562
- msgid ""
2563
- "Minification can decrease file size of <acronym title=\"Hypertext Markup "
2564
- "Language\">HTML</acronym>, <acronym title=\"Cascading Style Sheet\">CSS</"
2565
- "acronym>, <acronym title=\"JavaScript\">JS</acronym> and feeds respectively "
2566
- "by ~10% on average."
2567
  msgstr ""
2568
 
2569
- #: inc/options/general.php:115
2570
- msgid "Auto"
2571
  msgstr ""
2572
 
2573
- #: inc/options/general.php:116
2574
- msgid "Manual"
2575
  msgstr ""
2576
 
2577
- #: inc/options/general.php:117
2578
- msgid ""
2579
- "Select manual mode to use fields on the minify settings tab to specify files "
2580
- "to be minified, otherwise files will be minified automatically."
2581
  msgstr ""
2582
 
2583
- #: inc/options/general.php:124
2584
- msgid "Shared Server (disk is best):"
2585
  msgstr ""
2586
 
2587
- #: inc/options/general.php:125 inc/options/general.php:201
2588
- #: inc/options/general.php:252
2589
- msgid "Disk"
2590
  msgstr ""
2591
 
2592
- #: inc/options/general.php:143 inc/options/general.php:162
2593
- msgid "Default"
2594
  msgstr ""
2595
 
2596
- #: inc/options/general.php:144
2597
- msgid "HTML Tidy"
2598
  msgstr ""
2599
 
2600
- #: inc/options/general.php:152
2601
- msgid "JSMin (default)"
2602
  msgstr ""
2603
 
2604
- #: inc/options/general.php:153 inc/options/general.php:163
2605
- msgid "YUI Compressor"
 
2606
  msgstr ""
2607
 
2608
- #: inc/options/general.php:154
2609
- msgid "Closure Compiler"
 
 
2610
  msgstr ""
2611
 
2612
- #: inc/options/general.php:164
2613
- msgid "CSS Tidy"
2614
  msgstr ""
2615
 
2616
- #: inc/options/general.php:186
2617
- msgid "Enable database caching to reduce post, page and feed creation time."
2618
  msgstr ""
2619
 
2620
- #: inc/options/general.php:193
2621
- msgid ""
2622
- "Caching database objects decreases the response time of your site. Best used "
2623
- "if object caching is not possible."
2624
  msgstr ""
2625
 
2626
- #: inc/options/general.php:237
2627
- msgid ""
2628
- "Enable object caching to further reduce execution time for common operations."
2629
  msgstr ""
2630
 
2631
- #: inc/options/general.php:244
2632
- msgid ""
2633
- "Object caching greatly increases performance for highly dynamic sites that "
2634
- "use the <a href=\"http://codex.wordpress.org/Class_Reference/WP_Object_Cache"
2635
- "\" target=\"_blank\">Object Cache <acronym title=\"Application Programming "
2636
- "Interface\">API</acronym></a>."
2637
  msgstr ""
2638
 
2639
- #: inc/options/general.php:251
2640
- msgid "Shared Server:"
2641
  msgstr ""
2642
 
2643
- #: inc/options/general.php:286
2644
- msgid ""
2645
- "Reduce server load and decrease response time by using the cache available "
2646
- "in site visitor's web browser."
2647
  msgstr ""
2648
 
2649
- #: inc/options/general.php:293
2650
- msgid ""
2651
- "Enable <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> "
2652
- "compression and add headers to reduce server load and decrease file load "
2653
- "time."
2654
  msgstr ""
2655
 
2656
- #: inc/options/general.php:312 lib/W3/Menus.php:93
2657
- #: lib/W3/UI/Settings/CDN.php:10
2658
- msgid "<acronym title=\"Content Delivery Network\">CDN</acronym>"
2659
  msgstr ""
2660
 
2661
- #: inc/options/general.php:313
2662
- msgid ""
2663
- "Host static files with your content delivery network provider to reduce page "
2664
- "load time."
2665
  msgstr ""
2666
 
2667
- #: inc/options/general.php:315
2668
- #, php-format
2669
- msgid ""
2670
- "If you do not have a <acronym title=\"Content Delivery Network\">CDN</"
2671
- "acronym> provider try MaxCDN. <a href=\"%s\" target=\"_blank\">Sign up and "
2672
- "save 25&#37;</a>."
2673
  msgstr ""
2674
 
2675
- #: inc/options/general.php:323
2676
- msgid ""
2677
- "Theme files, media library attachments, <acronym title=\"Cascading Style "
2678
- "Sheet\">CSS</acronym>, <acronym title=\"JavaScript\">JS</acronym> files etc "
2679
- "will appear to load instantly for site visitors."
2680
  msgstr ""
2681
 
2682
- #: inc/options/general.php:331
2683
- msgid "Akamai"
2684
  msgstr ""
2685
 
2686
- #: inc/options/general.php:332 inc/options/general.php:341
2687
- msgid "Amazon CloudFront"
2688
  msgstr ""
2689
 
2690
- #: inc/options/general.php:333
2691
- msgid "Cotendo (Akamai)"
2692
  msgstr ""
2693
 
2694
- #: inc/options/general.php:334
2695
- msgid "AT&amp;T"
2696
  msgstr ""
2697
 
2698
- #: inc/options/general.php:335
2699
- msgid "Generic Mirror"
2700
  msgstr ""
2701
 
2702
- #: inc/options/general.php:336
2703
- msgid "Media Temple ProCDN / EdgeCast"
2704
  msgstr ""
2705
 
2706
- #: inc/options/general.php:337
2707
- msgid "NetDNA"
2708
  msgstr ""
2709
 
2710
- #: inc/options/general.php:338
2711
- msgid "MaxCDN"
2712
  msgstr ""
2713
 
2714
- #: inc/options/general.php:342
2715
- msgid "Amazon Simple Storage Service (S3)"
2716
  msgstr ""
2717
 
2718
- #: inc/options/general.php:343
2719
- msgid "Microsoft Azure Storage"
2720
  msgstr ""
2721
 
2722
- #: inc/options/general.php:344
2723
- msgid "Rackspace Cloud Files"
2724
  msgstr ""
2725
 
2726
- #: inc/options/general.php:345
2727
- msgid "Self-hosted / File Transfer Protocol Upload"
2728
  msgstr ""
2729
 
2730
- #: inc/options/general.php:348
2731
- msgid ""
2732
- "Select the <acronym title=\"Content Delivery Network\">CDN</acronym> type "
2733
- "you wish to use."
2734
  msgstr ""
2735
 
2736
- #: inc/options/general.php:368 lib/W3/UI/Settings/Varnish.php:9
2737
- msgid "Reverse Proxy"
2738
  msgstr ""
2739
 
2740
- #: inc/options/general.php:370
2741
- #, php-format
2742
- msgid ""
2743
- "Purge policies are set on the <a href=\"%s\">Page Cache settings</a> page."
2744
  msgstr ""
2745
 
2746
- #: inc/options/general.php:383
2747
- msgid ""
2748
- "Specify the IP addresses of your varnish instances above. The <acronym title="
2749
- "\"Varnish Configuration Language\">VCL</acronym>'s <acronym title=\"Access "
2750
- "Control List\">ACL</acronym> must allow this request."
2751
  msgstr ""
2752
 
2753
- #: inc/options/general.php:419
2754
- msgid ""
2755
- "Specify the Amazon SNS service endpoint hostname. If empty, then default "
2756
- "\"sns.us-east-1.amazonaws.com\" will be used."
2757
  msgstr ""
2758
 
2759
- #: inc/options/general.php:429
2760
- msgid ""
2761
- "Specify the <acronym title=\"Application Programming Interface\">API</"
2762
- "acronym> Key."
2763
  msgstr ""
2764
 
2765
- #: inc/options/general.php:439
2766
- msgid ""
2767
- "Specify the <acronym title=\"Application Programming Interface\">API</"
2768
- "acronym> secret."
2769
  msgstr ""
2770
 
2771
- #: inc/options/general.php:451
2772
- msgid "Topic:"
2773
  msgstr ""
2774
 
2775
- #: inc/options/general.php:459
 
2776
  msgid ""
2777
- "Subscribe to the <acronym title=\"Simple Notification Service\">SNS</"
2778
- "acronym> topic."
2779
  msgstr ""
2780
 
2781
- #: inc/options/general.php:473
2782
  #, php-format
2783
- msgid ""
2784
- "\n"
2785
- " New Relic may not be installed on this server. %s. Visit %s "
2786
- "for installation instructions."
2787
  msgstr ""
2788
 
2789
- #: inc/options/general.php:475
2790
- msgid "Sign up for a (free) account"
2791
  msgstr ""
2792
 
2793
- #: inc/options/general.php:481
2794
- msgid "The network administrator has not provided the API Key."
2795
  msgstr ""
2796
 
2797
- #: inc/options/general.php:500
2798
- #, php-format
2799
- msgid "Verify %s"
2800
  msgstr ""
2801
 
2802
- #: inc/options/general.php:506
2803
- msgid "Application name:"
2804
  msgstr ""
2805
 
2806
- #: inc/options/general.php:510
2807
- msgid "Obtain application ID via:"
 
2808
  msgstr ""
2809
 
2810
- #: inc/options/general.php:511
2811
- msgid "Enter application name below:"
2812
  msgstr ""
2813
 
2814
- #: inc/options/general.php:512
2815
- msgid "Select from the following list:"
 
2816
  msgstr ""
2817
 
2818
- #: inc/options/general.php:521
2819
- msgid "-- Select Application --"
2820
  msgstr ""
2821
 
2822
- #: inc/options/general.php:531
 
 
 
 
2823
  msgid ""
2824
- "Note: Changing application name may create a new application in New Relic if "
2825
- "no application with that name already exists."
2826
  msgstr ""
2827
 
2828
- #: inc/options/general.php:569
2829
- msgid "Verify license key"
2830
  msgstr ""
2831
 
2832
- #: inc/options/general.php:570
2833
- #, php-format
2834
- msgid "Please enter the license key provided you received after %s."
2835
  msgstr ""
2836
 
2837
- #: inc/options/general.php:570
2838
- msgid "upgrading"
 
 
2839
  msgstr ""
2840
 
2841
- #: inc/options/general.php:588
2842
- msgid "Display Google Page Speed results on the WordPress dashboard."
2843
  msgstr ""
2844
 
2845
- #: inc/options/general.php:595
2846
- msgid ""
2847
- "To acquire an <acronym title=\"Application Programming Interface\">API</"
2848
- "acronym> key, visit the <a href=\"https://code.google.com/apis/console\" "
2849
- "target=\"_blank\"><acronym title=\"Application Programming Interface\">API</"
2850
- "acronym>s Console</a>. Go to the Project Home tab, activate the Page Speed "
2851
- "Online <acronym title=\"Application Programming Interface\">API</acronym>, "
2852
- "and accept the Terms of Service.\n"
2853
- " Then go to the <acronym title=\"Application Programming "
2854
- "Interface\">API</acronym> Access tab. The <acronym title=\"Application "
2855
- "Programming Interface\">API</acronym> key is in the Simple <acronym title="
2856
- "\"Application Programming Interface\">API</acronym> Access section."
2857
  msgstr ""
2858
 
2859
- #: inc/options/general.php:603
2860
- msgid ""
2861
- "Only one configuration file for whole network will be created and used. "
2862
- "Recommended if all sites have the same configuration."
2863
  msgstr ""
2864
 
2865
- #: inc/options/general.php:609
2866
- msgid "Prevent sites from independently managing their performance settings."
2867
  msgstr ""
2868
 
2869
- #: inc/options/general.php:618
2870
- msgid "If empty the default path will be used.."
2871
  msgstr ""
2872
 
2873
- #: inc/options/general.php:626
2874
  msgid ""
2875
- "Notify of server configuration errors, if this option is disabled, the "
2876
- "server configuration for active settings can be found on the <a href=\"admin."
2877
- "php?page=w3tc_install\">install</a> tab."
2878
  msgstr ""
2879
 
2880
- #: inc/options/general.php:632
2881
- msgid "Enable file locking"
 
 
 
 
2882
  msgstr ""
2883
 
2884
- #: inc/options/general.php:633
2885
- msgid ""
2886
- "Not recommended for <acronym title=\"Network File System\">NFS</acronym> "
2887
- "systems."
2888
  msgstr ""
2889
 
2890
- #: inc/options/general.php:639
2891
- msgid ""
2892
- "Optimize disk enhanced page and minify disk caching for <acronym title="
2893
- "\"Network File System\">NFS</acronym>"
2894
  msgstr ""
2895
 
2896
- #: inc/options/general.php:640
 
2897
  msgid ""
2898
- "Try this option if your hosting environment uses a network based file system "
2899
- "for a possible performance improvement."
2900
  msgstr ""
2901
 
2902
- #: inc/options/general.php:648
2903
- msgid "Enable Edge mode"
2904
  msgstr ""
2905
 
2906
- #: inc/options/general.php:650
2907
- msgid "Disable Edge mode"
2908
  msgstr ""
2909
 
2910
- #: inc/options/general.php:666
2911
  msgid ""
2912
- "Detailed information about each cache will be appended in (publicly "
2913
- "available) <acronym title=\"Hypertext Markup Language\">HTML</acronym> "
2914
- "comments in the page's source code. Performance in this mode will not be "
2915
- "optimal, use sparingly and disable when not in use."
2916
  msgstr ""
2917
 
2918
- #: inc/options/general.php:670
2919
- msgid "Debug Mode:"
2920
  msgstr ""
2921
 
2922
- #: inc/options/general.php:684
2923
- msgid ""
2924
- "If selected, detailed caching information will appear at the end of each "
2925
- "page in a <acronym title=\"Hypertext Markup Language\">HTML</acronym> "
2926
- "comment. View a page's source code to review."
2927
  msgstr ""
2928
 
2929
- #: inc/options/general.php:703
2930
- msgid "Import configuration:"
2931
  msgstr ""
2932
 
2933
- #: inc/options/general.php:706
2934
- msgid "Upload"
2935
  msgstr ""
2936
 
2937
- #: inc/options/general.php:707
2938
- msgid "Upload and replace the active settings file."
 
2939
  msgstr ""
2940
 
2941
- #: inc/options/general.php:711
2942
- msgid "Export configuration:"
2943
  msgstr ""
2944
 
2945
- #: inc/options/general.php:713
2946
- msgid "Download"
2947
  msgstr ""
2948
 
2949
- #: inc/options/general.php:714
2950
- msgid "Download the active settings file."
2951
  msgstr ""
2952
 
2953
- #: inc/options/general.php:718
2954
- msgid "Reset configuration:"
2955
  msgstr ""
2956
 
2957
- #: inc/options/general.php:720
2958
- msgid "Restore Default Settings"
 
2959
  msgstr ""
2960
 
2961
- #: inc/options/general.php:721
2962
- msgid ""
2963
- "Revert all settings to the defaults. Any settings staged in preview mode "
2964
- "will not be modified."
2965
  msgstr ""
2966
 
2967
- #: inc/options/install.php:7
2968
- msgid "Set the permissions of wp-content/ back to 755, e.g.:"
2969
  msgstr ""
2970
 
2971
- #: inc/options/install.php:10
2972
- msgid ""
2973
- "On the \"<a href=\"admin.php?page=w3tc_general\">General</a>\" tab and "
2974
- "select your caching methods for page, database and minify. In most cases, "
2975
- "\"disk enhanced\" mode for page cache, \"disk\" mode for minify and \"disk\" "
2976
- "mode for database caching are \"good\" settings."
2977
  msgstr ""
2978
 
2979
- #: inc/options/install.php:11
2980
- msgid ""
2981
- "1. The \"Compatibility Mode\" option found in the advanced section of the "
2982
- "\"<a href=\"admin.php?page=w3tc_pgcache\">Page Cache Settings</a>\" tab will "
2983
- "enable functionality that optimizes the interoperablity of caching with "
2984
- "WordPress, is disabled by default, but highly recommended. Years of testing "
2985
- "in hundreds of thousands of installations have helped us learn how to make "
2986
- "caching behave well with WordPress. The tradeoff is that disk enhanced page "
2987
- "cache performance under load tests will be decreased by ~20% at scale."
2988
  msgstr ""
2989
 
2990
- #: inc/options/install.php:12
2991
- msgid ""
2992
- "<em>Recommended:</em> On the \"<a href=\"admin.php?page=w3tc_minify"
2993
- "\">Minify</a>\" tab all of the recommended settings are preset. Use the help "
2994
- "button to simplify discovery of your <acronym title=\"Cascading Style Sheet"
2995
- "\">CSS</acronym> and <acronym title=\"JavaScript\">JS</acronym> files and "
2996
- "groups. Pay close attention to the method and location of your <acronym "
2997
- "title=\"JavaScript\">JS</acronym> group embeddings. See the plugin's <a href="
2998
- "\"admin.php?page=w3tc_faq\">FAQ</a> for more information on usage."
2999
  msgstr ""
3000
 
3001
- #: inc/options/install.php:13
3002
- msgid ""
3003
- "<em>Recommended:</em> On the \"<a href=\"admin.php?page=w3tc_browsercache"
3004
- "\">Browser Cache</a>\" tab, <acronym title=\"Hypertext Transfer Protocol"
3005
- "\">HTTP</acronym> compression is enabled by default. Make sure to enable "
3006
- "other options to suit your goals."
3007
  msgstr ""
3008
 
3009
- #: inc/options/install.php:14
3010
- msgid ""
3011
- "<em>Recommended:</em> If you already have a content delivery network "
3012
- "(<acronym title=\"Content Delivery Network\">CDN</acronym>) provider, "
3013
- "proceed to the \"<a href=\"admin.php?page=w3tc_cdn\">Content Delivery "
3014
- "Network</a>\" tab and populate the fields and set your preferences. If you "
3015
- "do not use the Media Library, you will need to import your images etc into "
3016
- "the default locations. Use the Media Library Import Tool on the \"Content "
3017
- "Delivery Network\" tab to perform this task. If you do not have a <acronym "
3018
- "title=\"Content Delivery Network\">CDN</acronym> provider, you can still "
3019
- "improve your site's performance using the \"Self-hosted\" method. On your "
3020
- "own server, create a subdomain and matching <acronym title=\"Domain Name "
3021
- "System\">DNS</acronym> Zone record; e.g. static.domain.com and configure "
3022
- "<acronym title=\"File Transfer Protocol\">FTP</acronym> options on the "
3023
- "\"Content Delivery Network\" tab accordingly. Be sure to <acronym title="
3024
- "\"File Transfer Protocol\">FTP</acronym> upload the appropriate files, using "
3025
- "the available upload buttons."
3026
  msgstr ""
3027
 
3028
- #: inc/options/install.php:15
3029
- msgid ""
3030
- "<em>Optional:</em> On the \"<a href=\"admin.php?page=w3tc_dbcache\">Database "
3031
- "Cache</a>\" tab the recommended settings are preset. If using a shared "
3032
- "hosting account use the \"disk\" method with caution; in either of these "
3033
- "cases the response time of the disk may not be fast enough, so this option "
3034
- "is disabled by default."
3035
  msgstr ""
3036
 
3037
- #: inc/options/install.php:16
3038
- msgid ""
3039
- "<em>Optional:</em> On the \"<a href=\"admin.php?page=w3tc_objectcache"
3040
- "\">Object Cache</a>\" tab the recommended settings are preset. If using a "
3041
- "shared hosting account use the \"disk\" method with caution, the response "
3042
- "time of the disk may not be fast enough, so this option is disabled by "
3043
- "default. Test this option with and without database cache to ensure that it "
3044
- "provides a performance increase."
3045
  msgstr ""
3046
 
3047
- #: inc/options/install.php:17
3048
- msgid ""
3049
- "<em>Optional:</em> On the \"<a href=\"admin.php?page=w3tc_mobile\">User "
3050
- "Agent Groups</a>\" tab, specify any user agents, like mobile phones if a "
3051
- "mobile theme is used."
3052
  msgstr ""
3053
 
3054
- #: inc/options/install.php:21
3055
- msgid ""
3056
- "Check out the <acronym title=\"Frequently Asked Questions\">FAQ</acronym> "
3057
- "for more details on <a href=\"admin.php?page=w3tc_faq\">usage</a>"
3058
  msgstr ""
3059
 
3060
- #: inc/options/install.php:26
3061
- msgid "Rewrite rules"
3062
  msgstr ""
3063
 
3064
- #: inc/options/install.php:34
3065
- msgid "Other"
3066
  msgstr ""
3067
 
3068
- #: inc/options/install.php:43
3069
- msgid ""
3070
- "Software Installation for Dedicated / Virtual Dedicated / Multiple Servers "
3071
- "(Optional)"
3072
  msgstr ""
3073
 
3074
- #: inc/options/install.php:45
3075
- msgid ""
3076
- "<strong>Server Preparation:</strong><br /><em>Time required: ~1 minute</em>"
3077
  msgstr ""
3078
 
3079
- #: inc/options/install.php:49
3080
  msgid ""
3081
- "<a href=\"http://www.google.com/search?q=installing%20yum&amp;"
3082
- "output=search&amp;tbs=qdr:y&amp;tbo=1\" target=\"_blank\">Install yum</a> if "
3083
- "you don't already have it. Then, if you like, you can update all of your "
3084
- "installed software, but do so only if you have the experience and time to "
3085
- "double check configurations afterwards:"
3086
  msgstr ""
3087
 
3088
- #: inc/options/install.php:53
3089
- msgid ""
3090
- "Install <acronym title=\"PHP Extension Community Library\">PECL</acronym>:"
3091
  msgstr ""
3092
 
3093
- #: inc/options/install.php:57
3094
  msgid ""
3095
- "Install the <acronym title=\"Hypertext Preprocessor\">PHP</acronym> "
3096
- "Development package:"
3097
  msgstr ""
3098
 
3099
- #: inc/options/install.php:61
3100
- msgid "Install apxs with the following command:"
 
 
 
 
 
 
3101
  msgstr ""
3102
 
3103
- #: inc/options/install.php:65
3104
- msgid "Make sure GCC is up-to-date:"
3105
  msgstr ""
3106
 
3107
- #: inc/options/install.php:69
3108
- msgid "Make sure ZLIB is fully installed:"
3109
  msgstr ""
3110
 
3111
- #: inc/options/install.php:73
3112
- msgid "Make sure PCRE is fully installed:"
3113
  msgstr ""
3114
 
3115
- #: inc/options/install.php:80
3116
  msgid ""
3117
- "Memcached (Daemon) Installation:</strong><br /><em>Time required: 2 minutes</"
3118
- "em>"
 
3119
  msgstr ""
3120
 
3121
- #: inc/options/install.php:84
3122
- msgid "Try to install with yum:"
3123
  msgstr ""
3124
 
3125
- #: inc/options/install.php:87
3126
- msgid ""
3127
- "If this succeeds skip to #5. If this fails, then let's compile. Download and "
3128
- "extract the <a href=\"http://www.monkey.org/~provos/libevent/\" target="
3129
- "\"_blank\">latest stable version</a>:"
3130
  msgstr ""
3131
 
3132
- #: inc/options/install.php:91 inc/options/install.php:109
3133
- msgid "Let's compile:"
3134
  msgstr ""
3135
 
3136
- #: inc/options/install.php:95
3137
- msgid "In the output you should see:"
3138
  msgstr ""
3139
 
3140
- #: inc/options/install.php:96
3141
- #, php-format
3142
- msgid "Libraries have been installed in: %s"
3143
  msgstr ""
3144
 
3145
- #: inc/options/install.php:97
3146
- msgid "If so you can:"
3147
  msgstr ""
3148
 
3149
- #: inc/options/install.php:101
3150
- msgid "Configure your server for the new install:"
3151
  msgstr ""
3152
 
3153
- #: inc/options/install.php:105
3154
  msgid ""
3155
- "Now find the <a href=\"http://memcached.org/\" target=\"_blank\">latest "
3156
- "stable memcached</a>, download and extract:"
3157
  msgstr ""
3158
 
3159
- #: inc/options/install.php:113
3160
- msgid "Make sure memcached is starts automatically on server boot:"
3161
  msgstr ""
3162
 
3163
- #: inc/options/install.php:121
3164
- msgid "And finally, let's start memcached:"
3165
  msgstr ""
3166
 
3167
- #: inc/options/install.php:128
3168
- msgid ""
3169
- "<strong><acronym title=\"PHP Extension Community Library\">PECL</acronym> "
3170
- "Memcache Module Installation:</strong><br /><em>Time required: 1 minute</em>"
3171
  msgstr ""
3172
 
3173
- #: inc/options/install.php:132
3174
- msgid ""
3175
- "Either use <acronym title=\"PHP Extension Community Library\">PECL</acronym> "
3176
- "(and skip to #4 if successful):"
 
 
3177
  msgstr ""
3178
 
3179
- #: inc/options/install.php:136
 
 
 
 
 
 
 
 
3180
  msgid ""
3181
- "Or via compilation. Download the <a href=\"http://pecl.php.net/package/"
3182
- "memcache\" target=\"_blank\">latest stable version</a> and extract:"
3183
  msgstr ""
3184
 
3185
- #: inc/options/install.php:140
3186
- msgid "Now we start to compile:"
3187
  msgstr ""
3188
 
3189
- #: inc/options/install.php:144
3190
- msgid "You can also use the memcache.ini file we prepared for you:"
3191
  msgstr ""
3192
 
3193
- #: inc/options/install.php:148
3194
- msgid "Finally restart apache:"
3195
  msgstr ""
3196
 
3197
- #: inc/options/install.php:152
3198
- msgid ""
3199
- "You're done! Memcache should now be available. If the following command "
3200
- "retuns anything, you're all set:"
3201
  msgstr ""
3202
 
3203
- #: inc/options/install.php:159
3204
- msgid ""
3205
- "<strong><acronym title=\"PHP Extension Community Library\">PECL</acronym> "
3206
- "Alternative PHP Cache (<acronym title=\"Alternative PHP Cache\">APC</"
3207
- "acronym>) Installation (Recommended):</strong><br /><em>Time required: 1 "
3208
- "minute</em>"
3209
  msgstr ""
3210
 
3211
- #: inc/options/install.php:163
3212
- msgid ""
3213
- "Install <acronym title=\"Alternative PHP Cache\">APC</acronym> using the "
3214
- "<acronym title=\"PHP Extension Community Library\">PECL</acronym> command "
3215
- "(and skip to #5 if successful):"
3216
  msgstr ""
3217
 
3218
- #: inc/options/install.php:167
3219
- msgid ""
3220
- "Or via compilation. Download the <a href=\"http://pecl.php.net/package/APC\" "
3221
- "target=\"_blank\">latest stable version</a> and extract:"
3222
  msgstr ""
3223
 
3224
- #: inc/options/install.php:171
3225
- msgid "Note the paths returned for the following commands:"
3226
  msgstr ""
3227
 
3228
- #: inc/options/install.php:176
3229
- msgid ""
3230
- "Use the output from #2 to modify the --with-apxs and --with-php-config flags "
3231
- "in the following compile command:"
3232
  msgstr ""
3233
 
3234
- #: inc/options/install.php:179
3235
- #, php-format
3236
- msgid "Installing shared extensions: %s"
3237
  msgstr ""
3238
 
3239
- #: inc/options/install.php:182
3240
- msgid "You can also use the apc.ini file we prepared for you:"
3241
  msgstr ""
3242
 
3243
- #: inc/options/install.php:186 inc/options/install.php:219
3244
- #: inc/options/install.php:252
3245
- msgid "Restart apache when ready:"
3246
  msgstr ""
3247
 
3248
- #: inc/options/install.php:190
3249
- msgid ""
3250
- "You're done! <acronym title=\"Alternative PHP Cache\">APC</acronym> should "
3251
- "now be available. If the following command retuns anything, you're all set:"
3252
  msgstr ""
3253
 
3254
- #: inc/options/install.php:197
3255
- msgid ""
3256
- "<strong>XCache Installation:</strong><br /><em>Time required: 1 minute</em>"
3257
  msgstr ""
3258
 
3259
- #: inc/options/install.php:201
3260
- msgid ""
3261
- "Download the <a href=\"http://xcache.lighttpd.net/wiki/ReleaseArchive\" "
3262
- "target=\"_blank\">latest compatible version</a> and extract:"
3263
  msgstr ""
3264
 
3265
- #: inc/options/install.php:205 inc/options/install.php:238
3266
- msgid "Note the path returned for the following command:"
3267
  msgstr ""
3268
 
3269
- #: inc/options/install.php:209 inc/options/install.php:242
3270
- msgid ""
3271
- "Use the output from #2 to modify the --with-php-config flag in the following "
3272
- "compile command:"
3273
  msgstr ""
3274
 
3275
- #: inc/options/install.php:211 inc/options/install.php:244
3276
- msgid "The result should be similar to:"
3277
  msgstr ""
3278
 
3279
- #: inc/options/install.php:215 inc/options/install.php:248
3280
- msgid "You can also use the eaccelerator.ini file we prepared for you:"
3281
  msgstr ""
3282
 
3283
- #: inc/options/install.php:223
3284
- msgid ""
3285
- "You're done! XCache should now be available. If the following command retuns "
3286
- "anything, you're all set:"
3287
  msgstr ""
3288
 
3289
- #: inc/options/install.php:230
3290
  msgid ""
3291
- "<strong>eAccelerator Installation:</strong><br /><em>Time required: 1 "
3292
- "minute</em>"
3293
  msgstr ""
3294
 
3295
- #: inc/options/install.php:234
3296
  msgid ""
3297
- "If using <acronym title=\"Hypertext Preprocessor\">PHP</acronym> v5+, "
3298
- "download the <a href=\"http://eaccelerator.net/\" target=\"_blank\">lastest "
3299
- "compatible version</a> and extract. Remember v0.9.5.3 is the last version "
3300
- "that supports user objects, later versions only support opcode caching."
3301
  msgstr ""
3302
 
3303
- #: inc/options/install.php:256
3304
  msgid ""
3305
- "You're done! eAccelerator should now be available. If the following command "
3306
- "retuns anything, you're all set:"
 
 
 
 
3307
  msgstr ""
3308
 
3309
- #: inc/options/install.php:283
3310
  msgid ""
3311
- "The provided instructions are for 32-bit CentOS, however we can provide "
3312
- "others based on <a href=\"mailto:wordpressexperts@w3-edge.com\">your "
3313
- "requests</a>."
3314
  msgstr ""
3315
 
3316
- #: inc/options/install.php:284
3317
  msgid ""
3318
- "Best compatibility with <a href=\"http://www.iis.net/\" target=\"_blank"
3319
- "\">IIS</a> is realized via <a href=\"http://www.microsoft.com/web/webmatrix/"
3320
- "\" target=\"_blank\">WebMatrix</a>, which also includes the supported <a "
3321
- "href=\"http://www.iis.net/download/wincacheforphp\" target=\"_blank"
3322
- "\">WinCache</a> opcode cache."
3323
  msgstr ""
3324
 
3325
- #: inc/options/install.php:285
3326
  msgid ""
3327
- "In the case where Apache is not used, the .htaccess file located in the root "
3328
- "directory of the WordPress installation, wp-content/w3tc/pgcache/.htaccess "
3329
- "and wp-content/w3tc/min/.htaccess contain directives that must be manually "
3330
- "created for your web server software."
3331
  msgstr ""
3332
 
3333
- #: inc/options/install.php:286
3334
- msgid ""
3335
- "Restarting the web server will empty the opcode cache, which means it will "
3336
- "have to be rebuilt over time and your site's performance will suffer during "
3337
- "this period. Still, an opcode cache should be installed in any case to "
3338
- "maximize WordPress performance."
3339
  msgstr ""
3340
 
3341
- #: inc/options/install.php:287
3342
- msgid ""
3343
- "Consider using memcached for objects that must persist across web server "
3344
- "restarts or that you wish to share amongst your pool of servers (or "
3345
- "cluster), e.g.: database objects or page cache."
3346
  msgstr ""
3347
 
3348
- #: inc/options/install.php:288
3349
- msgid ""
3350
- "Some yum or mirrors may not have the necessary packages, in such cases you "
3351
- "may have to do a manual installation."
 
 
 
 
3352
  msgstr ""
3353
 
3354
- #: inc/options/minify.php:16
3355
- #, php-format
3356
- msgid "Minify via %s is currently %s."
3357
  msgstr ""
3358
 
3359
- #: inc/options/minify.php:20
3360
- #, php-format
3361
- msgid "To rebuild the minify cache use the %s operation."
3362
  msgstr ""
3363
 
3364
- #: inc/options/minify.php:24
3365
- msgid "Get minify hints using the"
3366
  msgstr ""
3367
 
3368
- #: inc/options/minify.php:25
3369
- msgid "help"
3370
  msgstr ""
3371
 
3372
- #: inc/options/minify.php:26
3373
- msgid "wizard."
3374
  msgstr ""
3375
 
3376
- #: inc/options/minify.php:28
3377
- #, php-format
3378
- msgid ""
3379
- "%s to make existing file modifications visible to visitors with a primed "
3380
- "cache."
3381
  msgstr ""
3382
 
3383
- #: inc/options/minify.php:41
3384
- msgid ""
3385
- "If disabled, <acronym title=\"Cascading Style Sheet\">CSS</acronym> and "
3386
- "<acronym title=\"JavaScript\">JS</acronym> embeddings will use GET variables "
3387
- "instead of \"fancy\" links."
3388
  msgstr ""
3389
 
3390
- #: inc/options/minify.php:47
3391
- msgid ""
3392
- "Authenticated users will not receive minified pages if this option is "
3393
- "enabled."
3394
  msgstr ""
3395
 
3396
- #: inc/options/minify.php:59
3397
- msgid "Admin Notification"
3398
  msgstr ""
3399
 
3400
- #: inc/options/minify.php:60
3401
- msgid "Email Notification"
3402
  msgstr ""
3403
 
3404
- #: inc/options/minify.php:61
3405
- msgid "Both Admin &amp; Email Notification"
3406
  msgstr ""
3407
 
3408
- #: inc/options/minify.php:63
3409
- msgid "Notify when minify cache creation errors occur."
3410
  msgstr ""
3411
 
3412
- #: inc/options/minify.php:77
3413
- msgid ""
3414
- "<acronym title=\"Hypertext Markup Language\">HTML</acronym> minify settings:"
3415
  msgstr ""
3416
 
3417
- #: inc/options/minify.php:105
3418
- msgid "Do not remove comments that contain these terms."
3419
  msgstr ""
3420
 
3421
- #: inc/options/minify.php:133
3422
- msgid "<acronym title=\"JavaScript\">JS</acronym> minify settings:"
3423
  msgstr ""
3424
 
3425
- #: inc/options/minify.php:136
3426
- msgid "Operations in areas:"
 
3427
  msgstr ""
3428
 
3429
- #: inc/options/minify.php:140
3430
- msgid "Before <span class=\"html-tag\">&lt;/head&gt;"
 
3431
  msgstr ""
3432
 
3433
- #: inc/options/minify.php:143 inc/options/minify.php:157
3434
- #: inc/options/minify.php:168
3435
- msgid "Default (blocking)"
 
 
3436
  msgstr ""
3437
 
3438
- #: inc/options/minify.php:144 inc/options/minify.php:158
3439
- #: inc/options/minify.php:169
3440
- msgid "Non-blocking using JS"
3441
  msgstr ""
3442
 
3443
- #: inc/options/minify.php:145 inc/options/minify.php:159
3444
- #: inc/options/minify.php:170
3445
- msgid "Non-blocking using \"async\""
 
 
3446
  msgstr ""
3447
 
3448
- #: inc/options/minify.php:146 inc/options/minify.php:160
3449
- #: inc/options/minify.php:171
3450
- msgid "Non-blocking using \"defer\""
3451
  msgstr ""
3452
 
3453
- #: inc/options/minify.php:148 inc/options/minify.php:161
3454
- #: inc/options/minify.php:172
3455
- msgid "Non-blocking using \"extsrc\""
3456
  msgstr ""
3457
 
3458
- #: inc/options/minify.php:149 inc/options/minify.php:162
3459
- #: inc/options/minify.php:173
3460
- msgid "Non-blocking using \"asyncsrc\""
3461
  msgstr ""
3462
 
3463
- #: inc/options/minify.php:211
3464
- msgid "<acronym title=\"JavaScript\">JS</acronym> file management:"
3465
  msgstr ""
3466
 
3467
- #: inc/options/minify.php:215 inc/options/minify.php:340
3468
- #: inc/options/mobile.php:45 inc/options/referrer.php:45
3469
- msgid "Theme:"
3470
  msgstr ""
3471
 
3472
- #: inc/options/minify.php:223
3473
- msgid ""
3474
- "Files are minified by template. First select the theme to manage, then add "
3475
- "scripts used in all templates to the \"All Templates\" group. Use the menu "
3476
- "above to manage scripts unique to a specific template. If necessary drag "
3477
- "&amp; drop to resolve dependency issues (due to incorrect order)."
3478
  msgstr ""
3479
 
3480
- #: inc/options/minify.php:271
3481
- msgid "No <acronym title=\"JavaScript\">JS</acronym> files added"
3482
  msgstr ""
3483
 
3484
- #: inc/options/minify.php:272
3485
- msgid "Add a script"
3486
  msgstr ""
3487
 
3488
- #: inc/options/minify.php:287
3489
- msgid "<acronym title=\"Cascading Style Sheet\">CSS</acronym> minify settings:"
3490
  msgstr ""
3491
 
3492
- #: inc/options/minify.php:336
3493
- msgid "<acronym title=\"Cascading Style Sheet\">CSS</acronym> file management:"
3494
  msgstr ""
3495
 
3496
- #: inc/options/minify.php:348
3497
- msgid ""
3498
- "Files are minified by template. First select the theme to manage, then add "
3499
- "style sheets used in all templates to the \"All Templates\" group. Use the "
3500
- "menu above to manage style sheets unique to a specific template. If "
3501
- "necessary drag &amp; drop to resolve dependency issues (due to incorrect "
3502
- "order)."
3503
  msgstr ""
3504
 
3505
- #: inc/options/minify.php:388
3506
- msgid "No <acronym title=\"Cascading Style Sheet\">CSS</acronym> files added"
3507
  msgstr ""
3508
 
3509
- #: inc/options/minify.php:389
3510
- msgid "Add a style sheet"
3511
  msgstr ""
3512
 
3513
- #: inc/options/minify.php:406
3514
- msgid ""
3515
- "Do not automatically attempt to determine the optimal file name length "
3516
- "minify files created in auto mode."
3517
  msgstr ""
3518
 
3519
- #: inc/options/minify.php:410
3520
- msgid ""
3521
- "Change this value to decrease or determine the number of minified files that "
3522
- "are generated.\n"
3523
- " The more <acronym title=\"Cascading Style Sheet\">CSS</"
3524
- "acronym> / <acronym title=\"JavaScript\">JS</acronym> files you have the "
3525
- "more files will be generated because their file names are combined in\n"
3526
- " the final <acronym title=\"Uniform Resource Locator\">URL</"
3527
- "acronym> of the minified file name. File name length is only applicable when "
3528
- "minify is in auto mode and file name length testing is enabled. The maximum "
3529
- "file name length value is 246."
3530
  msgstr ""
3531
 
3532
- #: inc/options/minify.php:437
3533
- msgid ""
3534
- "Specify the interval between download and update of external files in the "
3535
- "minify cache. Hint: 6 hours is 21600 seconds. 12 hours is 43200 seconds. 24 "
3536
- "hours is 86400 seconds."
3537
  msgstr ""
3538
 
3539
- #: inc/options/minify.php:454
3540
- msgid "Always ignore the specified pages / directories."
3541
  msgstr ""
3542
 
3543
- #: inc/options/minify.php:462
3544
- msgid "Always ignore the specified JS files."
3545
  msgstr ""
3546
 
3547
- #: inc/options/minify.php:470
3548
- msgid "Always ignore the specified CSS files."
3549
  msgstr ""
3550
 
3551
- #: inc/options/minify.php:479
3552
- msgid "Specify user agents that will never receive minified content."
3553
  msgstr ""
3554
 
3555
- #: inc/options/minify.php:489
3556
- msgid "Specify external files/libraries that should be combined."
3557
  msgstr ""
3558
 
3559
- #: inc/options/minify.php:506
3560
  msgid ""
3561
- "Enable <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> "
3562
- "compression in the \"Cascading Style Sheets &amp; JavaScript\" section on <a "
3563
- "href=\"admin.php?page=w3tc_browsercache\">Browser Cache</a> Settings tab."
 
3564
  msgstr ""
3565
 
3566
- #: inc/options/minify.php:507
3567
  msgid ""
3568
- "The <acronym title=\"Time to Live\">TTL</acronym> of page cache files is set "
3569
- "via the \"Expires header lifetime\" field in the \"Cascading Style Sheets "
3570
- "&amp; JavaScript\" section on <a href=\"admin.php?page=w3tc_browsercache"
3571
- "\">Browser Cache</a> Settings tab."
3572
  msgstr ""
3573
 
3574
- #: inc/options/minify/ccjs2.php:8
3575
- msgid "Whitespace only"
 
 
 
3576
  msgstr ""
3577
 
3578
- #: inc/options/minify/ccjs2.php:9
3579
- msgid "Simple optimizations"
 
 
 
 
3580
  msgstr ""
3581
 
3582
- #: inc/options/minify/ccjs2.php:10
3583
- msgid "Advanced optimizations"
3584
  msgstr ""
3585
 
3586
- #: inc/options/minify/ccjs2.php:32
3587
- msgid "Test Closure Compiler"
3588
  msgstr ""
3589
 
3590
- #: inc/options/minify/csstidy2.php:8
3591
- msgid "Highest (no readability, smallest size)"
3592
  msgstr ""
3593
 
3594
- #: inc/options/minify/csstidy2.php:9
3595
- msgid "High (moderate readability, smaller size)"
3596
  msgstr ""
3597
 
3598
- #: inc/options/minify/csstidy2.php:10
3599
- msgid "Standard (balance between readability and size)"
3600
  msgstr ""
3601
 
3602
- #: inc/options/minify/csstidy2.php:11
3603
- msgid "Low (higher readability)"
3604
  msgstr ""
3605
 
3606
- #: inc/options/minify/csstidy2.php:15
3607
- msgid "Don't optimise"
3608
  msgstr ""
3609
 
3610
- #: inc/options/minify/csstidy2.php:16
3611
- msgid "Safe optimisations"
3612
  msgstr ""
3613
 
3614
- #: inc/options/minify/csstidy2.php:17
3615
- msgid "All optimisations"
3616
  msgstr ""
3617
 
3618
- #: inc/options/minify/csstidy2.php:21
3619
- msgid "None"
3620
  msgstr ""
3621
 
3622
- #: inc/options/minify/csstidy2.php:22
3623
- msgid "Lowercase"
3624
  msgstr ""
3625
 
3626
- #: inc/options/minify/csstidy2.php:23
3627
- msgid "Uppercase"
3628
  msgstr ""
3629
 
3630
- #: inc/options/minify/csstidy2.php:27
3631
- msgid "Do not change anything"
3632
  msgstr ""
3633
 
3634
- #: inc/options/minify/csstidy2.php:28
3635
- msgid "Only seperate selectors (split at ,)"
3636
  msgstr ""
3637
 
3638
- #: inc/options/minify/csstidy2.php:29
3639
- msgid "Merge selectors with the same properties (fast)"
3640
  msgstr ""
3641
 
3642
- #: inc/options/minify/yuicss2.php:17 inc/options/minify/yuijs2.php:19
3643
- msgid "Test YUI Compressor"
 
3644
  msgstr ""
3645
 
3646
- #: inc/options/minify/yuijs2.php:3 lib/W3/UI/Settings/Minify.php:48
3647
- #: lib/W3/UI/Settings/Minify.php:81
3648
- msgid "Path to JAVA executable:"
3649
  msgstr ""
3650
 
3651
- #: inc/options/minify/yuijs2.php:10 lib/W3/UI/Settings/Minify.php:49
3652
- #: lib/W3/UI/Settings/Minify.php:82
3653
- msgid "Path to JAR file:"
 
 
 
 
 
 
 
 
 
3654
  msgstr ""
3655
 
3656
- #: inc/options/minify/yuijs2.php:28
3657
- msgid "symbols (set to 0 to disable)"
 
 
 
 
3658
  msgstr ""
3659
 
3660
- #: inc/options/mobile.php:12
3661
- msgid ""
3662
- "User agent group support is always <span class=\"w3tc-enabled\">enabled</"
3663
- "span>."
3664
  msgstr ""
3665
 
3666
- #: inc/options/mobile.php:19 inc/options/referrer.php:19
3667
- msgid "Create a group"
3668
  msgstr ""
3669
 
3670
- #: inc/options/mobile.php:19
3671
- msgid ""
3672
- "of user agents by specifying names in the user agents field. Assign a set of "
3673
- "user agents to use a specific theme, redirect them to another domain or if "
3674
- "an existing mobile plugin is active, create user agent groups to ensure that "
3675
- "a unique cache is created for each user agent group. Drag and drop groups "
3676
- "into order (if needed) to determine their priority (top -&gt; down)."
3677
  msgstr ""
3678
 
3679
- #: inc/options/mobile.php:28 inc/options/referrer.php:28
3680
- msgid "Group name:"
3681
  msgstr ""
3682
 
3683
- #: inc/options/mobile.php:36 inc/options/referrer.php:36
3684
- msgid "Enabled:"
3685
  msgstr ""
3686
 
3687
- #: inc/options/mobile.php:54
3688
- msgid ""
3689
- "Assign this group of user agents to a specific theme. Selecting \"Pass-"
3690
- "through\" allows any plugin(s) (e.g. mobile plugins) to properly handle "
3691
- "requests for these user agents. If the \"redirect users to\" field is not "
3692
- "empty, this setting is ignored."
3693
  msgstr ""
3694
 
3695
- #: inc/options/mobile.php:59 inc/options/referrer.php:59
3696
- msgid "Redirect users to:"
3697
  msgstr ""
3698
 
3699
- #: inc/options/mobile.php:63
3700
- msgid ""
3701
- "A 302 redirect is used to send this group of users to another hostname "
3702
- "(domain); recommended if a 3rd party service provides a mobile version of "
3703
- "your site."
3704
  msgstr ""
3705
 
3706
- #: inc/options/mobile.php:68
3707
- msgid "User agents:"
3708
  msgstr ""
3709
 
3710
- #: inc/options/mobile.php:72
3711
- msgid ""
3712
- "Specify the user agents for this group. Remember to escape special "
3713
- "characters like spaces, dots or dashes with a backslash. Regular expressions "
3714
- "are also supported."
3715
  msgstr ""
3716
 
3717
- #: inc/options/mobile.php:79
3718
- msgid ""
3719
- "No groups added. All user agents recieve the same page and minify cache "
3720
- "results."
3721
  msgstr ""
3722
 
3723
- #: inc/options/mobile.php:92
3724
- msgid ""
3725
- "Enabling even a single user agent group will set a cookie called "
3726
- "\"w3tc_referrer.\" It is used to ensure a consistent user experience across "
3727
- "page views. Make sure any reverse proxy servers etc respect this cookie for "
3728
- "proper operation."
3729
  msgstr ""
3730
 
3731
- #: inc/options/mobile.php:93
3732
- msgid ""
3733
- "Per the above, make sure that visitors are notified about the cookie as per "
3734
- "any regulations in your market."
3735
  msgstr ""
3736
 
3737
- #: inc/options/new_relic.php:4
3738
- msgid "Monitoring via New Relic is currently"
3739
  msgstr ""
3740
 
3741
- #: inc/options/new_relic.php:8
3742
- msgid "Application Settings"
3743
  msgstr ""
3744
 
3745
- #: inc/options/new_relic.php:67
3746
- #, php-format
3747
- msgid ""
3748
- "Application settings could not be retrieved. New Relic may not be properly "
3749
- "configured, <a href=\"%s\">review the settings</a>."
3750
  msgstr ""
3751
 
3752
- #: inc/options/new_relic.php:69
3753
- msgid "Application settings are only visible when New Relic is enabled"
3754
  msgstr ""
3755
 
3756
- #: inc/options/new_relic.php:75
3757
- msgid "Dashboard Settings"
3758
  msgstr ""
3759
 
3760
- #: inc/options/new_relic.php:81
3761
- msgid ""
3762
- "How many minutes data retrieved from New Relic should be stored. Minimum is "
3763
- "1 minute."
3764
  msgstr ""
3765
 
3766
- #: inc/options/new_relic.php:92
3767
- msgid "Behavior Settings"
3768
  msgstr ""
3769
 
3770
- #: inc/options/new_relic.php:118
3771
- msgid ""
3772
- "This enables inclusion of <acronym title=\"Real User Monitoring\">RUM</"
3773
- "acronym> when using Page Cache together with Browser Cache gzip or when "
3774
- "using Page Cache with Disc: Enhanced"
3775
  msgstr ""
3776
 
3777
- #: inc/options/new_relic.php:134
3778
- msgid ""
3779
- "This means that the data collected for sites in the network will be included "
3780
- "in the main network sites data on New Relic."
3781
  msgstr ""
3782
 
3783
- #: inc/options/new_relic.php:146
3784
- msgid ""
3785
- "This is required when using New Relic on a network install to set the proper "
3786
- "names for sites."
3787
  msgstr ""
3788
 
3789
- #: inc/options/new_relic.php:151
3790
- msgid ""
3791
- "Enable this to dynamically set proper application name. (See New Relic <a "
3792
- "href=\"https://newrelic.com/docs/php/per-directory-settings\">Per-directory "
3793
- "settings</a> for other methods."
3794
  msgstr ""
3795
 
3796
- #: inc/options/objectcache.php:7
3797
- #, php-format
3798
- msgid "Object caching via %1$s is currently %2$s"
3799
  msgstr ""
3800
 
3801
- #: inc/options/objectcache.php:58
3802
- msgid "Groups shared amongst sites in network mode."
3803
  msgstr ""
3804
 
3805
- #: inc/options/objectcache.php:66
3806
- msgid "Groups that should not be cached."
3807
  msgstr ""
3808
 
3809
- #: inc/options/objectcache.php:73
3810
- msgid ""
3811
- "Enabling this option will increase load on server on certain actions but "
3812
- "will guarantee that\n"
3813
- " the Object Cache is always clean and contains latest "
3814
- "changes. <em>Enable if you are experiencing issues\n"
3815
- " with options displaying wrong value/state (checkboxes "
3816
- "etc).</em>"
3817
  msgstr ""
3818
 
3819
- # php-format
3820
- #: inc/options/pgcache.php:7
3821
- #, php-format
3822
- msgid "Page caching via %1$s is currently %2$s"
3823
  msgstr ""
3824
 
3825
- #: inc/options/pgcache.php:15
3826
- #, php-format
3827
- msgid "To rebuild the page cache use the %s operation"
3828
  msgstr ""
3829
 
3830
- #: inc/options/pgcache.php:29
3831
- msgid ""
3832
- "For many blogs this is your most visited page, it is recommended that you "
3833
- "cache it."
3834
  msgstr ""
3835
 
3836
- #: inc/options/pgcache.php:36
3837
- msgid ""
3838
- "By default the front page is cached when using static front page in reading "
3839
- "settings."
3840
  msgstr ""
3841
 
3842
- #: inc/options/pgcache.php:43
3843
- msgid ""
3844
- "Even if using a feed proxy service (like <a href=\"http://en.wikipedia.org/"
3845
- "wiki/FeedBurner\" target=\"_blank\">FeedBurner</a>), enabling this option is "
3846
- "still recommended."
3847
  msgstr ""
3848
 
3849
- #: inc/options/pgcache.php:49
3850
- msgid ""
3851
- "Cache <acronym title=\"Secure Socket Layer\">SSL</acronym> requests "
3852
- "(uniquely) for improved performance."
3853
  msgstr ""
3854
 
3855
- #: inc/options/pgcache.php:55
3856
- msgid "Search result (and similar) pages will be cached if enabled."
3857
  msgstr ""
3858
 
3859
- #: inc/options/pgcache.php:61
3860
- msgid ""
3861
- "Reduce server load by caching 404 pages. If the disk enhanced method of disk "
3862
- "caching is used, 404 pages will be returned with a 200 response code. Use at "
3863
- "your own risk."
3864
  msgstr ""
3865
 
3866
- #: inc/options/pgcache.php:67
3867
- msgid ""
3868
- "Cache only requests with the same <acronym title=\"Uniform Resource Indicator"
3869
- "\">URL</acronym> as the site's <a href=\"options-general.php\">site address</"
3870
- "a>."
3871
  msgstr ""
3872
 
3873
- #: inc/options/pgcache.php:73
3874
- msgid ""
3875
- "Unauthenticated users may view a cached version of the last authenticated "
3876
- "user's view of a given page. Disabling this option is not recommended."
3877
  msgstr ""
3878
 
3879
- #: inc/options/pgcache.php:79
3880
- msgid "Select user roles that should not receive cached pages:"
3881
  msgstr ""
3882
 
3883
- #: inc/options/pgcache.php:112
3884
- msgid ""
3885
- "The number of seconds to wait before creating another set of cached pages."
3886
  msgstr ""
3887
 
3888
- #: inc/options/pgcache.php:121
3889
- msgid ""
3890
- "Limit the number of pages to create per batch. Fewer pages may be better for "
3891
- "under-powered servers."
3892
  msgstr ""
3893
 
3894
- #: inc/options/pgcache.php:130
3895
- msgid ""
3896
- "A <a href=\"http://www.xml-sitemaps.com/validate-xml-sitemap.html\" target="
3897
- "\"_blank\">compliant</a> sitemap can be used to specify the pages to "
3898
- "maintain in the primed cache. Pages will be cached according to the "
3899
- "priorities specified in the <acronym title=\"Extensible Markup Language"
3900
- "\">XML</acronym> file. Due to its completeness and integrations, <a href="
3901
- "\"http://wordpress.org/extend/plugins/wordpress-seo/\" target=\"_blank"
3902
- "\">WordPress SEO</a> is recommended for use with this feature."
3903
  msgstr ""
3904
 
3905
- #: inc/options/pgcache.php:150
3906
- msgid "Purge Policy: "
3907
  msgstr ""
3908
 
3909
- #: inc/options/pgcache.php:154
3910
- msgid ""
3911
- "Specify the pages and feeds to purge when posts are created, edited, or "
3912
- "comments posted. The defaults are recommended because additional options may "
3913
- "reduce server performance:"
3914
  msgstr ""
3915
 
3916
- #: inc/options/pgcache.php:205
3917
- msgid ""
3918
- "Specify number of pages that lists posts (archive etc) that should be purged "
3919
- "on post updates etc, i.e example.com/ ... example.com/page/5. <br />0 means "
3920
- "all pages that lists posts are purged, i.e example.com/page/2 ... ."
3921
  msgstr ""
3922
 
3923
- #: inc/options/pgcache.php:214
3924
- msgid ""
3925
- "Specify additional pages to purge. Including parent page in path. Ex: parent/"
3926
- "posts."
3927
  msgstr ""
3928
 
3929
- #: inc/options/pgcache.php:221
3930
- msgid "Specify a regular expression that matches your sitemaps."
3931
  msgstr ""
3932
 
3933
- #: inc/options/pgcache.php:235
3934
- msgid "Late initialization:"
3935
  msgstr ""
3936
 
3937
- #: inc/options/pgcache.php:239
3938
- msgid ""
3939
- "Enables support for WordPress functionality in fragment caching for the page "
3940
- "caching engine. As a result, use of this feature will increase response "
3941
- "times."
3942
  msgstr ""
3943
 
3944
- #: inc/options/pgcache.php:260
3945
- msgid "Compatibility mode"
3946
  msgstr ""
3947
 
3948
- #: inc/options/pgcache.php:263
3949
- msgid ""
3950
- "Decreases performance by ~20% at scale in exchange for increasing "
3951
- "interoperability with more hosting environments and WordPress "
3952
- "idiosyncrasies. This option should be enabled for most sites"
3953
  msgstr ""
3954
 
3955
- #: inc/options/pgcache.php:268
3956
- msgid "Charset:"
3957
  msgstr ""
3958
 
3959
- #: inc/options/pgcache.php:271
3960
- msgid ""
3961
- "Resolve issues incorrect odd character encoding that may appear in cached "
3962
- "pages."
3963
  msgstr ""
3964
 
3965
- #: inc/options/pgcache.php:276
3966
- msgid "Reject HEAD requests:"
3967
  msgstr ""
3968
 
3969
- #: inc/options/pgcache.php:283
3970
  msgid ""
3971
- "If disabled, HEAD requests can often be cached resulting in \"empty pages\" "
3972
- "being returned for subsequent requests for a <acronym title=\"Uniform "
3973
- "Resource Indicator\">URL</acronym>."
3974
  msgstr ""
3975
 
3976
- #: inc/options/pgcache.php:311
3977
  msgid ""
3978
- "Significantly reduce the default <acronym title=\"Time to Live\">TTL</"
3979
- "acronym> for comment cookies to reduce the number of authenticated user "
3980
- "traffic. Enter -1 to revert to default <acronym title=\"Time to Live\">TTL</"
3981
- "acronym>."
3982
  msgstr ""
3983
 
3984
- #: inc/options/pgcache.php:320
3985
- msgid "Always cache URLs with these query strings."
 
 
 
3986
  msgstr ""
3987
 
3988
- #: inc/options/pgcache.php:329
3989
- msgid "Never send cache pages for these user agents."
3990
  msgstr ""
3991
 
3992
- #: inc/options/pgcache.php:338
3993
- msgid "Never cache pages that use the specified cookies."
3994
  msgstr ""
3995
 
3996
- #: inc/options/pgcache.php:350
3997
- #, php-format
3998
- msgid ""
3999
- "Always ignore the specified pages / directories. Supports regular "
4000
- "expressions (See <a href=\"%s\">FAQ</a>)"
4001
  msgstr ""
4002
 
4003
- #: inc/options/pgcache.php:361
4004
- #, php-format
4005
- msgid ""
4006
- "Cache the specified pages / directories even if listed in the \"never cache "
4007
- "the following pages\" field. Supports regular expression (See <a href=\"%s"
4008
- "\">FAQ</a>)"
4009
  msgstr ""
4010
 
4011
- #: inc/options/pgcache.php:371
4012
- msgid "Cache the specified pages even if they don't have tailing slash."
4013
  msgstr ""
4014
 
4015
- #: inc/options/pgcache.php:381
4016
- msgid "Specify additional page headers to cache."
4017
  msgstr ""
4018
 
4019
- #: inc/options/pgcache.php:389
4020
  msgid ""
4021
- "Return correct Content-Type header for XML files. Slows down cache engine."
 
4022
  msgstr ""
4023
 
4024
- #: inc/options/pgcache.php:406
4025
  msgid ""
4026
- "Enable <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> "
4027
- "compression in the \"<acronym title=\"Hypertext Markup Language\">HTML</"
4028
- "acronym>\" section on <a href=\"admin.php?page=w3tc_browsercache\">Browser "
4029
- "Cache</a> Settings tab."
4030
  msgstr ""
4031
 
4032
- #: inc/options/pgcache.php:407
4033
- msgid ""
4034
- "The <acronym title=\"Time to Live\">TTL</acronym> of page cache files is set "
4035
- "via the \"Expires header lifetime\" field in the \"<acronym title="
4036
- "\"Hypertext Markup Language\">HTML</acronym>\" section on <a href=\"admin."
4037
- "php?page=w3tc_browsercache\">Browser Cache</a> Settings tab."
4038
  msgstr ""
4039
 
4040
- # php-format
4041
- #: inc/options/pro/fragmentcache.php:6
4042
- #, php-format
4043
- msgid "Fragment caching via %s is currently %s."
4044
  msgstr ""
4045
 
4046
- #: inc/options/pro/fragmentcache.php:10
4047
- msgid "Empty the entire cache"
4048
  msgstr ""
4049
 
4050
- #: inc/options/pro/fragmentcache.php:11
4051
- msgid "if needed."
4052
  msgstr ""
4053
 
4054
- #: inc/options/pro/fragmentcache.php:17 inc/widget/new_relic.php:11
4055
- msgid "Overview"
4056
  msgstr ""
4057
 
4058
- #: inc/options/pro/fragmentcache.php:20
4059
- msgid "Registered fragment groups:"
4060
  msgstr ""
4061
 
4062
- #: inc/options/pro/fragmentcache.php:31
4063
- msgid "The groups above will be flushed upon setting changes."
4064
  msgstr ""
4065
 
4066
- #: inc/options/pro/fragmentcache.php:33
4067
- msgid "No groups have been registered."
4068
  msgstr ""
4069
 
4070
- #: inc/options/pro/fragmentcache.php:39
4071
- msgid "Registered site-wide fragment groups:"
4072
  msgstr ""
4073
 
4074
- #: inc/options/pro/fragmentcache.php:50
4075
- msgid "The site-wide groups above will be purged upon setting changes."
4076
  msgstr ""
4077
 
4078
- #: inc/options/pro/fragmentcache.php:52
4079
- msgid "No site-wide groups have been registered."
4080
  msgstr ""
4081
 
4082
- #: inc/options/pro/fragmentcache.php:94
4083
- msgid ""
4084
- "Specify fragment groups that should be managed by W3 Total Cache. Enter one "
4085
- "action per line comma delimited, e.g. (group, action1, action2). Include the "
4086
- "prefix used for a transient by a theme or plugin."
4087
  msgstr ""
4088
 
4089
- #: inc/options/referrer.php:12
4090
- msgid "Referrer group support is always <span class=\"w3tc-enabled\">enabled"
4091
  msgstr ""
4092
 
4093
- #: inc/options/referrer.php:19
4094
- msgid ""
4095
- "of referrers by specifying names in the referrers field. Assign a set of "
4096
- "referrers to use a specific theme, redirect them to another domain, create "
4097
- "referrer groups to ensure that a unique cache is created for each referrer "
4098
- "group. Drag and drop groups into order (if needed) to determine their "
4099
- "priority (top -&gt; down)."
4100
  msgstr ""
4101
 
4102
- #: inc/options/referrer.php:31
4103
- msgid "Delete group"
4104
  msgstr ""
4105
 
4106
- #: inc/options/referrer.php:49
4107
- msgid "-- Pass-through --"
4108
  msgstr ""
4109
 
4110
- #: inc/options/referrer.php:54
4111
- msgid ""
4112
- "Assign this group of referrers to a specific theme. Selecting \"Pass-through"
4113
- "\" allows any plugin(s) (e.g. referrer plugins) to properly handle requests "
4114
- "for these referrers. If the \"redirect users to\" field is not empty, this "
4115
- "setting is ignored."
4116
  msgstr ""
4117
 
4118
- #: inc/options/referrer.php:63
4119
- msgid ""
4120
- "A 302 redirect is used to send this group of referrers to another hostname "
4121
- "(domain)."
4122
  msgstr ""
4123
 
4124
- #: inc/options/referrer.php:68 lib/W3/UI/Settings/Referrer.php:10
4125
- msgid "Referrers:"
4126
  msgstr ""
4127
 
4128
- #: inc/options/referrer.php:72
4129
- msgid ""
4130
- "Specify the referrers for this group. Remember to escape special characters "
4131
- "like spaces, dots or dashes with a backslash. Regular expressions are also "
4132
- "supported."
4133
  msgstr ""
4134
 
4135
- #: inc/options/referrer.php:79
4136
- msgid ""
4137
- "No groups added. All referrers recieve the same page and minify cache "
4138
- "results."
4139
  msgstr ""
4140
 
4141
- #: inc/options/support.php:9
4142
- msgid ""
4143
- "Request premium services, suggest a feature or submit a bug using the form "
4144
- "below:"
4145
  msgstr ""
4146
 
4147
- #: inc/options/support/form.php:11
4148
- msgid ""
4149
- "All submitted data will not be saved and is used solely for the purposes "
4150
- "your support request. You will not be added to a mailing list, solicited "
4151
- "without your permission, nor will your site be administered after this "
4152
- "support case is closed."
4153
  msgstr ""
4154
 
4155
- #: inc/options/support/form.php:12
4156
- msgid ""
4157
- "Instead of providing your primary administrative or <acronym title=\"Secure "
4158
- "Shell\">SSH</acronym> / <acronym title=\"File Transfer Protocol\">FTP</"
4159
- "acronym> accounts, create a new administrator account that can be disabled "
4160
- "when the support case is closed."
4161
  msgstr ""
4162
 
4163
- #: inc/options/support/form.php:13
4164
- msgid ""
4165
- "Please add the domain w3-edge.com to your <a href=\"http://en.wikipedia.org/"
4166
- "wiki/Whitelist\" target=\"_blank\">email whitelist</a> as soon as possible."
4167
  msgstr ""
4168
 
4169
- #: inc/options/support/form.php:25
4170
- msgid "Submit request"
 
 
4171
  msgstr ""
4172
 
4173
- #: inc/options/support/form/bug_report.php:2
4174
- msgid "Required Information"
 
 
4175
  msgstr ""
4176
 
4177
- #: inc/options/support/form/bug_report.php:5
4178
- #: inc/options/support/form/email_support.php:5
4179
- #: inc/options/support/form/linux_config.php:5
4180
- #: inc/options/support/form/new_feature.php:5
4181
- #: inc/options/support/form/phone_support.php:5
4182
- #: inc/options/support/form/plugin_config.php:5
4183
- #: inc/options/support/form/theme_config.php:5
4184
- #: inc/options/support/select.php:6
4185
- msgid "Request type:"
4186
  msgstr ""
4187
 
4188
- #: inc/options/support/form/bug_report.php:9
4189
- #: inc/options/support/form/email_support.php:9
4190
- #: inc/options/support/form/linux_config.php:9
4191
- #: inc/options/support/form/new_feature.php:9
4192
- #: inc/options/support/form/phone_support.php:9
4193
- #: inc/options/support/form/plugin_config.php:9
4194
- #: inc/options/support/form/theme_config.php:9
4195
- msgid "Blog <acronym title=\"Uniform Resource Locator\">URL</acronym>:"
4196
  msgstr ""
4197
 
4198
- #: inc/options/support/form/bug_report.php:17
4199
- #: inc/options/support/form/email_support.php:17
4200
- #: inc/options/support/form/linux_config.php:17
4201
- #: inc/options/support/form/new_feature.php:17
4202
- #: inc/options/support/form/phone_support.php:17
4203
- #: inc/options/support/form/plugin_config.php:17
4204
- #: inc/options/support/form/theme_config.php:17
4205
- msgid "E-Mail:"
4206
  msgstr ""
4207
 
4208
- #: inc/options/support/form/bug_report.php:21
4209
- #: inc/options/support/form/email_support.php:21
4210
- #: inc/options/support/form/linux_config.php:21
4211
- #: inc/options/support/form/new_feature.php:21
4212
- #: inc/options/support/form/phone_support.php:21
4213
- #: inc/options/support/form/plugin_config.php:21
4214
- #: inc/options/support/form/theme_config.php:21
4215
- msgid "Twitter ID:"
4216
  msgstr ""
4217
 
4218
- #: inc/options/support/form/bug_report.php:25
4219
- #: inc/options/support/form/email_support.php:25
4220
- #: inc/options/support/form/linux_config.php:25
4221
- #: inc/options/support/form/new_feature.php:25
4222
- #: inc/options/support/form/phone_support.php:29
4223
- #: inc/options/support/form/plugin_config.php:25
4224
- #: inc/options/support/form/theme_config.php:25
4225
- msgid "Subject:"
4226
  msgstr ""
4227
 
4228
- #: inc/options/support/form/bug_report.php:29
4229
- #: inc/options/support/form/email_support.php:29
4230
- #: inc/options/support/form/linux_config.php:29
4231
- #: inc/options/support/form/new_feature.php:29
4232
- #: inc/options/support/form/phone_support.php:33
4233
- #: inc/options/support/form/plugin_config.php:29
4234
- #: inc/options/support/form/theme_config.php:29
4235
- msgid "Issue description:"
4236
  msgstr ""
4237
 
4238
- #: inc/options/support/form/bug_report.php:33
4239
- #: inc/options/support/form/email_support.php:33
4240
- #: inc/options/support/form/phone_support.php:37
4241
- #: inc/options/support/form/plugin_config.php:33
4242
- #: inc/options/support/form/theme_config.php:33
4243
- msgid "Attach template:"
4244
  msgstr ""
4245
 
4246
- #: inc/options/support/form/bug_report.php:41
4247
- #: inc/options/support/form/email_support.php:41
4248
- #: inc/options/support/form/linux_config.php:33
4249
- #: inc/options/support/form/phone_support.php:45
4250
- #: inc/options/support/form/plugin_config.php:41
4251
- #: inc/options/support/form/theme_config.php:41
4252
- msgid "Attach file:"
4253
  msgstr ""
4254
 
4255
- #: inc/options/support/form/bug_report.php:44
4256
- #: inc/options/support/form/email_support.php:44
4257
- #: inc/options/support/form/linux_config.php:36
4258
- #: inc/options/support/form/phone_support.php:48
4259
- #: inc/options/support/form/plugin_config.php:44
4260
- #: inc/options/support/form/theme_config.php:44
4261
- msgid "Attach more files"
4262
  msgstr ""
4263
 
4264
- #: inc/options/support/form/bug_report.php:50
4265
- #: inc/options/support/form/email_support.php:50
4266
- #: inc/options/support/form/linux_config.php:62
4267
- #: inc/options/support/form/new_feature.php:35
4268
- #: inc/options/support/form/phone_support.php:54
4269
- #: inc/options/support/form/plugin_config.php:58
4270
- #: inc/options/support/form/theme_config.php:70
4271
- msgid "Additional Information"
4272
- msgstr ""
4273
-
4274
- #: inc/options/support/form/bug_report.php:53
4275
- #: inc/options/support/form/email_support.php:53
4276
- #: inc/options/support/form/linux_config.php:65
4277
- #: inc/options/support/form/new_feature.php:38
4278
- #: inc/options/support/form/phone_support.php:25
4279
- #: inc/options/support/form/plugin_config.php:61
4280
- #: inc/options/support/form/theme_config.php:73
4281
- msgid "Phone:"
4282
  msgstr ""
4283
 
4284
- #: inc/options/support/form/bug_report.php:57
4285
- #: inc/options/support/form/email_support.php:57
4286
- #: inc/options/support/form/new_feature.php:42
4287
- #: inc/options/support/form/phone_support.php:57
4288
- msgid "Forum Topic URL:"
4289
- msgstr ""
4290
 
4291
- #: inc/options/support/form/bug_report.php:61
4292
- msgid "<acronym title=\"WordPress\">WP</acronym> Admin login:</label>"
4293
  msgstr ""
4294
 
4295
- #: inc/options/support/form/bug_report.php:65
4296
- msgid "<acronym title=\"WordPress\">WP</acronym> Admin password:</label>"
4297
  msgstr ""
4298
 
4299
- #: inc/options/support/form/bug_report.php:69
4300
- #: inc/options/support/form/email_support.php:69
4301
- #: inc/options/support/form/linux_config.php:48
4302
- #: inc/options/support/form/phone_support.php:69
4303
- #: inc/options/support/form/plugin_config.php:65
4304
- #: inc/options/support/form/theme_config.php:56
4305
- msgid ""
4306
- "<acronym title=\"Secure Shell\">SSH</acronym> / <acronym title=\"File "
4307
- "Transfer Protocol\">FTP</acronym> host:"
4308
  msgstr ""
4309
 
4310
- #: inc/options/support/form/bug_report.php:73
4311
- #: inc/options/support/form/email_support.php:73
4312
- #: inc/options/support/form/linux_config.php:52
4313
- #: inc/options/support/form/phone_support.php:73
4314
- #: inc/options/support/form/plugin_config.php:69
4315
- #: inc/options/support/form/theme_config.php:60
4316
  msgid ""
4317
- "<acronym title=\"Secure Shell\">SSH</acronym> / <acronym title=\"File "
4318
- "Transfer Protocol\">FTP</acronym> login:"
4319
  msgstr ""
4320
 
4321
- #: inc/options/support/form/bug_report.php:77
4322
- #: inc/options/support/form/email_support.php:77
4323
- #: inc/options/support/form/linux_config.php:56
4324
- #: inc/options/support/form/phone_support.php:77
4325
- #: inc/options/support/form/plugin_config.php:73
4326
- #: inc/options/support/form/theme_config.php:64
4327
  msgid ""
4328
- "<acronym title=\"Secure Shell\">SSH</acronym> / <acronym title=\"File "
4329
- "Transfer Protocol\">FTP</acronym> password:"
 
4330
  msgstr ""
4331
 
4332
- #: inc/options/support/form/bug_report.php:82
4333
- #: inc/options/support/form/email_support.php:82
4334
- #: inc/options/support/form/linux_config.php:70
4335
- #: inc/options/support/form/new_feature.php:47
4336
- #: inc/options/support/form/phone_support.php:82
4337
- #: inc/options/support/form/plugin_config.php:78
4338
- #: inc/options/support/form/theme_config.php:78
4339
- msgid "Would you like to be notified when products are announced and updated?"
4340
  msgstr ""
4341
 
4342
- #: inc/options/support/form/bug_report.php:87
4343
- #: inc/options/support/form/email_support.php:87
4344
- #: inc/options/support/form/linux_config.php:75
4345
- #: inc/options/support/form/new_feature.php:52
4346
- #: inc/options/support/form/phone_support.php:87
4347
- #: inc/options/support/form/plugin_config.php:83
4348
- #: inc/options/support/form/theme_config.php:83
4349
- msgid "Yes, please notify me."
4350
  msgstr ""
4351
 
4352
- #: inc/options/support/form/email_support.php:61
4353
- #: inc/options/support/form/linux_config.php:40
4354
- #: inc/options/support/form/phone_support.php:61
4355
- #: inc/options/support/form/plugin_config.php:48
4356
- #: inc/options/support/form/theme_config.php:48
4357
- msgid "<acronym title=\"WordPress\">WP</acronym> Admin login:"
4358
  msgstr ""
4359
 
4360
- #: inc/options/support/form/email_support.php:65
4361
- #: inc/options/support/form/linux_config.php:44
4362
- #: inc/options/support/form/phone_support.php:65
4363
- #: inc/options/support/form/plugin_config.php:52
4364
- #: inc/options/support/form/theme_config.php:52
4365
- msgid "<acronym title=\"WordPress\">WP</acronym> Admin password:"
4366
  msgstr ""
4367
 
4368
- #: inc/options/support/payment.php:4
4369
- msgid "Make Payment"
 
4370
  msgstr ""
4371
 
4372
- #: inc/options/support/payment.php:8
4373
- #, php-format
4374
- msgid "Price: %.2f USD"
4375
  msgstr ""
4376
 
4377
- #: inc/options/support/payment.php:20 inc/widget/services.php:10
4378
- msgid "Buy now"
4379
  msgstr ""
4380
 
4381
- #: inc/options/support/select.php:3
4382
- msgid "Choose Request Type"
4383
  msgstr ""
4384
 
4385
- #: inc/options/support/select.php:9
4386
- msgid "-- Choose Type --"
 
 
4387
  msgstr ""
4388
 
4389
- #: inc/popup/cdn_export_file.php:18 inc/popup/cdn_export_library.php:11
4390
- msgid ""
4391
- "This tool will upload files of the selected type to content delivery network "
4392
- "provider."
4393
  msgstr ""
4394
 
4395
- #: inc/popup/cdn_export_file.php:21
4396
- msgid "Total files:"
4397
  msgstr ""
4398
 
4399
- #: inc/popup/cdn_export_file.php:25 inc/popup/cdn_export_library.php:18
4400
- #: inc/popup/cdn_import_library.php:19 inc/popup/cdn_rename_domain.php:18
4401
- msgid "Processed:"
4402
  msgstr ""
4403
 
4404
- #: inc/popup/cdn_export_file.php:29 inc/popup/cdn_export_library.php:22
4405
- #: inc/popup/cdn_import_library.php:23 inc/popup/cdn_rename_domain.php:22
4406
- msgid "Status:"
4407
  msgstr ""
4408
 
4409
- #: inc/popup/cdn_export_file.php:33 inc/popup/cdn_export_library.php:26
4410
- #: inc/popup/cdn_import_library.php:27 inc/popup/cdn_rename_domain.php:26
4411
- msgid "Time elapsed:"
4412
  msgstr ""
4413
 
4414
- #: inc/popup/cdn_export_file.php:37 inc/popup/cdn_export_library.php:30
4415
- #: inc/popup/cdn_import_library.php:31 inc/popup/cdn_rename_domain.php:30
4416
- msgid "Last response:"
4417
  msgstr ""
4418
 
4419
- #: inc/popup/cdn_export_file.php:43 inc/popup/cdn_export_library.php:36
4420
- #: inc/popup/cdn_import_library.php:47 inc/popup/cdn_rename_domain.php:43
4421
- msgid "Start"
4422
  msgstr ""
4423
 
4424
- #: inc/popup/cdn_export_library.php:14
4425
- msgid "Total media library attachments:"
4426
  msgstr ""
4427
 
4428
- #: inc/popup/cdn_import_library.php:12
4429
- msgid ""
4430
- "This tool will copy post or page attachments into the Media Library allowing "
4431
- "WordPress to work as intended."
4432
  msgstr ""
4433
 
4434
- #: inc/popup/cdn_import_library.php:15 inc/popup/cdn_rename_domain.php:14
4435
- msgid "Total posts:"
4436
  msgstr ""
4437
 
4438
- #: inc/popup/cdn_import_library.php:36
4439
- msgid ""
4440
- "Create a list of permanent (301) redirects for use in your site's .htaccess "
4441
- "file"
4442
  msgstr ""
4443
 
4444
- #: inc/popup/cdn_import_library.php:41
4445
- msgid ""
4446
- "Create a list of redirects to <acronym title=\"Content Delivery Network"
4447
- "\">CDN</acronym> (hostname specified in hostname field #1.)"
4448
  msgstr ""
4449
 
4450
- #: inc/popup/cdn_import_library.php:58
4451
- msgid ""
4452
- "Add the following directives to your .htaccess file or if there are several "
4453
- "hundred they should be added directly to your configuration file:"
4454
  msgstr ""
4455
 
4456
- #: inc/popup/cdn_purge.php:5
4457
- msgid ""
4458
- "Remove objects from the CDN by specifying the relative path on individual "
4459
- "lines below and clicking the \"Purge\" button when done. For example:"
4460
  msgstr ""
4461
 
4462
- #: inc/popup/cdn_purge.php:11
4463
- msgid "the directory itself (only when accessed directly without any file)."
4464
  msgstr ""
4465
 
4466
- #: inc/popup/cdn_purge.php:12
4467
- msgid ""
4468
- "all files in the directory with no extension, with all parameter variations."
4469
  msgstr ""
4470
 
4471
- #: inc/popup/cdn_purge.php:13
4472
- msgid "all files in the directory whose extension is \"jpg\"."
4473
  msgstr ""
4474
 
4475
- #: inc/popup/cdn_purge.php:14
4476
- msgid ""
4477
- "the specific file (when the file does not have an extension), and without "
4478
- "parameters."
4479
  msgstr ""
4480
 
4481
- #: inc/popup/cdn_purge.php:15
4482
- msgid "the specific file with its extension, and without parameters."
4483
  msgstr ""
4484
 
4485
- #: inc/popup/cdn_purge.php:16
4486
- msgid "the specific file with its extension, with all variation of parameters."
4487
  msgstr ""
4488
 
4489
- #: inc/popup/cdn_purge.php:17
4490
- msgid "the specific file with its extension, with the specific parameters."
4491
  msgstr ""
4492
 
4493
- #: inc/popup/cdn_purge.php:29
4494
- msgid "Files to purge:"
4495
  msgstr ""
4496
 
4497
- #: inc/popup/cdn_queue.php:4
4498
- msgid "This tool lists the pending file uploads and deletions."
4499
  msgstr ""
4500
 
4501
- #: inc/popup/cdn_queue.php:6
4502
- msgid "Upload queue"
4503
  msgstr ""
4504
 
4505
- #: inc/popup/cdn_queue.php:7
4506
- msgid "Delete queue"
 
 
 
4507
  msgstr ""
4508
 
4509
- #: inc/popup/cdn_queue.php:8
4510
- msgid "Purge queue"
 
 
 
4511
  msgstr ""
4512
 
4513
- #: inc/popup/cdn_queue.php:15 inc/popup/cdn_queue.php:48
4514
- #: inc/popup/cdn_queue.php:78
4515
- msgid "Local Path"
4516
  msgstr ""
4517
 
4518
- #: inc/popup/cdn_queue.php:16 inc/popup/cdn_queue.php:49
4519
- #: inc/popup/cdn_queue.php:79
4520
- msgid "Remote Path"
4521
  msgstr ""
4522
 
4523
- #: inc/popup/cdn_queue.php:17 inc/popup/cdn_queue.php:50
4524
- #: inc/popup/cdn_queue.php:80
4525
- msgid "Last Error"
 
4526
  msgstr ""
4527
 
4528
- #: inc/popup/cdn_queue.php:18 inc/popup/cdn_queue.php:51
4529
- #: inc/popup/cdn_queue.php:81
4530
- msgid "Date"
4531
  msgstr ""
4532
 
4533
- #: inc/popup/cdn_queue.php:34
4534
- msgid "Empty upload queue"
4535
  msgstr ""
4536
 
4537
- #: inc/popup/cdn_queue.php:37
4538
- msgid "Process CDN queue now"
4539
  msgstr ""
4540
 
4541
- #: inc/popup/cdn_queue.php:40
4542
- msgid "Upload queue is empty"
4543
  msgstr ""
4544
 
4545
- #: inc/popup/cdn_queue.php:67
4546
- msgid "Empty delete queue"
4547
  msgstr ""
4548
 
4549
- #: inc/popup/cdn_queue.php:70
4550
- msgid "Delete queue is empty"
 
 
4551
  msgstr ""
4552
 
4553
- #: inc/popup/cdn_queue.php:97
4554
- msgid "Empty purge queue"
4555
  msgstr ""
4556
 
4557
- #: inc/popup/cdn_queue.php:100
4558
- msgid "Purge queue is empty"
 
 
4559
  msgstr ""
4560
 
4561
- #: inc/popup/cdn_rename_domain.php:11
4562
  msgid ""
4563
- "This tool allows you to modify the URL of Media Library attachments. Use it "
4564
- "if the \"WordPress address (<acronym title=\"Uniform Resource Indicator"
4565
- "\">URL</acronym>)\" value has been changed in the past."
4566
  msgstr ""
4567
 
4568
- #: inc/popup/cdn_rename_domain.php:34
4569
- msgid "Domains to rename:"
 
 
 
4570
  msgstr ""
4571
 
4572
- #: inc/popup/cdn_rename_domain.php:37
4573
- msgid "e.g.: domain.com"
4574
  msgstr ""
4575
 
4576
- #: inc/popup/pagespeed_results.php:5
4577
- msgid "Page Speed Score:"
4578
  msgstr ""
4579
 
4580
- #: inc/popup/pagespeed_results.php:9
4581
- msgid "Expand all"
4582
  msgstr ""
4583
 
4584
- #: inc/popup/pagespeed_results.php:10
4585
- msgid "Collapse all"
4586
  msgstr ""
4587
 
4588
- #: inc/popup/pagespeed_results.php:11
4589
- msgid "Refresh analysis"
 
 
 
4590
  msgstr ""
4591
 
4592
- #: inc/popup/pagespeed_results.php:42
4593
- msgid "Resolution:"
4594
  msgstr ""
4595
 
4596
- #: inc/popup/pagespeed_results.php:50
4597
- msgid "Unable to fetch Page Speed results."
4598
  msgstr ""
4599
 
4600
- #: inc/popup/pagespeed_results.php:52
4601
- msgid "Refresh Analysis"
 
 
 
 
 
4602
  msgstr ""
4603
 
4604
- #: inc/widget/latest.php:3 inc/widget/latest_news.php:3
4605
- msgid "Loading&#8230;"
 
 
 
 
 
4606
  msgstr ""
4607
 
4608
- #: inc/widget/latest.php:6 inc/widget/latest_news.php:6
4609
- msgid "This widget requires JavaScript."
4610
  msgstr ""
4611
 
4612
- #: inc/widget/maxcdn.php:16 inc/widget/netdna.php:16
4613
- #, php-format
4614
- msgid "Status: %s"
4615
  msgstr ""
4616
 
4617
- #: inc/widget/maxcdn.php:17 inc/widget/netdna.php:17
4618
- #, php-format
4619
- msgid "Content Zone: %s"
4620
  msgstr ""
4621
 
4622
- #: inc/widget/maxcdn.php:23 inc/widget/netdna.php:23
4623
- msgid "Manage"
4624
  msgstr ""
4625
 
4626
- #: inc/widget/maxcdn.php:24 inc/widget/netdna.php:24
4627
- msgid "Reports"
4628
  msgstr ""
4629
 
4630
- #: inc/widget/maxcdn.php:29 inc/widget/netdna.php:29
4631
- msgid "Reports - 30 days"
4632
  msgstr ""
4633
 
4634
- #: inc/widget/maxcdn.php:31 inc/widget/netdna.php:31
4635
- #, php-format
4636
- msgid "<span>Transferred:</span> %s"
4637
  msgstr ""
4638
 
4639
- #: inc/widget/maxcdn.php:32 inc/widget/netdna.php:32
4640
- #, php-format
4641
- msgid "<span>Cache Hits:</span> %d (%d%%)"
4642
  msgstr ""
4643
 
4644
- #: inc/widget/maxcdn.php:34 inc/widget/netdna.php:34
4645
- #, php-format
4646
- msgid "<span>Cache Misses (non-cache hits):</span> %d (%d%%)"
4647
  msgstr ""
4648
 
4649
- #: inc/widget/maxcdn.php:39 inc/widget/netdna.php:39
4650
- msgid "Requests"
4651
  msgstr ""
4652
 
4653
- #: inc/widget/maxcdn.php:41 inc/widget/netdna.php:41
4654
- msgid "Content Breakdown"
4655
  msgstr ""
4656
 
4657
- #: inc/widget/maxcdn.php:43 inc/widget/netdna.php:43
4658
- msgid "File"
4659
  msgstr ""
4660
 
4661
- #: inc/widget/maxcdn.php:44 inc/widget/netdna.php:44
4662
- msgid "Hits"
4663
  msgstr ""
4664
 
4665
- #: inc/widget/maxcdn_signup.php:4
4666
- #, php-format
4667
  msgid ""
4668
- "MaxCDN encountered an error trying to retrieve data, make sure your host "
4669
- "support cURL and outgoing requests: %s"
4670
  msgstr ""
4671
 
4672
- #: inc/widget/maxcdn_signup.php:7
4673
- msgid ""
4674
- "Add the MaxCDN content delivery network to increase website speeds "
4675
- "dramatically in just a few minutes!"
4676
  msgstr ""
4677
 
4678
- #: inc/widget/maxcdn_signup.php:8
4679
- msgid "New customers"
4680
  msgstr ""
4681
 
4682
- #: inc/widget/maxcdn_signup.php:9
4683
- msgid ""
4684
- "MaxCDN is a service that lets you speed up your site even more with W3 Total "
4685
- "Cache."
4686
  msgstr ""
4687
 
4688
- #: inc/widget/maxcdn_signup.php:11
4689
- msgid "100% Money Back Guarantee (30 Days)"
4690
  msgstr ""
4691
 
4692
- #: inc/widget/maxcdn_signup.php:13 inc/widget/netdna_signup.php:12
4693
- msgid "Current customers"
4694
  msgstr ""
4695
 
4696
- #: inc/widget/maxcdn_signup.php:14
4697
  msgid ""
4698
- "Once you've signed up or if you're an existing MaxCDN customer, to enable "
4699
- "CDN:"
4700
  msgstr ""
4701
 
4702
- #: inc/widget/maxcdn_signup.php:30 inc/widget/netdna_signup.php:32
4703
- msgid ""
4704
- "You have no zone connected with this site. Click button to create a default "
4705
- "zone."
4706
  msgstr ""
4707
 
4708
- #: inc/widget/netdna_signup.php:10
4709
- #, php-format
4710
- msgid ""
4711
- "NetDNA encountered an error trying to retrieve data, make sure your host "
4712
- "support cURL and outgoing requests: %s"
4713
  msgstr ""
4714
 
4715
- #: inc/widget/netdna_signup.php:13
4716
- msgid ""
4717
- "Once you've signed up or if you're an existing NetDNA customer, to enable "
4718
- "CDN:"
4719
  msgstr ""
4720
 
4721
- #: inc/widget/new_relic.php:4
4722
- msgid "You have not configured API key and Account Id."
4723
  msgstr ""
4724
 
4725
- #: inc/widget/new_relic.php:20
4726
- msgid "Average times"
4727
  msgstr ""
4728
 
4729
- #: inc/widget/new_relic.php:29
4730
- msgid "Top 5 slowest times"
4731
  msgstr ""
4732
 
4733
- #: inc/widget/new_relic.php:31
4734
- msgid "Page load times"
4735
  msgstr ""
4736
 
4737
- #: inc/widget/new_relic.php:41 inc/widget/new_relic.php:60
4738
- #: inc/widget/new_relic.php:78
4739
- msgid "Not enough data"
4740
  msgstr ""
4741
 
4742
- #: inc/widget/new_relic.php:43 inc/widget/new_relic.php:62
4743
- #: inc/widget/new_relic.php:80
4744
- msgid "Data not available to this subscription level."
4745
  msgstr ""
4746
 
4747
- #: inc/widget/new_relic.php:49
4748
- msgid "Web Transaction times"
 
4749
  msgstr ""
4750
 
4751
- #: inc/widget/new_relic.php:68
4752
- msgid "Database times"
 
4753
  msgstr ""
4754
 
4755
- #: inc/widget/new_relic.php:89
4756
- msgid "PHP agent:"
 
 
 
4757
  msgstr ""
4758
 
4759
- #: inc/widget/new_relic.php:90
4760
- msgid "Subscription level:"
 
 
 
4761
  msgstr ""
4762
 
4763
- #: inc/widget/new_relic.php:92
4764
- msgid "Upgrade your New Relic account to enable more metrics."
 
 
4765
  msgstr ""
4766
 
4767
- #: inc/widget/spreadtheword.php:1
4768
- msgid "We're working to make WordPress better. Please support us, here's how:"
4769
  msgstr ""
4770
 
4771
- #: inc/widget/spreadtheword.php:4
4772
- msgid "Rate:"
4773
  msgstr ""
4774
 
4775
- #: inc/widget/spreadtheword.php:5
4776
- msgid "Link:"
4777
  msgstr ""
4778
 
4779
- #: inc/widget/spreadtheword.php:15
4780
- msgid "Or manually place a link, here is the code:"
4781
  msgstr ""
4782
 
4783
- #: inc/widget/spreadtheword.php:16
4784
- #, php-format
4785
- msgid "Performance Optimization %s by W3 EDGE"
4786
  msgstr ""
4787
 
4788
- #: lib/NetDNA/NetDNA.php:341
4789
- #, php-format
4790
- msgid "Zone for %s was created by W3 Total Cache"
 
4791
  msgstr ""
4792
 
4793
- #: lib/NetDNA/NetDNAPresentation.php:63
4794
- msgid "Pending"
 
 
4795
  msgstr ""
4796
 
4797
- #: lib/NetDNA/NetDNAPresentation.php:65
4798
- msgid "Active"
4799
  msgstr ""
4800
 
4801
- #: lib/NetDNA/NetDNAPresentation.php:67
4802
- msgid "Cancelled"
4803
  msgstr ""
4804
 
4805
- #: lib/NetDNA/NetDNAPresentation.php:69
4806
- msgid "Suspended"
 
4807
  msgstr ""
4808
 
4809
- #: lib/NetDNA/NetDNAPresentation.php:71
4810
- msgid "Fraud"
 
 
4811
  msgstr ""
4812
 
4813
- #: lib/NetDNA/NetDNAPresentation.php:73 lib/W3/Widget/NewRelic.php:89
4814
- msgid "unknown"
 
 
 
4815
  msgstr ""
4816
 
4817
- #: lib/NewRelic/NewRelicAPI.php:41
4818
- msgid "Invalid API key or Account ID"
 
 
4819
  msgstr ""
4820
 
4821
- #: lib/NewRelic/NewRelicPresentation.php:14
4822
- msgid "Page load time"
 
4823
  msgstr ""
4824
 
4825
- #: lib/NewRelic/NewRelicPresentation.php:17
4826
- msgid "Web Transaction"
 
4827
  msgstr ""
4828
 
4829
- #: lib/NewRelic/NewRelicPresentation.php:20
4830
- msgid "Database"
4831
  msgstr ""
4832
 
4833
- #: lib/W3/AdminActions/ActionHandler.php:45
4834
- #, php-format
4835
- msgid "%s is not an correct action."
 
4836
  msgstr ""
4837
 
4838
- #: lib/W3/AdminActions/ActionHandler.php:64
4839
- #, php-format
4840
- msgid "action %s does not exist for %s"
 
4841
  msgstr ""
4842
 
4843
- #: lib/W3/AdminActions/CdnActionsAdmin.php:50
4844
- msgid "File successfully deleted from the queue."
 
 
4845
  msgstr ""
4846
 
4847
- #: lib/W3/AdminActions/CdnActionsAdmin.php:58
4848
- msgid "Queue successfully emptied."
 
 
4849
  msgstr ""
4850
 
4851
- #: lib/W3/AdminActions/CdnActionsAdmin.php:65
4852
- #, php-format
4853
- msgid "Number of processed queue items: %d"
4854
  msgstr ""
4855
 
4856
- #: lib/W3/AdminActions/CdnActionsAdmin.php:71
4857
- msgid "Unsuccessful file transfer queue."
 
 
4858
  msgstr ""
4859
 
4860
- #: lib/W3/AdminActions/CdnActionsAdmin.php:85
4861
- msgid "Media Library export"
 
 
4862
  msgstr ""
4863
 
4864
- #: lib/W3/AdminActions/CdnActionsAdmin.php:134
4865
- msgid "Media Library import"
 
4866
  msgstr ""
4867
 
4868
- #: lib/W3/AdminActions/CdnActionsAdmin.php:179
4869
- msgid "Modify attachment URLs"
 
4870
  msgstr ""
4871
 
4872
- #: lib/W3/AdminActions/CdnActionsAdmin.php:229
4873
- msgid "Includes files export"
 
 
4874
  msgstr ""
4875
 
4876
- #: lib/W3/AdminActions/CdnActionsAdmin.php:234
4877
- msgid "Theme files export"
 
 
4878
  msgstr ""
4879
 
4880
- #: lib/W3/AdminActions/CdnActionsAdmin.php:239
4881
- msgid "Minify files export"
 
 
4882
  msgstr ""
4883
 
4884
- #: lib/W3/AdminActions/CdnActionsAdmin.php:245
4885
- msgid "Custom files export"
 
 
4886
  msgstr ""
4887
 
4888
- #: lib/W3/AdminActions/CdnActionsAdmin.php:291
4889
- #: lib/W3/AdminActions/CdnActionsAdmin.php:306
4890
- msgid "Content Delivery Network (CDN): Purge Tool"
 
4891
  msgstr ""
4892
 
4893
- #: lib/W3/AdminActions/CdnActionsAdmin.php:327
4894
- msgid "Empty files list."
 
 
4895
  msgstr ""
4896
 
4897
- #: lib/W3/AdminActions/CdnActionsAdmin.php:389
4898
- msgid "Incorrect engine."
 
 
4899
  msgstr ""
4900
 
4901
- #: lib/W3/AdminActions/CdnActionsAdmin.php:401
4902
- msgid "Test passed"
 
 
4903
  msgstr ""
4904
 
4905
- #: lib/W3/AdminActions/CdnActionsAdmin.php:404
4906
- #: lib/W3/AdminActions/CdnActionsAdmin.php:457
4907
- #, php-format
4908
- msgid "Error: %s"
4909
  msgstr ""
4910
 
4911
- #: lib/W3/AdminActions/CdnActionsAdmin.php:434
4912
- msgid "Incorrect type."
 
 
4913
  msgstr ""
4914
 
4915
- #: lib/W3/AdminActions/CdnActionsAdmin.php:454
4916
- msgid "Created successfully."
 
 
4917
  msgstr ""
4918
 
4919
- #: lib/W3/AdminActions/CdnActionsAdmin.php:483
4920
- msgid "US-West (Northern California)"
 
4921
  msgstr ""
4922
 
4923
- #: lib/W3/AdminActions/CdnActionsAdmin.php:485
4924
- msgid "AP-SouthEast (Singapore)"
 
4925
  msgstr ""
4926
 
4927
- #: lib/W3/AdminActions/CdnActionsAdmin.php:665
4928
- msgid "An authorization key was not provided."
 
 
 
4929
  msgstr ""
4930
 
4931
- #: lib/W3/AdminActions/CdnActionsAdmin.php:671
4932
- #, php-format
4933
  msgid ""
4934
- "The provided authorization key is\n"
4935
- " not in the correct format: %s."
4936
  msgstr ""
4937
 
4938
- #: lib/W3/AdminActions/CdnActionsAdmin.php:739
4939
- msgid "Could not create default zone."
 
 
 
4940
  msgstr ""
4941
 
4942
- #: lib/W3/AdminActions/CdnActionsAdmin.php:793
4943
  msgid ""
4944
- "The provided zone id was not connected to the provided authorization key."
 
4945
  msgstr ""
4946
 
4947
- #: lib/W3/AdminActions/CdnActionsAdmin.php:861
4948
- #, php-format
4949
  msgid ""
4950
- "%s is not supported for Pull Zone\n"
4951
- " selection."
 
 
 
 
 
 
 
 
4952
  msgstr ""
4953
 
4954
- #: lib/W3/AdminActions/ConfigActionsAdmin.php:67
4955
- #, php-format
4956
- msgid "Content-Disposition: attachment; filename=%s.php"
4957
  msgstr ""
4958
 
4959
- #: lib/W3/AdminActions/ConfigActionsAdmin.php:152
4960
- msgid "Database Cluster configuration file has been successfully saved"
4961
  msgstr ""
4962
 
4963
- #: lib/W3/AdminActions/DefaultActionsAdmin.php:137
4964
- msgid "You do not have the rights to perform this action."
 
4965
  msgstr ""
4966
 
4967
- #: lib/W3/AdminActions/DefaultActionsAdmin.php:685
4968
- msgid "Added by W3 Total Cache"
 
 
 
 
 
 
 
4969
  msgstr ""
4970
 
4971
- #: lib/W3/AdminActions/SupportActionsAdmin.php:65
4972
- #: lib/W3/UI/SupportAdminView.php:61
4973
- msgid "Submit a Bug Report"
4974
  msgstr ""
4975
 
4976
- #: lib/W3/AdminActions/SupportActionsAdmin.php:66
4977
- #: lib/W3/UI/SupportAdminView.php:62
4978
- msgid "Suggest a New Feature"
4979
  msgstr ""
4980
 
4981
- #: lib/W3/AdminActions/SupportActionsAdmin.php:67
4982
- #: lib/W3/UI/SupportAdminView.php:63
4983
- msgid "Less than 15 Minute Email Support Response (M-F 9AM - 5PM EDT): $75 USD"
4984
  msgstr ""
4985
 
4986
- #: lib/W3/AdminActions/SupportActionsAdmin.php:68
4987
- #: lib/W3/UI/SupportAdminView.php:64
4988
  msgid ""
4989
- "Less than 15 Minute Phone Support Response (M-F 9AM - 5PM EDT): $150 USD"
 
 
 
 
4990
  msgstr ""
4991
 
4992
- #: lib/W3/AdminActions/SupportActionsAdmin.php:69
4993
- #: lib/W3/UI/SupportAdminView.php:65
4994
- msgid "Professional Plugin Configuration: Starting @ $100 USD"
4995
  msgstr ""
4996
 
4997
- #: lib/W3/AdminActions/SupportActionsAdmin.php:70
4998
- #: lib/W3/UI/SupportAdminView.php:66
4999
- msgid ""
5000
- "Theme Performance Optimization & Plugin Configuration: Starting @ $150 USD"
5001
  msgstr ""
5002
 
5003
- #: lib/W3/AdminActions/SupportActionsAdmin.php:71
5004
- #: lib/W3/UI/SupportAdminView.php:67
5005
- msgid "Linux Server Optimization & Plugin Configuration: Starting @ $200 USD"
5006
  msgstr ""
5007
 
5008
- #: lib/W3/AdminActions/TestActionsAdmin.php:48
5009
- msgid "Test passed."
 
 
 
 
5010
  msgstr ""
5011
 
5012
- #: lib/W3/AdminActions/TestActionsAdmin.php:51
5013
- msgid "Test failed."
5014
  msgstr ""
5015
 
5016
- #: lib/W3/AdminActions/TestActionsAdmin.php:78
5017
- msgid "Empty JAVA executable path."
5018
  msgstr ""
5019
 
5020
- #: lib/W3/AdminActions/TestActionsAdmin.php:80
5021
- msgid "Empty JAR file path."
5022
  msgstr ""
5023
 
5024
- #: lib/W3/AdminActions/TestActionsAdmin.php:111
5025
- msgid "Invalid engine."
5026
  msgstr ""
5027
 
5028
- #: lib/W3/AdminCompatibility.php:90
5029
- msgid ""
5030
- "The following plugins are not compatible with W3 Total Cache and will cause "
5031
- "unintended results:"
5032
  msgstr ""
5033
 
5034
- #: lib/W3/AdminCompatibility.php:96
5035
- msgid "Network Deactivate"
5036
  msgstr ""
5037
 
5038
- #: lib/W3/Cdn/Mirror/Akamai.php:41 lib/W3/Cdn/Mirror/Cotendo.php:44
5039
- msgid "Empty username."
5040
  msgstr ""
5041
 
5042
- #: lib/W3/Cdn/Mirror/Akamai.php:47 lib/W3/Cdn/Mirror/Cotendo.php:50
5043
- msgid "Empty password."
5044
  msgstr ""
5045
 
5046
- #: lib/W3/Cdn/Mirror/Akamai.php:62 lib/W3/Cdn/Mirror/Cotendo.php:71
5047
- #, php-format
5048
- msgid "Constructor error (%s)."
5049
  msgstr ""
5050
 
5051
- #: lib/W3/Cdn/Mirror/Akamai.php:92 lib/W3/Cdn/Mirror/Cotendo.php:100
5052
- msgid "Invalid response."
5053
  msgstr ""
5054
 
5055
- #: lib/W3/Cdn/Mirror/Akamai.php:102 lib/W3/Cdn/Mirror/Akamai.php:107
5056
- #: lib/W3/Cdn/Mirror/Cotendo.php:108 lib/W3/Cdn/Mirror/Edgecast.php:68
5057
- #: lib/W3/Cdn/Mirror/Netdna.php:126 lib/W3/Cdn/Mirror/Netdna.php:142
5058
- #: lib/W3/Cdn/Mirror/Netdna.php:245 lib/W3/Cdn/Mirror/Netdna.php:259
5059
- #, php-format
5060
- msgid "Unable to purge (%s)."
5061
  msgstr ""
5062
 
5063
- #: lib/W3/Cdn/Mirror/Cotendo.php:56
5064
- msgid "Empty zones list."
5065
  msgstr ""
5066
 
5067
- #: lib/W3/Cdn/Mirror/Edgecast.php:46
5068
- msgid "Empty account #."
5069
  msgstr ""
5070
 
5071
- #: lib/W3/Cdn/Mirror/Edgecast.php:52
5072
- msgid "Empty token."
 
 
5073
  msgstr ""
5074
 
5075
- #: lib/W3/Cdn/Mirror/Edgecast.php:121
5076
- msgid "Invalid Request Parameter"
5077
  msgstr ""
5078
 
5079
- #: lib/W3/Cdn/Mirror/Edgecast.php:125
5080
- msgid "Authentication Failure or Insufficient Access Rights"
 
 
 
5081
  msgstr ""
5082
 
5083
- #: lib/W3/Cdn/Mirror/Edgecast.php:129
5084
- msgid "Invalid Request URI"
5085
  msgstr ""
5086
 
5087
- #: lib/W3/Cdn/Mirror/Edgecast.php:133
5088
- msgid "Invalid Request"
5089
  msgstr ""
5090
 
5091
- #: lib/W3/Cdn/Mirror/Edgecast.php:137
5092
- msgid "Server Error"
5093
  msgstr ""
5094
 
5095
- #: lib/W3/Cdn/Mirror/Netdna.php:46 lib/W3/Cdn/Mirror/Netdna.php:165
5096
- msgid "Empty Authorization Key."
 
 
 
5097
  msgstr ""
5098
 
5099
- #: lib/W3/Cdn/Mirror/Netdna.php:52 lib/W3/Cdn/Mirror/Netdna.php:171
5100
- msgid "Malformed Authorization Key."
5101
  msgstr ""
5102
 
5103
- #: lib/W3/Cdn/Mirror/Netdna.php:85 lib/W3/Cdn/Mirror/Netdna.php:152
5104
- #: lib/W3/Cdn/Mirror/Netdna.php:205 lib/W3/Cdn/Mirror/Netdna.php:269
5105
- #, php-format
5106
- msgid "No zones match site: %s."
5107
  msgstr ""
5108
 
5109
- #: lib/W3/Cdn/Mirror/Netdna.php:87 lib/W3/Cdn/Mirror/Netdna.php:207
5110
- #, php-format
5111
- msgid "No zones match site: %s or %s."
5112
  msgstr ""
5113
 
5114
- #: lib/W3/Cdn/Mirror/Netdna.php:118
5115
  #, php-format
5116
  msgid ""
5117
- "Failed with error code %s Please check your alias, consumer key, and private "
5118
- "key."
5119
  msgstr ""
5120
 
5121
- #: lib/W3/Cdn/Mirror/Netdna.php:120 lib/W3/Cdn/Mirror/Netdna.php:138
5122
- #: lib/W3/Cdn/Mirror/Netdna.php:239 lib/W3/Cdn/Mirror/Netdna.php:255
5123
- msgid "Failed with error code "
5124
  msgstr ""
5125
 
5126
- #: lib/W3/Cdn/Mirror/Netdna.php:129 lib/W3/Cdn/Mirror/Netdna.php:248
5127
- #, php-format
5128
- msgid "No registered CNAMEs match %s."
5129
  msgstr ""
5130
 
5131
- #: lib/W3/Cdn/Mirror/Netdna.php:136 lib/W3/Cdn/Mirror/Netdna.php:237
5132
- #: lib/W3/Cdn/Mirror/Netdna.php:253
5133
- #, php-format
5134
  msgid ""
5135
- "Failed with error code %s. Please check your alias, consumer key, and "
5136
- "private key."
5137
  msgstr ""
5138
 
5139
- #: lib/W3/Cdn/Mirror/Netdna.php:146 lib/W3/Cdn/Mirror/Netdna.php:263
5140
- msgid "Failure to pull zone: "
 
 
5141
  msgstr ""
5142
 
5143
- #: lib/W3/Cdn/Mirror/Netdna.php:150 lib/W3/Cdn/Mirror/Netdna.php:267
5144
- msgid "No zones match custom domain."
 
 
5145
  msgstr ""
5146
 
5147
- #: lib/W3/CdnAdminEnvironment.php:152
5148
- msgid "CDN module: Required Database SQL"
 
 
5149
  msgstr ""
5150
 
5151
- #: lib/W3/Cli.php:32
5152
- msgid "Flushing the DB cache failed."
 
 
 
5153
  msgstr ""
5154
 
5155
- #: lib/W3/Cli.php:34
5156
- msgid "The DB cache is flushed successfully."
 
 
5157
  msgstr ""
5158
 
5159
- #: lib/W3/Cli.php:43
5160
- msgid "Flushing the minify cache failed."
 
 
5161
  msgstr ""
5162
 
5163
- #: lib/W3/Cli.php:45
5164
- msgid "The minify cache is flushed successfully."
 
 
 
5165
  msgstr ""
5166
 
5167
- #: lib/W3/Cli.php:54
5168
- msgid "Flushing the object cache failed."
5169
  msgstr ""
5170
 
5171
- #: lib/W3/Cli.php:56
5172
- msgid "The object cache is flushed successfully."
5173
  msgstr ""
5174
 
5175
- #: lib/W3/Cli.php:69 lib/W3/Cli.php:88
5176
- msgid "Flushing the page from cache failed."
5177
  msgstr ""
5178
 
5179
- #: lib/W3/Cli.php:71 lib/W3/Cli.php:90
5180
- msgid "The page is flushed from cache successfully."
5181
  msgstr ""
5182
 
5183
- #: lib/W3/Cli.php:73
5184
- msgid "This is not a valid post id."
5185
  msgstr ""
5186
 
5187
- #: lib/W3/Cli.php:92
5188
- msgid "There is no post with this permalink."
5189
  msgstr ""
5190
 
5191
- #: lib/W3/Cli.php:105
5192
- msgid "Flushing the page cache failed."
5193
  msgstr ""
5194
 
5195
- #: lib/W3/Cli.php:107
5196
- msgid "The page cache is flushed successfully."
5197
  msgstr ""
5198
 
5199
- #: lib/W3/Cli.php:124
5200
- #, php-format
5201
- msgid "updating the query string failed. with error %s"
 
5202
  msgstr ""
5203
 
5204
- #: lib/W3/Cli.php:127
5205
- msgid "The query string was updated successfully."
 
 
5206
  msgstr ""
5207
 
5208
- #: lib/W3/Cli.php:149
5209
- #, php-format
5210
- msgid "Files did not successfully purge with error %s"
5211
  msgstr ""
5212
 
5213
- #: lib/W3/Cli.php:151
5214
- msgid "Files purged successfully."
 
 
5215
  msgstr ""
5216
 
5217
- #: lib/W3/Cli.php:163
5218
- msgid " is not supported. Change to SNS or local to reload APC files"
 
 
5219
  msgstr ""
5220
 
5221
- #: lib/W3/Cli.php:180 lib/W3/Cli.php:187
5222
- #, php-format
5223
- msgid "Files did not successfully reload with error %s"
5224
  msgstr ""
5225
 
5226
- #: lib/W3/Cli.php:182
5227
- msgid "Files did not successfully reload with message: "
5228
  msgstr ""
5229
 
5230
- #: lib/W3/Cli.php:189
5231
- msgid "Files reloaded successfully."
5232
  msgstr ""
5233
 
5234
- #: lib/W3/Cli.php:201
5235
- msgid " is not supported. Change to SNS or local to delete APC files"
5236
  msgstr ""
5237
 
5238
- #: lib/W3/Cli.php:219 lib/W3/Cli.php:226
5239
- #, php-format
5240
- msgid "Files did not successfully delete with error %s"
 
5241
  msgstr ""
5242
 
5243
- #: lib/W3/Cli.php:221
5244
- msgid "Files did not successfully delete with message: "
 
5245
  msgstr ""
5246
 
5247
- #: lib/W3/Cli.php:228
5248
- msgid "Files deleted successfully."
5249
  msgstr ""
5250
 
5251
- #: lib/W3/Cli.php:241
5252
- #, php-format
5253
- msgid "PageCache Garbage cleanup did not start with error %s"
5254
  msgstr ""
5255
 
5256
- #: lib/W3/Cli.php:243
5257
- msgid "PageCache Garbage cleanup triggered successfully."
5258
  msgstr ""
5259
 
5260
- #: lib/W3/DbCache.php:611
5261
- msgid "Request-wide"
5262
  msgstr ""
5263
 
5264
- #: lib/W3/DbCache.php:624
5265
- msgid "Database caching is disabled"
 
 
5266
  msgstr ""
5267
 
5268
- #: lib/W3/DbCache.php:626
5269
- msgid "DONOTCACHEDB constant is defined"
 
 
 
5270
  msgstr ""
5271
 
5272
- #: lib/W3/DbCache.php:628
5273
- msgid "Doing AJAX"
 
 
5274
  msgstr ""
5275
 
5276
- #: lib/W3/DbCache.php:630
5277
- msgid "Request URI is rejected"
5278
  msgstr ""
5279
 
5280
- #: lib/W3/DbCache.php:632
5281
- msgid "Cookie is rejected"
5282
  msgstr ""
5283
 
5284
- #: lib/W3/DbCache.php:634
5285
- msgid "Doing cron"
5286
  msgstr ""
5287
 
5288
- #: lib/W3/DbCache.php:636
5289
- msgid "Application request"
 
 
 
5290
  msgstr ""
5291
 
5292
- #: lib/W3/DbCache.php:638
5293
- msgid "XMLRPC request"
 
5294
  msgstr ""
5295
 
5296
- #: lib/W3/DbCache.php:640
5297
- msgid "wp-admin"
5298
  msgstr ""
5299
 
5300
- #: lib/W3/DbCache.php:642
5301
- msgid "Short init"
 
 
5302
  msgstr ""
5303
 
5304
- #: lib/W3/DbCache.php:644
5305
- msgid "Query is rejected"
5306
  msgstr ""
5307
 
5308
- #: lib/W3/DbCache.php:646
5309
- msgid "User is logged in"
5310
  msgstr ""
5311
 
5312
- #: lib/W3/DbCacheAdminEnvironment.php:113
5313
- #, php-format
5314
- msgid ""
5315
- "The Database add-in file db.php is not a W3 Total Cache drop-in.\n"
5316
- " Remove it or disable Database Caching. %s"
5317
  msgstr ""
5318
 
5319
- #: lib/W3/DbCacheAdminEnvironment.php:115
5320
- msgid "Remove it for me"
5321
  msgstr ""
5322
 
5323
- #: lib/W3/Enterprise/DbCluster.php:586
5324
- #, php-format
5325
- msgid "<strong>ERROR</strong>: WordPress %s requires MySQL 4.1.2 or higher"
5326
  msgstr ""
5327
 
5328
- #: lib/W3/GeneralActions.php:31 lib/W3/GeneralActions.php:47
5329
- #: lib/W3/GeneralActions.php:59
5330
- msgid "Purge from cache"
 
5331
  msgstr ""
5332
 
5333
- #: lib/W3/GenericAdminEnvironment.php:101
5334
- #, php-format
5335
  msgid ""
5336
- "The Page Cache add-in file advanced-cache.php is not a W3 Total Cache drop-"
5337
- "in.\n"
5338
- " It should be removed. %s"
5339
  msgstr ""
5340
 
5341
- #: lib/W3/GenericAdminEnvironment.php:103
5342
- #: lib/W3/ObjectCacheAdminEnvironment.php:115
5343
- msgid "Yes, remove it for me"
 
5344
  msgstr ""
5345
 
5346
- #: lib/W3/Licensing.php:86
5347
- #, php-format
5348
- msgid "The W3 Total Cache license key has expired. Please renew it: %s"
5349
  msgstr ""
5350
 
5351
- #: lib/W3/Licensing.php:87
5352
- msgid "Renew"
5353
  msgstr ""
5354
 
5355
- #: lib/W3/Licensing.php:90
5356
- msgid "The W3 Total Cache license key you entered is not valid."
5357
  msgstr ""
5358
 
5359
- #: lib/W3/Licensing.php:92
5360
- msgid "Please enter it again."
 
 
 
5361
  msgstr ""
5362
 
5363
- #: lib/W3/Licensing.php:95
5364
- msgid "The W3 Total Cache license key is not active."
5365
  msgstr ""
5366
 
5367
- #: lib/W3/Licensing.php:98
5368
- msgid "The W3 Total Cache license key is not active for this site."
 
 
 
 
5369
  msgstr ""
5370
 
5371
- #: lib/W3/Licensing.php:107
5372
- msgid "The W3 Total Cache license key can't be verified."
 
 
 
 
 
 
5373
  msgstr ""
5374
 
5375
- #: lib/W3/Licensing.php:117
5376
- msgid "check again"
5377
  msgstr ""
5378
 
5379
- #: lib/W3/Licensing.php:123
5380
- msgid "The W3 Total Cache license key is deactivated for this site."
5381
- msgstr ""
5382
-
5383
- #: lib/W3/Licensing.php:127
5384
- msgid "The W3 Total Cache license key is activated for this site."
5385
  msgstr ""
5386
 
5387
- #: lib/W3/Menus.php:43 lib/W3/Menus.php:44
5388
- msgid "General Settings"
 
5389
  msgstr ""
5390
 
5391
- #: lib/W3/Menus.php:82 lib/W3/Menus.php:83
5392
- msgid "User Agent Groups"
5393
  msgstr ""
5394
 
5395
- #: lib/W3/Menus.php:87 lib/W3/Menus.php:88
5396
- msgid "Referrer Groups"
5397
  msgstr ""
5398
 
5399
- #: lib/W3/Menus.php:92
5400
- msgid "Content Delivery Network"
5401
  msgstr ""
5402
 
5403
- #: lib/W3/Menus.php:104 lib/W3/Menus.php:105 lib/W3/Plugin/TotalCache.php:389
5404
- msgid "FAQ"
5405
  msgstr ""
5406
 
5407
- #: lib/W3/Menus.php:109
5408
- msgid "Support"
5409
  msgstr ""
5410
 
5411
- #: lib/W3/Menus.php:110
5412
- msgid "<span style=\"color: red;\">Support</span>"
5413
  msgstr ""
5414
 
5415
- #: lib/W3/Menus.php:114 lib/W3/Menus.php:115
5416
- msgid "Install"
5417
  msgstr ""
5418
 
5419
- #: lib/W3/Menus.php:119 lib/W3/Menus.php:120
5420
- msgid "About"
5421
  msgstr ""
5422
 
5423
- #: lib/W3/Menus.php:130 lib/W3/Plugin/TotalCache.php:235
5424
- msgid "Performance"
5425
  msgstr ""
5426
 
5427
- #: lib/W3/NewRelicService.php:45
5428
- msgid "Supported"
5429
  msgstr ""
5430
 
5431
- #: lib/W3/NewRelicService.php:51
5432
- msgid "PHP version"
5433
  msgstr ""
5434
 
5435
- #: lib/W3/NewRelicService.php:52
5436
- #, php-format
5437
- msgid "Not supported: %s. Supported versions are %s."
5438
  msgstr ""
5439
 
5440
- #: lib/W3/NewRelicService.php:99
5441
- msgid "Operating System"
5442
  msgstr ""
5443
 
5444
- #: lib/W3/NewRelicService.php:100 lib/W3/NewRelicService.php:136
5445
- #, php-format
5446
- msgid "Not Supported. (%s %s See %s page.)"
5447
  msgstr ""
5448
 
5449
- #: lib/W3/NewRelicService.php:135
5450
- msgid "Web Server"
5451
  msgstr ""
5452
 
5453
- #: lib/W3/NewRelicService.php:152
5454
- msgid "PHP module is not enabled."
 
 
5455
  msgstr ""
5456
 
5457
- #: lib/W3/NewRelicService.php:154
5458
- msgid "PHP agent is not enabled."
5459
  msgstr ""
5460
 
5461
- #: lib/W3/NewRelicService.php:156
5462
- msgid "API Key is not configured."
5463
  msgstr ""
5464
 
5465
- #: lib/W3/NewRelicService.php:158
5466
- msgid "Account ID is not configured."
5467
  msgstr ""
5468
 
5469
- #: lib/W3/NewRelicService.php:160
5470
- msgid "Application ID is not configured. Enter/Select application name."
 
 
5471
  msgstr ""
5472
 
5473
- #: lib/W3/NewRelicService.php:163
5474
- msgid "License key could not be detected."
5475
  msgstr ""
5476
 
5477
- #: lib/W3/NewRelicService.php:168
5478
- #, php-format
5479
- msgid ""
5480
- "Configured license key does not match license key(s) in account: <br />%s "
5481
- "<br />%s"
5482
  msgstr ""
5483
 
5484
- #: lib/W3/NewRelicService.php:173
5485
- msgid "API Key is invalid."
5486
  msgstr ""
5487
 
5488
- #: lib/W3/ObjectCache.php:683
5489
- msgid "Object caching is disabled"
5490
  msgstr ""
5491
 
5492
- #: lib/W3/ObjectCache.php:685
5493
- msgid "DONOTCACHEOBJECT constant is defined"
5494
  msgstr ""
5495
 
5496
- #: lib/W3/ObjectCacheAdminEnvironment.php:113
5497
- #, php-format
5498
- msgid ""
5499
- "The Object Cache add-in file object-cache.php is not a W3 Total Cache drop-"
5500
- "in.\n"
5501
- " Remove it or disable Object Caching. %s"
5502
  msgstr ""
5503
 
5504
- #: lib/W3/PgCacheAdminEnvironment.php:477
5505
- #, php-format
5506
- msgid ""
5507
- "Edit file <strong>%s</strong> and remove all lines between and including "
5508
- "<strong>\n"
5509
- " %s</strong> and <strong>%s</strong> markers."
5510
  msgstr ""
5511
 
5512
- #: lib/W3/PgCacheAdminEnvironment.php:486
5513
- #, php-format
5514
- msgid ""
5515
- "Edit file <strong>%s</strong> and remove all lines between and including\n"
5516
- " <strong>%s</strong> and <strong>%s</strong> "
5517
- "markers."
5518
  msgstr ""
5519
 
5520
- #: lib/W3/PgCacheAdminEnvironment.php:497
5521
- #, php-format
5522
  msgid ""
5523
- "Edit file <strong>%s</strong> and replace all lines between and including\n"
5524
- " <strong>%s</strong> and <strong>%s</"
5525
- "strong> markers with:"
5526
  msgstr ""
5527
 
5528
- #: lib/W3/PgCacheAdminEnvironment.php:506
5529
- #, php-format
5530
- msgid ""
5531
- "Edit file <strong>%s</strong> and add the following rules above the "
5532
- "WordPress\n"
5533
- " directives:"
5534
  msgstr ""
5535
 
5536
- #: lib/W3/Plugin/Cdn.php:230
5537
- msgid "Upgrading database"
5538
  msgstr ""
5539
 
5540
- #: lib/W3/Plugin/CdnAdmin.php:705
5541
- msgid "Purge from CDN"
5542
  msgstr ""
5543
 
5544
- #: lib/W3/Plugin/DefaultSettings.php:116 lib/W3/Plugin/DefaultSettings.php:144
5545
- msgid "Apply all changes"
5546
  msgstr ""
5547
 
5548
- #: lib/W3/Plugin/DefaultSettings.php:130
5549
- msgid "Append"
 
5550
  msgstr ""
5551
 
5552
- #: lib/W3/Plugin/DefaultSettings.php:130
5553
- msgid "Replace"
5554
  msgstr ""
5555
 
5556
- #: lib/W3/Plugin/DefaultSettings.php:130
5557
- msgid "Remove"
5558
  msgstr ""
5559
 
5560
- #: lib/W3/Plugin/ExtensionsAdmin.php:69 lib/W3/Plugin/ExtensionsAdmin.php:70
5561
- msgid "Extensions"
5562
  msgstr ""
5563
 
5564
- #: lib/W3/Plugin/MinifyAdmin.php:113
5565
- #, php-format
5566
- msgid ""
5567
- "Minify Auto encountered an error. The filename length value is most likely "
5568
- "too high for\n"
5569
- " your host. It is currently %d. The plugin is "
5570
- "trying to solve the issue for you:\n"
5571
- " <span id=\"minify_auto_test_loading"
5572
- "\">(solving ...)</span>."
5573
  msgstr ""
5574
 
5575
- #: lib/W3/Plugin/NewRelic.php:71
5576
- msgid "DOING_AJAX constant is defined"
5577
  msgstr ""
5578
 
5579
- #: lib/W3/Plugin/NewRelic.php:81
5580
- msgid "DONOTAUTORUM constant is defined"
5581
  msgstr ""
5582
 
5583
- #: lib/W3/Plugin/NewRelic.php:90
5584
- msgid "logged in role is rejected"
5585
  msgstr ""
5586
 
5587
- #: lib/W3/Plugin/NewRelicAdmin.php:56
5588
- msgid ""
5589
- "New Relic is not running correctly. The plugin has detected the following "
5590
- "issues:"
5591
  msgstr ""
5592
 
5593
- #: lib/W3/Plugin/NewRelicAdmin.php:63
5594
- #, php-format
5595
- msgid "Please review the <a href=\"%s\">settings</a>."
5596
  msgstr ""
5597
 
5598
- #: lib/W3/Plugin/NotificationsAdmin.php:94
5599
- #, php-format
5600
- msgid ""
5601
- "<p>You can now keep W3 Total Cache up-to-date without having to worry about "
5602
- "new features breaking your website. There will be more releases with bug "
5603
- "fixes, security fixes and settings updates. </p>\n"
5604
- " <p>Also, you can now try out our new features as soon as they're "
5605
- "ready. %s to enable \"edge mode\" and unlock pre-release features. %s</p>"
5606
  msgstr ""
5607
 
5608
- #: lib/W3/Plugin/NotificationsAdmin.php:96
5609
- msgid "Click Here"
5610
  msgstr ""
5611
 
5612
- #: lib/W3/Plugin/TotalCache.php:243
5613
- msgid "Purge From Cache"
5614
  msgstr ""
5615
 
5616
- #: lib/W3/Plugin/TotalCache.php:252
5617
- msgid "Empty Disc Cache(s)"
5618
  msgstr ""
5619
 
5620
- #: lib/W3/Plugin/TotalCache.php:261
5621
- msgid "Empty Opcode Cache"
5622
  msgstr ""
5623
 
5624
- #: lib/W3/Plugin/TotalCache.php:270
5625
- msgid "Empty Memcached Cache(s)"
5626
  msgstr ""
5627
 
5628
- #: lib/W3/Plugin/TotalCache.php:279
5629
- msgid "Update Media Query String"
5630
  msgstr ""
5631
 
5632
- #: lib/W3/Plugin/TotalCache.php:288
5633
- msgid "Empty All Caches"
 
 
 
 
 
5634
  msgstr ""
5635
 
5636
- #: lib/W3/Plugin/TotalCache.php:295
5637
- msgid "Empty Modules"
5638
  msgstr ""
5639
 
5640
- #: lib/W3/Plugin/TotalCache.php:303
5641
- msgid "Empty Page Cache"
 
5642
  msgstr ""
5643
 
5644
- #: lib/W3/Plugin/TotalCache.php:312
5645
- msgid "Empty Minify Cache"
5646
  msgstr ""
5647
 
5648
- #: lib/W3/Plugin/TotalCache.php:321
5649
- msgid "Empty Database Cache"
 
 
 
 
5650
  msgstr ""
5651
 
5652
- #: lib/W3/Plugin/TotalCache.php:330
5653
- msgid "Empty Object Cache"
5654
  msgstr ""
5655
 
5656
- #: lib/W3/Plugin/TotalCache.php:340
5657
- msgid "Empty Fragment Cache"
 
 
5658
  msgstr ""
5659
 
5660
- #: lib/W3/Plugin/TotalCache.php:350
5661
- msgid "Purge Varnish Cache"
 
 
 
5662
  msgstr ""
5663
 
5664
- #: lib/W3/Plugin/TotalCache.php:360
5665
- msgid "Purge CDN"
 
 
5666
  msgstr ""
5667
 
5668
- #: lib/W3/Plugin/TotalCache.php:370
5669
- msgid "Purge CDN Completely"
 
 
5670
  msgstr ""
5671
 
5672
- #: lib/W3/Plugin/TotalCache.php:378
5673
- msgid "Unsuccessful file transfers"
5674
  msgstr ""
5675
 
5676
- #: lib/W3/Plugin/TotalCache.php:395
5677
- msgid "<span style=\"color: red; background: none;\">Support</span>"
 
5678
  msgstr ""
5679
 
5680
- #: lib/W3/Plugin/TotalCache.php:536
5681
- #, php-format
5682
- msgid "Minified using %s%s"
5683
  msgstr ""
5684
 
5685
- #: lib/W3/Plugin/TotalCache.php:542
5686
- #, php-format
5687
- msgid "Page Caching using %s%s"
5688
  msgstr ""
5689
 
5690
- #: lib/W3/Plugin/TotalCache.php:554
5691
  #, php-format
5692
- msgid "Database Caching %d/%d queries in %.3f seconds using %s%s"
 
 
 
5693
  msgstr ""
5694
 
5695
- #: lib/W3/Plugin/TotalCache.php:559
5696
- #, php-format
5697
- msgid "Database Caching using %s%s"
 
 
5698
  msgstr ""
5699
 
5700
- #: lib/W3/Plugin/TotalCache.php:577
5701
- #, php-format
5702
- msgid "Object Caching %d/%d objects using %s%s"
5703
  msgstr ""
5704
 
5705
- #: lib/W3/Plugin/TotalCache.php:587
5706
- #, php-format
5707
- msgid "Fragment Caching %d/%d fragments using %s%s"
5708
  msgstr ""
5709
 
5710
- #: lib/W3/Plugin/TotalCache.php:599
5711
- #, php-format
5712
- msgid "Content Delivery Network via %s%s"
5713
  msgstr ""
5714
 
5715
- #: lib/W3/Plugin/TotalCache.php:606
5716
- #, php-format
5717
- msgid "Application Monitoring using New Relic%s"
5718
  msgstr ""
5719
 
5720
- #: lib/W3/Plugin/TotalCacheAdmin.php:176
5721
- msgid "SSH / FTP host"
 
5722
  msgstr ""
5723
 
5724
- #: lib/W3/Plugin/TotalCacheAdmin.php:177
5725
- msgid "SSH / FTP login"
5726
  msgstr ""
5727
 
5728
- #: lib/W3/Plugin/TotalCacheAdmin.php:178
5729
- msgid "SSH / FTP password"
5730
  msgstr ""
5731
 
5732
- #: lib/W3/Plugin/TotalCacheAdmin.php:431
5733
- msgid "Empty Caches"
5734
  msgstr ""
5735
 
5736
- #: lib/W3/Plugin/TotalCacheAdmin.php:483
5737
- #, php-format
5738
  msgid ""
5739
- "Fancy permalinks are disabled. Please %s it first, then re-attempt to "
5740
- "enabling enhanced disk mode."
5741
  msgstr ""
5742
 
5743
- #: lib/W3/Plugin/TotalCacheAdmin.php:484
5744
- #, php-format
5745
- msgid ""
5746
- "Fancy permalinks are disabled. Please %s it first, then re-attempt to "
5747
- "enabling the 'Do not process 404 errors for static objects with WordPress'."
5748
  msgstr ""
5749
 
5750
- #: lib/W3/Plugin/TotalCacheAdmin.php:485
5751
- msgid "Please select request type."
5752
  msgstr ""
5753
 
5754
- #: lib/W3/Plugin/TotalCacheAdmin.php:486
5755
  msgid ""
5756
- "Please enter the address of the site in the site <acronym title=\"Uniform "
5757
- "Resource Locator\">URL</acronym> field."
5758
  msgstr ""
5759
 
5760
- #: lib/W3/Plugin/TotalCacheAdmin.php:487
5761
- msgid "Please enter your name in the Name field"
 
 
5762
  msgstr ""
5763
 
5764
- #: lib/W3/Plugin/TotalCacheAdmin.php:488
5765
- msgid "Please enter valid email address in the E-Mail field."
 
 
 
5766
  msgstr ""
5767
 
5768
- #: lib/W3/Plugin/TotalCacheAdmin.php:489
5769
- msgid "Please enter your phone in the phone field."
5770
  msgstr ""
5771
 
5772
- #: lib/W3/Plugin/TotalCacheAdmin.php:490
5773
- msgid "Please enter subject in the subject field."
 
 
 
5774
  msgstr ""
5775
 
5776
- #: lib/W3/Plugin/TotalCacheAdmin.php:491
5777
- msgid "Please describe the issue in the issue description field."
5778
  msgstr ""
5779
 
5780
- #: lib/W3/Plugin/TotalCacheAdmin.php:492
5781
  msgid ""
5782
- "Please enter an administrator login. Create a temporary one just for this "
5783
- "support case if needed."
 
5784
  msgstr ""
5785
 
5786
- #: lib/W3/Plugin/TotalCacheAdmin.php:493
5787
- msgid "Please enter WP Admin password, be sure it's spelled correctly."
5788
  msgstr ""
5789
 
5790
- #: lib/W3/Plugin/TotalCacheAdmin.php:494
5791
  msgid ""
5792
- "Please enter <acronym title=\"Secure Shell\">SSH</acronym> or <acronym title="
5793
- "\"File Transfer Protocol\">FTP</acronym> host for the site."
 
5794
  msgstr ""
5795
 
5796
- #: lib/W3/Plugin/TotalCacheAdmin.php:495
5797
- msgid ""
5798
- "Please enter <acronym title=\"Secure Shell\">SSH</acronym> or <acronym title="
5799
- "\"File Transfer Protocol\">FTP</acronym> login for the server. Create a "
5800
- "temporary one just for this support case if needed."
5801
  msgstr ""
5802
 
5803
- #: lib/W3/Plugin/TotalCacheAdmin.php:496
5804
  msgid ""
5805
- "Please enter <acronym title=\"Secure Shell\">SSH</acronym> or <acronym title="
5806
- "\"File Transfer Protocol\">FTP</acronym> password for the <acronym title="
5807
- "\"File Transfer Protocol\">FTP</acronym> account."
5808
  msgstr ""
5809
 
5810
- #: lib/W3/Plugin/TotalCacheAdmin.php:497
5811
- msgid "Unable to send the support request."
5812
  msgstr ""
5813
 
5814
- #: lib/W3/Plugin/TotalCacheAdmin.php:498
5815
- msgid "Please select config file."
 
 
5816
  msgstr ""
5817
 
5818
- #: lib/W3/Plugin/TotalCacheAdmin.php:499
5819
- msgid "Unable to upload config file."
 
 
5820
  msgstr ""
5821
 
5822
- #: lib/W3/Plugin/TotalCacheAdmin.php:500
5823
- msgid "Configuration file could not be imported."
5824
  msgstr ""
5825
 
5826
- #: lib/W3/Plugin/TotalCacheAdmin.php:501
5827
- #, php-format
5828
  msgid ""
5829
- "Default settings could not be restored. Please run <strong>chmod 777 %s</"
5830
- "strong> to make the configuration file write-able, then try again."
5831
- msgstr ""
5832
-
5833
- #: lib/W3/Plugin/TotalCacheAdmin.php:502
5834
- msgid "Unable to purge attachment."
5835
  msgstr ""
5836
 
5837
- #: lib/W3/Plugin/TotalCacheAdmin.php:503
5838
- msgid "Unable to purge post."
 
 
5839
  msgstr ""
5840
 
5841
- #: lib/W3/Plugin/TotalCacheAdmin.php:504
5842
- msgid "Unable to purge page."
5843
  msgstr ""
5844
 
5845
- #: lib/W3/Plugin/TotalCacheAdmin.php:505
5846
- #, php-format
5847
- msgid ""
5848
- "<strong>%swp-config.php</strong> could not be written, please edit config "
5849
- "and add:<br /><strong style=\"color:#f00;\">define('COOKIE_DOMAIN', '%s');</"
5850
- "strong> before <strong style=\"color:#f00;\">require_once(ABSPATH . 'wp-"
5851
- "settings.php');</strong>."
5852
  msgstr ""
5853
 
5854
- #: lib/W3/Plugin/TotalCacheAdmin.php:506
5855
- #, php-format
5856
  msgid ""
5857
- "<strong>%swp-config.php</strong> could not be written, please edit config "
5858
- "and add:<br /><strong style=\"color:#f00;\">define('COOKIE_DOMAIN', false);</"
5859
- "strong> before <strong style=\"color:#f00;\">require_once(ABSPATH . 'wp-"
5860
- "settings.php');</strong>."
5861
  msgstr ""
5862
 
5863
- #: lib/W3/Plugin/TotalCacheAdmin.php:507
5864
- msgid "Pull Zone could not be automatically created."
5865
  msgstr ""
5866
 
5867
- #: lib/W3/Plugin/TotalCacheAdmin.php:511
5868
- msgid "Plugin configuration successfully updated."
5869
  msgstr ""
5870
 
5871
- #: lib/W3/Plugin/TotalCacheAdmin.php:512
5872
- msgid "All caches successfully emptied."
5873
  msgstr ""
5874
 
5875
- #: lib/W3/Plugin/TotalCacheAdmin.php:513
5876
- msgid "Memcached cache(s) successfully emptied."
5877
  msgstr ""
5878
 
5879
- #: lib/W3/Plugin/TotalCacheAdmin.php:514
5880
- msgid "Opcode cache(s) successfully emptied."
 
 
5881
  msgstr ""
5882
 
5883
- #: lib/W3/Plugin/TotalCacheAdmin.php:515
5884
- msgid "APC system cache successfully emptied"
 
 
5885
  msgstr ""
5886
 
5887
- #: lib/W3/Plugin/TotalCacheAdmin.php:516
5888
- msgid "Disk cache(s) successfully emptied."
 
 
5889
  msgstr ""
5890
 
5891
- #: lib/W3/Plugin/TotalCacheAdmin.php:517
5892
- msgid "Page cache successfully emptied."
 
 
5893
  msgstr ""
5894
 
5895
- #: lib/W3/Plugin/TotalCacheAdmin.php:518
5896
- msgid "Database cache successfully emptied."
 
 
5897
  msgstr ""
5898
 
5899
- #: lib/W3/Plugin/TotalCacheAdmin.php:519
5900
- msgid "Object cache successfully emptied."
 
 
5901
  msgstr ""
5902
 
5903
- #: lib/W3/Plugin/TotalCacheAdmin.php:520
5904
- msgid "Fragment cache successfully emptied."
 
 
5905
  msgstr ""
5906
 
5907
- #: lib/W3/Plugin/TotalCacheAdmin.php:521
5908
- msgid "Minify cache successfully emptied."
 
 
 
 
5909
  msgstr ""
5910
 
5911
- #: lib/W3/Plugin/TotalCacheAdmin.php:522
5912
- msgid "Media Query string has been successfully updated."
 
 
 
5913
  msgstr ""
5914
 
5915
- #: lib/W3/Plugin/TotalCacheAdmin.php:523
5916
- msgid "Varnish servers successfully purged."
 
 
 
 
 
5917
  msgstr ""
5918
 
5919
- #: lib/W3/Plugin/TotalCacheAdmin.php:524
5920
- msgid "CDN was successfully purged."
5921
  msgstr ""
5922
 
5923
- #: lib/W3/Plugin/TotalCacheAdmin.php:525
5924
- msgid "The support request has been successfully sent."
5925
  msgstr ""
5926
 
5927
- #: lib/W3/Plugin/TotalCacheAdmin.php:526
5928
- msgid "Settings successfully imported."
 
 
 
5929
  msgstr ""
5930
 
5931
- #: lib/W3/Plugin/TotalCacheAdmin.php:527
5932
- msgid "Settings successfully restored."
5933
  msgstr ""
5934
 
5935
- #: lib/W3/Plugin/TotalCacheAdmin.php:528
5936
- msgid "Preview mode was successfully enabled"
 
 
5937
  msgstr ""
5938
 
5939
- #: lib/W3/Plugin/TotalCacheAdmin.php:529
5940
- msgid "Preview mode was successfully disabled"
 
 
 
 
 
 
 
 
 
 
 
 
5941
  msgstr ""
5942
 
5943
- #: lib/W3/Plugin/TotalCacheAdmin.php:530
 
5944
  msgid ""
5945
- "Preview settings successfully deployed. Preview mode remains enabled until "
5946
- "it's disabled. Continue testing new settings or disable preview mode if done."
 
 
5947
  msgstr ""
5948
 
5949
- #: lib/W3/Plugin/TotalCacheAdmin.php:531
5950
- msgid "Attachment successfully purged."
5951
  msgstr ""
5952
 
5953
- #: lib/W3/Plugin/TotalCacheAdmin.php:532
5954
- msgid "Post successfully purged."
5955
  msgstr ""
5956
 
5957
- #: lib/W3/Plugin/TotalCacheAdmin.php:533
5958
- msgid "Page successfully purged."
 
 
5959
  msgstr ""
5960
 
5961
- #: lib/W3/Plugin/TotalCacheAdmin.php:534
5962
- msgid "New relic settings have been updated."
5963
  msgstr ""
5964
 
5965
- #: lib/W3/Plugin/TotalCacheAdmin.php:535
5966
- msgid "The add-in has been removed."
5967
  msgstr ""
5968
 
5969
- #: lib/W3/Plugin/TotalCacheAdmin.php:536
5970
- msgid "Site has been subscribed."
5971
  msgstr ""
5972
 
5973
- #: lib/W3/Plugin/TotalCacheAdmin.php:537
5974
- msgid "Edge mode has been enabled."
5975
  msgstr ""
5976
 
5977
- #: lib/W3/Plugin/TotalCacheAdmin.php:538
5978
- msgid "Edge mode has been disabled."
5979
  msgstr ""
5980
 
5981
- #: lib/W3/Plugin/TotalCacheAdmin.php:539
5982
- msgid "Pull Zone was automatically created."
5983
  msgstr ""
5984
 
5985
- #: lib/W3/Plugin/TotalCacheAdmin.php:583
5986
- msgid "Required files and directories have been automatically created"
5987
  msgstr ""
5988
 
5989
- #: lib/W3/Plugin/TotalCacheAdmin.php:668
5990
- msgid "empty the page cache"
5991
  msgstr ""
5992
 
5993
- #: lib/W3/Plugin/TotalCacheAdmin.php:672
5994
- #, php-format
5995
- msgid "check the %s to maintain the desired user experience"
5996
  msgstr ""
5997
 
5998
- #: lib/W3/Plugin/TotalCacheAdmin.php:672
5999
- msgid "minify settings"
6000
  msgstr ""
6001
 
6002
- #: lib/W3/Plugin/TotalCacheAdmin.php:676
6003
- #, php-format
6004
- msgid "One or more plugins have been activated or deactivated, please %s. %s"
 
6005
  msgstr ""
6006
 
6007
- #: lib/W3/Plugin/TotalCacheAdmin.php:676 lib/W3/UI/PluginView.php:321
6008
- #: lib/W3/UI/PluginView.php:341
6009
- msgid " and "
6010
  msgstr ""
6011
 
6012
- #: lib/W3/Plugin/TotalCacheAdmin.php:691 lib/W3/Plugin/TotalCacheAdmin.php:709
6013
- #, php-format
6014
  msgid ""
6015
- "The setting change(s) made either invalidate the cached data or modify the "
6016
- "behavior of the site. %s now to provide a consistent user experience."
 
 
6017
  msgstr ""
6018
 
6019
- #: lib/W3/Plugin/TotalCacheAdmin.php:691
6020
- msgid "Empty the object cache"
 
 
6021
  msgstr ""
6022
 
6023
- #: lib/W3/Plugin/TotalCacheAdmin.php:702
6024
- #, php-format
6025
  msgid ""
6026
- "Recently an error occurred while creating the CSS / JS minify cache: %s. %s"
 
 
6027
  msgstr ""
6028
 
6029
- #: lib/W3/Plugin/TotalCacheAdmin.php:709
6030
- msgid "Empty the minify cache"
 
 
 
6031
  msgstr ""
6032
 
6033
- #: lib/W3/Plugin/TotalCacheAdmin.php:728
6034
- #, php-format
 
 
 
6035
  msgid ""
6036
- "The directory w3tc can be deleted. %s: %s. However, <em>do not remove the "
6037
- "w3tc-config directory</em>. %s"
 
6038
  msgstr ""
6039
 
6040
- #: lib/W3/Pro/FragmentCache.php:588
6041
- msgid "Fragment caching is disabled"
 
 
6042
  msgstr ""
6043
 
6044
- #: lib/W3/UI/CdnNotes.php:27
6045
- #, php-format
6046
  msgid ""
6047
- "The active theme has changed, please %s now to ensure proper operation. %s"
 
6048
  msgstr ""
6049
 
6050
- #: lib/W3/UI/CdnNotes.php:27
6051
- msgid "upload active theme files"
 
 
6052
  msgstr ""
6053
 
6054
- #: lib/W3/UI/CdnNotes.php:34
6055
- #, php-format
6056
- msgid "Upgraded WordPress? Please %s files now to ensure proper operation. %s"
 
 
 
6057
  msgstr ""
6058
 
6059
- #: lib/W3/UI/CdnNotes.php:61
6060
  #, php-format
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6061
  msgid ""
6062
- "Make sure to %s and upload the %s, files to the <acronym title=\"Content "
6063
- "Delivery Network\">CDN</acronym> to ensure proper operation. %s"
 
6064
  msgstr ""
6065
 
6066
- #: lib/W3/UI/CdnNotes.php:65
6067
- #, php-format
 
 
 
6068
  msgid ""
6069
- "Settings that affect Browser Cache settings for files hosted by the CDN have "
6070
- "been changed. To apply the new settings %s and %s. %s"
6071
  msgstr ""
6072
 
6073
- #: lib/W3/UI/CdnNotes.php:65
6074
- msgid "export the media library"
6075
  msgstr ""
6076
 
6077
- #: lib/W3/UI/CdnNotes.php:74
6078
- #, php-format
6079
  msgid ""
6080
- "Make sure to whitelist your servers IPs. Follow the instructions on %s. The "
6081
- "IP for this server is %s. %s"
 
6082
  msgstr ""
6083
 
6084
- #: lib/W3/UI/CdnNotes.php:86
6085
- #, php-format
 
 
 
6086
  msgid ""
6087
- "The %s has unresolved errors. Empty the queue to restore normal operation."
 
6088
  msgstr ""
6089
 
6090
- #: lib/W3/UI/CdnNotes.php:86
6091
- msgid "unsuccessful transfer queue"
 
 
6092
  msgstr ""
6093
 
6094
- #: lib/W3/UI/CdnNotes.php:113
6095
- #, php-format
6096
  msgid ""
6097
- "Encountered issue with CDN: %s. See %s for instructions of creating correct "
6098
- "table."
6099
  msgstr ""
6100
 
6101
- #: lib/W3/UI/CdnNotes.php:115
6102
- msgid "Install page"
6103
  msgstr ""
6104
 
6105
- #: lib/W3/UI/CdnNotes.php:118
6106
- #, php-format
6107
- msgid "Encountered issue with CDN: %s."
 
 
 
6108
  msgstr ""
6109
 
6110
- #: lib/W3/UI/NewRelicNotes.php:32
6111
- msgid "CDN"
6112
  msgstr ""
6113
 
6114
- #: lib/W3/UI/NewRelicNotes.php:34
6115
- msgid "Browser Cache and use compression"
 
 
 
6116
  msgstr ""
6117
 
6118
- #: lib/W3/UI/NewRelicNotes.php:36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6119
  #, php-format
6120
  msgid ""
6121
- "Application monitoring has detected that your page load time is\n"
6122
- " higher than 300ms. It "
6123
- "is recommended that you enable the following\n"
6124
- " features: %s %s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6125
  msgstr ""
6126
 
6127
- #: lib/W3/UI/PluginView.php:142
6128
- #, php-format
6129
- msgid "Page Cache: %s."
6130
  msgstr ""
6131
 
6132
- #: lib/W3/UI/PluginView.php:150
6133
- #, php-format
6134
- msgid "Minify: %s."
6135
  msgstr ""
6136
 
6137
- #: lib/W3/UI/PluginView.php:158
6138
- #, php-format
6139
- msgid "Database Cache: %s."
6140
  msgstr ""
6141
 
6142
- #: lib/W3/UI/PluginView.php:166
6143
- #, php-format
6144
- msgid "Object Cache: %s."
6145
  msgstr ""
6146
 
6147
- #: lib/W3/UI/PluginView.php:171
6148
  msgid ""
6149
- "The following memcached servers are not responding or not running:</p><ul>"
6150
  msgstr ""
6151
 
6152
- #: lib/W3/UI/PluginView.php:177
6153
  msgid ""
6154
- "</ul><p>This message will automatically disappear once the issue is resolved."
 
 
 
6155
  msgstr ""
6156
 
6157
- #: lib/W3/UI/PluginView.php:186
6158
- #, php-format
6159
- msgid ""
6160
- "The <strong>CURL PHP</strong> extension is not available. Please install it "
6161
- "to enable S3 or CloudFront functionality. %s"
6162
  msgstr ""
6163
 
6164
- #: lib/W3/UI/PluginView.php:193
6165
- #, php-format
6166
  msgid ""
6167
- "Unfortunately the PHP installation is incomplete, the <strong>zlib module is "
6168
- "missing</strong>. This is a core PHP module. Notify the server "
6169
- "administrator. %s"
6170
  msgstr ""
6171
 
6172
- #: lib/W3/UI/PluginView.php:200
6173
- #, php-format
6174
  msgid ""
6175
- "Either the PHP configuration, web server configuration or a script in the "
6176
- "WordPress installation has <strong>zlib.output_compression</strong> enabled."
6177
- "<br />Please locate and disable this setting to ensure proper HTTP "
6178
- "compression behavior. %s"
6179
  msgstr ""
6180
 
6181
- #: lib/W3/UI/PluginView.php:211
6182
- #, php-format
6183
  msgid ""
6184
- "<strong>%s</strong> is write-able. When finished installing the plugin,\n"
6185
- " change the permissions back to the "
6186
- "default: <strong>chmod 755 %s</strong>.\n"
6187
- " Permissions are currently %s. %s"
 
6188
  msgstr ""
6189
 
6190
- #: lib/W3/UI/PluginView.php:228
6191
- #, php-format
6192
- msgid ""
6193
- "<strong>%s</strong> permissions were changed during the setup process.\n"
6194
- " Permissions are currently %s.<br /"
6195
- ">To restore permissions run\n"
6196
- " <strong>chmod %s %s</strong>. %s"
6197
  msgstr ""
6198
 
6199
- #: lib/W3/UI/PluginView.php:243
6200
- #, php-format
6201
  msgid ""
6202
- "The required directives for fancy permalinks could not be detected, please "
6203
- "confirm they are available: <a href=\"http://codex.wordpress.org/"
6204
- "Using_Permalinks#Creating_and_editing_.28.htaccess.29\">Creating and "
6205
- "editing</a> %s"
6206
  msgstr ""
6207
 
6208
- #: lib/W3/UI/PluginView.php:263
6209
- #, php-format
6210
  msgid ""
6211
- "The uploads directory is not available. Default WordPress directories will "
6212
- "be created: <strong>%s</strong>."
 
6213
  msgstr ""
6214
 
6215
- #: lib/W3/UI/PluginView.php:267
6216
- #, php-format
6217
  msgid ""
6218
- "The uploads path found in the database (%s) is inconsistent with the actual "
6219
- "path. Please manually adjust the upload path either in miscellaneous "
6220
- "settings or if not using a custom path %s automatically to resolve the issue."
6221
  msgstr ""
6222
 
6223
- #: lib/W3/UI/PluginView.php:267
6224
- msgid "update the path"
6225
  msgstr ""
6226
 
6227
- #: lib/W3/UI/PluginView.php:278
6228
  msgid ""
6229
- "A configuration issue prevents <acronym title=\"Content Delivery Network"
6230
- "\">CDN</acronym> from working:\n"
6231
- " The <strong>\"Replace default "
6232
- "hostname with\"</strong>\n"
6233
- " field cannot be empty. Enter "
6234
- "<acronym\n"
6235
- " title=\"Content Delivery Network"
6236
- "\">CDN</acronym>\n"
6237
- " provider hostname <a href=\"?"
6238
- "page=w3tc_cdn#configuration\">here</a>.\n"
6239
- " <em>(This is the hostname used "
6240
- "in order to view objects\n"
6241
- " in a browser.)</em>"
6242
  msgstr ""
6243
 
6244
- #: lib/W3/UI/PluginView.php:288
6245
  msgid ""
6246
- "The <strong>\"Access key\", \"Secret key\" and \"Bucket\"</strong> fields "
6247
- "cannot be empty."
6248
  msgstr ""
6249
 
6250
- #: lib/W3/UI/PluginView.php:292
6251
  msgid ""
6252
- "The <strong>\"Access key\", \"Secret key\", \"Bucket\" and \"Replace default "
6253
- "hostname with\"</strong> fields cannot be empty."
 
6254
  msgstr ""
6255
 
6256
- #: lib/W3/UI/PluginView.php:296
6257
  msgid ""
6258
- "The <strong>\"Access key\", \"Secret key\" and \"Replace default hostname "
6259
- "with\"</strong> fields cannot be empty."
6260
  msgstr ""
6261
 
6262
- #: lib/W3/UI/PluginView.php:300
6263
  msgid ""
6264
- "The <strong>\"Username\", \"API key\", \"Container\" and \"Replace default "
6265
- "hostname with\"</strong> fields cannot be empty."
 
6266
  msgstr ""
6267
 
6268
- #: lib/W3/UI/PluginView.php:304
6269
- msgid ""
6270
- "The <strong>\"Account name\", \"Account key\" and \"Container\"</strong> "
6271
- "fields cannot be empty."
6272
  msgstr ""
6273
 
6274
- #: lib/W3/UI/PluginView.php:308 lib/W3/UI/PluginView.php:353
6275
- #: lib/W3/UI/PluginView.php:357 lib/W3/UI/PluginView.php:361
6276
  msgid ""
6277
- "The <strong>\"Replace default hostname with\"</strong> field cannot be empty."
6278
- msgstr ""
6279
-
6280
- #: lib/W3/UI/PluginView.php:317 lib/W3/UI/PluginView.php:337
6281
- msgid "Replace default hostname with"
6282
- msgstr ""
6283
-
6284
- #: lib/W3/UI/PluginView.php:320 lib/W3/UI/PluginView.php:340
6285
- #, php-format
6286
- msgid "The <strong>%s</strong> field(s) cannot be empty."
6287
- msgstr ""
6288
-
6289
- #: lib/W3/UI/PluginView.php:326 lib/W3/UI/PluginView.php:346
6290
- msgid "The <strong>\"Authorization key\"</strong> is not correct."
6291
  msgstr ""
6292
 
6293
- #: lib/W3/UI/PluginView.php:328 lib/W3/UI/PluginView.php:348
6294
- msgid "You need to select / create a pull zone."
6295
  msgstr ""
6296
 
6297
- #: lib/W3/UI/PluginView.php:370
6298
  msgid ""
6299
- "A configuration issue prevents <acronym title=\"Content Delivery Network"
6300
- "\">CDN</acronym> from working: "
6301
  msgstr ""
6302
 
6303
- #: lib/W3/UI/PluginView.php:370
6304
- msgid " <a href=\"?page=w3tc_cdn#configuration\">Specify it here</a>."
6305
  msgstr ""
6306
 
6307
- #: lib/W3/UI/PluginView.php:379
6308
- #, php-format
6309
  msgid ""
6310
- "Preview mode is active: Changed settings will not take effect until preview "
6311
- "mode is %s or %s."
6312
- msgstr ""
6313
-
6314
- #: lib/W3/UI/PluginView.php:379
6315
- msgid "deploy"
6316
  msgstr ""
6317
 
6318
- #: lib/W3/UI/PluginView.php:379
6319
- msgid "disable"
6320
  msgstr ""
6321
 
6322
- #: lib/W3/UI/PluginView.php:399
6323
- #, php-format
6324
  msgid ""
6325
- "File permissions are <strong>%s</strong>, however they should be\n"
6326
- "\t\t\t\t\t<strong>644</strong>."
6327
  msgstr ""
6328
 
6329
- #: lib/W3/UI/PluginView.php:404 lib/W3/UI/PluginView.php:412
6330
- #, php-format
6331
- msgid "File permissions are <strong>%s</strong>"
6332
  msgstr ""
6333
 
6334
- #: lib/W3/UI/PluginView.php:407
6335
- #, php-format
6336
  msgid ""
6337
- "File permissions are <strong>%s</strong>, however they should be\n"
6338
- "\t\t\t\t\t\t\t\t\t\t\t<strong>644</strong>."
 
6339
  msgstr ""
6340
 
6341
- #: lib/W3/UI/PluginView.php:416
6342
- #, php-format
6343
  msgid ""
6344
- "Directory permissions are <strong>%s</strong>, however they should be\n"
6345
- "\t\t\t\t\t\t\t\t\t\t\t<strong>755</strong>."
6346
- msgstr ""
6347
-
6348
- #: lib/W3/UI/PluginView.php:420 lib/W3/UI/PluginView.php:426
6349
- #, php-format
6350
- msgid "File: <strong>%s</strong> %s File owner: %s"
6351
  msgstr ""
6352
 
6353
- #: lib/W3/UI/PluginView.php:432
6354
- #, php-format
6355
- msgid "Directory: <strong>%s</strong> %s File owner: %s"
 
 
 
6356
  msgstr ""
6357
 
6358
- #: lib/W3/UI/PluginView.php:438
6359
- #, php-format
6360
- msgid "Owner of current file: %s"
6361
  msgstr ""
6362
 
6363
- #: lib/W3/UI/PluginView.php:442
6364
- msgid ""
6365
- "<li>The files and directories have different ownership, they should have the "
6366
- "same ownership.\n"
6367
- "\t\t\t\t\t\t\t\t </li>"
6368
  msgstr ""
6369
 
6370
- #: lib/W3/UI/PluginView.php:446
6371
  #, php-format
6372
  msgid ""
6373
- "<strong>W3 Total Cache Error:</strong> The plugin tried to edit, %s, but "
6374
- "failed.\n"
6375
- "\t\t\t\t\t\t\t\tFiles and directories cannot be modified. Please review "
6376
- "your\n"
6377
- "\t\t\t\t\t\t\t\t<a target=\"_blank\" href=\"http://codex.wordpress.org/"
6378
- "Changing_File_Permissions\">\n"
6379
- "\t\t\t\t\t\t\t\tfile permissions</a>. A common cause is %s and %s having "
6380
- "different ownership or permissions.\n"
6381
- "\t\t\t\t\t\t\t\t%s %s"
6382
  msgstr ""
6383
 
6384
- #: lib/W3/UI/PluginView.php:454
6385
- msgid "View technical information"
6386
  msgstr ""
6387
 
6388
- #: lib/W3/UI/PluginView.php:465
6389
- msgid ""
6390
- "Please enter FTP details <a href=\"#ftp_upload_form\">below</a> to remove "
6391
- "the disabled modules. "
6392
  msgstr ""
6393
 
6394
- #: lib/W3/UI/Settings/BrowserCache.php:8
6395
- msgid "Browser Cache:"
6396
  msgstr ""
6397
 
6398
- #: lib/W3/UI/Settings/BrowserCache.php:11
6399
- msgid "Prevent caching exception list:"
 
 
6400
  msgstr ""
6401
 
6402
- #: lib/W3/UI/Settings/BrowserCache.php:12
6403
- msgid "Do not process 404 errors for static objects with WordPress"
 
 
 
 
6404
  msgstr ""
6405
 
6406
- #: lib/W3/UI/Settings/BrowserCache.php:13
6407
- msgid "404 error exception list:"
6408
  msgstr ""
6409
 
6410
- #: lib/W3/UI/Settings/BrowserCache.php:16
6411
- #: lib/W3/UI/Settings/BrowserCache.php:26
6412
- #: lib/W3/UI/Settings/BrowserCache.php:34
6413
- msgid "Expires header lifetime:"
6414
  msgstr ""
6415
 
6416
- #: lib/W3/UI/Settings/BrowserCache.php:18
6417
- #: lib/W3/UI/Settings/BrowserCache.php:28
6418
- #: lib/W3/UI/Settings/BrowserCache.php:36
6419
- msgid "Cache Control policy:"
 
6420
  msgstr ""
6421
 
6422
- #: lib/W3/UI/Settings/BrowserCache.php:19
6423
- #: lib/W3/UI/Settings/BrowserCache.php:29
6424
- #: lib/W3/UI/Settings/BrowserCache.php:37
6425
- msgid "Set entity tag (ETag)"
 
 
6426
  msgstr ""
6427
 
6428
- #: lib/W3/UI/Settings/BrowserCache.php:23
6429
- #: lib/W3/UI/Settings/BrowserCache.php:41
6430
- msgid "Disable cookies for static files"
 
 
 
6431
  msgstr ""
6432
 
6433
- #: lib/W3/UI/Settings/BrowserCache.php:39
6434
  msgid ""
6435
- "Enable <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> (gzip) "
6436
- "compression</label>"
 
6437
  msgstr ""
6438
 
6439
- #: lib/W3/UI/Settings/CDN.php:8
6440
- msgid "<acronym title=\"Content Delivery Network\">CDN</acronym>:"
6441
  msgstr ""
6442
 
6443
- #: lib/W3/UI/Settings/CDN.php:9
6444
- msgid "<acronym title=\"Content Delivery Network\">CDN</acronym> Type:"
 
6445
  msgstr ""
6446
 
6447
- #: lib/W3/UI/Settings/CDN.php:13
6448
- msgid "Host attachments"
 
6449
  msgstr ""
6450
 
6451
- #: lib/W3/UI/Settings/CDN.php:14
6452
- msgid "Host wp-includes/ files"
 
6453
  msgstr ""
6454
 
6455
- #: lib/W3/UI/Settings/CDN.php:15
6456
- msgid "Host theme files"
 
6457
  msgstr ""
6458
 
6459
- #: lib/W3/UI/Settings/CDN.php:16
6460
- msgid ""
6461
- "Host minified <acronym title=\"Cascading Style Sheet\">CSS</acronym> and "
6462
- "<acronym title=\"JavaScript\">JS</acronym> files"
6463
  msgstr ""
6464
 
6465
- #: lib/W3/UI/Settings/CDN.php:17
6466
- msgid "Host custom files"
6467
  msgstr ""
6468
 
6469
- #: lib/W3/UI/Settings/CDN.php:18
6470
- msgid "Force over-writing of existing files"
 
6471
  msgstr ""
6472
 
6473
- #: lib/W3/UI/Settings/CDN.php:19
6474
- msgid "Import external media library attachments"
 
 
6475
  msgstr ""
6476
 
6477
- #: lib/W3/UI/Settings/CDN.php:20
6478
- msgid "Enable mirroring of pages"
6479
  msgstr ""
6480
 
6481
- #: lib/W3/UI/Settings/CDN.php:21
6482
- msgid "Add canonical header"
6483
  msgstr ""
6484
 
6485
- #: lib/W3/UI/Settings/CDN.php:22
6486
- msgid ""
6487
- "Disable <acronym title=\"Content Delivery Network\">CDN</acronym> on "
6488
- "<acronym title=\"Secure Sockets Layer\">SSL</acronym> pages"
6489
  msgstr ""
6490
 
6491
- #: lib/W3/UI/Settings/CDN.php:23
6492
- msgid ""
6493
- "Disable <acronym title=\"Content Delivery Network\">CDN</acronym> for the "
6494
- "following roles"
6495
  msgstr ""
6496
 
6497
- #: lib/W3/UI/Settings/CDN.php:24
6498
- msgid ""
6499
- "Disable <acronym title=\"Content Delivery Network\">CDN</acronym> on the "
6500
- "following pages:"
6501
  msgstr ""
6502
 
6503
- #: lib/W3/UI/Settings/CDN.php:25
6504
- msgid "Export changed files automatically"
6505
  msgstr ""
6506
 
6507
- #: lib/W3/UI/Settings/CDN.php:26
6508
- msgid "Auto upload interval:"
6509
  msgstr ""
6510
 
6511
- #: lib/W3/UI/Settings/CDN.php:27
6512
- msgid "Re-transfer cycle interval:"
6513
  msgstr ""
6514
 
6515
- #: lib/W3/UI/Settings/CDN.php:28
6516
- msgid "Re-transfer cycle limit:"
 
 
 
6517
  msgstr ""
6518
 
6519
- #: lib/W3/UI/Settings/CDN.php:29
6520
- msgid "wp-includes file types to upload:"
6521
  msgstr ""
6522
 
6523
- #: lib/W3/UI/Settings/CDN.php:30
6524
- msgid "Theme file types to upload:"
 
6525
  msgstr ""
6526
 
6527
- #: lib/W3/UI/Settings/CDN.php:31
6528
- msgid "File types to import:"
6529
  msgstr ""
6530
 
6531
- #: lib/W3/UI/Settings/CDN.php:32
6532
- msgid "Custom file list:"
 
 
6533
  msgstr ""
6534
 
6535
- #: lib/W3/UI/Settings/CDN.php:33 lib/W3/UI/Settings/Minify.php:43
6536
- #: lib/W3/UI/Settings/PageCache.php:52
6537
- msgid "Rejected user agents:"
6538
  msgstr ""
6539
 
6540
- #: lib/W3/UI/Settings/CDN.php:34
6541
- msgid "Rejected files:"
6542
  msgstr ""
6543
 
6544
- #: lib/W3/UI/Settings/DatabaseCache.php:8
6545
- msgid "Database Cache Method:"
6546
  msgstr ""
6547
 
6548
- #: lib/W3/UI/Settings/DatabaseCache.php:9
6549
- msgid "Database Cache:"
6550
  msgstr ""
6551
 
6552
- #: lib/W3/UI/Settings/DatabaseCache.php:13
6553
- msgid "Don't cache queries for logged in users"
6554
  msgstr ""
6555
 
6556
- #: lib/W3/UI/Settings/DatabaseCache.php:14
6557
- #: lib/W3/UI/Settings/FragmentCache.php:13 lib/W3/UI/Settings/Minify.php:37
6558
- #: lib/W3/UI/Settings/ObjectCache.php:13 lib/W3/UI/Settings/PageCache.php:44
6559
  msgid ""
6560
- "Memcached hostname:port / <acronym title=\"Internet Protocol\">IP</acronym>:"
6561
- "port:"
6562
- msgstr ""
6563
-
6564
- #: lib/W3/UI/Settings/DatabaseCache.php:15 lib/W3/UI/Settings/PageCache.php:48
6565
- msgid "Maximum lifetime of cache objects:"
6566
  msgstr ""
6567
 
6568
- #: lib/W3/UI/Settings/DatabaseCache.php:16
6569
- #: lib/W3/UI/Settings/FragmentCache.php:15 lib/W3/UI/Settings/Minify.php:39
6570
- #: lib/W3/UI/Settings/ObjectCache.php:15 lib/W3/UI/Settings/PageCache.php:49
6571
- msgid "Garbage collection interval:"
6572
  msgstr ""
6573
 
6574
- #: lib/W3/UI/Settings/DatabaseCache.php:17 lib/W3/UI/Settings/PageCache.php:54
6575
- msgid "Never cache the following pages:"
 
 
6576
  msgstr ""
6577
 
6578
- #: lib/W3/UI/Settings/DatabaseCache.php:18
6579
- msgid "Ignored query stems:"
 
 
6580
  msgstr ""
6581
 
6582
- #: lib/W3/UI/Settings/DatabaseCache.php:19
6583
- msgid "Reject query words:"
6584
  msgstr ""
6585
 
6586
- #: lib/W3/UI/Settings/FragmentCache.php:8
6587
- msgid "Fragment Cache Method:"
6588
  msgstr ""
6589
 
6590
- #: lib/W3/UI/Settings/FragmentCache.php:9
6591
- msgid "Fragment Cache:"
6592
  msgstr ""
6593
 
6594
- #: lib/W3/UI/Settings/FragmentCache.php:14
6595
- msgid "Default lifetime of cached fragments:"
6596
  msgstr ""
6597
 
6598
- #: lib/W3/UI/Settings/FragmentCache.php:16
6599
- msgid "Manual fragment groups:"
 
6600
  msgstr ""
6601
 
6602
- #: lib/W3/UI/Settings/General.php:8
6603
- msgid "Enable Google Page Speed dashboard widget"
 
6604
  msgstr ""
6605
 
6606
- #: lib/W3/UI/Settings/General.php:9
6607
- msgid ""
6608
- "Page Speed <acronym title=\"Application Programming Interface\">API</"
6609
- "acronym> Key:"
6610
  msgstr ""
6611
 
6612
- #: lib/W3/UI/Settings/General.php:10
6613
- msgid "Use single network configuration file for all sites."
 
6614
  msgstr ""
6615
 
6616
- #: lib/W3/UI/Settings/General.php:11
6617
- msgid "Hide performance settings"
6618
  msgstr ""
6619
 
6620
- #: lib/W3/UI/Settings/General.php:12
6621
- msgid "Nginx server configuration file path"
6622
  msgstr ""
6623
 
6624
- #: lib/W3/UI/Settings/General.php:13
6625
- msgid "Verify rewrite rules"
6626
  msgstr ""
6627
 
6628
- #: lib/W3/UI/Settings/General.php:14
6629
- msgid "License"
6630
  msgstr ""
6631
 
6632
- #: lib/W3/UI/Settings/Minify.php:8
6633
- msgid "Minify cache method:"
6634
  msgstr ""
6635
 
6636
- #: lib/W3/UI/Settings/Minify.php:9
6637
- msgid "Minify:"
6638
  msgstr ""
6639
 
6640
- #: lib/W3/UI/Settings/Minify.php:11
6641
- msgid "<acronym title=\"Hypertext Markup Language\">HTML</acronym> minifier:"
6642
  msgstr ""
6643
 
6644
- #: lib/W3/UI/Settings/Minify.php:12
6645
- msgid "<acronym title=\"JavaScript\">JS</acronym> minifier:"
 
6646
  msgstr ""
6647
 
6648
- #: lib/W3/UI/Settings/Minify.php:13
6649
- msgid "<acronym title=\"Cascading Style Sheets\">CSS</acronym> minifier:"
 
6650
  msgstr ""
6651
 
6652
- #: lib/W3/UI/Settings/Minify.php:14
6653
- msgid "Minify mode:"
6654
  msgstr ""
6655
 
6656
- #: lib/W3/UI/Settings/Minify.php:17
6657
- msgid ""
6658
- "Rewrite <acronym title=\"Uniform Resource Locator\">URL</acronym> structure"
6659
  msgstr ""
6660
 
6661
- #: lib/W3/UI/Settings/Minify.php:18
6662
- msgid "Disable minify for logged in users"
6663
  msgstr ""
6664
 
6665
- #: lib/W3/UI/Settings/Minify.php:19
6666
- msgid "Minify error notification:"
6667
  msgstr ""
6668
 
6669
- #: lib/W3/UI/Settings/Minify.php:21
6670
- msgid ""
6671
- "Inline <acronym title=\"Cascading Style Sheet\">CSS</acronym> minification"
6672
  msgstr ""
6673
 
6674
- #: lib/W3/UI/Settings/Minify.php:22
6675
- msgid "Inline <acronym title=\"JavaScript\">JS</acronym> minification"
6676
  msgstr ""
6677
 
6678
- #: lib/W3/UI/Settings/Minify.php:23
6679
- msgid "Don't minify feeds"
 
 
 
6680
  msgstr ""
6681
 
6682
- #: lib/W3/UI/Settings/Minify.php:24
6683
- msgid "Ignored comment stems:"
 
 
6684
  msgstr ""
6685
 
6686
- #: lib/W3/UI/Settings/Minify.php:26
6687
- msgid "Embed type:"
 
 
 
 
 
6688
  msgstr ""
6689
 
6690
- #: lib/W3/UI/Settings/Minify.php:27 lib/W3/UI/Settings/Minify.php:29
6691
- #: lib/W3/UI/Settings/Minify.php:31 lib/W3/UI/Settings/Minify.php:33
6692
- msgid "Combine only"
 
6693
  msgstr ""
6694
 
6695
- #: lib/W3/UI/Settings/Minify.php:28
6696
- msgid "After <span class=\"html-tag\">&lt;body&gt;</span>"
6697
  msgstr ""
6698
 
6699
- #: lib/W3/UI/Settings/Minify.php:30
6700
- msgid "Before <span class=\"html-tag\">&lt;/body&gt;</span>"
6701
  msgstr ""
6702
 
6703
- #: lib/W3/UI/Settings/Minify.php:34
6704
- msgid "@import handling:"
6705
  msgstr ""
6706
 
6707
- #: lib/W3/UI/Settings/Minify.php:35
6708
- msgid "Disable minify automatic file name length test"
6709
  msgstr ""
6710
 
6711
- #: lib/W3/UI/Settings/Minify.php:36
6712
- msgid "Filename length:"
6713
  msgstr ""
6714
 
6715
- #: lib/W3/UI/Settings/Minify.php:38
6716
- msgid "Update external files every:"
6717
  msgstr ""
6718
 
6719
- #: lib/W3/UI/Settings/Minify.php:40
6720
- msgid "Never minify the following pages:"
6721
  msgstr ""
6722
 
6723
- #: lib/W3/UI/Settings/Minify.php:41
6724
- msgid "Never minify the following JS files:"
6725
  msgstr ""
6726
 
6727
- #: lib/W3/UI/Settings/Minify.php:42
6728
- msgid "Never minify the following CSS files:"
6729
  msgstr ""
6730
 
6731
- #: lib/W3/UI/Settings/Minify.php:44
6732
- msgid "Include external files/libaries:"
6733
  msgstr ""
6734
 
6735
- #: lib/W3/UI/Settings/Minify.php:46
6736
- msgid "Pretty print"
6737
  msgstr ""
6738
 
6739
- #: lib/W3/UI/Settings/Minify.php:50
6740
- msgid "Compilation level:"
6741
  msgstr ""
6742
 
6743
- #: lib/W3/UI/Settings/Minify.php:52 lib/W3/UI/Settings/Minify.php:78
6744
- msgid "Preserved comment removal (not applied when combine only is active)"
6745
  msgstr ""
6746
 
6747
- #: lib/W3/UI/Settings/Minify.php:53
6748
- msgid "Line break removal (not applied when combine only is active)"
6749
  msgstr ""
6750
 
6751
- #: lib/W3/UI/Settings/Minify.php:55
6752
- msgid "Remove unnecessary backslashes"
6753
  msgstr ""
6754
 
6755
- #: lib/W3/UI/Settings/Minify.php:56
6756
- msgid "Compress colors"
 
 
 
 
6757
  msgstr ""
6758
 
6759
- #: lib/W3/UI/Settings/Minify.php:57
6760
- msgid "Compress font-weight"
 
 
6761
  msgstr ""
6762
 
6763
- #: lib/W3/UI/Settings/Minify.php:58
6764
- msgid "Lowercase selectors"
 
6765
  msgstr ""
6766
 
6767
- #: lib/W3/UI/Settings/Minify.php:59
6768
- msgid "Remove last ;"
 
 
 
6769
  msgstr ""
6770
 
6771
- #: lib/W3/UI/Settings/Minify.php:60
6772
- msgid "Sort Properties"
 
 
6773
  msgstr ""
6774
 
6775
- #: lib/W3/UI/Settings/Minify.php:61
6776
- msgid "Sort Selectors (caution)"
 
 
 
6777
  msgstr ""
6778
 
6779
- #: lib/W3/UI/Settings/Minify.php:62
6780
- msgid "Discard invalid properties"
 
 
 
6781
  msgstr ""
6782
 
6783
- #: lib/W3/UI/Settings/Minify.php:63
6784
- msgid "Preserve CSS"
 
 
 
6785
  msgstr ""
6786
 
6787
- #: lib/W3/UI/Settings/Minify.php:64
6788
- msgid "Add timestamp"
6789
  msgstr ""
6790
 
6791
- #: lib/W3/UI/Settings/Minify.php:66
6792
- msgid "Compression:"
6793
  msgstr ""
6794
 
6795
- #: lib/W3/UI/Settings/Minify.php:67
6796
- msgid "Optimize shorthands:"
 
 
6797
  msgstr ""
6798
 
6799
- #: lib/W3/UI/Settings/Minify.php:68
6800
- msgid "Case for properties:"
 
 
6801
  msgstr ""
6802
 
6803
- #: lib/W3/UI/Settings/Minify.php:69
6804
- msgid "Regroup selectors:"
6805
  msgstr ""
6806
 
6807
- #: lib/W3/UI/Settings/Minify.php:71
6808
- msgid "Line break removal"
6809
  msgstr ""
6810
 
6811
- #: lib/W3/UI/Settings/Minify.php:73
6812
- msgid "Clean"
 
6813
  msgstr ""
6814
 
6815
- #: lib/W3/UI/Settings/Minify.php:74
6816
- msgid "Hide comments"
 
 
6817
  msgstr ""
6818
 
6819
- #: lib/W3/UI/Settings/Minify.php:76
6820
- msgid "Wrap after:"
6821
  msgstr ""
6822
 
6823
- #: lib/W3/UI/Settings/Minify.php:79
6824
- msgid "Line break removal (not safe, not applied when combine only is active)"
6825
  msgstr ""
6826
 
6827
- #: lib/W3/UI/Settings/Minify.php:83 lib/W3/UI/Settings/Minify.php:88
6828
- msgid "Line break after:"
6829
  msgstr ""
6830
 
6831
- #: lib/W3/UI/Settings/Minify.php:85
6832
- msgid "Minify only, do not obfuscate local symbols"
6833
  msgstr ""
6834
 
6835
- #: lib/W3/UI/Settings/Minify.php:86
6836
- msgid "Preserve unnecessary semicolons"
6837
  msgstr ""
6838
 
6839
- #: lib/W3/UI/Settings/Minify.php:87
6840
- msgid "Disable all the built-in micro optimizations"
6841
  msgstr ""
6842
 
6843
- #: lib/W3/UI/Settings/Mobile.php:10
6844
- msgid "User Agents:"
6845
  msgstr ""
6846
 
6847
- #: lib/W3/UI/Settings/Mobile.php:11
6848
- msgid "User Agent groups"
6849
  msgstr ""
6850
 
6851
- #: lib/W3/UI/Settings/Monitoring.php:8
6852
- msgid "New Relic:"
 
6853
  msgstr ""
6854
 
6855
- #: lib/W3/UI/Settings/Monitoring.php:10
6856
- msgid "Use above application name and ID for all sites in network:"
 
6857
  msgstr ""
6858
 
6859
- #: lib/W3/UI/Settings/Monitoring.php:13
6860
- msgid "Cache time:"
 
6861
  msgstr ""
6862
 
6863
- #: lib/W3/UI/Settings/Monitoring.php:14
6864
- msgid ""
6865
- "Use <acronym title=\"Real User Monitoring\">RUM</acronym> only for following "
6866
- "user roles"
6867
  msgstr ""
6868
 
6869
- #: lib/W3/UI/Settings/Monitoring.php:15
6870
- msgid ""
6871
- "Select user roles that <acronym title=\"Real User Monitoring\">RUM</acronym> "
6872
- "should be enabled for:"
6873
  msgstr ""
6874
 
6875
- #: lib/W3/UI/Settings/Monitoring.php:16
6876
  msgid ""
6877
- "Include <acronym title=\"Real User Monitoring\">RUM</acronym> in compressed "
6878
- "or cached pages"
6879
- msgstr ""
6880
-
6881
- #: lib/W3/UI/Settings/Monitoring.php:17
6882
- msgid "Prefix network sites:"
6883
  msgstr ""
6884
 
6885
- #: lib/W3/UI/Settings/Monitoring.php:18
6886
- msgid "Include network sites stats in network:"
6887
  msgstr ""
6888
 
6889
- #: lib/W3/UI/Settings/Monitoring.php:19
6890
- msgid "Use PHP function to set application name:"
6891
  msgstr ""
6892
 
6893
- #: lib/W3/UI/Settings/Monitoring.php:20
6894
- msgid "Enable XMIT"
6895
  msgstr ""
6896
 
6897
- #: lib/W3/UI/Settings/ObjectCache.php:8
6898
- msgid "Object Cache Method:"
 
 
 
 
 
6899
  msgstr ""
6900
 
6901
- #: lib/W3/UI/Settings/ObjectCache.php:9
6902
- msgid "Object Cache:"
 
6903
  msgstr ""
6904
 
6905
- #: lib/W3/UI/Settings/ObjectCache.php:14
6906
- msgid "Default lifetime of cache objects:"
 
 
6907
  msgstr ""
6908
 
6909
- #: lib/W3/UI/Settings/ObjectCache.php:16
6910
- msgid "Global groups:"
6911
  msgstr ""
6912
 
6913
- #: lib/W3/UI/Settings/ObjectCache.php:17
6914
- msgid "Non-persistent groups:"
 
 
6915
  msgstr ""
6916
 
6917
- #: lib/W3/UI/Settings/ObjectCache.php:18
6918
- msgid "Flush all cache on post, comment etc changes."
6919
  msgstr ""
6920
 
6921
- #: lib/W3/UI/Settings/PageCache.php:8
6922
- msgid "Page cache method:"
6923
  msgstr ""
6924
 
6925
- #: lib/W3/UI/Settings/PageCache.php:9
6926
- msgid "Page cache:"
6927
  msgstr ""
6928
 
6929
- #: lib/W3/UI/Settings/PageCache.php:13
6930
- msgid "Cache front page"
6931
  msgstr ""
6932
 
6933
- #: lib/W3/UI/Settings/PageCache.php:13
6934
- msgid "Cache posts page"
6935
  msgstr ""
6936
 
6937
- #: lib/W3/UI/Settings/PageCache.php:14
6938
- msgid "Don't cache front page"
6939
  msgstr ""
6940
 
6941
- #: lib/W3/UI/Settings/PageCache.php:15
6942
- msgid "Cache feeds: site, categories, tags, comments"
6943
  msgstr ""
6944
 
6945
- #: lib/W3/UI/Settings/PageCache.php:16
6946
  msgid ""
6947
- "Cache <acronym title=\"Secure Socket Layer\">SSL</acronym> (<acronym title="
6948
- "\"HyperText Transfer Protocol over SSL\">https</acronym>) requests"
6949
  msgstr ""
6950
 
6951
- #: lib/W3/UI/Settings/PageCache.php:17
6952
  msgid ""
6953
- "Cache <acronym title=\"Uniform Resource Identifier\">URI</acronym>s with "
6954
- "query string variables"
6955
  msgstr ""
6956
 
6957
- #: lib/W3/UI/Settings/PageCache.php:18
6958
- msgid "Cache 404 (not found) pages"
6959
  msgstr ""
6960
 
6961
- #: lib/W3/UI/Settings/PageCache.php:19
6962
- #, php-format
6963
- msgid "Cache requests only for %s site address"
6964
  msgstr ""
6965
 
6966
- #: lib/W3/UI/Settings/PageCache.php:20
6967
- msgid "Don't cache pages for logged in users"
 
6968
  msgstr ""
6969
 
6970
- #: lib/W3/UI/Settings/PageCache.php:21
6971
- msgid "Don't cache pages for following user roles"
 
 
 
 
6972
  msgstr ""
6973
 
6974
- #: lib/W3/UI/Settings/PageCache.php:22
6975
- msgid "Automatically prime the page cache"
6976
  msgstr ""
6977
 
6978
- #: lib/W3/UI/Settings/PageCache.php:23
6979
- msgid "Update interval:"
6980
  msgstr ""
6981
 
6982
- #: lib/W3/UI/Settings/PageCache.php:24
6983
- msgid "Pages per interval:"
6984
  msgstr ""
6985
 
6986
- #: lib/W3/UI/Settings/PageCache.php:25
6987
- msgid "Sitemap <acronym title=\"Uniform Resource Indicator\">URL</acronym>:"
 
6988
  msgstr ""
6989
 
6990
- #: lib/W3/UI/Settings/PageCache.php:26
6991
- msgid "Preload the post cache upon publish events."
 
 
 
6992
  msgstr ""
6993
 
6994
- #: lib/W3/UI/Settings/PageCache.php:27 lib/W3/UI/Settings/PageCache.php:28
6995
- msgid "Front page"
 
6996
  msgstr ""
6997
 
6998
- #: lib/W3/UI/Settings/PageCache.php:28
6999
- msgid "Posts page"
 
7000
  msgstr ""
7001
 
7002
- #: lib/W3/UI/Settings/PageCache.php:29
7003
- msgid "Post page"
 
 
 
 
7004
  msgstr ""
7005
 
7006
- #: lib/W3/UI/Settings/PageCache.php:30
7007
- msgid "Blog feed"
7008
  msgstr ""
7009
 
7010
- #: lib/W3/UI/Settings/PageCache.php:31
7011
- msgid "Post comments pages"
 
 
 
 
 
 
 
 
 
7012
  msgstr ""
7013
 
7014
- #: lib/W3/UI/Settings/PageCache.php:32
7015
- msgid "Post author pages"
7016
  msgstr ""
7017
 
7018
- #: lib/W3/UI/Settings/PageCache.php:33
7019
- msgid "Post terms pages"
7020
  msgstr ""
7021
 
7022
- #: lib/W3/UI/Settings/PageCache.php:34
7023
- msgid "Post comments feed"
 
 
 
 
7024
  msgstr ""
7025
 
7026
- #: lib/W3/UI/Settings/PageCache.php:35
7027
- msgid "Post author feed"
7028
  msgstr ""
7029
 
7030
- #: lib/W3/UI/Settings/PageCache.php:36
7031
- msgid "Post terms feeds"
7032
  msgstr ""
7033
 
7034
- #: lib/W3/UI/Settings/PageCache.php:37
7035
- msgid "Daily archive pages"
7036
  msgstr ""
7037
 
7038
- #: lib/W3/UI/Settings/PageCache.php:38
7039
- msgid "Monthly archive pages"
7040
  msgstr ""
7041
 
7042
- #: lib/W3/UI/Settings/PageCache.php:39
7043
- msgid "Yearly archive pages"
7044
  msgstr ""
7045
 
7046
- #: lib/W3/UI/Settings/PageCache.php:40
7047
- msgid "Specify the feed types to purge:"
7048
  msgstr ""
7049
 
7050
- #: lib/W3/UI/Settings/PageCache.php:41
7051
- msgid "Purge Limit:"
7052
  msgstr ""
7053
 
7054
- #: lib/W3/UI/Settings/PageCache.php:42
7055
- msgid "Additional pages:"
7056
  msgstr ""
7057
 
7058
- #: lib/W3/UI/Settings/PageCache.php:43
7059
- msgid "Purge sitemaps:"
7060
  msgstr ""
7061
 
7062
- #: lib/W3/UI/Settings/PageCache.php:45
7063
- msgid "Enable compatibility mode"
 
 
 
7064
  msgstr ""
7065
 
7066
- #: lib/W3/UI/Settings/PageCache.php:46
7067
- msgid "Disable UTF-8 blog charset support"
7068
  msgstr ""
7069
 
7070
- #: lib/W3/UI/Settings/PageCache.php:47
7071
- msgid ""
7072
- " Disable caching of HEAD <acronym title=\"Hypertext Transfer Protocol"
7073
- "\">HTTP</acronym> requests"
7074
  msgstr ""
7075
 
7076
- #: lib/W3/UI/Settings/PageCache.php:50
7077
- msgid "Comment cookie lifetime:"
7078
  msgstr ""
7079
 
7080
- #: lib/W3/UI/Settings/PageCache.php:51
7081
- msgid "Accepted query strings:"
7082
  msgstr ""
7083
 
7084
- #: lib/W3/UI/Settings/PageCache.php:53
7085
- msgid "Rejected cookies:"
7086
  msgstr ""
7087
 
7088
- #: lib/W3/UI/Settings/PageCache.php:55
7089
- msgid "Cache exception list:"
7090
  msgstr ""
7091
 
7092
- #: lib/W3/UI/Settings/PageCache.php:56
7093
- msgid "Non-trailing slash pages:"
7094
  msgstr ""
7095
 
7096
- #: lib/W3/UI/Settings/PageCache.php:57
7097
- msgid "Specify page headers:"
7098
  msgstr ""
7099
 
7100
- #: lib/W3/UI/Settings/PageCache.php:58
7101
  msgid ""
7102
- "Handle <acronym title=\"Extensible Markup Language\">XML</acronym> mime type"
 
7103
  msgstr ""
7104
 
7105
- #: lib/W3/UI/Settings/Referrer.php:11
7106
- msgid "Referrer groups"
 
 
 
 
7107
  msgstr ""
7108
 
7109
- #: lib/W3/UI/Settings/SNS.php:8
7110
  msgid ""
7111
- "Manage the cache purge queue via <acronym title=\"Simple Notification Service"
7112
- "\">SNS</acronym>"
 
7113
  msgstr ""
7114
 
7115
- #: lib/W3/UI/Settings/SNS.php:9
7116
- msgid "SNS region:"
7117
  msgstr ""
7118
 
7119
- #: lib/W3/UI/Settings/SNS.php:11
7120
- msgid ""
7121
- "<acronym title=\"Application Programming Interface\">API</acronym> secret:"
7122
  msgstr ""
7123
 
7124
- #: lib/W3/UI/Settings/SNS.php:12
7125
- msgid "Topic <acronym title=\"Identification\">ID</acronym>:"
7126
  msgstr ""
7127
 
7128
- #: lib/W3/UI/Settings/SNS.php:13
7129
- msgid "Amazon <acronym title=\"Simple Notification Service\">SNS</acronym>"
7130
  msgstr ""
7131
 
7132
- #: lib/W3/UI/Settings/Varnish.php:8
7133
- msgid "Enable varnish cache purging"
7134
  msgstr ""
7135
 
7136
- #: lib/W3/UI/Settings/Varnish.php:10
7137
- msgid "Varnish servers:"
7138
  msgstr ""
7139
 
7140
- #: lib/W3/Widget/Forum.php:42
7141
- msgid "Forums"
 
 
7142
  msgstr ""
7143
 
7144
- #: lib/W3/Widget/NewRelic.php:49
7145
- msgid "view visualizations"
7146
  msgstr ""
7147
 
7148
- #: lib/W3/Widget/News.php:42
7149
- msgid "News"
7150
  msgstr ""
7151
 
7152
- #: lib/W3/Widget/PageSpeed.php:26
7153
- msgid "Page Speed Report"
 
7154
  msgstr ""
7155
 
7156
- #: lib/W3/Widget/Services.php:56 lib/W3/Widget/Services.php:63
7157
- #, php-format
7158
- msgid "Less than 15 Minute Email Support Response %s"
7159
  msgstr ""
7160
 
7161
- #: lib/W3/Widget/Services.php:57 lib/W3/Widget/Services.php:64
7162
- #, php-format
7163
- msgid "Less than 15 Minute Phone Support Response %s"
7164
  msgstr ""
7165
 
7166
- #: lib/W3/Widget/Services.php:58 lib/W3/Widget/Services.php:65
7167
- #, php-format
7168
- msgid "Professional Plugin Configuration %s"
7169
  msgstr ""
7170
 
7171
- #: lib/W3/Widget/Services.php:59 lib/W3/Widget/Services.php:66
7172
- #, php-format
7173
- msgid "Theme Performance Optimization & Plugin Configuration %s"
7174
  msgstr ""
7175
 
7176
- #: lib/W3/Widget/Services.php:60 lib/W3/Widget/Services.php:67
7177
- #, php-format
7178
- msgid "Linux Server Optimization & Plugin Configuration %s"
7179
  msgstr ""
7180
 
7181
- #: lib/W3/Widget/Services.php:89
7182
- msgid "Premium Services"
 
 
 
 
7183
  msgstr ""
7184
 
7185
- #: lib/W3/Widget/SpreadTheWord.php:42
7186
- msgid "Spread The Word"
7187
  msgstr ""
7188
 
7189
- #: lib/W3/Widget/SpreadTheWord.php:84
7190
- msgid "Thank you for linking to us!"
7191
  msgstr ""
7192
 
7193
- #: lib/W3/Widget/SpreadTheWord.php:86
7194
- msgid ""
7195
- "You are no longer linking to us. Please support us in other ways instead."
7196
  msgstr ""
1
+ #, fuzzy
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: W3 Total Cache\n"
5
+ "POT-Creation-Date: 2020-05-08 15:34+0000\n"
6
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
7
  "Last-Translator: \n"
8
  "Language-Team: W3 EDGE\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Loco https://localise.biz/\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
+ "Language: \n"
17
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;"
18
+
19
+ #: Cdn_MaxCdn_Popup_View_Zones.php:12 Cdn_StackPath_Popup_View_Zones.php:12
20
+ #: Cdnfsd_StackPath_Popup_View_Zones.php:12
21
+ #: Cdnfsd_MaxCdn_Popup_View_Zones.php:12
22
+ msgid "Select zone to use"
23
+ msgstr ""
24
+
25
+ #: Cdn_MaxCdn_Popup_View_Zones.php:49
26
+ #: Cdn_Highwinds_Popup_View_ConfigureCnamesForm.php:20
27
+ #: Extension_NewRelic_Popup_View_ListApplications.php:58
28
+ #: Cdnfsd_CloudFront_Popup_View_Distributions.php:50
29
+ #: Cdn_Highwinds_Popup_View_SelectHost.php:46
30
+ #: Cdn_RackSpaceCdn_Popup_View_Services.php:49
31
+ #: Cdn_MaxCdn_Popup_View_Zone.php:70 Cdnfsd_StackPath_Popup_View_Zone.php:51
32
+ #: Cdn_StackPath2_Popup_View_Stacks.php:47
33
+ #: Cdn_RackSpaceCdn_Popup_View_ConfigureDomains.php:20
34
+ #: Extension_NewRelic_Popup_View_Intro.php:33
35
+ #: Cdnfsd_StackPath2_Popup_View_Sites.php:50
36
+ #: Cdn_StackPath_Popup_View_Zones.php:49
37
+ #: Cdnfsd_CloudFront_Popup_View_Distribution.php:52
38
+ #: Cdnfsd_StackPath2_Popup_View_Stacks.php:46
39
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Actualize.php:44
40
+ #: Cdn_GoogleDrive_Popup_AuthReturn_View.php:41
41
+ #: Cdnfsd_StackPath_Popup_View_Zones.php:49
42
+ #: Cdn_StackPath2_Popup_View_Sites.php:50 Cdnfsd_MaxCdn_Popup_View_Zones.php:49
43
+ #: Cdnfsd_MaxCdn_Popup_View_Zone.php:51 Cdn_StackPath_Popup_View_Zone.php:38
44
+ #: Cdn_RackSpaceCloudFiles_Popup_View_Containers.php:49
45
+ msgid "Apply"
46
+ msgstr ""
47
+
48
+ #: Extension_NewRelic_Widget_View_Apm.php:14
49
+ #: Extension_FragmentCache_Page_View.php:14
50
+ #: Extension_FragmentCache_Page_View.php:55
51
+ msgid "Overview"
52
  msgstr ""
53
 
54
+ #: Extension_NewRelic_Widget_View_Apm.php:28
55
+ msgid "Average times"
56
  msgstr ""
57
 
58
+ #: Extension_NewRelic_Widget_View_Apm.php:37
59
+ msgid "Top 5 slowest times"
60
  msgstr ""
61
 
62
+ #: Extension_NewRelic_Widget_View_Apm.php:39
63
+ msgid "Page load times"
64
  msgstr ""
65
 
66
+ #: Extension_NewRelic_Widget_View_Apm.php:45
67
+ msgid "Web Transaction times"
68
  msgstr ""
69
 
70
+ #: Extension_NewRelic_Widget_View_Apm.php:51
71
+ msgid "Database times"
72
  msgstr ""
73
 
74
+ #: Extension_NewRelic_Widget_View_Apm.php:60
75
+ msgid "PHP agent:"
76
  msgstr ""
77
 
78
+ #: Extension_NewRelic_Widget_View_Apm.php:64
79
+ msgid "Subscription level:"
80
  msgstr ""
81
 
82
+ #: ObjectCache_Plugin_Admin.php:32
83
+ #, php-format
84
+ msgid "Object Cache: %s."
85
  msgstr ""
86
 
87
+ #: ObjectCache_Plugin_Admin.php:54 Minify_Plugin_Admin.php:165
88
+ #, php-format
89
+ msgid ""
90
+ "The setting change(s) made either invalidate the cached data or modify the "
91
+ "behavior of the site. %s now to provide a consistent user experience."
92
  msgstr ""
93
 
94
+ #: ObjectCache_Plugin_Admin.php:57
95
+ msgid "Empty the object cache"
96
  msgstr ""
97
 
98
+ #: Generic_Plugin_Admin_View_Faq.php:9
99
  msgid ""
100
+ "Request professional <a href=\"admin.php?page=w3tc_support\" style=\"color: "
101
+ "red;\"><strong>support</strong></a> or troubleshoot issues using the common "
102
+ "questions below:"
103
  msgstr ""
104
 
105
+ #: Cdnfsd_LimeLight_Popup_View_Intro.php:14
106
+ #: Cdn_LimeLight_Popup_View_Intro.php:14
107
+ msgid "Your LimeLight Account credentials"
 
108
  msgstr ""
109
 
110
+ #: Cdnfsd_LimeLight_Popup_View_Intro.php:45
111
+ #: Cdn_RackSpaceCdn_Popup_View_Regions.php:41
112
+ #: Cdnfsd_StackPath_Popup_View_Intro.php:34
113
+ #: Cdn_StackPath_Popup_View_Intro.php:34 Cdn_StackPath2_Popup_View_Intro.php:42
114
+ #: Cdnfsd_StackPath2_Popup_View_Intro.php:42
115
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Create.php:90
116
+ #: Extension_CloudFlare_Popup_View_Intro.php:38
117
+ #: Extension_CloudFlare_Popup_View_Zones.php:57
118
+ #: Cdnfsd_CloudFront_Popup_View_Intro.php:37
119
+ #: Cdn_LimeLight_Popup_View_Intro.php:53 Cdn_Highwinds_Popup_View_Intro.php:28
120
+ #: Cdn_RackSpaceCloudFiles_Popup_View_Regions.php:41
121
+ #: Cdn_RackSpaceCloudFiles_Popup_View_Intro.php:39
122
+ #: Cdn_RackSpaceCdn_Popup_View_Intro.php:38
123
+ #: Cdnfsd_MaxCdn_Popup_View_Intro.php:34 Cdn_MaxCdn_Popup_View_Intro.php:34
124
+ msgid "Next"
125
  msgstr ""
126
 
127
+ #: SystemOpCache_GeneralPage_View.php:8 SystemOpCache_Plugin_Admin.php:55
128
+ #: inc/options/common/header.php:31
129
+ msgid "Opcode Cache"
130
  msgstr ""
131
 
132
+ #: SystemOpCache_GeneralPage_View.php:20
133
+ msgid "Not Available"
 
 
 
 
 
 
134
  msgstr ""
135
 
136
+ #: SystemOpCache_GeneralPage_View.php:24
137
+ msgid "Opcode: Zend Opcache"
138
  msgstr ""
139
 
140
+ #: SystemOpCache_GeneralPage_View.php:28 Util_Ui.php:854
141
+ #: inc/options/general.php:70
142
+ msgid "Opcode: Alternative PHP Cache (APC / APCu)"
143
  msgstr ""
144
 
145
+ #: SystemOpCache_GeneralPage_View.php:40
146
+ #: UsageStatistics_GeneralPage_View.php:20 Cdn_GeneralPage_View.php:22
147
+ #: Minify_ConfigLabels.php:17 Minify_ConfigLabels.php:22
148
+ #: Minify_ConfigLabels.php:29 Extension_Genesis_Page_View.php:34
149
+ #: Extension_Genesis_Page_View.php:41 Extension_Genesis_Page_View.php:48
150
+ #: Extension_Genesis_Page_View.php:55 Extension_Genesis_Page_View.php:72
151
+ #: Extension_Genesis_Page_View.php:79 Extension_Genesis_Page_View.php:92
152
+ #: Extension_Genesis_Page_View.php:99 Extension_Genesis_Page_View.php:112
153
+ #: Extension_Genesis_Page_View.php:119 Extension_Genesis_Page_View.php:136
154
+ #: Extension_Genesis_Page_View.php:159 Extension_Genesis_Page_View.php:166
155
+ #: Extension_Genesis_Page_View.php:173 Cdnfsd_GeneralPage_View.php:19
156
+ #: PgCache_ConfigLabels.php:40 inc/options/general.php:28
157
+ #: inc/options/general.php:52 inc/options/general.php:136
158
+ #: inc/options/general.php:213 inc/options/general.php:248
159
+ #: inc/options/general.php:279 inc/options/minify.php:319
160
+ #: inc/options/minify.php:444 inc/options/pgcache.php:105
161
+ #: inc/options/pgcache.php:288 inc/options/pgcache.php:296
162
+ msgid "Enable"
163
  msgstr ""
164
 
165
+ #: SystemOpCache_GeneralPage_View.php:41
166
+ msgid ""
167
+ "Once enabled, each file request will update the cache with the latest "
168
+ "version. When this setting is off, the Opcode Cache will not check, instead "
169
+ "PHP must be restarted in order for setting changes to be reflected."
170
  msgstr ""
171
 
172
+ #: SystemOpCache_GeneralPage_View.php:48
173
+ #: Extension_FragmentCache_GeneralPage_View.php:24 Cdn_GeneralPage_View.php:43
174
+ #: Extension_CloudFlare_GeneralPage_View.php:43 inc/options/general.php:117
175
+ #: inc/options/general.php:190 inc/options/general.php:229
176
+ #: inc/options/general.php:260
177
+ msgid "Empty cache"
178
  msgstr ""
179
 
180
+ #: UsageStatistics_Page_DbRequests_View.php:10
181
+ #: UsageStatistics_Page_View_Free.php:10
182
+ #: UsageStatistics_Page_View_Disabled.php:10
183
+ #: UsageStatistics_Page_ObjectCacheLog_View.php:10
184
+ #: UsageStatistics_Page_View_NoDebugMode.php:10
185
+ #: UsageStatistics_Page_PageCacheRequests_View.php:10
186
+ msgid "Usage Statistics"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
187
  msgstr ""
188
 
189
+ #: Generic_Environment.php:99
190
+ #, php-format
191
+ msgid ""
192
+ "The Page Cache add-in file advanced-cache.php is not a W3 Total Cache drop-"
193
+ "in.\n"
194
+ " It should be removed. %s"
195
  msgstr ""
196
 
197
+ #: Generic_Environment.php:101 ObjectCache_Environment.php:126
198
+ msgid "Yes, remove it for me"
199
  msgstr ""
200
 
201
+ #: Cdnfsd_MaxCdn_Popup_View_Success.php:10
202
+ #: Cdnfsd_LimeLight_Popup_View_Success.php:10
203
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Created.php:22
204
+ #: Cdnfsd_CloudFront_Popup_View_Success.php:10
205
+ #: Cdnfsd_StackPath2_Popup_View_Success.php:10
206
+ #: Cdnfsd_StackPath_Popup_View_Success.php:10
207
+ #: Cdn_MaxCdn_Popup_View_Success.php:10
208
+ #: Cdn_StackPath2_Popup_View_Success.php:10
209
+ #: Cdn_LimeLight_Popup_View_Success.php:10
210
+ #: Cdn_StackPath_Popup_View_Success.php:10
211
+ msgid "Succeeded"
212
  msgstr ""
213
 
214
+ #: Cdnfsd_MaxCdn_Popup_View_Success.php:22
215
+ #: Cdnfsd_LimeLight_Popup_View_Success.php:18
216
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Created.php:52
217
+ #: Cdnfsd_CloudFront_Popup_View_Success.php:21
218
+ #: Cdnfsd_StackPath2_Popup_View_Success.php:19
219
+ #: Cdnfsd_StackPath_Popup_View_Success.php:22
220
+ #: Cdn_MaxCdn_Popup_View_Success.php:19
221
+ #: Cdn_StackPath2_Popup_View_Success.php:19
222
+ #: Cdn_LimeLight_Popup_View_Success.php:18
223
+ #: Cdn_StackPath_Popup_View_Success.php:19
224
+ msgid "Done"
225
  msgstr ""
226
 
227
+ #: Cdnfsd_StackPath_Engine.php:21 Cdnfsd_StackPath_Engine.php:43
228
+ #: Cdnfsd_MaxCdn_Engine.php:21 Cdnfsd_MaxCdn_Engine.php:46
229
+ #: Cdnfsd_StackPath2_Engine.php:19 Cdnfsd_StackPath2_Engine.php:49
230
+ msgid "API key not specified."
231
  msgstr ""
232
 
233
+ #: PgCache_ContentGrabber.php:1561
234
+ #, php-format
235
+ msgid "Page Caching using %s%s%s"
236
  msgstr ""
237
 
238
+ #: Licensing_Plugin_Admin.php:37
239
+ msgid ""
240
+ "<span style=\"color: red; background: none;\">Upgrade Performance</span>"
241
  msgstr ""
242
 
243
+ #: Licensing_Plugin_Admin.php:51
244
+ msgid "Upgrade"
 
 
 
 
245
  msgstr ""
246
 
247
+ #: Licensing_Plugin_Admin.php:165
248
  #, php-format
249
+ msgid ""
250
+ "It looks like your W3 Total Cache Pro License has expired. %s to continue "
251
+ "using the Pro Features"
252
  msgstr ""
253
 
254
+ #: Licensing_Plugin_Admin.php:169
255
+ msgid "Renew Now"
 
 
 
 
 
 
256
  msgstr ""
257
 
258
+ #: Licensing_Plugin_Admin.php:171
259
+ msgid "The W3 Total Cache license key you entered is not valid."
 
 
 
260
  msgstr ""
261
 
262
+ #: Licensing_Plugin_Admin.php:173
263
+ msgid "Please enter it again."
264
  msgstr ""
265
 
266
+ #: Licensing_Plugin_Admin.php:175
267
+ msgid "The W3 Total Cache license key is not active for this site."
268
  msgstr ""
269
 
270
+ #: Licensing_Plugin_Admin.php:177
271
+ msgid "The W3 Total Cache license key is not active for this site. "
272
  msgstr ""
273
 
274
+ #: Licensing_Plugin_Admin.php:179
275
  #, php-format
276
+ msgid ""
277
+ "You can switch your license to this website following <a "
278
+ "class=\"w3tc_licensing_reset_rooturi\" href=\"%s\">this link</a>"
279
  msgstr ""
280
 
281
+ #: Licensing_Plugin_Admin.php:183
282
+ msgid "The W3 Total Cache license key is not active."
 
 
 
 
 
283
  msgstr ""
284
 
285
+ #: Licensing_Plugin_Admin.php:186
286
+ msgid "The W3 Total Cache license key can't be verified."
 
287
  msgstr ""
288
 
289
+ #: Licensing_Plugin_Admin.php:202
290
+ msgid "The W3 Total Cache license key is deactivated for this site."
291
  msgstr ""
292
 
293
+ #: Licensing_Plugin_Admin.php:206
294
+ msgid "The W3 Total Cache license key is activated for this site."
295
  msgstr ""
296
 
297
+ #: Licensing_Plugin_Admin.php:222
298
+ msgid "Accept"
299
  msgstr ""
300
 
301
+ #: Licensing_Plugin_Admin.php:225
302
+ msgid "Decline"
303
  msgstr ""
304
 
305
+ #: Licensing_Plugin_Admin.php:249
306
+ #, php-format
307
+ msgid ""
308
+ "Our terms of use and privacy policies have been updated. Please <a "
309
+ "href=\"%s\" target=\"blank\">review</a> and accept them."
310
  msgstr ""
311
 
312
+ #: Licensing_Plugin_Admin.php:254
313
+ #, php-format
314
+ msgid ""
315
+ "Thanks for using W3 Total Cache! Please review the latest <a href=\"%s\" "
316
+ "target=\"blank\">terms of use and privacy policy</a>, and accept them."
317
  msgstr ""
318
 
319
+ #: Cdn_Page_View_Fsd_HeaderActions.php:11
320
+ msgid ""
321
+ "Purge <acronym title=\"Content Delivery Network\">CDN</acronym> completely"
322
  msgstr ""
323
 
324
+ #: Cdn_Highwinds_Popup_View_ConfigureCnamesForm.php:13
325
+ #: Cdn_RackSpaceCdn_Popup_View_ConfigureDomains.php:13
326
+ msgid "<acronym title=\"Canonical Name\">CNAME</acronym>s to use"
327
  msgstr ""
328
 
329
+ #: Cdn_Highwinds_Popup_View_ConfigureCnamesForm.php:15
330
+ #: Cdn_RackSpaceCdn_Popup_View_ConfigureDomains.php:15
331
+ #: Cdn_RackSpaceCdn_Page_View.php:54 Cdn_RackSpaceCloudFiles_Page_View.php:63
332
+ msgid ""
333
+ "Enter hostname mapped to <acronym title=\"Content Delivery Network\">"
334
+ "CDN</acronym> host, this value will replace your site's hostname in the "
335
+ "<acronym title=\"Hypertext Markup Language\">HTML</acronym>."
336
  msgstr ""
337
 
338
+ #: Extension_NewRelic_Plugin.php:122
339
+ msgid "XSL not tracked"
340
  msgstr ""
341
 
342
+ #: Extension_NewRelic_Plugin.php:129 Extension_Swarmify_Plugin.php:95
343
+ msgid "rejected by filter: "
344
  msgstr ""
345
 
346
+ #: Extension_NewRelic_Plugin.php:138 Extension_Swarmify_Plugin.php:104
347
+ msgid "DOING_AJAX constant is defined"
 
 
348
  msgstr ""
349
 
350
+ #: Extension_NewRelic_Plugin.php:148
351
+ msgid "DONOTAUTORUM constant is defined"
352
  msgstr ""
353
 
354
+ #: Extension_NewRelic_Plugin.php:158
355
+ msgid "logged in role is rejected"
 
 
356
  msgstr ""
357
 
358
+ #: Extension_NewRelic_Plugin.php:206
359
+ #, php-format
360
+ msgid "Application Monitoring using New Relic%s"
361
  msgstr ""
362
 
363
+ #: Cdn_Core_Admin.php:701
364
+ msgid "Purge from CDN"
365
  msgstr ""
366
 
367
+ #: Extension_FragmentCache_Plugin_Admin.php:24
368
+ msgid ""
369
+ "Increase the performance of dynamic sites that cannot benefit from the "
370
+ "caching of entire pages."
371
  msgstr ""
372
 
373
+ #: Extension_FragmentCache_Plugin_Admin.php:26
374
  msgid ""
375
+ "Fragment caching extends the core functionality of WordPress by enabling "
376
+ "caching policies to be set on groups of objects that are cached. The benefit "
377
+ "of this approach is not only that capabilities in themes and plugins can be "
378
+ "optimized to use caching to save resources and reduce response times, but "
379
+ "caching methods like Memcached or Redis (for example) can also be used to "
380
+ "scale. Instructions for use are available in the FAQ available under the "
381
+ "help menu or contact support for premium services to improve website "
382
+ "performance."
383
  msgstr ""
384
 
385
+ #: Extension_FragmentCache_Plugin_Admin.php:28
386
+ msgid ""
387
+ "This feature gives you control over the caching policies by the group as "
388
+ "well as visibility into the configuration by extending the WordPress Object "
389
+ "API with additional functionality."
390
  msgstr ""
391
 
392
+ #: Extension_FragmentCache_Plugin_Admin.php:102
393
+ #: Extension_FragmentCache_Plugin_Admin.php:104
394
+ #: Extension_FragmentCache_Plugin_Admin.php:162
395
+ #: Extension_FragmentCache_Plugin_Admin.php:170 inc/options/general.php:508
396
+ #: inc/options/common/header.php:35
397
+ msgid "Fragment Cache"
398
  msgstr ""
399
 
400
+ #: Extension_FragmentCache_Plugin_Admin.php:119
401
+ msgid "Fragment Cache: All Fragments"
402
  msgstr ""
403
 
404
+ #: Extension_Amp_Page_View.php:11 Extension_Swarmify_Page_View.php:24
405
+ #: inc/options/cdn.php:18
406
+ msgid "Configuration"
407
  msgstr ""
408
 
409
+ #: Extension_Amp_Page_View.php:16
410
+ msgid "AMP URL Type:"
411
  msgstr ""
412
 
413
+ #: Extension_Amp_Page_View.php:28
414
+ msgid "AMP URL Postfix:"
415
  msgstr ""
416
 
417
+ #: UsageStatistics_Page_View_Free.php:17 inc/options/edd/buy.php:11
418
+ msgid "upgrade"
419
+ msgstr ""
420
+
421
+ #: Cdn_RackSpaceCdn_Popup_View_Regions.php:23
422
+ #: Cdn_RackSpaceCloudFiles_Popup_View_Regions.php:23
423
+ msgid "Select region"
424
+ msgstr ""
425
+
426
+ #: DbCache_Plugin_Admin.php:61
427
+ #, php-format
428
+ msgid "Database Cache: %s."
429
  msgstr ""
430
 
431
+ #: ObjectCache_Environment.php:124
432
+ #, php-format
433
  msgid ""
434
+ "The Object Cache add-in file object-cache.php is not a W3 Total Cache drop-"
435
+ "in.\n"
436
+ " Remove it or disable Object Caching. %s"
437
  msgstr ""
438
 
439
+ #: Extension_NewRelic_Popup_View_ListApplications.php:14
440
+ msgid "Select Application"
441
  msgstr ""
442
 
443
+ #: Cdnfsd_Plugin.php:62
444
+ #, php-format
445
+ msgid "Content Delivery Network Full Site Delivery via %s"
446
  msgstr ""
447
 
448
+ #: Cdn_StackPath_Page_View.php:10 Cdn_StackPath2_Page_View.php:10
449
+ #: Cdn_MaxCdn_Page_View.php:10
450
+ msgid "Create account:"
451
  msgstr ""
452
 
453
+ #: Cdn_StackPath_Page_View.php:23 Cdnfsd_MaxCdn_Page_View.php:20
454
+ #: Cdnfsd_StackPath_Page_View.php:20 Cdnfsd_StackPath2_Page_View.php:20
455
+ #: Extension_CloudFlare_Page_View.php:40 Cdnfsd_LimeLight_Page_View.php:20
456
+ #: Cdn_StackPath2_Page_View.php:34 Cdnfsd_CloudFront_Page_View.php:20
457
+ #: Cdn_MaxCdn_Page_View.php:23
458
+ msgid "Specify account credentials:"
459
  msgstr ""
460
 
461
+ #: Cdn_StackPath_Page_View.php:30 Cdnfsd_MaxCdn_Page_View.php:29
462
+ #: Cdnfsd_StackPath_Page_View.php:29 Cdn_LimeLight_Page_View.php:17
463
+ #: Cdnfsd_StackPath2_Page_View.php:29 Cdn_Highwinds_Page_View.php:17
464
+ #: Cdn_GoogleDrive_Page_View.php:18 Cdn_RackSpaceCdn_Page_View.php:13
465
+ #: Extension_CloudFlare_Page_View.php:49 Cdnfsd_LimeLight_Page_View.php:29
466
+ #: Cdn_StackPath2_Page_View.php:47 Cdnfsd_CloudFront_Page_View.php:29
467
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:16 Cdn_MaxCdn_Page_View.php:30
468
+ msgid "Reauthorize"
469
+ msgstr ""
470
+
471
+ #: Cdn_StackPath_Page_View.php:35 Cdnfsd_MaxCdn_Page_View.php:34
472
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:16
473
+ #: Cdnfsd_StackPath_Page_View.php:34 Cdn_LimeLight_Page_View.php:14
474
+ #: Cdnfsd_StackPath2_Page_View.php:34 Cdn_Highwinds_Page_View.php:14
475
+ #: Cdn_GoogleDrive_Page_View.php:15
476
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:31
477
+ #: Cdn_RackSpaceCdn_Page_View.php:16 Extension_CloudFlare_Page_View.php:54
478
+ #: Cdnfsd_LimeLight_Page_View.php:34 Cdn_StackPath2_Page_View.php:52
479
+ #: Cdnfsd_CloudFront_Page_View.php:34 Cdn_RackSpaceCloudFiles_Page_View.php:13
480
+ #: Cdn_MaxCdn_Page_View.php:35 Cdn_StackPath_Widget_View_Unauthorized.php:16
481
+ msgid "Authorize"
482
  msgstr ""
483
 
484
+ #: Cdn_StackPath_Page_View.php:45 Cdn_StackPath2_Page_View.php:64
485
  msgid ""
486
+ "<acronym title=\"Content Delivery Network\">CDN</acronym> <acronym "
487
+ "title=\"HyperText Transfer Protocol\">HTTP</acronym> <acronym "
488
+ "title=\"Canonical Name\">CNAME</acronym>:"
489
  msgstr ""
490
 
491
+ #: Cdn_StackPath_Page_View.php:59 Cdn_StackPath2_Page_View.php:78
492
+ msgid ""
493
+ "<acronym title=\"Content Delivery Network\">CDN</acronym> <acronym "
494
+ "title=\"HyperText Transfer Protocol over SSL\">HTTPS</acronym> <acronym "
495
+ "title=\"Canonical Name\">CNAME</acronym>:"
496
  msgstr ""
497
 
498
+ #: Cdn_StackPath_Page_View.php:72 Cdn_StackPath2_Page_View.php:91
499
+ #: Cdn_MaxCdn_Page_View.php:72
500
+ msgid "<acronym title=\"Secure Sockets Layer\">SSL</acronym> support"
501
  msgstr ""
502
 
503
+ #: Cdn_StackPath_Page_View.php:75 Cdn_LimeLight_Page_View.php:27
504
+ #: Cdn_Highwinds_Page_View.php:33 Cdn_StackPath2_Page_View.php:94
505
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:51 Cdn_MaxCdn_Page_View.php:75
506
+ #: inc/options/cdn/att.php:26 inc/options/cdn/ftp.php:58
507
+ #: inc/options/cdn/s3_compatible.php:41 inc/options/cdn/cf2.php:40
508
+ #: inc/options/cdn/mirror.php:12 inc/options/cdn/cf.php:49
509
+ #: inc/options/cdn/cotendo.php:33 inc/options/cdn/edgecast.php:26
510
+ #: inc/options/cdn/rscf.php:46 inc/options/cdn/s3.php:49
511
+ #: inc/options/cdn/azure.php:35 inc/options/cdn/akamai.php:52
512
+ msgid "Auto (determine connection type automatically)"
513
  msgstr ""
514
 
515
+ #: Cdn_StackPath_Page_View.php:76 Cdn_StackPath2_Page_View.php:95
516
+ #: Cdn_MaxCdn_Page_View.php:76
517
  msgid ""
518
+ "Enabled (always use <acronym title=\"Secure Sockets Layer\">SSL</acronym>)"
 
519
  msgstr ""
520
 
521
+ #: Cdn_StackPath_Page_View.php:77 Cdn_StackPath2_Page_View.php:96
522
+ msgid ""
523
+ "Disabled (always use <acronym title=\"HyperText Transfer Protocol\">"
524
+ "HTTP</acronym>)"
525
  msgstr ""
526
 
527
+ #: Cdn_StackPath_Page_View.php:79 Cdn_LimeLight_Page_View.php:31
528
+ #: Cdn_Highwinds_Page_View.php:37 Cdn_StackPath2_Page_View.php:98
529
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:55 Cdn_MaxCdn_Page_View.php:79
530
+ #: inc/options/cdn/att.php:30 inc/options/cdn/ftp.php:62
531
+ #: inc/options/cdn/s3_compatible.php:45 inc/options/cdn/cf2.php:44
532
+ #: inc/options/cdn/mirror.php:16 inc/options/cdn/cf.php:53
533
+ #: inc/options/cdn/cotendo.php:37 inc/options/cdn/edgecast.php:30
534
+ #: inc/options/cdn/rscf.php:50 inc/options/cdn/s3.php:53
535
+ #: inc/options/cdn/azure.php:39
536
+ msgid ""
537
+ "Some <acronym title=\"Content Delivery Network\">CDN</acronym> providers may "
538
+ "or may not support <acronym title=\"Secure Sockets Layer\">SSL</acronym>, "
539
+ "contact your vendor for more information."
540
  msgstr ""
541
 
542
+ #: Cdn_StackPath_Page_View.php:83 Cdn_LimeLight_Page_View.php:35
543
+ #: Cdn_Highwinds_Page_View.php:41 Cdn_RackSpaceCdn_Page_View.php:48
544
+ #: Cdn_RackSpaceCdn_Page_View.php:60 Cdn_StackPath2_Page_View.php:102
545
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:59 Cdn_MaxCdn_Page_View.php:83
546
+ #: inc/options/cdn/att.php:34 inc/options/cdn/ftp.php:86
547
+ #: inc/options/cdn/s3_compatible.php:49 inc/options/cdn/cf2.php:48
548
+ #: inc/options/cdn/mirror.php:20 inc/options/cdn/cf.php:57
549
+ #: inc/options/cdn/cotendo.php:41 inc/options/cdn/edgecast.php:34
550
+ #: inc/options/cdn/rscf.php:54 inc/options/cdn/s3.php:57
551
+ #: inc/options/cdn/azure.php:43 inc/options/cdn/akamai.php:60
552
+ msgid "Replace site's hostname with:"
553
  msgstr ""
554
 
555
+ #: Cdn_StackPath_Page_View.php:86 Cdn_StackPath2_Page_View.php:105
556
+ #: Cdn_MaxCdn_Page_View.php:86 inc/options/cdn/att.php:37
557
+ #: inc/options/cdn/mirror.php:23 inc/options/cdn/cotendo.php:44
558
+ #: inc/options/cdn/edgecast.php:37 inc/options/cdn/akamai.php:63
559
+ msgid ""
560
+ "Enter the hostname provided by your <acronym title=\"Content Delivery "
561
+ "Network\">CDN</acronym> provider, this value will replace your site's "
562
+ "hostname in the <acronym title=\"Hypertext Markup Language\">HTML</acronym>."
563
  msgstr ""
564
 
565
+ #: Cdn_StackPath_Page_View.php:91 Cdn_StackPath2_Page_View.php:110
566
+ msgid "Test StackPath"
 
567
  msgstr ""
568
 
569
+ #: Extension_NewRelic_Api.php:45 lib/NewRelic/NewRelicAPI.php:39
570
+ msgid "Invalid API key"
 
571
  msgstr ""
572
 
573
+ #: Extension_NewRelic_Service.php:46
574
+ msgid "Supported"
 
575
  msgstr ""
576
 
577
+ #: Extension_NewRelic_Service.php:48
578
+ msgid "PHP version"
 
 
 
579
  msgstr ""
580
 
581
+ #: Extension_NewRelic_Service.php:50
582
  #, php-format
583
+ msgid "Not supported: %s."
 
 
 
 
584
  msgstr ""
585
 
586
+ #: Extension_NewRelic_Service.php:96
587
+ msgid "Operating System"
 
588
  msgstr ""
589
 
590
+ #: Extension_NewRelic_Service.php:97 Extension_NewRelic_Service.php:133
591
  #, php-format
592
+ msgid "Not Supported. (%s %s See %s page.)"
 
 
593
  msgstr ""
594
 
595
+ #: Extension_NewRelic_Service.php:132
596
+ msgid "Web Server"
 
 
 
 
 
 
597
  msgstr ""
598
 
599
+ #: Extension_NewRelic_Service.php:152
600
+ msgid "API Key is not configured."
601
  msgstr ""
602
 
603
+ #: Extension_NewRelic_Service.php:158 Extension_NewRelic_Service.php:168
604
+ msgid "Application ID is not configured. Enter/Select application name."
605
  msgstr ""
606
 
607
+ #: Extension_NewRelic_Service.php:161
608
+ msgid "PHP module is not enabled."
609
  msgstr ""
610
 
611
+ #: Extension_NewRelic_Service.php:163
612
+ msgid "PHP agent is not enabled."
 
 
 
613
  msgstr ""
614
 
615
+ #: Extension_NewRelic_Service.php:166
616
+ msgid "Account ID is not configured."
617
  msgstr ""
618
 
619
+ #: Extension_NewRelic_Service.php:171
620
+ msgid "License key could not be detected in ini file."
621
  msgstr ""
622
 
623
+ #: Extension_NewRelic_Service.php:176
624
  #, php-format
625
  msgid ""
626
+ "Configured license key does not match license key(s) in account: <br />%s "
627
+ "<br />%s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
628
  msgstr ""
629
 
630
+ #: Extension_NewRelic_Service.php:181
631
+ msgid "API Key is invalid."
632
  msgstr ""
633
 
634
+ #: Extension_NewRelic_Widget_View_Browser.php:8
635
+ msgid "Metrics are not available for browser applications"
636
  msgstr ""
637
 
638
+ #: Extension_NewRelic_Widget_View_Browser.php:11
639
+ msgid "Upgrade your New Relic account to enable more metrics."
 
 
640
  msgstr ""
641
 
642
+ #: Cdnfsd_MaxCdn_Page_View.php:13 Cdnfsd_StackPath_Page_View.php:13
643
+ #: Cdnfsd_StackPath2_Page_View.php:13 Extension_CloudFlare_Cdn_Page_View.php:10
644
+ #: Cdnfsd_LimeLight_Page_View.php:13 Cdnfsd_CloudFront_Page_View.php:13
645
+ msgid "Configuration: Full-Site Delivery"
646
  msgstr ""
647
 
648
+ #: Cdnfsd_MaxCdn_Page_View.php:43 Cdnfsd_StackPath_Page_View.php:43
649
+ #: Cdnfsd_StackPath2_Page_View.php:43 Cdnfsd_CloudFront_Page_View.php:43
650
+ msgid ""
651
+ "<acronym title=\"Content Delivery Network\">CDN</acronym> <acronym "
652
+ "title=\"Canonical Name\">CNAME</acronym>:"
653
  msgstr ""
654
 
655
+ #: Root_AdminMenu.php:26 Root_AdminMenu.php:27 inc/options/dashboard.php:42
656
+ msgid "Dashboard"
 
 
 
657
  msgstr ""
658
 
659
+ #: Root_AdminMenu.php:32 Root_AdminMenu.php:33 Generic_Plugin.php:324
660
+ msgid "General Settings"
 
 
 
 
 
 
661
  msgstr ""
662
 
663
+ #: Root_AdminMenu.php:38 Root_AdminMenu.php:39
664
+ #: Extension_NewRelic_AdminNotes.php:19 PgCache_ConfigLabels.php:9
665
+ #: PgCache_Plugin.php:273 PgCache_Plugin.php:281 PgCache_Plugin.php:288
666
+ #: inc/options/general.php:39 inc/options/common/header.php:29
667
+ msgid "Page Cache"
 
 
668
  msgstr ""
669
 
670
+ #: Root_AdminMenu.php:44 Root_AdminMenu.php:45
671
+ #: UsageStatistics_Page_View.php:213 Extension_NewRelic_AdminNotes.php:21
672
+ #: Minify_ConfigLabels.php:9 Minify_Plugin_Admin.php:52 Minify_Plugin.php:306
673
+ #: inc/options/general.php:124 inc/options/minify.php:153
674
+ #: inc/options/minify.php:172 inc/options/minify.php:192
675
+ #: inc/options/minify.php:210
676
+ msgid "Minify"
677
  msgstr ""
678
 
679
+ #: Root_AdminMenu.php:50 Root_AdminMenu.php:51 DbCache_Plugin.php:251
680
+ #: DbCache_Plugin.php:258 DbCache_Plugin.php:266 DbCache_ConfigLabels.php:9
681
+ #: inc/options/general.php:201 inc/options/common/header.php:32
682
+ msgid "Database Cache"
 
 
683
  msgstr ""
684
 
685
+ #: Root_AdminMenu.php:56 Root_AdminMenu.php:57
686
+ #: UsageStatistics_Page_View.php:249 ObjectCache_Plugin.php:274
687
+ #: ObjectCache_Plugin.php:310 ObjectCache_Plugin.php:318
688
+ #: ObjectCache_Plugin.php:326 ObjectCache_ConfigLabels.php:9
689
+ #: inc/options/common/header.php:33
690
+ msgid "Object Cache"
691
  msgstr ""
692
 
693
+ #: Root_AdminMenu.php:62 Root_AdminMenu.php:63 inc/options/general.php:267
694
+ #: inc/options/common/header.php:38
695
+ msgid "Browser Cache"
696
  msgstr ""
697
 
698
+ #: Root_AdminMenu.php:68 Root_AdminMenu.php:69
699
+ msgid "User Agent Groups"
700
  msgstr ""
701
 
702
+ #: Root_AdminMenu.php:74 Root_AdminMenu.php:75
703
+ msgid "Referrer Groups"
704
  msgstr ""
705
 
706
+ #: Root_AdminMenu.php:80
707
+ msgid "Content Delivery Network"
708
  msgstr ""
709
 
710
+ #: Root_AdminMenu.php:81 Cdn_ConfigLabels.php:9 Cdn_GeneralPage_View.php:7
711
+ msgid "<acronym title=\"Content Delivery Network\">CDN</acronym>"
712
  msgstr ""
713
 
714
+ #: Root_AdminMenu.php:86 Root_AdminMenu.php:87 Generic_Plugin.php:337
715
+ msgid "FAQ"
 
 
 
716
  msgstr ""
717
 
718
+ #: Root_AdminMenu.php:93 Generic_Plugin.php:344
719
+ msgid "Support"
 
 
 
 
 
 
 
720
  msgstr ""
721
 
722
+ #: Root_AdminMenu.php:94
723
+ msgid "<span style=\"color: red;\">Support</span>"
 
 
724
  msgstr ""
725
 
726
+ #: Root_AdminMenu.php:99 Root_AdminMenu.php:100
727
+ msgid "Install"
728
  msgstr ""
729
 
730
+ #: Root_AdminMenu.php:105 Root_AdminMenu.php:106
731
+ msgid "About"
732
  msgstr ""
733
 
734
+ #: Root_AdminMenu.php:124 Root_AdminMenu.php:125 Generic_Plugin.php:291
735
+ msgid "Performance"
736
  msgstr ""
737
 
738
+ #: UserExperience_Plugin_Admin.php:24 UserExperience_Plugin_Admin.php:25
739
+ #: UserExperience_GeneralPage_View.php:9
740
+ msgid "User Experience"
741
  msgstr ""
742
 
743
+ #: Generic_Plugin_AdminRowActions.php:36 Generic_Plugin_AdminRowActions.php:55
744
+ #: Generic_Plugin_AdminRowActions.php:74
745
+ msgid "Purge from cache"
 
746
  msgstr ""
747
 
748
+ #: Generic_AdminActions_Test.php:76
749
+ msgid "Test passed."
 
 
750
  msgstr ""
751
 
752
+ #: Generic_AdminActions_Test.php:81
753
+ msgid "Test failed."
 
754
  msgstr ""
755
 
756
+ #: Generic_AdminActions_Test.php:104
757
+ msgid "Empty JAVA executable path."
 
 
758
  msgstr ""
759
 
760
+ #: Generic_AdminActions_Test.php:106
761
+ msgid "Empty JAR file path."
 
 
762
  msgstr ""
763
 
764
+ #: Generic_AdminActions_Test.php:141
765
+ msgid "Invalid engine."
766
  msgstr ""
767
 
768
+ #: Cdnfsd_Plugin_Admin.php:81 Cdn_Plugin_Admin.php:169
769
+ msgid "Amazon CloudFront"
770
  msgstr ""
771
 
772
+ #: Cdnfsd_Plugin_Admin.php:84
773
+ msgid "CloudFlare (extension not activated)"
774
  msgstr ""
775
 
776
+ #: Cdnfsd_Plugin_Admin.php:88
777
+ msgid "Limelight"
778
  msgstr ""
779
 
780
+ #: Cdnfsd_Plugin_Admin.php:91 Cdn_Plugin_Admin.php:194
781
+ msgid "MaxCDN"
 
 
782
  msgstr ""
783
 
784
+ #: Cdnfsd_Plugin_Admin.php:94 Cdn_Plugin_Admin.php:206
785
+ msgid "StackPath SecureCDN (Legacy)"
 
786
  msgstr ""
787
 
788
+ #: Cdnfsd_Plugin_Admin.php:97 Cdn_Plugin_Admin.php:202
789
+ msgid "StackPath (recommended)"
790
  msgstr ""
791
 
792
+ #: Extensions_AdminActions.php:17
793
+ #, php-format
794
+ msgid "Extension <strong>%s</strong> has been successfully activated."
795
  msgstr ""
796
 
797
+ #: Extension_FragmentCache_Page_View.php:12 Extension_Swarmify_Page_View.php:10
798
+ #: Extension_FeedBurner_Page_View.php:10 Extension_Genesis_Page_View.php:10
799
+ #: Extension_CloudFlare_Page_View.php:9 Extension_NewRelic_Page_View_Apm.php:10
800
+ #: extension-example/Extension_Example_Page_View.php:10 inc/options/cdn.php:16
801
+ #: inc/options/common/header.php:71 inc/options/common/header.php:87
802
+ #: inc/options/common/header.php:103 inc/options/common/header.php:115
803
+ #: inc/options/common/header.php:126 inc/options/common/header.php:141
804
+ #: inc/options/common/header.php:152
805
+ msgid "Main Menu"
806
  msgstr ""
807
 
808
+ #: Extension_FragmentCache_Page_View.php:13 Extension_Swarmify_Page_View.php:11
809
+ #: Extension_FeedBurner_Page_View.php:11 Extension_Genesis_Page_View.php:11
810
+ #: Extension_CloudFlare_Page_View.php:10 Extensions_Plugin_Admin.php:103
811
+ #: Extensions_Plugin_Admin.php:104 Extension_NewRelic_Page_View_Apm.php:11
812
+ #: extension-example/Extension_Example_Page_View.php:11
813
+ msgid "Extensions"
814
  msgstr ""
815
 
816
+ #: Extension_FragmentCache_Page_View.php:15
817
+ #: Extension_FragmentCache_Page_View.php:78 inc/options/dbcache.php:37
818
+ #: inc/options/cdn.php:19 inc/options/cdn.php:184
819
+ #: inc/options/objectcache.php:29 inc/options/minify.php:455
820
+ #: inc/options/pgcache.php:282 inc/options/common/header.php:74
821
+ #: inc/options/common/header.php:92 inc/options/common/header.php:105
822
+ #: inc/options/common/header.php:116
823
+ msgid "Advanced"
824
  msgstr ""
825
 
826
+ #: Extension_FragmentCache_Page_View.php:48
827
+ msgid "Empty the entire cache"
 
 
 
828
  msgstr ""
829
 
830
+ #: Extension_FragmentCache_Page_View.php:49
831
+ #: Extension_CloudFlare_Page_View.php:28
832
+ msgid "if needed."
833
  msgstr ""
834
 
835
+ #: Extension_FragmentCache_Page_View.php:58
836
+ msgid "Registered fragment groups:"
837
  msgstr ""
838
 
839
+ #: Extension_FragmentCache_Page_View.php:69
840
+ msgid "The groups above will be flushed upon setting changes."
841
  msgstr ""
842
 
843
+ #: Extension_FragmentCache_Page_View.php:71
844
+ msgid "No groups have been registered."
 
 
845
  msgstr ""
846
 
847
+ #: Extension_FragmentCache_Page_View.php:91
848
+ msgid "Default lifetime of cached fragments:"
849
  msgstr ""
850
 
851
+ #: Extension_FragmentCache_Page_View.php:93
852
+ #: Extension_FragmentCache_Page_View.php:100 inc/options/dbcache.php:53
853
+ #: inc/options/dbcache.php:61 inc/options/cdn.php:269 inc/options/cdn.php:278
854
+ #: inc/options/objectcache.php:44 inc/options/objectcache.php:52
855
+ #: inc/options/browsercache.php:179 inc/options/browsercache.php:283
856
+ #: inc/options/browsercache.php:365 inc/options/minify.php:471
857
+ #: inc/options/minify.php:480 inc/options/pgcache.php:135
858
+ #: inc/options/pgcache.php:345 inc/options/pgcache.php:355
859
+ #: inc/options/pgcache.php:362
860
+ msgid "seconds"
861
  msgstr ""
862
 
863
+ #: Extension_FragmentCache_Page_View.php:94 inc/options/dbcache.php:54
864
+ #: inc/options/objectcache.php:45 inc/options/pgcache.php:346
865
+ msgid ""
866
+ "Determines the natural expiration time of unchanged cache items. The higher "
867
+ "the value, the larger the cache."
868
  msgstr ""
869
 
870
+ #: Extension_FragmentCache_Page_View.php:98 DbCache_ConfigLabels.php:12
871
+ #: Minify_ConfigLabels.php:33 PgCache_ConfigLabels.php:44
872
+ #: ObjectCache_ConfigLabels.php:11
873
+ msgid "Garbage collection interval:"
874
  msgstr ""
875
 
876
+ #: Extension_FragmentCache_Page_View.php:101 inc/options/dbcache.php:62
877
+ #: inc/options/objectcache.php:53 inc/options/minify.php:481
878
+ #: inc/options/pgcache.php:356
879
+ msgid ""
880
+ "If caching to disk, specify how frequently expired cache data is removed. "
881
+ "For busy sites, a lower value is best."
882
+ msgstr ""
883
+
884
+ #: Extension_FragmentCache_Page_View.php:105
885
+ msgid "Manual fragment groups:"
886
  msgstr ""
887
 
888
+ #: Extension_FragmentCache_Page_View.php:110
889
  msgid ""
890
+ "Specify fragment groups that should be managed by W3 Total Cache. Enter one "
891
+ "action per line comma delimited, e.g. (group, action1, action2). Include the "
892
+ "prefix used for a transient by a theme or plugin."
893
  msgstr ""
894
 
895
+ #: Extension_NewRelic_Widget.php:77
896
+ msgid "view visualizations"
897
  msgstr ""
898
 
899
+ #: Cdnfsd_CloudFront_Popup_View_Distributions.php:13
900
+ msgid "Select distribution to use"
 
 
901
  msgstr ""
902
 
903
+ #: Cdn_StackPath_Widget_View_Authorized.php:18
904
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:29
905
+ msgid "Status"
 
 
 
906
  msgstr ""
907
 
908
+ #: Cdn_StackPath_Widget_View_Authorized.php:22
909
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:33
910
+ msgid "Content Zone:"
911
  msgstr ""
912
 
913
+ #: Cdn_StackPath_Widget_View_Authorized.php:30
914
+ #: Cdn_StackPath2_Widget_View_Authorized.php:17
915
+ #: Cdn_Highwinds_Widget_View.php:12
916
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:41
917
+ msgid "Manage"
918
  msgstr ""
919
 
920
+ #: Cdn_StackPath_Widget_View_Authorized.php:31
921
+ #: Cdn_StackPath2_Widget_View_Authorized.php:18
922
+ #: Cdn_Highwinds_Widget_View.php:15
923
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:42
924
+ msgid "Reports"
925
  msgstr ""
926
 
927
+ #: Cdn_StackPath_Widget_View_Authorized.php:32
928
+ #: Cdn_StackPath2_Widget_View_Authorized.php:19
929
+ #: Cdn_Highwinds_Widget_View.php:18
930
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:43 inc/options/cdn.php:49
931
+ #: inc/popup/cdn_purge.php:41
932
+ msgid "Purge"
933
  msgstr ""
934
 
935
+ #: Cdn_StackPath_Widget_View_Authorized.php:36 Cdn_Highwinds_Widget_View.php:30
936
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:47
937
+ msgid "Report - 30 days"
938
  msgstr ""
939
 
940
+ #: Cdn_StackPath_Widget_View_Authorized.php:40
941
+ #: Cdn_StackPath2_Widget_View_Authorized.php:27
942
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:51
943
+ msgid "Transferred"
944
  msgstr ""
945
 
946
+ #: Cdn_StackPath_Widget_View_Authorized.php:44
947
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:55
948
+ msgid "Cache Hits"
949
  msgstr ""
950
 
951
+ #: Cdn_StackPath_Widget_View_Authorized.php:51
952
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:62
953
+ msgid "Cache Misses"
954
  msgstr ""
955
 
956
+ #: Cdn_StackPath_Widget_View_Authorized.php:59
957
+ #: Cdn_StackPath2_Widget_View_Authorized.php:31
958
+ #: Cdn_StackPath2_Widget_View_Authorized.php:36
959
+ #: Cdn_Highwinds_Widget_View.php:38
960
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:70
961
+ msgid "Requests"
962
  msgstr ""
963
 
964
+ #: Cdn_StackPath_Widget_View_Authorized.php:61
965
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:72
966
+ msgid "Content Breakdown"
967
  msgstr ""
968
 
969
+ #: Cdn_StackPath_Widget_View_Authorized.php:63
970
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:74
971
+ msgid "File"
972
  msgstr ""
973
 
974
+ #: Cdn_StackPath_Widget_View_Authorized.php:64
975
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:75
976
+ msgid "Hits"
977
  msgstr ""
978
 
979
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:9
980
+ msgid ""
981
+ "Dramatically increase website speeds in just a few clicks! Add the MaxCDN "
982
+ "content delivery network (<acronym title=\"Content Delivery Network\">"
983
+ "CDN</acronym>) service to your site."
984
  msgstr ""
985
 
986
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:10
987
+ #: Extension_Swarmify_Widget_View_NotConfigured.php:10
988
+ #: Cdn_StackPath_Widget_View_Unauthorized.php:10
989
+ msgid "New customers"
990
  msgstr ""
991
 
992
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:11
993
+ msgid "MaxCDN works magically with W3 Total Cache."
 
 
994
  msgstr ""
995
 
996
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:12
997
+ msgid "Create an Account"
998
  msgstr ""
999
 
1000
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:13
1001
+ #: Cdn_StackPath_Widget_View_Unauthorized.php:13
1002
+ msgid "Exclusive offers availabel for W3TC users!"
1003
  msgstr ""
1004
 
1005
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:14
1006
+ #: Extension_Swarmify_Widget_View_NotConfigured.php:14
1007
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:28
1008
+ #: Cdn_StackPath_Widget_View_Unauthorized.php:14
1009
+ msgid "Current customers"
1010
  msgstr ""
1011
 
1012
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:15
1013
  msgid ""
1014
+ "Existing MaxCDN customers, enable <acronym title='Content Delivery Network'>"
1015
+ "CDN</acronym> and:"
1016
  msgstr ""
1017
 
1018
+ #: Util_Activation.php:57
1019
+ #, php-format
1020
+ msgid "%s<br />then %s."
1021
  msgstr ""
1022
 
1023
+ #: Util_Activation.php:72
1024
+ #, php-format
1025
+ msgid "<li><strong style=\"color: #f00;\">chmod 777 %s</strong></li>"
1026
  msgstr ""
1027
 
1028
+ #: Util_Activation.php:79
1029
+ #, php-format
1030
+ msgid ""
1031
+ "<strong>%s</strong> could not be created, please run following command:<br />"
1032
+ "%s"
1033
  msgstr ""
1034
 
1035
+ #: Util_Activation.php:83
1036
+ #, php-format
1037
+ msgid ""
1038
+ "<strong>%s</strong> could not be created, <strong>open_basedir\n"
1039
+ " </strong> restriction in effect, please check your "
1040
+ "php.ini settings:<br />\n"
1041
+ " <strong style=\"color: #f00;\">open_basedir = "
1042
+ "\"%s\"</strong>"
1043
  msgstr ""
1044
 
1045
+ #: Util_Activation.php:139
1046
+ #, php-format
1047
+ msgid ""
1048
+ "Create the <strong>%s</strong> file and paste the following text into it:\n"
1049
+ " <textarea>%s</textarea> <br />"
1050
  msgstr ""
1051
 
1052
+ #: Util_Activation.php:170
1053
+ msgid "Technical info"
1054
  msgstr ""
1055
 
1056
+ #: Util_Activation.php:183
1057
+ msgid "Execute next commands in a shell:"
1058
  msgstr ""
1059
 
1060
+ #: Util_Activation.php:225
1061
+ #, php-format
1062
+ msgid ""
1063
+ "<strong>W3 Total Cache Error:</strong>\n"
1064
+ " Files and directories could not be "
1065
+ "automatically\n"
1066
+ " deleted.\n"
1067
+ " <table>\n"
1068
+ " <tr>\n"
1069
+ " <td>Please execute commands manually</td>\n"
1070
+ " <td>\n"
1071
+ " %s\n"
1072
+ " </td>\n"
1073
+ " </tr>\n"
1074
+ " <tr>\n"
1075
+ " <td>or use FTP form to allow\n"
1076
+ " <strong>W3 Total Cache</strong> make it "
1077
+ "automatically.\n"
1078
+ " </td>\n"
1079
+ " <td>\n"
1080
+ " %s\n"
1081
+ " </td>\n"
1082
+ " </tr></table>"
1083
  msgstr ""
1084
 
1085
+ #: Util_Activation.php:243
1086
+ msgid "View required changes"
1087
  msgstr ""
1088
 
1089
+ #: Util_Activation.php:244
1090
+ msgid "Update via FTP"
1091
  msgstr ""
1092
 
1093
+ #: PgCache_Page_CookieGroups_View.php:10
1094
+ msgid ""
1095
+ "Cookie group support is always <span class=\"w3tc-enabled\">enabled</span>."
1096
  msgstr ""
1097
 
1098
+ #: PgCache_Page_CookieGroups_View.php:15
1099
+ msgid "Manage Cookie Groups"
1100
  msgstr ""
1101
 
1102
+ #: PgCache_Page_CookieGroups_View.php:19 inc/options/referrer.php:25
1103
+ #: inc/options/mobile.php:27
1104
+ msgid "Create a group"
1105
  msgstr ""
1106
 
1107
+ #: PgCache_Page_CookieGroups_View.php:20
1108
+ msgid ""
1109
+ "of Cookies by specifying names in the Cookies field. Assign a set of Cookies "
1110
+ "to ensure that a unique cache is created for each Cookie group. Drag and "
1111
+ "drop groups into order (if needed) to determine their priority (top -&gt; "
1112
+ "down)."
1113
  msgstr ""
1114
 
1115
+ #: PgCache_Page_CookieGroups_View.php:29 inc/options/referrer.php:34
1116
+ #: inc/options/mobile.php:37
1117
+ msgid "Group name:"
 
 
1118
  msgstr ""
1119
 
1120
+ #: PgCache_Page_CookieGroups_View.php:42 inc/options/referrer.php:42
1121
+ #: inc/options/mobile.php:48
1122
+ msgid "Enabled:"
1123
  msgstr ""
1124
 
1125
+ #: PgCache_Page_CookieGroups_View.php:56
1126
+ msgid "Cache:"
1127
  msgstr ""
1128
 
1129
+ #: PgCache_Page_CookieGroups_View.php:70
1130
+ msgid "Cookies:"
1131
  msgstr ""
1132
 
1133
+ #: PgCache_Page_CookieGroups_View.php:78
1134
+ msgid ""
1135
+ "Specify the cookies for this group. Values like 'cookie', 'cookie=value', "
1136
+ "and cookie[a-z]+=value[a-z]+ are supported. Remember to escape special "
1137
+ "characters like spaces, dots or dashes with a backslash. Regular expressions "
1138
+ "are also supported."
1139
  msgstr ""
1140
 
1141
+ #: PgCache_Page_CookieGroups_View.php:86
1142
+ msgid ""
1143
+ "No groups added. All Cookies recieve the same page and minify cache results."
1144
  msgstr ""
1145
 
1146
+ #: PgCache_Page_CookieGroups_View.php:93 inc/options/cdn.php:363
1147
+ #: inc/options/minify.php:540 inc/options/install.php:82
1148
+ #: inc/options/mobile.php:114
1149
+ msgid "Note(s):"
1150
  msgstr ""
1151
 
1152
+ #: PgCache_Page_CookieGroups_View.php:101
1153
+ msgid "Content is cached for each group separately."
1154
  msgstr ""
1155
 
1156
+ #: PgCache_Page_CookieGroups_View.php:104 Mobile_Page_UserAgentGroups.php:32
1157
+ msgid ""
1158
+ "Per the above, make sure that visitors are notified about the cookie as per "
1159
+ "any regulations in your market."
1160
  msgstr ""
1161
 
1162
+ #: PgCache_Plugin_Admin.php:303
1163
+ #, php-format
1164
+ msgid "Page Cache: %s."
1165
  msgstr ""
1166
 
1167
+ #: PgCache_Plugin_Admin.php:313 PgCache_Plugin_Admin.php:314
1168
+ msgid "Cookie Groups"
1169
  msgstr ""
1170
 
1171
+ #: BrowserCache_Page_View_QuickReference.php:9
1172
+ msgid "Security Headers: Quick Reference"
1173
  msgstr ""
1174
 
1175
+ #: BrowserCache_Page_View_QuickReference.php:12 inc/lightbox/self_test.php:11
1176
+ msgid "Legend"
1177
  msgstr ""
1178
 
1179
+ #: Cdnfsd_StackPath_Popup_View_Intro.php:14
1180
+ #: Cdn_StackPath_Popup_View_Intro.php:14 Cdn_StackPath2_Popup_View_Intro.php:14
1181
+ #: Cdnfsd_StackPath2_Popup_View_Intro.php:14
1182
+ msgid "Your StackPath Account credentials"
1183
  msgstr ""
1184
 
1185
+ #: Cdnfsd_LimeLight_Engine.php:26 CdnEngine_Mirror_LimeLight.php:43
1186
+ msgid "Credentials are not specified."
1187
  msgstr ""
1188
 
1189
+ #: Cdnfsd_LimeLight_Engine.php:65 Cdnfsd_CloudFront_Engine.php:77
1190
+ #: CdnEngine_Mirror_LimeLight.php:94
1191
+ msgid "Access key not specified."
 
1192
  msgstr ""
1193
 
1194
+ #: Cdn_LimeLight_Page_View.php:10 Cdn_Highwinds_Page_View.php:10
1195
+ #: Cdn_GoogleDrive_Page_View.php:11 Cdn_RackSpaceCdn_Page_View.php:9
1196
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:9
1197
+ msgid "Authorize:"
1198
  msgstr ""
1199
 
1200
+ #: Cdn_LimeLight_Page_View.php:24 Cdn_Highwinds_Page_View.php:30
1201
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:48 inc/options/cdn/akamai.php:49
1202
+ msgid "<acronym title=\"Secure Sockets Layer\">SSL</acronym> support:</label>"
1203
  msgstr ""
1204
 
1205
+ #: Cdn_LimeLight_Page_View.php:28 Cdn_Highwinds_Page_View.php:34
1206
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:52 inc/options/cdn/att.php:27
1207
+ #: inc/options/cdn/ftp.php:59 inc/options/cdn/s3_compatible.php:42
1208
+ #: inc/options/cdn/cf2.php:41 inc/options/cdn/mirror.php:13
1209
+ #: inc/options/cdn/cf.php:50 inc/options/cdn/cotendo.php:34
1210
+ #: inc/options/cdn/edgecast.php:27 inc/options/cdn/rscf.php:47
1211
+ #: inc/options/cdn/s3.php:50 inc/options/cdn/azure.php:36
1212
+ #: inc/options/cdn/akamai.php:53
1213
+ msgid "Enabled (always use SSL)"
1214
  msgstr ""
1215
 
1216
+ #: Cdn_LimeLight_Page_View.php:29 Cdn_Highwinds_Page_View.php:35
1217
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:53 inc/options/cdn/att.php:28
1218
+ #: inc/options/cdn/ftp.php:60 inc/options/cdn/s3_compatible.php:43
1219
+ #: inc/options/cdn/cf2.php:42 inc/options/cdn/mirror.php:14
1220
+ #: inc/options/cdn/cf.php:51 inc/options/cdn/cotendo.php:35
1221
+ #: inc/options/cdn/edgecast.php:28 inc/options/cdn/rscf.php:48
1222
+ #: inc/options/cdn/s3.php:51 inc/options/cdn/azure.php:37
1223
+ #: inc/options/cdn/akamai.php:54
1224
+ msgid "Disabled (always use HTTP)"
1225
  msgstr ""
1226
 
1227
+ #: Cdn_LimeLight_Page_View.php:38 Cdn_Highwinds_Page_View.php:46
1228
  msgid ""
1229
+ "Hostname provided by your <acronym title=\"Content Delivery Network\">"
1230
+ "CDN</acronym> provider, this value will replace your site's hostname in the "
1231
+ "<acronym title=\"Hypertext Markup Language\">HTML</acronym>."
 
 
 
 
1232
  msgstr ""
1233
 
1234
+ #: Cdn_LimeLight_Page_View.php:46 Cdn_Highwinds_Page_View.php:54
1235
+ #: Cdn_RackSpaceCdn_Page_View.php:77 Cdn_RackSpaceCloudFiles_Page_View.php:72
1236
+ #: inc/options/parts/memcached_extension.php:21
1237
+ #: inc/options/parts/redis_extension.php:23 inc/options/parts/memcached.php:20
1238
+ #: inc/options/parts/redis.php:21
1239
+ msgid "Test"
1240
  msgstr ""
1241
 
1242
+ #: Cdnfsd_Page_View_Header.php:11 Cdn_Page_View_Header.php:12
1243
+ #: inc/options/cdn.php:25
1244
+ #, php-format
1245
+ msgid "Content Delivery Network support via %1$s is currently %2$s."
1246
  msgstr ""
1247
 
1248
+ #: Cdnfsd_Page_View_Header.php:13 Cdn_Page_View_Header.php:14
1249
+ #: inc/options/dbcache.php:12 inc/options/cdn.php:27 inc/options/general.php:12
1250
+ #: inc/options/dashboard.php:13 inc/options/extensions.php:10
1251
+ #: inc/options/objectcache.php:15 inc/options/browsercache.php:18
1252
+ #: inc/options/minify.php:22 inc/options/pgcache.php:15
1253
+ msgid "enabled"
1254
  msgstr ""
1255
 
1256
+ #: Cdnfsd_Page_View_Header.php:13 Cdn_Page_View_Header.php:14
1257
+ #: inc/options/dbcache.php:12 inc/options/cdn.php:27 inc/options/general.php:12
1258
+ #: inc/options/dashboard.php:13 inc/options/objectcache.php:15
1259
+ #: inc/options/browsercache.php:18 inc/options/minify.php:22
1260
+ #: inc/options/pgcache.php:15
1261
+ msgid "disabled"
1262
  msgstr ""
1263
 
1264
+ #: Cdn_Plugin_Admin.php:158
1265
+ msgid "Origin Pull / Mirror:"
 
 
 
 
1266
  msgstr ""
1267
 
1268
+ #: Cdn_Plugin_Admin.php:161
1269
+ msgid "Origin Push:"
 
 
1270
  msgstr ""
1271
 
1272
+ #: Cdn_Plugin_Admin.php:165
1273
+ msgid "Akamai"
 
 
 
1274
  msgstr ""
1275
 
1276
+ #: Cdn_Plugin_Admin.php:174
1277
+ msgid "AT&amp;T"
1278
  msgstr ""
1279
 
1280
+ #: Cdn_Plugin_Admin.php:178
1281
+ msgid "Cotendo (Akamai)"
 
 
 
1282
  msgstr ""
1283
 
1284
+ #: Cdn_Plugin_Admin.php:182
1285
+ msgid "Generic Mirror"
1286
  msgstr ""
1287
 
1288
+ #: Cdn_Plugin_Admin.php:186
1289
+ msgid "Highwinds"
1290
  msgstr ""
1291
 
1292
+ #: Cdn_Plugin_Admin.php:190
1293
+ msgid "LimeLight"
 
 
1294
  msgstr ""
1295
 
1296
+ #: Cdn_Plugin_Admin.php:198
1297
+ msgid "RackSpace CDN"
 
 
1298
  msgstr ""
1299
 
1300
+ #: Cdn_Plugin_Admin.php:210
1301
+ msgid "Verizon Digital Media Services (EdgeCast) / Media Temple ProCDN"
1302
  msgstr ""
1303
 
1304
+ #: Cdn_Plugin_Admin.php:215
1305
+ msgid "Amazon CloudFront Over S3"
 
 
 
1306
  msgstr ""
1307
 
1308
+ #: Cdn_Plugin_Admin.php:220
1309
+ msgid "Amazon Simple Storage Service (S3)"
 
 
1310
  msgstr ""
1311
 
1312
+ #: Cdn_Plugin_Admin.php:225
1313
+ msgid "Amazon Simple Storage Service (S3) Compatible"
1314
  msgstr ""
1315
 
1316
+ #: Cdn_Plugin_Admin.php:229
1317
+ msgid "Google Drive"
 
 
1318
  msgstr ""
1319
 
1320
+ #: Cdn_Plugin_Admin.php:233
1321
+ msgid "Microsoft Azure Storage"
 
 
 
1322
  msgstr ""
1323
 
1324
+ #: Cdn_Plugin_Admin.php:238
1325
+ msgid "Rackspace Cloud Files"
1326
  msgstr ""
1327
 
1328
+ #: Cdn_Plugin_Admin.php:243
1329
+ msgid "Self-hosted / File Transfer Protocol Upload"
 
 
 
1330
  msgstr ""
1331
 
1332
+ #: CdnEngine_Mirror_StackPath2.php:32 CdnEngine_Mirror_StackPath2.php:68
1333
+ #: CdnEngine_Mirror_StackPath.php:33 CdnEngine_Mirror_StackPath.php:82
1334
+ #: CdnEngine_Mirror_MaxCdn.php:35 CdnEngine_Mirror_MaxCdn.php:110
1335
+ msgid "Empty Authorization Key."
1336
  msgstr ""
1337
 
1338
+ #: CdnEngine_Mirror_StackPath2.php:54 CdnEngine_Mirror_StackPath2.php:87
1339
+ #: CdnEngine_Mirror_StackPath.php:68 CdnEngine_Mirror_StackPath.php:108
1340
+ #: CdnEngine_Mirror_MaxCdn.php:96 CdnEngine_Mirror_MaxCdn.php:166
1341
+ msgid "Failure to pull zone: "
1342
  msgstr ""
1343
 
1344
+ #: Cdn_ConfigLabels.php:7
1345
+ msgid "<acronym title=\"Content Delivery Network\">CDN</acronym>:"
 
 
 
1346
  msgstr ""
1347
 
1348
+ #: Cdn_ConfigLabels.php:8
1349
+ msgid "<acronym title=\"Content Delivery Network\">CDN</acronym> Type:"
 
 
 
 
 
1350
  msgstr ""
1351
 
1352
+ #: Cdn_ConfigLabels.php:10
1353
+ msgid ""
1354
+ "<acronym title=\"Full Site Delivery\">FSD</acronym> <acronym title=\"Content "
1355
+ "Delivery Network\">CDN</acronym>"
1356
  msgstr ""
1357
 
1358
+ #: Cdn_ConfigLabels.php:11
1359
+ msgid "Host attachments"
 
 
1360
  msgstr ""
1361
 
1362
+ #: Cdn_ConfigLabels.php:12
1363
+ msgid "Host wp-includes/ files"
 
1364
  msgstr ""
1365
 
1366
+ #: Cdn_ConfigLabels.php:13
1367
+ msgid "Host theme files"
 
 
1368
  msgstr ""
1369
 
1370
+ #: Cdn_ConfigLabels.php:14
1371
+ msgid ""
1372
+ "Host minified <acronym title=\"Cascading Style Sheet\">CSS</acronym> and "
1373
+ "<acronym title=\"JavaScript\">JS</acronym> files"
1374
  msgstr ""
1375
 
1376
+ #: Cdn_ConfigLabels.php:15
1377
+ msgid "Host custom files"
 
 
1378
  msgstr ""
1379
 
1380
+ #: Cdn_ConfigLabels.php:16
1381
+ msgid "Force over-writing of existing files"
 
 
1382
  msgstr ""
1383
 
1384
+ #: Cdn_ConfigLabels.php:17
1385
+ msgid "Import external media library attachments"
1386
  msgstr ""
1387
 
1388
+ #: Cdn_ConfigLabels.php:18
1389
+ msgid "Add canonical header"
 
1390
  msgstr ""
1391
 
1392
+ #: Cdn_ConfigLabels.php:19
1393
+ msgid ""
1394
+ "Disable <acronym title=\"Content Delivery Network\">CDN</acronym> on "
1395
+ "<acronym title=\"Secure Sockets Layer\">SSL</acronym> pages"
1396
  msgstr ""
1397
 
1398
+ #: Cdn_ConfigLabels.php:20
1399
+ msgid ""
1400
+ "Use <acronym title=\"Content Delivery Network\">CDN</acronym> links for the "
1401
+ "Media Library on admin pages"
1402
  msgstr ""
1403
 
1404
+ #: Cdn_ConfigLabels.php:21
 
1405
  msgid ""
1406
+ "Disable <acronym title=\"Content Delivery Network\">CDN</acronym> for the "
1407
+ "following roles"
1408
  msgstr ""
1409
 
1410
+ #: Cdn_ConfigLabels.php:22
1411
+ msgid ""
1412
+ "Disable <acronym title=\"Content Delivery Network\">CDN</acronym> on the "
1413
+ "following pages:"
1414
  msgstr ""
1415
 
1416
+ #: Cdn_ConfigLabels.php:23
1417
+ msgid "Export changed files automatically"
 
1418
  msgstr ""
1419
 
1420
+ #: Cdn_ConfigLabels.php:24
1421
+ msgid "Auto upload interval:"
 
 
 
1422
  msgstr ""
1423
 
1424
+ #: Cdn_ConfigLabels.php:25
1425
+ msgid "Re-transfer cycle interval:"
 
 
1426
  msgstr ""
1427
 
1428
+ #: Cdn_ConfigLabels.php:26
1429
+ msgid "Re-transfer cycle limit:"
1430
  msgstr ""
1431
 
1432
+ #: Cdn_ConfigLabels.php:27
1433
+ msgid "wp-includes file types to upload:"
 
1434
  msgstr ""
1435
 
1436
+ #: Cdn_ConfigLabels.php:28
1437
+ msgid "Theme file types to upload:"
 
 
1438
  msgstr ""
1439
 
1440
+ #: Cdn_ConfigLabels.php:29
1441
+ msgid "File types to import:"
1442
  msgstr ""
1443
 
1444
+ #: Cdn_ConfigLabels.php:30
1445
+ msgid "Custom file list:"
 
 
1446
  msgstr ""
1447
 
1448
+ #: Cdn_ConfigLabels.php:31
1449
+ msgid "Location:"
 
1450
  msgstr ""
1451
 
1452
+ #: Cdn_ConfigLabels.php:32 Minify_ConfigLabels.php:37
1453
+ #: PgCache_ConfigLabels.php:47
1454
+ msgid "Rejected user agents:"
 
 
 
 
 
 
 
1455
  msgstr ""
1456
 
1457
+ #: Cdn_ConfigLabels.php:33
1458
+ msgid "Rejected files:"
 
1459
  msgstr ""
1460
 
1461
+ #: Util_WpFile.php:158
1462
+ msgid "FTP credentials don't allow to delete folder "
1463
  msgstr ""
1464
 
1465
+ #: Util_WpFile.php:188
1466
+ msgid "FTP credentials don't allow to chmod "
 
 
 
1467
  msgstr ""
1468
 
1469
+ #: Util_WpFile.php:222
1470
+ msgid "FTP credentials don't allow to delete "
 
1471
  msgstr ""
1472
 
1473
+ #: Extension_FragmentCache_GeneralPage_View.php:15
1474
+ msgid "Fragment Cache Method:"
1475
  msgstr ""
1476
 
1477
+ #: Generic_WidgetSpreadTheWord_Plugin.php:44
1478
+ msgid "Spread the Word"
 
 
1479
  msgstr ""
1480
 
1481
+ #: Generic_Plugin_AdminCompatibility.php:97
1482
  msgid ""
1483
+ "The following plugins are not compatible with W3 Total Cache and will cause "
1484
+ "unintended results:"
 
 
 
1485
  msgstr ""
1486
 
1487
+ #: Generic_Plugin_AdminCompatibility.php:103
1488
+ msgid "Deactivate this plugin"
1489
  msgstr ""
1490
 
1491
+ #: Generic_Plugin_AdminCompatibility.php:105 inc/options/extensions/list.php:32
1492
+ #: inc/options/extensions/list.php:159
1493
+ msgid "Deactivate"
1494
  msgstr ""
1495
 
1496
+ #: Extension_CloudFlare_Widget_View.php:9
1497
+ msgid "You have not configured well email, API key or domain"
1498
  msgstr ""
1499
 
1500
+ #: ObjectCache_WpObjectCache_Regular.php:851
1501
  #, php-format
1502
+ msgid "Object Caching %d/%d objects using %s%s"
1503
  msgstr ""
1504
 
1505
+ #: ObjectCache_WpObjectCache_Regular.php:901
1506
+ msgid "Object caching is disabled"
 
1507
  msgstr ""
1508
 
1509
+ #: ObjectCache_WpObjectCache_Regular.php:903
1510
+ msgid "DONOTCACHEOBJECT constant is defined"
1511
  msgstr ""
1512
 
1513
+ #: UsageStatistics_GeneralPage_View.php:22
1514
+ msgid ""
1515
+ "Enable statistics collection. Note that this consumes additional resources "
1516
+ "and is not recommended to be run continuously."
1517
  msgstr ""
1518
 
1519
+ #: UsageStatistics_GeneralPage_View.php:25
1520
+ msgid ""
1521
+ "Statistics provide transparency into the behavior of your caching "
1522
+ "performance. Without statistics, it’s challenging to identify opportunities "
1523
+ "for improvement or ensure operations are working as expected consistently. "
1524
+ "Metrics like cache sizes, object lifetimes, hit vs miss ratio, etc across "
1525
+ "every caching method configured in your settings."
1526
  msgstr ""
1527
 
1528
+ #: UsageStatistics_GeneralPage_View.php:27
1529
+ msgid ""
1530
+ "Some statistics are available directly on your Performance Dashboard, "
1531
+ "however, the comprehensive suite of statistics are available on the "
1532
+ "Statistics screen. Web server logs created by Nginx or Apache can be "
1533
+ "analyzed if accessible."
1534
  msgstr ""
1535
 
1536
+ #: UsageStatistics_GeneralPage_View.php:29
1537
  msgid ""
1538
+ "Use the caching statistics to compare the performance of different "
1539
+ "configurations like caching methods, object lifetimes and so on. Contact "
1540
+ "support for any help optimizing performance metrics or troubleshooting."
1541
  msgstr ""
1542
 
1543
+ #: UsageStatistics_GeneralPage_View.php:35
1544
+ msgid "Slot time (seconds):"
1545
  msgstr ""
1546
 
1547
+ #: UsageStatistics_GeneralPage_View.php:43
1548
+ msgid "Slots collected:"
1549
  msgstr ""
1550
 
1551
+ #: UsageStatistics_GeneralPage_View.php:53
1552
+ msgid "Use the system reported averages of CPU resource usage."
 
1553
  msgstr ""
1554
 
1555
+ #: UsageStatistics_GeneralPage_View.php:54
1556
+ msgid "Collect CPU usage"
 
 
1557
  msgstr ""
1558
 
1559
+ #: UsageStatistics_GeneralPage_View.php:59
1560
+ msgid "Parse server access log"
1561
  msgstr ""
1562
 
1563
+ #: UsageStatistics_GeneralPage_View.php:61
1564
  msgid ""
1565
+ "Enable collecting statistics from an Access Log. This provides much more "
1566
+ "precise statistics."
 
1567
  msgstr ""
1568
 
1569
+ #: UsageStatistics_GeneralPage_View.php:65
1570
+ msgid "Webserver:"
1571
  msgstr ""
1572
 
1573
+ #: UsageStatistics_GeneralPage_View.php:75
1574
+ msgid "Access Log Filename:"
 
 
 
1575
  msgstr ""
1576
 
1577
+ #: UsageStatistics_GeneralPage_View.php:84
1578
+ msgid "Access Log Format:"
1579
  msgstr ""
1580
 
1581
+ #: UserExperience_LazyLoad_Page_View.php:8
1582
+ #: UserExperience_LazyLoad_Plugin.php:104
1583
+ #: UserExperience_GeneralPage_View.php:20
1584
+ msgid "Lazy Loading"
 
1585
  msgstr ""
1586
 
1587
+ #: UserExperience_LazyLoad_Page_View.php:14
1588
+ msgid "Process HTML image tags"
1589
  msgstr ""
1590
 
1591
+ #: UserExperience_LazyLoad_Page_View.php:15
1592
+ msgid "Process <code>img</code> tags"
 
 
 
 
1593
  msgstr ""
1594
 
1595
+ #: UserExperience_LazyLoad_Page_View.php:22
1596
+ msgid "Process background images"
1597
  msgstr ""
1598
 
1599
+ #: UserExperience_LazyLoad_Page_View.php:23
1600
+ msgid "Process <code>background</code> styles"
 
 
1601
  msgstr ""
1602
 
1603
+ #: UserExperience_LazyLoad_Page_View.php:31
1604
+ msgid "Exclude tags containing words"
1605
+ msgstr ""
1606
+
1607
+ #: UserExperience_LazyLoad_Page_View.php:37
1608
+ msgid "Script Embed method:"
1609
  msgstr ""
1610
 
1611
+ #: Extension_FragmentCache_WpObjectCache.php:530
1612
  #, php-format
1613
+ msgid "Fragment Caching %d/%d fragments using %s%s"
 
 
 
 
1614
  msgstr ""
1615
 
1616
+ #: Generic_AdminActions_Config.php:57
1617
+ #, php-format
1618
+ msgid "Content-Disposition: attachment; filename=%s.json"
 
1619
  msgstr ""
1620
 
1621
+ #: Generic_AdminActions_Config.php:151
1622
+ msgid "Database Cluster configuration file has been successfully saved"
1623
  msgstr ""
1624
 
1625
+ #: Extension_Swarmify_Page_View.php:30
1626
+ msgid "API Key:"
 
 
 
 
 
1627
  msgstr ""
1628
 
1629
+ #: Extension_Swarmify_Page_View.php:44 Extension_NewRelic_Page_View_Apm.php:122
1630
+ msgid "Behavior Settings"
1631
  msgstr ""
1632
 
1633
+ #: Extension_Swarmify_Page_View.php:49
1634
+ msgid "&lt;video&gt;:"
 
 
 
1635
  msgstr ""
1636
 
1637
+ #: Extension_Swarmify_Page_View.php:60
1638
+ msgid "JWPlayer:"
1639
  msgstr ""
1640
 
1641
+ #: Extension_Swarmify_Page_View.php:71
1642
+ msgid "Logged In:"
 
 
 
1643
  msgstr ""
1644
 
1645
+ #: CdnEngine_Mirror_RackSpaceCdn.php:122 CdnEngine_Mirror_Highwinds.php:53
1646
+ #: CdnEngine_Mirror_LimeLight.php:79
1647
+ msgid "Failed to purge: "
1648
  msgstr ""
1649
 
1650
+ #: Cdn_Highwinds_Popup_View_SelectHost.php:20
1651
+ msgid "Select host to use"
1652
  msgstr ""
1653
 
1654
+ #: Cdn_RackSpaceCdn_Popup_View_Services.php:24
1655
+ msgid "Select service to use"
1656
  msgstr ""
1657
 
1658
+ #: Cdn_MaxCdn_Popup_View_Zone.php:15 Cdnfsd_StackPath_Popup_View_Zone.php:15
1659
+ #: Cdnfsd_MaxCdn_Popup_View_Zone.php:15 Cdn_StackPath_Popup_View_Zone.php:15
1660
+ msgid "Configure zone"
1661
  msgstr ""
1662
 
1663
+ #: Extension_NewRelic_GeneralPage_View.php:9
1664
+ #: Extension_NewRelic_Plugin_Admin.php:97
1665
+ #: Extension_NewRelic_Plugin_Admin.php:98 inc/options/common/header.php:43
1666
+ msgid "Monitoring"
1667
  msgstr ""
1668
 
1669
+ #: Extension_NewRelic_GeneralPage_View.php:28
1670
+ #: Extension_CloudFlare_Popup_View_Intro.php:26
1671
+ #: Extension_NewRelic_Popup_View_Intro.php:20 Generic_ConfigLabels.php:9
1672
+ #: Cdn_RackSpaceCloudFiles_Popup_View_Intro.php:27
1673
+ #: Cdn_RackSpaceCdn_Popup_View_Intro.php:26 inc/options/cdn/rscf.php:16
1674
+ msgid "<acronym title=\"Application Programming Interface\">API</acronym> key:"
1675
  msgstr ""
1676
 
1677
+ #: Extension_NewRelic_GeneralPage_View.php:39
1678
+ msgid "Application name:"
 
 
1679
  msgstr ""
1680
 
1681
+ #: UsageStatistics_Page_View.php:22
1682
+ msgid "Web Requests"
 
 
1683
  msgstr ""
1684
 
1685
+ #: UsageStatistics_Page_View.php:310 DbCache_Plugin.php:218
1686
+ msgid "Database"
 
 
1687
  msgstr ""
1688
 
1689
+ #: UsageStatistics_Page_View.php:366
1690
+ msgid "System Info"
 
 
1691
  msgstr ""
1692
 
1693
+ #: UsageStatistics_Page_View.php:399
1694
+ msgid "Cache Storage"
 
 
1695
  msgstr ""
1696
 
1697
+ #: Cdnfsd_StackPath_Popup_View_Zone.php:54
1698
+ #: Cdnfsd_CloudFront_Popup_View_Distribution.php:56
1699
+ #: Cdnfsd_MaxCdn_Popup_View_Zone.php:54
1700
+ msgid "Don't reconfigure, I know what I'm doing"
1701
  msgstr ""
1702
 
1703
+ #: ObjectCache_Page_View_PurgeLog.php:13
1704
+ msgid "Object Cache Purges Log"
 
 
 
 
1705
  msgstr ""
1706
 
1707
+ #: Extension_FeedBurner_Page_View.php:23
1708
+ msgid "Google FeedBurner"
 
 
1709
  msgstr ""
1710
 
1711
+ #: Extension_FeedBurner_Page_View.php:29
1712
+ msgid "Additional <acronym title=\"Uniform Resource Locator\">URL</acronym>s:"
 
 
 
1713
  msgstr ""
1714
 
1715
+ #: Extension_FeedBurner_Page_View.php:30
1716
  msgid ""
1717
+ "Specify any additional feed <acronym title=\"Uniform Resource Locator\">"
1718
+ "URL</acronym>s to ping on FeedBurner."
 
 
 
1719
  msgstr ""
1720
 
1721
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Create.php:23
1722
+ msgid "Create new service"
 
1723
  msgstr ""
1724
 
1725
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Create.php:67
1726
+ msgid ""
1727
+ "The domain name through which visitors retrieve content. You will be "
1728
+ "provided with a target domain to use as an alias for this CNAME"
1729
  msgstr ""
1730
 
1731
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Create.php:81
1732
+ msgid "The name should be a single word, and cannot contain any dots (.)."
1733
  msgstr ""
1734
 
1735
+ #: Extension_Swarmify_Widget_View_NotConfigured.php:9
1736
  msgid ""
1737
+ "Just as the load time and overall performance of your website impacts user "
1738
+ "satisfaction, so does the performance of your online videos. Optimize your "
1739
+ "video performance by enabling the Swarmify SmartVideo&#8482 solution."
1740
  msgstr ""
1741
 
1742
+ #: Extension_Swarmify_Widget_View_NotConfigured.php:11
1743
+ msgid ""
1744
+ "Swarmify is a service that lets you speed up your site even more with W3 "
1745
+ "Total Cache."
1746
  msgstr ""
1747
 
1748
+ #: Extension_Swarmify_Widget_View_NotConfigured.php:12
1749
+ msgid "Sign Up Now and Save 25%"
1750
  msgstr ""
1751
 
1752
+ #: Extension_Swarmify_Widget_View_NotConfigured.php:13
1753
+ msgid "Free 14 day limited trial"
1754
  msgstr ""
1755
 
1756
+ #: Extension_Swarmify_Widget_View_NotConfigured.php:15
1757
+ msgid ""
1758
+ "If you already have a Swarmify configuration key, or need to update your "
1759
+ "existing key, click here:"
 
 
 
 
1760
  msgstr ""
1761
 
1762
+ #: Extension_Swarmify_Widget_View_NotConfigured.php:16
1763
+ msgid "Configure"
 
 
 
 
 
 
1764
  msgstr ""
1765
 
1766
+ #: Generic_WidgetServices.php:33 Cdn_StackPath2_Widget_View_Unauthorized.php:32
1767
+ #: Cdn_StackPath2_Page_View.php:55
1768
+ msgid "Premium Services"
 
 
 
 
 
1769
  msgstr ""
1770
 
1771
+ #: Extension_CloudFlare_Popup_View_Intro.php:15
1772
+ msgid "Your CloudFlare API key"
 
 
 
 
 
 
 
 
 
1773
  msgstr ""
1774
 
1775
+ #: Extension_CloudFlare_Popup_View_Intro.php:18
1776
+ msgid "Email:"
1777
  msgstr ""
1778
 
1779
+ #: CdnEngine_Mirror_Edgecast.php:38
1780
+ msgid "Empty account #."
1781
  msgstr ""
1782
 
1783
+ #: CdnEngine_Mirror_Edgecast.php:44
1784
+ msgid "Empty token."
1785
  msgstr ""
1786
 
1787
+ #: CdnEngine_Mirror_Edgecast.php:59 CdnEngine_Mirror_Akamai.php:105
1788
+ #: CdnEngine_Mirror_MaxCdn.php:156 CdnEngine_Mirror_Cotendo.php:106
1789
+ #: inc/lightbox/self_test.php:276 inc/lightbox/self_test.php:293
1790
+ #: inc/lightbox/self_test.php:307
1791
+ msgid "OK"
1792
  msgstr ""
1793
 
1794
+ #: CdnEngine_Mirror_Edgecast.php:63 CdnEngine_Mirror_Akamai.php:95
1795
+ #: CdnEngine_Mirror_Akamai.php:100 CdnEngine_Mirror_Cotendo.php:100
1796
+ #, php-format
1797
+ msgid "Unable to purge (%s)."
 
 
 
 
1798
  msgstr ""
1799
 
1800
+ #: CdnEngine_Mirror_Edgecast.php:118
1801
+ msgid "Invalid Request Parameter"
 
 
 
 
 
 
1802
  msgstr ""
1803
 
1804
+ #: CdnEngine_Mirror_Edgecast.php:122
1805
+ msgid "Authentication Failure or Insufficient Access Rights"
1806
  msgstr ""
1807
 
1808
+ #: CdnEngine_Mirror_Edgecast.php:126
1809
+ msgid "Invalid Request URI"
1810
  msgstr ""
1811
 
1812
+ #: CdnEngine_Mirror_Edgecast.php:130
1813
+ msgid "Invalid Request"
1814
  msgstr ""
1815
 
1816
+ #: CdnEngine_Mirror_Edgecast.php:134
1817
+ msgid "Server Error"
 
 
 
 
1818
  msgstr ""
1819
 
1820
+ #: Extension_CloudFlare_Plugin.php:151
1821
+ msgid "CloudFlare"
1822
  msgstr ""
1823
 
1824
+ #: Extension_CloudFlare_Plugin.php:157
1825
+ msgid "My Websites"
1826
  msgstr ""
1827
 
1828
+ #: Extension_CloudFlare_Plugin.php:163
1829
+ msgid "Analytics"
1830
  msgstr ""
1831
 
1832
+ #: Extension_CloudFlare_Plugin.php:169
1833
+ msgid "Account"
1834
  msgstr ""
1835
 
1836
+ #: Extension_NewRelic_AdminNotes.php:23
1837
+ msgid "CDN"
1838
  msgstr ""
1839
 
1840
+ #: Extension_NewRelic_AdminNotes.php:25
1841
+ msgid "Browser Cache and use compression"
1842
  msgstr ""
1843
 
1844
+ #: Extension_NewRelic_AdminNotes.php:29
1845
+ #, php-format
1846
  msgid ""
1847
+ "Application monitoring has detected that your page load time is higher than "
1848
+ "300ms. It is recommended that you enable the following features: %s %s"
 
 
 
 
 
1849
  msgstr ""
1850
 
1851
+ #: Extension_Wpml_Plugin_Admin.php:22
1852
+ #, php-format
1853
+ msgid ""
1854
+ "W3 Total Cache's Page caching cannot work effectively when WPML Language URL "
1855
+ "formatis \"Language name added as a parameter\" used. Please consider "
1856
+ "another URL format. Visit the WPML -&gt; Languages settings. %s"
1857
  msgstr ""
1858
 
1859
+ #: Extension_Wpml_Plugin_Admin.php:50
1860
+ msgid "Improves page caching interoperability with WPML."
 
1861
  msgstr ""
1862
 
1863
+ #: Extension_Wpml_Plugin_Admin.php:56
1864
+ msgid "Improve the caching performance of websites localized by WPML."
1865
  msgstr ""
1866
 
1867
+ #: Extension_Wpml_Plugin_Admin.php:58
1868
+ msgid ""
1869
+ "Localization is a type of personalization that makes websites more difficult "
1870
+ "to scale. This extension reduces the response time of websites localized by "
1871
+ "WPML."
1872
  msgstr ""
1873
 
1874
+ #: Extension_Wpml_Plugin_Admin.php:121
1875
+ #, php-format
1876
  msgid ""
1877
+ "Activating the <a href=\"%s\">WPML</a> extension for W3 Total Cache may be "
1878
+ "helpful for your site. %s%s"
 
 
1879
  msgstr ""
1880
 
1881
+ #: Extension_Wpml_Plugin_Admin.php:126 Util_Ui.php:99
1882
+ #: Extension_Genesis_Plugin_Admin.php:130
1883
+ #: Extension_WordPressSeo_Plugin_Admin.php:93
1884
+ msgid "Hide this message"
1885
  msgstr ""
1886
 
1887
+ #: UsageStatistics_Widget.php:25
1888
+ msgid "Caching Statistics"
1889
  msgstr ""
1890
 
1891
+ #: Cdn_StackPath2_Widget_View_Authorized.php:23
1892
+ msgid "Report - 7 days"
1893
  msgstr ""
1894
 
1895
+ #: Cdn_Highwinds_Page_View.php:24 Cdn_RackSpaceCdn_Page_View.php:41
1896
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:41
1897
+ msgid ""
1898
+ "<acronym title=\"Content Delivery Network\">CDN</acronym> host (<acronym "
1899
+ "title=\"Canonical Name\">CNAME</acronym> target):"
1900
  msgstr ""
1901
 
1902
+ #: Cdn_Highwinds_Page_View.php:45
1903
+ msgid "Configure <acronym title=\"Canonical Name\">CNAME</acronym>s"
1904
  msgstr ""
1905
 
1906
+ #: BrowserCache_Plugin.php:349
1907
+ msgid "Browser Cache: Update Media Query String"
1908
  msgstr ""
1909
 
1910
+ #: Generic_AdminNotes.php:25
1911
+ #, php-format
1912
+ msgid ""
1913
+ "<strong>%s</strong> is write-able. When finished installing the plugin, "
1914
+ "change the permissions back to the default: <strong>chmod 755 %s</strong>. "
1915
+ "Permissions are currently %s. %s"
1916
  msgstr ""
1917
 
1918
+ #: Generic_AdminNotes.php:43
1919
+ #, php-format
1920
+ msgid ""
1921
+ "Unfortunately the PHP installation is incomplete, the <strong>zlib module is "
1922
+ "missing</strong>. This is a core PHP module. Notify the server administrator."
1923
+ " %s"
1924
  msgstr ""
1925
 
1926
+ #: Generic_AdminNotes.php:57
1927
+ #, php-format
1928
+ msgid ""
1929
+ "Either the PHP configuration, web server configuration or a script in the "
1930
+ "WordPress installation has <strong>zlib.output_compression</strong> enabled."
1931
+ "<br />Please locate and disable this setting to ensure proper HTTP "
1932
+ "compression behavior. %s"
1933
  msgstr ""
1934
 
1935
+ #: Generic_AdminNotes.php:68
1936
+ #, php-format
1937
+ msgid ""
1938
+ "nginx.conf rules have been updated. Please restart nginx server to provide a "
1939
+ "consistent user experience. %s"
1940
  msgstr ""
1941
 
1942
+ #: Generic_AdminNotes.php:81
1943
+ #, php-format
1944
+ msgid ""
1945
+ "Preview mode is active: Changed settings will not take effect until preview "
1946
+ "mode is %s or %s."
1947
  msgstr ""
1948
 
1949
+ #: Generic_AdminNotes.php:82
1950
+ msgid "deploy"
1951
  msgstr ""
1952
 
1953
+ #: Generic_AdminNotes.php:85
1954
+ msgid "disable"
1955
  msgstr ""
1956
 
1957
+ #: Generic_AdminNotes.php:90 inc/options/general.php:26
1958
+ #, php-format
1959
+ msgid "To preview any changed settings (without deploying): %s"
1960
  msgstr ""
1961
 
1962
+ #: Generic_AdminNotes.php:105
1963
+ msgid "empty the page cache"
 
 
1964
  msgstr ""
1965
 
1966
+ #: Generic_AdminNotes.php:111
1967
+ #, php-format
1968
+ msgid "check the %s to maintain the desired user experience"
1969
  msgstr ""
1970
 
1971
+ #: Generic_AdminNotes.php:114
1972
+ msgid "minify settings"
 
 
1973
  msgstr ""
1974
 
1975
+ #: Generic_AdminNotes.php:123
1976
+ #, php-format
1977
+ msgid "One or more plugins have been activated or deactivated, please %s. %s"
1978
  msgstr ""
1979
 
1980
+ #: Generic_AdminNotes.php:125 Cdn_AdminNotes.php:246
1981
+ msgid " and "
1982
  msgstr ""
1983
 
1984
+ #: Generic_AdminNotes.php:142 Generic_AdminNotes.php:161
1985
+ #, php-format
1986
+ msgid ""
1987
+ "The setting change(s) made either invalidate the cached data or modify the "
1988
+ "behavior of the site. %s now to provide a consistent user experience. %s"
1989
  msgstr ""
1990
 
1991
+ #: Generic_AdminNotes.php:182
1992
+ #, php-format
1993
  msgid ""
1994
+ "You’re running debug mode, it’s using Resources and not recommend to run "
1995
+ "continuously. %s"
1996
  msgstr ""
1997
 
1998
+ #: Generic_AdminNotes.php:209
1999
+ #, php-format
2000
  msgid ""
2001
+ "The required directives for fancy permalinks could not be detected, please "
2002
+ "confirm they are available: <a href=\"http://codex.wordpress."
2003
+ "org/Using_Permalinks#Creating_and_editing_.28.htaccess.29\">Creating and "
2004
+ "editing</a> %s"
2005
  msgstr ""
2006
 
2007
+ #: Generic_AdminNotes.php:222
2008
+ msgid ""
2009
+ "The following memcached servers are not responding or not running:</p><ul>"
2010
  msgstr ""
2011
 
2012
+ #: Generic_AdminNotes.php:229
2013
+ msgid ""
2014
+ "</ul><p>This message will automatically disappear once the issue is resolved."
2015
  msgstr ""
2016
 
2017
+ #: Cdn_StackPath2_Popup_View_Stacks.php:12
2018
+ #: Cdnfsd_StackPath2_Popup_View_Stacks.php:12
2019
+ msgid "Select stack to use"
2020
  msgstr ""
2021
 
2022
+ #: BrowserCache_ConfigLabels.php:7
2023
+ msgid "Browser Cache:"
 
 
2024
  msgstr ""
2025
 
2026
+ #: BrowserCache_ConfigLabels.php:8
2027
+ msgid "Prevent caching exception list:"
2028
  msgstr ""
2029
 
2030
+ #: BrowserCache_ConfigLabels.php:9
2031
+ msgid "Do not process 404 errors for static objects with WordPress"
2032
  msgstr ""
2033
 
2034
+ #: BrowserCache_ConfigLabels.php:10
2035
+ msgid "404 error exception list:"
2036
  msgstr ""
2037
 
2038
+ #: BrowserCache_ConfigLabels.php:11 BrowserCache_ConfigLabels.php:22
2039
+ #: BrowserCache_ConfigLabels.php:31 inc/options/browsercache.php:40
2040
+ msgid "Set Last-Modified header"
2041
  msgstr ""
2042
 
2043
+ #: BrowserCache_ConfigLabels.php:12 BrowserCache_ConfigLabels.php:23
2044
+ #: BrowserCache_ConfigLabels.php:32 inc/options/browsercache.php:49
2045
+ msgid "Set expires header"
 
2046
  msgstr ""
2047
 
2048
+ #: BrowserCache_ConfigLabels.php:13 BrowserCache_ConfigLabels.php:24
2049
+ #: BrowserCache_ConfigLabels.php:33
2050
+ msgid "Expires header lifetime:"
2051
  msgstr ""
2052
 
2053
+ #: BrowserCache_ConfigLabels.php:14 BrowserCache_ConfigLabels.php:25
2054
+ #: BrowserCache_ConfigLabels.php:34 inc/options/browsercache.php:56
2055
+ msgid "Set cache control header"
2056
  msgstr ""
2057
 
2058
+ #: BrowserCache_ConfigLabels.php:15 BrowserCache_ConfigLabels.php:26
2059
+ #: BrowserCache_ConfigLabels.php:35
2060
+ msgid "Cache Control policy:"
 
2061
  msgstr ""
2062
 
2063
+ #: BrowserCache_ConfigLabels.php:16
2064
+ msgid "Set entity tag (eTag)"
 
 
2065
  msgstr ""
2066
 
2067
+ #: BrowserCache_ConfigLabels.php:17 BrowserCache_ConfigLabels.php:28
2068
+ #: BrowserCache_ConfigLabels.php:37 inc/options/browsercache.php:71
2069
+ msgid "Set W3 Total Cache header"
2070
  msgstr ""
2071
 
2072
+ #: BrowserCache_ConfigLabels.php:18 BrowserCache_ConfigLabels.php:29
2073
+ #: inc/options/browsercache.php:79
2074
  msgid ""
2075
+ "Enable <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> (gzip) "
2076
+ "compression"
 
 
 
 
2077
  msgstr ""
2078
 
2079
+ #: BrowserCache_ConfigLabels.php:19 BrowserCache_ConfigLabels.php:30
2080
+ #: inc/options/browsercache.php:88
2081
+ msgid ""
2082
+ "Enable <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> (brotli)"
2083
+ " compression"
2084
  msgstr ""
2085
 
2086
+ #: BrowserCache_ConfigLabels.php:20 BrowserCache_ConfigLabels.php:40
2087
+ #: inc/options/browsercache.php:96
2088
+ msgid "Prevent caching of objects after settings change"
 
2089
  msgstr ""
2090
 
2091
+ #: BrowserCache_ConfigLabels.php:21 BrowserCache_ConfigLabels.php:41
2092
+ msgid "Disable cookies for static files"
2093
  msgstr ""
2094
 
2095
+ #: BrowserCache_ConfigLabels.php:27 BrowserCache_ConfigLabels.php:36
2096
+ #: inc/options/browsercache.php:64
2097
+ msgid "Set entity tag (ETag)"
2098
  msgstr ""
2099
 
2100
+ #: BrowserCache_ConfigLabels.php:38
2101
+ msgid ""
2102
+ "Enable <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> (gzip) "
2103
+ "compression</label>"
2104
  msgstr ""
2105
 
2106
+ #: BrowserCache_ConfigLabels.php:39
2107
+ msgid ""
2108
+ "Enable <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> (brotli)"
2109
+ " compression</label>"
2110
  msgstr ""
2111
 
2112
+ #: BrowserCache_ConfigLabels.php:42
2113
+ msgid ""
2114
+ "Access session cookies through the <acronym title=\"Hypertext Transfer "
2115
+ "Protocol\">HTTP</acronym> only:"
2116
  msgstr ""
2117
 
2118
+ #: BrowserCache_ConfigLabels.php:43
2119
+ msgid "Send session cookies only to secure connections:"
2120
  msgstr ""
2121
 
2122
+ #: BrowserCache_ConfigLabels.php:44
2123
+ msgid "Use cookies to store session IDs:"
2124
  msgstr ""
2125
 
2126
+ #: BrowserCache_ConfigLabels.php:45
2127
  msgid ""
2128
+ "<acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> Strict "
2129
+ "Transport Security policy"
2130
  msgstr ""
2131
 
2132
+ #: BrowserCache_ConfigLabels.php:46 BrowserCache_ConfigLabels.php:48
2133
+ #: BrowserCache_ConfigLabels.php:50 BrowserCache_ConfigLabels.php:59
2134
+ msgid "Directive:"
2135
  msgstr ""
2136
 
2137
+ #: BrowserCache_ConfigLabels.php:47
2138
+ msgid "X-Frame-Options"
 
2139
  msgstr ""
2140
 
2141
+ #: BrowserCache_ConfigLabels.php:49
2142
+ msgid "X-<acronym title=\"Cross-Site Scripting\">XSS</acronym>-Protection"
2143
  msgstr ""
2144
 
2145
+ #: BrowserCache_ConfigLabels.php:51
2146
+ msgid "X-Content-Type-Options"
 
 
 
2147
  msgstr ""
2148
 
2149
+ #: BrowserCache_ConfigLabels.php:52
2150
+ msgid ""
2151
+ "<acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> Public Key "
2152
+ "Pinning"
2153
  msgstr ""
2154
 
2155
+ #: BrowserCache_ConfigLabels.php:53
2156
+ msgid "Public Key:"
 
 
 
 
2157
  msgstr ""
2158
 
2159
+ #: BrowserCache_ConfigLabels.php:54
2160
+ msgid "Public Key (Backup):"
2161
  msgstr ""
2162
 
2163
+ #: BrowserCache_ConfigLabels.php:55
2164
+ msgid "Extra Parameters:"
2165
  msgstr ""
2166
 
2167
+ #: BrowserCache_ConfigLabels.php:56
2168
+ msgid "Report <acronym title=\"Uniform Resource Locator\">URL</acronym>:"
 
2169
  msgstr ""
2170
 
2171
+ #: BrowserCache_ConfigLabels.php:57
2172
+ msgid "Report Mode Only:"
2173
  msgstr ""
2174
 
2175
+ #: BrowserCache_ConfigLabels.php:58
2176
+ msgid "Referrer Policy"
 
 
2177
  msgstr ""
2178
 
2179
+ #: BrowserCache_ConfigLabels.php:60
2180
+ msgid "Content Security Policy"
 
 
2181
  msgstr ""
2182
 
2183
+ #: BrowserCache_ConfigLabels.php:61
2184
+ msgid "base-uri:"
 
 
2185
  msgstr ""
2186
 
2187
+ #: BrowserCache_ConfigLabels.php:62
2188
+ msgid "frame-src:"
 
2189
  msgstr ""
2190
 
2191
+ #: BrowserCache_ConfigLabels.php:63
2192
+ msgid "connect-src:"
 
2193
  msgstr ""
2194
 
2195
+ #: BrowserCache_ConfigLabels.php:64
2196
+ msgid "font-src:"
 
2197
  msgstr ""
2198
 
2199
+ #: BrowserCache_ConfigLabels.php:65
2200
+ msgid "script-src:"
2201
  msgstr ""
2202
 
2203
+ #: BrowserCache_ConfigLabels.php:66
2204
+ msgid "style-src:"
2205
  msgstr ""
2206
 
2207
+ #: BrowserCache_ConfigLabels.php:67
2208
+ msgid "img-src:"
2209
  msgstr ""
2210
 
2211
+ #: BrowserCache_ConfigLabels.php:68
2212
+ msgid "media-src:"
 
2213
  msgstr ""
2214
 
2215
+ #: BrowserCache_ConfigLabels.php:69
2216
+ msgid "object-src:"
2217
  msgstr ""
2218
 
2219
+ #: BrowserCache_ConfigLabels.php:70
2220
+ msgid "plugin-types:"
2221
  msgstr ""
2222
 
2223
+ #: BrowserCache_ConfigLabels.php:71
2224
+ msgid "form-action:"
2225
  msgstr ""
2226
 
2227
+ #: BrowserCache_ConfigLabels.php:72
2228
+ msgid "frame-ancestors:"
2229
  msgstr ""
2230
 
2231
+ #: BrowserCache_ConfigLabels.php:73
2232
+ msgid "sandbox:"
 
 
 
2233
  msgstr ""
2234
 
2235
+ #: BrowserCache_ConfigLabels.php:74
2236
+ msgid "default-src:"
2237
  msgstr ""
2238
 
2239
+ #: Extension_CloudFlare_Popup_View_Zones.php:23
2240
+ msgid "Select zone"
2241
  msgstr ""
2242
 
2243
+ #: Cdn_GoogleDrive_Page_View.php:25
2244
+ msgid "Folder:"
 
2245
  msgstr ""
2246
 
2247
+ #: Cdn_GoogleDrive_Page_View.php:35
2248
+ msgid "Test upload"
 
 
2249
  msgstr ""
2250
 
2251
+ #: Cdn_AdminNotes.php:25
2252
+ #, php-format
2253
  msgid ""
2254
+ "The active theme has changed, please %s now to ensure proper operation. %s"
 
2255
  msgstr ""
2256
 
2257
+ #: Cdn_AdminNotes.php:28
2258
+ msgid "upload active theme files"
2259
  msgstr ""
2260
 
2261
+ #: Cdn_AdminNotes.php:42
2262
+ #, php-format
2263
+ msgid "Upgraded WordPress? Please %s files now to ensure proper operation. %s"
2264
  msgstr ""
2265
 
2266
+ #: Cdn_AdminNotes.php:84
2267
+ #, php-format
2268
+ msgid ""
2269
+ "Make sure to %s and upload the %s, files to the <acronym title=\"Content "
2270
+ "Delivery Network\">CDN</acronym> to ensure proper operation. %s"
2271
  msgstr ""
2272
 
2273
+ #: Cdn_AdminNotes.php:97
2274
+ #, php-format
2275
+ msgid ""
2276
+ "Settings that affect Browser Cache settings for files hosted by the CDN have "
2277
+ "been changed. To apply the new settings %s and %s. %s"
2278
  msgstr ""
2279
 
2280
+ #: Cdn_AdminNotes.php:100
2281
+ msgid "export the media library"
2282
  msgstr ""
2283
 
2284
+ #: Cdn_AdminNotes.php:116
2285
+ #, php-format
2286
+ msgid ""
2287
+ "Make sure to whitelist your servers IPs. Follow the instructions on %s. The "
2288
+ "IP for this server is %s. %s"
2289
  msgstr ""
2290
 
2291
+ #: Cdn_AdminNotes.php:131
2292
+ #, php-format
2293
  msgid ""
2294
+ "The <strong>CURL PHP</strong> extension is not available. Please install it "
2295
+ "to enable S3 or CloudFront functionality. %s"
 
2296
  msgstr ""
2297
 
2298
+ #: Cdn_AdminNotes.php:155
2299
  #, php-format
2300
  msgid ""
2301
+ "The %s has unresolved errors. Empty the queue to restore normal operation."
 
2302
  msgstr ""
2303
 
2304
+ #: Cdn_AdminNotes.php:158
2305
+ msgid "unsuccessful transfer queue"
2306
  msgstr ""
2307
 
2308
+ #: Cdn_AdminNotes.php:180
2309
+ #, php-format
2310
+ msgid ""
2311
+ "The uploads directory is not available. Default WordPress directories will "
2312
+ "be created: <strong>%s</strong>."
2313
  msgstr ""
2314
 
2315
+ #: Cdn_AdminNotes.php:187
2316
+ #, php-format
2317
+ msgid ""
2318
+ "The uploads path found in the database (%s) is inconsistent with the actual "
2319
+ "path. Please manually adjust the upload path either in miscellaneous "
2320
+ "settings or if not using a custom path %s automatically to resolve the issue."
2321
  msgstr ""
2322
 
2323
+ #: Cdn_AdminNotes.php:190
2324
+ msgid "update the path"
2325
  msgstr ""
2326
 
2327
+ #: Cdn_AdminNotes.php:203
2328
+ msgid ""
2329
+ "A configuration issue prevents <acronym title=\"Content Delivery Network\">"
2330
+ "CDN</acronym> from working:\n"
2331
+ " The <strong>\"Replace default "
2332
+ "hostname with\"</strong>\n"
2333
+ " field cannot be empty. Enter "
2334
+ "<acronym\n"
2335
+ " title=\"Content Delivery Network\">"
2336
+ "CDN</acronym>\n"
2337
+ " provider hostname <a href=\"?"
2338
+ "page=w3tc_cdn#configuration\">here</a>.\n"
2339
+ " <em>(This is the hostname used in "
2340
+ "order to view objects\n"
2341
+ " in a browser.)</em>"
2342
  msgstr ""
2343
 
2344
+ #: Cdn_AdminNotes.php:213
2345
+ msgid ""
2346
+ "The <strong>\"Access key\", \"Secret key\" and \"Bucket\"</strong> fields "
2347
+ "cannot be empty."
2348
  msgstr ""
2349
 
2350
+ #: Cdn_AdminNotes.php:217
2351
+ msgid ""
2352
+ "The <strong>\"Access key\", \"Secret key\", \"Bucket\" and \"Replace default "
2353
+ "hostname with\"</strong> fields cannot be empty."
2354
  msgstr ""
2355
 
2356
+ #: Cdn_AdminNotes.php:221
2357
+ msgid ""
2358
+ "The <strong>\"Access key\", \"Secret key\" and \"Replace default hostname "
2359
+ "with\"</strong> fields cannot be empty."
2360
  msgstr ""
2361
 
2362
+ #: Cdn_AdminNotes.php:225
2363
+ msgid ""
2364
+ "The <strong>\"Username\", \"API key\", \"Container\" and \"Replace default "
2365
+ "hostname with\"</strong> fields cannot be empty."
2366
  msgstr ""
2367
 
2368
+ #: Cdn_AdminNotes.php:229
2369
+ msgid ""
2370
+ "The <strong>\"Account name\", \"Account key\" and \"Container\"</strong> "
2371
+ "fields cannot be empty."
2372
  msgstr ""
2373
 
2374
+ #: Cdn_AdminNotes.php:233 Cdn_AdminNotes.php:258 Cdn_AdminNotes.php:262
2375
+ #: Cdn_AdminNotes.php:266
2376
+ msgid ""
2377
+ "The <strong>\"Replace default hostname with\"</strong> field cannot be empty."
2378
  msgstr ""
2379
 
2380
+ #: Cdn_AdminNotes.php:239
2381
+ msgid "Authorization key"
2382
  msgstr ""
2383
 
2384
+ #: Cdn_AdminNotes.php:242
2385
+ msgid "Replace default hostname with"
 
 
2386
  msgstr ""
2387
 
2388
+ #: Cdn_AdminNotes.php:245
2389
+ #, php-format
2390
+ msgid "The <strong>%s</strong> field(s) cannot be empty."
2391
  msgstr ""
2392
 
2393
+ #: Cdn_AdminNotes.php:251
2394
+ msgid "The <strong>\"Authorization key\"</strong> is not correct."
 
2395
  msgstr ""
2396
 
2397
+ #: Cdn_AdminNotes.php:253
2398
+ msgid "You need to select / create a pull zone."
2399
  msgstr ""
2400
 
2401
+ #: Cdn_AdminNotes.php:275
2402
  msgid ""
2403
+ "A configuration issue prevents <acronym title=\"Content Delivery Network\">"
2404
+ "CDN</acronym> from working: "
2405
  msgstr ""
2406
 
2407
+ #: Cdn_AdminNotes.php:275
2408
+ msgid " <a href=\"?page=w3tc_cdn#configuration\">Specify it here</a>."
 
2409
  msgstr ""
2410
 
2411
+ #: Cdn_AdminNotes.php:297
2412
+ #, php-format
 
2413
  msgid ""
2414
+ "Encountered issue with CDN: %s. See %s for instructions of creating correct "
2415
+ "table."
2416
  msgstr ""
2417
 
2418
+ #: Cdn_AdminNotes.php:299
2419
+ msgid "Install page"
 
 
 
2420
  msgstr ""
2421
 
2422
+ #: Cdn_AdminNotes.php:302
2423
+ #, php-format
2424
+ msgid "Encountered issue with CDN: %s."
 
 
 
2425
  msgstr ""
2426
 
2427
+ #: Generic_WidgetServices_View.php:33
2428
+ msgid "Buy now"
2429
+ msgstr ""
2430
+
2431
+ #: Cdn_GeneralPage_View.php:14 Cdnfsd_GeneralPage_View.php:10
2432
  #, php-format
2433
  msgid ""
2434
+ " If you do not have a <acronym title=\"Content Delivery Network\">"
2435
+ "CDN</acronym> provider try StackPath. <a href=\"%s\" target=\"_blank\">Sign "
2436
+ "up now to enjoy a special offer!</a>."
2437
  msgstr ""
2438
 
2439
+ #: Cdn_GeneralPage_View.php:23
2440
  msgid ""
2441
+ "Theme files, media library attachments, <acronym title=\"Cascading Style "
2442
+ "Sheet\">CSS</acronym>, <acronym title=\"JavaScript\">JS</acronym> files etc "
2443
+ "will quickly for site visitors."
2444
  msgstr ""
2445
 
2446
+ #: Cdn_GeneralPage_View.php:32 Cdnfsd_GeneralPage_View.php:38
2447
+ msgid ""
2448
+ "Select the <acronym title=\"Content Delivery Network\">CDN</acronym> type "
2449
+ "you wish to use."
2450
  msgstr ""
2451
 
2452
+ #: Util_Ui.php:167
2453
+ msgid "Click to toggle"
2454
  msgstr ""
2455
 
2456
+ #: Util_Ui.php:192
2457
+ msgid "Save all settings"
 
2458
  msgstr ""
2459
 
2460
+ #: Util_Ui.php:198
2461
+ msgid "Save Settings & Purge Caches"
2462
  msgstr ""
2463
 
2464
+ #: Util_Ui.php:849
2465
+ msgid "Disk"
2466
  msgstr ""
2467
 
2468
+ #: Util_Ui.php:859 inc/options/general.php:75
2469
+ msgid "Opcode: eAccelerator"
 
 
 
 
2470
  msgstr ""
2471
 
2472
+ #: Util_Ui.php:864 inc/options/general.php:80
2473
+ msgid "Opcode: XCache"
2474
  msgstr ""
2475
 
2476
+ #: Util_Ui.php:869 inc/options/general.php:85
2477
+ msgid "Opcode: WinCache"
 
2478
  msgstr ""
2479
 
2480
+ #: Util_Ui.php:874 inc/options/general.php:90
2481
+ msgid "Memcached"
2482
  msgstr ""
2483
 
2484
+ #: Util_Ui.php:879 inc/options/general.php:101
2485
+ msgid "Redis"
 
2486
  msgstr ""
2487
 
2488
+ #: Util_Ui.php:890
2489
+ msgid "Shared Server:"
 
2490
  msgstr ""
2491
 
2492
+ #: Util_Ui.php:891 inc/options/general.php:107
2493
+ msgid "Dedicated / Virtual Server:"
2494
  msgstr ""
2495
 
2496
+ #: Util_Ui.php:892 inc/options/general.php:108
2497
+ msgid "Multiple Servers:"
2498
  msgstr ""
2499
 
2500
+ #: Util_Ui.php:992
2501
+ msgid "Use common settings"
2502
  msgstr ""
2503
 
2504
+ #: Util_Ui.php:996
2505
+ msgid "Use specific settings"
 
2506
  msgstr ""
2507
 
2508
+ #: Util_Ui.php:1024
2509
+ msgid "Preview"
2510
  msgstr ""
2511
 
2512
+ #: Util_Ui.php:1045
2513
  #, php-format
2514
+ msgid "%dh"
2515
  msgstr ""
2516
 
2517
+ #: Util_Ui.php:1047
2518
  #, php-format
2519
+ msgid "%dm"
2520
  msgstr ""
2521
 
2522
+ #: Util_Ui.php:1049
2523
  #, php-format
2524
+ msgid "%ds"
2525
  msgstr ""
2526
 
2527
+ #: Util_Ui.php:1051 Util_Ui.php:1054
2528
+ #, php-format
2529
+ msgid "%dms"
2530
  msgstr ""
2531
 
2532
+ #: Generic_WidgetSpreadTheWord_View.php:8
2533
+ msgid "Enjoying W3TC? Please support us!"
2534
  msgstr ""
2535
 
2536
+ #: Generic_Plugin_WidgetForum.php:50
2537
+ msgid "Discussions"
 
2538
  msgstr ""
2539
 
2540
+ #: CdnEngine_Mirror_Akamai.php:34 CdnEngine_Mirror_Cotendo.php:36
2541
+ msgid "Empty username."
2542
  msgstr ""
2543
 
2544
+ #: CdnEngine_Mirror_Akamai.php:40 CdnEngine_Mirror_Cotendo.php:42
2545
+ msgid "Empty password."
2546
  msgstr ""
2547
 
2548
+ #: CdnEngine_Mirror_Akamai.php:55 CdnEngine_Mirror_Cotendo.php:63
2549
+ #, php-format
2550
+ msgid "Constructor error (%s)."
2551
  msgstr ""
2552
 
2553
+ #: CdnEngine_Mirror_Akamai.php:85 CdnEngine_Mirror_Cotendo.php:92
2554
+ msgid "Invalid response."
2555
  msgstr ""
2556
 
2557
+ #: CdnEngine_Mirror_StackPath.php:41 CdnEngine_Mirror_StackPath.php:88
2558
+ #: CdnEngine_Mirror_MaxCdn.php:41 CdnEngine_Mirror_MaxCdn.php:116
2559
+ msgid "Malformed Authorization Key."
2560
  msgstr ""
2561
 
2562
+ #: CdnEngine_Mirror_StackPath.php:55 CdnEngine_Mirror_StackPath.php:102
2563
+ msgid "No zone defined"
2564
  msgstr ""
2565
 
2566
+ #: DbCache_ConfigLabels.php:7
2567
+ msgid "Database Cache Method:"
 
2568
  msgstr ""
2569
 
2570
+ #: DbCache_ConfigLabels.php:8
2571
+ msgid "Database Cache:"
 
 
 
2572
  msgstr ""
2573
 
2574
+ #: DbCache_ConfigLabels.php:10
2575
+ msgid "Don't cache queries for logged in users"
2576
  msgstr ""
2577
 
2578
+ #: DbCache_ConfigLabels.php:11 PgCache_ConfigLabels.php:43
2579
+ msgid "Maximum lifetime of cache objects:"
 
 
2580
  msgstr ""
2581
 
2582
+ #: DbCache_ConfigLabels.php:13 PgCache_ConfigLabels.php:49
2583
+ msgid "Never cache the following pages:"
2584
  msgstr ""
2585
 
2586
+ #: DbCache_ConfigLabels.php:14
2587
+ msgid "Ignored query stems:"
2588
  msgstr ""
2589
 
2590
+ #: DbCache_ConfigLabels.php:15
2591
+ msgid "Reject query words:"
2592
  msgstr ""
2593
 
2594
+ #: Minify_ConfigLabels.php:7
2595
+ msgid "Minify Cache Method:"
 
2596
  msgstr ""
2597
 
2598
+ #: Minify_ConfigLabels.php:8
2599
+ msgid "Minify:"
 
2600
  msgstr ""
2601
 
2602
+ #: Minify_ConfigLabels.php:10
2603
+ msgid "<acronym title=\"Hypertext Markup Language\">HTML</acronym> minifier:"
 
2604
  msgstr ""
2605
 
2606
+ #: Minify_ConfigLabels.php:11
2607
+ msgid "<acronym title=\"JavaScript\">JS</acronym> minifier:"
 
2608
  msgstr ""
2609
 
2610
+ #: Minify_ConfigLabels.php:12
2611
+ msgid "<acronym title=\"Cascading Style Sheets\">CSS</acronym> minifier:"
 
2612
  msgstr ""
2613
 
2614
+ #: Minify_ConfigLabels.php:13
2615
+ msgid "Minify mode:"
 
2616
  msgstr ""
2617
 
2618
+ #: Minify_ConfigLabels.php:14
2619
+ msgid ""
2620
+ "Rewrite <acronym title=\"Uniform Resource Locator\">URL</acronym> structure"
2621
  msgstr ""
2622
 
2623
+ #: Minify_ConfigLabels.php:15
2624
+ msgid "Disable minify for logged in users"
 
2625
  msgstr ""
2626
 
2627
+ #: Minify_ConfigLabels.php:16
2628
+ msgid "Minify error notification:"
 
 
 
2629
  msgstr ""
2630
 
2631
+ #: Minify_ConfigLabels.php:18
2632
  msgid ""
2633
+ "Inline <acronym title=\"Cascading Style Sheet\">CSS</acronym> minification"
 
 
 
 
 
2634
  msgstr ""
2635
 
2636
+ #: Minify_ConfigLabels.php:19
2637
+ msgid "Inline <acronym title=\"JavaScript\">JS</acronym> minification"
2638
  msgstr ""
2639
 
2640
+ #: Minify_ConfigLabels.php:20
2641
+ msgid "Don't minify feeds"
 
 
 
 
 
2642
  msgstr ""
2643
 
2644
+ #: Minify_ConfigLabels.php:21
2645
+ msgid "Ignored comment stems:"
2646
  msgstr ""
2647
 
2648
+ #: Minify_ConfigLabels.php:23
2649
+ msgid "Embed type:"
2650
  msgstr ""
2651
 
2652
+ #: Minify_ConfigLabels.php:24 Minify_ConfigLabels.php:26
2653
+ #: Minify_ConfigLabels.php:28 Minify_ConfigLabels.php:30
2654
+ msgid "Combine only"
 
2655
  msgstr ""
2656
 
2657
+ #: Minify_ConfigLabels.php:25
2658
+ msgid "After <span class=\"html-tag\">&lt;body&gt;</span>"
2659
  msgstr ""
2660
 
2661
+ #: Minify_ConfigLabels.php:27
2662
+ msgid "Before <span class=\"html-tag\">&lt;/body&gt;</span>"
 
2663
  msgstr ""
2664
 
2665
+ #: Minify_ConfigLabels.php:31
2666
+ msgid "@import handling:"
2667
  msgstr ""
2668
 
2669
+ #: Minify_ConfigLabels.php:32
2670
+ msgid "Update external files every:"
2671
  msgstr ""
2672
 
2673
+ #: Minify_ConfigLabels.php:34
2674
+ msgid "Never minify the following pages:"
2675
  msgstr ""
2676
 
2677
+ #: Minify_ConfigLabels.php:35
2678
+ msgid ""
2679
+ "Never minify the following <acronym title=\"JavaScript\">JS</acronym> files:"
2680
  msgstr ""
2681
 
2682
+ #: Minify_ConfigLabels.php:36
2683
+ msgid ""
2684
+ "Never minify the following <acronym title=\"Cascading Style Sheet\">"
2685
+ "CSS</acronym> files:"
2686
  msgstr ""
2687
 
2688
+ #: Minify_ConfigLabels.php:38
2689
+ msgid "Include external files/libraries:"
2690
  msgstr ""
2691
 
2692
+ #: Minify_ConfigLabels.php:40
2693
+ msgid "Pretty print"
2694
  msgstr ""
2695
 
2696
+ #: Minify_ConfigLabels.php:42 Minify_ConfigLabels.php:77
2697
+ #: inc/options/minify/yuijs2.php:9
2698
+ msgid "Path to JAVA executable:"
 
2699
  msgstr ""
2700
 
2701
+ #: Minify_ConfigLabels.php:43 Minify_ConfigLabels.php:78
2702
+ #: inc/options/minify/yuijs2.php:16
2703
+ msgid "Path to JAR file:"
2704
  msgstr ""
2705
 
2706
+ #: Minify_ConfigLabels.php:44
2707
+ msgid "Compilation level:"
 
 
 
 
2708
  msgstr ""
2709
 
2710
+ #: Minify_ConfigLabels.php:46 Minify_ConfigLabels.php:74
2711
+ msgid "Preserved comment removal (not applied when combine only is active)"
2712
  msgstr ""
2713
 
2714
+ #: Minify_ConfigLabels.php:47
2715
+ msgid "Line break removal (not applied when combine only is active)"
 
 
2716
  msgstr ""
2717
 
2718
+ #: Minify_ConfigLabels.php:49
2719
+ msgid "Remove unnecessary backslashes"
 
 
 
2720
  msgstr ""
2721
 
2722
+ #: Minify_ConfigLabels.php:50
2723
+ msgid "Compress colors"
 
2724
  msgstr ""
2725
 
2726
+ #: Minify_ConfigLabels.php:51
2727
+ msgid "Compress font-weight"
 
 
2728
  msgstr ""
2729
 
2730
+ #: Minify_ConfigLabels.php:52
2731
+ msgid "Lowercase selectors"
 
 
 
 
2732
  msgstr ""
2733
 
2734
+ #: Minify_ConfigLabels.php:53
2735
+ msgid "Remove last ;"
 
 
 
2736
  msgstr ""
2737
 
2738
+ #: Minify_ConfigLabels.php:54
2739
+ msgid "Remove space before !important"
2740
  msgstr ""
2741
 
2742
+ #: Minify_ConfigLabels.php:55
2743
+ msgid "Sort Properties"
2744
  msgstr ""
2745
 
2746
+ #: Minify_ConfigLabels.php:56
2747
+ msgid "Sort Selectors (caution)"
2748
  msgstr ""
2749
 
2750
+ #: Minify_ConfigLabels.php:57
2751
+ msgid "Discard invalid selectors"
2752
  msgstr ""
2753
 
2754
+ #: Minify_ConfigLabels.php:58
2755
+ msgid "Discard invalid properties"
2756
  msgstr ""
2757
 
2758
+ #: Minify_ConfigLabels.php:59
2759
+ msgid "Preserve CSS"
2760
  msgstr ""
2761
 
2762
+ #: Minify_ConfigLabels.php:60
2763
+ msgid "Add timestamp"
2764
  msgstr ""
2765
 
2766
+ #: Minify_ConfigLabels.php:62
2767
+ msgid "Compression:"
2768
  msgstr ""
2769
 
2770
+ #: Minify_ConfigLabels.php:63
2771
+ msgid "Optimize shorthands:"
2772
  msgstr ""
2773
 
2774
+ #: Minify_ConfigLabels.php:64
2775
+ msgid "Case for properties:"
2776
  msgstr ""
2777
 
2778
+ #: Minify_ConfigLabels.php:65
2779
+ msgid "Regroup selectors:"
2780
  msgstr ""
2781
 
2782
+ #: Minify_ConfigLabels.php:67
2783
+ msgid "Line break removal"
2784
  msgstr ""
2785
 
2786
+ #: Minify_ConfigLabels.php:69
2787
+ msgid "Clean"
 
 
2788
  msgstr ""
2789
 
2790
+ #: Minify_ConfigLabels.php:70
2791
+ msgid "Hide comments"
2792
  msgstr ""
2793
 
2794
+ #: Minify_ConfigLabels.php:72
2795
+ msgid "Wrap after:"
 
 
2796
  msgstr ""
2797
 
2798
+ #: Minify_ConfigLabels.php:75
2799
+ msgid "Line break removal (not safe, not applied when combine only is active)"
 
 
 
2800
  msgstr ""
2801
 
2802
+ #: Minify_ConfigLabels.php:79 Minify_ConfigLabels.php:84
2803
+ msgid "Line break after:"
 
 
2804
  msgstr ""
2805
 
2806
+ #: Minify_ConfigLabels.php:81
2807
+ msgid "Minify only, do not obfuscate local symbols"
 
 
2808
  msgstr ""
2809
 
2810
+ #: Minify_ConfigLabels.php:82
2811
+ msgid "Preserve unnecessary semicolons"
 
 
2812
  msgstr ""
2813
 
2814
+ #: Minify_ConfigLabels.php:83
2815
+ msgid "Disable all the built-in micro optimizations"
2816
  msgstr ""
2817
 
2818
+ #: Minify_Plugin_Admin.php:131
2819
+ #, php-format
2820
  msgid ""
2821
+ "Recently an error occurred while creating the CSS / JS minify cache: %s. %s"
 
2822
  msgstr ""
2823
 
2824
+ #: Minify_Plugin_Admin.php:148
2825
  #, php-format
2826
+ msgid "Minify: %s."
 
 
 
2827
  msgstr ""
2828
 
2829
+ #: Minify_Plugin_Admin.php:168
2830
+ msgid "Empty the minify cache"
2831
  msgstr ""
2832
 
2833
+ #: Minify_Plugin_Admin.php:192 Minify_Plugin_Admin.php:200
2834
+ msgid "Minification"
2835
  msgstr ""
2836
 
2837
+ #: Extension_Swarmify_Plugin.php:109
2838
+ msgid "WP_ADMIN page"
 
2839
  msgstr ""
2840
 
2841
+ #: Extension_Swarmify_Plugin.php:118
2842
+ msgid "logged in user rejected"
2843
  msgstr ""
2844
 
2845
+ #: Extension_Swarmify_Plugin.php:131
2846
+ #, php-format
2847
+ msgid "Swarmify%s"
2848
  msgstr ""
2849
 
2850
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:20
2851
+ msgid "New customer? Sign up now for a free trial!"
2852
  msgstr ""
2853
 
2854
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:26
2855
+ #: Cdn_StackPath_Widget_View_Unauthorized.php:12
2856
+ msgid "Sign Up Now "
2857
  msgstr ""
2858
 
2859
+ #: Extension_NewRelic_Popup_View_Intro.php:15
2860
+ msgid "Specify API Key"
2861
  msgstr ""
2862
 
2863
+ #: Cdn_Environment.php:152
2864
+ msgid "CDN module: Required Database SQL"
2865
+ msgstr ""
2866
+
2867
+ #: Cdnfsd_CloudFront_Popup_View_Intro.php:14
2868
  msgid ""
2869
+ "Your <acronym title=\"Amazon Web Services\">AWS</acronym> CloudFront Account "
2870
+ "Credentials"
2871
  msgstr ""
2872
 
2873
+ #: Extension_CloudFlare_GeneralPage_View.php:8
2874
+ msgid "Network Performance &amp; Security powered by CloudFlare"
2875
  msgstr ""
2876
 
2877
+ #: Extension_CloudFlare_GeneralPage_View.php:15
2878
+ msgid "CloudFlare protects and accelerates websites."
 
2879
  msgstr ""
2880
 
2881
+ #: Extension_CloudFlare_GeneralPage_View.php:22
2882
+ #: Extension_CloudFlare_Page_View.php:116
2883
+ #: Extension_NewRelic_Page_View_Apm.php:108
2884
+ msgid "Cache time:"
2885
  msgstr ""
2886
 
2887
+ #: Extension_CloudFlare_GeneralPage_View.php:31
2888
+ msgid "Page Caching:"
2889
  msgstr ""
2890
 
2891
+ #: Cdn_RackSpaceCdn_Page_View.php:23
2892
+ #: Cdn_RackSpaceCloudFiles_Popup_View_Intro.php:19
2893
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:23
2894
+ #: Cdn_RackSpaceCdn_Popup_View_Intro.php:18 inc/options/cdn/cotendo.php:9
2895
+ #: inc/options/cdn/rscf.php:9 inc/options/cdn/akamai.php:9
2896
+ msgid "Username:"
 
 
 
 
 
 
2897
  msgstr ""
2898
 
2899
+ #: Cdn_RackSpaceCdn_Page_View.php:29 Cdn_RackSpaceCloudFiles_Page_View.php:29
2900
+ msgid "Region:"
 
 
2901
  msgstr ""
2902
 
2903
+ #: Cdn_RackSpaceCdn_Page_View.php:35
2904
+ msgid "Service:"
2905
  msgstr ""
2906
 
2907
+ #: Cdn_RackSpaceCdn_Page_View.php:52
2908
+ msgid "Configure CNAMEs"
2909
  msgstr ""
2910
 
2911
+ #: Cdn_RackSpaceCdn_Page_View.php:65
2912
  msgid ""
2913
+ "Reload C<acronym title=\"Canonical Name\">CNAME</acronym>s from RackSpace"
 
 
2914
  msgstr ""
2915
 
2916
+ #: Cdn_RackSpaceCdn_Page_View.php:67
2917
+ msgid ""
2918
+ "Hostname(s) mapped to <acronym title=\"Content Delivery Network\">"
2919
+ "CDN</acronym> host, this value will replace your site's hostname in the "
2920
+ "<acronym title=\"Hypertext Markup Language\">HTML</acronym>. You can manage "
2921
+ "them from RackSpace management console and load here afterwards."
2922
  msgstr ""
2923
 
2924
+ #: Extension_Amp_Plugin_Admin.php:14
2925
+ msgid "Adds compatibility for accelerated mobile pages (AMP) to minify."
 
 
2926
  msgstr ""
2927
 
2928
+ #: Cdnfsd_StackPath2_Popup_View_Sites.php:12
2929
+ #: Cdn_StackPath2_Popup_View_Sites.php:12
2930
+ msgid "Select site to use"
 
2931
  msgstr ""
2932
 
2933
+ #: UsageStatistics_Plugin_Admin.php:67
2934
+ #, php-format
2935
  msgid ""
2936
+ "W3 Total Cache: Statistics collection is currently enabled. This consumes "
2937
+ "additional resources, and is not recommended to be run continuously. %s %s"
2938
  msgstr ""
2939
 
2940
+ #: UsageStatistics_Plugin_Admin.php:70
2941
+ msgid "Disable statistics"
2942
  msgstr ""
2943
 
2944
+ #: UsageStatistics_Plugin_Admin.php:87 UsageStatistics_Plugin_Admin.php:88
2945
+ msgid "Statistics"
2946
  msgstr ""
2947
 
2948
+ #: Util_ConfigLabel.php:9
2949
  msgid ""
2950
+ "Memcached hostname:port / <acronym title=\"Internet Protocol\">IP</acronym>:"
2951
+ "port:"
 
 
2952
  msgstr ""
2953
 
2954
+ #: Util_ConfigLabel.php:10 Util_ConfigLabel.php:15
2955
+ msgid "Persistent connection"
2956
  msgstr ""
2957
 
2958
+ #: Util_ConfigLabel.php:11
2959
+ msgid "Memcached username:"
 
 
 
2960
  msgstr ""
2961
 
2962
+ #: Util_ConfigLabel.php:12
2963
+ msgid "Memcached password:"
2964
  msgstr ""
2965
 
2966
+ #: Util_ConfigLabel.php:13
2967
+ msgid "Binary protocol"
2968
  msgstr ""
2969
 
2970
+ #: Util_ConfigLabel.php:14
2971
+ msgid ""
2972
+ "Redis hostname:port / <acronym title=\"Internet Protocol\">IP</acronym>:port:"
2973
  msgstr ""
2974
 
2975
+ #: Util_ConfigLabel.php:16
2976
+ msgid "Redis Database ID:"
2977
  msgstr ""
2978
 
2979
+ #: Util_ConfigLabel.php:17
2980
+ msgid "Redis password:"
2981
  msgstr ""
2982
 
2983
+ #: Cdn_Plugin.php:781
2984
+ msgid "CDN: All"
2985
  msgstr ""
2986
 
2987
+ #: Cdn_Plugin.php:792
2988
+ msgid "CDN: Manual Purge"
2989
  msgstr ""
2990
 
2991
+ #: Cdn_Plugin.php:807
2992
+ #, php-format
2993
+ msgid "Content Delivery Network via %s%s"
2994
  msgstr ""
2995
 
2996
+ #: Extension_Genesis_Page_View.php:12 Extension_Genesis_Page_View.php:27
2997
+ msgid "Header"
 
 
2998
  msgstr ""
2999
 
3000
+ #: Extension_Genesis_Page_View.php:13 Extension_Genesis_Page_View.php:66
3001
+ msgid "Content"
3002
  msgstr ""
3003
 
3004
+ #: Extension_Genesis_Page_View.php:14 Extension_Genesis_Page_View.php:130
3005
+ msgid "Sidebar"
 
 
 
 
3006
  msgstr ""
3007
 
3008
+ #: Extension_Genesis_Page_View.php:15 Extension_Genesis_Page_View.php:183
3009
+ msgid "Exclusions"
 
 
 
 
 
 
 
3010
  msgstr ""
3011
 
3012
+ #: Extension_Genesis_Page_View.php:33
3013
+ msgid "Cache wp_head loop:"
 
 
 
 
 
 
 
3014
  msgstr ""
3015
 
3016
+ #: Extension_Genesis_Page_View.php:35
3017
+ msgid "Cache wp_head. This includes the embedded CSS, JS etc."
 
 
 
 
3018
  msgstr ""
3019
 
3020
+ #: Extension_Genesis_Page_View.php:40
3021
+ msgid "Cache header:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3022
  msgstr ""
3023
 
3024
+ #: Extension_Genesis_Page_View.php:42
3025
+ msgid "Cache header loop. This is the area where the logo is located."
 
 
 
 
 
3026
  msgstr ""
3027
 
3028
+ #: Extension_Genesis_Page_View.php:47
3029
+ msgid "Cache primary navigation:"
 
 
 
 
 
 
3030
  msgstr ""
3031
 
3032
+ #: Extension_Genesis_Page_View.php:49
3033
+ msgid "Caches the navigation filter; per page."
 
 
 
3034
  msgstr ""
3035
 
3036
+ #: Extension_Genesis_Page_View.php:54
3037
+ msgid "Cache secondary navigation:"
 
 
3038
  msgstr ""
3039
 
3040
+ #: Extension_Genesis_Page_View.php:56
3041
+ msgid "Caches secondary navigation filter; per page."
3042
  msgstr ""
3043
 
3044
+ #: Extension_Genesis_Page_View.php:73
3045
+ msgid "Cache front page post loop:"
3046
  msgstr ""
3047
 
3048
+ #: Extension_Genesis_Page_View.php:74
3049
+ msgid "Caches the front page post loop, pagination is supported."
 
 
3050
  msgstr ""
3051
 
3052
+ #: Extension_Genesis_Page_View.php:80
3053
+ msgid "Cache author/tag/categories/term post loop:"
 
3054
  msgstr ""
3055
 
3056
+ #: Extension_Genesis_Page_View.php:81
3057
  msgid ""
3058
+ "Caches the posts listed on tag, categories, author and other term pages, "
3059
+ "pagination is supported."
 
 
 
3060
  msgstr ""
3061
 
3062
+ #: Extension_Genesis_Page_View.php:86
3063
+ msgid "Excluded terms pages / posts:"
 
3064
  msgstr ""
3065
 
3066
+ #: Extension_Genesis_Page_View.php:87
3067
  msgid ""
3068
+ "List of pages / posts that should not have the terms loop cached. Specify "
3069
+ "one page / post per line. This area supports regular expressions."
3070
  msgstr ""
3071
 
3072
+ #: Extension_Genesis_Page_View.php:93
3073
+ msgid "Flush posts loop:"
3074
+ msgstr ""
3075
+
3076
+ #: Extension_Genesis_Page_View.php:94
3077
+ msgid ""
3078
+ "Flushes the posts loop cache on post updates. See setting above for affected "
3079
+ "loops."
3080
  msgstr ""
3081
 
3082
+ #: Extension_Genesis_Page_View.php:100
3083
+ msgid "Cache single post / page:"
3084
  msgstr ""
3085
 
3086
+ #: Extension_Genesis_Page_View.php:101
3087
+ msgid "Caches the single post / page loop, pagination is supported."
3088
  msgstr ""
3089
 
3090
+ #: Extension_Genesis_Page_View.php:106
3091
+ msgid "Excluded single pages / posts:"
3092
  msgstr ""
3093
 
3094
+ #: Extension_Genesis_Page_View.php:107
3095
  msgid ""
3096
+ "List of pages / posts that should not have the single post / post loop "
3097
+ "cached. Specify one page / post per line. This area supports regular "
3098
+ "expressions."
3099
  msgstr ""
3100
 
3101
+ #: Extension_Genesis_Page_View.php:113
3102
+ msgid "Cache comments:"
3103
  msgstr ""
3104
 
3105
+ #: Extension_Genesis_Page_View.php:114
3106
+ msgid "Caches the comments loop, pagination is supported."
 
 
 
3107
  msgstr ""
3108
 
3109
+ #: Extension_Genesis_Page_View.php:120
3110
+ msgid "Cache pings:"
3111
  msgstr ""
3112
 
3113
+ #: Extension_Genesis_Page_View.php:121
3114
+ msgid "Caches the ping loop, pagination is supported. One per line."
3115
  msgstr ""
3116
 
3117
+ #: Extension_Genesis_Page_View.php:137
3118
+ msgid "Cache sidebar:"
 
3119
  msgstr ""
3120
 
3121
+ #: Extension_Genesis_Page_View.php:138
3122
+ msgid "Caches sidebar loop, the widget area."
3123
  msgstr ""
3124
 
3125
+ #: Extension_Genesis_Page_View.php:143
3126
+ msgid "Exclude pages:"
3127
  msgstr ""
3128
 
3129
+ #: Extension_Genesis_Page_View.php:144
3130
  msgid ""
3131
+ "List of pages that should not have sidebar cached. Specify one page / post "
3132
+ "per line. This area supports regular expressions."
3133
  msgstr ""
3134
 
3135
+ #: Extension_Genesis_Page_View.php:153
3136
+ msgid "Footer"
3137
  msgstr ""
3138
 
3139
+ #: Extension_Genesis_Page_View.php:160
3140
+ msgid "Cache genesis footer:"
3141
  msgstr ""
3142
 
3143
+ #: Extension_Genesis_Page_View.php:161
3144
+ msgid "Caches footer loop."
 
 
3145
  msgstr ""
3146
 
3147
+ #: Extension_Genesis_Page_View.php:167
3148
+ msgid "Cache footer:"
3149
+ msgstr ""
3150
+
3151
+ #: Extension_Genesis_Page_View.php:168
3152
+ msgid "Caches wp_footer loop."
3153
  msgstr ""
3154
 
3155
+ #: Extension_Genesis_Page_View.php:174
3156
+ msgid "Disable fragment cache:"
3157
+ msgstr ""
3158
+
3159
+ #: Extension_Genesis_Page_View.php:186
3160
+ msgid "Select hooks"
3161
+ msgstr ""
3162
+
3163
+ #: Extension_Genesis_Page_View.php:218
3164
  msgid ""
3165
+ "Select hooks from the list that should not be cached if user belongs to any "
3166
+ "of the roles selected below."
3167
  msgstr ""
3168
 
3169
+ #: Extension_Genesis_Page_View.php:223
3170
+ msgid "Select roles:"
3171
  msgstr ""
3172
 
3173
+ #: Extension_Genesis_Page_View.php:239
3174
+ msgid "Select user roles that should not use the fragment cache."
3175
  msgstr ""
3176
 
3177
+ #: Cdn_AdminActions.php:40
3178
+ msgid "File successfully deleted from the queue."
3179
  msgstr ""
3180
 
3181
+ #: Cdn_AdminActions.php:48
3182
+ msgid "Queue successfully emptied."
 
 
3183
  msgstr ""
3184
 
3185
+ #: Cdn_AdminActions.php:55
3186
+ #, php-format
3187
+ msgid "Number of processed queue items: %d"
 
 
 
3188
  msgstr ""
3189
 
3190
+ #: Cdn_AdminActions.php:61
3191
+ msgid "Unsuccessful file transfer queue."
 
 
 
3192
  msgstr ""
3193
 
3194
+ #: Cdn_AdminActions.php:75
3195
+ msgid "Media Library export"
 
 
3196
  msgstr ""
3197
 
3198
+ #: Cdn_AdminActions.php:148
3199
+ msgid "Media Library import"
3200
  msgstr ""
3201
 
3202
+ #: Cdn_AdminActions.php:195
3203
+ msgid "Modify attachment URLs"
 
 
3204
  msgstr ""
3205
 
3206
+ #: Cdn_AdminActions.php:241
3207
+ msgid "Includes files export"
 
3208
  msgstr ""
3209
 
3210
+ #: Cdn_AdminActions.php:246
3211
+ msgid "Theme files export"
3212
  msgstr ""
3213
 
3214
+ #: Cdn_AdminActions.php:251
3215
+ msgid "Minify files export"
 
3216
  msgstr ""
3217
 
3218
+ #: Cdn_AdminActions.php:257
3219
+ msgid "Custom files export"
 
 
3220
  msgstr ""
3221
 
3222
+ #: Cdn_AdminActions.php:313 Cdn_AdminActions.php:326
3223
+ msgid "Content Delivery Network (CDN): Purge Tool"
 
3224
  msgstr ""
3225
 
3226
+ #: Cdn_AdminActions.php:345
3227
+ msgid "Empty files list."
 
 
3228
  msgstr ""
3229
 
3230
+ #: Cdn_AdminActions.php:429
3231
+ msgid "Test passed"
3232
  msgstr ""
3233
 
3234
+ #: Cdn_AdminActions.php:432 Cdn_AdminActions.php:436 Cdn_AdminActions.php:479
3235
+ #, php-format
3236
+ msgid "Error: %s"
 
3237
  msgstr ""
3238
 
3239
+ #: Cdn_AdminActions.php:477
3240
+ msgid "Created successfully."
3241
  msgstr ""
3242
 
3243
+ #: Cdn_AdminActions.php:486
3244
+ msgid "Incorrect type."
3245
  msgstr ""
3246
 
3247
+ #: Cdnfsd_CloudFront_Popup_View_Distribution.php:16
3248
+ msgid "Configure distribution"
 
 
3249
  msgstr ""
3250
 
3251
+ #: Cdnfsd_GeneralPage_View.php:17
3252
  msgid ""
3253
+ "<acronym title=\"Full Site Delivery\">FSD</acronym> <acronym title=\"Content "
3254
+ "Delivery Network\">CDN</acronym>:"
3255
  msgstr ""
3256
 
3257
+ #: Cdnfsd_GeneralPage_View.php:21
3258
  msgid ""
3259
+ "Deliver visitors the lowest possible response and load times for all site "
3260
+ "content including HTML, media (e.g. images or fonts), CSS, and JavaScript."
 
 
3261
  msgstr ""
3262
 
3263
+ #: Cdnfsd_GeneralPage_View.php:23
3264
  msgid ""
3265
+ "Without Full Site Delivery, the HTML of your website is not delivered with "
3266
+ "the lowest latency possible. A small change to DNS settings means that every "
3267
+ "component of your website is delivered to visitors using a worldwide network "
3268
+ "of servers. The net result is more resources for content creation or for "
3269
+ "authenticated users to post comments or browser personalized experiences "
3270
+ "like e-commerce and membership sites etc."
3271
  msgstr ""
3272
 
3273
+ #: Cdnfsd_GeneralPage_View.php:24
3274
  msgid ""
3275
+ "For even better performance, combine FSD with other powerful features like "
3276
+ "Browser Cache, Minify, Fragment caching, or Lazy Load!"
 
3277
  msgstr ""
3278
 
3279
+ #: Cdnfsd_GeneralPage_View.php:25
3280
  msgid ""
3281
+ "Contact support for any help maximizing your performance scores or "
3282
+ "troubleshooting."
 
 
 
3283
  msgstr ""
3284
 
3285
+ #: Cdnfsd_GeneralPage_View.php:33
3286
  msgid ""
3287
+ "<acronym title=\"Full Site Delivery\">FSD</acronym> <acronym title=\"Content "
3288
+ "Delivery Network\">CDN</acronym> Type:"
 
 
3289
  msgstr ""
3290
 
3291
+ #: PageSpeed_Plugin_Widget.php:55
3292
+ msgid "Page Speed Report"
 
 
 
 
3293
  msgstr ""
3294
 
3295
+ #: Extension_CloudFlare_Page_View.php:11 Extension_CloudFlare_Page_View.php:34
3296
+ msgid "Credentials"
 
 
 
3297
  msgstr ""
3298
 
3299
+ #: Extension_CloudFlare_Page_View.php:12 Extension_CloudFlare_Page_View.php:74
3300
+ #: inc/options/dbcache.php:24 inc/options/cdn.php:17 inc/options/cdn.php:59
3301
+ #: inc/options/general.php:17 inc/options/browsercache.php:32
3302
+ #: inc/options/minify.php:42 inc/options/pgcache.php:30
3303
+ #: inc/options/common/header.php:28 inc/options/common/header.php:72
3304
+ #: inc/options/common/header.php:88 inc/options/common/header.php:104
3305
+ #: inc/options/common/header.php:127
3306
+ msgid "General"
3307
  msgstr ""
3308
 
3309
+ #: Extension_CloudFlare_Page_View.php:13
3310
+ msgid "Information"
 
3311
  msgstr ""
3312
 
3313
+ #: Extension_CloudFlare_Page_View.php:27
3314
+ msgid "Purge CloudFlare cache"
 
3315
  msgstr ""
3316
 
3317
+ #: Extension_CloudFlare_Page_View.php:63
3318
+ msgid "Zone:"
3319
  msgstr ""
3320
 
3321
+ #: Extension_CloudFlare_Page_View.php:101
3322
+ msgid "Widget statistics interval:"
3323
  msgstr ""
3324
 
3325
+ #: Extension_CloudFlare_Page_View.php:126
3326
+ msgid "Page caching:"
3327
  msgstr ""
3328
 
3329
+ #: Extension_CloudFlare_Page_View.php:144
3330
+ msgid "CloudFlare: Caching"
 
 
 
3331
  msgstr ""
3332
 
3333
+ #: Extension_CloudFlare_Page_View.php:155
3334
+ msgid "Cache level:"
 
 
 
3335
  msgstr ""
3336
 
3337
+ #: Extension_CloudFlare_Page_View.php:251
3338
+ msgid "CloudFlare: Content Processing"
 
 
3339
  msgstr ""
3340
 
3341
+ #: Extension_CloudFlare_Page_View.php:257
3342
+ msgid "Rocket Loader:"
3343
  msgstr ""
3344
 
3345
+ #: Extension_CloudFlare_Page_View.php:316
3346
+ msgid "CloudFlare: Image Processing"
3347
  msgstr ""
3348
 
3349
+ #: Extension_CloudFlare_Page_View.php:332
3350
+ msgid "Images polishing:"
3351
  msgstr ""
3352
 
3353
+ #: Extension_CloudFlare_Page_View.php:346
3354
+ msgid "CloudFlare: Protection"
3355
  msgstr ""
3356
 
3357
+ #: Extension_CloudFlare_Page_View.php:352
3358
+ msgid "Security level:"
 
3359
  msgstr ""
3360
 
3361
+ #: Extension_CloudFlare_Page_View.php:393
3362
+ msgid "CloudFlare: <acronym title=\"Internet Protocol\">IP</acronym>"
3363
  msgstr ""
3364
 
3365
+ #: Extension_CloudFlare_Page_View.php:417
3366
+ msgid "CloudFlare: <acronym title=\"Secure Sockets Layer\">SSL</acronym>"
3367
  msgstr ""
3368
 
3369
+ #: CdnEngine_Mirror_MaxCdn.php:71 CdnEngine_Mirror_MaxCdn.php:147
3370
+ #, php-format
3371
+ msgid "No zones match site: %s."
3372
  msgstr ""
3373
 
3374
+ #: CdnEngine_Mirror_MaxCdn.php:73 CdnEngine_Mirror_MaxCdn.php:149
3375
+ #, php-format
3376
+ msgid "No zones match site: %s or %s."
3377
  msgstr ""
3378
 
3379
+ #: CdnEngine_Mirror_MaxCdn.php:90
3380
+ #, php-format
3381
+ msgid ""
3382
+ "Failed with error code %s Please check your alias, consumer key, and private "
3383
+ "key."
3384
  msgstr ""
3385
 
3386
+ #: CdnEngine_Mirror_MaxCdn.php:92 CdnEngine_Mirror_MaxCdn.php:161
3387
+ msgid "Failed with error code "
 
3388
  msgstr ""
3389
 
3390
+ #: CdnEngine_Mirror_MaxCdn.php:159
3391
+ #, php-format
3392
+ msgid ""
3393
+ "Failed with error code %s. Please check your alias, consumer key, and "
3394
+ "private key."
3395
  msgstr ""
3396
 
3397
+ #: Extension_CloudFlare_Cdn_Page_View.php:17
3398
+ msgid "Configuration:"
 
3399
  msgstr ""
3400
 
3401
+ #: CdnEngine_S3.php:16
3402
+ msgid "US East (N. Virginia)"
 
3403
  msgstr ""
3404
 
3405
+ #: CdnEngine_S3.php:17
3406
+ msgid "US East (Ohio)"
 
3407
  msgstr ""
3408
 
3409
+ #: CdnEngine_S3.php:18
3410
+ msgid "US-West (N. California)"
3411
  msgstr ""
3412
 
3413
+ #: CdnEngine_S3.php:19
3414
+ msgid "US-West (Oregon)"
 
3415
  msgstr ""
3416
 
3417
+ #: CdnEngine_S3.php:20
3418
+ msgid "Asia Pacific (Hong Kong)"
 
 
 
 
3419
  msgstr ""
3420
 
3421
+ #: CdnEngine_S3.php:21
3422
+ msgid "Asia Pacific (Tokyo)"
3423
  msgstr ""
3424
 
3425
+ #: CdnEngine_S3.php:22
3426
+ msgid "Asia Pacific (Seoul)"
3427
  msgstr ""
3428
 
3429
+ #: CdnEngine_S3.php:23
3430
+ msgid "Asia Pacific (Osaka-Local)"
3431
  msgstr ""
3432
 
3433
+ #: CdnEngine_S3.php:24
3434
+ msgid "Asia Pacific (Mumbai)"
3435
  msgstr ""
3436
 
3437
+ #: CdnEngine_S3.php:25
3438
+ msgid "Asia Pacific (Singapore)"
 
 
 
 
 
3439
  msgstr ""
3440
 
3441
+ #: CdnEngine_S3.php:26
3442
+ msgid "Asia Pacific (Sydney)"
3443
  msgstr ""
3444
 
3445
+ #: CdnEngine_S3.php:27
3446
+ msgid "Canada (Central)"
3447
  msgstr ""
3448
 
3449
+ #: CdnEngine_S3.php:28
3450
+ msgid "China (Ningxia)"
 
 
3451
  msgstr ""
3452
 
3453
+ #: CdnEngine_S3.php:29
3454
+ msgid "EU (Frankfurt)"
 
 
 
 
 
 
 
 
 
3455
  msgstr ""
3456
 
3457
+ #: CdnEngine_S3.php:30
3458
+ msgid "EU (Stockholm)"
 
 
 
3459
  msgstr ""
3460
 
3461
+ #: CdnEngine_S3.php:31
3462
+ msgid "EU (Ireland)"
3463
  msgstr ""
3464
 
3465
+ #: CdnEngine_S3.php:32
3466
+ msgid "EU (London)"
3467
  msgstr ""
3468
 
3469
+ #: CdnEngine_S3.php:33
3470
+ msgid "EU (Paris)"
3471
  msgstr ""
3472
 
3473
+ #: CdnEngine_S3.php:34
3474
+ msgid "Middle East (Bahrain)"
3475
  msgstr ""
3476
 
3477
+ #: CdnEngine_S3.php:35
3478
+ msgid "South America (São Paulo)"
3479
  msgstr ""
3480
 
3481
+ #: Mobile_Page_UserAgentGroups.php:28
3482
  msgid ""
3483
+ "Enabling even a single user agent group will set a cookie called "
3484
+ "\"w3tc_referrer.\" It is used to ensure a consistent user experience across "
3485
+ "page views. Make sure any reverse proxy servers etc respect this cookie for "
3486
+ "proper operation."
3487
  msgstr ""
3488
 
3489
+ #: Extension_Swarmify_Plugin_Admin.php:16
3490
  msgid ""
3491
+ "Optimize your video performance by enabling the Swarmify SmartVideo™ "
3492
+ "solution."
 
 
3493
  msgstr ""
3494
 
3495
+ #: Util_Rule.php:312
3496
+ #, php-format
3497
+ msgid ""
3498
+ "Edit file <strong>%s</strong> and add the following rules above the "
3499
+ "WordPress directives:"
3500
  msgstr ""
3501
 
3502
+ #: Util_Rule.php:379
3503
+ #, php-format
3504
+ msgid ""
3505
+ "Edit file <strong>%s</strong> and remove all lines between and including "
3506
+ "<strong>%s</strong>\n"
3507
+ "\t\t\t\tand <strong>%s</strong> markers."
3508
  msgstr ""
3509
 
3510
+ #: CdnEngine_Mirror_Highwinds.php:79 CdnEngine_Mirror_LimeLight.php:125
3511
+ msgid "Failed to purge all: "
3512
  msgstr ""
3513
 
3514
+ #: Util_Theme.php:80
3515
+ msgid "All Templates"
3516
  msgstr ""
3517
 
3518
+ #: DbCache_WpdbInjection_QueryCaching.php:679
3519
+ msgid "Request-wide"
3520
  msgstr ""
3521
 
3522
+ #: DbCache_WpdbInjection_QueryCaching.php:694
3523
+ msgid "Database caching is disabled"
3524
  msgstr ""
3525
 
3526
+ #: DbCache_WpdbInjection_QueryCaching.php:696
3527
+ msgid "DONOTCACHEDB constant is defined"
3528
  msgstr ""
3529
 
3530
+ #: DbCache_WpdbInjection_QueryCaching.php:698
3531
+ msgid "Doing AJAX"
3532
  msgstr ""
3533
 
3534
+ #: DbCache_WpdbInjection_QueryCaching.php:700
3535
+ msgid "Request URI is rejected"
3536
  msgstr ""
3537
 
3538
+ #: DbCache_WpdbInjection_QueryCaching.php:702
3539
+ msgid "Cookie is rejected"
3540
  msgstr ""
3541
 
3542
+ #: DbCache_WpdbInjection_QueryCaching.php:704
3543
+ msgid "Doing cron"
3544
  msgstr ""
3545
 
3546
+ #: DbCache_WpdbInjection_QueryCaching.php:706
3547
+ msgid "Application request"
3548
  msgstr ""
3549
 
3550
+ #: DbCache_WpdbInjection_QueryCaching.php:708
3551
+ msgid "XMLRPC request"
3552
  msgstr ""
3553
 
3554
+ #: DbCache_WpdbInjection_QueryCaching.php:710
3555
+ msgid "wp-admin"
3556
  msgstr ""
3557
 
3558
+ #: DbCache_WpdbInjection_QueryCaching.php:712
3559
+ msgid "Short init"
3560
  msgstr ""
3561
 
3562
+ #: DbCache_WpdbInjection_QueryCaching.php:714
3563
+ msgid "Query is rejected"
3564
  msgstr ""
3565
 
3566
+ #: DbCache_WpdbInjection_QueryCaching.php:716
3567
+ msgid "User is logged in"
3568
  msgstr ""
3569
 
3570
+ #: DbCache_WpdbInjection_QueryCaching.php:728
3571
+ #, php-format
3572
+ msgid "Database Caching %d/%d queries in %.3f seconds using %s%s"
3573
  msgstr ""
3574
 
3575
+ #: DbCache_WpdbInjection_QueryCaching.php:734
3576
+ #, php-format
3577
+ msgid "Database Caching using %s%s"
3578
  msgstr ""
3579
 
3580
+ #: Extension_CloudFlare_Plugin_Admin.php:30
3581
+ #, php-format
3582
+ msgid ""
3583
+ "CloudFlare protects and accelerates websites. <a href=\"%s\" "
3584
+ "target=\"_blank\">Sign up now for free</a> to get started,\n"
3585
+ " or if you have an account simply log in to obtain your <abbr "
3586
+ "title=\"Application Programming Interface\">API</abbr> key from the <a "
3587
+ "target=\"_blank\" href=\"https://www.cloudflare.com/my-account\">account "
3588
+ "page</a> to enter it on the General Settings box that appears after plugin "
3589
+ "activation.\n"
3590
+ " Contact the CloudFlare <a href=\"http://www.cloudflare.com/help."
3591
+ "html\" target=\"_blank\">support team</a> with any questions."
3592
  msgstr ""
3593
 
3594
+ #: Extension_CloudFlare_Plugin_Admin.php:145
3595
+ msgid ""
3596
+ "CloudFlare plugin detected. We recommend removing the\n"
3597
+ " plugin as it offers no additional capabilities when W3 Total "
3598
+ "Cache is installed. This message will disappear\n"
3599
+ " when CloudFlare is removed."
3600
  msgstr ""
3601
 
3602
+ #: Extension_CloudFlare_Plugin_Admin.php:159
3603
+ msgid "CloudFlare: All"
 
 
3604
  msgstr ""
3605
 
3606
+ #: Extension_CloudFlare_Plugin_Admin.php:303
3607
+ msgid "empty all caches except CloudFlare"
3608
  msgstr ""
3609
 
3610
+ #: Extension_CloudFlare_Plugin_Admin.php:305
3611
+ msgid "at once"
 
 
 
 
 
3612
  msgstr ""
3613
 
3614
+ #: Generic_Plugin.php:299
3615
+ msgid "Purge All Caches"
3616
  msgstr ""
3617
 
3618
+ #: Generic_Plugin.php:308
3619
+ msgid "Purge Current Page"
3620
  msgstr ""
3621
 
3622
+ #: Generic_Plugin.php:317
3623
+ msgid "Purge Modules"
 
 
 
 
3624
  msgstr ""
3625
 
3626
+ #: Generic_Plugin.php:330
3627
+ msgid "Manage Extensions"
3628
  msgstr ""
3629
 
3630
+ #: Generic_Plugin.php:352
3631
+ msgid "Debug: Overlays"
 
 
 
3632
  msgstr ""
3633
 
3634
+ #: Generic_Plugin.php:357
3635
+ msgid "Support Us"
3636
  msgstr ""
3637
 
3638
+ #: Generic_Plugin.php:365
3639
+ msgid "Edge"
 
 
 
3640
  msgstr ""
3641
 
3642
+ #: Cli.php:36
3643
+ msgid "Environment adjustment failed with error"
 
 
3644
  msgstr ""
3645
 
3646
+ #: Cli.php:40
3647
+ msgid "Environment adjusted."
 
 
 
 
3648
  msgstr ""
3649
 
3650
+ #: Cli.php:83
3651
+ msgid "Flushing all failed."
 
 
3652
  msgstr ""
3653
 
3654
+ #: Cli.php:85
3655
+ msgid "Everything flushed successfully."
3656
  msgstr ""
3657
 
3658
+ #: Cli.php:93
3659
+ msgid "Flushing posts/pages failed."
3660
  msgstr ""
3661
 
3662
+ #: Cli.php:95
3663
+ msgid "Posts/pages flushed successfully."
 
 
 
3664
  msgstr ""
3665
 
3666
+ #: Cli.php:105
3667
+ msgid "Flushing the DB cache failed."
3668
  msgstr ""
3669
 
3670
+ #: Cli.php:107
3671
+ msgid "The DB cache is flushed successfully."
3672
  msgstr ""
3673
 
3674
+ #: Cli.php:116
3675
+ msgid "Flushing the minify cache failed."
 
 
3676
  msgstr ""
3677
 
3678
+ #: Cli.php:118
3679
+ msgid "The minify cache is flushed successfully."
3680
  msgstr ""
3681
 
3682
+ #: Cli.php:127
3683
+ msgid "Flushing the object cache failed."
 
 
 
3684
  msgstr ""
3685
 
3686
+ #: Cli.php:129
3687
+ msgid "The object cache is flushed successfully."
 
 
3688
  msgstr ""
3689
 
3690
+ #: Cli.php:139 Cli.php:151
3691
+ msgid "Flushing the page from cache failed."
 
 
3692
  msgstr ""
3693
 
3694
+ #: Cli.php:141 Cli.php:153
3695
+ msgid "The page is flushed from cache successfully."
 
 
 
3696
  msgstr ""
3697
 
3698
+ #: Cli.php:143
3699
+ msgid "This is not a valid post id."
 
3700
  msgstr ""
3701
 
3702
+ #: Cli.php:162
3703
+ msgid "Flushing the page cache failed."
3704
  msgstr ""
3705
 
3706
+ #: Cli.php:164
3707
+ msgid "The page cache is flushed successfully."
3708
  msgstr ""
3709
 
3710
+ #: Cli.php:169
3711
+ msgid "Not specified what to flush"
 
 
 
 
 
 
3712
  msgstr ""
3713
 
3714
+ #: Cli.php:219
3715
+ msgid "<name> parameter is not specified"
 
 
3716
  msgstr ""
3717
 
3718
+ #: Cli.php:260
3719
+ msgid "<value> parameter is not specified"
 
3720
  msgstr ""
3721
 
3722
+ #: Cli.php:271
3723
+ msgid " is not boolean"
 
 
3724
  msgstr ""
3725
 
3726
+ #: Cli.php:289
3727
+ msgid "Option updated successfully."
 
 
3728
  msgstr ""
3729
 
3730
+ #: Cli.php:291
3731
+ msgid "Option value update failed."
 
 
 
3732
  msgstr ""
3733
 
3734
+ #: Cli.php:295
3735
+ msgid "<operation> parameter is not specified"
 
 
3736
  msgstr ""
3737
 
3738
+ #: Cli.php:322
3739
+ msgid "Configuration successfully imported."
3740
  msgstr ""
3741
 
3742
+ #: Cli.php:335
3743
+ #, php-format
3744
+ msgid "updating the query string failed. with error %s"
 
 
3745
  msgstr ""
3746
 
3747
+ #: Cli.php:339
3748
+ msgid "The query string was updated successfully."
 
 
 
3749
  msgstr ""
3750
 
3751
+ #: Cli.php:366
3752
+ #, php-format
3753
+ msgid "Files did not successfully purge with error %s"
 
3754
  msgstr ""
3755
 
3756
+ #: Cli.php:368
3757
+ msgid "Files purged successfully."
3758
  msgstr ""
3759
 
3760
+ #: Cli.php:381
3761
+ msgid " is not supported. Change to SNS or local to delete opcache files"
 
3762
  msgstr ""
3763
 
3764
+ #: Cli.php:402 Cli.php:409
3765
+ #, php-format
3766
+ msgid "Files did not successfully delete with error %s"
 
3767
  msgstr ""
3768
 
3769
+ #: Cli.php:404
3770
+ msgid "Files did not successfully delete with message: "
 
 
 
 
 
 
 
3771
  msgstr ""
3772
 
3773
+ #: Cli.php:411
3774
+ msgid "Files deleted successfully."
3775
  msgstr ""
3776
 
3777
+ #: Cli.php:423
3778
+ #, php-format
3779
+ msgid "PageCache Garbage cleanup failed: %s"
 
 
3780
  msgstr ""
3781
 
3782
+ #: Cli.php:427
3783
+ msgid "PageCache Garbage cleanup triggered successfully."
 
 
 
3784
  msgstr ""
3785
 
3786
+ #: Cli.php:455
3787
+ #, php-format
3788
+ msgid "PageCache Priming did failed: %s"
 
3789
  msgstr ""
3790
 
3791
+ #: Cli.php:459
3792
+ msgid "PageCache Priming triggered successfully."
3793
  msgstr ""
3794
 
3795
+ #: Cdn_Highwinds_Popup_View_Intro.php:14
3796
+ msgid "Your Highwinds API Token"
3797
  msgstr ""
3798
 
3799
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Actualize.php:24
3800
+ msgid "Configure service"
 
 
 
3801
  msgstr ""
3802
 
3803
+ #: Extension_CloudFlare_AdminActions.php:24
3804
+ msgid "Failed to purge CloudFlare cache: "
3805
  msgstr ""
3806
 
3807
+ #: Extension_CloudFlare_AdminActions.php:33
3808
+ msgid "CloudFlare cache successfully emptied."
 
 
 
3809
  msgstr ""
3810
 
3811
+ #: Extension_CloudFlare_AdminActions.php:64
3812
+ msgid "CloudFlare settings are successfully updated."
3813
  msgstr ""
3814
 
3815
+ #: Extension_CloudFlare_AdminActions.php:72
3816
+ msgid "Failed to update CloudFlare settings:"
 
 
3817
  msgstr ""
3818
 
3819
+ #: CdnEngine_Mirror_Cotendo.php:48
3820
+ msgid "Empty zones list."
3821
  msgstr ""
3822
 
3823
+ #: Extension_Genesis_Plugin_Admin.php:43
3824
  msgid ""
3825
+ "Increase the performance of themes powered by the Genesis Theme Framework by "
3826
+ "up to 60%."
 
3827
  msgstr ""
3828
 
3829
+ #: Extension_Genesis_Plugin_Admin.php:65
3830
  msgid ""
3831
+ "Please enable <strong>Fragment Cache</strong> module to make sure <strong>"
3832
+ "Genesis extension</strong> works properly."
 
 
3833
  msgstr ""
3834
 
3835
+ #: Extension_Genesis_Plugin_Admin.php:125
3836
+ #, php-format
3837
+ msgid ""
3838
+ "Activating the <a href=\"%s\">Genesis Theme</a> extension for W3 Total Cache "
3839
+ "may be helpful for your site. <a href=\"%s\">Click here</a> to try it. %s"
3840
  msgstr ""
3841
 
3842
+ #: PgCache_ConfigLabels.php:7
3843
+ msgid "Page Cache Method:"
3844
  msgstr ""
3845
 
3846
+ #: PgCache_ConfigLabels.php:8
3847
+ msgid "Page Cache:"
3848
  msgstr ""
3849
 
3850
+ #: PgCache_ConfigLabels.php:10
3851
+ msgid "Cache front page"
 
 
 
3852
  msgstr ""
3853
 
3854
+ #: PgCache_ConfigLabels.php:10
3855
+ msgid "Cache posts page"
 
 
 
 
3856
  msgstr ""
3857
 
3858
+ #: PgCache_ConfigLabels.php:11
3859
+ msgid "Don't cache front page"
3860
  msgstr ""
3861
 
3862
+ #: PgCache_ConfigLabels.php:12
3863
+ msgid "Cache feeds: site, categories, tags, comments"
3864
  msgstr ""
3865
 
3866
+ #: PgCache_ConfigLabels.php:13
3867
  msgid ""
3868
+ "Cache <acronym title=\"Secure Socket Layer\">SSL</acronym> (<acronym "
3869
+ "title=\"HyperText Transfer Protocol over SSL\">HTTPS</acronym>) requests"
3870
  msgstr ""
3871
 
3872
+ #: PgCache_ConfigLabels.php:14
3873
  msgid ""
3874
+ "Cache <acronym title=\"Uniform Resource Identifier\">URI</acronym>s with "
3875
+ "query string variables"
 
 
3876
  msgstr ""
3877
 
3878
+ #: PgCache_ConfigLabels.php:15
3879
+ msgid "Cache 404 (not found) pages"
 
 
 
 
3880
  msgstr ""
3881
 
3882
+ #: PgCache_ConfigLabels.php:16
3883
+ msgid "Don't cache pages for logged in users"
 
 
3884
  msgstr ""
3885
 
3886
+ #: PgCache_ConfigLabels.php:17
3887
+ msgid "Don't cache pages for following user roles"
3888
  msgstr ""
3889
 
3890
+ #: PgCache_ConfigLabels.php:18
3891
+ msgid "Automatically prime the page cache"
3892
  msgstr ""
3893
 
3894
+ #: PgCache_ConfigLabels.php:19
3895
+ msgid "Update interval:"
3896
  msgstr ""
3897
 
3898
+ #: PgCache_ConfigLabels.php:20
3899
+ msgid "Pages per interval:"
3900
  msgstr ""
3901
 
3902
+ #: PgCache_ConfigLabels.php:21
3903
+ msgid "Sitemap <acronym title=\"Uniform Resource Indicator\">URL</acronym>:"
3904
  msgstr ""
3905
 
3906
+ #: PgCache_ConfigLabels.php:22
3907
+ msgid "Preload the post cache upon publish events"
3908
  msgstr ""
3909
 
3910
+ #: PgCache_ConfigLabels.php:23 PgCache_ConfigLabels.php:24
3911
+ msgid "Front page"
3912
  msgstr ""
3913
 
3914
+ #: PgCache_ConfigLabels.php:24
3915
+ msgid "Posts page"
3916
  msgstr ""
3917
 
3918
+ #: PgCache_ConfigLabels.php:25
3919
+ msgid "Post page"
3920
  msgstr ""
3921
 
3922
+ #: PgCache_ConfigLabels.php:26
3923
+ msgid "Blog feed"
 
 
 
3924
  msgstr ""
3925
 
3926
+ #: PgCache_ConfigLabels.php:27
3927
+ msgid "Post comments pages"
3928
  msgstr ""
3929
 
3930
+ #: PgCache_ConfigLabels.php:28
3931
+ msgid "Post author pages"
 
 
 
 
 
3932
  msgstr ""
3933
 
3934
+ #: PgCache_ConfigLabels.php:29
3935
+ msgid "Post terms pages"
3936
  msgstr ""
3937
 
3938
+ #: PgCache_ConfigLabels.php:30
3939
+ msgid "Post comments feed"
3940
  msgstr ""
3941
 
3942
+ #: PgCache_ConfigLabels.php:31
3943
+ msgid "Post author feed"
 
 
 
 
3944
  msgstr ""
3945
 
3946
+ #: PgCache_ConfigLabels.php:32
3947
+ msgid "Post terms feeds"
 
 
3948
  msgstr ""
3949
 
3950
+ #: PgCache_ConfigLabels.php:33
3951
+ msgid "Daily archive pages"
3952
  msgstr ""
3953
 
3954
+ #: PgCache_ConfigLabels.php:34
3955
+ msgid "Monthly archive pages"
 
 
 
3956
  msgstr ""
3957
 
3958
+ #: PgCache_ConfigLabels.php:35
3959
+ msgid "Yearly archive pages"
 
 
3960
  msgstr ""
3961
 
3962
+ #: PgCache_ConfigLabels.php:36
3963
+ msgid "Specify the feed types to purge:"
 
 
3964
  msgstr ""
3965
 
3966
+ #: PgCache_ConfigLabels.php:37
3967
+ msgid "Purge limit:"
 
 
 
 
3968
  msgstr ""
3969
 
3970
+ #: PgCache_ConfigLabels.php:38
3971
+ msgid "Additional pages:"
 
 
 
 
3972
  msgstr ""
3973
 
3974
+ #: PgCache_ConfigLabels.php:39
3975
+ msgid "Purge sitemaps:"
 
 
3976
  msgstr ""
3977
 
3978
+ #: PgCache_ConfigLabels.php:41
3979
+ msgid ""
3980
+ "Disable <acronym title=\"Unicode Transformation Format\">UTF</acronym>-8 "
3981
+ "blog charset support"
3982
  msgstr ""
3983
 
3984
+ #: PgCache_ConfigLabels.php:42
3985
+ msgid ""
3986
+ " Disable caching of HEAD <acronym title=\"Hypertext Transfer Protocol\">"
3987
+ "HTTP</acronym> requests"
3988
  msgstr ""
3989
 
3990
+ #: PgCache_ConfigLabels.php:45
3991
+ msgid "Comment cookie lifetime:"
 
 
 
 
 
 
 
3992
  msgstr ""
3993
 
3994
+ #: PgCache_ConfigLabels.php:46
3995
+ msgid "Accepted query strings:"
 
 
 
 
 
 
3996
  msgstr ""
3997
 
3998
+ #: PgCache_ConfigLabels.php:48
3999
+ msgid "Rejected cookies:"
 
 
 
 
 
 
4000
  msgstr ""
4001
 
4002
+ #: PgCache_ConfigLabels.php:50
4003
+ msgid "Never cache pages associated with these categories:"
 
 
 
 
 
 
4004
  msgstr ""
4005
 
4006
+ #: PgCache_ConfigLabels.php:51
4007
+ msgid "Never cache pages that use these tags:"
 
 
 
 
 
 
4008
  msgstr ""
4009
 
4010
+ #: PgCache_ConfigLabels.php:52
4011
+ msgid "Never cache pages by these authors:"
 
 
 
 
 
 
4012
  msgstr ""
4013
 
4014
+ #: PgCache_ConfigLabels.php:53
4015
+ msgid "Never cache pages that use these custom fields:"
 
 
 
 
4016
  msgstr ""
4017
 
4018
+ #: PgCache_ConfigLabels.php:54
4019
+ msgid "Cache exception list:"
 
 
 
 
 
4020
  msgstr ""
4021
 
4022
+ #: PgCache_ConfigLabels.php:55
4023
+ msgid "Non-trailing slash pages:"
 
 
 
 
 
4024
  msgstr ""
4025
 
4026
+ #: PgCache_ConfigLabels.php:56
4027
+ msgid "Specify page headers:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4028
  msgstr ""
4029
 
4030
+ #: PgCache_ConfigLabels.php:57
4031
+ msgid ""
4032
+ "Handle <acronym title=\"Extensible Markup Language\">XML</acronym> mime type"
4033
+ msgstr ""
 
 
4034
 
4035
+ #: Generic_AdminActions_Flush.php:100
4036
+ msgid "Static files cache successfully emptied."
4037
  msgstr ""
4038
 
4039
+ #: Cdn_GoogleDrive_Popup_AuthReturn_View.php:16
4040
+ msgid "Select folder"
4041
  msgstr ""
4042
 
4043
+ #: Extension_CloudFlare_Page.php:127
4044
+ msgid "Save CloudFlare settings"
 
 
 
 
 
 
 
4045
  msgstr ""
4046
 
4047
+ #: Extension_WordPressSeo_Plugin_Admin.php:37
 
 
 
 
 
4048
  msgid ""
4049
+ "Configures W3 Total Cache to comply with Yoast SEO requirements "
4050
+ "automatically."
4051
  msgstr ""
4052
 
4053
+ #: Extension_WordPressSeo_Plugin_Admin.php:88
4054
+ #, php-format
 
 
 
 
4055
  msgid ""
4056
+ "Activating the <a href=\"%s\">Yoast SEO</a> extension for W3 Total Cache may "
4057
+ "be helpful for your site. <a class=\"button\" href=\"%s\">Click here</a> to "
4058
+ "try it. %s"
4059
  msgstr ""
4060
 
4061
+ #: Generic_AdminActions_Default.php:226
4062
+ msgid "You do not have the rights to perform this action."
 
 
 
 
 
 
4063
  msgstr ""
4064
 
4065
+ #: Generic_AdminActions_Default.php:742
4066
+ msgid "Added by W3 Total Cache"
 
 
 
 
 
 
4067
  msgstr ""
4068
 
4069
+ #: Extension_NewRelic_Widget_View_NotConfigured.php:8
4070
+ msgid "You have not configured API key and Account Id."
 
 
 
 
4071
  msgstr ""
4072
 
4073
+ #: Generic_ConfigLabels.php:7
4074
+ msgid ""
4075
+ "Enable cache purge via Amazon <acronym title=\"Simple Notification Service\">"
4076
+ "SNS</acronym>"
 
 
4077
  msgstr ""
4078
 
4079
+ #: Generic_ConfigLabels.php:8
4080
+ msgid ""
4081
+ "Amazon <acronym title=\"Simple Notification Service\">SNS</acronym> region:"
4082
  msgstr ""
4083
 
4084
+ #: Generic_ConfigLabels.php:10
4085
+ msgid ""
4086
+ "<acronym title=\"Application Programming Interface\">API</acronym> secret:"
4087
  msgstr ""
4088
 
4089
+ #: Generic_ConfigLabels.php:11
4090
+ msgid "Topic <acronym title=\"Identification\">ID</acronym>:"
4091
  msgstr ""
4092
 
4093
+ #: Generic_ConfigLabels.php:12 inc/options/common/header.php:42
4094
+ msgid "Message Bus"
4095
  msgstr ""
4096
 
4097
+ #: Generic_ConfigLabels.php:13
4098
+ msgid ""
4099
+ "Page Speed <acronym title=\"Application Programming Interface\">API</acronym>"
4100
+ " Key:"
4101
  msgstr ""
4102
 
4103
+ #: Generic_ConfigLabels.php:14
4104
+ msgid "Key Restriction (Referrer):"
 
 
4105
  msgstr ""
4106
 
4107
+ #: Generic_ConfigLabels.php:15
4108
+ msgid "Use single network configuration file for all sites."
4109
  msgstr ""
4110
 
4111
+ #: Generic_ConfigLabels.php:16
4112
+ msgid "Nginx server configuration file path"
 
4113
  msgstr ""
4114
 
4115
+ #: Generic_ConfigLabels.php:17
4116
+ msgid "Verify rewrite rules"
 
4117
  msgstr ""
4118
 
4119
+ #: Generic_ConfigLabels.php:18
4120
+ msgid "License:"
 
4121
  msgstr ""
4122
 
4123
+ #: Generic_ConfigLabels.php:20 inc/options/referrer.php:74
4124
+ msgid "Referrers:"
 
4125
  msgstr ""
4126
 
4127
+ #: Generic_ConfigLabels.php:21
4128
+ msgid "Referrer groups"
 
4129
  msgstr ""
4130
 
4131
+ #: Generic_ConfigLabels.php:22
4132
+ msgid "User Agents:"
4133
  msgstr ""
4134
 
4135
+ #: Generic_ConfigLabels.php:23
4136
+ msgid "User Agent groups"
 
 
4137
  msgstr ""
4138
 
4139
+ #: Generic_ConfigLabels.php:25
4140
+ msgid "Enable reverse proxy caching via varnish"
4141
  msgstr ""
4142
 
4143
+ #: Generic_ConfigLabels.php:26 Varnish_Plugin.php:79
4144
+ #: inc/options/general.php:291 inc/options/common/header.php:40
4145
+ msgid "Reverse Proxy"
 
4146
  msgstr ""
4147
 
4148
+ #: Generic_ConfigLabels.php:27
4149
+ msgid "Varnish servers:"
 
 
4150
  msgstr ""
4151
 
4152
+ #: ObjectCache_ConfigLabels.php:7
4153
+ msgid "Object Cache Method:"
 
 
4154
  msgstr ""
4155
 
4156
+ #: ObjectCache_ConfigLabels.php:8
4157
+ msgid "Object Cache:"
 
 
4158
  msgstr ""
4159
 
4160
+ #: ObjectCache_ConfigLabels.php:10
4161
+ msgid "Default lifetime of cache objects:"
4162
  msgstr ""
4163
 
4164
+ #: ObjectCache_ConfigLabels.php:12
4165
+ msgid "Global groups:"
 
4166
  msgstr ""
4167
 
4168
+ #: ObjectCache_ConfigLabels.php:13
4169
+ msgid "Non-persistent groups:"
4170
  msgstr ""
4171
 
4172
+ #: ObjectCache_ConfigLabels.php:14
4173
+ msgid "Flush all cache on post, comment etc changes."
 
 
4174
  msgstr ""
4175
 
4176
+ #: PgCache_Plugin.php:122
4177
+ msgid "REST API disabled."
4178
  msgstr ""
4179
 
4180
+ #: PgCache_Plugin.php:299
4181
+ msgid "Page Cache: All"
4182
  msgstr ""
4183
 
4184
+ #: PgCache_Plugin.php:309
4185
+ msgid "Page Cache: Current Page"
4186
  msgstr ""
4187
 
4188
+ #: Generic_Plugin_WidgetNews.php:43
4189
+ msgid "News"
4190
  msgstr ""
4191
 
4192
+ #: Generic_Plugin_Admin.php:528
4193
+ msgid "Empty Caches"
4194
  msgstr ""
4195
 
4196
+ #: Generic_Plugin_Admin.php:572
4197
+ msgid "Take a minute to update, here's why:"
4198
  msgstr ""
4199
 
4200
+ #: Generic_Plugin_Admin.php:606
4201
+ #, php-format
4202
+ msgid ""
4203
+ "Fancy permalinks are disabled. Please %s it first, then re-attempt to "
4204
+ "enabling enhanced disk mode."
4205
  msgstr ""
4206
 
4207
+ #: Generic_Plugin_Admin.php:607
4208
+ #, php-format
4209
+ msgid ""
4210
+ "Fancy permalinks are disabled. Please %s it first, then re-attempt to "
4211
+ "enabling the 'Do not process 404 errors for static objects with WordPress'."
4212
  msgstr ""
4213
 
4214
+ #: Generic_Plugin_Admin.php:608
4215
+ msgid "Failed to send support request."
 
4216
  msgstr ""
4217
 
4218
+ #: Generic_Plugin_Admin.php:609
4219
+ msgid "Please select request type."
 
4220
  msgstr ""
4221
 
4222
+ #: Generic_Plugin_Admin.php:610
4223
+ msgid ""
4224
+ "Please enter the address of the site in the site <acronym title=\"Uniform "
4225
+ "Resource Locator\">URL</acronym> field."
4226
  msgstr ""
4227
 
4228
+ #: Generic_Plugin_Admin.php:611
4229
+ msgid "Please enter your name in the Name field"
 
4230
  msgstr ""
4231
 
4232
+ #: Generic_Plugin_Admin.php:612
4233
+ msgid "Please enter valid email address in the E-Mail field."
4234
  msgstr ""
4235
 
4236
+ #: Generic_Plugin_Admin.php:613
4237
+ msgid "Please enter your phone in the phone field."
4238
  msgstr ""
4239
 
4240
+ #: Generic_Plugin_Admin.php:614
4241
+ msgid "Please enter subject in the subject field."
4242
  msgstr ""
4243
 
4244
+ #: Generic_Plugin_Admin.php:615
4245
+ msgid "Please describe the issue in the issue description field."
4246
  msgstr ""
4247
 
4248
+ #: Generic_Plugin_Admin.php:616
4249
+ msgid ""
4250
+ "Please enter an administrator login. Create a temporary one just for this "
4251
+ "support case if needed."
4252
  msgstr ""
4253
 
4254
+ #: Generic_Plugin_Admin.php:617
4255
+ msgid "Please enter WP Admin password, be sure it's spelled correctly."
4256
  msgstr ""
4257
 
4258
+ #: Generic_Plugin_Admin.php:618
4259
+ msgid ""
4260
+ "Please enter <acronym title=\"Secure Shell\">SSH</acronym> or <acronym "
4261
+ "title=\"File Transfer Protocol\">FTP</acronym> host for the site."
4262
  msgstr ""
4263
 
4264
+ #: Generic_Plugin_Admin.php:619
4265
  msgid ""
4266
+ "Please enter <acronym title=\"Secure Shell\">SSH</acronym> or <acronym "
4267
+ "title=\"File Transfer Protocol\">FTP</acronym> login for the server. Create "
4268
+ "a temporary one just for this support case if needed."
4269
  msgstr ""
4270
 
4271
+ #: Generic_Plugin_Admin.php:620
4272
+ msgid ""
4273
+ "Please enter <acronym title=\"Secure Shell\">SSH</acronym> or <acronym "
4274
+ "title=\"File Transfer Protocol\">FTP</acronym> password for the <acronym "
4275
+ "title=\"File Transfer Protocol\">FTP</acronym> account."
4276
  msgstr ""
4277
 
4278
+ #: Generic_Plugin_Admin.php:621
4279
+ msgid "Unable to send the support request."
4280
  msgstr ""
4281
 
4282
+ #: Generic_Plugin_Admin.php:622
4283
+ msgid "Please select config file."
4284
  msgstr ""
4285
 
4286
+ #: Generic_Plugin_Admin.php:623
4287
+ msgid "Unable to upload config file."
4288
  msgstr ""
4289
 
4290
+ #: Generic_Plugin_Admin.php:624
4291
+ msgid "Configuration file could not be imported."
4292
  msgstr ""
4293
 
4294
+ #: Generic_Plugin_Admin.php:625
4295
+ #, php-format
4296
+ msgid ""
4297
+ "Default settings could not be restored. Please run <strong>chmod 777 "
4298
+ "%s</strong> to make the configuration file write-able, then try again."
4299
  msgstr ""
4300
 
4301
+ #: Generic_Plugin_Admin.php:626
4302
+ msgid "Unable to purge attachment."
4303
  msgstr ""
4304
 
4305
+ #: Generic_Plugin_Admin.php:627
4306
+ msgid "Unable to purge post."
4307
  msgstr ""
4308
 
4309
+ #: Generic_Plugin_Admin.php:628
4310
+ #, php-format
4311
+ msgid ""
4312
+ "<strong>%swp-config.php</strong> could not be written, please edit config "
4313
+ "and add:<br /><strong style=\"color:#f00;\">define('COOKIE_DOMAIN', '%s');"
4314
+ "</strong> before <strong style=\"color:#f00;\">require_once(ABSPATH . 'wp-"
4315
+ "settings.php');</strong>."
4316
  msgstr ""
4317
 
4318
+ #: Generic_Plugin_Admin.php:629
4319
+ #, php-format
4320
+ msgid ""
4321
+ "<strong>%swp-config.php</strong> could not be written, please edit config "
4322
+ "and add:<br /><strong style=\"color:#f00;\">define('COOKIE_DOMAIN', false);"
4323
+ "</strong> before <strong style=\"color:#f00;\">require_once(ABSPATH . 'wp-"
4324
+ "settings.php');</strong>."
4325
  msgstr ""
4326
 
4327
+ #: Generic_Plugin_Admin.php:630
4328
+ msgid "Pull Zone could not be automatically created."
4329
  msgstr ""
4330
 
4331
+ #: Generic_Plugin_Admin.php:634
4332
+ msgid "Plugin configuration successfully updated."
 
4333
  msgstr ""
4334
 
4335
+ #: Generic_Plugin_Admin.php:635
4336
+ msgid "All caches successfully emptied."
 
4337
  msgstr ""
4338
 
4339
+ #: Generic_Plugin_Admin.php:636
4340
+ msgid "Memcached cache(s) successfully emptied."
4341
  msgstr ""
4342
 
4343
+ #: Generic_Plugin_Admin.php:637
4344
+ msgid "Opcode cache(s) successfully emptied."
4345
  msgstr ""
4346
 
4347
+ #: Generic_Plugin_Admin.php:638
4348
+ msgid "Disk cache(s) successfully emptied."
4349
  msgstr ""
4350
 
4351
+ #: Generic_Plugin_Admin.php:639
4352
+ msgid "Page cache successfully emptied."
 
4353
  msgstr ""
4354
 
4355
+ #: Generic_Plugin_Admin.php:640
4356
+ msgid "Database cache successfully emptied."
 
4357
  msgstr ""
4358
 
4359
+ #: Generic_Plugin_Admin.php:641
4360
+ msgid "Object cache successfully emptied."
 
4361
  msgstr ""
4362
 
4363
+ #: Generic_Plugin_Admin.php:642
4364
+ msgid "Fragment cache successfully emptied."
4365
  msgstr ""
4366
 
4367
+ #: Generic_Plugin_Admin.php:643
4368
+ msgid "Minify cache successfully emptied."
4369
  msgstr ""
4370
 
4371
+ #: Generic_Plugin_Admin.php:644
4372
+ msgid "Media Query string has been successfully updated."
4373
  msgstr ""
4374
 
4375
+ #: Generic_Plugin_Admin.php:645
4376
+ msgid "Varnish servers successfully purged."
4377
  msgstr ""
4378
 
4379
+ #: Generic_Plugin_Admin.php:646
 
4380
  msgid ""
4381
+ "<acronym title=\"Content Delivery Network\">CDN</acronym> was successfully "
4382
+ "purged."
4383
  msgstr ""
4384
 
4385
+ #: Generic_Plugin_Admin.php:647
4386
+ msgid "The support request has been successfully sent."
 
 
4387
  msgstr ""
4388
 
4389
+ #: Generic_Plugin_Admin.php:648
4390
+ msgid "Settings successfully imported."
4391
  msgstr ""
4392
 
4393
+ #: Generic_Plugin_Admin.php:649
4394
+ msgid "Settings successfully restored."
 
 
4395
  msgstr ""
4396
 
4397
+ #: Generic_Plugin_Admin.php:650
4398
+ msgid "Preview mode was successfully enabled"
4399
  msgstr ""
4400
 
4401
+ #: Generic_Plugin_Admin.php:651
4402
+ msgid "Preview mode was successfully disabled"
4403
  msgstr ""
4404
 
4405
+ #: Generic_Plugin_Admin.php:652
4406
  msgid ""
4407
+ "Preview settings successfully deployed. Preview mode remains enabled until "
4408
+ "it's disabled. Continue testing new settings or disable preview mode if done."
4409
  msgstr ""
4410
 
4411
+ #: Generic_Plugin_Admin.php:653
4412
+ msgid "Attachment successfully purged."
 
 
4413
  msgstr ""
4414
 
4415
+ #: Generic_Plugin_Admin.php:654
4416
+ msgid "Post successfully purged."
 
 
 
4417
  msgstr ""
4418
 
4419
+ #: Generic_Plugin_Admin.php:655
4420
+ msgid "New relic settings have been updated."
 
 
4421
  msgstr ""
4422
 
4423
+ #: Generic_Plugin_Admin.php:656
4424
+ msgid "The add-in has been removed."
4425
  msgstr ""
4426
 
4427
+ #: Generic_Plugin_Admin.php:657
4428
+ msgid "Edge mode has been enabled."
4429
  msgstr ""
4430
 
4431
+ #: Generic_Plugin_Admin.php:658
4432
+ msgid "Edge mode has been disabled."
4433
  msgstr ""
4434
 
4435
+ #: Generic_Plugin_Admin.php:659
4436
+ msgid "Pull Zone was automatically created."
4437
  msgstr ""
4438
 
4439
+ #: Generic_Plugin_Admin.php:705
4440
+ msgid "Required files and directories have been automatically created"
 
4441
  msgstr ""
4442
 
4443
+ #: Cdn_RackSpaceCloudFiles_Popup_View_Intro.php:16
4444
+ #: Cdn_RackSpaceCdn_Popup_View_Intro.php:15
4445
+ msgid "Your RackSpace API key"
4446
  msgstr ""
4447
 
4448
+ #: Minify_Plugin.php:317
4449
+ #, php-format
4450
+ msgid "Minified using %s%s"
4451
  msgstr ""
4452
 
4453
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:35 inc/options/cdn/rscf.php:33
4454
+ #: inc/options/cdn/azure.php:23
4455
+ msgid "Container:"
4456
  msgstr ""
4457
 
4458
+ #: Cdn_MaxCdn_Page_View.php:45
4459
+ msgid ""
4460
+ "<acronym title=\"Content Delivery Network\">CDN</acronym> <acronym "
4461
+ "title=\"Hypertext Transfer Protocol\">HTTP</acronym> <acronym "
4462
+ "title=\"Canonical Name\">CNAME</acronym>:"
4463
  msgstr ""
4464
 
4465
+ #: Cdn_MaxCdn_Page_View.php:59
4466
+ msgid ""
4467
+ "<acronym title=\"Content Delivery Network\">CDN</acronym> <acronym "
4468
+ "title=\"Hypertext Transfer Protocol\">HTTP</acronym>S <acronym "
4469
+ "title=\"Canonical Name\">CNAME</acronym>:"
4470
  msgstr ""
4471
 
4472
+ #: Cdn_MaxCdn_Page_View.php:77
4473
+ msgid ""
4474
+ "Disabled (always use <acronym title=\"Hypertext Transfer Protocol\">"
4475
+ "HTTP</acronym>)"
4476
  msgstr ""
4477
 
4478
+ #: Cdn_MaxCdn_Page_View.php:91
4479
+ msgid "Test MaxCDN"
4480
  msgstr ""
4481
 
4482
+ #: UserExperience_GeneralPage_View.php:21
4483
+ msgid "Defer loading offscreen images."
4484
  msgstr ""
4485
 
4486
+ #: UserExperience_GeneralPage_View.php:28
4487
+ msgid "Disable Emoji"
4488
  msgstr ""
4489
 
4490
+ #: UserExperience_GeneralPage_View.php:29
4491
+ msgid "Remove emojis support from your website."
4492
  msgstr ""
4493
 
4494
+ #: UserExperience_GeneralPage_View.php:36
4495
+ msgid "Disable wp-embed script"
 
4496
  msgstr ""
4497
 
4498
+ #: UserExperience_GeneralPage_View.php:37
4499
+ msgid ""
4500
+ "Remove wp-embed.js script from your website. oEmbed functionality still "
4501
+ "works but you will not be able to embed other WordPress posts on your pages."
4502
  msgstr ""
4503
 
4504
+ #: Extension_NewRelic_Plugin_Admin.php:20
4505
+ msgid ""
4506
+ "Legacy: New Relic is software analytics platform offering app performance "
4507
+ "management and mobile monitoring solutions."
4508
  msgstr ""
4509
 
4510
+ #: Extension_NewRelic_Plugin_Admin.php:146
4511
+ msgid "New Relic is not running correctly. "
4512
  msgstr ""
4513
 
4514
+ #: Extension_NewRelic_Plugin_Admin.php:150
4515
+ msgid "The plugin has detected the following issues:. "
4516
  msgstr ""
4517
 
4518
+ #: Extension_NewRelic_Plugin_Admin.php:158
4519
+ #, php-format
4520
+ msgid "Please review the <a href=\"%s\">settings</a>."
4521
  msgstr ""
4522
 
4523
+ #: BrowserCache_Page_View_SectionSecurity.php:13
4524
+ msgid ""
4525
+ "controls whether the current document is allowed to gather information about "
4526
+ "the acceleration of the device through the Accelerometer interface"
4527
  msgstr ""
4528
 
4529
+ #: BrowserCache_Page_View_SectionSecurity.php:16
4530
+ msgid ""
4531
+ "controls whether the current document is allowed to gather information about "
4532
+ "the amount of light in the environment around the device through the "
4533
+ "AmbientLightSensor interface"
4534
  msgstr ""
4535
 
4536
+ #: BrowserCache_Page_View_SectionSecurity.php:19
4537
+ msgid ""
4538
+ "controls whether the current document is allowed to autoplay media requested "
4539
+ "through the HTMLMediaElement interface"
4540
  msgstr ""
4541
 
4542
+ #: BrowserCache_Page_View_SectionSecurity.php:22
4543
+ msgid ""
4544
+ "controls whether the current document is allowed to use video input devices"
4545
  msgstr ""
4546
 
4547
+ #: BrowserCache_Page_View_SectionSecurity.php:25
4548
+ msgid ""
4549
+ "controls whether or not the document is permitted to use Screen Capture API"
4550
  msgstr ""
4551
 
4552
+ #: BrowserCache_Page_View_SectionSecurity.php:28
4553
+ msgid "controls whether the current document is allowed to set document.domain"
4554
  msgstr ""
4555
 
4556
+ #: BrowserCache_Page_View_SectionSecurity.php:31
4557
+ msgid ""
4558
+ "controls whether the current document is allowed to use the Encrypted Media "
4559
+ "Extensions API (EME)"
4560
  msgstr ""
4561
 
4562
+ #: BrowserCache_Page_View_SectionSecurity.php:34
4563
+ msgid ""
4564
+ "controls whether the current document is allowed to use Element."
4565
+ "requestFullScreen()"
4566
  msgstr ""
4567
 
4568
+ #: BrowserCache_Page_View_SectionSecurity.php:37
4569
+ msgid ""
4570
+ "controls whether the current document is allowed to use the Geolocation "
4571
+ "Interface"
4572
  msgstr ""
4573
 
4574
+ #: BrowserCache_Page_View_SectionSecurity.php:40
4575
+ msgid ""
4576
+ "controls whether the current document is allowed to gather information about "
4577
+ "the orientation of the device through the Gyroscope interface"
4578
  msgstr ""
4579
 
4580
+ #: BrowserCache_Page_View_SectionSecurity.php:43
4581
+ msgid ""
4582
+ "controls whether the current document is allowed to show layout animations"
4583
  msgstr ""
4584
 
4585
+ #: BrowserCache_Page_View_SectionSecurity.php:46
4586
+ msgid ""
4587
+ "controls whether the current document is allowed to display images in legacy "
4588
+ "formats"
4589
  msgstr ""
4590
 
4591
+ #: BrowserCache_Page_View_SectionSecurity.php:49
4592
+ msgid ""
4593
+ "controls whether the current document is allowed to gather information about "
4594
+ "the orientation of the device through the Magnetometer interface"
4595
  msgstr ""
4596
 
4597
+ #: BrowserCache_Page_View_SectionSecurity.php:52
4598
+ msgid ""
4599
+ "controls whether the current document is allowed to use audio input devices"
4600
  msgstr ""
4601
 
4602
+ #: BrowserCache_Page_View_SectionSecurity.php:55
4603
+ msgid ""
4604
+ "controls whether the current document is allowed to use the Web MIDI API"
4605
  msgstr ""
4606
 
4607
+ #: BrowserCache_Page_View_SectionSecurity.php:58
4608
+ msgid ""
4609
+ "controls whether the current document is allowed to download and display "
4610
+ "large images"
4611
  msgstr ""
4612
 
4613
+ #: BrowserCache_Page_View_SectionSecurity.php:61
4614
+ msgid ""
4615
+ "controls whether the current document is allowed to use the Payment Request "
4616
+ "API"
4617
  msgstr ""
4618
 
4619
+ #: BrowserCache_Page_View_SectionSecurity.php:64
4620
+ msgid ""
4621
+ "controls whether the current document is allowed to play a video in a "
4622
+ "Picture-in-Picture mode via the corresponding API"
4623
  msgstr ""
4624
 
4625
+ #: BrowserCache_Page_View_SectionSecurity.php:67
4626
+ msgid ""
4627
+ "controls whether the current document is allowed to access Web Authentcation "
4628
+ "API"
4629
  msgstr ""
4630
 
4631
+ #: BrowserCache_Page_View_SectionSecurity.php:70
4632
+ msgid ""
4633
+ "controls whether the current document is allowed to play audio via any "
4634
+ "methods"
4635
  msgstr ""
4636
 
4637
+ #: BrowserCache_Page_View_SectionSecurity.php:73
4638
+ msgid ""
4639
+ "controls whether the current document is allowed to make synchronous "
4640
+ "XMLHttpRequest requests"
4641
  msgstr ""
4642
 
4643
+ #: BrowserCache_Page_View_SectionSecurity.php:76
4644
+ msgid ""
4645
+ "controls whether the current document is allowed to download and display "
4646
+ "unoptimized images"
4647
  msgstr ""
4648
 
4649
+ #: BrowserCache_Page_View_SectionSecurity.php:79
4650
+ msgid ""
4651
+ "controls whether the current document is allowed to change the size of media "
4652
+ "elements after the initial layout is complete"
4653
  msgstr ""
4654
 
4655
+ #: BrowserCache_Page_View_SectionSecurity.php:82
4656
+ msgid "controls whether the current document is allowed to use the WebUSB API"
 
 
4657
  msgstr ""
4658
 
4659
+ #: BrowserCache_Page_View_SectionSecurity.php:85
4660
+ msgid ""
4661
+ "directive controls whether the current document is allowed to trigger device "
4662
+ "vibrations via Vibration API"
4663
  msgstr ""
4664
 
4665
+ #: BrowserCache_Page_View_SectionSecurity.php:88
4666
+ msgid ""
4667
+ "controls whether the current document is allowed to use Wake Lock API to "
4668
+ "indicate that device should not enter power-saving mode"
4669
  msgstr ""
4670
 
4671
+ #: BrowserCache_Page_View_SectionSecurity.php:91
4672
+ msgid ""
4673
+ "controls whether the current document is allowed to use the WebXR Device API."
4674
  msgstr ""
4675
 
4676
+ #: BrowserCache_Page_View_SectionSecurity.php:96
4677
+ #: inc/options/common/header.php:131
4678
+ msgid "Security Headers"
4679
  msgstr ""
4680
 
4681
+ #: BrowserCache_Page_View_SectionSecurity.php:97
4682
+ msgid ""
4683
+ "<acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> security "
4684
+ "headers provide another layer of protection for your website by helping to "
4685
+ "mitigate attacks and security vulnerabilities."
4686
  msgstr ""
4687
 
4688
+ #: BrowserCache_Page_View_SectionSecurity.php:106
 
4689
  msgid ""
4690
+ "This setting prevents attacks that are caused by passing session IDs in "
4691
+ "<acronym title=\"Uniform Resource Locator\">URL</acronym>s."
4692
  msgstr ""
4693
 
4694
+ #: BrowserCache_Page_View_SectionSecurity.php:115
4695
+ msgid ""
4696
+ "This tells the user's browser not to make the session cookie accessible to "
4697
+ "client side scripting such as JavaScript. This makes it harder for an "
4698
+ "attacker to hijack the session ID and masquerade as the effected user."
4699
  msgstr ""
4700
 
4701
+ #: BrowserCache_Page_View_SectionSecurity.php:124
4702
  msgid ""
4703
+ "This will prevent the user's session ID from being transmitted in plain text,"
4704
+ " making it much harder to hijack the user's session."
4705
  msgstr ""
4706
 
4707
+ #: BrowserCache_Page_View_SectionSecurity.php:131
 
4708
  msgid ""
4709
+ "<acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> Strict-"
4710
+ "Transport-Security (<acronym title=\"HTTP Strict Transport Security\">"
4711
+ "HSTS</acronym>) enforces secure (<acronym title=\"Hypertext Transfer "
4712
+ "Protocol\">HTTP</acronym> over <acronym title=\"Secure Sockets Layer\">"
4713
+ "SSL</acronym>/<acronym title=\"Transport Layer Security\">TLS</acronym>) "
4714
+ "connections to the server. This can help mitigate adverse effects caused by "
4715
+ "bugs and session leaks through cookies and links. It also helps defend "
4716
+ "against man-in-the-middle attacks. If there are <acronym title=\"Secure "
4717
+ "Sockets Layer\">SSL</acronym> negotiation warnings then users will not be "
4718
+ "permitted to ignore them."
4719
  msgstr ""
4720
 
4721
+ #: BrowserCache_Page_View_SectionSecurity.php:143
4722
+ #: BrowserCache_Page_View_SectionSecurity.php:238
4723
+ msgid "max-age=EXPIRES_SECONDS"
4724
  msgstr ""
4725
 
4726
+ #: BrowserCache_Page_View_SectionSecurity.php:144
4727
+ msgid "max-age=EXPIRES_SECONDS; preload"
4728
  msgstr ""
4729
 
4730
+ #: BrowserCache_Page_View_SectionSecurity.php:145
4731
+ #: BrowserCache_Page_View_SectionSecurity.php:239
4732
+ msgid "max-age=EXPIRES_SECONDS; includeSubDomains"
4733
  msgstr ""
4734
 
4735
+ #: BrowserCache_Page_View_SectionSecurity.php:146
4736
+ msgid "max-age=EXPIRES_SECONDS; includeSubDomains; preload"
4737
+ msgstr ""
4738
+
4739
+ #: BrowserCache_Page_View_SectionSecurity.php:154
4740
+ msgid ""
4741
+ "This tells the browser if it is permitted to render a page within a frame-"
4742
+ "like tag (i.e., &lt;frame&gt;, &lt;iframe&gt; or &lt;object&gt;). This is "
4743
+ "useful for preventing clickjacking attacks."
4744
  msgstr ""
4745
 
4746
+ #: BrowserCache_Page_View_SectionSecurity.php:166
4747
+ msgid "SameOrigin"
 
4748
  msgstr ""
4749
 
4750
+ #: BrowserCache_Page_View_SectionSecurity.php:167
4751
+ msgid "Deny"
 
4752
  msgstr ""
4753
 
4754
+ #: BrowserCache_Page_View_SectionSecurity.php:168
4755
+ msgid "Allow-From"
 
4756
  msgstr ""
4757
 
4758
+ #: BrowserCache_Page_View_SectionSecurity.php:178
 
4759
  msgid ""
4760
+ "This header enables the <acronym title=\"Cross-Site Scripting\">XSS</acronym>"
4761
+ " filter. It helps to stop malicious scripts from being injected into your "
4762
+ "website. Although this is already built into and enabled by default in most "
4763
+ "browsers today it is made available here to enforce its reactivation if it "
4764
+ "was disabled within the user's browser."
4765
  msgstr ""
4766
 
4767
+ #: BrowserCache_Page_View_SectionSecurity.php:190
4768
+ msgid "0"
 
4769
  msgstr ""
4770
 
4771
+ #: BrowserCache_Page_View_SectionSecurity.php:191
4772
+ msgid "1"
 
 
4773
  msgstr ""
4774
 
4775
+ #: BrowserCache_Page_View_SectionSecurity.php:192
4776
+ msgid "1; mode=block"
 
4777
  msgstr ""
4778
 
4779
+ #: BrowserCache_Page_View_SectionSecurity.php:200
4780
+ msgid ""
4781
+ "This instructs the browser to not MIME-sniff a response outside its declared "
4782
+ "content-type. It helps to reduce drive-by download attacks and stops sites "
4783
+ "from serving malevolent content that could masquerade as an executable or "
4784
+ "dynamic HTML file."
4785
  msgstr ""
4786
 
4787
+ #: BrowserCache_Page_View_SectionSecurity.php:263
4788
+ msgid "No = Enforce HPKP"
4789
  msgstr ""
4790
 
4791
+ #: BrowserCache_Page_View_SectionSecurity.php:264
4792
+ msgid "Yes = Don't Enforce HPKP"
4793
  msgstr ""
4794
 
4795
+ #: BrowserCache_Page_View_SectionSecurity.php:284
4796
+ msgid "Not Set"
4797
  msgstr ""
4798
 
4799
+ #: BrowserCache_Page_View_SectionSecurity.php:285
4800
+ msgid "no-referrer"
4801
  msgstr ""
4802
 
4803
+ #: BrowserCache_Page_View_SectionSecurity.php:286
4804
+ msgid "no-referrer-when-downgrade"
 
 
4805
  msgstr ""
4806
 
4807
+ #: BrowserCache_Page_View_SectionSecurity.php:287
4808
+ msgid "same-origin"
4809
  msgstr ""
4810
 
4811
+ #: BrowserCache_Page_View_SectionSecurity.php:288
4812
+ msgid "origin"
4813
  msgstr ""
4814
 
4815
+ #: BrowserCache_Page_View_SectionSecurity.php:289
4816
+ msgid "strict-origin"
4817
  msgstr ""
4818
 
4819
+ #: BrowserCache_Page_View_SectionSecurity.php:290
4820
+ msgid "origin-when-cross-origin"
 
4821
  msgstr ""
4822
 
4823
+ #: BrowserCache_Page_View_SectionSecurity.php:291
4824
+ msgid "strict-origin-when-cross-origin"
4825
  msgstr ""
4826
 
4827
+ #: BrowserCache_Page_View_SectionSecurity.php:292
4828
+ msgid "unsafe-url"
 
 
 
 
4829
  msgstr ""
4830
 
4831
+ #: BrowserCache_Page_View_SectionSecurity.php:448
4832
+ msgid "Feature-Policy"
4833
  msgstr ""
4834
 
4835
+ #: BrowserCache_Page_View_SectionSecurity.php:449
4836
+ msgid "Allows you to control which origins can use which features."
4837
  msgstr ""
4838
 
4839
+ #: w3-total-cache-old-php.php:10
4840
+ msgid ""
4841
+ "Please update your PHP. <strong>W3 Total Cache</strong> requires PHP version "
4842
+ "5.3 or above"
4843
  msgstr ""
4844
 
4845
+ #: UsageStatistics_Widget_View_Disabled.php:32
4846
+ msgid "Upgrade to Pro"
4847
  msgstr ""
4848
 
4849
+ #: Extension_FeedBurner_Plugin_Admin.php:42
4850
+ #, php-format
4851
+ msgid ""
4852
+ "Automatically ping (purge) FeedBurner feeds when pages / posts are modified. "
4853
+ "Default URL: %s"
4854
  msgstr ""
4855
 
4856
+ #: Extension_FeedBurner_Plugin_Admin.php:43
4857
+ msgid "Network Admin has no main URL."
4858
  msgstr ""
4859
 
4860
+ #: Generic_Page_PurgeLog_View.php:58
4861
+ msgid "Clear Log"
4862
  msgstr ""
4863
 
4864
+ #: Cdnfsd_MaxCdn_Popup_View_Intro.php:14 Cdn_MaxCdn_Popup_View_Intro.php:14
4865
+ msgid "Your MaxCDN Account credentials"
4866
  msgstr ""
4867
 
4868
+ #: DbCache_Environment.php:122
4869
+ #, php-format
4870
+ msgid ""
4871
+ "The Database add-in file db.php is not a W3 Total Cache drop-in.\n"
4872
+ " Remove it or disable Database Caching. %s"
4873
  msgstr ""
4874
 
4875
+ #: DbCache_Environment.php:124
4876
+ msgid "Remove it for me"
4877
  msgstr ""
4878
 
4879
+ #: Cdn_RackSpaceCloudFiles_Popup_View_Containers.php:24
4880
+ msgid "Select container to use"
 
 
4881
  msgstr ""
4882
 
4883
+ #: Extension_NewRelic_Page_View_Apm.php:24
4884
+ msgid "Application Settings"
 
4885
  msgstr ""
4886
 
4887
+ #: Extension_NewRelic_Page_View_Apm.php:95
4888
  #, php-format
4889
  msgid ""
4890
+ "Application settings could not be retrieved. New Relic may not be properly "
4891
+ "configured, <a href=\"%s\">review the settings</a>."
4892
  msgstr ""
4893
 
4894
+ #: Extension_NewRelic_Page_View_Apm.php:97
4895
+ msgid "Application settings are only visible when New Relic is enabled"
 
4896
  msgstr ""
4897
 
4898
+ #: Extension_NewRelic_Page_View_Apm.php:103
4899
+ msgid "Dashboard Settings"
 
4900
  msgstr ""
4901
 
4902
+ #: Extension_NewRelic_Page_View_Apm.php:114
 
 
4903
  msgid ""
4904
+ "How many minutes data retrieved from New Relic should be stored. Minimum is "
4905
+ "1 minute."
4906
  msgstr ""
4907
 
4908
+ #: Extension_NewRelic_Page_View_Apm.php:131
4909
+ msgid ""
4910
+ "Use <acronym title=\"Real User Monitoring\">RUM</acronym> only for following "
4911
+ "user roles"
4912
  msgstr ""
4913
 
4914
+ #: Extension_NewRelic_Page_View_Apm.php:134
4915
+ msgid ""
4916
+ "Select user roles that <acronym title=\"Real User Monitoring\">RUM</acronym> "
4917
+ "should be enabled for:"
4918
  msgstr ""
4919
 
4920
+ #: Extension_NewRelic_Page_View_Apm.php:153
4921
+ msgid ""
4922
+ "Include <acronym title=\"Real User Monitoring\">RUM</acronym> in compressed "
4923
+ "or cached pages:"
4924
  msgstr ""
4925
 
4926
+ #: Extension_NewRelic_Page_View_Apm.php:164
4927
+ msgid ""
4928
+ "This enables inclusion of <acronym title=\"Real User Monitoring\">"
4929
+ "RUM</acronym> when using Page Cache together with Browser Cache gzip or when "
4930
+ "using Page Cache with Disc: Enhanced"
4931
  msgstr ""
4932
 
4933
+ #: Extension_NewRelic_Page_View_Apm.php:171
4934
+ msgid ""
4935
+ "Use <acronym title=\\\"Hypertext Preprocessor\\\">PHP</acronym> function to "
4936
+ "set application name:"
4937
  msgstr ""
4938
 
4939
+ #: Extension_NewRelic_Page_View_Apm.php:177
4940
+ msgid ""
4941
+ "This is required when using New Relic on a network install to set the proper "
4942
+ "names for sites."
4943
  msgstr ""
4944
 
4945
+ #: Extension_NewRelic_Page_View_Apm.php:183
4946
+ msgid ""
4947
+ "Enable this to dynamically set proper application name. (See New Relic <a "
4948
+ "href=\"https://newrelic.com/docs/php/per-directory-settings\">Per-directory "
4949
+ "settings</a> for other methods."
4950
  msgstr ""
4951
 
4952
+ #: Extension_NewRelic_Page_View_Apm.php:191
4953
+ msgid "Enable XMIT:"
4954
  msgstr ""
4955
 
4956
+ #: lib/NetDNA/NetDNAPresentation.php:64
4957
+ msgid "Pending"
4958
  msgstr ""
4959
 
4960
+ #: lib/NetDNA/NetDNAPresentation.php:66
4961
+ msgid "Active"
4962
  msgstr ""
4963
 
4964
+ #: lib/NetDNA/NetDNAPresentation.php:68
4965
+ msgid "Cancelled"
4966
  msgstr ""
4967
 
4968
+ #: lib/NetDNA/NetDNAPresentation.php:70
4969
+ msgid "Suspended"
4970
  msgstr ""
4971
 
4972
+ #: lib/NetDNA/NetDNAPresentation.php:72
4973
+ msgid "Fraud"
4974
  msgstr ""
4975
 
4976
+ #: lib/NetDNA/NetDNAPresentation.php:74
4977
+ msgid "unknown"
4978
  msgstr ""
4979
 
4980
+ #: inc/lightbox/upgrade.php:19 inc/lightbox/upgrade.php:25
4981
+ msgid "Subscribe to Go Faster Now"
4982
  msgstr ""
4983
 
4984
+ #: inc/lightbox/minify_recommendations.php:11
4985
+ msgid ""
4986
+ "To get started with minify, we've identified the following external CSS and "
4987
+ "JS objects in the"
4988
  msgstr ""
4989
 
4990
+ #: inc/lightbox/minify_recommendations.php:17
4991
+ msgid ""
4992
+ "theme. Select \"add\" the files you wish to minify, then click \"apply &amp; "
4993
+ "close\" to save the settings."
4994
  msgstr ""
4995
 
4996
+ #: inc/lightbox/minify_recommendations.php:29
4997
+ #: inc/lightbox/minify_recommendations.php:83
4998
+ msgid "Add:"
4999
  msgstr ""
5000
 
5001
+ #: inc/lightbox/minify_recommendations.php:31
5002
+ #: inc/lightbox/minify_recommendations.php:85 inc/options/minify.php:272
5003
+ #: inc/options/minify.php:405
5004
+ msgid "File URI:"
5005
  msgstr ""
5006
 
5007
+ #: inc/lightbox/minify_recommendations.php:32
5008
+ #: inc/lightbox/minify_recommendations.php:86 inc/options/minify.php:273
5009
+ #: inc/options/minify.php:406
5010
+ msgid "Template:"
5011
  msgstr ""
5012
 
5013
+ #: inc/lightbox/minify_recommendations.php:33 inc/options/minify.php:274
5014
+ msgid "Embed Location:"
 
5015
  msgstr ""
5016
 
5017
+ #: inc/lightbox/minify_recommendations.php:53 inc/options/minify.php:292
5018
+ msgid "Embed in &lt;head&gt;"
5019
  msgstr ""
5020
 
5021
+ #: inc/lightbox/minify_recommendations.php:54 inc/options/minify.php:293
5022
+ msgid "Embed after &lt;body&gt;"
5023
  msgstr ""
5024
 
5025
+ #: inc/lightbox/minify_recommendations.php:55 inc/options/minify.php:294
5026
+ msgid "Embed before &lt;/body&gt;"
5027
  msgstr ""
5028
 
5029
+ #: inc/lightbox/minify_recommendations.php:59
5030
+ #: inc/lightbox/minify_recommendations.php:104 inc/options/minify.php:299
5031
+ #: inc/options/minify.php:424
5032
+ msgid "Verify URI"
5033
  msgstr ""
5034
 
5035
+ #: inc/lightbox/minify_recommendations.php:68
5036
+ #: inc/lightbox/minify_recommendations.php:113
5037
+ msgid "Check / Uncheck All"
5038
  msgstr ""
5039
 
5040
+ #: inc/lightbox/minify_recommendations.php:71
5041
+ msgid "No files found."
5042
  msgstr ""
5043
 
5044
+ #: inc/lightbox/minify_recommendations.php:74
5045
+ msgid "Cascading Style Sheets:"
 
5046
  msgstr ""
5047
 
5048
+ #: inc/lightbox/minify_recommendations.php:122
5049
+ msgid "Apply &amp; close"
5050
  msgstr ""
5051
 
5052
+ #: inc/lightbox/minify_recommendations.php:126
5053
+ msgid "Notes"
5054
  msgstr ""
5055
 
5056
+ #: inc/lightbox/minify_recommendations.php:129
5057
+ msgid ""
5058
+ "Typically minification of advertiser code, analytics/statistics or any other "
5059
+ "types of tracking code is not recommended."
5060
  msgstr ""
5061
 
5062
+ #: inc/lightbox/minify_recommendations.php:130
5063
+ msgid ""
5064
+ "Scripts that were not already detected above may require <a href=\"admin.php?"
5065
+ "page=w3tc_support&amp;request_type=plugin_config\">professional "
5066
+ "consultation</a> to implement."
5067
  msgstr ""
5068
 
5069
+ #: inc/lightbox/support_us.php:42
5070
+ msgid ""
5071
+ "Thank you! You've been using W3 Total Cache for seven days or so! Please "
5072
+ "support us:"
5073
  msgstr ""
5074
 
5075
+ #: inc/lightbox/support_us.php:50
5076
+ msgid "Login & Rate Us"
5077
  msgstr ""
5078
 
5079
+ #: inc/lightbox/support_us.php:61
5080
+ msgid "Tell Your Friends"
5081
  msgstr ""
5082
 
5083
+ #: inc/lightbox/support_us.php:75
5084
+ msgid "Yes, sign me up."
5085
  msgstr ""
5086
 
5087
+ #: inc/lightbox/support_us.php:82
5088
+ #, php-format
5089
+ msgid ""
5090
+ "Please review the latest <a href=\"%s\" target=\"blank\">terms of use and "
5091
+ "privacy policy</a>, and accept them."
5092
  msgstr ""
5093
 
5094
+ #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:2
5095
+ #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:30
5096
+ msgid "Create Pull Zone"
5097
  msgstr ""
5098
 
5099
+ #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:8
5100
+ msgid "Name:"
5101
  msgstr ""
5102
 
5103
+ #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:10
5104
+ msgid ""
5105
+ "Pull Zone Name. Length: 3-32 chars; only letters, digits, and dash (-) "
5106
+ "accepted"
5107
  msgstr ""
5108
 
5109
+ #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:14
5110
+ msgid "Origin <acronym title=\"Uniform Resource Indicator\">URL</acronym>:"
5111
  msgstr ""
5112
 
5113
+ #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:16
5114
+ msgid "Your server's hostname or domain"
5115
  msgstr ""
5116
 
5117
+ #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:20
5118
+ msgid "Description:"
 
 
 
5119
  msgstr ""
5120
 
5121
+ #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:22
5122
+ msgid "Something that describes your zone. Length: 1-255 chars"
5123
  msgstr ""
5124
 
5125
+ #: inc/lightbox/self_test.php:8
5126
+ msgid "Compatibility Check"
 
5127
  msgstr ""
5128
 
5129
+ #: inc/lightbox/self_test.php:14
5130
+ msgid ""
5131
+ "<span style=\"background-color: #33cc33\">Installed/Ok/Yes/True</span>: "
5132
+ "Functionality will work properly."
5133
  msgstr ""
5134
 
5135
+ #: inc/lightbox/self_test.php:15
 
5136
  msgid ""
5137
+ "<span style=\"background-color: #FFFF00\">Not detected/Not "
5138
+ "installed/Off</span>: May be installed, but cannot be automatically "
5139
+ "confirmed. Functionality will be limited."
5140
  msgstr ""
5141
 
5142
+ #: inc/lightbox/self_test.php:16
5143
+ msgid ""
5144
+ "<span style=\"background-color: #FF0000\">Not Installed/Error/No/False</span>"
5145
+ ": Plugin or some functions may not work."
5146
  msgstr ""
5147
 
5148
+ #: inc/lightbox/self_test.php:21
5149
+ msgid "Server Modules &amp; Resources:"
 
5150
  msgstr ""
5151
 
5152
+ #: inc/lightbox/self_test.php:25
5153
+ msgid "Plugin Version:"
5154
  msgstr ""
5155
 
5156
+ #: inc/lightbox/self_test.php:29
5157
+ msgid "PHP Version:"
5158
  msgstr ""
5159
 
5160
+ #: inc/lightbox/self_test.php:57
5161
+ msgid ""
5162
+ "(required for Self-hosted (<acronym title=\"File Transfer Protocol\">"
5163
+ "FTP</acronym>) <acronym title=\"Content Delivery Network\">CDN</acronym> "
5164
+ "support)"
5165
  msgstr ""
5166
 
5167
+ #: inc/lightbox/self_test.php:61
5168
+ msgid "Multibyte String support:"
5169
  msgstr ""
5170
 
5171
+ #: inc/lightbox/self_test.php:63 inc/lightbox/self_test.php:73
5172
+ #: inc/lightbox/self_test.php:83 inc/lightbox/self_test.php:93
5173
+ #: inc/lightbox/self_test.php:120 inc/lightbox/self_test.php:129
5174
+ #: inc/lightbox/self_test.php:138 inc/lightbox/self_test.php:147
5175
+ #: inc/lightbox/self_test.php:208 inc/lightbox/self_test.php:236
5176
+ msgid "Installed"
5177
  msgstr ""
5178
 
5179
+ #: inc/lightbox/self_test.php:65 inc/lightbox/self_test.php:75
5180
+ #: inc/lightbox/self_test.php:85 inc/lightbox/self_test.php:95
5181
+ #: inc/lightbox/self_test.php:113 inc/lightbox/self_test.php:122
5182
+ #: inc/lightbox/self_test.php:131 inc/lightbox/self_test.php:140
5183
+ #: inc/lightbox/self_test.php:149 inc/lightbox/self_test.php:161
5184
+ #: inc/lightbox/self_test.php:173 inc/lightbox/self_test.php:210
5185
+ #: inc/lightbox/self_test.php:238
5186
+ msgid "Not installed"
5187
  msgstr ""
5188
 
5189
+ #: inc/lightbox/self_test.php:67
5190
+ msgid "(required for Rackspace Cloud Files support)"
5191
  msgstr ""
5192
 
5193
+ #: inc/lightbox/self_test.php:71
5194
+ msgid "cURL extension:"
 
 
 
 
5195
  msgstr ""
5196
 
5197
+ #: inc/lightbox/self_test.php:77
5198
+ msgid ""
5199
+ "(required for Amazon S3, Amazon CloudFront, Rackspace CloudFiles support)"
5200
  msgstr ""
5201
 
5202
+ #: inc/lightbox/self_test.php:87
5203
+ msgid "(required for gzip compression support)"
5204
  msgstr ""
5205
 
5206
+ #: inc/lightbox/self_test.php:97
5207
+ msgid "(required for brotli compression support)"
5208
  msgstr ""
5209
 
5210
+ #: inc/lightbox/self_test.php:103
5211
+ msgid "Installed (OPCache)"
5212
  msgstr ""
5213
 
5214
+ #: inc/lightbox/self_test.php:105
5215
+ msgid "Installed (APC)"
5216
  msgstr ""
5217
 
5218
+ #: inc/lightbox/self_test.php:107
5219
+ msgid "Installed (eAccelerator)"
5220
  msgstr ""
5221
 
5222
+ #: inc/lightbox/self_test.php:109
5223
+ msgid "Installed (XCache)"
5224
  msgstr ""
5225
 
5226
+ #: inc/lightbox/self_test.php:111
5227
+ msgid "PHP6"
5228
  msgstr ""
5229
 
5230
+ #: inc/lightbox/self_test.php:118
5231
+ msgid "Memcached extension:"
5232
  msgstr ""
5233
 
5234
+ #: inc/lightbox/self_test.php:127
5235
+ msgid "Memcache extension:"
5236
  msgstr ""
5237
 
5238
+ #: inc/lightbox/self_test.php:136
5239
+ msgid "Redis extension:"
5240
  msgstr ""
5241
 
5242
+ #: inc/lightbox/self_test.php:145
5243
+ msgid "HTML Tidy extension:"
5244
  msgstr ""
5245
 
5246
+ #: inc/lightbox/self_test.php:151
5247
+ msgid "(required for HTML Tidy minifier support)"
 
5248
  msgstr ""
5249
 
5250
+ #: inc/lightbox/self_test.php:155
5251
+ msgid "Mime type detection:"
5252
  msgstr ""
5253
 
5254
+ #: inc/lightbox/self_test.php:157
5255
+ msgid "Installed (Fileinfo)"
 
5256
  msgstr ""
5257
 
5258
+ #: inc/lightbox/self_test.php:159
5259
+ msgid "Installed (mime_content_type)"
5260
  msgstr ""
5261
 
5262
+ #: inc/lightbox/self_test.php:163
5263
+ msgid ""
5264
+ "(required for <acronym title=\"Content Delivery Network\">CDN</acronym> "
5265
+ "support)"
5266
  msgstr ""
5267
 
5268
+ #: inc/lightbox/self_test.php:167
5269
+ msgid "Hash function:"
5270
  msgstr ""
5271
 
5272
+ #: inc/lightbox/self_test.php:169
5273
+ msgid "Installed (hash)"
5274
  msgstr ""
5275
 
5276
+ #: inc/lightbox/self_test.php:171
5277
+ msgid "Installed (mhash)"
5278
  msgstr ""
5279
 
5280
+ #: inc/lightbox/self_test.php:175
5281
+ msgid ""
5282
+ "(required for NetDNA / MaxCDN <acronym title=\"Content Delivery Network\">"
5283
+ "CDN</acronym> purge support)"
5284
  msgstr ""
5285
 
5286
+ #: inc/lightbox/self_test.php:179
5287
+ msgid "Open basedir:"
5288
  msgstr ""
5289
 
5290
+ #: inc/lightbox/self_test.php:181
5291
+ msgid "On:"
 
 
 
5292
  msgstr ""
5293
 
5294
+ #: inc/lightbox/self_test.php:183 inc/lightbox/self_test.php:192
5295
+ msgid "Off"
5296
  msgstr ""
5297
 
5298
+ #: inc/lightbox/self_test.php:188
5299
+ msgid "zlib output compression:"
5300
  msgstr ""
5301
 
5302
+ #: inc/lightbox/self_test.php:190
5303
+ msgid "On"
5304
  msgstr ""
5305
 
5306
+ #: inc/lightbox/self_test.php:197
5307
+ msgid "set_time_limit:"
 
 
 
 
5308
  msgstr ""
5309
 
5310
+ #: inc/lightbox/self_test.php:199
5311
+ msgid "Available"
 
 
 
 
5312
  msgstr ""
5313
 
5314
+ #: inc/lightbox/self_test.php:201
5315
+ msgid "Not available"
 
 
 
 
5316
  msgstr ""
5317
 
5318
+ #: inc/lightbox/self_test.php:212
 
5319
  msgid ""
5320
+ "(required for Self-hosted (<acronym title=\"File Transfer Protocol\">"
5321
+ "FTP</acronym>) <acronym title=\"Content Delivery Network\">CDN</acronym> "
5322
+ "<acronym title=\"Secure File Transfer Protocol\">SFTP</acronym> support)"
5323
  msgstr ""
5324
 
5325
+ #: inc/lightbox/self_test.php:241
5326
+ msgid "Not detected"
 
 
 
 
5327
  msgstr ""
5328
 
5329
+ #: inc/lightbox/self_test.php:243
5330
+ msgid "(required for disk enhanced Page Cache and Browser Cache)"
5331
  msgstr ""
5332
 
5333
+ #: inc/lightbox/self_test.php:250
5334
+ msgid "Additional Server Modules"
5335
  msgstr ""
5336
 
5337
+ #: inc/lightbox/self_test.php:261
5338
+ msgid "WordPress Resources"
5339
  msgstr ""
5340
 
5341
+ #: inc/lightbox/self_test.php:278 inc/lightbox/self_test.php:284
5342
+ #: inc/lightbox/self_test.php:295 inc/lightbox/self_test.php:305
5343
+ msgid "Not write-able"
5344
  msgstr ""
5345
 
5346
+ #: inc/lightbox/self_test.php:282
5347
+ msgid "Write-able"
5348
  msgstr ""
5349
 
5350
+ #: inc/lightbox/self_test.php:303
5351
+ msgid "Error:"
5352
  msgstr ""
5353
 
5354
+ #: inc/lightbox/self_test.php:312
5355
+ msgid "Fancy permalinks:"
5356
  msgstr ""
5357
 
5358
+ #: inc/lightbox/self_test.php:316 inc/lightbox/self_test.php:336
5359
+ #: inc/options/minify.php:66
5360
+ msgid "Disabled"
 
 
 
 
 
 
5361
  msgstr ""
5362
 
5363
+ #: inc/lightbox/self_test.php:321
5364
+ msgid "WP_CACHE define:"
5365
  msgstr ""
5366
 
5367
+ #: inc/lightbox/self_test.php:323
5368
+ msgid "Defined (true)"
5369
  msgstr ""
5370
 
5371
+ #: inc/lightbox/self_test.php:325
5372
+ msgid "Defined (false)"
5373
  msgstr ""
5374
 
5375
+ #: inc/lightbox/self_test.php:327
5376
+ msgid "Not defined"
 
 
5377
  msgstr ""
5378
 
5379
+ #: inc/lightbox/self_test.php:332
5380
+ msgid "URL rewrite:"
 
5381
  msgstr ""
5382
 
5383
+ #: inc/lightbox/self_test.php:334
5384
+ msgid "Enabled"
 
 
 
 
 
 
5385
  msgstr ""
5386
 
5387
+ #: inc/lightbox/self_test.php:341
5388
+ msgid "Network mode:"
5389
  msgstr ""
5390
 
5391
+ #: inc/lightbox/self_test.php:343
5392
+ msgid "Yes"
5393
  msgstr ""
5394
 
5395
+ #: inc/lightbox/self_test.php:345
5396
+ msgid "No"
5397
  msgstr ""
5398
 
5399
+ #: inc/lightbox/self_test.php:352
5400
+ msgid "Close"
5401
  msgstr ""
5402
 
5403
+ #: inc/options/referrer.php:18
5404
+ msgid "Referrer group support is always <span class=\"w3tc-enabled\">enabled"
5405
  msgstr ""
5406
 
5407
+ #: inc/options/referrer.php:23 inc/options/common/header.php:153
5408
+ msgid "Manage Referrer Groups"
5409
  msgstr ""
5410
 
5411
+ #: inc/options/referrer.php:25
5412
+ msgid ""
5413
+ "of referrers by specifying names in the referrers field. Assign a set of "
5414
+ "referrers to use a specific theme, redirect them to another domain, create "
5415
+ "referrer groups to ensure that a unique cache is created for each referrer "
5416
+ "group. Drag and drop groups into order (if needed) to determine their "
5417
+ "priority (top -&gt; down)."
5418
  msgstr ""
5419
 
5420
+ #: inc/options/referrer.php:37
5421
+ msgid "Delete group"
5422
  msgstr ""
5423
 
5424
+ #: inc/options/referrer.php:51 inc/options/minify.php:253
5425
+ #: inc/options/minify.php:386 inc/options/mobile.php:61
5426
+ msgid "Theme:"
5427
  msgstr ""
5428
 
5429
+ #: inc/options/referrer.php:55
5430
+ msgid "-- Pass-through --"
5431
  msgstr ""
5432
 
5433
+ #: inc/options/referrer.php:60
5434
+ msgid ""
5435
+ "Assign this group of referrers to a specific theme. Selecting \"Pass-"
5436
+ "through\" allows any plugin(s) (e.g. referrer plugins) to properly handle "
5437
+ "requests for these referrers. If the \"redirect users to\" field is not "
5438
+ "empty, this setting is ignored."
5439
  msgstr ""
5440
 
5441
+ #: inc/options/referrer.php:65 inc/options/mobile.php:79
5442
+ msgid "Redirect users to:"
5443
  msgstr ""
5444
 
5445
+ #: inc/options/referrer.php:69
5446
+ msgid ""
5447
+ "A 302 redirect is used to send this group of referrers to another hostname "
5448
+ "(domain)."
5449
  msgstr ""
5450
 
5451
+ #: inc/options/referrer.php:78
5452
+ msgid ""
5453
+ "Specify the referrers for this group. Remember to escape special characters "
5454
+ "like spaces, dots or dashes with a backslash. Regular expressions are also "
5455
+ "supported."
5456
  msgstr ""
5457
 
5458
+ #: inc/options/referrer.php:85
5459
+ msgid ""
5460
+ "No groups added. All referrers recieve the same page and minify cache "
5461
+ "results."
5462
  msgstr ""
5463
 
5464
+ # php-format
5465
+ #: inc/options/dbcache.php:12
5466
+ #, php-format
5467
+ msgid "Database caching via %s is currently %s."
5468
  msgstr ""
5469
 
5470
+ #: inc/options/dbcache.php:15
5471
+ msgid "To rebuild the database cache use the"
5472
  msgstr ""
5473
 
5474
+ #: inc/options/dbcache.php:17 inc/options/objectcache.php:22
5475
+ #: inc/options/minify.php:27
5476
+ msgid "empty cache"
5477
  msgstr ""
5478
 
5479
+ #: inc/options/dbcache.php:18
5480
+ msgid "operation."
 
5481
  msgstr ""
5482
 
5483
+ #: inc/options/dbcache.php:29
5484
+ msgid ""
5485
+ "Enabling this option is recommended to maintain default WordPress behavior."
5486
  msgstr ""
5487
 
5488
+ #: inc/options/dbcache.php:71
5489
  #, php-format
5490
+ msgid ""
5491
+ "Always ignore the specified pages / directories. Supports regular "
5492
+ "expressions (See <a href=\"%s\"><acronym title=\"Frequently Asked "
5493
+ "Questions\">FAQ</acronym></a>)."
5494
  msgstr ""
5495
 
5496
+ #: inc/options/dbcache.php:81
5497
+ msgid ""
5498
+ "Do not cache queries that contain these terms. Any entered prefix (set in wp-"
5499
+ "config.php) will be replaced with current database prefix (default: wp_). "
5500
+ "Query stems can be identified using debug mode."
5501
  msgstr ""
5502
 
5503
+ #: inc/options/dbcache.php:89
5504
+ msgid "Do not cache queries that contain these words or regular expressions."
 
5505
  msgstr ""
5506
 
5507
+ #: inc/options/dbcache.php:97
5508
+ msgid "Disable caching once specified constants defined."
 
5509
  msgstr ""
5510
 
5511
+ #: inc/options/cdn.php:15
5512
+ msgid "Jump to:"
 
5513
  msgstr ""
5514
 
5515
+ #: inc/options/cdn.php:20 inc/options/pgcache.php:492
5516
+ #: inc/options/common/header.php:77 inc/options/common/header.php:93
5517
+ msgid "Note(s)"
5518
  msgstr ""
5519
 
5520
+ #: inc/options/cdn.php:45
5521
+ msgid ""
5522
+ "Prepare the <acronym title=\"Content Delivery Network\">CDN</acronym> by:"
5523
  msgstr ""
5524
 
5525
+ #: inc/options/cdn.php:46
5526
+ msgid "importing attachments into the Media Library"
5527
  msgstr ""
5528
 
5529
+ #: inc/options/cdn.php:47
5530
+ msgid "unsuccessful file transfers"
5531
  msgstr ""
5532
 
5533
+ #: inc/options/cdn.php:47
5534
+ msgid "if some objects appear to be missing."
5535
  msgstr ""
5536
 
5537
+ #: inc/options/cdn.php:49
 
5538
  msgid ""
5539
+ "objects from the <acronym title=\"Content Delivery Network\">CDN</acronym> "
5540
+ "if needed."
5541
  msgstr ""
5542
 
5543
+ #: inc/options/cdn.php:51
5544
+ msgid "if the domain name of your site has ever changed."
 
 
 
5545
  msgstr ""
5546
 
5547
+ #: inc/options/cdn.php:54 inc/options/minify.php:35
5548
+ msgid "Update media query string"
5549
  msgstr ""
5550
 
5551
+ #: inc/options/cdn.php:54
5552
  msgid ""
5553
+ "to make existing file modifications visible to visitors with a primed cache."
 
5554
  msgstr ""
5555
 
5556
+ #: inc/options/cdn.php:70
5557
+ msgid ""
5558
+ "If checked, all attachments will be hosted with the <acronym title=\"Content "
5559
+ "Delivery Network\">CDN</acronym>."
5560
  msgstr ""
5561
 
5562
+ #: inc/options/cdn.php:72
5563
+ msgid ""
5564
+ "<br />To enable that, switch off \"Use single network configuration file for "
5565
+ "all sites\" option at General settings page and use specific settings for "
5566
+ "each blog."
5567
  msgstr ""
5568
 
5569
+ #: inc/options/cdn.php:79
5570
+ msgid "Upload attachments"
5571
  msgstr ""
5572
 
5573
+ #: inc/options/cdn.php:87
5574
+ msgid ""
5575
+ "If checked, WordPress static core file types specified in the \"wp-includes "
5576
+ "file types to upload\" field below will be hosted with the <acronym "
5577
+ "title=\"Content Delivery Network\">CDN</acronym>."
5578
  msgstr ""
5579
 
5580
+ #: inc/options/cdn.php:92
5581
+ msgid "Upload includes files"
5582
  msgstr ""
5583
 
5584
+ #: inc/options/cdn.php:100
5585
  msgid ""
5586
+ "If checked, all theme file types specified in the \"theme file types to "
5587
+ "upload\" field below will be hosted with the <acronym title=\"Content "
5588
+ "Delivery Network\">CDN</acronym>."
5589
  msgstr ""
5590
 
5591
+ #: inc/options/cdn.php:105
5592
+ msgid "Upload theme files"
5593
  msgstr ""
5594
 
5595
+ #: inc/options/cdn.php:113
5596
  msgid ""
5597
+ "If checked, minified <acronym>CSS</acronym> and <acronym>JS</acronym> files "
5598
+ "will be hosted with the <acronym title=\"Content Delivery Network\">"
5599
+ "CDN</acronym>."
5600
  msgstr ""
5601
 
5602
+ #: inc/options/cdn.php:118
5603
+ msgid "Upload minify files"
 
 
 
5604
  msgstr ""
5605
 
5606
+ #: inc/options/cdn.php:127
5607
  msgid ""
5608
+ "If checked, any file names or paths specified in the \"custom file list\" "
5609
+ "field below will be hosted with the <acronym title=\"Content Delivery "
5610
+ "Network\">CDN</acronym>."
5611
  msgstr ""
5612
 
5613
+ #: inc/options/cdn.php:134
5614
+ msgid "Upload custom files"
5615
  msgstr ""
5616
 
5617
+ #: inc/options/cdn.php:143
5618
+ msgid ""
5619
+ "If modified files are not always detected and replaced, use this option to "
5620
+ "over-write them."
5621
  msgstr ""
5622
 
5623
+ #: inc/options/cdn.php:152
5624
+ msgid ""
5625
+ "Adds canonical <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> "
5626
+ "header to assets files."
5627
  msgstr ""
5628
 
5629
+ #: inc/options/cdn.php:161
5630
+ msgid "Configuration: Objects"
5631
  msgstr ""
5632
 
5633
+ #: inc/options/cdn.php:190
 
5634
  msgid ""
5635
+ "Only purge <acronym title=\"Content Delivery Network\">CDN</acronym> manually"
 
 
 
 
 
5636
  msgstr ""
5637
 
5638
+ #: inc/options/cdn.php:191
5639
+ msgid ""
5640
+ "Purge <acronym title=\"Content Delivery Network\">CDN</acronym> only if "
5641
+ "explicit purge button is clicked."
5642
  msgstr ""
5643
 
5644
+ #: inc/options/cdn.php:217
5645
+ msgid "Select user roles that will use the origin server exclusively:"
5646
  msgstr ""
5647
 
5648
+ #: inc/options/cdn.php:241
5649
+ msgid "Automatically upload minify files"
 
 
 
 
 
5650
  msgstr ""
5651
 
5652
+ #: inc/options/cdn.php:242
 
5653
  msgid ""
5654
+ "If <acronym title=\"Content Delivery Network\">CDN</acronym> is enabled (and "
5655
+ "not using the origin pull method), your minified files will be automatically "
5656
+ "uploaded."
 
5657
  msgstr ""
5658
 
5659
+ #: inc/options/cdn.php:260
5660
+ msgid "Automatically attempt to find and upload changed files."
5661
  msgstr ""
5662
 
5663
+ #: inc/options/cdn.php:270
5664
+ msgid "Specify the interval between upload of changed files."
5665
  msgstr ""
5666
 
5667
+ #: inc/options/cdn.php:279
5668
+ msgid "The number of seconds to wait before upload attempt."
5669
  msgstr ""
5670
 
5671
+ #: inc/options/cdn.php:288
5672
+ msgid "Number of files processed per upload attempt."
5673
  msgstr ""
5674
 
5675
+ #: inc/options/cdn.php:298
5676
+ msgid ""
5677
+ "Specify the file types within the WordPress core to host with the <acronym "
5678
+ "title=\"Content Delivery Network\">CDN</acronym>."
5679
  msgstr ""
5680
 
5681
+ #: inc/options/cdn.php:307
5682
+ msgid ""
5683
+ "Specify the file types in the active theme to host with the <acronym "
5684
+ "title=\"Content Delivery Network\">CDN</acronym>."
5685
  msgstr ""
5686
 
5687
+ #: inc/options/cdn.php:316
5688
+ msgid ""
5689
+ "Automatically import files hosted with 3rd parties of these types (if used "
5690
+ "in your posts / pages) to your media library."
5691
  msgstr ""
5692
 
5693
+ #: inc/options/cdn.php:325
5694
+ msgid ""
5695
+ "Specify any files outside of theme or other common directories to host with "
5696
+ "the <acronym title=\"Content Delivery Network\">CDN</acronym>."
5697
  msgstr ""
5698
 
5699
+ #: inc/options/cdn.php:328
5700
+ msgid ""
5701
+ "To upload files in blogs.dir for current blog write wp-content/&lt;"
5702
+ "currentblog&gt;/."
5703
  msgstr ""
5704
 
5705
+ #: inc/options/cdn.php:338
5706
+ msgid ""
5707
+ "Specify user agents that should not access files hosted with the <acronym "
5708
+ "title=\"Content Delivery Network\">CDN</acronym>."
5709
  msgstr ""
5710
 
5711
+ #: inc/options/cdn.php:346
5712
+ msgid ""
5713
+ "Specify the path of files that should not use the <acronym title=\"Content "
5714
+ "Delivery Network\">CDN</acronym>."
5715
  msgstr ""
5716
 
5717
+ #: inc/options/cdn.php:355
5718
+ msgid ""
5719
+ "If using subdomain for <acronym title=\"Content Delivery Network\">"
5720
+ "CDN</acronym> functionality, this setting helps prevent new users from "
5721
+ "sending cookies in requests to the <acronym title=\"Content Delivery "
5722
+ "Network\">CDN</acronym> subdomain."
5723
  msgstr ""
5724
 
5725
+ #: inc/options/cdn.php:368
5726
+ msgid ""
5727
+ "You can use placeholders {wp_content_dir}, {plugins_dir}, {uploads_dir} "
5728
+ "instead of writing folder paths (wp-content, wp-content/plugins, wp-"
5729
+ "content/uploads)."
5730
  msgstr ""
5731
 
5732
+ #: inc/options/cdn.php:369
5733
+ msgid ""
5734
+ "If using Amazon Web Services or Self-Hosted <acronym title=\"Content "
5735
+ "Delivery Network\">CDN</acronym> types, enable <acronym title=\"Hypertext "
5736
+ "Transfer Protocol\">HTTP</acronym> compression in the \"Media &amp; Other "
5737
+ "Files\" section on <a href=\"admin.php?page=w3tc_browsercache\">Browser "
5738
+ "Cache</a> Settings tab."
5739
  msgstr ""
5740
 
5741
+ #: inc/options/general.php:24
5742
+ msgid "Disable"
5743
  msgstr ""
5744
 
5745
+ #: inc/options/general.php:25
5746
+ msgid "Deploy"
5747
  msgstr ""
5748
 
5749
+ #: inc/options/general.php:30
5750
+ msgid ""
5751
+ "Use preview mode to test configuration scenarios prior to releasing them "
5752
+ "(deploy) on the actual site. Preview mode remains active even after "
5753
+ "deploying settings until the feature is disabled."
5754
  msgstr ""
5755
 
5756
+ #: inc/options/general.php:45
5757
+ msgid "Enable page caching to decrease the response time of the site."
5758
  msgstr ""
5759
 
5760
+ #: inc/options/general.php:53
5761
+ msgid ""
5762
+ "Caching pages will reduce the response time of your site and increase the "
5763
+ "scale of your web server."
5764
  msgstr ""
5765
 
5766
+ #: inc/options/general.php:61
5767
+ msgid "Disk: Basic"
5768
+ msgstr ""
5769
+
5770
+ #: inc/options/general.php:65
5771
+ msgid "Disk: Enhanced"
5772
+ msgstr ""
5773
+
5774
+ #: inc/options/general.php:95
5775
+ msgid "Nginx + Memcached"
5776
+ msgstr ""
5777
+
5778
+ #: inc/options/general.php:106
5779
+ msgid "Shared Server (disk enhanced is best):"
5780
  msgstr ""
5781
 
5782
+ #: inc/options/general.php:137
5783
+ #, php-format
5784
  msgid ""
5785
+ "Minification can decrease file size of <acronym title=\"Hypertext Markup "
5786
+ "Language\">HTML</acronym>, <acronym title=\"Cascading Style Sheet\">"
5787
+ "CSS</acronym>, <acronym title=\"JavaScript\">JS</acronym> and feeds "
5788
+ "respectively by ~10% on average."
5789
  msgstr ""
5790
 
5791
+ #: inc/options/general.php:144
5792
+ msgid "Auto"
5793
  msgstr ""
5794
 
5795
+ #: inc/options/general.php:145
5796
+ msgid "Manual"
5797
  msgstr ""
5798
 
5799
+ #: inc/options/general.php:147
5800
+ msgid ""
5801
+ "Select manual mode to use fields on the minify settings tab to specify files "
5802
+ "to be minified, otherwise files will be minified automatically."
5803
  msgstr ""
5804
 
5805
+ #: inc/options/general.php:156 inc/options/general.php:178
5806
+ msgid "Minify (default)"
5807
  msgstr ""
5808
 
5809
+ #: inc/options/general.php:159
5810
+ msgid "HTML Tidy"
5811
  msgstr ""
5812
 
5813
+ #: inc/options/general.php:167
5814
+ msgid "JSMin (default)"
5815
  msgstr ""
5816
 
5817
+ #: inc/options/general.php:168
5818
+ msgid "Google Closure Compiler (Web Service)"
5819
  msgstr ""
5820
 
5821
+ #: inc/options/general.php:169
5822
+ msgid "Google Closure Compiler (Local Java)"
5823
  msgstr ""
5824
 
5825
+ #: inc/options/general.php:170
5826
+ msgid "Narcissus"
5827
  msgstr ""
5828
 
5829
+ #: inc/options/general.php:171 inc/options/general.php:181
5830
+ msgid "YUI Compressor"
5831
  msgstr ""
5832
 
5833
+ #: inc/options/general.php:179
5834
+ msgid "CSS Tidy"
5835
  msgstr ""
5836
 
5837
+ #: inc/options/general.php:180
5838
+ msgid "YUI Compressor (PHP)"
 
5839
  msgstr ""
5840
 
5841
+ #: inc/options/general.php:206
5842
+ msgid "Enable database caching to reduce post, page and feed creation time."
5843
  msgstr ""
5844
 
5845
+ #: inc/options/general.php:214
5846
+ msgid ""
5847
+ "Caching database objects decreases the response time of your site. Best used "
5848
+ "if object caching is not possible."
5849
  msgstr ""
5850
 
5851
+ #: inc/options/general.php:241
5852
+ msgid ""
5853
+ "Enable object caching to further reduce execution time for common operations."
5854
  msgstr ""
5855
 
5856
+ #: inc/options/general.php:249
 
5857
  msgid ""
5858
+ "Object caching greatly increases performance for highly dynamic sites that "
5859
+ "use the <a href=\"http://codex.wordpress."
5860
+ "org/Class_Reference/WP_Object_Cache\" target=\"_blank\">Object Cache "
5861
+ "<acronym title=\"Application Programming Interface\">API</acronym></a>."
5862
  msgstr ""
5863
 
5864
+ #: inc/options/general.php:272
5865
+ msgid ""
5866
+ "Reduce server load and decrease response time by using the cache available "
5867
+ "in site visitor's web browser."
5868
  msgstr ""
5869
 
5870
+ #: inc/options/general.php:280
 
5871
  msgid ""
5872
+ "Enable <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> "
5873
+ "compression and add headers to reduce server load and decrease file load "
5874
+ "time."
5875
  msgstr ""
5876
 
5877
+ #: inc/options/general.php:315
5878
+ msgid ""
5879
+ "Specify the IP addresses of your varnish instances above. The <acronym "
5880
+ "title=\"Varnish Configuration Language\">VCL</acronym>'s <acronym "
5881
+ "title=\"Access Control List\">ACL</acronym> must allow this request."
5882
  msgstr ""
5883
 
5884
+ #: inc/options/general.php:323
5885
+ msgid "Purge cache"
5886
+ msgstr ""
5887
+
5888
+ #: inc/options/general.php:348
5889
  msgid ""
5890
+ "Specify the Amazon <acronym title=\"Simple Notification Service\">"
5891
+ "SNS</acronym> service endpoint hostname. If empty, then default \"sns.us-"
5892
+ "east-1.amazonaws.com\" will be used."
5893
  msgstr ""
5894
 
5895
+ #: inc/options/general.php:358
5896
+ msgid ""
5897
+ "Specify the <acronym title=\"Application Programming Interface\">"
5898
+ "API</acronym> Key."
5899
  msgstr ""
5900
 
5901
+ #: inc/options/general.php:368
 
5902
  msgid ""
5903
+ "Specify the <acronym title=\"Application Programming Interface\">"
5904
+ "API</acronym> secret."
5905
  msgstr ""
5906
 
5907
+ #: inc/options/general.php:378
5908
+ msgid ""
5909
+ "Specify the <acronym title=\"Simple Notification Service\">SNS</acronym> "
5910
+ "topic."
5911
  msgstr ""
5912
 
5913
+ #: inc/options/general.php:392 inc/options/common/header.php:45
5914
+ msgid "Licensing"
5915
+ msgstr ""
5916
+
5917
+ #: inc/options/general.php:400
5918
+ msgid "Verify license key"
5919
  msgstr ""
5920
 
5921
+ #: inc/options/general.php:402
5922
  #, php-format
5923
+ msgid "Please enter the license key provided after %s."
5924
+ msgstr ""
5925
+
5926
+ #: inc/options/general.php:402
5927
+ msgid "upgrading"
5928
+ msgstr ""
5929
+
5930
+ #: inc/options/general.php:411 inc/options/common/header.php:47
5931
+ msgid "Miscellaneous"
5932
+ msgstr ""
5933
+
5934
+ #: inc/options/general.php:417
5935
+ msgid "Enable Google Page Speed dashboard widget"
5936
+ msgstr ""
5937
+
5938
+ #: inc/options/general.php:418
5939
+ msgid "Display Google Page Speed results on the WordPress dashboard."
5940
+ msgstr ""
5941
+
5942
+ #: inc/options/general.php:426
5943
  msgid ""
5944
+ "Learn more about obtaining a <a href=\"https://support.google."
5945
+ "com/cloud/answer/6158862\" target=\"_blank\"><acronym title=\"Application "
5946
+ "Programming Interface\">API</acronym> key here</a>."
5947
  msgstr ""
5948
 
5949
+ #: inc/options/general.php:440
5950
+ msgid "Show page rating in admin bar"
5951
+ msgstr ""
5952
+
5953
+ #: inc/options/general.php:449
5954
  msgid ""
5955
+ "Only one configuration file for whole network will be created and used. "
5956
+ "Recommended if all sites have the same configuration."
5957
  msgstr ""
5958
 
5959
+ #: inc/options/general.php:458
5960
+ msgid "If empty the default path will be used.."
5961
  msgstr ""
5962
 
5963
+ #: inc/options/general.php:466
 
5964
  msgid ""
5965
+ "Notify of server configuration errors, if this option is disabled, the "
5966
+ "server configuration for active settings can be found on the <a href=\"admin."
5967
+ "php?page=w3tc_install\">install</a> tab."
5968
  msgstr ""
5969
 
5970
+ #: inc/options/general.php:472
5971
+ msgid "Enable file locking"
5972
+ msgstr ""
5973
+
5974
+ #: inc/options/general.php:473
5975
  msgid ""
5976
+ "Not recommended for <acronym title=\"Network File System\">NFS</acronym> "
5977
+ "systems."
5978
  msgstr ""
5979
 
5980
+ #: inc/options/general.php:479
5981
+ msgid ""
5982
+ "Optimize disk enhanced page and minify disk caching for <acronym "
5983
+ "title=\"Network File System\">NFS</acronym>"
5984
  msgstr ""
5985
 
5986
+ #: inc/options/general.php:480
 
5987
  msgid ""
5988
+ "Try this option if your hosting environment uses a network based file system "
5989
+ "for a possible performance improvement."
5990
  msgstr ""
5991
 
5992
+ #: inc/options/general.php:487
5993
+ msgid "Anonymously track usage to improve product quality"
5994
  msgstr ""
5995
 
5996
+ #: inc/options/general.php:497
5997
+ msgid ""
5998
+ "Detailed information about each cache will be appended in (publicly "
5999
+ "available) <acronym title=\"Hypertext Markup Language\">HTML</acronym> "
6000
+ "comments in the page's source code. Performance in this mode will not be "
6001
+ "optimal, use sparingly and disable when not in use."
6002
  msgstr ""
6003
 
6004
+ #: inc/options/general.php:501
6005
+ msgid "Debug mode:"
6006
  msgstr ""
6007
 
6008
+ #: inc/options/general.php:517
6009
+ msgid ""
6010
+ "If selected, detailed caching information will appear at the end of each "
6011
+ "page in a <acronym title=\"Hypertext Markup Language\">HTML</acronym> "
6012
+ "comment. View a page's source code to review."
6013
  msgstr ""
6014
 
6015
+ #: inc/options/general.php:521
6016
+ msgid "Purge Logs:"
6017
+ msgstr ""
6018
+
6019
+ #: inc/options/general.php:548
6020
+ msgid ""
6021
+ "Purge Logs provide information on when your cache has been purged and what "
6022
+ "triggered it."
6023
+ msgstr ""
6024
+
6025
+ #: inc/options/general.php:550
6026
+ msgid ""
6027
+ "If you are troubleshooting a complex issue in which you are not sure why "
6028
+ "your cache is being cleared, Purge Logs can tell you why"
6029
+ msgstr ""
6030
+
6031
+ #: inc/options/general.php:568 inc/options/common/header.php:49
6032
+ msgid "Import / Export Settings"
6033
+ msgstr ""
6034
+
6035
+ #: inc/options/general.php:572
6036
+ msgid "Import configuration:"
6037
+ msgstr ""
6038
+
6039
+ #: inc/options/general.php:575
6040
+ msgid "Upload"
6041
+ msgstr ""
6042
+
6043
+ #: inc/options/general.php:576
6044
+ msgid "Upload and replace the active settings file."
6045
+ msgstr ""
6046
+
6047
+ #: inc/options/general.php:580
6048
+ msgid "Export configuration:"
6049
+ msgstr ""
6050
+
6051
+ #: inc/options/general.php:582
6052
+ msgid "Download"
6053
+ msgstr ""
6054
+
6055
+ #: inc/options/general.php:583
6056
+ msgid "Download the active settings file."
6057
+ msgstr ""
6058
+
6059
+ #: inc/options/general.php:587
6060
+ msgid "Reset configuration:"
6061
+ msgstr ""
6062
+
6063
+ #: inc/options/general.php:589
6064
+ msgid "Restore Default Settings"
6065
+ msgstr ""
6066
+
6067
+ #: inc/options/general.php:590
6068
+ msgid ""
6069
+ "Revert all settings to the defaults. Any settings staged in preview mode "
6070
+ "will not be modified."
6071
+ msgstr ""
6072
+
6073
+ #: inc/options/dashboard.php:11
6074
  #, php-format
6075
  msgid ""
6076
+ "The plugin is currently <span class=\"w3tc-%s\">%s</span> in <strong>"
6077
+ "%s</strong> mode."
6078
+ msgstr ""
6079
+
6080
+ #: inc/options/dashboard.php:20
6081
+ msgid "compatibility check"
6082
+ msgstr ""
6083
+
6084
+ #: inc/options/dashboard.php:22
6085
+ msgid "empty all caches"
6086
+ msgstr ""
6087
+
6088
+ #: inc/options/dashboard.php:22
6089
+ msgid "at once or"
6090
+ msgstr ""
6091
+
6092
+ #: inc/options/dashboard.php:23
6093
+ msgid "empty only the memcached cache(s)"
6094
+ msgstr ""
6095
+
6096
+ #: inc/options/dashboard.php:23 inc/options/dashboard.php:24
6097
+ #: inc/options/dashboard.php:25 inc/options/dashboard.php:27
6098
+ #: inc/options/dashboard.php:31
6099
+ msgid "or"
6100
+ msgstr ""
6101
+
6102
+ #: inc/options/dashboard.php:24
6103
+ msgid "empty only the opcode cache"
6104
+ msgstr ""
6105
+
6106
+ #: inc/options/dashboard.php:25
6107
+ msgid "empty only the disk cache(s)"
6108
+ msgstr ""
6109
+
6110
+ #: inc/options/dashboard.php:27
6111
+ msgid "purge CDN completely"
6112
+ msgstr ""
6113
+
6114
+ #: inc/options/dashboard.php:29
6115
+ msgid "update Media Query String"
6116
+ msgstr ""
6117
+
6118
+ #: inc/options/extensions.php:10
6119
+ #, php-format
6120
+ msgid "Extension support is always %s"
6121
+ msgstr ""
6122
+
6123
+ #: inc/options/objectcache.php:13
6124
+ #, php-format
6125
+ msgid "Object caching via %1$s is currently %2$s"
6126
+ msgstr ""
6127
+
6128
+ #: inc/options/objectcache.php:61
6129
+ msgid "Groups shared amongst sites in network mode."
6130
+ msgstr ""
6131
+
6132
+ #: inc/options/objectcache.php:69
6133
+ msgid "Groups that should not be cached."
6134
+ msgstr ""
6135
+
6136
+ #: inc/options/objectcache.php:76
6137
+ msgid ""
6138
+ "Enabling this option will increase wp-admin performance, but may cause side-"
6139
+ "effects"
6140
+ msgstr ""
6141
+
6142
+ #: inc/options/objectcache.php:82
6143
+ msgid ""
6144
+ "Use that to store transients in database even when external cache is used. "
6145
+ "That allows transient values to survive object cache cleaning / expiration"
6146
+ msgstr ""
6147
+
6148
+ #: inc/options/objectcache.php:89
6149
+ msgid ""
6150
+ "Enabling this option will increase load on server on certain actions but "
6151
+ "will guarantee that\n"
6152
+ "\t\t\t\t\tthe Object Cache is always clean and contains latest changes. <em>"
6153
+ "Enable if you are experiencing issues\n"
6154
+ "\t\t\t\t\t with options displaying wrong value/state (checkboxes etc).</em>"
6155
+ msgstr ""
6156
+
6157
+ #: inc/options/support.php:15
6158
+ msgid ""
6159
+ "Request premium services, suggest a feature or submit a bug using the form "
6160
+ "below:"
6161
+ msgstr ""
6162
+
6163
+ #: inc/options/browsercache.php:18
6164
+ #, php-format
6165
+ msgid "Browser caching is currently %s."
6166
+ msgstr ""
6167
+
6168
+ #: inc/options/browsercache.php:24
6169
+ #, php-format
6170
+ msgid ""
6171
+ "%sUpdate media query string%s to make existing file modifications visible to "
6172
+ "visitors with a primed cache"
6173
+ msgstr ""
6174
+
6175
+ #: inc/options/browsercache.php:33
6176
+ msgid "Specify global browser cache policy."
6177
+ msgstr ""
6178
+
6179
+ #: inc/options/browsercache.php:41 inc/options/browsercache.php:163
6180
+ #: inc/options/browsercache.php:266 inc/options/browsercache.php:349
6181
+ msgid "Set the Last-Modified header to enable 304 Not Modified response."
6182
+ msgstr ""
6183
+
6184
+ #: inc/options/browsercache.php:50 inc/options/browsercache.php:169
6185
+ #: inc/options/browsercache.php:272 inc/options/browsercache.php:355
6186
+ msgid "Set the expires header to encourage browser caching of files."
6187
+ msgstr ""
6188
+
6189
+ #: inc/options/browsercache.php:57 inc/options/browsercache.php:185
6190
+ #: inc/options/browsercache.php:289 inc/options/browsercache.php:371
6191
+ msgid ""
6192
+ "Set pragma and cache-control headers to encourage browser caching of files."
6193
+ msgstr ""
6194
+
6195
+ #: inc/options/browsercache.php:65 inc/options/browsercache.php:215
6196
+ #: inc/options/browsercache.php:318 inc/options/browsercache.php:401
6197
+ msgid "Set the ETag header to encourage browser caching of files."
6198
+ msgstr ""
6199
+
6200
+ #: inc/options/browsercache.php:72 inc/options/browsercache.php:221
6201
+ #: inc/options/browsercache.php:324 inc/options/browsercache.php:407
6202
+ msgid "Set this header to assist in identifying optimized files."
6203
+ msgstr ""
6204
+
6205
+ #: inc/options/browsercache.php:80 inc/options/browsercache.php:89
6206
+ #: inc/options/browsercache.php:227 inc/options/browsercache.php:233
6207
+ #: inc/options/browsercache.php:330 inc/options/browsercache.php:336
6208
+ #: inc/options/browsercache.php:413 inc/options/browsercache.php:419
6209
+ msgid "Reduce the download time for text-based files."
6210
+ msgstr ""
6211
+
6212
+ #: inc/options/browsercache.php:97 inc/options/browsercache.php:239
6213
+ #: inc/options/browsercache.php:425
6214
+ msgid ""
6215
+ "Whenever settings are changed, a new query string will be generated and "
6216
+ "appended to objects allowing the new policy to be applied."
6217
+ msgstr ""
6218
+
6219
+ #: inc/options/browsercache.php:104 inc/options/browsercache.php:244
6220
+ #: inc/options/browsercache.php:430
6221
+ msgid "Remove query strings from static resources"
6222
+ msgstr ""
6223
+
6224
+ #: inc/options/browsercache.php:105 inc/options/browsercache.php:245
6225
+ #: inc/options/browsercache.php:431
6226
+ msgid ""
6227
+ "Resources with a \"?\" in the <acronym title=\"Uniform Resource Locator\">"
6228
+ "URL</acronym> are not cached by some proxy caching servers."
6229
+ msgstr ""
6230
+
6231
+ #: inc/options/browsercache.php:114
6232
+ msgid ""
6233
+ "Do not add the prevent caching query string to the specified <acronym "
6234
+ "title=\"Uniform Resource Identifier\">URI</acronym>s. Supports regular "
6235
+ "expressions."
6236
+ msgstr ""
6237
+
6238
+ #: inc/options/browsercache.php:121
6239
+ msgid "Don't set cookies for static files"
6240
+ msgstr ""
6241
+
6242
+ #: inc/options/browsercache.php:128
6243
+ msgid ""
6244
+ "Reduce server load by allowing the web server to handle 404 (not found) "
6245
+ "errors for static files (images etc)."
6246
+ msgstr ""
6247
+
6248
+ #: inc/options/browsercache.php:129
6249
+ msgid ""
6250
+ "If enabled - you may get 404 File Not Found response for some files "
6251
+ "generated on-the-fly by WordPress plugins. You may add those file <acronym "
6252
+ "title=\"Uniform Resource Identifier\">URI</acronym>s to 404 error exception "
6253
+ "list below to avoid that."
6254
+ msgstr ""
6255
+
6256
+ #: inc/options/browsercache.php:138
6257
+ msgid ""
6258
+ "Never process 404 (not found) events for the specified <acronym "
6259
+ "title=\"Uniform Resource Identifier\">URI</acronym>s."
6260
+ msgstr ""
6261
+
6262
+ #: inc/options/browsercache.php:146
6263
+ msgid ""
6264
+ "Rewrite <acronym title=\"Universal Resource Locator\">URL</acronym> "
6265
+ "structure of objects"
6266
+ msgstr ""
6267
+
6268
+ #: inc/options/browsercache.php:147
6269
+ msgid ""
6270
+ "Generate unique <acronym title=\"Universal Resource Indicator\">URI</acronym>"
6271
+ " for each file protected from caching by browser."
6272
+ msgstr ""
6273
+
6274
+ #: inc/options/browsercache.php:156 inc/options/common/header.php:128
6275
+ msgid ""
6276
+ "<acronym title=\"Cascading Style Sheet\">CSS</acronym> &amp; <acronym "
6277
+ "title=\"JavaScript\">JS</acronym>"
6278
+ msgstr ""
6279
+
6280
+ #: inc/options/browsercache.php:157
6281
+ msgid ""
6282
+ "Specify browser cache policy for Cascading Style Sheets and JavaScript files."
6283
+ msgstr ""
6284
+
6285
+ #: inc/options/browsercache.php:201 inc/options/browsercache.php:304
6286
+ #: inc/options/browsercache.php:387
6287
+ msgid "cache with max-age (\"public, max-age=EXPIRES_SECONDS\")"
6288
+ msgstr ""
6289
+
6290
+ #: inc/options/browsercache.php:202 inc/options/browsercache.php:305
6291
+ #: inc/options/browsercache.php:388
6292
+ msgid "cache with validation (\"public, must-revalidate, proxy-revalidate\")"
6293
+ msgstr ""
6294
+
6295
+ #: inc/options/browsercache.php:203 inc/options/browsercache.php:306
6296
+ #: inc/options/browsercache.php:389
6297
+ msgid ""
6298
+ "cache with max-age and validation (\"max-age=EXPIRES_SECONDS, public, must-"
6299
+ "revalidate, proxy-revalidate\")"
6300
+ msgstr ""
6301
+
6302
+ #: inc/options/browsercache.php:204 inc/options/browsercache.php:307
6303
+ #: inc/options/browsercache.php:390
6304
+ msgid "cache without proxy (\"private, must-revalidate\")"
6305
+ msgstr ""
6306
+
6307
+ #: inc/options/browsercache.php:205
6308
+ msgid ""
6309
+ "don't cache (\"max-age=0, private, no-store, no-cache, must-revalidate\")"
6310
+ msgstr ""
6311
+
6312
+ #: inc/options/browsercache.php:208 inc/options/browsercache.php:311
6313
+ #: inc/options/browsercache.php:394
6314
+ msgid "The Expires header already sets the max-age."
6315
+ msgstr ""
6316
+
6317
+ #: inc/options/browsercache.php:251 inc/options/browsercache.php:437
6318
+ msgid "Removes Set-Cookie header for responses."
6319
+ msgstr ""
6320
+
6321
+ #: inc/options/browsercache.php:259
6322
+ msgid ""
6323
+ "<acronym title=\"Hypertext Markup Language\">HTML</acronym> &amp; <acronym "
6324
+ "title=\"Extensible Markup Language\">XML</acronym>"
6325
+ msgstr ""
6326
+
6327
+ #: inc/options/browsercache.php:260
6328
+ msgid ""
6329
+ "Specify browser cache policy for posts, pages, feeds and text-based files."
6330
+ msgstr ""
6331
+
6332
+ #: inc/options/browsercache.php:308 inc/options/browsercache.php:391
6333
+ msgid "no-cache (\"max-age=0, private, no-store, no-cache, must-revalidate\")"
6334
+ msgstr ""
6335
+
6336
+ #: inc/options/browsercache.php:344
6337
+ msgid "Media &amp; Other Files"
6338
+ msgstr ""
6339
+
6340
+ #: inc/options/minify.php:22
6341
+ #, php-format
6342
+ msgid "Minify via %s is currently %s."
6343
+ msgstr ""
6344
+
6345
+ #: inc/options/minify.php:26
6346
+ #, php-format
6347
+ msgid "To rebuild the minify cache use the %s operation."
6348
+ msgstr ""
6349
+
6350
+ #: inc/options/minify.php:30
6351
+ msgid "Get minify hints using the"
6352
+ msgstr ""
6353
+
6354
+ #: inc/options/minify.php:31
6355
+ msgid "help"
6356
+ msgstr ""
6357
+
6358
+ #: inc/options/minify.php:32
6359
+ msgid "wizard."
6360
+ msgstr ""
6361
+
6362
+ #: inc/options/minify.php:34
6363
+ #, php-format
6364
+ msgid ""
6365
+ "%s to make existing file modifications visible to visitors with a primed "
6366
+ "cache."
6367
+ msgstr ""
6368
+
6369
+ #: inc/options/minify.php:52
6370
+ msgid ""
6371
+ "If disabled, <acronym title=\"Cascading Style Sheet\">CSS</acronym> and "
6372
+ "<acronym title=\"JavaScript\">JS</acronym> embeddings will use GET variables "
6373
+ "instead of \"fancy\" links."
6374
+ msgstr ""
6375
+
6376
+ #: inc/options/minify.php:58
6377
+ msgid ""
6378
+ "Authenticated users will not receive minified pages if this option is "
6379
+ "enabled."
6380
+ msgstr ""
6381
+
6382
+ #: inc/options/minify.php:67
6383
+ msgid "Admin Notification"
6384
+ msgstr ""
6385
+
6386
+ #: inc/options/minify.php:68
6387
+ msgid "Email Notification"
6388
+ msgstr ""
6389
+
6390
+ #: inc/options/minify.php:69
6391
+ msgid "Both Admin &amp; Email Notification"
6392
+ msgstr ""
6393
+
6394
+ #: inc/options/minify.php:72
6395
+ msgid "Notify when minify cache creation errors occur."
6396
+ msgstr ""
6397
+
6398
+ #: inc/options/minify.php:81 inc/options/common/header.php:89
6399
+ #: inc/options/common/header.php:129
6400
+ msgid ""
6401
+ "<acronym title=\"Hypertext Markup Language\">HTML</acronym> &amp; <acronym "
6402
+ "title=\"eXtensible Markup Language\">XML</acronym>"
6403
+ msgstr ""
6404
+
6405
+ #: inc/options/minify.php:84
6406
+ msgid ""
6407
+ "<acronym title=\"Hypertext Markup Language\">HTML</acronym> minify settings:"
6408
+ msgstr ""
6409
+
6410
+ #: inc/options/minify.php:112
6411
+ msgid "Do not remove comments that contain these terms."
6412
+ msgstr ""
6413
+
6414
+ #: inc/options/minify.php:134 inc/options/common/header.php:90
6415
+ msgid "<acronym title=\"JavaScript\">JS</acronym>"
6416
+ msgstr ""
6417
+
6418
+ #: inc/options/minify.php:137
6419
+ msgid "<acronym title=\"JavaScript\">JS</acronym> minify settings:"
6420
+ msgstr ""
6421
+
6422
+ #: inc/options/minify.php:140
6423
+ msgid "Operations in areas:"
6424
+ msgstr ""
6425
+
6426
+ #: inc/options/minify.php:149
6427
+ msgid "Before <span class=\"html-tag\">&lt;/head&gt;"
6428
+ msgstr ""
6429
+
6430
+ #: inc/options/minify.php:158 inc/options/minify.php:177
6431
+ #: inc/options/minify.php:196
6432
+ msgid "Default (blocking)"
6433
+ msgstr ""
6434
+
6435
+ #: inc/options/minify.php:159 inc/options/minify.php:178
6436
+ #: inc/options/minify.php:197
6437
+ msgid "Non-blocking using JS"
6438
+ msgstr ""
6439
+
6440
+ #: inc/options/minify.php:160 inc/options/minify.php:179
6441
+ #: inc/options/minify.php:198
6442
+ msgid "Non-blocking using \"async\""
6443
+ msgstr ""
6444
+
6445
+ #: inc/options/minify.php:161 inc/options/minify.php:180
6446
+ #: inc/options/minify.php:199
6447
+ msgid "Non-blocking using \"defer\""
6448
+ msgstr ""
6449
+
6450
+ #: inc/options/minify.php:163 inc/options/minify.php:182
6451
+ #: inc/options/minify.php:200
6452
+ msgid "Non-blocking using \"extsrc\""
6453
+ msgstr ""
6454
+
6455
+ #: inc/options/minify.php:164 inc/options/minify.php:183
6456
+ #: inc/options/minify.php:201
6457
+ msgid "Non-blocking using \"asyncsrc\""
6458
+ msgstr ""
6459
+
6460
+ #: inc/options/minify.php:249
6461
+ msgid "<acronym title=\"JavaScript\">JS</acronym> file management:"
6462
+ msgstr ""
6463
+
6464
+ #: inc/options/minify.php:261
6465
+ msgid ""
6466
+ "Files are minified by template. First select the theme to manage, then add "
6467
+ "scripts used in all templates to the \"All Templates\" group. Use the menu "
6468
+ "above to manage scripts unique to a specific template. If necessary drag "
6469
+ "&amp; drop to resolve dependency issues (due to incorrect order)."
6470
+ msgstr ""
6471
+
6472
+ #: inc/options/minify.php:298 inc/options/minify.php:423
6473
+ #: inc/popup/cdn_queue.php:25 inc/popup/cdn_queue.php:34
6474
+ #: inc/popup/cdn_queue.php:58 inc/popup/cdn_queue.php:67
6475
+ #: inc/popup/cdn_queue.php:88 inc/popup/cdn_queue.php:97
6476
+ #: inc/options/cdn/common/cnames.php:56
6477
+ msgid "Delete"
6478
+ msgstr ""
6479
+
6480
+ #: inc/options/minify.php:309
6481
+ msgid "No <acronym title=\"JavaScript\">JS</acronym> files added"
6482
+ msgstr ""
6483
+
6484
+ #: inc/options/minify.php:310
6485
+ msgid "Add a script"
6486
+ msgstr ""
6487
+
6488
+ #: inc/options/minify.php:320 inc/options/minify.php:445
6489
+ msgid ""
6490
+ "For better performance, send files to browser before they are requested when "
6491
+ "using the <acronym title=\"Hypertext Markup Language\">HTTP</acronym>/2 "
6492
+ "protocol."
6493
+ msgstr ""
6494
+
6495
+ #: inc/options/minify.php:323 inc/options/minify.php:448
6496
+ msgid ""
6497
+ " <br /><b>Not supported by \"Disk: Enhanced\" page cache method for Nginx</b>"
6498
+ msgstr ""
6499
+
6500
+ #: inc/options/minify.php:330 inc/options/common/header.php:91
6501
+ msgid "<acronym title=\"Cascading Style Sheet\">CSS</acronym>"
6502
+ msgstr ""
6503
+
6504
+ #: inc/options/minify.php:333
6505
+ msgid "<acronym title=\"Cascading Style Sheet\">CSS</acronym> minify settings:"
6506
+ msgstr ""
6507
+
6508
+ #: inc/options/minify.php:382
6509
+ msgid "<acronym title=\"Cascading Style Sheet\">CSS</acronym> file management:"
6510
+ msgstr ""
6511
+
6512
+ #: inc/options/minify.php:394
6513
+ msgid ""
6514
+ "Files are minified by template. First select the theme to manage, then add "
6515
+ "style sheets used in all templates to the \"All Templates\" group. Use the "
6516
+ "menu above to manage style sheets unique to a specific template. If "
6517
+ "necessary drag &amp; drop to resolve dependency issues (due to incorrect "
6518
+ "order)."
6519
+ msgstr ""
6520
+
6521
+ #: inc/options/minify.php:434
6522
+ msgid "No <acronym title=\"Cascading Style Sheet\">CSS</acronym> files added"
6523
+ msgstr ""
6524
+
6525
+ #: inc/options/minify.php:435
6526
+ msgid "Add a style sheet"
6527
+ msgstr ""
6528
+
6529
+ #: inc/options/minify.php:472
6530
+ msgid ""
6531
+ "Specify the interval between download and update of external files in the "
6532
+ "minify cache. Hint: 6 hours is 21600 seconds. 12 hours is 43200 seconds. 24 "
6533
+ "hours is 86400 seconds."
6534
+ msgstr ""
6535
+
6536
+ #: inc/options/minify.php:489
6537
+ msgid ""
6538
+ "Always ignore the specified pages / directories. Use relative paths. Omit: "
6539
+ "protocol, hostname, leading forward slash and query strings."
6540
+ msgstr ""
6541
+
6542
+ #: inc/options/minify.php:497
6543
+ msgid ""
6544
+ "Always ignore the specified <acronym title=\"JavaScript\">JS</acronym> files."
6545
+ " Use relative paths. Omit: protocol, hostname, leading forward slash and "
6546
+ "query strings."
6547
+ msgstr ""
6548
+
6549
+ #: inc/options/minify.php:505
6550
+ msgid ""
6551
+ "Always ignore the specified <acronym title=\"Cascading Style Sheet\">"
6552
+ "CSS</acronym> files. Use relative paths. Omit: protocol, hostname, leading "
6553
+ "forward slash and query strings."
6554
+ msgstr ""
6555
+
6556
+ #: inc/options/minify.php:514
6557
+ msgid "Specify user agents that will never receive minified content."
6558
+ msgstr ""
6559
+
6560
+ #: inc/options/minify.php:524
6561
+ msgid "Specify external files/libraries that should be combined."
6562
+ msgstr ""
6563
+
6564
+ #: inc/options/minify.php:530
6565
+ msgid "Use Regular Expressions for file name matching"
6566
+ msgstr ""
6567
+
6568
+ #: inc/options/minify.php:531
6569
+ msgid ""
6570
+ "If external script file names vary, use regular expressions in the \"Include "
6571
+ "external files/libraries\" field to simplify matching."
6572
+ msgstr ""
6573
+
6574
+ #: inc/options/minify.php:545
6575
+ msgid ""
6576
+ "Enable <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> "
6577
+ "compression in the \"Cascading Style Sheets &amp; JavaScript\" section on <a "
6578
+ "href=\"admin.php?page=w3tc_browsercache\">Browser Cache</a> Settings tab."
6579
+ msgstr ""
6580
+
6581
+ #: inc/options/minify.php:546
6582
+ msgid ""
6583
+ "The <acronym title=\"Time to Live\">TTL</acronym> of page cache files is set "
6584
+ "via the \"Expires header lifetime\" field in the \"Cascading Style Sheets "
6585
+ "&amp; JavaScript\" section on <a href=\"admin.php?page=w3tc_browsercache\">"
6586
+ "Browser Cache</a> Settings tab."
6587
+ msgstr ""
6588
+
6589
+ #: inc/options/install.php:11 inc/options/common/header.php:162
6590
+ msgid "Initial Installation"
6591
+ msgstr ""
6592
+
6593
+ #: inc/options/install.php:14
6594
+ msgid "Set the permissions of wp-content/ back to 755, e.g.:"
6595
+ msgstr ""
6596
+
6597
+ #: inc/options/install.php:17
6598
+ msgid ""
6599
+ "On the \"<a href=\"admin.php?page=w3tc_general\">General</a>\" tab and "
6600
+ "select your caching methods for page, database and minify. In most cases, "
6601
+ "\"disk enhanced\" mode for page cache, \"disk\" mode for minify and \"disk\" "
6602
+ "mode for database caching are \"good\" settings."
6603
+ msgstr ""
6604
+
6605
+ #: inc/options/install.php:18
6606
+ msgid ""
6607
+ "1. The \"Compatibility Mode\" option found in the advanced section of the "
6608
+ "\"<a href=\"admin.php?page=w3tc_pgcache\">Page Cache Settings</a>\" tab will "
6609
+ "enable functionality that optimizes the interoperablity of caching with "
6610
+ "WordPress, is disabled by default, but highly recommended. Years of testing "
6611
+ "in hundreds of thousands of installations have helped us learn how to make "
6612
+ "caching behave well with WordPress. The tradeoff is that disk enhanced page "
6613
+ "cache performance under load tests will be decreased by ~20% at scale."
6614
+ msgstr ""
6615
+
6616
+ #: inc/options/install.php:19
6617
+ msgid ""
6618
+ "<em>Recommended:</em> On the \"<a href=\"admin.php?page=w3tc_minify\">"
6619
+ "Minify</a>\" tab all of the recommended settings are preset. Use the help "
6620
+ "button to simplify discovery of your <acronym title=\"Cascading Style "
6621
+ "Sheet\">CSS</acronym> and <acronym title=\"JavaScript\">JS</acronym> files "
6622
+ "and groups. Pay close attention to the method and location of your <acronym "
6623
+ "title=\"JavaScript\">JS</acronym> group embeddings. See the plugin's <a "
6624
+ "href=\"https://api.w3-edge.com/v1/redirects/faq/usage\"><acronym "
6625
+ "title=\"Frequently Asked Questions\">FAQ</acronym></a> for more information "
6626
+ "on usage."
6627
+ msgstr ""
6628
+
6629
+ #: inc/options/install.php:20
6630
+ msgid ""
6631
+ "<em>Recommended:</em> On the \"<a href=\"admin.php?page=w3tc_browsercache\">"
6632
+ "Browser Cache</a>\" tab, <acronym title=\"Hypertext Transfer Protocol\">"
6633
+ "HTTP</acronym> compression is enabled by default. Make sure to enable other "
6634
+ "options to suit your goals."
6635
+ msgstr ""
6636
+
6637
+ #: inc/options/install.php:21
6638
+ msgid ""
6639
+ "<em>Recommended:</em> If you already have a content delivery network "
6640
+ "(<acronym title=\"Content Delivery Network\">CDN</acronym>) provider, "
6641
+ "proceed to the \"<a href=\"admin.php?page=w3tc_cdn\">Content Delivery "
6642
+ "Network</a>\" tab and populate the fields and set your preferences. If you "
6643
+ "do not use the Media Library, you will need to import your images etc into "
6644
+ "the default locations. Use the Media Library Import Tool on the \"Content "
6645
+ "Delivery Network\" tab to perform this task. If you do not have a <acronym "
6646
+ "title=\"Content Delivery Network\">CDN</acronym> provider, you can still "
6647
+ "improve your site's performance using the \"Self-hosted\" method. On your "
6648
+ "own server, create a subdomain and matching <acronym title=\"Domain Name "
6649
+ "System\">DNS</acronym> Zone record; e.g. static.domain.com and configure "
6650
+ "<acronym title=\"File Transfer Protocol\">FTP</acronym> options on the "
6651
+ "\"Content Delivery Network\" tab accordingly. Be sure to <acronym "
6652
+ "title=\"File Transfer Protocol\">FTP</acronym> upload the appropriate files, "
6653
+ "using the available upload buttons."
6654
+ msgstr ""
6655
+
6656
+ #: inc/options/install.php:22
6657
+ msgid ""
6658
+ "<em>Optional:</em> On the \"<a href=\"admin.php?page=w3tc_dbcache\">Database "
6659
+ "Cache</a>\" tab the recommended settings are preset. If using a shared "
6660
+ "hosting account use the \"disk\" method with caution; in either of these "
6661
+ "cases the response time of the disk may not be fast enough, so this option "
6662
+ "is disabled by default."
6663
+ msgstr ""
6664
+
6665
+ #: inc/options/install.php:23
6666
+ msgid ""
6667
+ "<em>Optional:</em> On the \"<a href=\"admin.php?page=w3tc_objectcache\">"
6668
+ "Object Cache</a>\" tab the recommended settings are preset. If using a "
6669
+ "shared hosting account use the \"disk\" method with caution, the response "
6670
+ "time of the disk may not be fast enough, so this option is disabled by "
6671
+ "default. Test this option with and without database cache to ensure that it "
6672
+ "provides a performance increase."
6673
+ msgstr ""
6674
+
6675
+ #: inc/options/install.php:24
6676
+ msgid ""
6677
+ "<em>Optional:</em> On the \"<a href=\"admin.php?page=w3tc_mobile\">User "
6678
+ "Agent Groups</a>\" tab, specify any user agents, like mobile phones if a "
6679
+ "mobile theme is used."
6680
+ msgstr ""
6681
+
6682
+ #: inc/options/install.php:28
6683
+ msgid ""
6684
+ "Check out the <acronym title=\"Frequently Asked Questions\">FAQ</acronym> "
6685
+ "for more details on <a href=\"admin.php?page=w3tc_faq\">usage</a>"
6686
+ msgstr ""
6687
+
6688
+ #: inc/options/install.php:33
6689
+ msgid "Rewrite Rules (based on active settings)"
6690
+ msgstr ""
6691
+
6692
+ #: inc/options/install.php:41 inc/options/common/header.php:167
6693
+ msgid "Other"
6694
+ msgstr ""
6695
+
6696
+ #: inc/options/install.php:50 inc/options/common/header.php:169
6697
+ msgid "Services"
6698
+ msgstr ""
6699
+
6700
+ #: inc/options/install.php:53
6701
+ msgid "Server Preparation"
6702
+ msgstr ""
6703
+
6704
+ #: inc/options/install.php:56
6705
+ msgid "Install Memcached Deamon"
6706
+ msgstr ""
6707
+
6708
+ #: inc/options/install.php:60 inc/options/common/header.php:170
6709
+ msgid "<acronym title=\"Hypertext Preprocessor\">PHP</acronym> Modules"
6710
+ msgstr ""
6711
+
6712
+ #: inc/options/install.php:63
6713
+ msgid "Install Memcached Module"
6714
+ msgstr ""
6715
+
6716
+ #: inc/options/install.php:66
6717
+ msgid "Install <acronym title=\"Alternative PHP Cache\">APC</acronym> module"
6718
+ msgstr ""
6719
+
6720
+ #: inc/options/install.php:69
6721
+ msgid "Install XCache Module"
6722
+ msgstr ""
6723
+
6724
+ #: inc/options/install.php:72
6725
+ msgid "Install eAccelerator Module"
6726
+ msgstr ""
6727
+
6728
+ #: inc/options/install.php:75
6729
+ msgid "New Relic Module"
6730
+ msgstr ""
6731
+
6732
+ #: inc/options/install.php:87
6733
+ msgid ""
6734
+ "Additional installation guides can be found in the <a href=\"https://api.w3-"
6735
+ "edge.com/v1/redirects/faq/installation\" target=\"_blank\">wiki</a>."
6736
+ msgstr ""
6737
+
6738
+ #: inc/options/install.php:88
6739
+ msgid ""
6740
+ "Best compatibility with <a href=\"http://www.iis.net/\" target=\"_blank\">"
6741
+ "IIS</a> is realized via <a href=\"http://www.iis."
6742
+ "net/download/wincacheforphp\" target=\"_blank\">WinCache</a> opcode cache."
6743
+ msgstr ""
6744
+
6745
+ #: inc/options/install.php:89
6746
+ msgid ""
6747
+ "In the case where Apache is not used, the .htaccess file located in the root "
6748
+ "directory of the WordPress installation, wp-content/w3tc/pgcache/.htaccess "
6749
+ "and wp-content/w3tc/min/.htaccess contain directives that must be manually "
6750
+ "created for your web server software."
6751
+ msgstr ""
6752
+
6753
+ #: inc/options/install.php:90
6754
+ msgid ""
6755
+ "Restarting the web server will empty the opcode cache, which means it will "
6756
+ "have to be rebuilt over time and your site's performance will suffer during "
6757
+ "this period. Still, an opcode cache should be installed in any case to "
6758
+ "maximize WordPress performance."
6759
+ msgstr ""
6760
+
6761
+ #: inc/options/install.php:91
6762
+ msgid ""
6763
+ "Consider using memcached for objects that must persist across web server "
6764
+ "restarts or that you wish to share amongst your server pool, e.g.: database "
6765
+ "objects or page cache."
6766
+ msgstr ""
6767
+
6768
+ #: inc/options/about.php:14
6769
+ msgid "Improved Google search engine ranking"
6770
+ msgstr ""
6771
+
6772
+ #: inc/options/about.php:15
6773
+ msgid "Increased visitor time on site"
6774
+ msgstr ""
6775
+
6776
+ #: inc/options/about.php:16
6777
+ msgid "Optimized progressive render (pages start rendering immediately)"
6778
+ msgstr ""
6779
+
6780
+ #: inc/options/about.php:17
6781
+ msgid ""
6782
+ "Reduced <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> "
6783
+ "Transactions, <acronym title=\"Domain Name System\">DNS</acronym> lookups "
6784
+ "and reduced document load time"
6785
+ msgstr ""
6786
+
6787
+ #: inc/options/about.php:18
6788
+ msgid ""
6789
+ "Bandwidth savings via Minify and <acronym title=\"Hypertext Transfer "
6790
+ "Protocol\">HTTP</acronym> compression of <acronym title=\"Hypertext Markup "
6791
+ "Language\">HTML</acronym>, <acronym title=\"Cascading Style Sheet\">"
6792
+ "CSS</acronym>, JavaScript and feeds"
6793
+ msgstr ""
6794
+
6795
+ #: inc/options/about.php:19
6796
+ msgid ""
6797
+ "Increased web server concurrency and increased scale (easily sustain high "
6798
+ "traffic spikes)"
6799
+ msgstr ""
6800
+
6801
+ #: inc/options/about.php:20
6802
+ msgid ""
6803
+ "Transparent content delivery network (<acronym title=\"Content Delivery "
6804
+ "Network\">CDN</acronym>) integration with Media Library, theme files and "
6805
+ "WordPress core"
6806
+ msgstr ""
6807
+
6808
+ #: inc/options/about.php:21
6809
+ msgid ""
6810
+ "Caching of pages / posts in memory or on disk or on <acronym title=\"Content "
6811
+ "Delivery Network\">CDN</acronym> (mirror only)"
6812
+ msgstr ""
6813
+
6814
+ #: inc/options/about.php:22
6815
+ msgid ""
6816
+ "Caching of (minified) <acronym title=\"Cascading Style Sheet\">CSS</acronym> "
6817
+ "and JavaScript in memory, on disk or on <acronym title=\"Content Delivery "
6818
+ "Network\">CDN</acronym>"
6819
+ msgstr ""
6820
+
6821
+ #: inc/options/about.php:23
6822
+ msgid "Caching of database objects in memory or on disk"
6823
+ msgstr ""
6824
+
6825
+ #: inc/options/about.php:24
6826
+ msgid "Caching of objects in memory or on disk"
6827
+ msgstr ""
6828
+
6829
+ #: inc/options/about.php:25
6830
+ msgid ""
6831
+ "Caching of feeds (site, categories, tags, comments, search results) in "
6832
+ "memory or on disk"
6833
+ msgstr ""
6834
+
6835
+ #: inc/options/about.php:26
6836
+ msgid ""
6837
+ "Caching of search results pages (i.e. <acronym title=\"Uniform Resource "
6838
+ "Identifier\">URI</acronym>s with query string variables) in memory or on disk"
6839
+ msgstr ""
6840
+
6841
+ #: inc/options/about.php:27
6842
+ msgid "Minification of posts / pages and feeds"
6843
+ msgstr ""
6844
+
6845
+ #: inc/options/about.php:28
6846
+ msgid ""
6847
+ "Minification (concatenation and white space removal) of inline, external or "
6848
+ "3rd party JavaScript / <acronym title=\"Cascading Style Sheet\">CSS</acronym>"
6849
+ " with automated updates"
6850
+ msgstr ""
6851
+
6852
+ #: inc/options/about.php:29
6853
+ msgid ""
6854
+ "Complete header management including <a href=\"http://en.wikipedia."
6855
+ "org/wiki/HTTP_ETag\">ETags</a>"
6856
+ msgstr ""
6857
+
6858
+ #: inc/options/about.php:30
6859
+ msgid "JavaScript embedding group and location management"
6860
+ msgstr ""
6861
+
6862
+ #: inc/options/about.php:31
6863
+ msgid ""
6864
+ "Import post attachments directly into the Media Library (and <acronym "
6865
+ "title=\"Content Delivery Network\">CDN</acronym>)"
6866
+ msgstr ""
6867
+
6868
+ #: inc/options/about.php:34
6869
+ msgid ""
6870
+ "Your users have less data to download, you can now serve more visitors at "
6871
+ "once without upgrading your hardware and you don't have to change how you do "
6872
+ "anything; just set it and forget it."
6873
+ msgstr ""
6874
+
6875
+ #: inc/options/about.php:36
6876
+ msgid "Who do I thank for all of this?"
6877
+ msgstr ""
6878
+
6879
+ #: inc/options/about.php:38
6880
+ msgid ""
6881
+ "It's quite difficult to recall all of the innovators that have shared their "
6882
+ "thoughts, code and experiences in the blogosphere over the years, but here "
6883
+ "are some names to get you started:"
6884
+ msgstr ""
6885
+
6886
+ #: inc/options/about.php:55
6887
+ msgid ""
6888
+ "Please reach out to all of these people and support their projects if you're "
6889
+ "so inclined."
6890
+ msgstr ""
6891
+
6892
+ #: inc/options/mobile.php:18
6893
+ msgid ""
6894
+ "User agent group support is always <span class=\"w3tc-enabled\">"
6895
+ "enabled</span>."
6896
+ msgstr ""
6897
+
6898
+ #: inc/options/mobile.php:23 inc/options/common/header.php:142
6899
+ msgid "Manage User Agent Groups"
6900
+ msgstr ""
6901
+
6902
+ #: inc/options/mobile.php:28
6903
+ msgid ""
6904
+ "of user agents by specifying names in the user agents field. Assign a set of "
6905
+ "user agents to use a specific theme, redirect them to another domain or if "
6906
+ "an existing mobile plugin is active, create user agent groups to ensure that "
6907
+ "a unique cache is created for each user agent group. Drag and drop groups "
6908
+ "into order (if needed) to determine their priority (top -&gt; down)."
6909
+ msgstr ""
6910
+
6911
+ #: inc/options/mobile.php:73
6912
+ msgid ""
6913
+ "Assign this group of user agents to a specific theme. Selecting \"Pass-"
6914
+ "through\" allows any plugin(s) (e.g. mobile plugins) to properly handle "
6915
+ "requests for these user agents. If the \"redirect users to\" field is not "
6916
+ "empty, this setting is ignored."
6917
+ msgstr ""
6918
+
6919
+ #: inc/options/mobile.php:87
6920
+ msgid ""
6921
+ "A 302 redirect is used to send this group of users to another hostname "
6922
+ "(domain); recommended if a 3rd party service provides a mobile version of "
6923
+ "your site."
6924
+ msgstr ""
6925
+
6926
+ #: inc/options/mobile.php:92
6927
+ msgid "User agents:"
6928
+ msgstr ""
6929
+
6930
+ #: inc/options/mobile.php:99
6931
+ msgid ""
6932
+ "Specify the user agents for this group. Remember to escape special "
6933
+ "characters like spaces, dots or dashes with a backslash. Regular expressions "
6934
+ "are also supported."
6935
+ msgstr ""
6936
+
6937
+ #: inc/options/mobile.php:107
6938
+ msgid ""
6939
+ "No groups added. All user agents recieve the same page and minify cache "
6940
+ "results."
6941
+ msgstr ""
6942
+
6943
+ # php-format
6944
+ #: inc/options/pgcache.php:13
6945
+ #, php-format
6946
+ msgid "Page caching via %1$s is currently %2$s"
6947
+ msgstr ""
6948
+
6949
+ #: inc/options/pgcache.php:21
6950
+ #, php-format
6951
+ msgid "To rebuild the page cache use the %s operation"
6952
+ msgstr ""
6953
+
6954
+ #: inc/options/pgcache.php:35
6955
+ msgid ""
6956
+ "For many blogs this is your most visited page, it is recommended that you "
6957
+ "cache it."
6958
+ msgstr ""
6959
+
6960
+ #: inc/options/pgcache.php:42
6961
+ msgid ""
6962
+ "By default the front page is cached when using static front page in reading "
6963
+ "settings."
6964
+ msgstr ""
6965
+
6966
+ #: inc/options/pgcache.php:49
6967
+ msgid ""
6968
+ "Even if using a feed proxy service (like <a href=\"http://en.wikipedia."
6969
+ "org/wiki/FeedBurner\" target=\"_blank\">FeedBurner</a>), enabling this "
6970
+ "option is still recommended."
6971
+ msgstr ""
6972
+
6973
+ #: inc/options/pgcache.php:55
6974
+ msgid ""
6975
+ "Cache <acronym title=\"Secure Socket Layer\">SSL</acronym> requests "
6976
+ "(uniquely) for improved performance."
6977
+ msgstr ""
6978
+
6979
+ #: inc/options/pgcache.php:63
6980
+ msgid "Search result (and similar) pages will be cached if enabled."
6981
+ msgstr ""
6982
+
6983
+ #: inc/options/pgcache.php:69
6984
+ msgid ""
6985
+ "Reduce server load by caching 404 pages. If the disk enhanced method of disk "
6986
+ "caching is used, 404 pages will be returned with a 200 response code. Use at "
6987
+ "your own risk."
6988
+ msgstr ""
6989
+
6990
+ #: inc/options/pgcache.php:75
6991
+ msgid ""
6992
+ "Unauthenticated users may view a cached version of the last authenticated "
6993
+ "user's view of a given page. Disabling this option is not recommended."
6994
  msgstr ""
6995
 
6996
+ #: inc/options/pgcache.php:81
6997
+ msgid "Select user roles that should not receive cached pages:"
 
6998
  msgstr ""
6999
 
7000
+ #: inc/options/pgcache.php:98
7001
+ msgid "Aliases"
 
7002
  msgstr ""
7003
 
7004
+ #: inc/options/pgcache.php:104
7005
+ msgid "Cache alias hostnames:"
 
7006
  msgstr ""
7007
 
7008
+ #: inc/options/pgcache.php:107
7009
+ msgid "If the same WordPress content is accessed from different domains"
 
7010
  msgstr ""
7011
 
7012
+ #: inc/options/pgcache.php:113
7013
  msgid ""
7014
+ "Additional home <acronym title=\"Uniform Resource Locator\">URL</acronym>s:"
7015
  msgstr ""
7016
 
7017
+ #: inc/options/pgcache.php:115
7018
  msgid ""
7019
+ "Specify full home <acronym title=\"Uniform Resource Locator\">URL</acronym>s "
7020
+ "of your mirrors so that plugin will flush it's cache when content is changed."
7021
+ " For example:<br /> http://my-site.com<br />http://www.my-site.com<br />"
7022
+ "https://my-site.com"
7023
  msgstr ""
7024
 
7025
+ #: inc/options/pgcache.php:123 inc/options/common/header.php:75
7026
+ msgid "Cache Preload"
 
 
 
7027
  msgstr ""
7028
 
7029
+ #: inc/options/pgcache.php:136
 
7030
  msgid ""
7031
+ "The number of seconds to wait before creating another set of cached pages."
 
 
7032
  msgstr ""
7033
 
7034
+ #: inc/options/pgcache.php:145
 
7035
  msgid ""
7036
+ "Limit the number of pages to create per batch. Fewer pages may be better for "
7037
+ "under-powered servers."
 
 
7038
  msgstr ""
7039
 
7040
+ #: inc/options/pgcache.php:154
 
7041
  msgid ""
7042
+ "A <a href=\"http://www.xml-sitemaps.com/validate-xml-sitemap.html\" "
7043
+ "target=\"_blank\">compliant</a> sitemap can be used to specify the pages to "
7044
+ "maintain in the primed cache. Pages will be cached according to the "
7045
+ "priorities specified in the <acronym title=\"Extensible Markup Language\">"
7046
+ "XML</acronym> file."
7047
  msgstr ""
7048
 
7049
+ #: inc/options/pgcache.php:171
7050
+ msgid "Purge Policy: "
 
 
 
 
 
7051
  msgstr ""
7052
 
7053
+ #: inc/options/pgcache.php:175
 
7054
  msgid ""
7055
+ "Specify the pages and feeds to purge when posts are created, edited, or "
7056
+ "comments posted. The defaults are recommended because additional options may "
7057
+ "reduce server performance:"
 
7058
  msgstr ""
7059
 
7060
+ #: inc/options/pgcache.php:227
 
7061
  msgid ""
7062
+ "Specify number of pages that lists posts (archive etc) that should be purged "
7063
+ "on post updates etc, i.e example.com/ ... example.com/page/5. <br />0 means "
7064
+ "all pages that lists posts are purged, i.e example.com/page/2 ... ."
7065
  msgstr ""
7066
 
7067
+ #: inc/options/pgcache.php:236
 
7068
  msgid ""
7069
+ "Specify additional pages to purge. Including parent page in path. Ex: "
7070
+ "parent/posts."
 
7071
  msgstr ""
7072
 
7073
+ #: inc/options/pgcache.php:243
7074
+ msgid "Specify a regular expression that matches your sitemaps."
7075
  msgstr ""
7076
 
7077
+ #: inc/options/pgcache.php:251
7078
  msgid ""
7079
+ "<acronym title=\"REpresentational State Transfer\">REST</acronym> <acronym "
7080
+ "title=\"Application Programming Interface\">API</acronym>"
 
 
 
 
 
 
 
 
 
 
 
7081
  msgstr ""
7082
 
7083
+ #: inc/options/pgcache.php:264
7084
  msgid ""
7085
+ "If you’re using the WordPress API make sure to use caching to scale "
7086
+ "performance."
7087
  msgstr ""
7088
 
7089
+ #: inc/options/pgcache.php:266
7090
  msgid ""
7091
+ "If you use WordPress as a backend for integrations, API caching may be for "
7092
+ "you. Similar to page caching, repeat requests will benefit by having "
7093
+ "significantly lower response times and consume fewer resources to deliver."
7094
  msgstr ""
7095
 
7096
+ #: inc/options/pgcache.php:268
7097
  msgid ""
7098
+ "Note: If WordPress is not used as a backend, for additional security, the "
7099
+ "API can be disabled completely."
7100
  msgstr ""
7101
 
7102
+ #: inc/options/pgcache.php:274
7103
  msgid ""
7104
+ "Controls WordPress <acronym title=\"REpresentational State Transfer\">"
7105
+ "REST</acronym> <acronym title=\"Application Programming Interface\">"
7106
+ "API</acronym> functionality."
7107
  msgstr ""
7108
 
7109
+ #: inc/options/pgcache.php:285
7110
+ msgid "Late initialization:"
 
 
7111
  msgstr ""
7112
 
7113
+ #: inc/options/pgcache.php:289
 
7114
  msgid ""
7115
+ "Enables support for WordPress functionality in fragment caching for the page "
7116
+ "caching engine. Use of this feature may increase response times."
 
 
 
 
 
 
 
 
 
 
 
 
7117
  msgstr ""
7118
 
7119
+ #: inc/options/pgcache.php:293
7120
+ msgid "Late caching:"
7121
  msgstr ""
7122
 
7123
+ #: inc/options/pgcache.php:297
7124
  msgid ""
7125
+ "Overwrites key of page caching via custom filters by postponing entry "
7126
+ "extraction during the init action."
7127
  msgstr ""
7128
 
7129
+ #: inc/options/pgcache.php:312
7130
+ msgid "Compatibility mode:"
7131
  msgstr ""
7132
 
7133
+ #: inc/options/pgcache.php:315
 
7134
  msgid ""
7135
+ "Decreases performance by ~20% at scale in exchange for increasing "
7136
+ "interoperability with more hosting environments and WordPress idiosyncrasies."
7137
+ " This option should be enabled for most sites."
 
 
 
7138
  msgstr ""
7139
 
7140
+ #: inc/options/pgcache.php:320
7141
+ msgid "Charset:"
7142
  msgstr ""
7143
 
7144
+ #: inc/options/pgcache.php:323
 
7145
  msgid ""
7146
+ "Resolve issues incorrect odd character encoding that may appear in cached "
7147
+ "pages."
7148
  msgstr ""
7149
 
7150
+ #: inc/options/pgcache.php:328
7151
+ msgid "Reject HEAD requests:"
 
7152
  msgstr ""
7153
 
7154
+ #: inc/options/pgcache.php:335
 
7155
  msgid ""
7156
+ "If disabled, HEAD requests can often be cached resulting in \"empty pages\" "
7157
+ "being returned for subsequent requests for a <acronym title=\"Uniform "
7158
+ "Resource Locator\">URL</acronym>."
7159
  msgstr ""
7160
 
7161
+ #: inc/options/pgcache.php:363
 
7162
  msgid ""
7163
+ "Significantly reduce the default <acronym title=\"Time to Live\">"
7164
+ "TTL</acronym> for comment cookies to reduce the number of authenticated user "
7165
+ "traffic. Enter -1 to revert to default <acronym title=\"Time to Live\">"
7166
+ "TTL</acronym>."
 
 
 
7167
  msgstr ""
7168
 
7169
+ #: inc/options/pgcache.php:372
7170
+ msgid ""
7171
+ "Always cache <acronym title=\"Uniform Resource Locator\">URL</acronym>s that "
7172
+ "use these query string name-value pairs. The value part is not required. But "
7173
+ "if used, separate name-value pairs with an equals sign (i.e., name=value). "
7174
+ "Each pair should be on their own line."
7175
  msgstr ""
7176
 
7177
+ #: inc/options/pgcache.php:381
7178
+ msgid "Never send cache pages for these user agents."
 
7179
  msgstr ""
7180
 
7181
+ #: inc/options/pgcache.php:390
7182
+ msgid "Never cache pages that use the specified cookies."
 
 
 
7183
  msgstr ""
7184
 
7185
+ #: inc/options/pgcache.php:403
7186
  #, php-format
7187
  msgid ""
7188
+ "Always ignore the specified pages / directories. Supports regular "
7189
+ "expressions (See <a href=\"%s\"><acronym title=\"Frequently Asked "
7190
+ "Questions\">FAQ</acronym></a>)"
 
 
 
 
 
 
7191
  msgstr ""
7192
 
7193
+ #: inc/options/pgcache.php:417
7194
+ msgid "Always ignore all pages filed under the specified category slugs."
7195
  msgstr ""
7196
 
7197
+ #: inc/options/pgcache.php:426
7198
+ msgid "Always ignore all pages filed under the specified tag slugs."
 
 
7199
  msgstr ""
7200
 
7201
+ #: inc/options/pgcache.php:435
7202
+ msgid "Always ignore all pages filed under the specified author usernames."
7203
  msgstr ""
7204
 
7205
+ #: inc/options/pgcache.php:444
7206
+ msgid ""
7207
+ "Always ignore all pages filed under the specified custom fields. Separate "
7208
+ "name-value pairs with an equals sign (i.e., name=value)."
7209
  msgstr ""
7210
 
7211
+ #: inc/options/pgcache.php:454
7212
+ #, php-format
7213
+ msgid ""
7214
+ "Cache the specified pages / directories even if listed in the \"never cache "
7215
+ "the following pages\" field. Supports regular expression (See <a href=\"%s\">"
7216
+ "<acronym title=\"Frequently Asked Questions\">FAQ</acronym></a>)"
7217
  msgstr ""
7218
 
7219
+ #: inc/options/pgcache.php:465
7220
+ msgid "Cache the specified pages even if they don't have tailing slash."
7221
  msgstr ""
7222
 
7223
+ #: inc/options/pgcache.php:475
7224
+ msgid "Specify additional page headers to cache."
 
 
7225
  msgstr ""
7226
 
7227
+ #: inc/options/pgcache.php:483
7228
+ msgid ""
7229
+ "Return correct Content-Type header for <acronym title=\"Extensible Markup "
7230
+ "Language\">XML</acronym> files (e.g., feeds and sitemaps). Slows down cache "
7231
+ "engine."
7232
  msgstr ""
7233
 
7234
+ #: inc/options/pgcache.php:497
7235
+ msgid ""
7236
+ "Enable <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> "
7237
+ "compression in the \"<acronym title=\"Hypertext Markup Language\">"
7238
+ "HTML</acronym>\" section on <a href=\"admin.php?page=w3tc_browsercache\">"
7239
+ "Browser Cache</a> Settings tab."
7240
  msgstr ""
7241
 
7242
+ #: inc/options/pgcache.php:498
7243
+ msgid ""
7244
+ "The <acronym title=\"Time to Live\">TTL</acronym> of page cache files is set "
7245
+ "via the \"Expires header lifetime\" field in the \"<acronym "
7246
+ "title=\"Hypertext Markup Language\">HTML</acronym>\" section on <a "
7247
+ "href=\"admin.php?page=w3tc_browsercache\">Browser Cache</a> Settings tab."
7248
  msgstr ""
7249
 
7250
+ #: inc/popup/cdn_rename_domain.php:17
7251
  msgid ""
7252
+ "This tool allows you to modify the URL of Media Library attachments. Use it "
7253
+ "if the \"WordPress address (<acronym title=\"Uniform Resource Indicator\">"
7254
+ "URL</acronym>)\" value has been changed in the past."
7255
  msgstr ""
7256
 
7257
+ #: inc/popup/cdn_rename_domain.php:20 inc/popup/cdn_import_library.php:21
7258
+ msgid "Total posts:"
7259
  msgstr ""
7260
 
7261
+ #: inc/popup/cdn_rename_domain.php:24 inc/popup/cdn_export_file.php:31
7262
+ #: inc/popup/cdn_export_library.php:24 inc/popup/cdn_import_library.php:25
7263
+ msgid "Processed:"
7264
  msgstr ""
7265
 
7266
+ #: inc/popup/cdn_rename_domain.php:28 inc/popup/cdn_export_file.php:35
7267
+ #: inc/popup/cdn_export_library.php:28 inc/popup/cdn_import_library.php:29
7268
+ msgid "Status:"
7269
  msgstr ""
7270
 
7271
+ #: inc/popup/cdn_rename_domain.php:32 inc/popup/cdn_export_file.php:39
7272
+ #: inc/popup/cdn_export_library.php:32 inc/popup/cdn_import_library.php:33
7273
+ msgid "Time elapsed:"
7274
  msgstr ""
7275
 
7276
+ #: inc/popup/cdn_rename_domain.php:36 inc/popup/cdn_export_file.php:43
7277
+ #: inc/popup/cdn_export_library.php:36 inc/popup/cdn_import_library.php:37
7278
+ msgid "Last response:"
7279
  msgstr ""
7280
 
7281
+ #: inc/popup/cdn_rename_domain.php:40
7282
+ msgid "Domains to rename:"
 
 
7283
  msgstr ""
7284
 
7285
+ #: inc/popup/cdn_rename_domain.php:43
7286
+ msgid "e.g.: domain.com"
7287
  msgstr ""
7288
 
7289
+ #: inc/popup/cdn_rename_domain.php:49 inc/popup/cdn_export_file.php:49
7290
+ #: inc/popup/cdn_export_library.php:42 inc/popup/cdn_import_library.php:59
7291
+ msgid "Start"
7292
  msgstr ""
7293
 
7294
+ #: inc/popup/cdn_export_file.php:24 inc/popup/cdn_export_library.php:17
7295
+ msgid ""
7296
+ "This tool will upload files of the selected type to content delivery network "
7297
+ "provider."
7298
  msgstr ""
7299
 
7300
+ #: inc/popup/cdn_export_file.php:27
7301
+ msgid "Total files:"
7302
  msgstr ""
7303
 
7304
+ #: inc/popup/pagespeed_results.php:11
7305
+ msgid "Page Speed Score:"
7306
  msgstr ""
7307
 
7308
+ #: inc/popup/pagespeed_results.php:15
7309
+ msgid "Expand all"
 
 
7310
  msgstr ""
7311
 
7312
+ #: inc/popup/pagespeed_results.php:16
7313
+ msgid "Collapse all"
 
 
7314
  msgstr ""
7315
 
7316
+ #: inc/popup/pagespeed_results.php:17
7317
+ msgid "Refresh analysis"
 
 
7318
  msgstr ""
7319
 
7320
+ #: inc/popup/pagespeed_results.php:48
7321
+ msgid "Resolution:"
7322
  msgstr ""
7323
 
7324
+ #: inc/popup/pagespeed_results.php:56
7325
+ msgid "Unable to fetch Page Speed results."
7326
  msgstr ""
7327
 
7328
+ #: inc/popup/pagespeed_results.php:58
7329
+ msgid "Refresh Analysis"
7330
  msgstr ""
7331
 
7332
+ #: inc/popup/cdn_purge.php:11
7333
+ msgid ""
7334
+ "Remove objects from the <acronym title=\"Content Delivery Network\">"
7335
+ "CDN</acronym> by specifying the relative path on individual lines below and "
7336
+ "clicking the \"Purge\" button when done. For example:"
7337
  msgstr ""
7338
 
7339
+ #: inc/popup/cdn_purge.php:17
7340
+ msgid "the directory itself (only when accessed directly without any file)."
7341
  msgstr ""
7342
 
7343
+ #: inc/popup/cdn_purge.php:18
7344
+ msgid ""
7345
+ "all files in the directory with no extension, with all parameter variations."
7346
  msgstr ""
7347
 
7348
+ #: inc/popup/cdn_purge.php:19
7349
+ msgid "all files in the directory whose extension is \"jpg\"."
7350
  msgstr ""
7351
 
7352
+ #: inc/popup/cdn_purge.php:20
7353
+ msgid ""
7354
+ "the specific file (when the file does not have an extension), and without "
7355
+ "parameters."
7356
  msgstr ""
7357
 
7358
+ #: inc/popup/cdn_purge.php:21
7359
+ msgid "the specific file with its extension, and without parameters."
 
7360
  msgstr ""
7361
 
7362
+ #: inc/popup/cdn_purge.php:22
7363
+ msgid "the specific file with its extension, with all variation of parameters."
7364
  msgstr ""
7365
 
7366
+ #: inc/popup/cdn_purge.php:23
7367
+ msgid "the specific file with its extension, with the specific parameters."
7368
  msgstr ""
7369
 
7370
+ #: inc/popup/cdn_purge.php:35
7371
+ msgid "Files to purge:"
7372
  msgstr ""
7373
 
7374
+ #: inc/popup/cdn_export_library.php:20
7375
+ msgid "Total media library attachments:"
7376
  msgstr ""
7377
 
7378
+ #: inc/popup/cdn_import_library.php:18
 
 
7379
  msgid ""
7380
+ "This tool will copy post or page attachments into the Media Library allowing "
7381
+ "WordPress to work as intended."
 
 
 
 
7382
  msgstr ""
7383
 
7384
+ #: inc/popup/cdn_import_library.php:42
7385
+ msgid ""
7386
+ "Create a list of permanent (301) redirects for use in your site's .htaccess "
7387
+ "file"
7388
  msgstr ""
7389
 
7390
+ #: inc/popup/cdn_import_library.php:47
7391
+ msgid ""
7392
+ "Create a list of redirects to <acronym title=\"Content Delivery Network\">"
7393
+ "CDN</acronym> (hostname specified in hostname field #1.)"
7394
  msgstr ""
7395
 
7396
+ #: inc/popup/cdn_import_library.php:70
7397
+ msgid ""
7398
+ "Add the following directives to your .htaccess file or if there are several "
7399
+ "hundred they should be added directly to your configuration file:"
7400
  msgstr ""
7401
 
7402
+ #: inc/popup/cdn_queue.php:10
7403
+ msgid "This tool lists the pending file uploads and deletions."
7404
  msgstr ""
7405
 
7406
+ #: inc/popup/cdn_queue.php:12
7407
+ msgid "Upload queue"
7408
  msgstr ""
7409
 
7410
+ #: inc/popup/cdn_queue.php:13
7411
+ msgid "Delete queue"
7412
  msgstr ""
7413
 
7414
+ #: inc/popup/cdn_queue.php:14
7415
+ msgid "Purge queue"
7416
  msgstr ""
7417
 
7418
+ #: inc/popup/cdn_queue.php:21 inc/popup/cdn_queue.php:54
7419
+ #: inc/popup/cdn_queue.php:84
7420
+ msgid "Local Path"
7421
  msgstr ""
7422
 
7423
+ #: inc/popup/cdn_queue.php:22 inc/popup/cdn_queue.php:55
7424
+ #: inc/popup/cdn_queue.php:85
7425
+ msgid "Remote Path"
7426
  msgstr ""
7427
 
7428
+ #: inc/popup/cdn_queue.php:23 inc/popup/cdn_queue.php:56
7429
+ #: inc/popup/cdn_queue.php:86
7430
+ msgid "Last Error"
 
7431
  msgstr ""
7432
 
7433
+ #: inc/popup/cdn_queue.php:24 inc/popup/cdn_queue.php:57
7434
+ #: inc/popup/cdn_queue.php:87
7435
+ msgid "Date"
7436
  msgstr ""
7437
 
7438
+ #: inc/popup/cdn_queue.php:40
7439
+ msgid "Empty upload queue"
7440
  msgstr ""
7441
 
7442
+ #: inc/popup/cdn_queue.php:43
7443
+ msgid "Process CDN queue now"
7444
  msgstr ""
7445
 
7446
+ #: inc/popup/cdn_queue.php:46
7447
+ msgid "Upload queue is empty"
7448
  msgstr ""
7449
 
7450
+ #: inc/popup/cdn_queue.php:73
7451
+ msgid "Empty delete queue"
7452
  msgstr ""
7453
 
7454
+ #: inc/popup/cdn_queue.php:76
7455
+ msgid "Delete queue is empty"
7456
  msgstr ""
7457
 
7458
+ #: inc/popup/cdn_queue.php:103
7459
+ msgid "Empty purge queue"
7460
  msgstr ""
7461
 
7462
+ #: inc/popup/cdn_queue.php:106
7463
+ msgid "Purge queue is empty"
7464
  msgstr ""
7465
 
7466
+ #: inc/options/edd/buy.php:9
7467
+ #, php-format
7468
+ msgid "Unlock more speed, %s now!"
7469
  msgstr ""
7470
 
7471
+ #: inc/options/edd/buy.php:13
7472
+ #, php-format
7473
+ msgid "Please enter the license key you received after successful checkout %s."
7474
  msgstr ""
7475
 
7476
+ #: inc/options/edd/buy.php:14
7477
+ msgid "here"
7478
  msgstr ""
7479
 
7480
+ #: inc/options/minify/ccjs2.php:8 inc/options/minify/googleccjs2.php:8
7481
+ msgid "Whitespace only"
 
7482
  msgstr ""
7483
 
7484
+ #: inc/options/minify/ccjs2.php:9 inc/options/minify/googleccjs2.php:9
7485
+ msgid "Simple optimizations"
7486
  msgstr ""
7487
 
7488
+ #: inc/options/minify/ccjs2.php:10 inc/options/minify/googleccjs2.php:10
7489
+ msgid "Advanced optimizations"
7490
  msgstr ""
7491
 
7492
+ #: inc/options/minify/ccjs2.php:50 inc/options/minify/googleccjs2.php:18
7493
+ msgid "Test Closure Compiler"
 
7494
  msgstr ""
7495
 
7496
+ #: inc/options/minify/yuicss2.php:37 inc/options/minify/yuijs2.php:25
7497
+ msgid "Test YUI Compressor"
7498
  msgstr ""
7499
 
7500
+ #: inc/options/minify/css.php:17
7501
+ msgid ""
7502
+ "Eliminate render-blocking <acronym title=\"Cascading Style Sheet\">"
7503
+ "CSS</acronym> by moving it to <acronym title=\"Hypertext Markup Language\">"
7504
+ "HTTP</acronym> body"
7505
  msgstr ""
7506
 
7507
+ #: inc/options/minify/css.php:20
7508
+ msgid ""
7509
+ "Website visitors cannot navigate your website until a given page is ready - "
7510
+ "reduce the wait time with this feature."
7511
  msgstr ""
7512
 
7513
+ #: inc/options/minify/css.php:22
7514
+ msgid ""
7515
+ "Opportunities to improve user experience exist in nearly every aspect of "
7516
+ "your website. Once the components are delivered to the web browser there’s "
7517
+ "an opportunity to improve the performance of how a given page is painted in "
7518
+ "the browser. Enable, this feature to reduce wait times and ensure that users "
7519
+ "can interact with your website as quickly as possible."
7520
  msgstr ""
7521
 
7522
+ #: inc/options/minify/css.php:24
7523
+ msgid ""
7524
+ "Faster paint time is a key last step in lowering bounce rates even for "
7525
+ "repeat page views."
7526
  msgstr ""
7527
 
7528
+ #: inc/options/minify/csstidy2.php:8
7529
+ msgid "Highest (no readability, smallest size)"
7530
  msgstr ""
7531
 
7532
+ #: inc/options/minify/csstidy2.php:9
7533
+ msgid "High (moderate readability, smaller size)"
7534
  msgstr ""
7535
 
7536
+ #: inc/options/minify/csstidy2.php:10
7537
+ msgid "Standard (balance between readability and size)"
7538
  msgstr ""
7539
 
7540
+ #: inc/options/minify/csstidy2.php:11
7541
+ msgid "Low (higher readability)"
7542
  msgstr ""
7543
 
7544
+ #: inc/options/minify/csstidy2.php:15
7545
+ msgid "Don't optimise"
7546
  msgstr ""
7547
 
7548
+ #: inc/options/minify/csstidy2.php:16
7549
+ msgid "Safe optimisations"
7550
  msgstr ""
7551
 
7552
+ #: inc/options/minify/csstidy2.php:17
7553
+ msgid "Level II optimisations"
7554
  msgstr ""
7555
 
7556
+ #: inc/options/minify/csstidy2.php:18
7557
+ msgid "All optimisations"
7558
  msgstr ""
7559
 
7560
+ #: inc/options/minify/csstidy2.php:22
7561
+ msgid "None"
7562
  msgstr ""
7563
 
7564
+ #: inc/options/minify/csstidy2.php:23
7565
+ msgid "Lowercase"
7566
  msgstr ""
7567
 
7568
+ #: inc/options/minify/csstidy2.php:24
7569
+ msgid "Uppercase"
7570
  msgstr ""
7571
 
7572
+ #: inc/options/minify/csstidy2.php:28
7573
+ msgid "Do not change anything"
7574
  msgstr ""
7575
 
7576
+ #: inc/options/minify/csstidy2.php:29
7577
+ msgid "Only seperate selectors (split at ,)"
7578
  msgstr ""
7579
 
7580
+ #: inc/options/minify/csstidy2.php:30
7581
+ msgid "Merge selectors with the same properties (fast)"
7582
  msgstr ""
7583
 
7584
+ #: inc/options/minify/yuijs2.php:34
7585
+ msgid "symbols (set to 0 to disable)"
7586
  msgstr ""
7587
 
7588
+ #: inc/options/parts/memcached_extension.php:23
7589
+ #: inc/options/parts/redis_extension.php:25 inc/options/parts/memcached.php:22
7590
+ #: inc/options/parts/redis.php:23
7591
+ msgid ""
7592
+ "Multiple servers may be used and seperated by a comma; e.g. 192.168.1.100:"
7593
+ "11211, domain.com:22122"
7594
  msgstr ""
7595
 
7596
+ #: inc/options/parts/memcached_extension.php:30
7597
+ #: inc/options/parts/redis_extension.php:32 inc/options/parts/memcached.php:26
7598
+ #: inc/options/parts/redis.php:27
7599
+ msgid "Use persistent connection:"
7600
  msgstr ""
7601
 
7602
+ #: inc/options/parts/memcached_extension.php:39
7603
+ #: inc/options/parts/memcached.php:33
7604
+ msgid "Node Auto Discovery:"
7605
  msgstr ""
7606
 
7607
+ #: inc/options/parts/memcached_extension.php:45
7608
+ #: inc/options/parts/memcached.php:41
7609
+ msgid ""
7610
+ "ElastiCache <acronym title=\"Hypertext Preprocessor\">PHP</acronym> module "
7611
+ "not found"
7612
  msgstr ""
7613
 
7614
+ #: inc/options/parts/memcached_extension.php:46
7615
+ msgid ""
7616
+ "When Amazon ElastiCache used, specify configuration endpoint as Memecached "
7617
+ "host"
7618
  msgstr ""
7619
 
7620
+ #: inc/options/parts/memcached_extension.php:56
7621
+ #: inc/options/parts/memcached.php:66
7622
+ msgid ""
7623
+ "Specify memcached username, when <acronym title=\"Simple Authentication and "
7624
+ "Security Layer\">SASL</acronym> authentication used"
7625
  msgstr ""
7626
 
7627
+ #: inc/options/parts/memcached_extension.php:58
7628
+ #: inc/options/parts/memcached.php:68
7629
+ msgid ""
7630
+ "<br>Available when memcached extension installed, built with <acronym "
7631
+ "title=\"Simple Authentication and Security Layer\">SASL</acronym>"
7632
  msgstr ""
7633
 
7634
+ #: inc/options/parts/memcached_extension.php:68
7635
+ #: inc/options/parts/memcached.php:81
7636
+ msgid ""
7637
+ "Specify memcached password, when <acronym title=\"Simple Authentication and "
7638
+ "Security Layer\">SASL</acronym> authentication used"
7639
  msgstr ""
7640
 
7641
+ #: inc/options/parts/redis_extension.php:44 inc/options/parts/redis.php:40
7642
+ msgid "Database ID to use"
7643
  msgstr ""
7644
 
7645
+ #: inc/options/parts/redis_extension.php:52
7646
+ msgid "Specify redis password"
7647
  msgstr ""
7648
 
7649
+ #: inc/options/parts/memcached.php:29
7650
+ msgid ""
7651
+ "Using persistent connection doesn't reinitialize memcached driver on each "
7652
+ "request"
7653
  msgstr ""
7654
 
7655
+ #: inc/options/parts/memcached.php:43
7656
+ msgid ""
7657
+ "When Amazon ElastiCache used, specify configuration endpoint as Memcached "
7658
+ "host"
7659
  msgstr ""
7660
 
7661
+ #: inc/options/parts/memcached.php:49
7662
+ msgid "Use binary protocol:"
7663
  msgstr ""
7664
 
7665
+ #: inc/options/parts/memcached.php:52
7666
+ msgid "Using binary protocol can increase throughput."
7667
  msgstr ""
7668
 
7669
+ #: inc/options/parts/redis.php:30
7670
+ msgid ""
7671
+ "Using persistent connection doesn't reinitialize redis driver on each request"
7672
  msgstr ""
7673
 
7674
+ #: inc/options/parts/redis.php:52
7675
+ msgid ""
7676
+ "Specify redis password, when <acronym title=\"Simple Authentication and "
7677
+ "Security Layer\">SASL</acronym> authentication used"
7678
  msgstr ""
7679
 
7680
+ #: inc/options/extensions/list.php:30 inc/options/extensions/list.php:157
7681
+ msgid "Bulk Actions"
7682
  msgstr ""
7683
 
7684
+ #: inc/options/extensions/list.php:31 inc/options/extensions/list.php:158
7685
+ msgid "Activate"
7686
  msgstr ""
7687
 
7688
+ #: inc/options/extensions/list.php:46 inc/options/extensions/list.php:51
7689
+ msgid "Select All"
7690
  msgstr ""
7691
 
7692
+ #: inc/options/extensions/list.php:46 inc/options/extensions/list.php:51
7693
+ msgid "Extension"
7694
  msgstr ""
7695
 
7696
+ #: inc/options/extensions/list.php:46 inc/options/extensions/list.php:51
7697
+ msgid "Description"
7698
  msgstr ""
7699
 
7700
+ #: inc/options/extensions/list.php:91
7701
+ msgid "Deactivate this extension"
7702
  msgstr ""
7703
 
7704
+ #: inc/options/extensions/list.php:100
7705
+ msgid "Activate this extension"
7706
  msgstr ""
7707
 
7708
+ #: inc/options/extensions/list.php:108
7709
+ msgid "Disabled: see Requirements"
7710
  msgstr ""
7711
 
7712
+ #: inc/options/extensions/list.php:128
7713
+ #, php-format
7714
+ msgid "Requirements: %s"
7715
  msgstr ""
7716
 
7717
+ #: inc/options/extensions/list.php:135
7718
+ #, php-format
7719
+ msgid "Version %s"
7720
  msgstr ""
7721
 
7722
+ #: inc/options/extensions/list.php:137
7723
+ #, php-format
7724
+ msgid "By %s"
7725
  msgstr ""
7726
 
7727
+ #: inc/options/extensions/list.php:142 inc/options/extensions/list.php:143
7728
+ msgid "Visit extension site"
 
 
7729
  msgstr ""
7730
 
7731
+ #: inc/options/enterprise/dbcluster-config.php:12
7732
+ msgid "Database Cluster Configuration File"
 
 
7733
  msgstr ""
7734
 
7735
+ #: inc/options/enterprise/dbcluster-config.php:20
7736
  msgid ""
7737
+ "Note: Changes will have immediate effect on your database configuration. If "
7738
+ "the application stops working creating the settings file, edit or remove "
7739
+ "this configuration file manually at <strong>/wp-content/db-cluster-config."
7740
+ "php</strong>."
 
 
7741
  msgstr ""
7742
 
7743
+ #: inc/options/enterprise/dbcluster-config.php:28
7744
+ msgid "Save configuration file"
7745
  msgstr ""
7746
 
7747
+ #: inc/options/cdn/att.php:9 inc/options/cdn/edgecast.php:9
7748
+ msgid "Account #:"
7749
  msgstr ""
7750
 
7751
+ #: inc/options/cdn/att.php:16 inc/options/cdn/edgecast.php:16
7752
+ msgid "Token:"
7753
  msgstr ""
7754
 
7755
+ #: inc/options/cdn/att.php:23 inc/options/cdn/ftp.php:55
7756
+ #: inc/options/cdn/s3_compatible.php:38 inc/options/cdn/cf2.php:37
7757
+ #: inc/options/cdn/mirror.php:9 inc/options/cdn/cf.php:46
7758
+ #: inc/options/cdn/cotendo.php:30 inc/options/cdn/edgecast.php:23
7759
+ #: inc/options/cdn/rscf.php:43 inc/options/cdn/s3.php:46
7760
+ #: inc/options/cdn/azure.php:32
7761
+ msgid "<acronym title=\"Secure Sockets Layer\">SSL</acronym> support:"
7762
  msgstr ""
7763
 
7764
+ #: inc/options/cdn/ftp.php:10
7765
+ msgid ""
7766
+ "Use passive <acronym title=\"File Transfer Protocol\">FTP</acronym> mode"
7767
  msgstr ""
7768
 
7769
+ #: inc/options/cdn/ftp.php:11
7770
+ msgid ""
7771
+ "Enable this option only if there are connectivity issues, otherwise it's not "
7772
+ "recommended."
7773
  msgstr ""
7774
 
7775
+ #: inc/options/cdn/ftp.php:15
7776
+ msgid "<acronym title=\"File Transfer Protocol\">FTP</acronym> hostname:"
7777
  msgstr ""
7778
 
7779
+ #: inc/options/cdn/ftp.php:19
7780
+ msgid ""
7781
+ "Specify the server's address, e.g.: \"ftp.domain.com\". Try \"127.0.0.1\" if "
7782
+ "using a sub-domain on the same server as your site."
7783
  msgstr ""
7784
 
7785
+ #: inc/options/cdn/ftp.php:23
7786
+ msgid "<acronym title=\"File Transfer Protocol\">FTP</acronym> connection:"
7787
  msgstr ""
7788
 
7789
+ #: inc/options/cdn/ftp.php:26
7790
+ msgid "Plain FTP"
7791
  msgstr ""
7792
 
7793
+ #: inc/options/cdn/ftp.php:27
7794
+ msgid "SSL-FTP connection (FTPS)"
7795
  msgstr ""
7796
 
7797
+ #: inc/options/cdn/ftp.php:28
7798
+ msgid "FTP over SSH (SFTP)"
7799
  msgstr ""
7800
 
7801
+ #: inc/options/cdn/ftp.php:33
7802
+ msgid "<acronym title=\"File Transfer Protocol\">FTP</acronym> username:"
7803
  msgstr ""
7804
 
7805
+ #: inc/options/cdn/ftp.php:40
7806
+ msgid "<acronym title=\"File Transfer Protocol\">FTP</acronym> password:"
7807
  msgstr ""
7808
 
7809
+ #: inc/options/cdn/ftp.php:47
7810
+ msgid "<acronym title=\"File Transfer Protocol\">FTP</acronym> path:"
7811
  msgstr ""
7812
 
7813
+ #: inc/options/cdn/ftp.php:51
7814
  msgid ""
7815
+ "Specify the directory where files must be uploaded to be accessible in a web "
7816
+ "browser (the document root)."
7817
  msgstr ""
7818
 
7819
+ #: inc/options/cdn/ftp.php:67
7820
  msgid ""
7821
+ "Use default <acronym title=\"Secure Shell\">SSH</acronym> public/private key "
7822
+ "files"
7823
  msgstr ""
7824
 
7825
+ #: inc/options/cdn/ftp.php:68
7826
+ msgid "Enable this option if you don't have special public/private key files."
7827
  msgstr ""
7828
 
7829
+ #: inc/options/cdn/ftp.php:72
7830
+ msgid ""
7831
+ "<acronym title=\"Secure File Transfer Protocol\">SFTP</acronym> public key:"
7832
  msgstr ""
7833
 
7834
+ #: inc/options/cdn/ftp.php:79
7835
+ msgid ""
7836
+ "<acronym title=\"Secure File Transfer Protocol\">SFTP</acronym> private key:"
7837
  msgstr ""
7838
 
7839
+ #: inc/options/cdn/ftp.php:89
7840
+ msgid ""
7841
+ "Enter the hostname or <acronym title=\"Canonical Name\">CNAME</acronym>(s) "
7842
+ "of your <acronym title=\"File Transfer Protocol\">FTP</acronym> server "
7843
+ "configured above, these values will replace your site's hostname in the "
7844
+ "<acronym title=\"Hypertext Markup Language\">HTML</acronym>."
7845
  msgstr ""
7846
 
7847
+ #: inc/options/cdn/ftp.php:94
7848
+ msgid "Test FTP server"
7849
  msgstr ""
7850
 
7851
+ #: inc/options/cdn/s3_compatible.php:9
7852
+ msgid "API host:"
7853
  msgstr ""
7854
 
7855
+ #: inc/options/cdn/s3_compatible.php:12
7856
+ msgid "Host of API endpoint, comptabile with Amazon S3 API"
7857
  msgstr ""
7858
 
7859
+ #: inc/options/cdn/s3_compatible.php:16 inc/options/cdn/cf2.php:14
7860
+ #: inc/options/cdn/cf.php:14 inc/options/cdn/s3.php:14
7861
+ msgid "Access key ID:"
7862
  msgstr ""
7863
 
7864
+ #: inc/options/cdn/s3_compatible.php:19
7865
+ msgid ""
7866
+ "Theme files, media library attachments, <acronym title=\"Cascading Style "
7867
+ "Sheet\">CSS</acronym>, <acronym title=\"JavaScript\">JS</acronym> files etc "
7868
+ "will appear to load instantly for site visitors."
7869
  msgstr ""
7870
 
7871
+ #: inc/options/cdn/s3_compatible.php:24 inc/options/cdn/cf2.php:21
7872
+ #: inc/options/cdn/cf.php:21 inc/options/cdn/s3.php:21
7873
+ msgid "Secret key:"
7874
  msgstr ""
7875
 
7876
+ #: inc/options/cdn/s3_compatible.php:31 inc/options/cdn/cf.php:28
7877
+ #: inc/options/cdn/s3.php:28
7878
+ msgid "Bucket:"
7879
  msgstr ""
7880
 
7881
+ #: inc/options/cdn/s3_compatible.php:52 inc/options/cdn/s3.php:65
7882
+ msgid ""
7883
+ "If you have already added a <a href=\"http://docs.amazonwebservices."
7884
+ "com/AmazonS3/latest/DeveloperGuide/VirtualHosting."
7885
+ "html#VirtualHostingCustomURLs\" target=\"_blank\">CNAME</a> to your <acronym "
7886
+ "title=\"Domain Name System\">DNS</acronym> Zone, enter it here."
7887
  msgstr ""
7888
 
7889
+ #: inc/options/cdn/s3_compatible.php:57 inc/options/cdn/s3.php:70
7890
+ msgid "Test S3 upload"
7891
  msgstr ""
7892
 
7893
+ #: inc/options/cdn/cf2.php:10 inc/options/cdn/cf.php:10
7894
+ #: inc/options/cdn/s3.php:10
7895
+ msgid ""
7896
+ "We recommend that you use <a href=\"http://docs.amazonwebservices."
7897
+ "com/IAM/latest/UserGuide/AccessPolicyLanguage_KeyConcepts.html\" "
7898
+ "target=\"_blank\"><acronym title=\"AWS Identity and Access Management\">"
7899
+ "IAM</acronym></a> to create a new policy for <acronym title=\"Amazon Web "
7900
+ "Services\">AWS</acronym> services that have limited permissions. A helpful "
7901
+ "tool: <a href=\"http://awspolicygen.s3.amazonaws.com/policygen.html\" "
7902
+ "target=\"_blank\"><acronym title=\"Amazon Web Services\">AWS</acronym> "
7903
+ "Policy Generator</a>"
7904
  msgstr ""
7905
 
7906
+ #: inc/options/cdn/cf2.php:28
7907
+ msgid "Origin:"
7908
  msgstr ""
7909
 
7910
+ #: inc/options/cdn/cf2.php:32
7911
+ msgid "Create distribution"
7912
  msgstr ""
7913
 
7914
+ #: inc/options/cdn/cf2.php:53 inc/options/cdn/cf.php:62
7915
+ msgid ""
7916
+ "If you have already added a <a href=\"http://docs.amazonwebservices."
7917
+ "com/AmazonCloudFront/latest/DeveloperGuide/index.html?CNAMEs.html\" "
7918
+ "target=\"_blank\"><acronym title=\"Canonical Name\">CNAME</acronym></a> to "
7919
+ "your <acronym title=\"Domain Name System\">DNS</acronym> Zone, enter it here."
7920
  msgstr ""
7921
 
7922
+ #: inc/options/cdn/cf2.php:58
7923
+ msgid "Test CloudFront distribution"
7924
  msgstr ""
7925
 
7926
+ #: inc/options/cdn/mirror.php:28
7927
+ msgid "Test Mirror"
7928
  msgstr ""
7929
 
7930
+ #: inc/options/cdn/cf.php:42
7931
+ msgid "Create as new bucket with distribution"
7932
  msgstr ""
7933
 
7934
+ #: inc/options/cdn/cf.php:67
7935
+ msgid "Test S3 upload &amp; CloudFront distribution"
7936
  msgstr ""
7937
 
7938
+ #: inc/options/cdn/cotendo.php:16 inc/options/cdn/akamai.php:16
7939
+ msgid "Password:"
7940
  msgstr ""
7941
 
7942
+ #: inc/options/cdn/cotendo.php:23
7943
+ msgid "Zones to purge:"
7944
  msgstr ""
7945
 
7946
+ #: inc/options/cdn/cotendo.php:49
7947
+ msgid "Test Cotendo"
7948
  msgstr ""
7949
 
7950
+ #: inc/options/cdn/edgecast.php:42
7951
+ msgid "Test EdgeCast"
7952
  msgstr ""
7953
 
7954
+ #: inc/options/cdn/rscf.php:38 inc/options/cdn/azure.php:27
7955
+ msgid "Create container"
7956
  msgstr ""
7957
 
7958
+ #: inc/options/cdn/rscf.php:57
7959
+ msgid ""
7960
+ "Enter the hostname provided by Rackspace Cloud Files, this value will "
7961
+ "replace your site's hostname in the <acronym title=\"Hypertext Markup "
7962
+ "Language\">HTML</acronym>."
7963
  msgstr ""
7964
 
7965
+ #: inc/options/cdn/rscf.php:62
7966
+ msgid "Test Cloud Files upload"
7967
  msgstr ""
7968
 
7969
+ #: inc/options/cdn/s3.php:42
7970
+ msgid "Create as new bucket"
 
 
7971
  msgstr ""
7972
 
7973
+ #: inc/options/cdn/s3.php:63
7974
+ msgid "or CNAME:"
7975
  msgstr ""
7976
 
7977
+ #: inc/options/cdn/azure.php:9
7978
+ msgid "Account name:"
7979
  msgstr ""
7980
 
7981
+ #: inc/options/cdn/azure.php:16
7982
+ msgid "Account key:"
7983
  msgstr ""
7984
 
7985
+ #: inc/options/cdn/azure.php:49
7986
+ msgid "or <acronym title=\"Canonical Name\">CNAME</acronym>:"
7987
  msgstr ""
7988
 
7989
+ #: inc/options/cdn/azure.php:55
7990
+ msgid "Test Microsoft Azure Storage upload"
7991
  msgstr ""
7992
 
7993
+ #: inc/options/cdn/akamai.php:23
7994
+ msgid "Email notification:"
7995
  msgstr ""
7996
 
7997
+ #: inc/options/cdn/akamai.php:27
7998
  msgid ""
7999
+ "Specify email addresses for completed removal notifications. One email per "
8000
+ "line."
8001
  msgstr ""
8002
 
8003
+ #: inc/options/cdn/akamai.php:31
8004
+ msgid "Domain to purge:"
8005
+ msgstr ""
8006
+
8007
+ #: inc/options/cdn/akamai.php:40
8008
+ msgid "Purge action:"
8009
  msgstr ""
8010
 
8011
+ #: inc/options/cdn/akamai.php:56
8012
  msgid ""
8013
+ "Some <acronym>CDN</acronym> providers may or may not support <acronym "
8014
+ "title=\"Secure Sockets Layer\">SSL</acronym>, contact your vendor for more "
8015
+ "information."
8016
  msgstr ""
8017
 
8018
+ #: inc/options/cdn/akamai.php:68
8019
+ msgid "Test akamai"
8020
  msgstr ""
8021
 
8022
+ #: inc/options/common/header.php:17
8023
+ msgid "W3 Total Cache <span>by W3 EDGE <sup>&reg;</sup></span>"
 
8024
  msgstr ""
8025
 
8026
+ #: inc/options/common/header.php:39
8027
+ msgid "<abbr title=\"Content Delivery Network\">CDN</abbr>"
8028
  msgstr ""
8029
 
8030
+ #: inc/options/common/header.php:48
8031
+ msgid "Debug"
8032
  msgstr ""
8033
 
8034
+ #: inc/options/common/header.php:73
8035
+ msgid "Mirrors"
8036
  msgstr ""
8037
 
8038
+ #: inc/options/common/header.php:76
8039
+ msgid "Purge Policy"
8040
  msgstr ""
8041
 
8042
+ #: inc/options/common/header.php:86 inc/options/common/header.php:102
8043
+ #: inc/options/common/header.php:114 inc/options/common/header.php:125
8044
+ #: inc/options/common/header.php:140 inc/options/common/header.php:151
8045
+ msgid "Jump to: "
8046
  msgstr ""
8047
 
8048
+ #: inc/options/common/header.php:130
8049
+ msgid "Media"
8050
  msgstr ""
8051
 
8052
+ #: inc/options/common/header.php:164
8053
+ msgid "Rewrite Rules"
8054
  msgstr ""
8055
 
8056
+ #: inc/options/cdn/common/cnames-readonly.php:17
8057
+ #: inc/options/cdn/common/cnames.php:31
8058
+ msgid "(reserved for CSS)"
8059
  msgstr ""
8060
 
8061
+ #: inc/options/cdn/common/cnames-readonly.php:19
8062
+ #: inc/options/cdn/common/cnames.php:35
8063
+ msgid "(reserved for JS in <head>)"
8064
  msgstr ""
8065
 
8066
+ #: inc/options/cdn/common/cnames-readonly.php:21
8067
+ #: inc/options/cdn/common/cnames.php:39
8068
+ msgid "(reserved for JS after <body>)"
8069
  msgstr ""
8070
 
8071
+ #: inc/options/cdn/common/cnames-readonly.php:23
8072
+ #: inc/options/cdn/common/cnames.php:43
8073
+ msgid "(reserved for JS before </body>)"
8074
  msgstr ""
8075
 
8076
+ #: inc/options/cdn/common/cnames.php:61
8077
+ msgid "Add CNAME"
 
8078
  msgstr ""
8079
 
8080
+ #. Name of the plugin
8081
+ msgid "W3 Total Cache"
 
8082
  msgstr ""
8083
 
8084
+ #. Description of the plugin
8085
+ msgid ""
8086
+ "The highest rated and most complete WordPress performance plugin. "
8087
+ "Dramatically improve the speed and user experience of your site. Add browser,"
8088
+ " page, object and database caching as well as minify and content delivery "
8089
+ "network (CDN) to WordPress."
8090
  msgstr ""
8091
 
8092
+ #. URI of the plugin
8093
+ msgid "https://www.boldgrid.com/totalcache/"
8094
  msgstr ""
8095
 
8096
+ #. Author of the plugin
8097
+ msgid "BoldGrid"
8098
  msgstr ""
8099
 
8100
+ #. Author URI of the plugin
8101
+ msgid "https://www.boldgrid.com/"
 
8102
  msgstr ""
lib/Minify/Minify.php CHANGED
@@ -613,6 +613,9 @@ class Minify0_Minify {
613
  if ($type === self::TYPE_CSS && false !== strpos($content, '@import')) {
614
  $content = self::_handleCssImports($content);
615
  }
 
 
 
616
 
617
  // do any post-processing (esp. for editing build URIs)
618
  if (self::$_options['postprocessorRequire']) {
613
  if ($type === self::TYPE_CSS && false !== strpos($content, '@import')) {
614
  $content = self::_handleCssImports($content);
615
  }
616
+ if ( $type === self::TYPE_CSS ) {
617
+ $content = apply_filters( 'w3tc_minify_css_content', $content, null, null );
618
+ }
619
 
620
  // do any post-processing (esp. for editing build URIs)
621
  if (self::$_options['postprocessorRequire']) {
lib/Minify/Minify/CSS/UriRewriter.php CHANGED
@@ -377,14 +377,14 @@ class Minify_CSS_UriRewriter {
377
  }
378
  // analyze URI
379
  if ( !empty($uri)
380
- && '/' !== substr($uri, 0, 1) // root-relative
381
- && false === strpos($uri, '//') // protocol (non-data)
382
- && 0 !== strpos($uri, 'data:') // data protocol
 
383
  ) {
384
  // URI is file-relative: rewrite depending on options
385
  if (self::$_prependPath === null) {
386
  $uri = self::rewriteRelative($uri, self::$_currentDir, self::$_docRoot, self::$_symlinks);
387
-
388
  if (self::$_prependAbsolutePath) {
389
  $prependAbsolutePath = self::$_prependAbsolutePath;
390
  } elseif (self::$_prependAbsolutePathCallback) {
377
  }
378
  // analyze URI
379
  if ( !empty($uri)
380
+ && '/' !== substr($uri, 0, 1) // Root-relative (/) and protocol/non-data (//).
381
+ && 'data:' !== substr( $uri, 0, 5 ) // Data protocol.
382
+ && '%' !== substr( $uri, 0, 1 ) // URL-encoded entity.
383
+ && '#' !== substr( $uri, 0, 1 ) // URL fragment.
384
  ) {
385
  // URI is file-relative: rewrite depending on options
386
  if (self::$_prependPath === null) {
387
  $uri = self::rewriteRelative($uri, self::$_currentDir, self::$_docRoot, self::$_symlinks);
 
388
  if (self::$_prependAbsolutePath) {
389
  $prependAbsolutePath = self::$_prependAbsolutePath;
390
  } elseif (self::$_prependAbsolutePathCallback) {
lib/Minify/Minify/HTML.php CHANGED
@@ -142,11 +142,11 @@ class Minify_HTML {
142
  .'|canvas|caption|center|col(?:group)?|dd|dir|div|dl|dt|fieldset|figcaption|figure|footer|form'
143
  .'|frame(?:set)?|h[1-6]|head|header|hgroup|hr|html|legend|li|link|main|map|menu|meta|nav'
144
  .'|ol|opt(?:group|ion)|output|p|param|section|t(?:able|body|head|d|h||r|foot|itle)'
145
- .'|ul|video)\\b[^>]*>)/iu', '$1', $this->_html);
146
 
147
  // remove whitespaces outside of all elements
148
  $this->_html = preg_replace(
149
- '/>((\\s)(?:\\s*))?([^<]+?)((\\s)(?:\\s*))?</u'
150
  ,'>$2$3$5<'
151
  ,$this->_html);
152
 
142
  .'|canvas|caption|center|col(?:group)?|dd|dir|div|dl|dt|fieldset|figcaption|figure|footer|form'
143
  .'|frame(?:set)?|h[1-6]|head|header|hgroup|hr|html|legend|li|link|main|map|menu|meta|nav'
144
  .'|ol|opt(?:group|ion)|output|p|param|section|t(?:able|body|head|d|h||r|foot|itle)'
145
+ .'|ul|video)\\b[^>]*>)/i', '$1', $this->_html);
146
 
147
  // remove whitespaces outside of all elements
148
  $this->_html = preg_replace(
149
+ '/>((\\s)(?:\\s*))?([^<]+?)((\\s)(?:\\s*))?</'
150
  ,'>$2$3$5<'
151
  ,$this->_html);
152
 
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: boldgrid, fredericktownes, maxicusc, gidomanders, bwmarkle, harryj
3
  Tags: seo, cache, optimize, pagespeed, performance, caching, compression, maxcdn, nginx, varnish, redis, new relic, aws, amazon web services, s3, cloudfront, rackspace, cloudflare, azure, apache
4
  Requires at least: 3.2
5
  Tested up to: 5.4
6
- Stable tag: 0.13.3
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -275,6 +275,15 @@ Please reach out to all of these people and support their projects if you're so
275
 
276
  == Changelog ==
277
 
 
 
 
 
 
 
 
 
 
278
  = 0.13.3 =
279
  * Fixed HTML minification of img elements containing embedded SVG strings
280
  * Removed an identifying value for GDPR
3
  Tags: seo, cache, optimize, pagespeed, performance, caching, compression, maxcdn, nginx, varnish, redis, new relic, aws, amazon web services, s3, cloudfront, rackspace, cloudflare, azure, apache
4
  Requires at least: 3.2
5
  Tested up to: 5.4
6
+ Stable tag: 0.14.0
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
275
 
276
  == Changelog ==
277
 
278
+ = 0.14.0 =
279
+ * Added lazy loading for Google Maps
280
+ * Added a filter w3tc_minify_css_content for minified contents
281
+ * Fixed a minify regex issue in non-Unicode websites
282
+ * Fixed a PHP notice in WPMU: accessing array offset on null
283
+ * Fixed a minify issue where embedded CSS URL fragments were converted incorrectly
284
+ * i18n improvement
285
+ * Changed default to disabled for wp-admin requests in the object cache
286
+
287
  = 0.13.3 =
288
  * Fixed HTML minification of img elements containing embedded SVG strings
289
  * Removed an identifying value for GDPR
w3-total-cache-api.php CHANGED
@@ -5,7 +5,7 @@ if ( !defined( 'ABSPATH' ) ) {
5
  }
6
 
7
  define( 'W3TC', true );
8
- define( 'W3TC_VERSION', '0.13.3' );
9
  define( 'W3TC_POWERED_BY', 'W3 Total Cache' );
10
  define( 'W3TC_EMAIL', 'w3tc@w3-edge.com' );
11
  define( 'W3TC_TEXT_DOMAIN', 'w3-total-cache' );
@@ -601,6 +601,7 @@ function w3tc_e( $key, $default_value ) {
601
 
602
 
603
  function w3tc_er( $key, $default_value ) {
 
604
  $v = get_site_option( 'w3tc_generic_widgetservices' );
605
  try {
606
  $v = json_decode( $v, true );
5
  }
6
 
7
  define( 'W3TC', true );
8
+ define( 'W3TC_VERSION', '0.14.0' );
9
  define( 'W3TC_POWERED_BY', 'W3 Total Cache' );
10
  define( 'W3TC_EMAIL', 'w3tc@w3-edge.com' );
11
  define( 'W3TC_TEXT_DOMAIN', 'w3-total-cache' );
601
 
602
 
603
  function w3tc_er( $key, $default_value ) {
604
+ $default_value = __( $default_value , 'w3-total-cache' );
605
  $v = get_site_option( 'w3tc_generic_widgetservices' );
606
  try {
607
  $v = json_decode( $v, true );
w3-total-cache.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: W3 Total Cache
4
  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.
5
- Version: 0.13.3
6
  Plugin URI: https://www.boldgrid.com/totalcache/
7
  Author: BoldGrid
8
  Author URI: https://www.boldgrid.com/
2
  /*
3
  Plugin Name: W3 Total Cache
4
  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.
5
+ Version: 0.14.0
6
  Plugin URI: https://www.boldgrid.com/totalcache/
7
  Author: BoldGrid
8
  Author URI: https://www.boldgrid.com/