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 | 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 +13 -1
- SystemOpCache_GeneralPage_View.php +8 -8
- UserExperience_LazyLoad_GoogleMaps_GoogleMapsEasy.php +71 -0
- UserExperience_LazyLoad_GoogleMaps_WPGoogleMapPlugin.php +35 -0
- UserExperience_LazyLoad_GoogleMaps_WPGoogleMaps.php +74 -0
- UserExperience_LazyLoad_Mutator.php +7 -0
- UserExperience_LazyLoad_Page_View.php +50 -0
- UserExperience_LazyLoad_Plugin.php +48 -10
- Util_Environment.php +7 -4
- Util_Ui.php +5 -2
- inc/options/general.php +1 -1
- languages/w3-total-cache.pot +5132 -4226
- lib/Minify/Minify.php +3 -0
- lib/Minify/Minify/CSS/UriRewriter.php +4 -4
- lib/Minify/Minify/HTML.php +2 -2
- readme.txt +10 -1
- w3-total-cache-api.php +2 -1
- w3-total-cache.php +1 -1
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' =>
|
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 |
-
|
34 |
-
|
35 |
-
'
|
36 |
-
'
|
37 |
-
'
|
38 |
-
'
|
|
|
39 |
'checkbox_label' => __( 'Enable', 'w3-total-cache' ),
|
40 |
-
'description'
|
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 |
-
'<
|
122 |
|
123 |
$buffer = preg_replace( '~<head(\s+[^>]*)*>~Ui',
|
124 |
'\\0' . $embed_script, $buffer, 1 );
|
125 |
|
126 |
-
//
|
127 |
$footer_script =
|
128 |
'<script>' .
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
'
|
|
|
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 . ')
|
|
|
|
|
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>
|
|
|
|
|
|
|
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 |
-
|
|
|
|
|
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 |
-
|
|
|
|
|
|
|
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
|
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
|
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:
|
5 |
-
"PO-Revision-Date:
|
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:
|
12 |
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
"X-Poedit-Basepath: ../\n"
|
14 |
"X-Poedit-SearchPath-0: .\n"
|
15 |
-
|
16 |
-
|
17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
msgstr ""
|
19 |
|
20 |
-
#:
|
21 |
-
msgid "
|
22 |
msgstr ""
|
23 |
|
24 |
-
#:
|
25 |
-
msgid "
|
26 |
msgstr ""
|
27 |
|
28 |
-
#:
|
29 |
-
msgid "
|
30 |
msgstr ""
|
31 |
|
32 |
-
#:
|
33 |
-
msgid "
|
34 |
msgstr ""
|
35 |
|
36 |
-
#:
|
37 |
-
msgid "
|
38 |
msgstr ""
|
39 |
|
40 |
-
#:
|
41 |
-
msgid "
|
42 |
msgstr ""
|
43 |
|
44 |
-
#:
|
45 |
-
msgid "
|
46 |
msgstr ""
|
47 |
|
48 |
-
#:
|
49 |
-
|
|
|
50 |
msgstr ""
|
51 |
|
52 |
-
#:
|
53 |
-
|
|
|
|
|
|
|
54 |
msgstr ""
|
55 |
|
56 |
-
#:
|
57 |
-
msgid "
|
58 |
msgstr ""
|
59 |
|
60 |
-
#:
|
61 |
msgid ""
|
62 |
-
"
|
63 |
-
"
|
|
|
64 |
msgstr ""
|
65 |
|
66 |
-
#:
|
67 |
-
|
68 |
-
|
69 |
-
"\"Internet Protocol version 6\">IP6</abbr> addresses"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#:
|
73 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
msgstr ""
|
75 |
|
76 |
-
#:
|
77 |
-
|
|
|
78 |
msgstr ""
|
79 |
|
80 |
-
#:
|
81 |
-
|
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 |
-
#:
|
91 |
-
msgid "
|
92 |
msgstr ""
|
93 |
|
94 |
-
#:
|
95 |
-
|
|
|
96 |
msgstr ""
|
97 |
|
98 |
-
#:
|
99 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
msgstr ""
|
101 |
|
102 |
-
#:
|
103 |
-
msgid "
|
|
|
|
|
|
|
104 |
msgstr ""
|
105 |
|
106 |
-
#:
|
107 |
-
|
|
|
|
|
|
|
|
|
108 |
msgstr ""
|
109 |
|
110 |
-
#:
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
#:
|
116 |
-
|
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 |
-
#:
|
153 |
-
|
154 |
-
msgid "
|
|
|
|
|
|
|
155 |
msgstr ""
|
156 |
|
157 |
-
#:
|
158 |
-
msgid "
|
159 |
msgstr ""
|
160 |
|
161 |
-
#:
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
msgstr ""
|
173 |
|
174 |
-
#:
|
175 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
176 |
msgstr ""
|
177 |
|
178 |
-
#:
|
179 |
-
|
|
|
|
|
180 |
msgstr ""
|
181 |
|
182 |
-
#:
|
183 |
-
|
|
|
184 |
msgstr ""
|
185 |
|
186 |
-
#:
|
187 |
-
msgid "
|
|
|
188 |
msgstr ""
|
189 |
|
190 |
-
#:
|
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 |
-
#:
|
199 |
#, php-format
|
200 |
-
msgid "
|
|
|
|
|
201 |
msgstr ""
|
202 |
|
203 |
-
#:
|
204 |
-
|
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 |
-
#:
|
214 |
-
|
215 |
-
msgid ""
|
216 |
-
"Automatically ping (purge) FeedBurner feeds when pages / posts are modified. "
|
217 |
-
"Default URL: %s"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#:
|
221 |
-
msgid "
|
222 |
msgstr ""
|
223 |
|
224 |
-
#:
|
225 |
-
msgid "
|
226 |
msgstr ""
|
227 |
|
228 |
-
#:
|
229 |
-
msgid "
|
230 |
msgstr ""
|
231 |
|
232 |
-
#:
|
233 |
#, php-format
|
234 |
-
msgid "
|
|
|
|
|
235 |
msgstr ""
|
236 |
|
237 |
-
#:
|
238 |
-
|
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 |
-
#:
|
247 |
-
|
248 |
-
msgid "and caching via <strong>%s</strong>"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#:
|
252 |
-
msgid "Cache
|
253 |
msgstr ""
|
254 |
|
255 |
-
#:
|
256 |
-
msgid "Cache
|
257 |
msgstr ""
|
258 |
|
259 |
-
#:
|
260 |
-
msgid "
|
261 |
msgstr ""
|
262 |
|
263 |
-
#:
|
264 |
-
msgid "
|
265 |
msgstr ""
|
266 |
|
267 |
-
#:
|
268 |
-
|
|
|
|
|
|
|
269 |
msgstr ""
|
270 |
|
271 |
-
#:
|
272 |
-
|
|
|
|
|
|
|
273 |
msgstr ""
|
274 |
|
275 |
-
#:
|
276 |
-
msgid "
|
|
|
277 |
msgstr ""
|
278 |
|
279 |
-
#:
|
280 |
-
|
|
|
281 |
msgstr ""
|
282 |
|
283 |
-
#:
|
284 |
-
|
|
|
|
|
|
|
|
|
|
|
285 |
msgstr ""
|
286 |
|
287 |
-
#:
|
288 |
-
msgid "
|
289 |
msgstr ""
|
290 |
|
291 |
-
#:
|
292 |
-
msgid "
|
293 |
msgstr ""
|
294 |
|
295 |
-
#:
|
296 |
-
msgid ""
|
297 |
-
"Caches the posts listed on tag, categories, author and other term pages, "
|
298 |
-
"pagination is supported."
|
299 |
msgstr ""
|
300 |
|
301 |
-
#:
|
302 |
-
msgid "
|
303 |
msgstr ""
|
304 |
|
305 |
-
#:
|
306 |
-
msgid ""
|
307 |
-
"Flushes the posts loop cache on post updates. See setting above for affected "
|
308 |
-
"loops."
|
309 |
msgstr ""
|
310 |
|
311 |
-
#:
|
312 |
-
|
|
|
313 |
msgstr ""
|
314 |
|
315 |
-
#:
|
316 |
-
msgid "
|
317 |
msgstr ""
|
318 |
|
319 |
-
#:
|
320 |
-
msgid "
|
|
|
|
|
321 |
msgstr ""
|
322 |
|
323 |
-
#:
|
324 |
msgid ""
|
325 |
-
"
|
326 |
-
"
|
327 |
-
"
|
|
|
|
|
|
|
|
|
|
|
328 |
msgstr ""
|
329 |
|
330 |
-
#:
|
331 |
-
msgid "
|
|
|
|
|
|
|
332 |
msgstr ""
|
333 |
|
334 |
-
#:
|
335 |
-
|
|
|
|
|
|
|
|
|
336 |
msgstr ""
|
337 |
|
338 |
-
#:
|
339 |
-
msgid "Cache
|
340 |
msgstr ""
|
341 |
|
342 |
-
#:
|
343 |
-
|
|
|
344 |
msgstr ""
|
345 |
|
346 |
-
#:
|
347 |
-
msgid "
|
348 |
msgstr ""
|
349 |
|
350 |
-
#:
|
351 |
-
msgid "
|
352 |
msgstr ""
|
353 |
|
354 |
-
#:
|
355 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
356 |
msgstr ""
|
357 |
|
358 |
-
#:
|
|
|
359 |
msgid ""
|
360 |
-
"
|
361 |
-
"
|
|
|
362 |
msgstr ""
|
363 |
|
364 |
-
#:
|
365 |
-
msgid "
|
366 |
msgstr ""
|
367 |
|
368 |
-
#:
|
369 |
-
|
|
|
370 |
msgstr ""
|
371 |
|
372 |
-
#:
|
373 |
-
|
|
|
374 |
msgstr ""
|
375 |
|
376 |
-
#:
|
377 |
-
|
|
|
|
|
|
|
|
|
378 |
msgstr ""
|
379 |
|
380 |
-
#:
|
381 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
382 |
msgstr ""
|
383 |
|
384 |
-
#:
|
385 |
msgid ""
|
386 |
-
"
|
387 |
-
"
|
|
|
388 |
msgstr ""
|
389 |
|
390 |
-
#:
|
391 |
-
msgid "
|
|
|
|
|
|
|
392 |
msgstr ""
|
393 |
|
394 |
-
#:
|
395 |
-
|
|
|
396 |
msgstr ""
|
397 |
|
398 |
-
#:
|
399 |
-
|
400 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
401 |
msgstr ""
|
402 |
|
403 |
-
#:
|
|
|
404 |
msgid ""
|
405 |
-
"
|
406 |
-
"automatically."
|
407 |
msgstr ""
|
408 |
|
409 |
-
#:
|
410 |
-
msgid "
|
|
|
|
|
411 |
msgstr ""
|
412 |
|
413 |
-
#:
|
414 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
415 |
msgstr ""
|
416 |
|
417 |
-
#:
|
418 |
-
|
419 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
420 |
msgstr ""
|
421 |
|
422 |
-
#:
|
423 |
-
|
424 |
-
|
|
|
|
|
|
|
|
|
|
|
425 |
msgstr ""
|
426 |
|
427 |
-
#:
|
428 |
-
|
429 |
-
msgid "%ds"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#:
|
433 |
-
|
434 |
-
msgid "%dms"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#:
|
438 |
-
|
439 |
-
msgid "%s<br />then %s."
|
440 |
msgstr ""
|
441 |
|
442 |
-
#:
|
443 |
-
|
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 |
-
#:
|
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 |
-
#:
|
459 |
-
|
460 |
-
msgid "<li><strong style=\"color: #f00;\">chmod 777 %s</strong></li>"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#:
|
464 |
#, php-format
|
465 |
-
msgid ""
|
466 |
-
"<strong>%s</strong> could not be created, please run following command:<br />"
|
467 |
-
"%s"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#:
|
471 |
-
|
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 |
-
#:
|
481 |
-
msgid "
|
482 |
msgstr ""
|
483 |
|
484 |
-
#:
|
485 |
-
msgid "
|
486 |
msgstr ""
|
487 |
|
488 |
-
#:
|
489 |
-
msgid "
|
490 |
msgstr ""
|
491 |
|
492 |
-
#:
|
493 |
-
|
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 |
-
#:
|
500 |
-
msgid "
|
501 |
msgstr ""
|
502 |
|
503 |
-
#:
|
504 |
-
msgid "
|
505 |
msgstr ""
|
506 |
|
507 |
-
#:
|
508 |
#, php-format
|
509 |
msgid ""
|
510 |
-
"<
|
511 |
-
"
|
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 |
-
#:
|
532 |
-
msgid "
|
533 |
msgstr ""
|
534 |
|
535 |
-
#:
|
536 |
-
msgid "
|
537 |
msgstr ""
|
538 |
|
539 |
-
#:
|
540 |
-
|
541 |
-
#: inc/options/support/payment.php:21
|
542 |
-
msgid "Cancel"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#:
|
546 |
-
|
|
|
|
|
547 |
msgstr ""
|
548 |
|
549 |
-
#:
|
550 |
-
|
|
|
|
|
|
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: inc/
|
554 |
-
|
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 |
-
#:
|
561 |
-
|
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 |
-
#:
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
"
|
575 |
-
"including <strong>%s</strong> and\n"
|
576 |
-
" <strong>%s</strong> markers with:"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#:
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
|
|
|
|
584 |
msgstr ""
|
585 |
|
586 |
-
#:
|
587 |
-
|
588 |
-
|
589 |
-
"
|
590 |
-
"<strong>%s</strong>\n"
|
591 |
-
" and <strong>%s</strong> markers."
|
592 |
msgstr ""
|
593 |
|
594 |
-
#:
|
595 |
-
|
|
|
|
|
|
|
|
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: inc/
|
599 |
-
|
|
|
600 |
msgstr ""
|
601 |
|
602 |
-
#:
|
603 |
-
msgid "
|
604 |
msgstr ""
|
605 |
|
606 |
-
#:
|
607 |
-
msgid "
|
608 |
msgstr ""
|
609 |
|
610 |
-
#:
|
611 |
-
msgid "
|
612 |
msgstr ""
|
613 |
|
614 |
-
#:
|
615 |
-
msgid "
|
616 |
msgstr ""
|
617 |
|
618 |
-
#:
|
619 |
-
|
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 |
-
#:
|
626 |
-
|
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 |
-
#:
|
637 |
-
msgid ""
|
638 |
-
"Pull Zone Name. Length: 3-32 chars; only letters, digits, and dash (-) "
|
639 |
-
"accepted"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#:
|
643 |
-
msgid "
|
644 |
msgstr ""
|
645 |
|
646 |
-
#:
|
647 |
-
msgid "
|
648 |
msgstr ""
|
649 |
|
650 |
-
#:
|
651 |
-
msgid "
|
652 |
msgstr ""
|
653 |
|
654 |
-
#:
|
655 |
-
|
|
|
656 |
msgstr ""
|
657 |
|
658 |
-
#:
|
659 |
-
|
660 |
-
"
|
661 |
-
"JS objects in the"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#:
|
665 |
-
msgid ""
|
666 |
-
"theme. Select \"add\" the files you wish to minify, then click \"apply & "
|
667 |
-
"close\" to save the settings."
|
668 |
msgstr ""
|
669 |
|
670 |
-
#:
|
671 |
-
|
672 |
-
msgid "Add:"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#:
|
676 |
-
|
677 |
-
#: inc/options/minify.php:359
|
678 |
-
msgid "File URI:"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#:
|
682 |
-
|
683 |
-
#: inc/options/minify.php:360
|
684 |
-
msgid "Template:"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#:
|
688 |
-
msgid "
|
689 |
msgstr ""
|
690 |
|
691 |
-
#:
|
692 |
-
msgid "
|
693 |
msgstr ""
|
694 |
|
695 |
-
#:
|
696 |
-
msgid "
|
697 |
msgstr ""
|
698 |
|
699 |
-
#:
|
700 |
-
msgid "
|
701 |
msgstr ""
|
702 |
|
703 |
-
#:
|
704 |
-
|
705 |
-
#: inc/options/minify.php:378
|
706 |
-
msgid "Verify URI"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#:
|
710 |
-
|
711 |
-
msgid "Check / Uncheck All"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#:
|
715 |
-
msgid "
|
716 |
msgstr ""
|
717 |
|
718 |
-
#:
|
719 |
-
|
|
|
720 |
msgstr ""
|
721 |
|
722 |
-
#:
|
723 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
724 |
msgstr ""
|
725 |
|
726 |
-
#:
|
727 |
-
|
|
|
|
|
|
|
|
|
728 |
msgstr ""
|
729 |
|
730 |
-
#:
|
731 |
-
|
732 |
-
|
733 |
-
|
|
|
|
|
|
|
|
|
734 |
msgstr ""
|
735 |
|
736 |
-
#:
|
737 |
-
msgid ""
|
738 |
-
"Scripts that were not already detected above may require <a href=\"admin.php?"
|
739 |
-
"page=w3tc_support&request_type=plugin_config\">professional "
|
740 |
-
"consultation</a> to implement."
|
741 |
msgstr ""
|
742 |
|
743 |
-
#:
|
744 |
-
|
|
|
745 |
msgstr ""
|
746 |
|
747 |
-
#:
|
748 |
-
msgid "
|
749 |
msgstr ""
|
750 |
|
751 |
-
#:
|
752 |
-
msgid "
|
753 |
msgstr ""
|
754 |
|
755 |
-
#:
|
756 |
-
msgid ""
|
757 |
-
"<code>Not detected</code>: May be installed, but cannot be automatically "
|
758 |
-
"confirmed."
|
759 |
msgstr ""
|
760 |
|
761 |
-
#:
|
762 |
-
msgid "
|
763 |
msgstr ""
|
764 |
|
765 |
-
#:
|
766 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: inc/
|
770 |
-
|
|
|
|
|
|
|
771 |
msgstr ""
|
772 |
|
773 |
-
#:
|
774 |
-
|
|
|
|
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: inc/
|
778 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
779 |
msgstr ""
|
780 |
|
781 |
-
#:
|
782 |
msgid ""
|
783 |
-
"
|
784 |
-
"
|
|
|
785 |
msgstr ""
|
786 |
|
787 |
-
#:
|
788 |
-
msgid "
|
789 |
msgstr ""
|
790 |
|
791 |
-
#:
|
792 |
-
|
793 |
-
#: inc/lightbox/self_test.php:120 inc/lightbox/self_test.php:206
|
794 |
-
msgid "Installed"
|
795 |
msgstr ""
|
796 |
|
797 |
-
#:
|
798 |
-
#:
|
799 |
-
|
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 |
-
#:
|
806 |
-
|
|
|
807 |
msgstr ""
|
808 |
|
809 |
-
#:
|
810 |
-
|
|
|
|
|
|
|
811 |
msgstr ""
|
812 |
|
813 |
-
#:
|
814 |
-
|
815 |
-
|
|
|
|
|
816 |
msgstr ""
|
817 |
|
818 |
-
#:
|
819 |
-
|
|
|
|
|
|
|
|
|
820 |
msgstr ""
|
821 |
|
822 |
-
#:
|
823 |
-
|
|
|
824 |
msgstr ""
|
825 |
|
826 |
-
#:
|
827 |
-
|
|
|
|
|
828 |
msgstr ""
|
829 |
|
830 |
-
#:
|
831 |
-
|
|
|
832 |
msgstr ""
|
833 |
|
834 |
-
#:
|
835 |
-
|
|
|
836 |
msgstr ""
|
837 |
|
838 |
-
#:
|
839 |
-
|
|
|
|
|
|
|
|
|
840 |
msgstr ""
|
841 |
|
842 |
-
#:
|
843 |
-
|
|
|
844 |
msgstr ""
|
845 |
|
846 |
-
#:
|
847 |
-
|
|
|
848 |
msgstr ""
|
849 |
|
850 |
-
#:
|
851 |
-
|
|
|
852 |
msgstr ""
|
853 |
|
854 |
-
#:
|
855 |
-
msgid "
|
|
|
|
|
|
|
856 |
msgstr ""
|
857 |
|
858 |
-
#:
|
859 |
-
|
|
|
|
|
860 |
msgstr ""
|
861 |
|
862 |
-
#:
|
863 |
-
msgid ""
|
864 |
-
"(required for <acronym title=\"Content Delivery Network\">CDN</acronym> "
|
865 |
-
"support)"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#:
|
869 |
-
msgid "
|
870 |
msgstr ""
|
871 |
|
872 |
-
#:
|
873 |
-
|
|
|
874 |
msgstr ""
|
875 |
|
876 |
-
#:
|
877 |
-
|
|
|
|
|
|
|
878 |
msgstr ""
|
879 |
|
880 |
-
#:
|
881 |
msgid ""
|
882 |
-
"
|
883 |
-
"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#:
|
887 |
-
|
|
|
888 |
msgstr ""
|
889 |
|
890 |
-
#:
|
891 |
-
|
|
|
892 |
msgstr ""
|
893 |
|
894 |
-
#:
|
895 |
-
|
896 |
-
msgid "
|
|
|
|
|
897 |
msgstr ""
|
898 |
|
899 |
-
#:
|
900 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
901 |
msgstr ""
|
902 |
|
903 |
-
#:
|
904 |
-
|
|
|
|
|
|
|
905 |
msgstr ""
|
906 |
|
907 |
-
#:
|
908 |
-
msgid "
|
909 |
msgstr ""
|
910 |
|
911 |
-
#:
|
912 |
-
msgid "
|
913 |
msgstr ""
|
914 |
|
915 |
-
#:
|
916 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
917 |
msgstr ""
|
918 |
|
919 |
-
#:
|
920 |
-
msgid "
|
921 |
msgstr ""
|
922 |
|
923 |
-
#:
|
924 |
-
msgid "
|
925 |
msgstr ""
|
926 |
|
927 |
-
#:
|
928 |
-
msgid "
|
|
|
929 |
msgstr ""
|
930 |
|
931 |
-
#:
|
932 |
-
msgid "
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: inc/
|
936 |
-
|
|
|
937 |
msgstr ""
|
938 |
|
939 |
-
#:
|
940 |
-
msgid "
|
|
|
|
|
|
|
|
|
941 |
msgstr ""
|
942 |
|
943 |
-
#:
|
944 |
-
#: inc/
|
945 |
-
|
946 |
-
#: lib/W3/Cdn/Mirror/Netdna.php:234
|
947 |
-
msgid "OK"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#:
|
951 |
-
#: inc/
|
952 |
-
msgid "
|
953 |
msgstr ""
|
954 |
|
955 |
-
#:
|
956 |
-
msgid "
|
957 |
msgstr ""
|
958 |
|
959 |
-
#:
|
960 |
-
msgid "
|
961 |
msgstr ""
|
962 |
|
963 |
-
#:
|
964 |
-
msgid "
|
|
|
|
|
|
|
|
|
965 |
msgstr ""
|
966 |
|
967 |
-
#:
|
968 |
-
|
969 |
-
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: inc/
|
973 |
-
|
|
|
|
|
974 |
msgstr ""
|
975 |
|
976 |
-
#:
|
977 |
-
msgid "
|
978 |
msgstr ""
|
979 |
|
980 |
-
#:
|
981 |
-
msgid "
|
|
|
|
|
982 |
msgstr ""
|
983 |
|
984 |
-
#:
|
985 |
-
|
|
|
986 |
msgstr ""
|
987 |
|
988 |
-
#:
|
989 |
-
msgid "
|
990 |
msgstr ""
|
991 |
|
992 |
-
#:
|
993 |
-
msgid "
|
994 |
msgstr ""
|
995 |
|
996 |
-
#:
|
997 |
-
msgid "
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#:
|
1001 |
-
|
|
|
|
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#:
|
1005 |
-
msgid "
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#:
|
1009 |
-
|
1010 |
-
"
|
1011 |
-
"help us improve WordPress:"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#:
|
1015 |
-
|
|
|
|
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#:
|
1019 |
-
|
|
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#:
|
1023 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#:
|
1027 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#:
|
1031 |
msgid ""
|
1032 |
-
"
|
1033 |
-
"
|
1034 |
-
"
|
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 |
-
#:
|
1042 |
-
|
|
|
|
|
|
|
|
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#:
|
1046 |
-
|
|
|
|
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#:
|
1050 |
-
|
|
|
|
|
|
|
|
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#:
|
1054 |
-
|
1055 |
-
|
1056 |
-
|
1057 |
-
|
|
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#:
|
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 |
-
#:
|
1069 |
-
msgid ""
|
1070 |
-
"Increased web server concurrency and increased scale (easily sustain high "
|
1071 |
-
"traffic spikes)"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#:
|
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 |
-
#:
|
1082 |
-
msgid "
|
1083 |
msgstr ""
|
1084 |
|
1085 |
-
#:
|
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 |
-
#:
|
1093 |
-
msgid "
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#:
|
1097 |
-
msgid "
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#:
|
1101 |
-
msgid ""
|
1102 |
-
"Caching of feeds (site, categories, tags, comments, search results) in "
|
1103 |
-
"memory or on disk"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#:
|
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 |
-
#:
|
1113 |
-
msgid "
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#:
|
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 |
-
#:
|
1124 |
-
msgid ""
|
1125 |
-
"Complete header management including <a href=\"http://en.wikipedia.org/wiki/"
|
1126 |
-
"HTTP_ETag\">Etags</a>"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#:
|
1130 |
-
msgid "
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#:
|
1134 |
-
msgid ""
|
1135 |
-
"Import post attachments directly into the Media Library (and <acronym title="
|
1136 |
-
"\"Content Delivery Network\">CDN</acronym>)"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#:
|
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 |
-
#:
|
1147 |
-
msgid "
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#:
|
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 |
-
#:
|
1158 |
-
|
1159 |
-
|
1160 |
-
"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#:
|
1164 |
-
|
1165 |
-
|
|
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#:
|
1169 |
-
|
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 |
-
#:
|
1176 |
-
|
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 |
-
#:
|
1185 |
-
msgid "
|
|
|
|
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#:
|
1189 |
-
|
1190 |
-
#: lib/W3/UI/Settings/BrowserCache.php:32
|
1191 |
-
msgid "Set Last-Modified header"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#:
|
1195 |
-
|
1196 |
-
msgid "Set the Last-Modified header to enable 304 Not Modified response."
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#:
|
1200 |
-
|
1201 |
-
#: lib/W3/UI/Settings/BrowserCache.php:33
|
1202 |
-
msgid "Set expires header"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
-
#:
|
1206 |
-
|
1207 |
-
|
|
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#:
|
1211 |
-
|
1212 |
-
#: lib/W3/UI/Settings/BrowserCache.php:35
|
1213 |
-
msgid "Set cache control header"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#:
|
1217 |
-
|
1218 |
-
msgid ""
|
1219 |
-
"Set pragma and cache-control headers to encourage browser caching of files."
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#:
|
1223 |
-
msgid "
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#:
|
1227 |
-
|
1228 |
-
msgid "Set the Etag header to encourage browser caching of files."
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#:
|
1232 |
-
|
1233 |
-
|
1234 |
-
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#:
|
1238 |
-
|
1239 |
-
|
|
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#:
|
1243 |
-
#: lib/W3/UI/Settings/BrowserCache.php:31
|
1244 |
msgid ""
|
1245 |
-
"
|
1246 |
-
"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
-
#:
|
1250 |
-
|
1251 |
-
|
|
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#:
|
1255 |
-
|
1256 |
-
msgid "Prevent caching of objects after settings change"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#:
|
1260 |
-
|
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 |
-
#:
|
1267 |
-
msgid ""
|
1268 |
-
"Do not add the prevent caching query string to the specified files. Supports "
|
1269 |
-
"regular expressions."
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#:
|
1273 |
-
msgid "
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#:
|
1277 |
-
|
1278 |
-
msgid "Removes Set-Cookie header for responses."
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#:
|
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 |
-
#:
|
1288 |
-
msgid "
|
1289 |
msgstr ""
|
1290 |
|
1291 |
-
#:
|
1292 |
-
msgid ""
|
1293 |
-
"<acronym title=\"Cascading Style Sheet\">CSS</acronym> & <acronym title="
|
1294 |
-
"\"JavaScript\">JS</acronym>"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#:
|
1298 |
-
msgid ""
|
1299 |
-
"Specify browser cache policy for Cascading Style Sheets and JavaScript files."
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#:
|
1303 |
-
#:
|
1304 |
-
|
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 |
-
#:
|
1315 |
-
|
1316 |
-
msgid "cache with max-age (\"public, max-age=EXPIRES_SECONDS\")"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#:
|
1320 |
-
msgid "
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#:
|
1324 |
-
|
1325 |
-
msgid ""
|
1326 |
-
"cache with max-age and validation (\"max-age=EXPIRES_SECONDS, public, must-"
|
1327 |
-
"revalidate, proxy-revalidate\")"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#:
|
1331 |
-
|
1332 |
-
msgid "cache without proxy (\"private, must-revalidate\")"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#:
|
1336 |
-
msgid "
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#:
|
1340 |
-
msgid ""
|
1341 |
-
"<acronym title=\"Hypertext Markup Language\">HTML</acronym> & <acronym "
|
1342 |
-
"title=\"Extensible Markup Language\">XML</acronym>"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#:
|
1346 |
msgid ""
|
1347 |
-
"
|
1348 |
-
|
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 |
-
#:
|
1355 |
-
msgid "
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
#: inc/options/
|
1359 |
-
|
|
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#:
|
1363 |
-
msgid "
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#:
|
1367 |
#, php-format
|
1368 |
-
msgid "
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#:
|
1372 |
-
msgid ""
|
1373 |
-
"Prepare the <acronym title=\"Content Delivery Network\">CDN</acronym> by:"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#:
|
1377 |
-
msgid "
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#:
|
1381 |
-
msgid "
|
|
|
|
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#:
|
1385 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#:
|
1389 |
-
|
1390 |
-
|
|
|
|
|
|
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#:
|
1394 |
msgid ""
|
1395 |
-
"
|
1396 |
-
"
|
|
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#:
|
1400 |
-
msgid "
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#:
|
1404 |
-
msgid "
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#:
|
1408 |
-
msgid ""
|
1409 |
-
"to make existing file modifications visible to visitors with a primed cache."
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#:
|
1413 |
-
msgid ""
|
1414 |
-
"If checked, all attachments will be hosted with the <acronym title=\"Content "
|
1415 |
-
"Delivery Network\">CDN</acronym>."
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#:
|
1419 |
-
msgid "
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#:
|
1423 |
msgid ""
|
1424 |
-
"
|
1425 |
-
"
|
1426 |
-
"\"Content Delivery Network\">CDN</acronym>."
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#:
|
1430 |
-
msgid "
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#:
|
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 |
-
#:
|
1441 |
-
msgid "
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#:
|
1445 |
-
|
1446 |
-
|
1447 |
-
|
1448 |
-
"acronym>."
|
1449 |
msgstr ""
|
1450 |
|
1451 |
-
#:
|
1452 |
-
msgid "
|
1453 |
msgstr ""
|
1454 |
|
1455 |
-
#:
|
1456 |
-
|
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 |
-
#:
|
1464 |
-
msgid "
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#:
|
1468 |
-
msgid ""
|
1469 |
-
"If modified files are not always detected and replaced, use this option to "
|
1470 |
-
"over-write them."
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#:
|
1474 |
-
msgid ""
|
1475 |
-
|
1476 |
-
|
|
|
|
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#:
|
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 |
-
#:
|
1489 |
-
|
1490 |
-
|
1491 |
-
"header to assets files."
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#:
|
1495 |
-
msgid "
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#:
|
1499 |
-
|
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 |
-
#:
|
1508 |
-
msgid "
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#:
|
1512 |
-
|
1513 |
-
msgid ""
|
1514 |
-
"Always ignore the specified pages / directories. Supports regular expression "
|
1515 |
-
"(See <a href=\"%s\">FAQ</a>"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#:
|
1519 |
-
msgid "
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#:
|
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 |
-
#:
|
1530 |
-
|
|
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#:
|
1534 |
-
msgid "
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#:
|
1538 |
-
msgid "
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#:
|
1542 |
-
|
|
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#:
|
1546 |
-
|
1547 |
-
|
1548 |
-
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#:
|
1552 |
-
|
1553 |
-
|
1554 |
-
|
|
|
|
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
1570 |
-
msgid ""
|
1571 |
-
"To upload files in blogs.dir for current blog write wp-content/<"
|
1572 |
-
"currentblog>/."
|
1573 |
msgstr ""
|
1574 |
|
1575 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
1588 |
-
|
1589 |
-
|
|
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#:
|
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 |
-
#:
|
1601 |
-
|
1602 |
-
#: inc/options/support/form.php:6
|
1603 |
-
msgid "Note(s):"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#:
|
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 |
-
#:
|
1614 |
msgid ""
|
1615 |
-
"
|
1616 |
-
"
|
1617 |
-
"Transfer Protocol\">HTTP</acronym> compression in the \"Media & Other "
|
1618 |
-
"Files\" section on <a href=\"admin.php?page=w3tc_browsercache\">Browser "
|
1619 |
-
"Cache</a> Settings tab."
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#:
|
1623 |
-
|
1624 |
-
msgid "Username:"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#:
|
1628 |
-
msgid "
|
|
|
|
|
1629 |
msgstr ""
|
1630 |
|
1631 |
-
#:
|
1632 |
-
msgid "
|
1633 |
msgstr ""
|
1634 |
|
1635 |
-
#:
|
1636 |
msgid ""
|
1637 |
-
"
|
1638 |
-
"
|
|
|
1639 |
msgstr ""
|
1640 |
|
1641 |
-
#:
|
1642 |
-
msgid "
|
|
|
|
|
1643 |
msgstr ""
|
1644 |
|
1645 |
-
#:
|
1646 |
-
msgid "
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#:
|
1650 |
-
msgid "
|
1651 |
msgstr ""
|
1652 |
|
1653 |
-
#:
|
1654 |
-
|
1655 |
-
|
1656 |
-
|
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 |
-
#:
|
1664 |
-
|
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 |
-
#:
|
1674 |
-
#:
|
1675 |
-
|
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 |
-
#:
|
1684 |
-
|
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 |
-
#:
|
1697 |
-
msgid "
|
1698 |
msgstr ""
|
1699 |
|
1700 |
-
#:
|
1701 |
-
msgid "
|
1702 |
msgstr ""
|
1703 |
|
1704 |
-
#:
|
1705 |
-
msgid "
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#:
|
1709 |
-
|
|
|
|
|
|
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#:
|
1713 |
-
#:
|
1714 |
-
|
1715 |
-
|
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 |
-
#:
|
1723 |
-
|
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 |
-
#:
|
1733 |
-
msgid "
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#:
|
1737 |
-
msgid "
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#:
|
1741 |
-
msgid "
|
1742 |
msgstr ""
|
1743 |
|
1744 |
-
#:
|
1745 |
-
|
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 |
-
#:
|
1753 |
-
msgid "
|
1754 |
msgstr ""
|
1755 |
|
1756 |
-
#:
|
1757 |
-
msgid "
|
1758 |
msgstr ""
|
1759 |
|
1760 |
-
#:
|
1761 |
-
msgid "
|
1762 |
msgstr ""
|
1763 |
|
1764 |
-
#:
|
1765 |
-
msgid "
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#:
|
1769 |
-
msgid "
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
#:
|
1773 |
-
msgid "
|
1774 |
msgstr ""
|
1775 |
|
1776 |
-
#:
|
|
|
1777 |
msgid ""
|
1778 |
-
"
|
1779 |
-
"
|
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 |
-
#:
|
1788 |
-
|
|
|
|
|
|
|
|
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#:
|
1792 |
-
|
1793 |
-
msgid "Secret key:"
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#:
|
1797 |
-
msgid "
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#:
|
1801 |
-
msgid "
|
|
|
|
|
|
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#:
|
|
|
1805 |
msgid ""
|
1806 |
-
"
|
1807 |
-
"
|
1808 |
-
"\"_blank\">CNAME</a> to your <acronym title=\"Domain Name System\">DNS</"
|
1809 |
-
"acronym> Zone, enter it here."
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#:
|
1813 |
-
|
|
|
|
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#:
|
1817 |
-
msgid "
|
1818 |
msgstr ""
|
1819 |
|
1820 |
-
#:
|
1821 |
-
msgid "
|
1822 |
msgstr ""
|
1823 |
|
1824 |
-
#:
|
1825 |
-
|
|
|
|
|
|
|
1826 |
msgstr ""
|
1827 |
|
1828 |
-
#:
|
1829 |
-
msgid "
|
1830 |
msgstr ""
|
1831 |
|
1832 |
-
#:
|
1833 |
-
msgid "
|
1834 |
msgstr ""
|
1835 |
|
1836 |
-
#:
|
1837 |
-
|
|
|
|
|
|
|
|
|
1838 |
msgstr ""
|
1839 |
|
1840 |
-
#:
|
1841 |
-
|
|
|
|
|
|
|
|
|
1842 |
msgstr ""
|
1843 |
|
1844 |
-
#:
|
1845 |
-
|
1846 |
-
|
1847 |
-
|
1848 |
-
|
1849 |
-
|
|
|
1850 |
msgstr ""
|
1851 |
|
1852 |
-
#:
|
1853 |
-
|
|
|
|
|
|
|
1854 |
msgstr ""
|
1855 |
|
1856 |
-
#:
|
1857 |
-
|
|
|
|
|
|
|
1858 |
msgstr ""
|
1859 |
|
1860 |
-
#:
|
1861 |
-
msgid "
|
1862 |
msgstr ""
|
1863 |
|
1864 |
-
#:
|
1865 |
-
msgid "
|
1866 |
msgstr ""
|
1867 |
|
1868 |
-
#: inc/options/
|
1869 |
-
|
1870 |
-
"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
-
#:
|
1874 |
-
msgid ""
|
1875 |
-
"Enable this option only if there are connectivity issues, otherwise it's not "
|
1876 |
-
"recommended."
|
1877 |
msgstr ""
|
1878 |
|
1879 |
-
#:
|
1880 |
-
|
|
|
1881 |
msgstr ""
|
1882 |
|
1883 |
-
#:
|
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 |
-
#:
|
1890 |
-
|
|
|
1891 |
msgstr ""
|
1892 |
|
1893 |
-
#:
|
1894 |
-
msgid "
|
1895 |
msgstr ""
|
1896 |
|
1897 |
-
#:
|
1898 |
-
|
|
|
|
|
|
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#:
|
|
|
1902 |
msgid ""
|
1903 |
-
"
|
1904 |
-
"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
-
#:
|
|
|
1908 |
msgid ""
|
1909 |
-
"
|
1910 |
-
"
|
1911 |
-
"
|
1912 |
-
"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
-
#:
|
1916 |
-
msgid "
|
|
|
1917 |
msgstr ""
|
1918 |
|
1919 |
-
#:
|
1920 |
-
msgid "
|
|
|
1921 |
msgstr ""
|
1922 |
|
1923 |
-
#:
|
1924 |
-
|
|
|
1925 |
msgstr ""
|
1926 |
|
1927 |
-
#:
|
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 |
-
#:
|
1934 |
-
msgid "
|
1935 |
msgstr ""
|
1936 |
|
1937 |
-
#:
|
1938 |
-
msgid "
|
1939 |
msgstr ""
|
1940 |
|
1941 |
-
#:
|
1942 |
-
msgid "
|
1943 |
msgstr ""
|
1944 |
|
1945 |
-
#:
|
1946 |
-
|
|
|
1947 |
msgstr ""
|
1948 |
|
1949 |
-
#:
|
1950 |
-
|
1951 |
-
"
|
1952 |
-
"this site."
|
1953 |
msgstr ""
|
1954 |
|
1955 |
-
#:
|
1956 |
-
|
|
|
1957 |
msgstr ""
|
1958 |
|
1959 |
-
#:
|
1960 |
-
#:
|
1961 |
-
msgid "
|
1962 |
msgstr ""
|
1963 |
|
1964 |
-
#:
|
1965 |
-
|
1966 |
-
"
|
1967 |
-
"settings."
|
1968 |
msgstr ""
|
1969 |
|
1970 |
-
#:
|
1971 |
-
|
1972 |
-
#: lib/W3/UI/PluginView.php:314 lib/W3/UI/PluginView.php:334
|
1973 |
-
msgid "Authorization key"
|
1974 |
msgstr ""
|
1975 |
|
1976 |
-
#:
|
1977 |
-
#:
|
1978 |
-
msgid "
|
1979 |
msgstr ""
|
1980 |
|
1981 |
-
#:
|
|
|
1982 |
msgid ""
|
1983 |
-
"
|
1984 |
-
"
|
1985 |
-
msgstr ""
|
1986 |
-
|
1987 |
-
#: inc/options/cdn/maxcdn.php:48 inc/options/cdn/netdna.php:48
|
1988 |
-
msgid "Create zone:"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
-
#:
|
1992 |
-
#: inc/
|
1993 |
-
msgid "
|
|
|
|
|
1994 |
msgstr ""
|
1995 |
|
1996 |
-
#:
|
1997 |
-
|
1998 |
-
"
|
1999 |
-
"zone automatically."
|
2000 |
msgstr ""
|
2001 |
|
2002 |
-
#:
|
2003 |
-
msgid "
|
2004 |
msgstr ""
|
2005 |
|
2006 |
-
#:
|
2007 |
-
#: inc/
|
2008 |
-
msgid "
|
2009 |
msgstr ""
|
2010 |
|
2011 |
-
#:
|
2012 |
-
|
2013 |
-
|
|
|
2014 |
msgstr ""
|
2015 |
|
2016 |
-
#:
|
2017 |
-
msgid "
|
|
|
|
|
2018 |
msgstr ""
|
2019 |
|
2020 |
-
#:
|
2021 |
-
msgid "
|
|
|
|
|
2022 |
msgstr ""
|
2023 |
|
2024 |
-
#:
|
2025 |
-
msgid "
|
2026 |
msgstr ""
|
2027 |
|
2028 |
-
#:
|
2029 |
-
msgid "
|
2030 |
msgstr ""
|
2031 |
|
2032 |
-
#:
|
2033 |
msgid ""
|
2034 |
-
"
|
2035 |
-
"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
-
#:
|
2039 |
-
|
|
|
2040 |
msgstr ""
|
2041 |
|
2042 |
-
#:
|
2043 |
-
|
2044 |
-
msgid "<acronym title=\"Application Programming Interface\">API</acronym> key:"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
-
#:
|
2048 |
-
msgid "
|
2049 |
msgstr ""
|
2050 |
|
2051 |
-
#:
|
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 |
-
#:
|
2059 |
-
msgid "
|
|
|
|
|
2060 |
msgstr ""
|
2061 |
|
2062 |
-
#:
|
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 |
-
#:
|
2071 |
-
msgid "
|
2072 |
msgstr ""
|
2073 |
|
2074 |
-
#:
|
2075 |
-
msgid "
|
2076 |
msgstr ""
|
2077 |
|
2078 |
-
#:
|
2079 |
-
msgid ""
|
2080 |
-
"The following configuration changes are needed to ensure optimal performance:"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
#:
|
2084 |
-
msgid "
|
2085 |
msgstr ""
|
2086 |
|
2087 |
-
#:
|
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 |
-
#:
|
2094 |
-
|
2095 |
-
#: lib/W3/UI/Settings/PageCache.php:10
|
2096 |
-
msgid "Page Cache"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
-
#:
|
2100 |
-
|
2101 |
-
#: lib/W3/UI/Settings/DatabaseCache.php:10
|
2102 |
-
msgid "Database Cache"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
-
#:
|
2106 |
-
|
2107 |
-
msgid "Object Cache"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
-
#:
|
2111 |
-
|
2112 |
-
msgid "Fragment Cache"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
-
#:
|
2116 |
-
|
2117 |
-
msgid "Browser Cache"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
-
#:
|
2121 |
-
msgid "
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#:
|
2125 |
-
msgid "
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
#:
|
2129 |
-
msgid "
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#:
|
2133 |
-
|
2134 |
-
msgid "Monitoring"
|
2135 |
msgstr ""
|
2136 |
|
2137 |
-
#:
|
2138 |
-
msgid "
|
2139 |
msgstr ""
|
2140 |
|
2141 |
-
#:
|
2142 |
-
msgid "
|
2143 |
msgstr ""
|
2144 |
|
2145 |
-
#:
|
2146 |
-
msgid "
|
2147 |
msgstr ""
|
2148 |
|
2149 |
-
#:
|
2150 |
-
msgid "
|
2151 |
msgstr ""
|
2152 |
|
2153 |
-
#:
|
2154 |
-
|
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 |
-
#:
|
2161 |
-
msgid "
|
2162 |
msgstr ""
|
2163 |
|
2164 |
-
#:
|
2165 |
-
msgid "
|
2166 |
msgstr ""
|
2167 |
|
2168 |
-
#:
|
2169 |
-
|
2170 |
-
msgid "Note(s)"
|
2171 |
msgstr ""
|
2172 |
|
2173 |
-
#:
|
2174 |
-
|
2175 |
-
#: inc/options/common/header.php:188 inc/options/common/header.php:199
|
2176 |
-
msgid "Jump to: "
|
2177 |
msgstr ""
|
2178 |
|
2179 |
-
#:
|
2180 |
-
|
2181 |
msgid ""
|
2182 |
-
"
|
2183 |
-
"title=\"eXtensible Markup Language\">XML</acronym>"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
-
#:
|
2187 |
-
msgid "
|
2188 |
msgstr ""
|
2189 |
|
2190 |
-
#:
|
2191 |
-
|
|
|
2192 |
msgstr ""
|
2193 |
|
2194 |
-
#:
|
2195 |
-
|
|
|
|
|
|
|
2196 |
msgstr ""
|
2197 |
|
2198 |
-
#:
|
2199 |
-
|
|
|
|
|
|
|
2200 |
msgstr ""
|
2201 |
|
2202 |
-
#:
|
2203 |
-
msgid "
|
2204 |
msgstr ""
|
2205 |
|
2206 |
-
#:
|
2207 |
-
|
|
|
|
|
|
|
2208 |
msgstr ""
|
2209 |
|
2210 |
-
#:
|
|
|
2211 |
msgid ""
|
2212 |
-
"
|
2213 |
-
"
|
2214 |
-
"questions below:"
|
2215 |
msgstr ""
|
2216 |
|
2217 |
-
#:
|
2218 |
#, php-format
|
2219 |
msgid ""
|
2220 |
-
"The
|
2221 |
-
"strong> mode."
|
2222 |
msgstr ""
|
2223 |
|
2224 |
-
#:
|
2225 |
-
msgid "
|
2226 |
msgstr ""
|
2227 |
|
2228 |
-
#:
|
2229 |
-
|
|
|
|
|
|
|
2230 |
msgstr ""
|
2231 |
|
2232 |
-
#:
|
2233 |
-
|
|
|
|
|
|
|
|
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
#:
|
2237 |
-
msgid "
|
2238 |
msgstr ""
|
2239 |
|
2240 |
-
#:
|
2241 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2242 |
msgstr ""
|
2243 |
|
2244 |
-
#:
|
2245 |
-
|
2246 |
-
|
2247 |
-
|
2248 |
msgstr ""
|
2249 |
|
2250 |
-
#:
|
2251 |
-
msgid "
|
|
|
|
|
2252 |
msgstr ""
|
2253 |
|
2254 |
-
#:
|
2255 |
-
msgid "
|
|
|
|
|
2256 |
msgstr ""
|
2257 |
|
2258 |
-
#:
|
2259 |
-
msgid "
|
|
|
|
|
2260 |
msgstr ""
|
2261 |
|
2262 |
-
#:
|
2263 |
-
msgid "
|
|
|
|
|
2264 |
msgstr ""
|
2265 |
|
2266 |
-
#:
|
2267 |
-
|
|
|
|
|
2268 |
msgstr ""
|
2269 |
|
2270 |
-
#:
|
2271 |
-
msgid "
|
2272 |
msgstr ""
|
2273 |
|
2274 |
-
|
2275 |
-
|
2276 |
-
#, php-format
|
2277 |
-
msgid "Database caching via %s is currently %s."
|
2278 |
msgstr ""
|
2279 |
|
2280 |
-
#:
|
2281 |
-
|
|
|
2282 |
msgstr ""
|
2283 |
|
2284 |
-
#:
|
2285 |
-
|
2286 |
-
msgid "empty cache"
|
2287 |
msgstr ""
|
2288 |
|
2289 |
-
#:
|
2290 |
-
msgid "
|
2291 |
msgstr ""
|
2292 |
|
2293 |
-
#:
|
2294 |
msgid ""
|
2295 |
-
"
|
|
|
2296 |
msgstr ""
|
2297 |
|
2298 |
-
#:
|
2299 |
-
|
2300 |
-
msgid "Test"
|
2301 |
msgstr ""
|
2302 |
|
2303 |
-
#:
|
2304 |
-
|
2305 |
-
#: inc/options/pro/fragmentcache.php:70
|
2306 |
msgid ""
|
2307 |
-
"
|
2308 |
-
"
|
2309 |
msgstr ""
|
2310 |
|
2311 |
-
#:
|
2312 |
-
|
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 |
-
#:
|
2319 |
-
|
2320 |
-
|
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 |
-
#:
|
|
|
|
|
|
|
|
|
2327 |
#, php-format
|
2328 |
msgid ""
|
2329 |
-
"
|
2330 |
-
"
|
|
|
2331 |
msgstr ""
|
2332 |
|
2333 |
-
#:
|
2334 |
msgid ""
|
2335 |
-
"
|
2336 |
-
"
|
2337 |
-
"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
-
#:
|
2341 |
-
msgid "
|
|
|
|
|
2342 |
msgstr ""
|
2343 |
|
2344 |
-
#:
|
2345 |
-
msgid "
|
2346 |
msgstr ""
|
2347 |
|
2348 |
-
#:
|
2349 |
-
|
2350 |
-
msgid "Please enter the license key you received after successful checkout %s."
|
2351 |
msgstr ""
|
2352 |
|
2353 |
-
#:
|
2354 |
-
msgid "
|
2355 |
msgstr ""
|
2356 |
|
2357 |
-
#:
|
2358 |
-
msgid "
|
2359 |
msgstr ""
|
2360 |
|
2361 |
-
#: inc/options/
|
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/
|
2370 |
-
msgid "
|
2371 |
msgstr ""
|
2372 |
|
2373 |
-
#: inc/options/
|
2374 |
-
|
2375 |
-
msgid "Extension support is always %s"
|
2376 |
msgstr ""
|
2377 |
|
2378 |
-
#:
|
2379 |
-
msgid "
|
2380 |
msgstr ""
|
2381 |
|
2382 |
-
#:
|
2383 |
-
|
2384 |
-
msgid "Activate"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#:
|
2388 |
-
|
2389 |
-
msgid "Deactivate"
|
2390 |
msgstr ""
|
2391 |
|
2392 |
-
#:
|
2393 |
-
msgid "
|
2394 |
msgstr ""
|
2395 |
|
2396 |
-
#:
|
2397 |
-
msgid "
|
2398 |
msgstr ""
|
2399 |
|
2400 |
-
#:
|
2401 |
-
msgid "
|
2402 |
msgstr ""
|
2403 |
|
2404 |
-
#:
|
2405 |
-
|
2406 |
-
msgid "Select %s"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
-
#:
|
2410 |
-
msgid "
|
2411 |
msgstr ""
|
2412 |
|
2413 |
-
#:
|
2414 |
#, php-format
|
2415 |
-
msgid "
|
2416 |
msgstr ""
|
2417 |
|
2418 |
-
#:
|
2419 |
#, php-format
|
2420 |
-
msgid "
|
2421 |
msgstr ""
|
2422 |
|
2423 |
-
#:
|
2424 |
#, php-format
|
2425 |
-
msgid "
|
2426 |
msgstr ""
|
2427 |
|
2428 |
-
#:
|
2429 |
-
|
|
|
2430 |
msgstr ""
|
2431 |
|
2432 |
-
#:
|
2433 |
-
msgid "
|
2434 |
msgstr ""
|
2435 |
|
2436 |
-
#:
|
2437 |
-
|
2438 |
-
msgid "Apply the %s settings to the entire network."
|
2439 |
msgstr ""
|
2440 |
|
2441 |
-
#:
|
2442 |
-
msgid "
|
2443 |
msgstr ""
|
2444 |
|
2445 |
-
#:
|
2446 |
-
msgid "
|
2447 |
msgstr ""
|
2448 |
|
2449 |
-
#:
|
2450 |
-
|
|
|
2451 |
msgstr ""
|
2452 |
|
2453 |
-
#:
|
2454 |
-
msgid "
|
2455 |
msgstr ""
|
2456 |
|
2457 |
-
#:
|
2458 |
-
|
|
|
2459 |
msgstr ""
|
2460 |
|
2461 |
-
#:
|
2462 |
-
msgid "
|
2463 |
msgstr ""
|
2464 |
|
2465 |
-
#:
|
2466 |
-
|
2467 |
-
msgid "To preview any changed settings (without deploying): %s"
|
2468 |
msgstr ""
|
2469 |
|
2470 |
-
#:
|
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 |
-
#:
|
2478 |
-
msgid "
|
2479 |
msgstr ""
|
2480 |
|
2481 |
-
#:
|
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 |
-
#:
|
2488 |
-
msgid "
|
2489 |
msgstr ""
|
2490 |
|
2491 |
-
#:
|
2492 |
-
msgid "
|
2493 |
msgstr ""
|
2494 |
|
2495 |
-
#:
|
2496 |
-
msgid "
|
2497 |
msgstr ""
|
2498 |
|
2499 |
-
#:
|
2500 |
-
|
2501 |
-
msgid "Dedicated / Virtual Server:"
|
2502 |
msgstr ""
|
2503 |
|
2504 |
-
#:
|
2505 |
-
|
2506 |
-
msgid "Opcode: Alternative PHP Cache (APC)"
|
2507 |
msgstr ""
|
2508 |
|
2509 |
-
#:
|
2510 |
-
|
2511 |
-
msgid "Opcode: eAccelerator"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
-
#:
|
2515 |
-
|
2516 |
-
msgid "Opcode: XCache"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#:
|
2520 |
-
|
2521 |
-
msgid "Opcode: WinCache"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
-
#:
|
2525 |
-
|
2526 |
-
msgid "Multiple Servers:"
|
2527 |
msgstr ""
|
2528 |
|
2529 |
-
#:
|
2530 |
-
|
2531 |
-
|
2532 |
msgstr ""
|
2533 |
|
2534 |
-
#:
|
2535 |
-
|
2536 |
-
msgid "Empty cache"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
-
#:
|
2540 |
-
|
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 |
-
#:
|
2547 |
msgid ""
|
2548 |
-
"
|
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 |
-
#:
|
2557 |
-
msgid "
|
2558 |
msgstr ""
|
2559 |
|
2560 |
-
#:
|
2561 |
-
|
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 |
-
#:
|
2570 |
-
msgid "
|
2571 |
msgstr ""
|
2572 |
|
2573 |
-
#:
|
2574 |
-
msgid "
|
2575 |
msgstr ""
|
2576 |
|
2577 |
-
#:
|
2578 |
-
|
2579 |
-
"
|
2580 |
-
"to be minified, otherwise files will be minified automatically."
|
2581 |
msgstr ""
|
2582 |
|
2583 |
-
#:
|
2584 |
-
msgid "
|
2585 |
msgstr ""
|
2586 |
|
2587 |
-
#:
|
2588 |
-
|
2589 |
-
msgid "Disk"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
-
#:
|
2593 |
-
msgid "
|
2594 |
msgstr ""
|
2595 |
|
2596 |
-
#:
|
2597 |
-
msgid "
|
2598 |
msgstr ""
|
2599 |
|
2600 |
-
#:
|
2601 |
-
msgid "
|
2602 |
msgstr ""
|
2603 |
|
2604 |
-
#:
|
2605 |
-
msgid "
|
|
|
2606 |
msgstr ""
|
2607 |
|
2608 |
-
#:
|
2609 |
-
msgid "
|
|
|
|
|
2610 |
msgstr ""
|
2611 |
|
2612 |
-
#:
|
2613 |
-
msgid "
|
2614 |
msgstr ""
|
2615 |
|
2616 |
-
#:
|
2617 |
-
msgid "
|
2618 |
msgstr ""
|
2619 |
|
2620 |
-
#:
|
2621 |
-
|
2622 |
-
"
|
2623 |
-
"if object caching is not possible."
|
2624 |
msgstr ""
|
2625 |
|
2626 |
-
#:
|
2627 |
-
|
2628 |
-
"
|
2629 |
msgstr ""
|
2630 |
|
2631 |
-
#:
|
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 |
-
#:
|
2640 |
-
msgid "
|
2641 |
msgstr ""
|
2642 |
|
2643 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
2657 |
-
|
2658 |
-
msgid "<acronym title=\"Content Delivery Network\">CDN</acronym>"
|
2659 |
msgstr ""
|
2660 |
|
2661 |
-
#:
|
2662 |
-
msgid ""
|
2663 |
-
"Host static files with your content delivery network provider to reduce page "
|
2664 |
-
"load time."
|
2665 |
msgstr ""
|
2666 |
|
2667 |
-
#:
|
2668 |
-
|
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%</a>."
|
2673 |
msgstr ""
|
2674 |
|
2675 |
-
#:
|
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 |
-
#:
|
2683 |
-
msgid "
|
2684 |
msgstr ""
|
2685 |
|
2686 |
-
#:
|
2687 |
-
msgid "
|
2688 |
msgstr ""
|
2689 |
|
2690 |
-
#:
|
2691 |
-
msgid "
|
2692 |
msgstr ""
|
2693 |
|
2694 |
-
#:
|
2695 |
-
msgid "
|
2696 |
msgstr ""
|
2697 |
|
2698 |
-
#:
|
2699 |
-
msgid "
|
2700 |
msgstr ""
|
2701 |
|
2702 |
-
#:
|
2703 |
-
msgid "
|
2704 |
msgstr ""
|
2705 |
|
2706 |
-
#:
|
2707 |
-
msgid "
|
2708 |
msgstr ""
|
2709 |
|
2710 |
-
#:
|
2711 |
-
msgid "
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#:
|
2715 |
-
msgid "
|
2716 |
msgstr ""
|
2717 |
|
2718 |
-
#:
|
2719 |
-
msgid "
|
2720 |
msgstr ""
|
2721 |
|
2722 |
-
#:
|
2723 |
-
msgid "
|
2724 |
msgstr ""
|
2725 |
|
2726 |
-
#:
|
2727 |
-
msgid "
|
2728 |
msgstr ""
|
2729 |
|
2730 |
-
#:
|
2731 |
-
msgid ""
|
2732 |
-
"Select the <acronym title=\"Content Delivery Network\">CDN</acronym> type "
|
2733 |
-
"you wish to use."
|
2734 |
msgstr ""
|
2735 |
|
2736 |
-
#:
|
2737 |
-
msgid "
|
2738 |
msgstr ""
|
2739 |
|
2740 |
-
#:
|
2741 |
-
|
2742 |
-
msgid ""
|
2743 |
-
"Purge policies are set on the <a href=\"%s\">Page Cache settings</a> page."
|
2744 |
msgstr ""
|
2745 |
|
2746 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
2760 |
-
msgid ""
|
2761 |
-
"Specify the <acronym title=\"Application Programming Interface\">API</"
|
2762 |
-
"acronym> Key."
|
2763 |
msgstr ""
|
2764 |
|
2765 |
-
#:
|
2766 |
-
msgid ""
|
2767 |
-
"Specify the <acronym title=\"Application Programming Interface\">API</"
|
2768 |
-
"acronym> secret."
|
2769 |
msgstr ""
|
2770 |
|
2771 |
-
#:
|
2772 |
-
msgid "
|
2773 |
msgstr ""
|
2774 |
|
2775 |
-
#:
|
|
|
2776 |
msgid ""
|
2777 |
-
"
|
2778 |
-
"acronym> topic."
|
2779 |
msgstr ""
|
2780 |
|
2781 |
-
#:
|
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 |
-
#:
|
2790 |
-
msgid "
|
2791 |
msgstr ""
|
2792 |
|
2793 |
-
#:
|
2794 |
-
msgid "
|
2795 |
msgstr ""
|
2796 |
|
2797 |
-
#:
|
2798 |
-
|
2799 |
-
msgid "Verify %s"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
-
#:
|
2803 |
-
msgid "
|
2804 |
msgstr ""
|
2805 |
|
2806 |
-
#:
|
2807 |
-
|
|
|
2808 |
msgstr ""
|
2809 |
|
2810 |
-
#:
|
2811 |
-
msgid "
|
2812 |
msgstr ""
|
2813 |
|
2814 |
-
#:
|
2815 |
-
|
|
|
2816 |
msgstr ""
|
2817 |
|
2818 |
-
#:
|
2819 |
-
msgid "
|
2820 |
msgstr ""
|
2821 |
|
2822 |
-
#:
|
|
|
|
|
|
|
|
|
2823 |
msgid ""
|
2824 |
-
"
|
2825 |
-
"
|
2826 |
msgstr ""
|
2827 |
|
2828 |
-
#:
|
2829 |
-
msgid "
|
2830 |
msgstr ""
|
2831 |
|
2832 |
-
#:
|
2833 |
-
|
2834 |
-
msgid "Please enter the license key provided you received after %s."
|
2835 |
msgstr ""
|
2836 |
|
2837 |
-
#:
|
2838 |
-
|
|
|
|
|
2839 |
msgstr ""
|
2840 |
|
2841 |
-
#:
|
2842 |
-
msgid "
|
2843 |
msgstr ""
|
2844 |
|
2845 |
-
#:
|
2846 |
-
|
2847 |
-
|
2848 |
-
|
2849 |
-
|
2850 |
-
|
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 |
-
#:
|
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 |
-
#:
|
2866 |
-
msgid "
|
2867 |
msgstr ""
|
2868 |
|
2869 |
-
#:
|
2870 |
-
msgid "
|
2871 |
msgstr ""
|
2872 |
|
2873 |
-
#:
|
2874 |
msgid ""
|
2875 |
-
"
|
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 |
-
#:
|
2881 |
-
msgid "
|
|
|
|
|
|
|
|
|
2882 |
msgstr ""
|
2883 |
|
2884 |
-
#:
|
2885 |
-
msgid ""
|
2886 |
-
"Not recommended for <acronym title=\"Network File System\">NFS</acronym> "
|
2887 |
-
"systems."
|
2888 |
msgstr ""
|
2889 |
|
2890 |
-
#:
|
2891 |
-
|
2892 |
-
"
|
2893 |
-
"\"Network File System\">NFS</acronym>"
|
2894 |
msgstr ""
|
2895 |
|
2896 |
-
#:
|
|
|
2897 |
msgid ""
|
2898 |
-
"
|
2899 |
-
"
|
2900 |
msgstr ""
|
2901 |
|
2902 |
-
#:
|
2903 |
-
msgid "
|
2904 |
msgstr ""
|
2905 |
|
2906 |
-
#:
|
2907 |
-
msgid "
|
2908 |
msgstr ""
|
2909 |
|
2910 |
-
#:
|
2911 |
msgid ""
|
2912 |
-
"
|
2913 |
-
"
|
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 |
-
#:
|
2919 |
-
msgid "
|
2920 |
msgstr ""
|
2921 |
|
2922 |
-
#:
|
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 |
-
#:
|
2930 |
-
msgid "
|
2931 |
msgstr ""
|
2932 |
|
2933 |
-
#:
|
2934 |
-
msgid "
|
2935 |
msgstr ""
|
2936 |
|
2937 |
-
#:
|
2938 |
-
msgid "
|
|
|
2939 |
msgstr ""
|
2940 |
|
2941 |
-
#:
|
2942 |
-
msgid "
|
2943 |
msgstr ""
|
2944 |
|
2945 |
-
#:
|
2946 |
-
msgid "
|
2947 |
msgstr ""
|
2948 |
|
2949 |
-
#:
|
2950 |
-
msgid "
|
2951 |
msgstr ""
|
2952 |
|
2953 |
-
#:
|
2954 |
-
msgid "
|
2955 |
msgstr ""
|
2956 |
|
2957 |
-
#:
|
2958 |
-
|
|
|
2959 |
msgstr ""
|
2960 |
|
2961 |
-
#:
|
2962 |
-
msgid ""
|
2963 |
-
"Revert all settings to the defaults. Any settings staged in preview mode "
|
2964 |
-
"will not be modified."
|
2965 |
msgstr ""
|
2966 |
|
2967 |
-
#:
|
2968 |
-
msgid "
|
2969 |
msgstr ""
|
2970 |
|
2971 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
3061 |
-
msgid "
|
3062 |
msgstr ""
|
3063 |
|
3064 |
-
#:
|
3065 |
-
msgid "
|
3066 |
msgstr ""
|
3067 |
|
3068 |
-
#:
|
3069 |
-
msgid ""
|
3070 |
-
"Software Installation for Dedicated / Virtual Dedicated / Multiple Servers "
|
3071 |
-
"(Optional)"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
-
#:
|
3075 |
-
msgid ""
|
3076 |
-
"<strong>Server Preparation:</strong><br /><em>Time required: ~1 minute</em>"
|
3077 |
msgstr ""
|
3078 |
|
3079 |
-
#:
|
3080 |
msgid ""
|
3081 |
-
"
|
3082 |
-
"
|
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 |
-
#:
|
3089 |
-
msgid ""
|
3090 |
-
"Install <acronym title=\"PHP Extension Community Library\">PECL</acronym>:"
|
3091 |
msgstr ""
|
3092 |
|
3093 |
-
#:
|
3094 |
msgid ""
|
3095 |
-
"
|
3096 |
-
"
|
3097 |
msgstr ""
|
3098 |
|
3099 |
-
#:
|
3100 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
3101 |
msgstr ""
|
3102 |
|
3103 |
-
#:
|
3104 |
-
msgid "
|
3105 |
msgstr ""
|
3106 |
|
3107 |
-
#:
|
3108 |
-
msgid "
|
3109 |
msgstr ""
|
3110 |
|
3111 |
-
#:
|
3112 |
-
msgid "
|
3113 |
msgstr ""
|
3114 |
|
3115 |
-
#:
|
3116 |
msgid ""
|
3117 |
-
"
|
3118 |
-
"
|
|
|
3119 |
msgstr ""
|
3120 |
|
3121 |
-
#:
|
3122 |
-
msgid "
|
3123 |
msgstr ""
|
3124 |
|
3125 |
-
#:
|
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 |
-
#:
|
3133 |
-
msgid "
|
3134 |
msgstr ""
|
3135 |
|
3136 |
-
#:
|
3137 |
-
msgid "
|
3138 |
msgstr ""
|
3139 |
|
3140 |
-
#:
|
3141 |
-
|
3142 |
-
msgid "Libraries have been installed in: %s"
|
3143 |
msgstr ""
|
3144 |
|
3145 |
-
#:
|
3146 |
-
msgid "
|
3147 |
msgstr ""
|
3148 |
|
3149 |
-
#:
|
3150 |
-
msgid "
|
3151 |
msgstr ""
|
3152 |
|
3153 |
-
#:
|
3154 |
msgid ""
|
3155 |
-
"
|
3156 |
-
"
|
3157 |
msgstr ""
|
3158 |
|
3159 |
-
#:
|
3160 |
-
msgid "
|
3161 |
msgstr ""
|
3162 |
|
3163 |
-
#:
|
3164 |
-
msgid "
|
3165 |
msgstr ""
|
3166 |
|
3167 |
-
#:
|
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 |
-
#:
|
3174 |
-
msgid ""
|
3175 |
-
|
3176 |
-
|
|
|
|
|
3177 |
msgstr ""
|
3178 |
|
3179 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3180 |
msgid ""
|
3181 |
-
"
|
3182 |
-
"
|
3183 |
msgstr ""
|
3184 |
|
3185 |
-
#:
|
3186 |
-
msgid "
|
3187 |
msgstr ""
|
3188 |
|
3189 |
-
#:
|
3190 |
-
msgid "
|
3191 |
msgstr ""
|
3192 |
|
3193 |
-
#:
|
3194 |
-
msgid "
|
3195 |
msgstr ""
|
3196 |
|
3197 |
-
#:
|
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 |
-
#:
|
3204 |
-
|
3205 |
-
|
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 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
3225 |
-
msgid "
|
3226 |
msgstr ""
|
3227 |
|
3228 |
-
#:
|
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 |
-
#:
|
3235 |
-
|
3236 |
-
msgid "Installing shared extensions: %s"
|
3237 |
msgstr ""
|
3238 |
|
3239 |
-
#:
|
3240 |
-
msgid "
|
3241 |
msgstr ""
|
3242 |
|
3243 |
-
#:
|
3244 |
-
|
3245 |
-
msgid "Restart apache when ready:"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
-
#:
|
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 |
-
#:
|
3255 |
-
msgid ""
|
3256 |
-
"<strong>XCache Installation:</strong><br /><em>Time required: 1 minute</em>"
|
3257 |
msgstr ""
|
3258 |
|
3259 |
-
#:
|
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 |
-
#:
|
3266 |
-
msgid "
|
3267 |
msgstr ""
|
3268 |
|
3269 |
-
#:
|
3270 |
-
|
3271 |
-
"
|
3272 |
-
"compile command:"
|
3273 |
msgstr ""
|
3274 |
|
3275 |
-
#:
|
3276 |
-
msgid "
|
3277 |
msgstr ""
|
3278 |
|
3279 |
-
#:
|
3280 |
-
msgid "
|
3281 |
msgstr ""
|
3282 |
|
3283 |
-
#:
|
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 |
-
#:
|
3290 |
msgid ""
|
3291 |
-
"<
|
3292 |
-
"
|
3293 |
msgstr ""
|
3294 |
|
3295 |
-
#:
|
3296 |
msgid ""
|
3297 |
-
"
|
3298 |
-
"
|
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 |
-
#:
|
3304 |
msgid ""
|
3305 |
-
"
|
3306 |
-
"
|
|
|
|
|
|
|
|
|
3307 |
msgstr ""
|
3308 |
|
3309 |
-
#:
|
3310 |
msgid ""
|
3311 |
-
"
|
3312 |
-
"
|
3313 |
-
"requests</a>."
|
3314 |
msgstr ""
|
3315 |
|
3316 |
-
#:
|
3317 |
msgid ""
|
3318 |
-
"
|
3319 |
-
"
|
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 |
-
#:
|
3326 |
msgid ""
|
3327 |
-
"
|
3328 |
-
"
|
3329 |
-
"and wp-content/w3tc/min/.htaccess contain directives that must be manually "
|
3330 |
-
"created for your web server software."
|
3331 |
msgstr ""
|
3332 |
|
3333 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
3349 |
-
|
3350 |
-
|
3351 |
-
|
|
|
|
|
|
|
|
|
3352 |
msgstr ""
|
3353 |
|
3354 |
-
#:
|
3355 |
-
|
3356 |
-
msgid "Minify via %s is currently %s."
|
3357 |
msgstr ""
|
3358 |
|
3359 |
-
#:
|
3360 |
-
|
3361 |
-
msgid "To rebuild the minify cache use the %s operation."
|
3362 |
msgstr ""
|
3363 |
|
3364 |
-
#:
|
3365 |
-
msgid "
|
3366 |
msgstr ""
|
3367 |
|
3368 |
-
#:
|
3369 |
-
msgid "
|
3370 |
msgstr ""
|
3371 |
|
3372 |
-
#:
|
3373 |
-
msgid "
|
3374 |
msgstr ""
|
3375 |
|
3376 |
-
#:
|
3377 |
-
|
3378 |
-
msgid ""
|
3379 |
-
"%s to make existing file modifications visible to visitors with a primed "
|
3380 |
-
"cache."
|
3381 |
msgstr ""
|
3382 |
|
3383 |
-
#:
|
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 |
-
#:
|
3391 |
-
msgid ""
|
3392 |
-
"Authenticated users will not receive minified pages if this option is "
|
3393 |
-
"enabled."
|
3394 |
msgstr ""
|
3395 |
|
3396 |
-
#:
|
3397 |
-
msgid "
|
3398 |
msgstr ""
|
3399 |
|
3400 |
-
#:
|
3401 |
-
msgid "
|
3402 |
msgstr ""
|
3403 |
|
3404 |
-
#:
|
3405 |
-
msgid "
|
3406 |
msgstr ""
|
3407 |
|
3408 |
-
#:
|
3409 |
-
msgid "
|
3410 |
msgstr ""
|
3411 |
|
3412 |
-
#:
|
3413 |
-
msgid ""
|
3414 |
-
"<acronym title=\"Hypertext Markup Language\">HTML</acronym> minify settings:"
|
3415 |
msgstr ""
|
3416 |
|
3417 |
-
#:
|
3418 |
-
msgid "
|
3419 |
msgstr ""
|
3420 |
|
3421 |
-
#:
|
3422 |
-
msgid "<acronym title=\"
|
3423 |
msgstr ""
|
3424 |
|
3425 |
-
#:
|
3426 |
-
|
|
|
3427 |
msgstr ""
|
3428 |
|
3429 |
-
#:
|
3430 |
-
|
|
|
3431 |
msgstr ""
|
3432 |
|
3433 |
-
#:
|
3434 |
-
|
3435 |
-
msgid "
|
|
|
|
|
3436 |
msgstr ""
|
3437 |
|
3438 |
-
#:
|
3439 |
-
|
3440 |
-
msgid "Non-blocking using JS"
|
3441 |
msgstr ""
|
3442 |
|
3443 |
-
#:
|
3444 |
-
|
3445 |
-
msgid "
|
|
|
|
|
3446 |
msgstr ""
|
3447 |
|
3448 |
-
#:
|
3449 |
-
|
3450 |
-
msgid "Non-blocking using \"defer\""
|
3451 |
msgstr ""
|
3452 |
|
3453 |
-
#:
|
3454 |
-
|
3455 |
-
msgid "Non-blocking using \"extsrc\""
|
3456 |
msgstr ""
|
3457 |
|
3458 |
-
#:
|
3459 |
-
|
3460 |
-
msgid "Non-blocking using \"asyncsrc\""
|
3461 |
msgstr ""
|
3462 |
|
3463 |
-
#:
|
3464 |
-
msgid "
|
3465 |
msgstr ""
|
3466 |
|
3467 |
-
#:
|
3468 |
-
|
3469 |
-
msgid "Theme:"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
-
#:
|
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 |
-
"& drop to resolve dependency issues (due to incorrect order)."
|
3478 |
msgstr ""
|
3479 |
|
3480 |
-
#:
|
3481 |
-
msgid "
|
3482 |
msgstr ""
|
3483 |
|
3484 |
-
#:
|
3485 |
-
msgid "
|
3486 |
msgstr ""
|
3487 |
|
3488 |
-
#:
|
3489 |
-
msgid "
|
3490 |
msgstr ""
|
3491 |
|
3492 |
-
#:
|
3493 |
-
msgid "
|
3494 |
msgstr ""
|
3495 |
|
3496 |
-
#:
|
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 & drop to resolve dependency issues (due to incorrect "
|
3502 |
-
"order)."
|
3503 |
msgstr ""
|
3504 |
|
3505 |
-
#:
|
3506 |
-
msgid "
|
3507 |
msgstr ""
|
3508 |
|
3509 |
-
#:
|
3510 |
-
msgid "
|
3511 |
msgstr ""
|
3512 |
|
3513 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
3540 |
-
msgid "
|
3541 |
msgstr ""
|
3542 |
|
3543 |
-
#:
|
3544 |
-
msgid "
|
3545 |
msgstr ""
|
3546 |
|
3547 |
-
#:
|
3548 |
-
msgid "
|
3549 |
msgstr ""
|
3550 |
|
3551 |
-
#:
|
3552 |
-
msgid "
|
3553 |
msgstr ""
|
3554 |
|
3555 |
-
#:
|
3556 |
-
msgid "
|
3557 |
msgstr ""
|
3558 |
|
3559 |
-
#:
|
3560 |
msgid ""
|
3561 |
-
"
|
3562 |
-
"
|
3563 |
-
"
|
|
|
3564 |
msgstr ""
|
3565 |
|
3566 |
-
#:
|
3567 |
msgid ""
|
3568 |
-
"
|
3569 |
-
"
|
3570 |
-
"& JavaScript\" section on <a href=\"admin.php?page=w3tc_browsercache"
|
3571 |
-
"\">Browser Cache</a> Settings tab."
|
3572 |
msgstr ""
|
3573 |
|
3574 |
-
#:
|
3575 |
-
|
|
|
|
|
|
|
3576 |
msgstr ""
|
3577 |
|
3578 |
-
#:
|
3579 |
-
|
|
|
|
|
|
|
|
|
3580 |
msgstr ""
|
3581 |
|
3582 |
-
#:
|
3583 |
-
msgid "
|
3584 |
msgstr ""
|
3585 |
|
3586 |
-
#:
|
3587 |
-
msgid "
|
3588 |
msgstr ""
|
3589 |
|
3590 |
-
#:
|
3591 |
-
msgid "
|
3592 |
msgstr ""
|
3593 |
|
3594 |
-
#:
|
3595 |
-
msgid "
|
3596 |
msgstr ""
|
3597 |
|
3598 |
-
#:
|
3599 |
-
msgid "
|
3600 |
msgstr ""
|
3601 |
|
3602 |
-
#:
|
3603 |
-
msgid "
|
3604 |
msgstr ""
|
3605 |
|
3606 |
-
#:
|
3607 |
-
msgid "
|
3608 |
msgstr ""
|
3609 |
|
3610 |
-
#:
|
3611 |
-
msgid "
|
3612 |
msgstr ""
|
3613 |
|
3614 |
-
#:
|
3615 |
-
msgid "
|
3616 |
msgstr ""
|
3617 |
|
3618 |
-
#:
|
3619 |
-
msgid "
|
3620 |
msgstr ""
|
3621 |
|
3622 |
-
#:
|
3623 |
-
msgid "
|
3624 |
msgstr ""
|
3625 |
|
3626 |
-
#:
|
3627 |
-
msgid "
|
3628 |
msgstr ""
|
3629 |
|
3630 |
-
#:
|
3631 |
-
msgid "
|
3632 |
msgstr ""
|
3633 |
|
3634 |
-
#:
|
3635 |
-
msgid "
|
3636 |
msgstr ""
|
3637 |
|
3638 |
-
#:
|
3639 |
-
msgid "
|
3640 |
msgstr ""
|
3641 |
|
3642 |
-
#:
|
3643 |
-
|
|
|
3644 |
msgstr ""
|
3645 |
|
3646 |
-
#:
|
3647 |
-
|
3648 |
-
msgid "
|
3649 |
msgstr ""
|
3650 |
|
3651 |
-
#:
|
3652 |
-
|
3653 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3654 |
msgstr ""
|
3655 |
|
3656 |
-
#:
|
3657 |
-
msgid "
|
|
|
|
|
|
|
|
|
3658 |
msgstr ""
|
3659 |
|
3660 |
-
#:
|
3661 |
-
msgid ""
|
3662 |
-
"User agent group support is always <span class=\"w3tc-enabled\">enabled</"
|
3663 |
-
"span>."
|
3664 |
msgstr ""
|
3665 |
|
3666 |
-
#:
|
3667 |
-
msgid "
|
3668 |
msgstr ""
|
3669 |
|
3670 |
-
#:
|
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 -> down)."
|
3677 |
msgstr ""
|
3678 |
|
3679 |
-
#:
|
3680 |
-
msgid "
|
3681 |
msgstr ""
|
3682 |
|
3683 |
-
#:
|
3684 |
-
msgid "
|
3685 |
msgstr ""
|
3686 |
|
3687 |
-
#:
|
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 |
-
#:
|
3696 |
-
msgid "
|
3697 |
msgstr ""
|
3698 |
|
3699 |
-
#:
|
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 |
-
#:
|
3707 |
-
msgid "
|
3708 |
msgstr ""
|
3709 |
|
3710 |
-
#:
|
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 |
-
#:
|
3718 |
-
msgid ""
|
3719 |
-
"No groups added. All user agents recieve the same page and minify cache "
|
3720 |
-
"results."
|
3721 |
msgstr ""
|
3722 |
|
3723 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
3738 |
-
msgid "
|
3739 |
msgstr ""
|
3740 |
|
3741 |
-
#:
|
3742 |
-
msgid "
|
3743 |
msgstr ""
|
3744 |
|
3745 |
-
#:
|
3746 |
-
|
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 |
-
#:
|
3753 |
-
msgid "
|
3754 |
msgstr ""
|
3755 |
|
3756 |
-
#:
|
3757 |
-
msgid "
|
3758 |
msgstr ""
|
3759 |
|
3760 |
-
#:
|
3761 |
-
msgid ""
|
3762 |
-
"How many minutes data retrieved from New Relic should be stored. Minimum is "
|
3763 |
-
"1 minute."
|
3764 |
msgstr ""
|
3765 |
|
3766 |
-
#:
|
3767 |
-
msgid "
|
3768 |
msgstr ""
|
3769 |
|
3770 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
3797 |
-
|
3798 |
-
msgid "Object caching via %1$s is currently %2$s"
|
3799 |
msgstr ""
|
3800 |
|
3801 |
-
#:
|
3802 |
-
msgid "
|
3803 |
msgstr ""
|
3804 |
|
3805 |
-
#:
|
3806 |
-
msgid "
|
3807 |
msgstr ""
|
3808 |
|
3809 |
-
#:
|
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 |
-
|
3820 |
-
|
3821 |
-
#, php-format
|
3822 |
-
msgid "Page caching via %1$s is currently %2$s"
|
3823 |
msgstr ""
|
3824 |
|
3825 |
-
#:
|
3826 |
-
|
3827 |
-
msgid "To rebuild the page cache use the %s operation"
|
3828 |
msgstr ""
|
3829 |
|
3830 |
-
#:
|
3831 |
-
msgid ""
|
3832 |
-
"For many blogs this is your most visited page, it is recommended that you "
|
3833 |
-
"cache it."
|
3834 |
msgstr ""
|
3835 |
|
3836 |
-
#:
|
3837 |
-
msgid ""
|
3838 |
-
"By default the front page is cached when using static front page in reading "
|
3839 |
-
"settings."
|
3840 |
msgstr ""
|
3841 |
|
3842 |
-
#:
|
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 |
-
#:
|
3850 |
-
msgid ""
|
3851 |
-
"Cache <acronym title=\"Secure Socket Layer\">SSL</acronym> requests "
|
3852 |
-
"(uniquely) for improved performance."
|
3853 |
msgstr ""
|
3854 |
|
3855 |
-
#:
|
3856 |
-
msgid "
|
3857 |
msgstr ""
|
3858 |
|
3859 |
-
#:
|
3860 |
-
|
3861 |
-
"
|
3862 |
-
"caching is used, 404 pages will be returned with a 200 response code. Use at "
|
3863 |
-
"your own risk."
|
3864 |
msgstr ""
|
3865 |
|
3866 |
-
#:
|
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 |
-
#:
|
3874 |
-
|
3875 |
-
"
|
3876 |
-
"user's view of a given page. Disabling this option is not recommended."
|
3877 |
msgstr ""
|
3878 |
|
3879 |
-
#:
|
3880 |
-
msgid "
|
3881 |
msgstr ""
|
3882 |
|
3883 |
-
#:
|
3884 |
-
msgid ""
|
3885 |
-
"The number of seconds to wait before creating another set of cached pages."
|
3886 |
msgstr ""
|
3887 |
|
3888 |
-
#:
|
3889 |
-
|
3890 |
-
"
|
3891 |
-
"under-powered servers."
|
3892 |
msgstr ""
|
3893 |
|
3894 |
-
#:
|
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 |
-
#:
|
3906 |
-
msgid "
|
3907 |
msgstr ""
|
3908 |
|
3909 |
-
#:
|
3910 |
-
|
3911 |
-
"
|
3912 |
-
"comments posted. The defaults are recommended because additional options may "
|
3913 |
-
"reduce server performance:"
|
3914 |
msgstr ""
|
3915 |
|
3916 |
-
#:
|
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 |
-
#:
|
3924 |
-
|
3925 |
-
"
|
3926 |
-
"posts."
|
3927 |
msgstr ""
|
3928 |
|
3929 |
-
#:
|
3930 |
-
msgid "
|
3931 |
msgstr ""
|
3932 |
|
3933 |
-
#:
|
3934 |
-
msgid "
|
3935 |
msgstr ""
|
3936 |
|
3937 |
-
#:
|
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 |
-
#:
|
3945 |
-
msgid "
|
3946 |
msgstr ""
|
3947 |
|
3948 |
-
#:
|
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 |
-
#:
|
3956 |
-
msgid "
|
3957 |
msgstr ""
|
3958 |
|
3959 |
-
#:
|
3960 |
-
msgid ""
|
3961 |
-
"Resolve issues incorrect odd character encoding that may appear in cached "
|
3962 |
-
"pages."
|
3963 |
msgstr ""
|
3964 |
|
3965 |
-
#:
|
3966 |
-
msgid "
|
3967 |
msgstr ""
|
3968 |
|
3969 |
-
#:
|
3970 |
msgid ""
|
3971 |
-
"
|
3972 |
-
"
|
3973 |
-
"Resource Indicator\">URL</acronym>."
|
3974 |
msgstr ""
|
3975 |
|
3976 |
-
#:
|
3977 |
msgid ""
|
3978 |
-
"
|
3979 |
-
"
|
3980 |
-
"traffic. Enter -1 to revert to default <acronym title=\"Time to Live\">TTL</"
|
3981 |
-
"acronym>."
|
3982 |
msgstr ""
|
3983 |
|
3984 |
-
#:
|
3985 |
-
|
|
|
|
|
|
|
3986 |
msgstr ""
|
3987 |
|
3988 |
-
#:
|
3989 |
-
msgid "
|
3990 |
msgstr ""
|
3991 |
|
3992 |
-
#:
|
3993 |
-
msgid "
|
3994 |
msgstr ""
|
3995 |
|
3996 |
-
#:
|
3997 |
-
|
3998 |
-
msgid ""
|
3999 |
-
"Always ignore the specified pages / directories. Supports regular "
|
4000 |
-
"expressions (See <a href=\"%s\">FAQ</a>)"
|
4001 |
msgstr ""
|
4002 |
|
4003 |
-
#:
|
4004 |
-
|
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 |
-
#:
|
4012 |
-
msgid "
|
4013 |
msgstr ""
|
4014 |
|
4015 |
-
#:
|
4016 |
-
msgid "
|
4017 |
msgstr ""
|
4018 |
|
4019 |
-
#:
|
4020 |
msgid ""
|
4021 |
-
"
|
|
|
4022 |
msgstr ""
|
4023 |
|
4024 |
-
#:
|
4025 |
msgid ""
|
4026 |
-
"
|
4027 |
-
"
|
4028 |
-
"acronym>\" section on <a href=\"admin.php?page=w3tc_browsercache\">Browser "
|
4029 |
-
"Cache</a> Settings tab."
|
4030 |
msgstr ""
|
4031 |
|
4032 |
-
#:
|
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 |
-
|
4041 |
-
|
4042 |
-
#, php-format
|
4043 |
-
msgid "Fragment caching via %s is currently %s."
|
4044 |
msgstr ""
|
4045 |
|
4046 |
-
#:
|
4047 |
-
msgid "
|
4048 |
msgstr ""
|
4049 |
|
4050 |
-
#:
|
4051 |
-
msgid "
|
4052 |
msgstr ""
|
4053 |
|
4054 |
-
#:
|
4055 |
-
msgid "
|
4056 |
msgstr ""
|
4057 |
|
4058 |
-
#:
|
4059 |
-
msgid "
|
4060 |
msgstr ""
|
4061 |
|
4062 |
-
#:
|
4063 |
-
msgid "
|
4064 |
msgstr ""
|
4065 |
|
4066 |
-
#:
|
4067 |
-
msgid "
|
4068 |
msgstr ""
|
4069 |
|
4070 |
-
#:
|
4071 |
-
msgid "
|
4072 |
msgstr ""
|
4073 |
|
4074 |
-
#:
|
4075 |
-
msgid "
|
4076 |
msgstr ""
|
4077 |
|
4078 |
-
#:
|
4079 |
-
msgid "
|
4080 |
msgstr ""
|
4081 |
|
4082 |
-
#:
|
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 |
-
#:
|
4090 |
-
msgid "
|
4091 |
msgstr ""
|
4092 |
|
4093 |
-
#:
|
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 -> down)."
|
4100 |
msgstr ""
|
4101 |
|
4102 |
-
#:
|
4103 |
-
msgid "
|
4104 |
msgstr ""
|
4105 |
|
4106 |
-
#:
|
4107 |
-
msgid "
|
4108 |
msgstr ""
|
4109 |
|
4110 |
-
#:
|
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 |
-
#:
|
4119 |
-
msgid ""
|
4120 |
-
"A 302 redirect is used to send this group of referrers to another hostname "
|
4121 |
-
"(domain)."
|
4122 |
msgstr ""
|
4123 |
|
4124 |
-
#:
|
4125 |
-
msgid "
|
4126 |
msgstr ""
|
4127 |
|
4128 |
-
#:
|
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 |
-
#:
|
4136 |
-
msgid ""
|
4137 |
-
"No groups added. All referrers recieve the same page and minify cache "
|
4138 |
-
"results."
|
4139 |
msgstr ""
|
4140 |
|
4141 |
-
#:
|
4142 |
-
msgid ""
|
4143 |
-
"Request premium services, suggest a feature or submit a bug using the form "
|
4144 |
-
"below:"
|
4145 |
msgstr ""
|
4146 |
|
4147 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
4170 |
-
msgid "
|
|
|
|
|
4171 |
msgstr ""
|
4172 |
|
4173 |
-
#:
|
4174 |
-
msgid "
|
|
|
|
|
4175 |
msgstr ""
|
4176 |
|
4177 |
-
#:
|
4178 |
-
|
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 |
-
#:
|
4189 |
-
|
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 |
-
#:
|
4199 |
-
|
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 |
-
#:
|
4209 |
-
|
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 |
-
#:
|
4219 |
-
|
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 |
-
#:
|
4229 |
-
|
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 |
-
#:
|
4239 |
-
|
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 |
-
#:
|
4247 |
-
|
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 |
-
#:
|
4256 |
-
|
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 |
-
#:
|
4265 |
-
|
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 |
-
#:
|
4285 |
-
|
4286 |
-
|
4287 |
-
|
4288 |
-
msgid "Forum Topic URL:"
|
4289 |
-
msgstr ""
|
4290 |
|
4291 |
-
#:
|
4292 |
-
msgid "
|
4293 |
msgstr ""
|
4294 |
|
4295 |
-
#:
|
4296 |
-
msgid "
|
4297 |
msgstr ""
|
4298 |
|
4299 |
-
#:
|
4300 |
-
|
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 |
-
#:
|
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 |
-
"
|
4318 |
-
"
|
4319 |
msgstr ""
|
4320 |
|
4321 |
-
#:
|
4322 |
-
|
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 |
-
"<
|
4329 |
-
"
|
|
|
4330 |
msgstr ""
|
4331 |
|
4332 |
-
#:
|
4333 |
-
|
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 |
-
#:
|
4343 |
-
|
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 |
-
#:
|
4353 |
-
|
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 |
-
#:
|
4361 |
-
|
4362 |
-
|
4363 |
-
|
4364 |
-
#: inc/options/support/form/theme_config.php:52
|
4365 |
-
msgid "<acronym title=\"WordPress\">WP</acronym> Admin password:"
|
4366 |
msgstr ""
|
4367 |
|
4368 |
-
#:
|
4369 |
-
msgid "
|
|
|
4370 |
msgstr ""
|
4371 |
|
4372 |
-
#:
|
4373 |
-
|
4374 |
-
|
4375 |
msgstr ""
|
4376 |
|
4377 |
-
#:
|
4378 |
-
msgid "
|
4379 |
msgstr ""
|
4380 |
|
4381 |
-
#: inc/options/
|
4382 |
-
msgid "
|
4383 |
msgstr ""
|
4384 |
|
4385 |
-
#:
|
4386 |
-
msgid "
|
|
|
|
|
4387 |
msgstr ""
|
4388 |
|
4389 |
-
#:
|
4390 |
-
msgid ""
|
4391 |
-
"This tool will upload files of the selected type to content delivery network "
|
4392 |
-
"provider."
|
4393 |
msgstr ""
|
4394 |
|
4395 |
-
#:
|
4396 |
-
msgid "
|
4397 |
msgstr ""
|
4398 |
|
4399 |
-
#:
|
4400 |
-
|
4401 |
-
msgid "Processed:"
|
4402 |
msgstr ""
|
4403 |
|
4404 |
-
#:
|
4405 |
-
|
4406 |
-
msgid "Status:"
|
4407 |
msgstr ""
|
4408 |
|
4409 |
-
#:
|
4410 |
-
|
4411 |
-
msgid "Time elapsed:"
|
4412 |
msgstr ""
|
4413 |
|
4414 |
-
#:
|
4415 |
-
|
4416 |
-
msgid "Last response:"
|
4417 |
msgstr ""
|
4418 |
|
4419 |
-
#:
|
4420 |
-
|
4421 |
-
msgid "Start"
|
4422 |
msgstr ""
|
4423 |
|
4424 |
-
#:
|
4425 |
-
msgid "
|
4426 |
msgstr ""
|
4427 |
|
4428 |
-
#:
|
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 |
-
#:
|
4435 |
-
msgid "
|
4436 |
msgstr ""
|
4437 |
|
4438 |
-
#:
|
4439 |
-
|
4440 |
-
"
|
4441 |
-
"file"
|
4442 |
msgstr ""
|
4443 |
|
4444 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
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 |
-
#:
|
4463 |
-
msgid "
|
4464 |
msgstr ""
|
4465 |
|
4466 |
-
#:
|
4467 |
-
msgid ""
|
4468 |
-
"all files in the directory with no extension, with all parameter variations."
|
4469 |
msgstr ""
|
4470 |
|
4471 |
-
#:
|
4472 |
-
msgid "
|
4473 |
msgstr ""
|
4474 |
|
4475 |
-
#:
|
4476 |
-
msgid ""
|
4477 |
-
"the specific file (when the file does not have an extension), and without "
|
4478 |
-
"parameters."
|
4479 |
msgstr ""
|
4480 |
|
4481 |
-
#:
|
4482 |
-
msgid "
|
4483 |
msgstr ""
|
4484 |
|
4485 |
-
#:
|
4486 |
-
msgid "
|
4487 |
msgstr ""
|
4488 |
|
4489 |
-
#:
|
4490 |
-
msgid "
|
4491 |
msgstr ""
|
4492 |
|
4493 |
-
#:
|
4494 |
-
msgid "
|
4495 |
msgstr ""
|
4496 |
|
4497 |
-
#:
|
4498 |
-
msgid "
|
4499 |
msgstr ""
|
4500 |
|
4501 |
-
#:
|
4502 |
-
msgid "
|
4503 |
msgstr ""
|
4504 |
|
4505 |
-
#:
|
4506 |
-
|
|
|
|
|
|
|
4507 |
msgstr ""
|
4508 |
|
4509 |
-
#:
|
4510 |
-
|
|
|
|
|
|
|
4511 |
msgstr ""
|
4512 |
|
4513 |
-
#:
|
4514 |
-
|
4515 |
-
msgid "Local Path"
|
4516 |
msgstr ""
|
4517 |
|
4518 |
-
#:
|
4519 |
-
|
4520 |
-
msgid "Remote Path"
|
4521 |
msgstr ""
|
4522 |
|
4523 |
-
#:
|
4524 |
-
|
4525 |
-
|
|
|
4526 |
msgstr ""
|
4527 |
|
4528 |
-
#:
|
4529 |
-
|
4530 |
-
msgid "Date"
|
4531 |
msgstr ""
|
4532 |
|
4533 |
-
#:
|
4534 |
-
msgid "
|
4535 |
msgstr ""
|
4536 |
|
4537 |
-
#:
|
4538 |
-
msgid "
|
4539 |
msgstr ""
|
4540 |
|
4541 |
-
#:
|
4542 |
-
msgid "
|
4543 |
msgstr ""
|
4544 |
|
4545 |
-
#:
|
4546 |
-
msgid "
|
4547 |
msgstr ""
|
4548 |
|
4549 |
-
#:
|
4550 |
-
msgid "
|
|
|
|
|
4551 |
msgstr ""
|
4552 |
|
4553 |
-
#:
|
4554 |
-
msgid "
|
4555 |
msgstr ""
|
4556 |
|
4557 |
-
#:
|
4558 |
-
msgid "
|
|
|
|
|
4559 |
msgstr ""
|
4560 |
|
4561 |
-
#:
|
4562 |
msgid ""
|
4563 |
-
"
|
4564 |
-
"
|
4565 |
-
"
|
4566 |
msgstr ""
|
4567 |
|
4568 |
-
#:
|
4569 |
-
msgid "
|
|
|
|
|
|
|
4570 |
msgstr ""
|
4571 |
|
4572 |
-
#:
|
4573 |
-
msgid "
|
4574 |
msgstr ""
|
4575 |
|
4576 |
-
#:
|
4577 |
-
msgid "
|
4578 |
msgstr ""
|
4579 |
|
4580 |
-
#:
|
4581 |
-
msgid "
|
4582 |
msgstr ""
|
4583 |
|
4584 |
-
#:
|
4585 |
-
msgid "
|
4586 |
msgstr ""
|
4587 |
|
4588 |
-
#:
|
4589 |
-
|
|
|
|
|
|
|
4590 |
msgstr ""
|
4591 |
|
4592 |
-
#:
|
4593 |
-
msgid "
|
4594 |
msgstr ""
|
4595 |
|
4596 |
-
#:
|
4597 |
-
msgid "Unable to
|
4598 |
msgstr ""
|
4599 |
|
4600 |
-
#:
|
4601 |
-
|
|
|
|
|
|
|
|
|
|
|
4602 |
msgstr ""
|
4603 |
|
4604 |
-
#:
|
4605 |
-
|
|
|
|
|
|
|
|
|
|
|
4606 |
msgstr ""
|
4607 |
|
4608 |
-
#:
|
4609 |
-
msgid "
|
4610 |
msgstr ""
|
4611 |
|
4612 |
-
#:
|
4613 |
-
|
4614 |
-
msgid "Status: %s"
|
4615 |
msgstr ""
|
4616 |
|
4617 |
-
#:
|
4618 |
-
|
4619 |
-
msgid "Content Zone: %s"
|
4620 |
msgstr ""
|
4621 |
|
4622 |
-
#:
|
4623 |
-
msgid "
|
4624 |
msgstr ""
|
4625 |
|
4626 |
-
#:
|
4627 |
-
msgid "
|
4628 |
msgstr ""
|
4629 |
|
4630 |
-
#:
|
4631 |
-
msgid "
|
4632 |
msgstr ""
|
4633 |
|
4634 |
-
#:
|
4635 |
-
|
4636 |
-
msgid "<span>Transferred:</span> %s"
|
4637 |
msgstr ""
|
4638 |
|
4639 |
-
#:
|
4640 |
-
|
4641 |
-
msgid "<span>Cache Hits:</span> %d (%d%%)"
|
4642 |
msgstr ""
|
4643 |
|
4644 |
-
#:
|
4645 |
-
|
4646 |
-
msgid "<span>Cache Misses (non-cache hits):</span> %d (%d%%)"
|
4647 |
msgstr ""
|
4648 |
|
4649 |
-
#:
|
4650 |
-
msgid "
|
4651 |
msgstr ""
|
4652 |
|
4653 |
-
#:
|
4654 |
-
msgid "
|
4655 |
msgstr ""
|
4656 |
|
4657 |
-
#:
|
4658 |
-
msgid "
|
4659 |
msgstr ""
|
4660 |
|
4661 |
-
#:
|
4662 |
-
msgid "
|
4663 |
msgstr ""
|
4664 |
|
4665 |
-
#:
|
4666 |
-
#, php-format
|
4667 |
msgid ""
|
4668 |
-
"
|
4669 |
-
"
|
4670 |
msgstr ""
|
4671 |
|
4672 |
-
#:
|
4673 |
-
msgid ""
|
4674 |
-
"Add the MaxCDN content delivery network to increase website speeds "
|
4675 |
-
"dramatically in just a few minutes!"
|
4676 |
msgstr ""
|
4677 |
|
4678 |
-
#:
|
4679 |
-
msgid "
|
4680 |
msgstr ""
|
4681 |
|
4682 |
-
#:
|
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 |
-
#:
|
4689 |
-
msgid "
|
4690 |
msgstr ""
|
4691 |
|
4692 |
-
#:
|
4693 |
-
msgid "
|
4694 |
msgstr ""
|
4695 |
|
4696 |
-
#:
|
4697 |
msgid ""
|
4698 |
-
"
|
4699 |
-
"
|
4700 |
msgstr ""
|
4701 |
|
4702 |
-
#:
|
4703 |
-
msgid ""
|
4704 |
-
"You have no zone connected with this site. Click button to create a default "
|
4705 |
-
"zone."
|
4706 |
msgstr ""
|
4707 |
|
4708 |
-
#:
|
4709 |
-
|
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 |
-
#:
|
4716 |
-
msgid ""
|
4717 |
-
"Once you've signed up or if you're an existing NetDNA customer, to enable "
|
4718 |
-
"CDN:"
|
4719 |
msgstr ""
|
4720 |
|
4721 |
-
#:
|
4722 |
-
msgid "
|
4723 |
msgstr ""
|
4724 |
|
4725 |
-
#:
|
4726 |
-
msgid "
|
4727 |
msgstr ""
|
4728 |
|
4729 |
-
#:
|
4730 |
-
msgid "
|
4731 |
msgstr ""
|
4732 |
|
4733 |
-
#:
|
4734 |
-
msgid "
|
4735 |
msgstr ""
|
4736 |
|
4737 |
-
#:
|
4738 |
-
|
4739 |
-
msgid "Not enough data"
|
4740 |
msgstr ""
|
4741 |
|
4742 |
-
#:
|
4743 |
-
#:
|
4744 |
-
msgid "
|
4745 |
msgstr ""
|
4746 |
|
4747 |
-
#:
|
4748 |
-
|
|
|
4749 |
msgstr ""
|
4750 |
|
4751 |
-
#: inc/
|
4752 |
-
|
|
|
4753 |
msgstr ""
|
4754 |
|
4755 |
-
#:
|
4756 |
-
msgid "
|
|
|
|
|
|
|
4757 |
msgstr ""
|
4758 |
|
4759 |
-
#:
|
4760 |
-
msgid "
|
|
|
|
|
|
|
4761 |
msgstr ""
|
4762 |
|
4763 |
-
#:
|
4764 |
-
msgid "
|
|
|
|
|
4765 |
msgstr ""
|
4766 |
|
4767 |
-
#:
|
4768 |
-
msgid "
|
4769 |
msgstr ""
|
4770 |
|
4771 |
-
#:
|
4772 |
-
msgid "
|
4773 |
msgstr ""
|
4774 |
|
4775 |
-
#:
|
4776 |
-
msgid "
|
4777 |
msgstr ""
|
4778 |
|
4779 |
-
#:
|
4780 |
-
msgid "
|
4781 |
msgstr ""
|
4782 |
|
4783 |
-
#:
|
4784 |
-
|
4785 |
-
msgid "Performance Optimization %s by W3 EDGE"
|
4786 |
msgstr ""
|
4787 |
|
4788 |
-
#:
|
4789 |
-
|
4790 |
-
|
|
|
4791 |
msgstr ""
|
4792 |
|
4793 |
-
#:
|
4794 |
-
msgid "
|
|
|
|
|
4795 |
msgstr ""
|
4796 |
|
4797 |
-
#:
|
4798 |
-
msgid "
|
4799 |
msgstr ""
|
4800 |
|
4801 |
-
#:
|
4802 |
-
msgid "
|
4803 |
msgstr ""
|
4804 |
|
4805 |
-
#:
|
4806 |
-
|
|
|
4807 |
msgstr ""
|
4808 |
|
4809 |
-
#:
|
4810 |
-
msgid "
|
|
|
|
|
4811 |
msgstr ""
|
4812 |
|
4813 |
-
#:
|
4814 |
-
msgid "
|
|
|
|
|
|
|
4815 |
msgstr ""
|
4816 |
|
4817 |
-
#:
|
4818 |
-
msgid "
|
|
|
|
|
4819 |
msgstr ""
|
4820 |
|
4821 |
-
#:
|
4822 |
-
msgid "
|
|
|
4823 |
msgstr ""
|
4824 |
|
4825 |
-
#:
|
4826 |
-
msgid "
|
|
|
4827 |
msgstr ""
|
4828 |
|
4829 |
-
#:
|
4830 |
-
msgid "
|
4831 |
msgstr ""
|
4832 |
|
4833 |
-
#:
|
4834 |
-
|
4835 |
-
|
|
|
4836 |
msgstr ""
|
4837 |
|
4838 |
-
#:
|
4839 |
-
|
4840 |
-
|
|
|
4841 |
msgstr ""
|
4842 |
|
4843 |
-
#:
|
4844 |
-
msgid "
|
|
|
|
|
4845 |
msgstr ""
|
4846 |
|
4847 |
-
#:
|
4848 |
-
msgid "
|
|
|
|
|
4849 |
msgstr ""
|
4850 |
|
4851 |
-
#:
|
4852 |
-
|
4853 |
-
|
4854 |
msgstr ""
|
4855 |
|
4856 |
-
#:
|
4857 |
-
msgid "
|
|
|
|
|
4858 |
msgstr ""
|
4859 |
|
4860 |
-
#:
|
4861 |
-
msgid "
|
|
|
|
|
4862 |
msgstr ""
|
4863 |
|
4864 |
-
#:
|
4865 |
-
msgid "
|
|
|
4866 |
msgstr ""
|
4867 |
|
4868 |
-
#:
|
4869 |
-
msgid "
|
|
|
4870 |
msgstr ""
|
4871 |
|
4872 |
-
#:
|
4873 |
-
msgid "
|
|
|
|
|
4874 |
msgstr ""
|
4875 |
|
4876 |
-
#:
|
4877 |
-
msgid "
|
|
|
|
|
4878 |
msgstr ""
|
4879 |
|
4880 |
-
#:
|
4881 |
-
msgid "
|
|
|
|
|
4882 |
msgstr ""
|
4883 |
|
4884 |
-
#:
|
4885 |
-
msgid "
|
|
|
|
|
4886 |
msgstr ""
|
4887 |
|
4888 |
-
#:
|
4889 |
-
|
4890 |
-
|
|
|
4891 |
msgstr ""
|
4892 |
|
4893 |
-
#:
|
4894 |
-
msgid "
|
|
|
|
|
4895 |
msgstr ""
|
4896 |
|
4897 |
-
#:
|
4898 |
-
msgid "
|
|
|
|
|
4899 |
msgstr ""
|
4900 |
|
4901 |
-
#:
|
4902 |
-
msgid "
|
|
|
|
|
4903 |
msgstr ""
|
4904 |
|
4905 |
-
#:
|
4906 |
-
|
4907 |
-
#, php-format
|
4908 |
-
msgid "Error: %s"
|
4909 |
msgstr ""
|
4910 |
|
4911 |
-
#:
|
4912 |
-
msgid "
|
|
|
|
|
4913 |
msgstr ""
|
4914 |
|
4915 |
-
#:
|
4916 |
-
msgid "
|
|
|
|
|
4917 |
msgstr ""
|
4918 |
|
4919 |
-
#:
|
4920 |
-
msgid "
|
|
|
4921 |
msgstr ""
|
4922 |
|
4923 |
-
#:
|
4924 |
-
|
|
|
4925 |
msgstr ""
|
4926 |
|
4927 |
-
#:
|
4928 |
-
msgid "
|
|
|
|
|
|
|
4929 |
msgstr ""
|
4930 |
|
4931 |
-
#:
|
4932 |
-
#, php-format
|
4933 |
msgid ""
|
4934 |
-
"
|
4935 |
-
"
|
4936 |
msgstr ""
|
4937 |
|
4938 |
-
#:
|
4939 |
-
msgid "
|
|
|
|
|
|
|
4940 |
msgstr ""
|
4941 |
|
4942 |
-
#:
|
4943 |
msgid ""
|
4944 |
-
"
|
|
|
4945 |
msgstr ""
|
4946 |
|
4947 |
-
#:
|
4948 |
-
#, php-format
|
4949 |
msgid ""
|
4950 |
-
"
|
4951 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4952 |
msgstr ""
|
4953 |
|
4954 |
-
#:
|
4955 |
-
|
4956 |
-
msgid "
|
4957 |
msgstr ""
|
4958 |
|
4959 |
-
#:
|
4960 |
-
msgid "
|
4961 |
msgstr ""
|
4962 |
|
4963 |
-
#:
|
4964 |
-
|
|
|
4965 |
msgstr ""
|
4966 |
|
4967 |
-
#:
|
4968 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4969 |
msgstr ""
|
4970 |
|
4971 |
-
#:
|
4972 |
-
|
4973 |
-
msgid "Submit a Bug Report"
|
4974 |
msgstr ""
|
4975 |
|
4976 |
-
#:
|
4977 |
-
|
4978 |
-
msgid "Suggest a New Feature"
|
4979 |
msgstr ""
|
4980 |
|
4981 |
-
#:
|
4982 |
-
|
4983 |
-
msgid "Less than 15 Minute Email Support Response (M-F 9AM - 5PM EDT): $75 USD"
|
4984 |
msgstr ""
|
4985 |
|
4986 |
-
#:
|
4987 |
-
#: lib/W3/UI/SupportAdminView.php:64
|
4988 |
msgid ""
|
4989 |
-
"
|
|
|
|
|
|
|
|
|
4990 |
msgstr ""
|
4991 |
|
4992 |
-
#:
|
4993 |
-
|
4994 |
-
msgid "Professional Plugin Configuration: Starting @ $100 USD"
|
4995 |
msgstr ""
|
4996 |
|
4997 |
-
#:
|
4998 |
-
|
4999 |
-
msgid ""
|
5000 |
-
"Theme Performance Optimization & Plugin Configuration: Starting @ $150 USD"
|
5001 |
msgstr ""
|
5002 |
|
5003 |
-
#:
|
5004 |
-
|
5005 |
-
msgid "Linux Server Optimization & Plugin Configuration: Starting @ $200 USD"
|
5006 |
msgstr ""
|
5007 |
|
5008 |
-
#:
|
5009 |
-
msgid "
|
|
|
|
|
|
|
|
|
5010 |
msgstr ""
|
5011 |
|
5012 |
-
#:
|
5013 |
-
msgid "
|
5014 |
msgstr ""
|
5015 |
|
5016 |
-
#:
|
5017 |
-
msgid "
|
5018 |
msgstr ""
|
5019 |
|
5020 |
-
#:
|
5021 |
-
msgid "
|
5022 |
msgstr ""
|
5023 |
|
5024 |
-
#:
|
5025 |
-
msgid "
|
5026 |
msgstr ""
|
5027 |
|
5028 |
-
#:
|
5029 |
-
msgid ""
|
5030 |
-
"The following plugins are not compatible with W3 Total Cache and will cause "
|
5031 |
-
"unintended results:"
|
5032 |
msgstr ""
|
5033 |
|
5034 |
-
#:
|
5035 |
-
msgid "
|
5036 |
msgstr ""
|
5037 |
|
5038 |
-
#:
|
5039 |
-
msgid "
|
5040 |
msgstr ""
|
5041 |
|
5042 |
-
#:
|
5043 |
-
msgid "
|
5044 |
msgstr ""
|
5045 |
|
5046 |
-
#:
|
5047 |
-
|
5048 |
-
msgid "Constructor error (%s)."
|
5049 |
msgstr ""
|
5050 |
|
5051 |
-
#:
|
5052 |
-
msgid "
|
5053 |
msgstr ""
|
5054 |
|
5055 |
-
#:
|
5056 |
-
|
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 |
-
#:
|
5064 |
-
msgid "
|
5065 |
msgstr ""
|
5066 |
|
5067 |
-
#:
|
5068 |
-
msgid "
|
5069 |
msgstr ""
|
5070 |
|
5071 |
-
#:
|
5072 |
-
msgid "
|
|
|
|
|
5073 |
msgstr ""
|
5074 |
|
5075 |
-
#:
|
5076 |
-
msgid "
|
5077 |
msgstr ""
|
5078 |
|
5079 |
-
#:
|
5080 |
-
|
|
|
|
|
|
|
5081 |
msgstr ""
|
5082 |
|
5083 |
-
#:
|
5084 |
-
msgid "
|
5085 |
msgstr ""
|
5086 |
|
5087 |
-
#:
|
5088 |
-
msgid "
|
5089 |
msgstr ""
|
5090 |
|
5091 |
-
#:
|
5092 |
-
msgid "
|
5093 |
msgstr ""
|
5094 |
|
5095 |
-
#:
|
5096 |
-
|
|
|
|
|
|
|
5097 |
msgstr ""
|
5098 |
|
5099 |
-
#:
|
5100 |
-
msgid "
|
5101 |
msgstr ""
|
5102 |
|
5103 |
-
#:
|
5104 |
-
|
5105 |
-
#, php-format
|
5106 |
-
msgid "No zones match site: %s."
|
5107 |
msgstr ""
|
5108 |
|
5109 |
-
#:
|
5110 |
-
|
5111 |
-
msgid "No zones match site: %s or %s."
|
5112 |
msgstr ""
|
5113 |
|
5114 |
-
#:
|
5115 |
#, php-format
|
5116 |
msgid ""
|
5117 |
-
"
|
5118 |
-
"
|
5119 |
msgstr ""
|
5120 |
|
5121 |
-
#:
|
5122 |
-
|
5123 |
-
msgid "Failed with error code "
|
5124 |
msgstr ""
|
5125 |
|
5126 |
-
#:
|
5127 |
-
|
5128 |
-
msgid "No registered CNAMEs match %s."
|
5129 |
msgstr ""
|
5130 |
|
5131 |
-
#:
|
5132 |
-
#: lib/W3/Cdn/Mirror/Netdna.php:253
|
5133 |
-
#, php-format
|
5134 |
msgid ""
|
5135 |
-
"
|
5136 |
-
"
|
5137 |
msgstr ""
|
5138 |
|
5139 |
-
#:
|
5140 |
-
msgid "
|
|
|
|
|
5141 |
msgstr ""
|
5142 |
|
5143 |
-
#:
|
5144 |
-
msgid "
|
|
|
|
|
5145 |
msgstr ""
|
5146 |
|
5147 |
-
#:
|
5148 |
-
msgid "
|
|
|
|
|
5149 |
msgstr ""
|
5150 |
|
5151 |
-
#:
|
5152 |
-
msgid "
|
|
|
|
|
|
|
5153 |
msgstr ""
|
5154 |
|
5155 |
-
#:
|
5156 |
-
msgid "
|
|
|
|
|
5157 |
msgstr ""
|
5158 |
|
5159 |
-
#:
|
5160 |
-
msgid "
|
|
|
|
|
5161 |
msgstr ""
|
5162 |
|
5163 |
-
#:
|
5164 |
-
msgid "
|
|
|
|
|
|
|
5165 |
msgstr ""
|
5166 |
|
5167 |
-
#:
|
5168 |
-
msgid "
|
5169 |
msgstr ""
|
5170 |
|
5171 |
-
#: lib/
|
5172 |
-
msgid "
|
5173 |
msgstr ""
|
5174 |
|
5175 |
-
#: lib/
|
5176 |
-
msgid "
|
5177 |
msgstr ""
|
5178 |
|
5179 |
-
#: lib/
|
5180 |
-
msgid "
|
5181 |
msgstr ""
|
5182 |
|
5183 |
-
#: lib/
|
5184 |
-
msgid "
|
5185 |
msgstr ""
|
5186 |
|
5187 |
-
#: lib/
|
5188 |
-
msgid "
|
5189 |
msgstr ""
|
5190 |
|
5191 |
-
#: lib/
|
5192 |
-
msgid "
|
5193 |
msgstr ""
|
5194 |
|
5195 |
-
#:
|
5196 |
-
msgid "
|
5197 |
msgstr ""
|
5198 |
|
5199 |
-
#:
|
5200 |
-
|
5201 |
-
|
|
|
5202 |
msgstr ""
|
5203 |
|
5204 |
-
#:
|
5205 |
-
msgid "
|
|
|
|
|
5206 |
msgstr ""
|
5207 |
|
5208 |
-
#:
|
5209 |
-
|
5210 |
-
msgid "
|
5211 |
msgstr ""
|
5212 |
|
5213 |
-
#:
|
5214 |
-
|
|
|
|
|
5215 |
msgstr ""
|
5216 |
|
5217 |
-
#:
|
5218 |
-
|
|
|
|
|
5219 |
msgstr ""
|
5220 |
|
5221 |
-
#:
|
5222 |
-
|
5223 |
-
msgid "Files did not successfully reload with error %s"
|
5224 |
msgstr ""
|
5225 |
|
5226 |
-
#:
|
5227 |
-
msgid "
|
5228 |
msgstr ""
|
5229 |
|
5230 |
-
#:
|
5231 |
-
msgid "
|
5232 |
msgstr ""
|
5233 |
|
5234 |
-
#:
|
5235 |
-
msgid "
|
5236 |
msgstr ""
|
5237 |
|
5238 |
-
#:
|
5239 |
-
|
5240 |
-
|
|
|
5241 |
msgstr ""
|
5242 |
|
5243 |
-
#:
|
5244 |
-
|
|
|
5245 |
msgstr ""
|
5246 |
|
5247 |
-
#:
|
5248 |
-
msgid "
|
5249 |
msgstr ""
|
5250 |
|
5251 |
-
#:
|
5252 |
-
|
5253 |
-
msgid "PageCache Garbage cleanup did not start with error %s"
|
5254 |
msgstr ""
|
5255 |
|
5256 |
-
#:
|
5257 |
-
msgid "
|
5258 |
msgstr ""
|
5259 |
|
5260 |
-
#:
|
5261 |
-
msgid "
|
5262 |
msgstr ""
|
5263 |
|
5264 |
-
#:
|
5265 |
-
msgid "
|
|
|
|
|
5266 |
msgstr ""
|
5267 |
|
5268 |
-
#:
|
5269 |
-
msgid "
|
|
|
|
|
|
|
5270 |
msgstr ""
|
5271 |
|
5272 |
-
#:
|
5273 |
-
msgid "
|
|
|
|
|
5274 |
msgstr ""
|
5275 |
|
5276 |
-
#:
|
5277 |
-
msgid "
|
5278 |
msgstr ""
|
5279 |
|
5280 |
-
#:
|
5281 |
-
msgid "
|
5282 |
msgstr ""
|
5283 |
|
5284 |
-
#:
|
5285 |
-
msgid "
|
5286 |
msgstr ""
|
5287 |
|
5288 |
-
#:
|
5289 |
-
|
|
|
|
|
|
|
5290 |
msgstr ""
|
5291 |
|
5292 |
-
#:
|
5293 |
-
|
|
|
5294 |
msgstr ""
|
5295 |
|
5296 |
-
#:
|
5297 |
-
msgid "
|
5298 |
msgstr ""
|
5299 |
|
5300 |
-
#:
|
5301 |
-
msgid "
|
|
|
|
|
5302 |
msgstr ""
|
5303 |
|
5304 |
-
#:
|
5305 |
-
msgid "
|
5306 |
msgstr ""
|
5307 |
|
5308 |
-
#:
|
5309 |
-
msgid "
|
5310 |
msgstr ""
|
5311 |
|
5312 |
-
#:
|
5313 |
-
|
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 |
-
#:
|
5320 |
-
msgid "
|
5321 |
msgstr ""
|
5322 |
|
5323 |
-
#:
|
5324 |
-
|
5325 |
-
msgid "<strong>ERROR</strong>: WordPress %s requires MySQL 4.1.2 or higher"
|
5326 |
msgstr ""
|
5327 |
|
5328 |
-
#:
|
5329 |
-
|
5330 |
-
|
|
|
5331 |
msgstr ""
|
5332 |
|
5333 |
-
#:
|
5334 |
-
#, php-format
|
5335 |
msgid ""
|
5336 |
-
"
|
5337 |
-
"
|
5338 |
-
"
|
5339 |
msgstr ""
|
5340 |
|
5341 |
-
#:
|
5342 |
-
|
5343 |
-
|
|
|
5344 |
msgstr ""
|
5345 |
|
5346 |
-
#:
|
5347 |
-
|
5348 |
-
msgid "The W3 Total Cache license key has expired. Please renew it: %s"
|
5349 |
msgstr ""
|
5350 |
|
5351 |
-
#:
|
5352 |
-
msgid "
|
5353 |
msgstr ""
|
5354 |
|
5355 |
-
#:
|
5356 |
-
msgid "
|
5357 |
msgstr ""
|
5358 |
|
5359 |
-
#:
|
5360 |
-
msgid "
|
|
|
|
|
|
|
5361 |
msgstr ""
|
5362 |
|
5363 |
-
#:
|
5364 |
-
msgid "
|
5365 |
msgstr ""
|
5366 |
|
5367 |
-
#:
|
5368 |
-
|
|
|
|
|
|
|
|
|
5369 |
msgstr ""
|
5370 |
|
5371 |
-
#:
|
5372 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
5373 |
msgstr ""
|
5374 |
|
5375 |
-
#:
|
5376 |
-
msgid "
|
5377 |
msgstr ""
|
5378 |
|
5379 |
-
#:
|
5380 |
-
msgid "
|
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 |
-
#:
|
5388 |
-
msgid "
|
|
|
5389 |
msgstr ""
|
5390 |
|
5391 |
-
#:
|
5392 |
-
msgid "
|
5393 |
msgstr ""
|
5394 |
|
5395 |
-
#:
|
5396 |
-
msgid "
|
5397 |
msgstr ""
|
5398 |
|
5399 |
-
#:
|
5400 |
-
msgid "
|
5401 |
msgstr ""
|
5402 |
|
5403 |
-
#:
|
5404 |
-
msgid "
|
5405 |
msgstr ""
|
5406 |
|
5407 |
-
#:
|
5408 |
-
msgid "
|
5409 |
msgstr ""
|
5410 |
|
5411 |
-
#:
|
5412 |
-
msgid "
|
5413 |
msgstr ""
|
5414 |
|
5415 |
-
#:
|
5416 |
-
msgid "
|
5417 |
msgstr ""
|
5418 |
|
5419 |
-
#:
|
5420 |
-
msgid "
|
5421 |
msgstr ""
|
5422 |
|
5423 |
-
#:
|
5424 |
-
msgid "
|
5425 |
msgstr ""
|
5426 |
|
5427 |
-
#:
|
5428 |
-
msgid "
|
5429 |
msgstr ""
|
5430 |
|
5431 |
-
#:
|
5432 |
-
msgid "
|
5433 |
msgstr ""
|
5434 |
|
5435 |
-
#:
|
5436 |
-
|
5437 |
-
msgid "Not supported: %s. Supported versions are %s."
|
5438 |
msgstr ""
|
5439 |
|
5440 |
-
#:
|
5441 |
-
msgid "
|
5442 |
msgstr ""
|
5443 |
|
5444 |
-
#:
|
5445 |
-
|
5446 |
-
msgid "Not Supported. (%s %s See %s page.)"
|
5447 |
msgstr ""
|
5448 |
|
5449 |
-
#:
|
5450 |
-
msgid "
|
5451 |
msgstr ""
|
5452 |
|
5453 |
-
#:
|
5454 |
-
msgid "
|
|
|
|
|
5455 |
msgstr ""
|
5456 |
|
5457 |
-
#:
|
5458 |
-
msgid "
|
5459 |
msgstr ""
|
5460 |
|
5461 |
-
#:
|
5462 |
-
msgid "
|
5463 |
msgstr ""
|
5464 |
|
5465 |
-
#:
|
5466 |
-
msgid "
|
5467 |
msgstr ""
|
5468 |
|
5469 |
-
#:
|
5470 |
-
msgid "
|
|
|
|
|
5471 |
msgstr ""
|
5472 |
|
5473 |
-
#:
|
5474 |
-
msgid "
|
5475 |
msgstr ""
|
5476 |
|
5477 |
-
#:
|
5478 |
-
|
5479 |
-
msgid ""
|
5480 |
-
"Configured license key does not match license key(s) in account: <br />%s "
|
5481 |
-
"<br />%s"
|
5482 |
msgstr ""
|
5483 |
|
5484 |
-
#:
|
5485 |
-
msgid "
|
5486 |
msgstr ""
|
5487 |
|
5488 |
-
#:
|
5489 |
-
msgid "
|
5490 |
msgstr ""
|
5491 |
|
5492 |
-
#:
|
5493 |
-
msgid "
|
5494 |
msgstr ""
|
5495 |
|
5496 |
-
#:
|
5497 |
-
|
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 |
-
#:
|
5505 |
-
|
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 |
-
#:
|
5513 |
-
|
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 |
-
#:
|
5521 |
-
#, php-format
|
5522 |
msgid ""
|
5523 |
-
"
|
5524 |
-
"
|
5525 |
-
"
|
5526 |
msgstr ""
|
5527 |
|
5528 |
-
#:
|
5529 |
-
|
5530 |
-
msgid ""
|
5531 |
-
"Edit file <strong>%s</strong> and add the following rules above the "
|
5532 |
-
"WordPress\n"
|
5533 |
-
" directives:"
|
5534 |
msgstr ""
|
5535 |
|
5536 |
-
#:
|
5537 |
-
msgid "
|
5538 |
msgstr ""
|
5539 |
|
5540 |
-
#:
|
5541 |
-
msgid "
|
5542 |
msgstr ""
|
5543 |
|
5544 |
-
#:
|
5545 |
-
msgid "
|
5546 |
msgstr ""
|
5547 |
|
5548 |
-
#:
|
5549 |
-
|
|
|
5550 |
msgstr ""
|
5551 |
|
5552 |
-
#:
|
5553 |
-
msgid "
|
5554 |
msgstr ""
|
5555 |
|
5556 |
-
#:
|
5557 |
-
msgid "
|
5558 |
msgstr ""
|
5559 |
|
5560 |
-
#:
|
5561 |
-
msgid "
|
5562 |
msgstr ""
|
5563 |
|
5564 |
-
#:
|
5565 |
-
|
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 |
-
#:
|
5576 |
-
msgid "
|
5577 |
msgstr ""
|
5578 |
|
5579 |
-
#:
|
5580 |
-
msgid "
|
5581 |
msgstr ""
|
5582 |
|
5583 |
-
#:
|
5584 |
-
msgid "
|
5585 |
msgstr ""
|
5586 |
|
5587 |
-
#:
|
5588 |
-
msgid ""
|
5589 |
-
"New Relic is not running correctly. The plugin has detected the following "
|
5590 |
-
"issues:"
|
5591 |
msgstr ""
|
5592 |
|
5593 |
-
#:
|
5594 |
-
|
5595 |
-
msgid "Please review the <a href=\"%s\">settings</a>."
|
5596 |
msgstr ""
|
5597 |
|
5598 |
-
#:
|
5599 |
-
|
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 |
-
#:
|
5609 |
-
msgid "
|
5610 |
msgstr ""
|
5611 |
|
5612 |
-
#:
|
5613 |
-
msgid "
|
5614 |
msgstr ""
|
5615 |
|
5616 |
-
#:
|
5617 |
-
msgid "
|
5618 |
msgstr ""
|
5619 |
|
5620 |
-
#:
|
5621 |
-
msgid "
|
5622 |
msgstr ""
|
5623 |
|
5624 |
-
#:
|
5625 |
-
msgid "
|
5626 |
msgstr ""
|
5627 |
|
5628 |
-
#:
|
5629 |
-
msgid "
|
5630 |
msgstr ""
|
5631 |
|
5632 |
-
#:
|
5633 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
5634 |
msgstr ""
|
5635 |
|
5636 |
-
#:
|
5637 |
-
msgid "
|
5638 |
msgstr ""
|
5639 |
|
5640 |
-
#:
|
5641 |
-
|
|
|
5642 |
msgstr ""
|
5643 |
|
5644 |
-
#:
|
5645 |
-
msgid "
|
5646 |
msgstr ""
|
5647 |
|
5648 |
-
#:
|
5649 |
-
msgid "
|
|
|
|
|
|
|
|
|
5650 |
msgstr ""
|
5651 |
|
5652 |
-
#:
|
5653 |
-
msgid "
|
5654 |
msgstr ""
|
5655 |
|
5656 |
-
#:
|
5657 |
-
msgid "
|
|
|
|
|
5658 |
msgstr ""
|
5659 |
|
5660 |
-
#:
|
5661 |
-
msgid "
|
|
|
|
|
|
|
5662 |
msgstr ""
|
5663 |
|
5664 |
-
#:
|
5665 |
-
msgid "
|
|
|
|
|
5666 |
msgstr ""
|
5667 |
|
5668 |
-
|
5669 |
-
|
|
|
|
|
5670 |
msgstr ""
|
5671 |
|
5672 |
-
#:
|
5673 |
-
msgid "
|
5674 |
msgstr ""
|
5675 |
|
5676 |
-
#:
|
5677 |
-
|
|
|
5678 |
msgstr ""
|
5679 |
|
5680 |
-
#:
|
5681 |
-
|
5682 |
-
msgid "Minified using %s%s"
|
5683 |
msgstr ""
|
5684 |
|
5685 |
-
#:
|
5686 |
-
|
5687 |
-
|
5688 |
msgstr ""
|
5689 |
|
5690 |
-
#:
|
5691 |
#, php-format
|
5692 |
-
msgid "
|
|
|
|
|
|
|
5693 |
msgstr ""
|
5694 |
|
5695 |
-
#:
|
5696 |
-
|
5697 |
-
|
|
|
|
|
5698 |
msgstr ""
|
5699 |
|
5700 |
-
#:
|
5701 |
-
|
5702 |
-
msgid "Object Caching %d/%d objects using %s%s"
|
5703 |
msgstr ""
|
5704 |
|
5705 |
-
#:
|
5706 |
-
|
5707 |
-
msgid "Fragment Caching %d/%d fragments using %s%s"
|
5708 |
msgstr ""
|
5709 |
|
5710 |
-
#:
|
5711 |
-
|
5712 |
-
msgid "Content Delivery Network via %s%s"
|
5713 |
msgstr ""
|
5714 |
|
5715 |
-
#:
|
5716 |
-
|
5717 |
-
msgid "
|
5718 |
msgstr ""
|
5719 |
|
5720 |
-
#:
|
5721 |
-
msgid "
|
|
|
5722 |
msgstr ""
|
5723 |
|
5724 |
-
#:
|
5725 |
-
msgid "
|
5726 |
msgstr ""
|
5727 |
|
5728 |
-
#:
|
5729 |
-
msgid "
|
5730 |
msgstr ""
|
5731 |
|
5732 |
-
#:
|
5733 |
-
msgid "
|
5734 |
msgstr ""
|
5735 |
|
5736 |
-
#:
|
5737 |
-
#, php-format
|
5738 |
msgid ""
|
5739 |
-
"
|
5740 |
-
"
|
5741 |
msgstr ""
|
5742 |
|
5743 |
-
#:
|
5744 |
-
|
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 |
-
#:
|
5751 |
-
msgid "
|
5752 |
msgstr ""
|
5753 |
|
5754 |
-
#:
|
5755 |
msgid ""
|
5756 |
-
"
|
5757 |
-
"Resource Locator\">URL</acronym> field."
|
5758 |
msgstr ""
|
5759 |
|
5760 |
-
#:
|
5761 |
-
msgid "
|
|
|
|
|
5762 |
msgstr ""
|
5763 |
|
5764 |
-
#:
|
5765 |
-
msgid "
|
|
|
|
|
|
|
5766 |
msgstr ""
|
5767 |
|
5768 |
-
#:
|
5769 |
-
msgid "
|
5770 |
msgstr ""
|
5771 |
|
5772 |
-
#:
|
5773 |
-
msgid "
|
|
|
|
|
|
|
5774 |
msgstr ""
|
5775 |
|
5776 |
-
#:
|
5777 |
-
msgid "
|
5778 |
msgstr ""
|
5779 |
|
5780 |
-
#:
|
5781 |
msgid ""
|
5782 |
-
"
|
5783 |
-
"
|
|
|
5784 |
msgstr ""
|
5785 |
|
5786 |
-
#:
|
5787 |
-
msgid "
|
5788 |
msgstr ""
|
5789 |
|
5790 |
-
#:
|
5791 |
msgid ""
|
5792 |
-
"
|
5793 |
-
"
|
|
|
5794 |
msgstr ""
|
5795 |
|
5796 |
-
#:
|
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 |
-
#:
|
5804 |
msgid ""
|
5805 |
-
"
|
5806 |
-
"
|
5807 |
-
"\"
|
5808 |
msgstr ""
|
5809 |
|
5810 |
-
#:
|
5811 |
-
msgid "
|
5812 |
msgstr ""
|
5813 |
|
5814 |
-
#:
|
5815 |
-
msgid "
|
|
|
|
|
5816 |
msgstr ""
|
5817 |
|
5818 |
-
#:
|
5819 |
-
msgid "
|
|
|
|
|
5820 |
msgstr ""
|
5821 |
|
5822 |
-
#:
|
5823 |
-
msgid "Configuration
|
5824 |
msgstr ""
|
5825 |
|
5826 |
-
#:
|
5827 |
-
#, php-format
|
5828 |
msgid ""
|
5829 |
-
"
|
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 |
-
#:
|
5838 |
-
msgid "
|
|
|
|
|
5839 |
msgstr ""
|
5840 |
|
5841 |
-
#:
|
5842 |
-
msgid "
|
5843 |
msgstr ""
|
5844 |
|
5845 |
-
#:
|
5846 |
-
|
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 |
-
#:
|
5855 |
-
#, php-format
|
5856 |
msgid ""
|
5857 |
-
"<
|
5858 |
-
"
|
5859 |
-
"
|
5860 |
-
"settings.php');</strong>."
|
5861 |
msgstr ""
|
5862 |
|
5863 |
-
#:
|
5864 |
-
msgid "
|
5865 |
msgstr ""
|
5866 |
|
5867 |
-
#:
|
5868 |
-
msgid "
|
5869 |
msgstr ""
|
5870 |
|
5871 |
-
#:
|
5872 |
-
msgid "
|
5873 |
msgstr ""
|
5874 |
|
5875 |
-
#:
|
5876 |
-
msgid "
|
5877 |
msgstr ""
|
5878 |
|
5879 |
-
#:
|
5880 |
-
msgid "
|
|
|
|
|
5881 |
msgstr ""
|
5882 |
|
5883 |
-
#:
|
5884 |
-
msgid "
|
|
|
|
|
5885 |
msgstr ""
|
5886 |
|
5887 |
-
#:
|
5888 |
-
msgid "
|
|
|
|
|
5889 |
msgstr ""
|
5890 |
|
5891 |
-
#:
|
5892 |
-
msgid "
|
|
|
|
|
5893 |
msgstr ""
|
5894 |
|
5895 |
-
#:
|
5896 |
-
msgid "
|
|
|
|
|
5897 |
msgstr ""
|
5898 |
|
5899 |
-
#:
|
5900 |
-
msgid "
|
|
|
|
|
5901 |
msgstr ""
|
5902 |
|
5903 |
-
#:
|
5904 |
-
msgid "
|
|
|
|
|
5905 |
msgstr ""
|
5906 |
|
5907 |
-
#:
|
5908 |
-
msgid "
|
|
|
|
|
|
|
|
|
5909 |
msgstr ""
|
5910 |
|
5911 |
-
#:
|
5912 |
-
msgid "
|
|
|
|
|
|
|
5913 |
msgstr ""
|
5914 |
|
5915 |
-
#:
|
5916 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
5917 |
msgstr ""
|
5918 |
|
5919 |
-
#:
|
5920 |
-
msgid "
|
5921 |
msgstr ""
|
5922 |
|
5923 |
-
#:
|
5924 |
-
msgid "
|
5925 |
msgstr ""
|
5926 |
|
5927 |
-
#:
|
5928 |
-
msgid "
|
|
|
|
|
|
|
5929 |
msgstr ""
|
5930 |
|
5931 |
-
#:
|
5932 |
-
msgid "
|
5933 |
msgstr ""
|
5934 |
|
5935 |
-
#:
|
5936 |
-
msgid "
|
|
|
|
|
5937 |
msgstr ""
|
5938 |
|
5939 |
-
#:
|
5940 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5941 |
msgstr ""
|
5942 |
|
5943 |
-
#:
|
|
|
5944 |
msgid ""
|
5945 |
-
"
|
5946 |
-
"
|
|
|
|
|
5947 |
msgstr ""
|
5948 |
|
5949 |
-
#:
|
5950 |
-
msgid "
|
5951 |
msgstr ""
|
5952 |
|
5953 |
-
#:
|
5954 |
-
msgid "
|
5955 |
msgstr ""
|
5956 |
|
5957 |
-
#:
|
5958 |
-
msgid "
|
|
|
|
|
5959 |
msgstr ""
|
5960 |
|
5961 |
-
#:
|
5962 |
-
msgid "
|
5963 |
msgstr ""
|
5964 |
|
5965 |
-
#:
|
5966 |
-
msgid "
|
5967 |
msgstr ""
|
5968 |
|
5969 |
-
#:
|
5970 |
-
msgid "
|
5971 |
msgstr ""
|
5972 |
|
5973 |
-
#:
|
5974 |
-
msgid "
|
5975 |
msgstr ""
|
5976 |
|
5977 |
-
#:
|
5978 |
-
msgid "
|
5979 |
msgstr ""
|
5980 |
|
5981 |
-
#:
|
5982 |
-
msgid "
|
5983 |
msgstr ""
|
5984 |
|
5985 |
-
#:
|
5986 |
-
msgid "
|
5987 |
msgstr ""
|
5988 |
|
5989 |
-
#:
|
5990 |
-
msgid "
|
5991 |
msgstr ""
|
5992 |
|
5993 |
-
#:
|
5994 |
-
|
5995 |
-
msgid "check the %s to maintain the desired user experience"
|
5996 |
msgstr ""
|
5997 |
|
5998 |
-
#:
|
5999 |
-
msgid "
|
6000 |
msgstr ""
|
6001 |
|
6002 |
-
#:
|
6003 |
-
|
6004 |
-
|
|
|
6005 |
msgstr ""
|
6006 |
|
6007 |
-
#:
|
6008 |
-
|
6009 |
-
|
6010 |
msgstr ""
|
6011 |
|
6012 |
-
#:
|
6013 |
-
#, php-format
|
6014 |
msgid ""
|
6015 |
-
"
|
6016 |
-
"
|
|
|
|
|
6017 |
msgstr ""
|
6018 |
|
6019 |
-
#:
|
6020 |
-
msgid "
|
|
|
|
|
6021 |
msgstr ""
|
6022 |
|
6023 |
-
#:
|
6024 |
-
#, php-format
|
6025 |
msgid ""
|
6026 |
-
"
|
|
|
|
|
6027 |
msgstr ""
|
6028 |
|
6029 |
-
#:
|
6030 |
-
msgid "
|
|
|
|
|
|
|
6031 |
msgstr ""
|
6032 |
|
6033 |
-
#:
|
6034 |
-
|
|
|
|
|
|
|
6035 |
msgid ""
|
6036 |
-
"
|
6037 |
-
"
|
|
|
6038 |
msgstr ""
|
6039 |
|
6040 |
-
#:
|
6041 |
-
msgid "
|
|
|
|
|
6042 |
msgstr ""
|
6043 |
|
6044 |
-
#:
|
6045 |
-
#, php-format
|
6046 |
msgid ""
|
6047 |
-
"
|
|
|
6048 |
msgstr ""
|
6049 |
|
6050 |
-
#:
|
6051 |
-
msgid "
|
|
|
|
|
6052 |
msgstr ""
|
6053 |
|
6054 |
-
#:
|
6055 |
-
|
6056 |
-
|
|
|
|
|
|
|
6057 |
msgstr ""
|
6058 |
|
6059 |
-
#:
|
6060 |
#, php-format
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6061 |
msgid ""
|
6062 |
-
"
|
6063 |
-
"
|
|
|
6064 |
msgstr ""
|
6065 |
|
6066 |
-
#:
|
6067 |
-
|
|
|
|
|
|
|
6068 |
msgid ""
|
6069 |
-
"
|
6070 |
-
"
|
6071 |
msgstr ""
|
6072 |
|
6073 |
-
#:
|
6074 |
-
msgid "
|
6075 |
msgstr ""
|
6076 |
|
6077 |
-
#:
|
6078 |
-
#, php-format
|
6079 |
msgid ""
|
6080 |
-
"
|
6081 |
-
"
|
|
|
6082 |
msgstr ""
|
6083 |
|
6084 |
-
#:
|
6085 |
-
|
|
|
|
|
|
|
6086 |
msgid ""
|
6087 |
-
"
|
|
|
6088 |
msgstr ""
|
6089 |
|
6090 |
-
#:
|
6091 |
-
msgid "
|
|
|
|
|
6092 |
msgstr ""
|
6093 |
|
6094 |
-
#:
|
6095 |
-
#, php-format
|
6096 |
msgid ""
|
6097 |
-
"
|
6098 |
-
"
|
6099 |
msgstr ""
|
6100 |
|
6101 |
-
#:
|
6102 |
-
msgid "
|
6103 |
msgstr ""
|
6104 |
|
6105 |
-
#:
|
6106 |
-
|
6107 |
-
|
|
|
|
|
|
|
6108 |
msgstr ""
|
6109 |
|
6110 |
-
#:
|
6111 |
-
msgid "
|
6112 |
msgstr ""
|
6113 |
|
6114 |
-
#:
|
6115 |
-
msgid "
|
|
|
|
|
|
|
6116 |
msgstr ""
|
6117 |
|
6118 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6119 |
#, php-format
|
6120 |
msgid ""
|
6121 |
-
"
|
6122 |
-
"
|
6123 |
-
|
6124 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6125 |
msgstr ""
|
6126 |
|
6127 |
-
#:
|
6128 |
-
|
6129 |
-
msgid "Page Cache: %s."
|
6130 |
msgstr ""
|
6131 |
|
6132 |
-
#:
|
6133 |
-
|
6134 |
-
msgid "Minify: %s."
|
6135 |
msgstr ""
|
6136 |
|
6137 |
-
#:
|
6138 |
-
|
6139 |
-
msgid "Database Cache: %s."
|
6140 |
msgstr ""
|
6141 |
|
6142 |
-
#:
|
6143 |
-
|
6144 |
-
msgid "Object Cache: %s."
|
6145 |
msgstr ""
|
6146 |
|
6147 |
-
#:
|
6148 |
msgid ""
|
6149 |
-
"
|
6150 |
msgstr ""
|
6151 |
|
6152 |
-
#:
|
6153 |
msgid ""
|
6154 |
-
"
|
|
|
|
|
|
|
6155 |
msgstr ""
|
6156 |
|
6157 |
-
#:
|
6158 |
-
|
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 |
-
#:
|
6165 |
-
#, php-format
|
6166 |
msgid ""
|
6167 |
-
"
|
6168 |
-
"missing</strong>. This is a core PHP module. Notify the server "
|
6169 |
-
"administrator. %s"
|
6170 |
msgstr ""
|
6171 |
|
6172 |
-
#:
|
6173 |
-
#, php-format
|
6174 |
msgid ""
|
6175 |
-
"
|
6176 |
-
"
|
6177 |
-
"<br />Please locate and disable this setting to ensure proper HTTP "
|
6178 |
-
"compression behavior. %s"
|
6179 |
msgstr ""
|
6180 |
|
6181 |
-
#:
|
6182 |
-
#, php-format
|
6183 |
msgid ""
|
6184 |
-
"<
|
6185 |
-
"
|
6186 |
-
"
|
6187 |
-
"
|
|
|
6188 |
msgstr ""
|
6189 |
|
6190 |
-
#:
|
6191 |
-
|
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 |
-
#:
|
6200 |
-
#, php-format
|
6201 |
msgid ""
|
6202 |
-
"
|
6203 |
-
"
|
6204 |
-
"
|
6205 |
-
"editing</a> %s"
|
6206 |
msgstr ""
|
6207 |
|
6208 |
-
#:
|
6209 |
-
#, php-format
|
6210 |
msgid ""
|
6211 |
-
"
|
6212 |
-
"
|
|
|
6213 |
msgstr ""
|
6214 |
|
6215 |
-
#:
|
6216 |
-
#, php-format
|
6217 |
msgid ""
|
6218 |
-
"
|
6219 |
-
"
|
6220 |
-
"settings or if not using a custom path %s automatically to resolve the issue."
|
6221 |
msgstr ""
|
6222 |
|
6223 |
-
#:
|
6224 |
-
msgid "
|
6225 |
msgstr ""
|
6226 |
|
6227 |
-
#:
|
6228 |
msgid ""
|
6229 |
-
"
|
6230 |
-
"\">
|
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 |
-
#:
|
6245 |
msgid ""
|
6246 |
-
"
|
6247 |
-
"
|
6248 |
msgstr ""
|
6249 |
|
6250 |
-
#:
|
6251 |
msgid ""
|
6252 |
-
"
|
6253 |
-
"
|
|
|
6254 |
msgstr ""
|
6255 |
|
6256 |
-
#:
|
6257 |
msgid ""
|
6258 |
-
"
|
6259 |
-
"
|
6260 |
msgstr ""
|
6261 |
|
6262 |
-
#:
|
6263 |
msgid ""
|
6264 |
-
"
|
6265 |
-
"
|
|
|
6266 |
msgstr ""
|
6267 |
|
6268 |
-
#:
|
6269 |
-
msgid ""
|
6270 |
-
"The <strong>\"Account name\", \"Account key\" and \"Container\"</strong> "
|
6271 |
-
"fields cannot be empty."
|
6272 |
msgstr ""
|
6273 |
|
6274 |
-
#:
|
6275 |
-
#: lib/W3/UI/PluginView.php:357 lib/W3/UI/PluginView.php:361
|
6276 |
msgid ""
|
6277 |
-
"
|
6278 |
-
|
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 |
-
#:
|
6294 |
-
msgid "
|
6295 |
msgstr ""
|
6296 |
|
6297 |
-
#:
|
6298 |
msgid ""
|
6299 |
-
"
|
6300 |
-
"
|
6301 |
msgstr ""
|
6302 |
|
6303 |
-
#:
|
6304 |
-
msgid "
|
6305 |
msgstr ""
|
6306 |
|
6307 |
-
#:
|
6308 |
-
#, php-format
|
6309 |
msgid ""
|
6310 |
-
"
|
6311 |
-
"
|
6312 |
-
|
6313 |
-
|
6314 |
-
#: lib/W3/UI/PluginView.php:379
|
6315 |
-
msgid "deploy"
|
6316 |
msgstr ""
|
6317 |
|
6318 |
-
#:
|
6319 |
-
msgid "
|
6320 |
msgstr ""
|
6321 |
|
6322 |
-
#:
|
6323 |
-
#, php-format
|
6324 |
msgid ""
|
6325 |
-
"
|
6326 |
-
"
|
6327 |
msgstr ""
|
6328 |
|
6329 |
-
#:
|
6330 |
-
|
6331 |
-
msgid "File permissions are <strong>%s</strong>"
|
6332 |
msgstr ""
|
6333 |
|
6334 |
-
#:
|
6335 |
-
#, php-format
|
6336 |
msgid ""
|
6337 |
-
"
|
6338 |
-
"
|
|
|
6339 |
msgstr ""
|
6340 |
|
6341 |
-
#:
|
6342 |
-
#, php-format
|
6343 |
msgid ""
|
6344 |
-
"
|
6345 |
-
"
|
6346 |
-
|
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 |
-
#:
|
6354 |
-
|
6355 |
-
|
|
|
|
|
|
|
6356 |
msgstr ""
|
6357 |
|
6358 |
-
#:
|
6359 |
-
|
6360 |
-
msgid "Owner of current file: %s"
|
6361 |
msgstr ""
|
6362 |
|
6363 |
-
#:
|
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 |
-
#:
|
6371 |
#, php-format
|
6372 |
msgid ""
|
6373 |
-
"
|
6374 |
-
"
|
6375 |
-
"\
|
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 |
-
#:
|
6385 |
-
msgid "
|
6386 |
msgstr ""
|
6387 |
|
6388 |
-
#:
|
6389 |
-
msgid ""
|
6390 |
-
"Please enter FTP details <a href=\"#ftp_upload_form\">below</a> to remove "
|
6391 |
-
"the disabled modules. "
|
6392 |
msgstr ""
|
6393 |
|
6394 |
-
#:
|
6395 |
-
msgid "
|
6396 |
msgstr ""
|
6397 |
|
6398 |
-
#:
|
6399 |
-
msgid "
|
|
|
|
|
6400 |
msgstr ""
|
6401 |
|
6402 |
-
#:
|
6403 |
-
|
|
|
|
|
|
|
|
|
6404 |
msgstr ""
|
6405 |
|
6406 |
-
#:
|
6407 |
-
msgid "
|
6408 |
msgstr ""
|
6409 |
|
6410 |
-
#:
|
6411 |
-
|
6412 |
-
#: lib/W3/UI/Settings/BrowserCache.php:34
|
6413 |
-
msgid "Expires header lifetime:"
|
6414 |
msgstr ""
|
6415 |
|
6416 |
-
#:
|
6417 |
-
|
6418 |
-
|
6419 |
-
|
|
|
6420 |
msgstr ""
|
6421 |
|
6422 |
-
#:
|
6423 |
-
|
6424 |
-
|
6425 |
-
|
|
|
|
|
6426 |
msgstr ""
|
6427 |
|
6428 |
-
#:
|
6429 |
-
|
6430 |
-
|
|
|
|
|
|
|
6431 |
msgstr ""
|
6432 |
|
6433 |
-
#:
|
6434 |
msgid ""
|
6435 |
-
"
|
6436 |
-
"
|
|
|
6437 |
msgstr ""
|
6438 |
|
6439 |
-
#:
|
6440 |
-
msgid "
|
6441 |
msgstr ""
|
6442 |
|
6443 |
-
#:
|
6444 |
-
|
|
|
6445 |
msgstr ""
|
6446 |
|
6447 |
-
#:
|
6448 |
-
|
|
|
6449 |
msgstr ""
|
6450 |
|
6451 |
-
#:
|
6452 |
-
|
|
|
6453 |
msgstr ""
|
6454 |
|
6455 |
-
#:
|
6456 |
-
|
|
|
6457 |
msgstr ""
|
6458 |
|
6459 |
-
#:
|
6460 |
-
msgid ""
|
6461 |
-
"Host minified <acronym title=\"Cascading Style Sheet\">CSS</acronym> and "
|
6462 |
-
"<acronym title=\"JavaScript\">JS</acronym> files"
|
6463 |
msgstr ""
|
6464 |
|
6465 |
-
#:
|
6466 |
-
msgid "
|
6467 |
msgstr ""
|
6468 |
|
6469 |
-
#:
|
6470 |
-
|
|
|
6471 |
msgstr ""
|
6472 |
|
6473 |
-
#:
|
6474 |
-
msgid "
|
|
|
|
|
6475 |
msgstr ""
|
6476 |
|
6477 |
-
#:
|
6478 |
-
msgid "
|
6479 |
msgstr ""
|
6480 |
|
6481 |
-
#:
|
6482 |
-
msgid "
|
6483 |
msgstr ""
|
6484 |
|
6485 |
-
#:
|
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 |
-
#:
|
6492 |
-
msgid ""
|
6493 |
-
"Disable <acronym title=\"Content Delivery Network\">CDN</acronym> for the "
|
6494 |
-
"following roles"
|
6495 |
msgstr ""
|
6496 |
|
6497 |
-
#:
|
6498 |
-
msgid ""
|
6499 |
-
"Disable <acronym title=\"Content Delivery Network\">CDN</acronym> on the "
|
6500 |
-
"following pages:"
|
6501 |
msgstr ""
|
6502 |
|
6503 |
-
#:
|
6504 |
-
msgid "
|
6505 |
msgstr ""
|
6506 |
|
6507 |
-
#:
|
6508 |
-
msgid "
|
6509 |
msgstr ""
|
6510 |
|
6511 |
-
#:
|
6512 |
-
msgid "
|
6513 |
msgstr ""
|
6514 |
|
6515 |
-
#:
|
6516 |
-
msgid "
|
|
|
|
|
|
|
6517 |
msgstr ""
|
6518 |
|
6519 |
-
#:
|
6520 |
-
msgid "
|
6521 |
msgstr ""
|
6522 |
|
6523 |
-
#:
|
6524 |
-
msgid "
|
|
|
6525 |
msgstr ""
|
6526 |
|
6527 |
-
#:
|
6528 |
-
msgid "
|
6529 |
msgstr ""
|
6530 |
|
6531 |
-
#:
|
6532 |
-
msgid "
|
|
|
|
|
6533 |
msgstr ""
|
6534 |
|
6535 |
-
#:
|
6536 |
-
|
6537 |
-
msgid "Rejected user agents:"
|
6538 |
msgstr ""
|
6539 |
|
6540 |
-
#:
|
6541 |
-
msgid "
|
6542 |
msgstr ""
|
6543 |
|
6544 |
-
#:
|
6545 |
-
msgid "
|
6546 |
msgstr ""
|
6547 |
|
6548 |
-
#:
|
6549 |
-
msgid "
|
6550 |
msgstr ""
|
6551 |
|
6552 |
-
#:
|
6553 |
-
msgid "
|
6554 |
msgstr ""
|
6555 |
|
6556 |
-
#:
|
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 |
-
"
|
6561 |
-
"
|
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 |
-
#:
|
6569 |
-
|
6570 |
-
|
6571 |
-
|
6572 |
msgstr ""
|
6573 |
|
6574 |
-
#:
|
6575 |
-
msgid "
|
|
|
|
|
6576 |
msgstr ""
|
6577 |
|
6578 |
-
#:
|
6579 |
-
msgid "
|
|
|
|
|
6580 |
msgstr ""
|
6581 |
|
6582 |
-
#:
|
6583 |
-
msgid "
|
6584 |
msgstr ""
|
6585 |
|
6586 |
-
#:
|
6587 |
-
msgid "
|
6588 |
msgstr ""
|
6589 |
|
6590 |
-
#:
|
6591 |
-
msgid "
|
6592 |
msgstr ""
|
6593 |
|
6594 |
-
#:
|
6595 |
-
msgid "
|
6596 |
msgstr ""
|
6597 |
|
6598 |
-
#:
|
6599 |
-
|
|
|
6600 |
msgstr ""
|
6601 |
|
6602 |
-
#:
|
6603 |
-
|
|
|
6604 |
msgstr ""
|
6605 |
|
6606 |
-
#:
|
6607 |
-
|
6608 |
-
|
6609 |
-
"acronym> Key:"
|
6610 |
msgstr ""
|
6611 |
|
6612 |
-
#:
|
6613 |
-
|
|
|
6614 |
msgstr ""
|
6615 |
|
6616 |
-
#:
|
6617 |
-
msgid "
|
6618 |
msgstr ""
|
6619 |
|
6620 |
-
#:
|
6621 |
-
msgid "
|
6622 |
msgstr ""
|
6623 |
|
6624 |
-
#:
|
6625 |
-
msgid "
|
6626 |
msgstr ""
|
6627 |
|
6628 |
-
#:
|
6629 |
-
msgid "
|
6630 |
msgstr ""
|
6631 |
|
6632 |
-
#:
|
6633 |
-
msgid "
|
6634 |
msgstr ""
|
6635 |
|
6636 |
-
#:
|
6637 |
-
msgid "
|
6638 |
msgstr ""
|
6639 |
|
6640 |
-
#:
|
6641 |
-
msgid "
|
6642 |
msgstr ""
|
6643 |
|
6644 |
-
#:
|
6645 |
-
|
|
|
6646 |
msgstr ""
|
6647 |
|
6648 |
-
#:
|
6649 |
-
|
|
|
6650 |
msgstr ""
|
6651 |
|
6652 |
-
#:
|
6653 |
-
msgid "
|
6654 |
msgstr ""
|
6655 |
|
6656 |
-
#:
|
6657 |
-
msgid ""
|
6658 |
-
"Rewrite <acronym title=\"Uniform Resource Locator\">URL</acronym> structure"
|
6659 |
msgstr ""
|
6660 |
|
6661 |
-
#:
|
6662 |
-
msgid "
|
6663 |
msgstr ""
|
6664 |
|
6665 |
-
#:
|
6666 |
-
msgid "
|
6667 |
msgstr ""
|
6668 |
|
6669 |
-
#:
|
6670 |
-
msgid ""
|
6671 |
-
"Inline <acronym title=\"Cascading Style Sheet\">CSS</acronym> minification"
|
6672 |
msgstr ""
|
6673 |
|
6674 |
-
#:
|
6675 |
-
msgid "
|
6676 |
msgstr ""
|
6677 |
|
6678 |
-
#:
|
6679 |
-
msgid "
|
|
|
|
|
|
|
6680 |
msgstr ""
|
6681 |
|
6682 |
-
#:
|
6683 |
-
msgid "
|
|
|
|
|
6684 |
msgstr ""
|
6685 |
|
6686 |
-
#:
|
6687 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
6688 |
msgstr ""
|
6689 |
|
6690 |
-
#:
|
6691 |
-
|
6692 |
-
|
|
|
6693 |
msgstr ""
|
6694 |
|
6695 |
-
#:
|
6696 |
-
msgid "
|
6697 |
msgstr ""
|
6698 |
|
6699 |
-
#:
|
6700 |
-
msgid "
|
6701 |
msgstr ""
|
6702 |
|
6703 |
-
#:
|
6704 |
-
msgid "
|
6705 |
msgstr ""
|
6706 |
|
6707 |
-
#:
|
6708 |
-
msgid "
|
6709 |
msgstr ""
|
6710 |
|
6711 |
-
#:
|
6712 |
-
msgid "
|
6713 |
msgstr ""
|
6714 |
|
6715 |
-
#:
|
6716 |
-
msgid "
|
6717 |
msgstr ""
|
6718 |
|
6719 |
-
#:
|
6720 |
-
msgid "
|
6721 |
msgstr ""
|
6722 |
|
6723 |
-
#:
|
6724 |
-
msgid "
|
6725 |
msgstr ""
|
6726 |
|
6727 |
-
#:
|
6728 |
-
msgid "
|
6729 |
msgstr ""
|
6730 |
|
6731 |
-
#:
|
6732 |
-
msgid "
|
6733 |
msgstr ""
|
6734 |
|
6735 |
-
#:
|
6736 |
-
msgid "
|
6737 |
msgstr ""
|
6738 |
|
6739 |
-
#:
|
6740 |
-
msgid "
|
6741 |
msgstr ""
|
6742 |
|
6743 |
-
#:
|
6744 |
-
msgid "
|
6745 |
msgstr ""
|
6746 |
|
6747 |
-
#:
|
6748 |
-
msgid "
|
6749 |
msgstr ""
|
6750 |
|
6751 |
-
#:
|
6752 |
-
msgid "
|
6753 |
msgstr ""
|
6754 |
|
6755 |
-
#:
|
6756 |
-
|
|
|
|
|
|
|
|
|
6757 |
msgstr ""
|
6758 |
|
6759 |
-
#:
|
6760 |
-
|
|
|
|
|
6761 |
msgstr ""
|
6762 |
|
6763 |
-
#:
|
6764 |
-
|
|
|
6765 |
msgstr ""
|
6766 |
|
6767 |
-
#:
|
6768 |
-
|
|
|
|
|
|
|
6769 |
msgstr ""
|
6770 |
|
6771 |
-
#:
|
6772 |
-
msgid "
|
|
|
|
|
6773 |
msgstr ""
|
6774 |
|
6775 |
-
#:
|
6776 |
-
|
|
|
|
|
|
|
6777 |
msgstr ""
|
6778 |
|
6779 |
-
#:
|
6780 |
-
|
|
|
|
|
|
|
6781 |
msgstr ""
|
6782 |
|
6783 |
-
#:
|
6784 |
-
|
|
|
|
|
|
|
6785 |
msgstr ""
|
6786 |
|
6787 |
-
#:
|
6788 |
-
msgid "
|
6789 |
msgstr ""
|
6790 |
|
6791 |
-
#:
|
6792 |
-
msgid "
|
6793 |
msgstr ""
|
6794 |
|
6795 |
-
#:
|
6796 |
-
msgid "
|
|
|
|
|
6797 |
msgstr ""
|
6798 |
|
6799 |
-
#:
|
6800 |
-
msgid "
|
|
|
|
|
6801 |
msgstr ""
|
6802 |
|
6803 |
-
#:
|
6804 |
-
msgid "
|
6805 |
msgstr ""
|
6806 |
|
6807 |
-
#:
|
6808 |
-
msgid "
|
6809 |
msgstr ""
|
6810 |
|
6811 |
-
#:
|
6812 |
-
msgid "
|
|
|
6813 |
msgstr ""
|
6814 |
|
6815 |
-
#:
|
6816 |
-
msgid "
|
|
|
|
|
6817 |
msgstr ""
|
6818 |
|
6819 |
-
#:
|
6820 |
-
msgid "
|
6821 |
msgstr ""
|
6822 |
|
6823 |
-
#:
|
6824 |
-
msgid "
|
6825 |
msgstr ""
|
6826 |
|
6827 |
-
#:
|
6828 |
-
msgid "
|
6829 |
msgstr ""
|
6830 |
|
6831 |
-
#:
|
6832 |
-
msgid "
|
6833 |
msgstr ""
|
6834 |
|
6835 |
-
#:
|
6836 |
-
msgid "
|
6837 |
msgstr ""
|
6838 |
|
6839 |
-
#:
|
6840 |
-
msgid "
|
6841 |
msgstr ""
|
6842 |
|
6843 |
-
#:
|
6844 |
-
msgid "
|
6845 |
msgstr ""
|
6846 |
|
6847 |
-
#:
|
6848 |
-
msgid "
|
6849 |
msgstr ""
|
6850 |
|
6851 |
-
#:
|
6852 |
-
|
|
|
6853 |
msgstr ""
|
6854 |
|
6855 |
-
#:
|
6856 |
-
|
|
|
6857 |
msgstr ""
|
6858 |
|
6859 |
-
#:
|
6860 |
-
|
|
|
6861 |
msgstr ""
|
6862 |
|
6863 |
-
#:
|
6864 |
-
msgid ""
|
6865 |
-
"Use <acronym title=\"Real User Monitoring\">RUM</acronym> only for following "
|
6866 |
-
"user roles"
|
6867 |
msgstr ""
|
6868 |
|
6869 |
-
#:
|
6870 |
-
msgid ""
|
6871 |
-
"Select user roles that <acronym title=\"Real User Monitoring\">RUM</acronym> "
|
6872 |
-
"should be enabled for:"
|
6873 |
msgstr ""
|
6874 |
|
6875 |
-
#:
|
6876 |
msgid ""
|
6877 |
-
"
|
6878 |
-
"or
|
6879 |
-
|
6880 |
-
|
6881 |
-
#: lib/W3/UI/Settings/Monitoring.php:17
|
6882 |
-
msgid "Prefix network sites:"
|
6883 |
msgstr ""
|
6884 |
|
6885 |
-
#:
|
6886 |
-
msgid "
|
6887 |
msgstr ""
|
6888 |
|
6889 |
-
#:
|
6890 |
-
msgid "
|
6891 |
msgstr ""
|
6892 |
|
6893 |
-
#:
|
6894 |
-
msgid "
|
6895 |
msgstr ""
|
6896 |
|
6897 |
-
#:
|
6898 |
-
|
|
|
|
|
|
|
|
|
|
|
6899 |
msgstr ""
|
6900 |
|
6901 |
-
#:
|
6902 |
-
msgid "
|
|
|
6903 |
msgstr ""
|
6904 |
|
6905 |
-
#:
|
6906 |
-
msgid "
|
|
|
|
|
6907 |
msgstr ""
|
6908 |
|
6909 |
-
#:
|
6910 |
-
msgid "
|
6911 |
msgstr ""
|
6912 |
|
6913 |
-
#:
|
6914 |
-
msgid "
|
|
|
|
|
6915 |
msgstr ""
|
6916 |
|
6917 |
-
#:
|
6918 |
-
msgid "
|
6919 |
msgstr ""
|
6920 |
|
6921 |
-
#:
|
6922 |
-
msgid "
|
6923 |
msgstr ""
|
6924 |
|
6925 |
-
#:
|
6926 |
-
msgid "
|
6927 |
msgstr ""
|
6928 |
|
6929 |
-
#:
|
6930 |
-
msgid "
|
6931 |
msgstr ""
|
6932 |
|
6933 |
-
#:
|
6934 |
-
msgid "
|
6935 |
msgstr ""
|
6936 |
|
6937 |
-
#:
|
6938 |
-
msgid "
|
6939 |
msgstr ""
|
6940 |
|
6941 |
-
#:
|
6942 |
-
msgid "
|
6943 |
msgstr ""
|
6944 |
|
6945 |
-
#:
|
6946 |
msgid ""
|
6947 |
-
"
|
6948 |
-
"
|
6949 |
msgstr ""
|
6950 |
|
6951 |
-
#:
|
6952 |
msgid ""
|
6953 |
-
"
|
6954 |
-
"
|
6955 |
msgstr ""
|
6956 |
|
6957 |
-
#:
|
6958 |
-
msgid "
|
6959 |
msgstr ""
|
6960 |
|
6961 |
-
#:
|
6962 |
-
|
6963 |
-
|
6964 |
msgstr ""
|
6965 |
|
6966 |
-
#:
|
6967 |
-
msgid "
|
|
|
6968 |
msgstr ""
|
6969 |
|
6970 |
-
#:
|
6971 |
-
msgid "
|
|
|
|
|
|
|
|
|
6972 |
msgstr ""
|
6973 |
|
6974 |
-
#:
|
6975 |
-
msgid "
|
6976 |
msgstr ""
|
6977 |
|
6978 |
-
#:
|
6979 |
-
msgid "
|
6980 |
msgstr ""
|
6981 |
|
6982 |
-
#:
|
6983 |
-
msgid "
|
6984 |
msgstr ""
|
6985 |
|
6986 |
-
#:
|
6987 |
-
|
|
|
6988 |
msgstr ""
|
6989 |
|
6990 |
-
#:
|
6991 |
-
msgid "
|
|
|
|
|
|
|
6992 |
msgstr ""
|
6993 |
|
6994 |
-
#:
|
6995 |
-
|
|
|
6996 |
msgstr ""
|
6997 |
|
6998 |
-
#:
|
6999 |
-
|
|
|
7000 |
msgstr ""
|
7001 |
|
7002 |
-
#:
|
7003 |
-
msgid "
|
|
|
|
|
|
|
|
|
7004 |
msgstr ""
|
7005 |
|
7006 |
-
#:
|
7007 |
-
msgid "
|
7008 |
msgstr ""
|
7009 |
|
7010 |
-
#:
|
7011 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7012 |
msgstr ""
|
7013 |
|
7014 |
-
#:
|
7015 |
-
msgid "
|
7016 |
msgstr ""
|
7017 |
|
7018 |
-
#:
|
7019 |
-
msgid "
|
7020 |
msgstr ""
|
7021 |
|
7022 |
-
#:
|
7023 |
-
msgid "
|
|
|
|
|
|
|
|
|
7024 |
msgstr ""
|
7025 |
|
7026 |
-
#:
|
7027 |
-
msgid "
|
7028 |
msgstr ""
|
7029 |
|
7030 |
-
#:
|
7031 |
-
msgid "
|
7032 |
msgstr ""
|
7033 |
|
7034 |
-
#:
|
7035 |
-
msgid "
|
7036 |
msgstr ""
|
7037 |
|
7038 |
-
#:
|
7039 |
-
msgid "
|
7040 |
msgstr ""
|
7041 |
|
7042 |
-
#:
|
7043 |
-
msgid "
|
7044 |
msgstr ""
|
7045 |
|
7046 |
-
#:
|
7047 |
-
msgid "
|
7048 |
msgstr ""
|
7049 |
|
7050 |
-
#:
|
7051 |
-
msgid "
|
7052 |
msgstr ""
|
7053 |
|
7054 |
-
#:
|
7055 |
-
msgid "
|
7056 |
msgstr ""
|
7057 |
|
7058 |
-
#:
|
7059 |
-
msgid "
|
7060 |
msgstr ""
|
7061 |
|
7062 |
-
#:
|
7063 |
-
msgid "
|
|
|
|
|
|
|
7064 |
msgstr ""
|
7065 |
|
7066 |
-
#:
|
7067 |
-
msgid "
|
7068 |
msgstr ""
|
7069 |
|
7070 |
-
#:
|
7071 |
-
msgid ""
|
7072 |
-
" Disable caching of HEAD <acronym title=\"Hypertext Transfer Protocol"
|
7073 |
-
"\">HTTP</acronym> requests"
|
7074 |
msgstr ""
|
7075 |
|
7076 |
-
#:
|
7077 |
-
msgid "
|
7078 |
msgstr ""
|
7079 |
|
7080 |
-
#:
|
7081 |
-
msgid "
|
7082 |
msgstr ""
|
7083 |
|
7084 |
-
#:
|
7085 |
-
msgid "
|
7086 |
msgstr ""
|
7087 |
|
7088 |
-
#:
|
7089 |
-
msgid "
|
7090 |
msgstr ""
|
7091 |
|
7092 |
-
#:
|
7093 |
-
msgid "
|
7094 |
msgstr ""
|
7095 |
|
7096 |
-
#:
|
7097 |
-
msgid "
|
7098 |
msgstr ""
|
7099 |
|
7100 |
-
#:
|
7101 |
msgid ""
|
7102 |
-
"
|
|
|
7103 |
msgstr ""
|
7104 |
|
7105 |
-
#:
|
7106 |
-
msgid "
|
|
|
|
|
|
|
|
|
7107 |
msgstr ""
|
7108 |
|
7109 |
-
#:
|
7110 |
msgid ""
|
7111 |
-
"
|
7112 |
-
"\">
|
|
|
7113 |
msgstr ""
|
7114 |
|
7115 |
-
#:
|
7116 |
-
msgid "
|
7117 |
msgstr ""
|
7118 |
|
7119 |
-
#:
|
7120 |
-
msgid ""
|
7121 |
-
"<acronym title=\"Application Programming Interface\">API</acronym> secret:"
|
7122 |
msgstr ""
|
7123 |
|
7124 |
-
#:
|
7125 |
-
msgid "
|
7126 |
msgstr ""
|
7127 |
|
7128 |
-
#:
|
7129 |
-
msgid "
|
7130 |
msgstr ""
|
7131 |
|
7132 |
-
#:
|
7133 |
-
msgid "
|
7134 |
msgstr ""
|
7135 |
|
7136 |
-
#:
|
7137 |
-
msgid "
|
7138 |
msgstr ""
|
7139 |
|
7140 |
-
#:
|
7141 |
-
|
|
|
|
|
7142 |
msgstr ""
|
7143 |
|
7144 |
-
#:
|
7145 |
-
msgid "
|
7146 |
msgstr ""
|
7147 |
|
7148 |
-
#:
|
7149 |
-
msgid "
|
7150 |
msgstr ""
|
7151 |
|
7152 |
-
#:
|
7153 |
-
|
|
|
7154 |
msgstr ""
|
7155 |
|
7156 |
-
#:
|
7157 |
-
|
7158 |
-
msgid "
|
7159 |
msgstr ""
|
7160 |
|
7161 |
-
#:
|
7162 |
-
|
7163 |
-
msgid "
|
7164 |
msgstr ""
|
7165 |
|
7166 |
-
#:
|
7167 |
-
|
7168 |
-
msgid "
|
7169 |
msgstr ""
|
7170 |
|
7171 |
-
#:
|
7172 |
-
|
7173 |
-
msgid "Theme Performance Optimization & Plugin Configuration %s"
|
7174 |
msgstr ""
|
7175 |
|
7176 |
-
|
7177 |
-
|
7178 |
-
msgid "Linux Server Optimization & Plugin Configuration %s"
|
7179 |
msgstr ""
|
7180 |
|
7181 |
-
|
7182 |
-
msgid "
|
|
|
|
|
|
|
|
|
7183 |
msgstr ""
|
7184 |
|
7185 |
-
|
7186 |
-
msgid "
|
7187 |
msgstr ""
|
7188 |
|
7189 |
-
|
7190 |
-
msgid "
|
7191 |
msgstr ""
|
7192 |
|
7193 |
-
|
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 -> "
|
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&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 "<video>:"
|
|
|
|
|
|
|
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™ 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 -> 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\"><body></span>"
|
2659 |
msgstr ""
|
2660 |
|
2661 |
+
#: Minify_ConfigLabels.php:27
|
2662 |
+
msgid "Before <span class=\"html-tag\"></body></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 & 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., <frame>, <iframe> or <object>). 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 & "
|
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 <head>"
|
5019 |
msgstr ""
|
5020 |
|
5021 |
+
#: inc/lightbox/minify_recommendations.php:54 inc/options/minify.php:293
|
5022 |
+
msgid "Embed after <body>"
|
5023 |
msgstr ""
|
5024 |
|
5025 |
+
#: inc/lightbox/minify_recommendations.php:55 inc/options/minify.php:294
|
5026 |
+
msgid "Embed before </body>"
|
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 & 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&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 & 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 -> 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/<"
|
5702 |
+
"currentblog>/."
|
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 & 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> & <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> & <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 & 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 & 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> & <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\"></head>"
|
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 |
+
"& 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 & 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 & 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 |
+
"& 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 -> 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 & 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>®</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)
|
381 |
-
&&
|
382 |
-
&&
|
|
|
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[^>]*>)/
|
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 |
|
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.
|
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.
|
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.
|
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/
|