W3 Total Cache - Version 2.2.9

Version Description

  • Fix: Reset our textdomain for translations
Download this release

Release Info

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

Code changes from version 2.2.7 to 2.2.9

CacheGroups_Plugin_Admin_View.php CHANGED
@@ -56,7 +56,7 @@ if ( ! defined( 'W3TC' ) ) {
56
  <td>
57
  <span class="mobile_group_number"><?php echo esc_attr( $index ); ?>.</span> <span class="mobile_group"><?php echo esc_html( $group ); // phpcs:ignore ?></span>
58
  <input type="button" class="button mobile_delete"
59
- value="Delete group"
60
  <?php disabled( $useragent_groups['disabled'] ); ?> />
61
  </td>
62
  </tr>
@@ -259,7 +259,7 @@ if ( ! defined( 'W3TC' ) ) {
259
  <span class="cookiegroup_number"><?php echo esc_attr( $index ); ?>.</span>
260
  <span class="cookiegroup_name"><?php echo htmlspecialchars( $group ); // phpcs:ignore ?></span>
261
  <input type="button" class="button w3tc_cookiegroup_delete"
262
- value="Delete group"
263
  <?php disabled( $cookie_groups['disabled'] ); ?> />
264
  </td>
265
  </tr>
56
  <td>
57
  <span class="mobile_group_number"><?php echo esc_attr( $index ); ?>.</span> <span class="mobile_group"><?php echo esc_html( $group ); // phpcs:ignore ?></span>
58
  <input type="button" class="button mobile_delete"
59
+ value="<?php esc_html_e( 'Delete group', 'w3-total-cache' ); ?>"
60
  <?php disabled( $useragent_groups['disabled'] ); ?> />
61
  </td>
62
  </tr>
259
  <span class="cookiegroup_number"><?php echo esc_attr( $index ); ?>.</span>
260
  <span class="cookiegroup_name"><?php echo htmlspecialchars( $group ); // phpcs:ignore ?></span>
261
  <input type="button" class="button w3tc_cookiegroup_delete"
262
+ value="<?php esc_html_e( 'Delete group', 'w3-total-cache' ); ?>"
263
  <?php disabled( $cookie_groups['disabled'] ); ?> />
264
  </td>
265
  </tr>
Cdn_MaxCdn_Page_View.php CHANGED
@@ -9,8 +9,8 @@ if ( ! defined( 'W3TC' ) ) {
9
  <tr>
10
  <th style="width: 300px;"><label><?php esc_html_e( 'Create account:', 'w3-total-cache' ); ?></label></th>
11
  <td>
12
- <a href="<?php echo esc_url( wp_nonce_url( Util_Ui::admin_url( 'admin.php?page=w3tc_dashboard&w3tc_cdn_maxcdn_signup' ), 'w3tc' ) ); ?>" target="_blank" id="netdna-maxcdn-create-account" class="button-primary"><?php w3tc_e( 'cdn.maxcdn.signUpAndSave', 'Sign Up Now and save!' ); ?></a>
13
- <p class="description"><?php w3tc_e( 'cdn.maxcdn.signUpAndSave.description', 'MaxCDN is a service that lets you speed up your site even more with W3 Total Cache. Sign up now to recieve a special offer!' ); ?></p>
14
  </td>
15
  </tr>
16
  <?php endif ?>
9
  <tr>
10
  <th style="width: 300px;"><label><?php esc_html_e( 'Create account:', 'w3-total-cache' ); ?></label></th>
11
  <td>
12
+ <a href="<?php echo esc_url( wp_nonce_url( Util_Ui::admin_url( 'admin.php?page=w3tc_dashboard&w3tc_cdn_maxcdn_signup' ), 'w3tc' ) ); ?>" target="_blank" id="netdna-maxcdn-create-account" class="button-primary"><?php w3tc_e( 'cdn.maxcdn.signUpAndSave', __( 'Sign Up Now and save!', 'w3-total-cache' ) ); ?></a>
13
+ <p class="description"><?php w3tc_e( 'cdn.maxcdn.signUpAndSave.description', __( 'MaxCDN is a service that lets you speed up your site even more with W3 Total Cache. Sign up now to recieve a special offer!', 'w3-total-cache' ) ); ?></p>
14
  </td>
15
  </tr>
16
  <?php endif ?>
Cdn_Plugin_Admin.php CHANGED
@@ -28,17 +28,11 @@ class Cdn_Plugin_Admin {
28
 
29
  // attach to actions without firing class loading at all without need
30
  if ( $cdn_engine == 'google_drive' ) {
31
- add_action( 'admin_print_scripts-performance_page_w3tc_cdn', array(
32
- '\W3TC\Cdn_GoogleDrive_Page',
33
- 'admin_print_scripts_w3tc_cdn' ) );
34
  add_action( 'w3tc_settings_cdn_boxarea_configuration', array(
35
  '\W3TC\Cdn_GoogleDrive_Page',
36
  'w3tc_settings_cdn_boxarea_configuration'
37
  ) );
38
  } elseif ( $cdn_engine == 'highwinds' ) {
39
- add_action( 'admin_print_scripts-performance_page_w3tc_cdn', array(
40
- '\W3TC\Cdn_Highwinds_Page',
41
- 'admin_print_scripts_w3tc_cdn' ) );
42
  add_action( 'w3tc_ajax', array(
43
  '\W3TC\Cdn_Highwinds_Popup',
44
  'w3tc_ajax' ) );
@@ -52,9 +46,6 @@ class Cdn_Plugin_Admin {
52
  '\W3TC\Cdn_Highwinds_Page',
53
  'w3tc_settings_cdn_boxarea_configuration' ) );
54
  } elseif ( $cdn_engine == 'limelight' ) {
55
- add_action( 'admin_print_scripts-performance_page_w3tc_cdn', array(
56
- '\W3TC\Cdn_LimeLight_Page',
57
- 'admin_print_scripts_w3tc_cdn' ) );
58
  add_action( 'w3tc_ajax', array(
59
  '\W3TC\Cdn_LimeLight_Popup',
60
  'w3tc_ajax' ) );
@@ -63,9 +54,6 @@ class Cdn_Plugin_Admin {
63
  'w3tc_settings_cdn_boxarea_configuration'
64
  ) );
65
  } elseif ( $cdn_engine == 'maxcdn' ) {
66
- add_action( 'admin_print_scripts-performance_page_w3tc_cdn', array(
67
- '\W3TC\Cdn_MaxCdn_Page',
68
- 'admin_print_scripts_w3tc_cdn' ) );
69
  add_action( 'w3tc_ajax', array(
70
  '\W3TC\Cdn_MaxCdn_Popup',
71
  'w3tc_ajax' ) );
@@ -77,9 +65,6 @@ class Cdn_Plugin_Admin {
77
  add_filter( 'w3tc_admin_actions', array(
78
  '\W3TC\Cdn_RackSpaceCdn_Page',
79
  'w3tc_admin_actions' ) );
80
- add_action( 'admin_print_scripts-performance_page_w3tc_cdn', array(
81
- '\W3TC\Cdn_RackSpaceCdn_Page',
82
- 'admin_print_scripts_w3tc_cdn' ) );
83
  add_action( 'w3tc_ajax', array(
84
  '\W3TC\Cdn_RackSpaceCdn_Popup',
85
  'w3tc_ajax' ) );
@@ -87,9 +72,6 @@ class Cdn_Plugin_Admin {
87
  '\W3TC\Cdn_RackSpaceCdn_Page',
88
  'w3tc_settings_cdn_boxarea_configuration' ) );
89
  } elseif ( $cdn_engine == 'rscf' ) {
90
- add_action( 'admin_print_scripts-performance_page_w3tc_cdn', array(
91
- '\W3TC\Cdn_RackSpaceCloudFiles_Page',
92
- 'admin_print_scripts_w3tc_cdn' ) );
93
  add_action( 'w3tc_ajax', array(
94
  '\W3TC\Cdn_RackSpaceCloudFiles_Popup',
95
  'w3tc_ajax' ) );
@@ -97,9 +79,6 @@ class Cdn_Plugin_Admin {
97
  '\W3TC\Cdn_RackSpaceCloudFiles_Page',
98
  'w3tc_settings_cdn_boxarea_configuration' ) );
99
  } elseif ( $cdn_engine == 'stackpath' ) {
100
- add_action( 'admin_print_scripts-performance_page_w3tc_cdn', array(
101
- '\W3TC\Cdn_StackPath_Page',
102
- 'admin_print_scripts_w3tc_cdn' ) );
103
  add_action( 'w3tc_ajax', array(
104
  '\W3TC\Cdn_StackPath_Popup',
105
  'w3tc_ajax' ) );
@@ -114,9 +93,6 @@ class Cdn_Plugin_Admin {
114
  '\W3TC\Cdn_StackPath_Widget',
115
  'w3tc_ajax_cdn_stackpath_widgetdata' ) );
116
  } elseif ( $cdn_engine == 'stackpath2' ) {
117
- add_action( 'admin_print_scripts-performance_page_w3tc_cdn', array(
118
- '\W3TC\Cdn_StackPath2_Page',
119
- 'admin_print_scripts_w3tc_cdn' ) );
120
  add_action( 'w3tc_ajax', array(
121
  '\W3TC\Cdn_StackPath2_Popup',
122
  'w3tc_ajax' ) );
28
 
29
  // attach to actions without firing class loading at all without need
30
  if ( $cdn_engine == 'google_drive' ) {
 
 
 
31
  add_action( 'w3tc_settings_cdn_boxarea_configuration', array(
32
  '\W3TC\Cdn_GoogleDrive_Page',
33
  'w3tc_settings_cdn_boxarea_configuration'
34
  ) );
35
  } elseif ( $cdn_engine == 'highwinds' ) {
 
 
 
36
  add_action( 'w3tc_ajax', array(
37
  '\W3TC\Cdn_Highwinds_Popup',
38
  'w3tc_ajax' ) );
46
  '\W3TC\Cdn_Highwinds_Page',
47
  'w3tc_settings_cdn_boxarea_configuration' ) );
48
  } elseif ( $cdn_engine == 'limelight' ) {
 
 
 
49
  add_action( 'w3tc_ajax', array(
50
  '\W3TC\Cdn_LimeLight_Popup',
51
  'w3tc_ajax' ) );
54
  'w3tc_settings_cdn_boxarea_configuration'
55
  ) );
56
  } elseif ( $cdn_engine == 'maxcdn' ) {
 
 
 
57
  add_action( 'w3tc_ajax', array(
58
  '\W3TC\Cdn_MaxCdn_Popup',
59
  'w3tc_ajax' ) );
65
  add_filter( 'w3tc_admin_actions', array(
66
  '\W3TC\Cdn_RackSpaceCdn_Page',
67
  'w3tc_admin_actions' ) );
 
 
 
68
  add_action( 'w3tc_ajax', array(
69
  '\W3TC\Cdn_RackSpaceCdn_Popup',
70
  'w3tc_ajax' ) );
72
  '\W3TC\Cdn_RackSpaceCdn_Page',
73
  'w3tc_settings_cdn_boxarea_configuration' ) );
74
  } elseif ( $cdn_engine == 'rscf' ) {
 
 
 
75
  add_action( 'w3tc_ajax', array(
76
  '\W3TC\Cdn_RackSpaceCloudFiles_Popup',
77
  'w3tc_ajax' ) );
79
  '\W3TC\Cdn_RackSpaceCloudFiles_Page',
80
  'w3tc_settings_cdn_boxarea_configuration' ) );
81
  } elseif ( $cdn_engine == 'stackpath' ) {
 
 
 
82
  add_action( 'w3tc_ajax', array(
83
  '\W3TC\Cdn_StackPath_Popup',
84
  'w3tc_ajax' ) );
93
  '\W3TC\Cdn_StackPath_Widget',
94
  'w3tc_ajax_cdn_stackpath_widgetdata' ) );
95
  } elseif ( $cdn_engine == 'stackpath2' ) {
 
 
 
96
  add_action( 'w3tc_ajax', array(
97
  '\W3TC\Cdn_StackPath2_Popup',
98
  'w3tc_ajax' ) );
Cdn_StackPath2_Page_View.php CHANGED
@@ -13,7 +13,11 @@ if ( ! defined( 'W3TC' ) ) {
13
  <?php
14
  w3tc_e(
15
  'cdn.stackpath.widget.v2.no_cdn',
16
- 'W3 Total Cache has detected that you do not have a <acronym title="Content Delivery Network">CDN</acronym> configured'
 
 
 
 
17
  );
18
  ?>
19
  </p>
@@ -21,9 +25,16 @@ if ( ! defined( 'W3TC' ) ) {
21
  <?php esc_html_e( 'Enhance your website Performance with StackPath\'s CDN services. StackPath works magically with W3 Total Cache to speed up your site around the world for as little as $10 a month.', 'w3-total-cache' ); ?>
22
  </p>
23
  <p>
24
- <a href="<?php echo esc_url( W3TC_STACKPATH_SIGNUP_URL ); ?>" target="_blank" id="netdna-stackpath-create-account" class="button-primary"><?php w3tc_e( 'cdn.stackpath2.signUpAndSave', 'Sign Up Now and save!' ); ?></a>
 
 
 
 
 
 
 
 
25
  </p>
26
- <p class="description"><?php w3tc_e( 'cdn.stackpath2.signUpAndSave.description', 'StackPath is a service that lets you speed up your site even more with W3 Total Cache. Sign up now to recieve a special offer!' ); ?></p>
27
  </td>
28
  </tr>
29
  <?php endif; ?>
13
  <?php
14
  w3tc_e(
15
  'cdn.stackpath.widget.v2.no_cdn',
16
+ sprintf(
17
+ // translators: 1 HTML acronym for Content Delivery Network (CDN).
18
+ __( 'W3 Total Cache has detected that you do not have a %1$s configured', 'w3-total-cache' ),
19
+ '<acronym title="' . __( 'Content Delivery Network', 'w3-total-cache' ) . '">' . __( 'CDN', 'w3-total-cache' ) . '</acronym>'
20
+ )
21
  );
22
  ?>
23
  </p>
25
  <?php esc_html_e( 'Enhance your website Performance with StackPath\'s CDN services. StackPath works magically with W3 Total Cache to speed up your site around the world for as little as $10 a month.', 'w3-total-cache' ); ?>
26
  </p>
27
  <p>
28
+ <a href="<?php echo esc_url( W3TC_STACKPATH_SIGNUP_URL ); ?>" target="_blank" id="netdna-stackpath-create-account" class="button-primary"><?php w3tc_e( 'cdn.stackpath2.signUpAndSave', __( 'Sign Up Now and save!', 'w3-total-cache' ) ); ?></a>
29
+ </p>
30
+ <p class="description">
31
+ <?php
32
+ w3tc_e(
33
+ 'cdn.stackpath2.signUpAndSave.description',
34
+ __( 'StackPath is a service that lets you speed up your site even more with W3 Total Cache. Sign up now to recieve a special offer!', 'w3-total-cache' )
35
+ );
36
+ ?>
37
  </p>
 
38
  </td>
39
  </tr>
40
  <?php endif; ?>
Cdn_StackPath2_Widget_View_Unauthorized.php CHANGED
@@ -11,8 +11,11 @@ if ( ! defined( 'W3TC' ) ) {
11
  <?php
12
  w3tc_e(
13
  'cdn.stackpath.widget.v2.no_cdn',
14
- 'W3 Total Cache has detected that you do not have a <acronym title="Content Delivery Network">CDN</acronym>
15
- configured'
 
 
 
16
  );
17
  ?>
18
  </p>
@@ -22,8 +25,11 @@ if ( ! defined( 'W3TC' ) ) {
22
  <?php
23
  w3tc_e(
24
  'cdn.stackpath.widget.v2.header',
25
- "Enhance your website performance by adding StackPath's (<acronym title='Content Delivery Network'>CDN</acronym>)
26
- service to your site."
 
 
 
27
  );
28
  ?>
29
  </p>
@@ -33,7 +39,7 @@ if ( ! defined( 'W3TC' ) ) {
33
  <?php
34
  w3tc_e(
35
  'cdn.stackpath2.widget.v2.works_magically',
36
- 'StackPath works magically with W3 Total Cache to speed up your site around the world for as little as $10 per month.'
37
  );
38
  ?>
39
  </p>
@@ -46,9 +52,15 @@ if ( ! defined( 'W3TC' ) ) {
46
  <?php
47
  w3tc_e(
48
  'cdn.stackpath2.widget.v2.existing',
49
- "If you're an existing StackPath customer, enable <acronym title='Content Delivery Network'>CDN</acronym>
50
- and Authorize. If you need help configuring your <acronym title='Content Delivery Network'>CDN</acronym>,
51
- we also offer Premium Services to assist you."
 
 
 
 
 
 
52
  );
53
  ?>
54
  </p>
11
  <?php
12
  w3tc_e(
13
  'cdn.stackpath.widget.v2.no_cdn',
14
+ sprintf(
15
+ // translators: 1 HTML acronym for Content Delivery Network (CDN).
16
+ __( 'W3 Total Cache has detected that you do not have a %1$s configured', 'w3-total-cache' ),
17
+ '<acronym title="' . __( 'Content Delivery Network', 'w3-total-cache' ) . '">' . __( 'CDN', 'w3-total-cache' ) . '</acronym>'
18
+ )
19
  );
20
  ?>
21
  </p>
25
  <?php
26
  w3tc_e(
27
  'cdn.stackpath.widget.v2.header',
28
+ sprintf(
29
+ // translators: 1 HTML acronym for Content Delivery Network (CDN).
30
+ __( 'Enhance your website performance by adding StackPath\'s (%1$s) service to your site.', 'w3-total-cache' ),
31
+ '<acronym title="' . __( 'Content Delivery Network', 'w3-total-cache' ) . '">' . __( 'CDN', 'w3-total-cache' ) . '</acronym>'
32
+ )
33
  );
34
  ?>
35
  </p>
39
  <?php
40
  w3tc_e(
41
  'cdn.stackpath2.widget.v2.works_magically',
42
+ __( 'StackPath works magically with W3 Total Cache to speed up your site around the world for as little as $10 per month.', 'w3-total-cache' )
43
  );
44
  ?>
45
  </p>
52
  <?php
53
  w3tc_e(
54
  'cdn.stackpath2.widget.v2.existing',
55
+ sprintf(
56
+ // translators: 1 HTML acronym for Content Delivery Network (CDN).
57
+ __(
58
+ 'If you\'re an existing StackPath customer, enable %1$s and Authorize. If you need help configuring
59
+ your %1$s, we also offer Premium Services to assist you.',
60
+ 'w3-total-cache'
61
+ ),
62
+ '<acronym title="' . __( 'Content Delivery Network', 'w3-total-cache' ) . '">' . __( 'CDN', 'w3-total-cache' ) . '</acronym>'
63
+ )
64
  );
65
  ?>
66
  </p>
Cdn_StackPath_Page_View.php CHANGED
@@ -9,8 +9,8 @@ if ( ! defined( 'W3TC' ) ) {
9
  <tr>
10
  <th style="width: 300px;"><label><?php esc_html_e( 'Create account:', 'w3-total-cache' ); ?></label></th>
11
  <td>
12
- <a href="<?php echo esc_url( W3TC_STACKPATH_SIGNUP_URL ); ?>" target="_blank" id="netdna-stackpath-create-account" class="button-primary"><?php w3tc_e( 'cdn.stackpath.signUpAndSave', 'Sign Up Now and save!' ); ?></a>
13
- <p class="description"><?php w3tc_e( 'cdn.stackpath.signUpAndSave.description', 'StackPath is a service that lets you speed up your site even more with W3 Total Cache. Sign up now and save!' ); ?></p>
14
  </td>
15
  </tr>
16
  <?php endif; ?>
9
  <tr>
10
  <th style="width: 300px;"><label><?php esc_html_e( 'Create account:', 'w3-total-cache' ); ?></label></th>
11
  <td>
12
+ <a href="<?php echo esc_url( W3TC_STACKPATH_SIGNUP_URL ); ?>" target="_blank" id="netdna-stackpath-create-account" class="button-primary"><?php w3tc_e( 'cdn.stackpath.signUpAndSave', __( 'Sign Up Now and save!', 'w3-total-cache' ) ); ?></a>
13
+ <p class="description"><?php w3tc_e( 'cdn.stackpath.signUpAndSave.description', __( 'StackPath is a service that lets you speed up your site even more with W3 Total Cache. Sign up now and save!', 'w3-total-cache' ) ); ?></p>
14
  </td>
15
  </tr>
16
  <?php endif; ?>
Cdn_StackPath_Widget_View_Unauthorized.php CHANGED
@@ -6,12 +6,34 @@ if ( ! defined( 'W3TC' ) ) {
6
  }
7
  ?>
8
  <div id="stackpath-widget" class="w3tcstackpath_signup">
9
- <p><?php w3tc_e( 'cdn.stackpath.widget.header', 'Dramatically increase website speeds in just a few clicks! Add the StackPath content delivery network (<acronym title="Content Delivery Network">CDN</acronym>) service to your site.' ); ?></p>
 
 
 
 
 
 
 
 
 
 
 
10
  <h4 class="w3tcstackpath_signup_h4"><?php esc_html_e( 'New customers', 'w3-total-cache' ); ?></h4>
11
- <p><?php w3tc_e( 'cdn.stackpath.widget.works_magically', 'StackPath works magically with W3 Total Cache.' ); ?></p>
12
  <a class="button-primary" href="<?php echo esc_url( W3TC_STACKPATH_SIGNUP_URL ); ?>" target="_blank"><?php esc_html_e( 'Sign Up Now ', 'w3-total-cache' ); ?></a>
13
  <p><!--span class="desc"><?php esc_html_e( 'Exclusive offers availabel for W3TC users!', 'w3-total-cache' ); ?></span></p>-->
14
  <h4 class="w3tcstackpath_signup_h4"><?php esc_html_e( 'Current customers', 'w3-total-cache' ); ?></h4>
15
- <p><?php w3tc_e( 'cdn.stackpath.widget.existing', "If you're an existing StackPath customer, enable <acronym title='Content Delivery Network'>CDN</acronym> and:" ); ?></p>
 
 
 
 
 
 
 
 
 
 
 
16
  <a class="button-primary" href="<?php echo esc_url( wp_nonce_url( Util_Ui::admin_url( 'admin.php?page=w3tc_cdn' ), 'w3tc' ) ); ?>" target="_blank"><?php esc_html_e( 'Authorize', 'w3-total-cache' ); ?></a>
17
  </div>
6
  }
7
  ?>
8
  <div id="stackpath-widget" class="w3tcstackpath_signup">
9
+ <p>
10
+ <?php
11
+ w3tc_e(
12
+ 'cdn.stackpath.widget.header',
13
+ sprintf(
14
+ // translators: 1 HTML acronym for Content Delivery Network (CDN).
15
+ __( 'Dramatically increase website speeds in just a few clicks! Add the StackPath content delivery network (%1$s) service to your site.', 'w3-total-cache' ),
16
+ '<acronym title="' . __( 'Content Delivery Network', 'w3-total-cache' ) . '">' . __( 'CDN', 'w3-total-cache' ) . '</acronym>'
17
+ )
18
+ );
19
+ ?>
20
+ </p>
21
  <h4 class="w3tcstackpath_signup_h4"><?php esc_html_e( 'New customers', 'w3-total-cache' ); ?></h4>
22
+ <p><?php w3tc_e( 'cdn.stackpath.widget.works_magically', __( 'StackPath works magically with W3 Total Cache.', 'w3-total-cache' ) ); ?></p>
23
  <a class="button-primary" href="<?php echo esc_url( W3TC_STACKPATH_SIGNUP_URL ); ?>" target="_blank"><?php esc_html_e( 'Sign Up Now ', 'w3-total-cache' ); ?></a>
24
  <p><!--span class="desc"><?php esc_html_e( 'Exclusive offers availabel for W3TC users!', 'w3-total-cache' ); ?></span></p>-->
25
  <h4 class="w3tcstackpath_signup_h4"><?php esc_html_e( 'Current customers', 'w3-total-cache' ); ?></h4>
26
+ <p>
27
+ <?php
28
+ w3tc_e(
29
+ 'cdn.stackpath.widget.existing',
30
+ sprintf(
31
+ // translators: 1 HTML acronym for Content Delivery Network (CDN).
32
+ __( 'If you\'re an existing StackPath customer, enable %1$s and:', 'w3-total-cache' ),
33
+ '<acronym title="' . __( 'Content Delivery Network', 'w3-total-cache' ) . '">' . __( 'CDN', 'w3-total-cache' ) . '</acronym>'
34
+ )
35
+ );
36
+ ?>
37
+ </p>
38
  <a class="button-primary" href="<?php echo esc_url( wp_nonce_url( Util_Ui::admin_url( 'admin.php?page=w3tc_cdn' ), 'w3tc' ) ); ?>" target="_blank"><?php esc_html_e( 'Authorize', 'w3-total-cache' ); ?></a>
39
  </div>
Cdnfsd_GeneralPage_View.php CHANGED
@@ -5,34 +5,44 @@ if ( ! defined( 'W3TC' ) ) {
5
  die();
6
  }
7
  ?>
8
- <p><?php w3tc_e( 'cdnfsd.general.header', 'Host the entire website with your compatible <acronym title="Content Delivery Network">CDN</acronym> provider to reduce page load time.' ); ?>
9
- <?php if ( ! $cdnfsd_enabled ) : ?>
10
  <?php
11
- wp_kses(
 
12
  sprintf(
13
- // translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag,
14
- // translators: 3 opening HTML a tag to W3TC MaxCDN Signup admin page, 4 closing HTML a tag.
15
- __(
16
- 'If you do not have a %1$sCDN%2$s provider try StackPath. %3$sSign up now to enjoy a special offer!%4$s.',
17
- 'w3-total-cache'
18
- ),
19
- '<acronym title="' . esc_attr__( 'Content Delivery Network', 'w3-total-cache' ) . '">',
20
- '</acronym>',
21
- '<a href="' . esc_url( wp_nonce_url( Util_Ui::admin_url( 'admin.php?page=w3tc_dashboard&w3tc_cdn_maxcdn_signup' ), 'w3tc' ) ) . '" target="_blank">',
22
- '</a>'
23
- ),
24
- array(
25
- 'acronym' => array(
26
- 'title' => array(),
27
- ),
28
- 'a' => array(
29
- 'href' => array(),
30
- 'target' => array(),
31
- ),
32
  )
33
  );
34
  ?>
35
- <?php endif; ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  </p>
37
 
38
  <table class="<?php echo esc_attr( Util_Ui::table_class() ); ?>">
5
  die();
6
  }
7
  ?>
8
+ <p>
 
9
  <?php
10
+ w3tc_e(
11
+ 'cdnfsd.general.header',
12
  sprintf(
13
+ // translators: 1 HTML acronym for Content Delivery Network (CDN).
14
+ __( 'Host the entire website with your compatible %1$s provider to reduce page load time.', 'w3-total-cache' ),
15
+ '<acronym title="' . __( 'Content Delivery Network', 'w3-total-cache' ) . '">' . __( 'CDN', 'w3-total-cache' ) . '</acronym>'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  )
17
  );
18
  ?>
19
+ <?php if ( ! $cdnfsd_enabled ) : ?>
20
+ <?php
21
+ wp_kses(
22
+ sprintf(
23
+ // translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag,
24
+ // translators: 3 opening HTML a tag to W3TC MaxCDN Signup admin page, 4 closing HTML a tag.
25
+ __(
26
+ 'If you do not have a %1$sCDN%2$s provider try StackPath. %3$sSign up now to enjoy a special offer!%4$s.',
27
+ 'w3-total-cache'
28
+ ),
29
+ '<acronym title="' . esc_attr__( 'Content Delivery Network', 'w3-total-cache' ) . '">',
30
+ '</acronym>',
31
+ '<a href="' . esc_url( wp_nonce_url( Util_Ui::admin_url( 'admin.php?page=w3tc_dashboard&w3tc_cdn_maxcdn_signup' ), 'w3tc' ) ) . '" target="_blank">',
32
+ '</a>'
33
+ ),
34
+ array(
35
+ 'acronym' => array(
36
+ 'title' => array(),
37
+ ),
38
+ 'a' => array(
39
+ 'href' => array(),
40
+ 'target' => array(),
41
+ ),
42
+ )
43
+ );
44
+ ?>
45
+ <?php endif; ?>
46
  </p>
47
 
48
  <table class="<?php echo esc_attr( Util_Ui::table_class() ); ?>">
Cdnfsd_Plugin_Admin.php CHANGED
@@ -8,9 +8,6 @@ class Cdnfsd_Plugin_Admin {
8
 
9
  // attach to actions without firing class loading at all without need
10
  if ( $cdnfsd_engine == 'cloudfront' ) {
11
- add_action( 'admin_print_scripts-performance_page_w3tc_cdn', array(
12
- '\W3TC\Cdnfsd_CloudFront_Page',
13
- 'admin_print_scripts_performance_page_w3tc_cdn' ) );
14
  add_action( 'w3tc_ajax', array(
15
  '\W3TC\Cdnfsd_CloudFront_Popup',
16
  'w3tc_ajax' ) );
@@ -18,9 +15,6 @@ class Cdnfsd_Plugin_Admin {
18
  '\W3TC\Cdnfsd_CloudFront_Page',
19
  'w3tc_settings_box_cdnfsd' ) );
20
  } elseif ( $cdnfsd_engine == 'limelight' ) {
21
- add_action( 'admin_print_scripts-performance_page_w3tc_cdn', array(
22
- '\W3TC\Cdnfsd_LimeLight_Page',
23
- 'admin_print_scripts_performance_page_w3tc_cdn' ) );
24
  add_action( 'w3tc_ajax', array(
25
  '\W3TC\Cdnfsd_LimeLight_Popup',
26
  'w3tc_ajax' ) );
@@ -28,9 +22,6 @@ class Cdnfsd_Plugin_Admin {
28
  '\W3TC\Cdnfsd_LimeLight_Page',
29
  'w3tc_settings_box_cdnfsd' ) );
30
  } elseif ( $cdnfsd_engine == 'maxcdn' ) {
31
- add_action( 'admin_print_scripts-performance_page_w3tc_cdn', array(
32
- '\W3TC\Cdnfsd_MaxCdn_Page',
33
- 'admin_print_scripts_performance_page_w3tc_cdn' ) );
34
  add_action( 'w3tc_ajax', array(
35
  '\W3TC\Cdnfsd_MaxCdn_Popup',
36
  'w3tc_ajax' ) );
@@ -38,9 +29,6 @@ class Cdnfsd_Plugin_Admin {
38
  '\W3TC\Cdnfsd_MaxCdn_Page',
39
  'w3tc_settings_box_cdnfsd' ) );
40
  } elseif ( $cdnfsd_engine == 'stackpath' ) {
41
- add_action( 'admin_print_scripts-performance_page_w3tc_cdn', array(
42
- '\W3TC\Cdnfsd_StackPath_Page',
43
- 'admin_print_scripts_performance_page_w3tc_cdn' ) );
44
  add_action( 'w3tc_ajax', array(
45
  '\W3TC\Cdnfsd_StackPath_Popup',
46
  'w3tc_ajax' ) );
@@ -48,9 +36,6 @@ class Cdnfsd_Plugin_Admin {
48
  '\W3TC\Cdnfsd_StackPath_Page',
49
  'w3tc_settings_box_cdnfsd' ) );
50
  } elseif ( $cdnfsd_engine == 'stackpath2' ) {
51
- add_action( 'admin_print_scripts-performance_page_w3tc_cdn', array(
52
- '\W3TC\Cdnfsd_StackPath2_Page',
53
- 'admin_print_scripts_performance_page_w3tc_cdn' ) );
54
  add_action( 'w3tc_ajax', array(
55
  '\W3TC\Cdnfsd_StackPath2_Popup',
56
  'w3tc_ajax' ) );
8
 
9
  // attach to actions without firing class loading at all without need
10
  if ( $cdnfsd_engine == 'cloudfront' ) {
 
 
 
11
  add_action( 'w3tc_ajax', array(
12
  '\W3TC\Cdnfsd_CloudFront_Popup',
13
  'w3tc_ajax' ) );
15
  '\W3TC\Cdnfsd_CloudFront_Page',
16
  'w3tc_settings_box_cdnfsd' ) );
17
  } elseif ( $cdnfsd_engine == 'limelight' ) {
 
 
 
18
  add_action( 'w3tc_ajax', array(
19
  '\W3TC\Cdnfsd_LimeLight_Popup',
20
  'w3tc_ajax' ) );
22
  '\W3TC\Cdnfsd_LimeLight_Page',
23
  'w3tc_settings_box_cdnfsd' ) );
24
  } elseif ( $cdnfsd_engine == 'maxcdn' ) {
 
 
 
25
  add_action( 'w3tc_ajax', array(
26
  '\W3TC\Cdnfsd_MaxCdn_Popup',
27
  'w3tc_ajax' ) );
29
  '\W3TC\Cdnfsd_MaxCdn_Page',
30
  'w3tc_settings_box_cdnfsd' ) );
31
  } elseif ( $cdnfsd_engine == 'stackpath' ) {
 
 
 
32
  add_action( 'w3tc_ajax', array(
33
  '\W3TC\Cdnfsd_StackPath_Popup',
34
  'w3tc_ajax' ) );
36
  '\W3TC\Cdnfsd_StackPath_Page',
37
  'w3tc_settings_box_cdnfsd' ) );
38
  } elseif ( $cdnfsd_engine == 'stackpath2' ) {
 
 
 
39
  add_action( 'w3tc_ajax', array(
40
  '\W3TC\Cdnfsd_StackPath2_Popup',
41
  'w3tc_ajax' ) );
Extension_CloudFlare_Plugin_Admin.php CHANGED
@@ -102,7 +102,6 @@ class Extension_CloudFlare_Plugin_Admin {
102
 
103
  // own settings page.
104
  add_action( 'w3tc_extension_page_cloudflare', array( '\W3TC\Extension_CloudFlare_Page', 'w3tc_extension_page_cloudflare' ) );
105
- add_action( 'admin_print_scripts-performance_page_w3tc_extensions', array( '\W3TC\Extension_CloudFlare_Page', 'admin_print_scripts_w3tc_extensions' ) );
106
 
107
  add_action( 'w3tc_ajax', array( '\W3TC\Extension_CloudFlare_Popup', 'w3tc_ajax' ) );
108
 
@@ -110,7 +109,6 @@ class Extension_CloudFlare_Plugin_Admin {
110
 
111
  if ( empty( $cdnfsd_engine ) || 'cloudflare' === $cdnfsd_engine ) {
112
  add_action( 'w3tc_settings_box_cdnfsd', array( '\W3TC\Extension_CloudFlare_Page', 'w3tc_settings_box_cdnfsd' ) );
113
- add_action( 'admin_print_scripts-performance_page_w3tc_cdn', array( '\W3TC\Extension_CloudFlare_Page', 'admin_print_scripts_w3tc_extensions' ) );
114
  }
115
 
116
  // add notices about api health.
102
 
103
  // own settings page.
104
  add_action( 'w3tc_extension_page_cloudflare', array( '\W3TC\Extension_CloudFlare_Page', 'w3tc_extension_page_cloudflare' ) );
 
105
 
106
  add_action( 'w3tc_ajax', array( '\W3TC\Extension_CloudFlare_Popup', 'w3tc_ajax' ) );
107
 
109
 
110
  if ( empty( $cdnfsd_engine ) || 'cloudflare' === $cdnfsd_engine ) {
111
  add_action( 'w3tc_settings_box_cdnfsd', array( '\W3TC\Extension_CloudFlare_Page', 'w3tc_settings_box_cdnfsd' ) );
 
112
  }
113
 
114
  // add notices about api health.
Extension_FeedBurner_Page_View.php CHANGED
@@ -6,17 +6,17 @@ if ( ! defined( 'W3TC' ) ) {
6
  }
7
  ?>
8
  <p>
9
- Jump to:
10
  <a href="admin.php?page=w3tc_general"><?php esc_html_e( 'Main Menu', 'w3-total-cache' ); ?></a> |
11
  <a href="admin.php?page=w3tc_extensions"><?php esc_html_e( 'Extensions', 'w3-total-cache' ); ?></a>
12
  </p>
13
  <p>
14
- FeedBurner extension is currently
15
  <?php
 
16
  if ( $config->is_extension_active_frontend( 'feedburner' ) ) {
17
- echo '<span class="w3tc-enabled">enabled</span>';
18
  } else {
19
- echo '<span class="w3tc-disabled">disabled</span>';
20
  }
21
  ?>
22
  .
6
  }
7
  ?>
8
  <p>
9
+ <?php esc_html_e( 'Jump to:', 'w3-total-cache' ); ?>
10
  <a href="admin.php?page=w3tc_general"><?php esc_html_e( 'Main Menu', 'w3-total-cache' ); ?></a> |
11
  <a href="admin.php?page=w3tc_extensions"><?php esc_html_e( 'Extensions', 'w3-total-cache' ); ?></a>
12
  </p>
13
  <p>
 
14
  <?php
15
+ esc_html_e( 'FeedBurner extension is currently', 'w3-total-cache' );
16
  if ( $config->is_extension_active_frontend( 'feedburner' ) ) {
17
+ echo '<span class="w3tc-enabled">' . esc_html__( 'enabled', 'w3-total-cache' ) . '</span>';
18
  } else {
19
+ echo '<span class="w3tc-disabled">' . esc_html__( 'disabled', 'w3-total-cache' ) . '</span>';
20
  }
21
  ?>
22
  .
Extension_ImageService_Plugin_Admin.php CHANGED
@@ -540,30 +540,30 @@ class Extension_ImageService_Plugin_Admin {
540
  'revert' => wp_create_nonce( 'w3tc_imageservice_revert' ),
541
  ),
542
  'lang' => array(
543
- 'convert' => __( 'Convert', 'w3-total_cache' ),
544
- 'sending' => __( 'Sending...', 'w3-total_cache' ),
545
- 'submitted' => __( 'Submitted', 'w3-total_cache' ),
546
- 'processing' => __( 'Processing...', 'w3-total_cache' ),
547
- 'converted' => __( 'Converted', 'w3-total_cache' ),
548
- 'notConverted' => __( 'Not converted', 'w3-total_cache' ),
549
- 'reverting' => __( 'Reverting...', 'w3-total_cache' ),
550
- 'reverted' => __( 'Reverted', 'w3-total_cache' ),
551
- 'revert' => __( 'Revert', 'w3-total_cache' ),
552
- 'error' => __( 'Error', 'w3-total_cache' ),
553
- 'ajaxFail' => __( 'Failed to retrieve a response. Please reload the page to try again.', 'w3-total_cache' ),
554
- 'apiError' => __( 'API error. Please reload the page to try again,', 'w3-total_cache' ),
555
- 'refresh' => __( 'Refresh', 'w3-total_cache' ),
556
- 'refreshing' => __( 'Refreshing...', 'w3-total_cache' ),
557
- 'settings' => __( 'Settings', 'w3-total_cache' ),
558
  'submittedAllDesc' => sprintf(
559
  // translators: 1: HTML anchor open tag, 2: HTML anchor close tag.
560
- __( 'Images queued for conversion. Progress can be seen in the %1$sMedia Library%2$s.', 'w3-total_cache' ),
561
  '<a href="' . esc_url( Util_Ui::admin_url( 'upload.php?mode=list' ) ) . '">',
562
  '</a>'
563
  ),
564
  'notConvertedDesc' => sprintf(
565
  // translators: 1: HTML anchor open tag, 2: HTML anchor close tag.
566
- __( 'The converted image would be larger than the original; conversion canceled. %1$sLearn more%2$s.', 'w3-total_cache' ),
567
  '<a target="_blank" href="' . esc_url(
568
  'https://www.boldgrid.com/support/w3-total-cache/image-service#conversion-canceled/?utm_source=w3tc&utm_medium=conversion_canceled&utm_campaign=imageservice'
569
  ) . '">',
@@ -681,7 +681,7 @@ class Extension_ImageService_Plugin_Admin {
681
  <?php
682
  printf(
683
  // translators: 1: HTML anchor open tag, 2: HTML anchor close tag.
684
- esc_html__( 'The converted image would be larger than the original; conversion canceled. %1$sLearn more%2$s.', 'w3-total_cache' ),
685
  '<a target="_blank" href="' . esc_url(
686
  'https://www.boldgrid.com/support/w3-total-cache/image-service#conversion-canceled/?utm_source=w3tc&utm_medium=conversion_canceled&utm_campaign=imageservice'
687
  ) . '">',
540
  'revert' => wp_create_nonce( 'w3tc_imageservice_revert' ),
541
  ),
542
  'lang' => array(
543
+ 'convert' => __( 'Convert', 'w3-total-cache' ),
544
+ 'sending' => __( 'Sending...', 'w3-total-cache' ),
545
+ 'submitted' => __( 'Submitted', 'w3-total-cache' ),
546
+ 'processing' => __( 'Processing...', 'w3-total-cache' ),
547
+ 'converted' => __( 'Converted', 'w3-total-cache' ),
548
+ 'notConverted' => __( 'Not converted', 'w3-total-cache' ),
549
+ 'reverting' => __( 'Reverting...', 'w3-total-cache' ),
550
+ 'reverted' => __( 'Reverted', 'w3-total-cache' ),
551
+ 'revert' => __( 'Revert', 'w3-total-cache' ),
552
+ 'error' => __( 'Error', 'w3-total-cache' ),
553
+ 'ajaxFail' => __( 'Failed to retrieve a response. Please reload the page to try again.', 'w3-total-cache' ),
554
+ 'apiError' => __( 'API error. Please reload the page to try again,', 'w3-total-cache' ),
555
+ 'refresh' => __( 'Refresh', 'w3-total-cache' ),
556
+ 'refreshing' => __( 'Refreshing...', 'w3-total-cache' ),
557
+ 'settings' => __( 'Settings', 'w3-total-cache' ),
558
  'submittedAllDesc' => sprintf(
559
  // translators: 1: HTML anchor open tag, 2: HTML anchor close tag.
560
+ __( 'Images queued for conversion. Progress can be seen in the %1$sMedia Library%2$s.', 'w3-total-cache' ),
561
  '<a href="' . esc_url( Util_Ui::admin_url( 'upload.php?mode=list' ) ) . '">',
562
  '</a>'
563
  ),
564
  'notConvertedDesc' => sprintf(
565
  // translators: 1: HTML anchor open tag, 2: HTML anchor close tag.
566
+ __( 'The converted image would be larger than the original; conversion canceled. %1$sLearn more%2$s.', 'w3-total-cache' ),
567
  '<a target="_blank" href="' . esc_url(
568
  'https://www.boldgrid.com/support/w3-total-cache/image-service#conversion-canceled/?utm_source=w3tc&utm_medium=conversion_canceled&utm_campaign=imageservice'
569
  ) . '">',
681
  <?php
682
  printf(
683
  // translators: 1: HTML anchor open tag, 2: HTML anchor close tag.
684
+ esc_html__( 'The converted image would be larger than the original; conversion canceled. %1$sLearn more%2$s.', 'w3-total-cache' ),
685
  '<a target="_blank" href="' . esc_url(
686
  'https://www.boldgrid.com/support/w3-total-cache/image-service#conversion-canceled/?utm_source=w3tc&utm_medium=conversion_canceled&utm_campaign=imageservice'
687
  ) . '">',
Extension_NewRelic_GeneralPage_View.php CHANGED
@@ -15,14 +15,11 @@ Util_Ui::config_overloading_button( array( 'key' => 'newrelic.configuration_over
15
  <?php
16
  echo wp_kses(
17
  sprintf(
18
- w3tc_er(
19
- 'newrelic.general.header',
20
- // translators: 1 opening HTML a tag to W3TC NewRelic Signup page, 2 closing HTML a tag,
21
- // translators: 3 opening HTML a tag to NewRelic documentation for PHP, 4 closing HTML a tag.
22
- __(
23
- 'New Relic may not be installed or not active on this server. %1$sSign up for a (free) account%2$s. Visit %3$sNew Relic%4$s for installation instructions.',
24
- 'w3-total-cache'
25
- )
26
  ),
27
  '<a href="' . esc_url( W3TC_NEWRELIC_SIGNUP_URL ) . '" target="_blank">',
28
  '</a>',
15
  <?php
16
  echo wp_kses(
17
  sprintf(
18
+ // translators: 1 opening HTML a tag to W3TC NewRelic Signup page, 2 closing HTML a tag,
19
+ // translators: 3 opening HTML a tag to NewRelic documentation for PHP, 4 closing HTML a tag.
20
+ __(
21
+ 'New Relic may not be installed or not active on this server. %1$sSign up for a (free) account%2$s. Visit %3$sNew Relic%4$s for installation instructions.',
22
+ 'w3-total-cache'
 
 
 
23
  ),
24
  '<a href="' . esc_url( W3TC_NEWRELIC_SIGNUP_URL ) . '" target="_blank">',
25
  '</a>',
Extension_NewRelic_Page_View_Apm.php CHANGED
@@ -7,12 +7,12 @@ if ( ! defined( 'W3TC' ) ) {
7
 
8
  ?>
9
  <p>
10
- Jump to:
11
  <a href="admin.php?page=w3tc_general"><?php esc_html_e( 'Main Menu', 'w3-total-cache' ); ?></a> |
12
  <a href="admin.php?page=w3tc_extensions"><?php esc_html_e( 'Extensions', 'w3-total-cache' ); ?></a>
13
  </p>
14
  <p>
15
- NewRelic extension is currently
16
  <?php
17
  if ( $config->is_extension_active_frontend( 'newrelic' ) ) {
18
  echo '<span class="w3tc-enabled">' . esc_html__( 'enabled', 'w3-total-cache' ) . '</span>';
7
 
8
  ?>
9
  <p>
10
+ <?php esc_html_e( 'Jump to:', 'w3-total-cache' ); ?>
11
  <a href="admin.php?page=w3tc_general"><?php esc_html_e( 'Main Menu', 'w3-total-cache' ); ?></a> |
12
  <a href="admin.php?page=w3tc_extensions"><?php esc_html_e( 'Extensions', 'w3-total-cache' ); ?></a>
13
  </p>
14
  <p>
15
+ <?php esc_html_e( 'NewRelic extension is currently', 'w3-total-cache' ); ?>
16
  <?php
17
  if ( $config->is_extension_active_frontend( 'newrelic' ) ) {
18
  echo '<span class="w3tc-enabled">' . esc_html__( 'enabled', 'w3-total-cache' ) . '</span>';
Extension_NewRelic_Service.php CHANGED
@@ -93,12 +93,19 @@ class Extension_NewRelic_Service {
93
  $os_version = '';
94
  }
95
 
96
- $verified[__( 'Operating System', 'w3-total-cache' )] = ( $os_check ) ? $supported_string :
97
- sprintf( __( 'Not Supported. (%s %s See %s page.)', 'w3-total-cache' ),
98
- $os_name, $os_version,
99
- '<a href="https://newrelic.com/docs/php/new-relic-for-php#requirements" target="_blank">
100
- NewRelic Requirements</a>'
101
- );
 
 
 
 
 
 
 
102
 
103
  /**
104
  * Apache 2.2 or 2.4 via mod_php
@@ -130,12 +137,19 @@ class Extension_NewRelic_Service {
130
  $ws_name = $server_software;
131
  $ws_version = '';
132
  }
133
- $verified[__( 'Web Server', 'w3-total-cache' )] = $ws_check ? $supported_string :
134
- sprintf( __( 'Not Supported. (%s %s See %s page.)', 'w3-total-cache' ),
135
- $ws_name, $ws_version,
136
- '<a href="https://newrelic.com/docs/php/new-relic-for-php#requirements" target="_blank">
137
- NewRelic Requirements</a>'
138
- );
 
 
 
 
 
 
 
139
  return $verified;
140
  }
141
 
93
  $os_version = '';
94
  }
95
 
96
+ $verified[ __( 'Operating System', 'w3-total-cache' ) ] = ( $os_check ) ?
97
+ $supported_string :
98
+ sprintf(
99
+ // translators: 1 OS name, 2 OS version, 3 opening HTML a tag to NewRelic for PHP requirments, 4 closing HTML a tag.
100
+ __(
101
+ 'Not Supported. (%1$s %2$s See %3$sNewRelic Requirements%4$s page.)',
102
+ 'w3-total-cache'
103
+ ),
104
+ $os_name,
105
+ $os_version,
106
+ '<a href="https://docs.newrelic.com/docs/apm/agents/php-agent/getting-started/php-agent-compatibility-requirements/" target="_blank">',
107
+ '</a>'
108
+ );
109
 
110
  /**
111
  * Apache 2.2 or 2.4 via mod_php
137
  $ws_name = $server_software;
138
  $ws_version = '';
139
  }
140
+ $verified[ __( 'Web Server', 'w3-total-cache' ) ] = $ws_check ?
141
+ $supported_string :
142
+ sprintf(
143
+ // translators: 1 Web Server name, 2 Web Server version, 3 opening HTML a tag to NewRelic requirments for php, 4 closing HTML a tag.
144
+ __(
145
+ 'Not Supported. (%1$s %2$s See %3$sNewRelic Requirements%4$s page.)',
146
+ 'w3-total-cache'
147
+ ),
148
+ $ws_name,
149
+ $ws_version,
150
+ '<a href="https://docs.newrelic.com/docs/apm/agents/php-agent/getting-started/php-agent-compatibility-requirements/" target="_blank">',
151
+ '</a>'
152
+ );
153
  return $verified;
154
  }
155
 
Extension_Swarmify_Page_View.php CHANGED
@@ -6,12 +6,12 @@ if ( ! defined( 'W3TC' ) ) {
6
  }
7
  ?>
8
  <p>
9
- Jump to:
10
  <a href="admin.php?page=w3tc_general"><?php esc_html_e( 'Main Menu', 'w3-total-cache' ); ?></a> |
11
  <a href="admin.php?page=w3tc_extensions"><?php esc_html_e( 'Extensions', 'w3-total-cache' ); ?></a>
12
  </p>
13
  <p>
14
- Swarmify extension is currently
15
  <?php
16
  if ( $config->is_extension_active_frontend( 'swarmify' ) ) {
17
  echo '<span class="w3tc-enabled">' . esc_html__( 'enabled', 'w3-total-cache' ) . '</span>';
6
  }
7
  ?>
8
  <p>
9
+ <?php esc_html_e( 'Jump to:', 'w3-total-cache' ); ?>
10
  <a href="admin.php?page=w3tc_general"><?php esc_html_e( 'Main Menu', 'w3-total-cache' ); ?></a> |
11
  <a href="admin.php?page=w3tc_extensions"><?php esc_html_e( 'Extensions', 'w3-total-cache' ); ?></a>
12
  </p>
13
  <p>
14
+ <?php esc_html_e( 'Swarmify extension is currently', 'w3-total-cache' ); ?>
15
  <?php
16
  if ( $config->is_extension_active_frontend( 'swarmify' ) ) {
17
  echo '<span class="w3tc-enabled">' . esc_html__( 'enabled', 'w3-total-cache' ) . '</span>';
Generic_Plugin.php CHANGED
@@ -119,8 +119,9 @@ class Generic_Plugin {
119
  * @return void
120
  */
121
  function init() {
122
- // Load plugin text domain.
123
- load_plugin_textdomain( W3TC_TEXT_DOMAIN, false, plugin_basename( W3TC_DIR ) . '/languages/' );
 
124
 
125
  if ( is_multisite() && ! is_network_admin() ) {
126
  global $w3_current_blog_id, $current_blog;
@@ -680,4 +681,17 @@ class Generic_Plugin {
680
  public function pro_dev_mode() {
681
  echo '<!-- W3 Total Cache is currently running in Pro version Development mode. --><div style="border:2px solid red;text-align:center;font-size:1.2em;color:red"><p><strong>W3 Total Cache is currently running in Pro version Development mode.</strong></p></div>';
682
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
683
  }
119
  * @return void
120
  */
121
  function init() {
122
+ // Load W3TC textdomain for translations.
123
+ $this->reset_l10n();
124
+ load_plugin_textdomain( W3TC_TEXT_DOMAIN, false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
125
 
126
  if ( is_multisite() && ! is_network_admin() ) {
127
  global $w3_current_blog_id, $current_blog;
681
  public function pro_dev_mode() {
682
  echo '<!-- W3 Total Cache is currently running in Pro version Development mode. --><div style="border:2px solid red;text-align:center;font-size:1.2em;color:red"><p><strong>W3 Total Cache is currently running in Pro version Development mode.</strong></p></div>';
683
  }
684
+
685
+ /**
686
+ * Reset the l10n global variables for our text domain.
687
+ *
688
+ * @return void
689
+ *
690
+ * @since 2.2.8
691
+ */
692
+ public function reset_l10n() {
693
+ global $l10n;
694
+
695
+ unset( $l10n['w3-total-cache'] );
696
+ }
697
  }
Generic_Plugin_Admin.php CHANGED
@@ -102,9 +102,6 @@ class Generic_Plugin_Admin {
102
  delete_transient( 'w3tc_message' );
103
  }
104
  }
105
-
106
- // Should be in Support_PluginAdmin, but saving loading file by being here.
107
- add_action( 'admin_print_scripts-performance_page_w3tc_support', array( '\W3TC\Support_Page', 'admin_print_scripts_w3tc_support' ) );
108
  }
109
 
110
  /**
@@ -206,6 +203,178 @@ class Generic_Plugin_Admin {
206
  Util_Activation::deactivate_plugin();
207
  }
208
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
209
  $page_val = Util_Request::get_string( 'page' );
210
  if ( ! empty( $page_val ) ) {
211
  do_action( 'admin_init_' . $page_val );
@@ -400,6 +569,18 @@ class Generic_Plugin_Admin {
400
  add_action( 'admin_notices', array( $this, 'admin_notices' ) );
401
  add_action( 'network_admin_notices', array( $this, 'admin_notices' ) );
402
  }
 
 
 
 
 
 
 
 
 
 
 
 
403
  }
404
  }
405
 
102
  delete_transient( 'w3tc_message' );
103
  }
104
  }
 
 
 
105
  }
106
 
107
  /**
203
  Util_Activation::deactivate_plugin();
204
  }
205
 
206
+ // These have been moved here as the admin_print_scripts-{$suffix} hook with translations won't take the user locale setting
207
+ // into account if it's called too soon, resulting in JS not loading.
208
+
209
+ // Translations are needed as the "prefix" used is based on the menu/page title, which is translated (11+ year old WP bug).
210
+
211
+ // Support page.
212
+ add_action(
213
+ 'admin_print_scripts-' . sanitize_title( __( 'performance', 'w3-total-cache' ) ) . '_page_w3tc_support',
214
+ array(
215
+ '\W3TC\Support_Page',
216
+ 'admin_print_scripts_w3tc_support',
217
+ )
218
+ );
219
+
220
+ // Minify.
221
+ add_action(
222
+ 'admin_print_scripts-' . sanitize_title( __( 'performance', 'w3-total-cache' ) ) . '_page_w3tc_general',
223
+ array(
224
+ '\W3TC\Minify_Plugin_Admin',
225
+ 'admin_print_scripts_w3tc_general',
226
+ )
227
+ );
228
+
229
+ // PageCache.
230
+ add_action(
231
+ 'admin_print_scripts-' . sanitize_title( __( 'performance', 'w3-total-cache' ) ) . '_page_w3tc_pgcache',
232
+ array(
233
+ '\W3TC\PgCache_Page',
234
+ 'admin_print_scripts_w3tc_pgcache',
235
+ )
236
+ );
237
+
238
+ // Extensions.
239
+ add_action(
240
+ 'admin_print_scripts-' . sanitize_title( __( 'performance', 'w3-total-cache' ) ) . '_page_w3tc_extensions',
241
+ array(
242
+ '\W3TC\Extension_CloudFlare_Page',
243
+ 'admin_print_scripts_w3tc_extensions',
244
+ )
245
+ );
246
+
247
+ // Usage Statistics.
248
+ add_action(
249
+ 'admin_print_scripts-' . sanitize_title( __( 'performance', 'w3-total-cache' ) ) . '_page_w3tc_stats',
250
+ array(
251
+ '\W3TC\UsageStatistics_Page',
252
+ 'admin_print_scripts_w3tc_stats',
253
+ )
254
+ );
255
+
256
+ $c = Dispatcher::config();
257
+ $cdn_engine = $c->get_string( 'cdn.engine' );
258
+ $cdnfsd_engine = $c->get_string( 'cdnfsd.engine' );
259
+
260
+ // CDN.
261
+ if ( 'google_drive' === $cdn_engine ) {
262
+ add_action(
263
+ 'admin_print_scripts-' . sanitize_title( __( 'performance', 'w3-total-cache' ) ) . '_page_w3tc_cdn',
264
+ array(
265
+ '\W3TC\Cdn_GoogleDrive_Page',
266
+ 'admin_print_scripts_w3tc_cdn',
267
+ )
268
+ );
269
+ } elseif ( 'highwinds' === $cdn_engine ) {
270
+ add_action(
271
+ 'admin_print_scripts-' . sanitize_title( __( 'performance', 'w3-total-cache' ) ) . '_page_w3tc_cdn',
272
+ array(
273
+ '\W3TC\Cdn_Highwinds_Page',
274
+ 'admin_print_scripts_w3tc_cdn',
275
+ )
276
+ );
277
+ } elseif ( 'limelight' === $cdn_engine ) {
278
+ add_action(
279
+ 'admin_print_scripts-' . sanitize_title( __( 'performance', 'w3-total-cache' ) ) . '_page_w3tc_cdn',
280
+ array(
281
+ '\W3TC\Cdn_LimeLight_Page',
282
+ 'admin_print_scripts_w3tc_cdn',
283
+ )
284
+ );
285
+ } elseif ( 'maxcdn' === $cdn_engine ) {
286
+ add_action(
287
+ 'admin_print_scripts-' . sanitize_title( __( 'performance', 'w3-total-cache' ) ) . '_page_w3tc_cdn',
288
+ array(
289
+ '\W3TC\Cdn_MaxCdn_Page',
290
+ 'admin_print_scripts_w3tc_cdn',
291
+ )
292
+ );
293
+ } elseif ( 'rackspace_cdn' === $cdn_engine ) {
294
+ add_action(
295
+ 'admin_print_scripts-' . sanitize_title( __( 'performance', 'w3-total-cache' ) ) . '_page_w3tc_cdn',
296
+ array(
297
+ '\W3TC\Cdn_RackSpaceCdn_Page',
298
+ 'admin_print_scripts_w3tc_cdn',
299
+ )
300
+ );
301
+ } elseif ( 'rscf' === $cdn_engine ) {
302
+ add_action(
303
+ 'admin_print_scripts-' . sanitize_title( __( 'performance', 'w3-total-cache' ) ) . '_page_w3tc_cdn',
304
+ array(
305
+ '\W3TC\Cdn_RackSpaceCloudFiles_Page',
306
+ 'admin_print_scripts_w3tc_cdn',
307
+ )
308
+ );
309
+ } elseif ( 'stackpath' === $cdn_engine ) {
310
+ add_action(
311
+ 'admin_print_scripts-' . sanitize_title( __( 'performance', 'w3-total-cache' ) ) . '_page_w3tc_cdn',
312
+ array(
313
+ '\W3TC\Cdn_StackPath_Page',
314
+ 'admin_print_scripts_w3tc_cdn',
315
+ )
316
+ );
317
+ } elseif ( 'stackpath2' === $cdn_engine ) {
318
+ add_action(
319
+ 'admin_print_scripts-' . sanitize_title( __( 'performance', 'w3-total-cache' ) ) . '_page_w3tc_cdn',
320
+ array(
321
+ '\W3TC\Cdn_StackPath2_Page',
322
+ 'admin_print_scripts_w3tc_cdn',
323
+ )
324
+ );
325
+ }
326
+
327
+ // CDNFSD.
328
+ if ( 'cloudflare' === $cdnfsd_engine ) {
329
+ add_action(
330
+ 'admin_print_scripts-' . sanitize_title( __( 'performance', 'w3-total-cache' ) ) . '_page_w3tc_cdn',
331
+ array(
332
+ '\W3TC\Extension_CloudFlare_Page',
333
+ 'admin_print_scripts_w3tc_extensions',
334
+ )
335
+ );
336
+ } elseif ( 'cloudfront' === $cdnfsd_engine ) {
337
+ add_action(
338
+ 'admin_print_scripts-' . sanitize_title( __( 'performance', 'w3-total-cache' ) ) . '_page_w3tc_cdn',
339
+ array(
340
+ '\W3TC\Cdnfsd_CloudFront_Page',
341
+ 'admin_print_scripts_performance_page_w3tc_cdn',
342
+ )
343
+ );
344
+ } elseif ( 'limelight' === $cdnfsd_engine ) {
345
+ add_action(
346
+ 'admin_print_scripts-' . sanitize_title( __( 'performance', 'w3-total-cache' ) ) . '_page_w3tc_cdn',
347
+ array(
348
+ '\W3TC\Cdnfsd_LimeLight_Page',
349
+ 'admin_print_scripts_performance_page_w3tc_cdn',
350
+ )
351
+ );
352
+ } elseif ( 'maxcdn' === $cdnfsd_engine ) {
353
+ add_action(
354
+ 'admin_print_scripts-' . sanitize_title( __( 'performance', 'w3-total-cache' ) ) . '_page_w3tc_cdn',
355
+ array(
356
+ '\W3TC\Cdnfsd_MaxCdn_Page',
357
+ 'admin_print_scripts_performance_page_w3tc_cdn',
358
+ )
359
+ );
360
+ } elseif ( 'stackpath' === $cdnfsd_engine ) {
361
+ add_action(
362
+ 'admin_print_scripts-' . sanitize_title( __( 'performance', 'w3-total-cache' ) ) . '_page_w3tc_cdn',
363
+ array(
364
+ '\W3TC\Cdnfsd_StackPath_Page',
365
+ 'admin_print_scripts_performance_page_w3tc_cdn',
366
+ )
367
+ );
368
+ } elseif ( 'stackpath2' === $cdnfsd_engine ) {
369
+ add_action(
370
+ 'admin_print_scripts-' . sanitize_title( __( 'performance', 'w3-total-cache' ) ) . '_page_w3tc_cdn',
371
+ array(
372
+ '\W3TC\Cdnfsd_StackPath2_Page',
373
+ 'admin_print_scripts_performance_page_w3tc_cdn',
374
+ )
375
+ );
376
+ }
377
+
378
  $page_val = Util_Request::get_string( 'page' );
379
  if ( ! empty( $page_val ) ) {
380
  do_action( 'admin_init_' . $page_val );
569
  add_action( 'admin_notices', array( $this, 'admin_notices' ) );
570
  add_action( 'network_admin_notices', array( $this, 'admin_notices' ) );
571
  }
572
+
573
+ global $pagenow;
574
+ if ( ! $this->is_w3tc_page &&
575
+ (
576
+ ! empty( Util_Request::get_string( 'w3tc_note' ) ) ||
577
+ ! empty( Util_Request::get_string( 'w3tc_error' ) ) ||
578
+ ! empty( Util_Request::get_string( 'w3tc_message' ) )
579
+ )
580
+ ) {
581
+ // This is needed for admin notice buttons displayed on non-w3tc pages after actions via admin top menu.
582
+ add_action( 'admin_print_scripts-' . $pagenow, array( $this, 'admin_print_scripts' ) );
583
+ }
584
  }
585
  }
586
 
Generic_WidgetBoldGrid_View.php CHANGED
@@ -1,23 +1,29 @@
1
  <?php
 
 
 
 
 
 
2
  namespace W3TC;
3
 
4
- if ( !defined( 'W3TC' ) )
5
  die();
 
6
 
7
  ?>
8
  <div>
9
- <p class="notice notice-error">W3 Total Cache has detected that you do not have a Backup Plugin installed.</p>
10
  <p>
11
  <strong>
12
- Protect your WordPress site from data loss by installing the FREE
13
- Total Upkeep plugin.
14
  </strong>
15
  </p>
16
 
17
  <p>
18
- It's easy to set up and manage, backs up your entire WordPress site, has automated fault protection if an update fails, and provides easy site migration options.
19
  </p>
20
 
21
- <a href="<?php echo esc_url( $install_url ) ?>" id="w3tc-boldgrid-install"
22
- class="button-primary">Install Free Backup Plugin</a>
23
  </div>
1
  <?php
2
+ /**
3
+ * File: Generic_WidgetBoldGrid_View.php
4
+ *
5
+ * @package W3TC
6
+ */
7
+
8
  namespace W3TC;
9
 
10
+ if ( ! defined( 'W3TC' ) ) {
11
  die();
12
+ }
13
 
14
  ?>
15
  <div>
16
+ <p class="notice notice-error"><?php esc_html_e( 'W3 Total Cache has detected that you do not have a Backup Plugin installed.', 'w3-total-cache' ); ?></p>
17
  <p>
18
  <strong>
19
+ <?php esc_html_e( 'Protect your WordPress site from data loss by installing the FREE Total Upkeep plugin.', 'w3-total-cache' ); ?>
 
20
  </strong>
21
  </p>
22
 
23
  <p>
24
+ <?php esc_html_e( 'It\'s easy to set up and manage, backs up your entire WordPress site, has automated fault protection if an update fails, and provides easy site migration options.', 'w3-total-cache' ); ?>
25
  </p>
26
 
27
+ <a href="<?php echo esc_url( $install_url ); ?>" id="w3tc-boldgrid-install"
28
+ class="button-primary"><?php esc_html_e( 'Install Free Backup Plugin', 'w3-total-cache' ); ?></a>
29
  </div>
Minify_MinifiedFileRequestHandler.php CHANGED
@@ -511,7 +511,7 @@ class Minify_MinifiedFileRequestHandler {
511
  try {
512
  $files = Minify_Core::minify_filename_to_urls_for_minification(
513
  $hash, $type );
514
- } catch ( Exception $e ) {
515
  $files = array();
516
  }
517
 
511
  try {
512
  $files = Minify_Core::minify_filename_to_urls_for_minification(
513
  $hash, $type );
514
+ } catch ( \Exception $e ) {
515
  $files = array();
516
  }
517
 
Minify_Plugin_Admin.php CHANGED
@@ -30,14 +30,11 @@ class Minify_Plugin_Admin {
30
  $this,
31
  'w3tc_ajax_minify_help'
32
  ) );
33
-
34
- // show note
35
- add_action( 'admin_print_scripts-performance_page_w3tc_general',
36
- array( $this, 'admin_print_scripts_w3tc_general' ) );
37
  add_action( 'w3tc_message_action_minify_help', array(
38
  $this,
39
  'w3tc_message_action_minify_help'
40
  ) );
 
41
  if ( defined( 'W3TC_DEBUG' ) && W3TC_DEBUG )
42
  add_filter( 'w3tc_admin_bar_menu', array( $this, 'w3tc_admin_bar_menu' ) );
43
 
@@ -88,7 +85,7 @@ class Minify_Plugin_Admin {
88
 
89
 
90
 
91
- public function admin_print_scripts_w3tc_general() {
92
  $state = Dispatcher::config_state();
93
  if ( !$state->get_boolean( 'minify.hide_minify_help' ) ) {
94
  wp_enqueue_script( 'w3tc-minify-help',
30
  $this,
31
  'w3tc_ajax_minify_help'
32
  ) );
 
 
 
 
33
  add_action( 'w3tc_message_action_minify_help', array(
34
  $this,
35
  'w3tc_message_action_minify_help'
36
  ) );
37
+
38
  if ( defined( 'W3TC_DEBUG' ) && W3TC_DEBUG )
39
  add_filter( 'w3tc_admin_bar_menu', array( $this, 'w3tc_admin_bar_menu' ) );
40
 
85
 
86
 
87
 
88
+ public static function admin_print_scripts_w3tc_general() {
89
  $state = Dispatcher::config_state();
90
  if ( !$state->get_boolean( 'minify.hide_minify_help' ) ) {
91
  wp_enqueue_script( 'w3tc-minify-help',
PgCache_Plugin_Admin.php CHANGED
@@ -36,11 +36,6 @@ class PgCache_Plugin_Admin {
36
  $this, 'w3tc_usage_statistics_summary_from_history' ), 10, 2 );
37
  }
38
 
39
- add_action( 'admin_print_scripts-performance_page_w3tc_pgcache', array(
40
- '\W3TC\PgCache_Page',
41
- 'admin_print_scripts_w3tc_pgcache'
42
- ) );
43
-
44
  // Cache groups.
45
  add_action(
46
  'w3tc_config_ui_save-w3tc_cachegroups',
36
  $this, 'w3tc_usage_statistics_summary_from_history' ), 10, 2 );
37
  }
38
 
 
 
 
 
 
39
  // Cache groups.
40
  add_action(
41
  'w3tc_config_ui_save-w3tc_cachegroups',
UsageStatistics_GeneralPage.php CHANGED
@@ -20,7 +20,10 @@ class UsageStatistics_GeneralPage {
20
 
21
 
22
  public function w3tc_settings_general_anchors( $anchors ) {
23
- $anchors[] = array( 'id' => 'stats', 'text' => 'Statistics' );
 
 
 
24
  return $anchors;
25
  }
26
 
20
 
21
 
22
  public function w3tc_settings_general_anchors( $anchors ) {
23
+ $anchors[] = array(
24
+ 'id' => 'stats',
25
+ 'text' => __( 'Statistics', 'w3-total-cache' ),
26
+ );
27
  return $anchors;
28
  }
29
 
UsageStatistics_Plugin_Admin.php CHANGED
@@ -28,11 +28,6 @@ class UsageStatistics_Plugin_Admin {
28
  'admin_init_w3tc_general'
29
  ) );
30
 
31
- add_action( 'admin_print_scripts-performance_page_w3tc_stats', array(
32
- '\W3TC\UsageStatistics_Page',
33
- 'admin_print_scripts_w3tc_stats'
34
- ) );
35
-
36
  add_action( 'w3tc_config_ui_save', array(
37
  $this,
38
  'w3tc_config_ui_save'
28
  'admin_init_w3tc_general'
29
  ) );
30
 
 
 
 
 
 
31
  add_action( 'w3tc_config_ui_save', array(
32
  $this,
33
  'w3tc_config_ui_save'
UsageStatistics_Widget_View.php CHANGED
@@ -1,8 +1,15 @@
1
  <?php
 
 
 
 
 
 
2
  namespace W3TC;
3
 
4
- if ( !defined( 'W3TC' ) )
5
  die();
 
6
  ?>
7
  <style>
8
  #w3tc_usage_statistics:hover .edit-box {
@@ -26,7 +33,7 @@ if ( !defined( 'W3TC' ) )
26
  }
27
  </style>
28
  <div>
29
- Hit rate
30
  <div style="width: 100%; height: 200px">
31
  <canvas id="w3tcuw_chart"></canvas>
32
  </div>
@@ -34,15 +41,15 @@ if ( !defined( 'W3TC' ) )
34
 
35
  <div class="w3tcuw_sizes">
36
  <div class="w3tcuw_size_item w3tcuw_memcached_size_percent">
37
- <div class="w3tcuw_name">Memcached Usage</div>
38
  <div class="w3tcuw_value"></div>
39
  </div>
40
  <div class="w3tcuw_size_item w3tcuw_redis_size_percent">
41
- <div class="w3tcuw_name">Redis Usage</div>
42
  <div class="w3tcuw_value"></div>
43
  </div>
44
  <div class="w3tcuw_size_item w3tcuw_apc_size_percent">
45
- <div class="w3tcuw_name">APC Usage</div>
46
  <div class="w3tcuw_value"></div>
47
  </div>
48
  </div>
1
  <?php
2
+ /**
3
+ * File: UsageStatistics_Widget_View.php
4
+ *
5
+ * @package W3TC
6
+ */
7
+
8
  namespace W3TC;
9
 
10
+ if ( ! defined( 'W3TC' ) ) {
11
  die();
12
+ }
13
  ?>
14
  <style>
15
  #w3tc_usage_statistics:hover .edit-box {
33
  }
34
  </style>
35
  <div>
36
+ <?php esc_html_e( 'Hit rate', 'w3-total-cache' ); ?>
37
  <div style="width: 100%; height: 200px">
38
  <canvas id="w3tcuw_chart"></canvas>
39
  </div>
41
 
42
  <div class="w3tcuw_sizes">
43
  <div class="w3tcuw_size_item w3tcuw_memcached_size_percent">
44
+ <div class="w3tcuw_name"><?php esc_html_e( 'Memcached Usage', 'w3-total-cache' ); ?></div>
45
  <div class="w3tcuw_value"></div>
46
  </div>
47
  <div class="w3tcuw_size_item w3tcuw_redis_size_percent">
48
+ <div class="w3tcuw_name"><?php esc_html_e( 'Redis Usage', 'w3-total-cache' ); ?></div>
49
  <div class="w3tcuw_value"></div>
50
  </div>
51
  <div class="w3tcuw_size_item w3tcuw_apc_size_percent">
52
+ <div class="w3tcuw_name"><?php esc_html_e( 'APC Usage', 'w3-total-cache' ); ?></div>
53
  <div class="w3tcuw_value"></div>
54
  </div>
55
  </div>
Util_Rule.php CHANGED
@@ -307,7 +307,7 @@ class Util_Rule {
307
  } catch ( Util_WpFile_FilesystemOperationException $ex ) {
308
  if ( $replace_start !== false ) {
309
  $message = sprintf( __( 'Edit file <strong>%s</strong> and replace all lines between and including <strong>%s</strong> and <strong>%s</strong> markers with:',
310
- 'w3-total-caceh' ), $path, $start, $end );
311
  } else {
312
  $message = sprintf( __( 'Edit file <strong>%s</strong> and add the following rules above the WordPress directives:',
313
  'w3-total-cache' ), $path );
307
  } catch ( Util_WpFile_FilesystemOperationException $ex ) {
308
  if ( $replace_start !== false ) {
309
  $message = sprintf( __( 'Edit file <strong>%s</strong> and replace all lines between and including <strong>%s</strong> and <strong>%s</strong> markers with:',
310
+ 'w3-total-cache' ), $path, $start, $end );
311
  } else {
312
  $message = sprintf( __( 'Edit file <strong>%s</strong> and add the following rules above the WordPress directives:',
313
  'w3-total-cache' ), $path );
extension-example/Extension_Example_Page_View.php CHANGED
@@ -6,11 +6,11 @@ if ( ! defined( 'W3TC' ) ) {
6
  }
7
  ?>
8
  <p>
9
- Jump to:
10
  <a href="admin.php?page=w3tc_general"><?php esc_html_e( 'Main Menu', 'w3-total-cache' ); ?></a> |
11
  <a href="admin.php?page=w3tc_extensions"><?php esc_html_e( 'Extensions', 'w3-total-cache' ); ?></a>
12
  </p>
13
- <p>Example extension is currently <span class="w3tc-enabled">enabled</span></p>
14
 
15
  <div class="metabox-holder">
16
  <?php
6
  }
7
  ?>
8
  <p>
9
+ <?php esc_html_e( 'Jump to:', 'w3-total-cache' ); ?>
10
  <a href="admin.php?page=w3tc_general"><?php esc_html_e( 'Main Menu', 'w3-total-cache' ); ?></a> |
11
  <a href="admin.php?page=w3tc_extensions"><?php esc_html_e( 'Extensions', 'w3-total-cache' ); ?></a>
12
  </p>
13
+ <p><?php esc_html_e( 'Example extension is currently ', 'w3-total-cache' ); ?><span class="w3tc-enabled"><?php esc_html_e( 'enabled', 'w3-total-cache' ); ?></span></p>
14
 
15
  <div class="metabox-holder">
16
  <?php
inc/lightbox/self_test.php CHANGED
@@ -430,7 +430,7 @@ if ( ! defined( 'W3TC' ) ) {
430
  <ul>
431
  <?php
432
  foreach ( $additional_checks as $check ) :
433
- echo '<li>' . esc_html( $check ) . '</li>';
434
  endforeach;
435
  ?>
436
  </ul>
430
  <ul>
431
  <?php
432
  foreach ( $additional_checks as $check ) :
433
+ echo '<li>' . wp_kses( $check, Util_Ui::get_allowed_html_for_wp_kses_from_content( $check ) ) . '</li>';
434
  endforeach;
435
  ?>
436
  </ul>
inc/options/common/header.php CHANGED
@@ -179,7 +179,7 @@ do_action( 'w3tc-dashboard-head' );
179
  case 'w3tc_pgcache':
180
  ?>
181
  <p id="w3tc-options-menu">
182
- Jump to:
183
  <a href="#toplevel_page_w3tc_general"><?php esc_html_e( 'Main Menu', 'w3-total-cache' ); ?></a> |
184
  <a href="#general"><?php esc_html_e( 'General', 'w3-total-cache' ); ?></a> |
185
  <a href="#mirrors"><?php esc_html_e( 'Mirrors', 'w3-total-cache' ); ?></a> |
@@ -360,7 +360,7 @@ do_action( 'w3tc-dashboard-head' );
360
  case 'w3tc_install':
361
  ?>
362
  <p id="w3tc-options-menu">
363
- Jump to:
364
  <a href="#initial"><?php esc_html_e( 'Initial Installation', 'w3-total-cache' ); ?></a> |
365
  <?php if ( count( $rewrite_rules_descriptors ) ) : ?>
366
  <a href="#rules"><?php esc_html_e( 'Rewrite Rules', 'w3-total-cache' ); ?></a> |
179
  case 'w3tc_pgcache':
180
  ?>
181
  <p id="w3tc-options-menu">
182
+ <?php esc_html_e( 'Jump to:', 'w3-total-cache' ); ?>
183
  <a href="#toplevel_page_w3tc_general"><?php esc_html_e( 'Main Menu', 'w3-total-cache' ); ?></a> |
184
  <a href="#general"><?php esc_html_e( 'General', 'w3-total-cache' ); ?></a> |
185
  <a href="#mirrors"><?php esc_html_e( 'Mirrors', 'w3-total-cache' ); ?></a> |
360
  case 'w3tc_install':
361
  ?>
362
  <p id="w3tc-options-menu">
363
+ <?php esc_html_e( 'Jump to:', 'w3-total-cache' ); ?>
364
  <a href="#initial"><?php esc_html_e( 'Initial Installation', 'w3-total-cache' ); ?></a> |
365
  <?php if ( count( $rewrite_rules_descriptors ) ) : ?>
366
  <a href="#rules"><?php esc_html_e( 'Rewrite Rules', 'w3-total-cache' ); ?></a> |
inc/options/general.php CHANGED
@@ -190,7 +190,21 @@ require W3TC_INC_DIR . '/options/common/header.php';
190
  Util_Ui::postbox_header( esc_html__( 'Minify', 'w3-total-cache' ), '', 'minify' );
191
  Util_Ui::config_overloading_button( array( 'key' => 'minify.configuration_overloaded' ) );
192
  ?>
193
- <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>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
194
 
195
  <table class="form-table">
196
  <?php
@@ -970,8 +984,8 @@ require W3TC_INC_DIR . '/options/common/header.php';
970
  <?php
971
  $this->checkbox_debug_pro(
972
  'pgcache.debug_purge',
973
- 'Page Cache Purge Log',
974
- ' (<a href="?page=w3tc_general&view=purge_log&module=pagecache">view log</a>)'
975
  );
976
  ?>
977
  <br />
@@ -979,8 +993,8 @@ require W3TC_INC_DIR . '/options/common/header.php';
979
  <?php
980
  $this->checkbox_debug_pro(
981
  'dbcache.debug_purge',
982
- 'Database Cache Purge Log',
983
- ' (<a href="?page=w3tc_general&view=purge_log&module=dbcache">view log</a>)'
984
  );
985
  ?>
986
  <br />
@@ -988,8 +1002,8 @@ require W3TC_INC_DIR . '/options/common/header.php';
988
  <?php
989
  $this->checkbox_debug_pro(
990
  'objectcache.debug_purge',
991
- 'Object Cache Purge Log',
992
- ' (<a href="?page=w3tc_general&view=purge_log&module=objectcache">view log</a>)'
993
  );
994
  ?>
995
  <br />
190
  Util_Ui::postbox_header( esc_html__( 'Minify', 'w3-total-cache' ), '', 'minify' );
191
  Util_Ui::config_overloading_button( array( 'key' => 'minify.configuration_overloaded' ) );
192
  ?>
193
+ <p>
194
+ <?php
195
+ w3tc_e(
196
+ 'minify.general.header',
197
+ sprintf(
198
+ // translators: 1 HTML acronym for Cascading Style Sheet (CSS), 2 HTML acronym for JavaScript (JS),
199
+ // translators: 3 HTML acronym for Hypertext Markup Language (HTML).
200
+ __( 'Reduce load time by decreasing the size and number of %1$s and %2$s files. Automatically remove unnecessary data from %1$s, %2$s, feed, page and post %3$s.', 'w3-total-cache' ),
201
+ '<acronym title="' . __( 'Cascading Style Sheet', 'w3-total-cache' ) . '">' . __( 'CSS', 'w3-total-cache' ) . '</acronym>',
202
+ '<acronym title="' . __( 'JavaScript', 'w3-total-cache' ) . '">' . __( 'JS', 'w3-total-cache' ) . '</acronym>',
203
+ '<acronym title="' . __( 'Hypertext Markup Language', 'w3-total-cache' ) . '">' . __( 'HTML', 'w3-total-cache' ) . '</acronym>'
204
+ )
205
+ );
206
+ ?>
207
+ </p>
208
 
209
  <table class="form-table">
210
  <?php
984
  <?php
985
  $this->checkbox_debug_pro(
986
  'pgcache.debug_purge',
987
+ __( 'Page Cache Purge Log', 'w3-total-cache' ),
988
+ ' (<a href="?page=w3tc_general&view=purge_log&module=pagecache">' . __( 'view log', 'w3-total-cache' ) . '</a>)'
989
  );
990
  ?>
991
  <br />
993
  <?php
994
  $this->checkbox_debug_pro(
995
  'dbcache.debug_purge',
996
+ __( 'Database Cache Purge Log', 'w3-total-cache' ),
997
+ ' (<a href="?page=w3tc_general&view=purge_log&module=dbcache">' . __( 'view log', 'w3-total-cache' ) . '</a>)'
998
  );
999
  ?>
1000
  <br />
1002
  <?php
1003
  $this->checkbox_debug_pro(
1004
  'objectcache.debug_purge',
1005
+ __( 'Object Cache Purge Log', 'w3-total-cache' ),
1006
+ ' (<a href="?page=w3tc_general&view=purge_log&module=objectcache">' . __( 'view log', 'w3-total-cache' ) . '</a>)'
1007
  );
1008
  ?>
1009
  <br />
inc/options/minify.php CHANGED
@@ -562,10 +562,25 @@ if ( ! defined( 'W3TC' ) ) {
562
  'label' => '<acronym title="Hypertext Markup Language">HTTP</acronym>/2 push',
563
  'control' => 'checkbox',
564
  'checkbox_label' => esc_html__( 'Enable', 'w3-total-cache' ),
565
- 'description' => esc_html__( 'For better performance, send files to browser before they are requested when using the <acronym title="Hypertext Transfer Protocol">HTTP</acronym>/2 protocol.', 'w3-total-cache' ) .
566
- (
567
- 'file_generic' !== $this->_config->get_string( 'pgcache.engine' ) ?
568
- '' :
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
569
  sprintf(
570
  // translators: 1 HTML line break tag followed by opening HTML b tag, 2 closing HTML b tag.
571
  __(
@@ -574,7 +589,12 @@ if ( ! defined( 'W3TC' ) ) {
574
  ),
575
  '<br /><b>',
576
  '</b>'
 
 
 
 
577
  )
 
578
  ),
579
  )
580
  );
@@ -629,7 +649,7 @@ if ( ! defined( 'W3TC' ) ) {
629
  Util_Ui::config_item(
630
  array(
631
  'key' => 'minify.css.method',
632
- 'label' => 'Minify method:',
633
  'control' => 'selectbox',
634
  'selectbox_values' => array(
635
  'both' => array(
@@ -819,6 +839,7 @@ if ( ! defined( 'W3TC' ) ) {
819
  'checkbox_label' => esc_html__( 'Enable', 'w3-total-cache' ),
820
  'description' => wp_kses(
821
  sprintf(
 
822
  __(
823
  'For better performance, send files to browser before they are requested when using the %1$sHTTP%2$s/2 protocol.',
824
  'w3-total-cache'
562
  'label' => '<acronym title="Hypertext Markup Language">HTTP</acronym>/2 push',
563
  'control' => 'checkbox',
564
  'checkbox_label' => esc_html__( 'Enable', 'w3-total-cache' ),
565
+ 'description' => wp_kses(
566
+ sprintf(
567
+ // translators: 1 opening HTML acronym tag for HTTP (Hypertext Transfer Protocol), 2 closing HTML acronym tag.
568
+ __(
569
+ 'For better performance, send files to browser before they are requested when using the %1$sHTTP%2$s/2 protocol.',
570
+ 'w3-total-cache'
571
+ ),
572
+ '<acronym title="' . esc_attr__( 'Hypertext Transfer Protocol', 'w3-total-cache' ) . '">',
573
+ '</acronym>'
574
+ ),
575
+ array(
576
+ 'acronym' => array(
577
+ 'title' => array(),
578
+ ),
579
+ )
580
+ ) . (
581
+ 'file_generic' !== $this->_config->get_string( 'pgcache.engine' ) ?
582
+ '' :
583
+ wp_kses(
584
  sprintf(
585
  // translators: 1 HTML line break tag followed by opening HTML b tag, 2 closing HTML b tag.
586
  __(
589
  ),
590
  '<br /><b>',
591
  '</b>'
592
+ ),
593
+ array(
594
+ 'br' => array(),
595
+ 'b' => array(),
596
  )
597
+ )
598
  ),
599
  )
600
  );
649
  Util_Ui::config_item(
650
  array(
651
  'key' => 'minify.css.method',
652
+ 'label' => __( 'Minify method:', 'w3-total-cache' ),
653
  'control' => 'selectbox',
654
  'selectbox_values' => array(
655
  'both' => array(
839
  'checkbox_label' => esc_html__( 'Enable', 'w3-total-cache' ),
840
  'description' => wp_kses(
841
  sprintf(
842
+ // translators: 1 opening HTML acronym tag for HTTP (Hypertext Transfer Protocol), 2 closing HTML acronym tag.
843
  __(
844
  'For better performance, send files to browser before they are requested when using the %1$sHTTP%2$s/2 protocol.',
845
  'w3-total-cache'
inc/options/pgcache.php CHANGED
@@ -442,9 +442,9 @@ if ( ! defined( 'W3TC' ) ) {
442
  'label' => '<acronym title="REpresentational State Transfer">REST</acronym> <acronym title="Application Programming Interface">API</acronym>',
443
  'control' => 'radiogroup',
444
  'radiogroup_values' => array(
445
- '' => "Don't cache",
446
  'cache' => array(
447
- 'label' => 'Cache',
448
  'disabled' => ! Util_Environment::is_w3tc_pro( $this->_config ),
449
  'pro_feature' => true,
450
  'pro_excerpt' => esc_html__( 'If you\'re using the WordPress API make sure to use caching to scale performance.', 'w3-total-cache' ),
442
  'label' => '<acronym title="REpresentational State Transfer">REST</acronym> <acronym title="Application Programming Interface">API</acronym>',
443
  'control' => 'radiogroup',
444
  'radiogroup_values' => array(
445
+ '' => __( 'Don\'t cache', 'w3-total-cache' ),
446
  'cache' => array(
447
+ 'label' => __( 'Cache', 'w3-total-cache' ),
448
  'disabled' => ! Util_Environment::is_w3tc_pro( $this->_config ),
449
  'pro_feature' => true,
450
  'pro_excerpt' => esc_html__( 'If you\'re using the WordPress API make sure to use caching to scale performance.', 'w3-total-cache' ),
languages/ar.mo DELETED
@@ -1,76 +0,0 @@
1
- ق• q ¤ — , ˆ ‰ ڈ • ‌ ¢ µ
2
- ¾ ج ض à ç ÷
3
-
4
-
5
-
6
- $
7
- 1
8
- 9
9
- B
10
- _
11
- h
12
- z
13
- پ
14
-
15
- £
16
- ھ
17
- ®
18
- ؤ
19
- ث
20
- س
21
- ن
22
- ِ
23
- , K S ]
24
- m x „
25
- ٹ ک ‌  
26
- ° ¾ ت
27
- × ه ë
28
- 2 N ^ o & w % ‍ ؤ ت ق î
29
-
30
- %
31
- 0
32
- @
33
- M
34
- m
35
- چ
36
-
37
- ¨
38
- ¾
39
- ئ
40
- ف
41
- ï
42
- ù
43
-
44
- $ / A q # x œ ؛ ض ه ّ ے & 9 K T
45
- X c k t … ‘ ™ ¦
46
- « ¶ ¹ ء ر ٍ چ ” — ‍ « ·
47
- ص à ّ
48
-
49
- 7 B
50
- Q \ e l
51
- x ƒ 5 Œ
52
- آ % ح
53
- َ 5 ‏ 4 = G - e “ ¦ ­ إ و 2 6 0 N
54
-  ٹ “ ھ ' » م ï / H X h …   " ¯
55
- ز ف ن @ ô ) 5 _ z گ 2 ‌ 2 ذ
56
- % 4 8 K 6 „ » ز ë 1 3 6
57
- j & u œ
58
- » ئ ل
59
- ‎ 1 K " e / ˆ ¸ 4 ب G ‎ E b & ƒ ھ ± ( ح " ِ ( B R Y
60
- p { 3 „ 1 ¸ ê َ -
61
- 2 = ) Q { e b W ' 1 _ ! Y d # + p A V C P ] " 9 O \ , k B 7 J E U . 3 L ; c - K h R < T / X
62
- i G I % g F j ( @ S 5 m $ H q ` ?
63
- Q 8 a Z & N D 2 4 6 [ : M n f = ^ o l * 0 > ) and About Account Add: Admin Notification Advanced All Templates Analytics Available Cancel Click to toggle Close Configuration Configure Defined Deploy Description: Disable Disabled Don't show this prompt again Download Empty files list. Enable Enable mirroring of pages Enabled Error: FAQ File types to import: Forums General General Settings Hide this message I've tweeted Import / Export Settings Incorrect type. Increased visitor time on site Install Installed Invalid Request Monitoring My Websites Name: Network mode: News No No files found. Not available Not defined Not detected Not installed Notes Now we start to compile: OK On PHP Version: Please select config file. Please select request type. Plugin Version: Premium Services Preview Preview mode was successfully disabled Preview mode was successfully enabled Purge Reject query words: Rejected files: Replace default hostname with Restore Default Settings Safe mode: Security level: Server Error Settings successfully imported. Settings successfully restored. Submit Submit a Bug Report Suggest a New Feature Support Support Us, It's Free! Table of Contents Template: Test Test failed. Test passed Test passed. Thank you for linking to us! The support request has been successfully sent. Topic: Unable to send the support request. Unable to upload config file. Unsuccessful file transfers Update via FTP Upgrading database Upload Upload attachments Upload custom files Upload theme files User Agent Groups View all Yes at once or disable disabled empty all caches empty cache enabled find it here help operation. or seconds select location tell your friends%s with a tweet view visualizations Project-Id-Version: W3 Total Cache
64
- POT-Creation-Date: 2013-05-16 16:07+0100
65
- PO-Revision-Date: 2013-05-21 00:58+0300
66
- Last-Translator: Omar Harbi <tech-u@hotmail.com>
67
- Language-Team: W3 EDGE
68
- Language: en_US
69
- MIME-Version: 1.0
70
- Content-Type: text/plain; charset=UTF-8
71
- Content-Transfer-Encoding: 8bit
72
- X-Generator: Poedit 1.5.5
73
- X-Poedit-KeywordsList: __;_e
74
- X-Poedit-Basepath: ../
75
- X-Poedit-SearchPath-0: .
76
- ظˆ ط­ظˆظ„ ط§ظ„ط­ط³ط§ط¨ ط¥ط¶ط§ظپط©: ط§ط´ط¹ط§ط±ط§طھ ط§ظ„ظ…ط³ظˆط¤ظ„ ظ…طھظ‚ط¯ظ… ظƒط§ظپط© ط§ظ„ظ‚ظˆط§ظ„ط¨ ط§ظ„طھط­ظ„ظٹظ„ط§طھ ظ…طھط§ط­ ط¥ظ„ط؛ط§ط، ط§ظ†ظ‚ط± ظ„ظ„طھط¨ط¯ظٹظ„ ط§ط؛ظ„ط§ظ‚ ط§ظ„طھظƒظˆظٹظ† طھظ‡ظٹط¦ط© ظ…ط¹ط±ظپ ظ†ط´ط± ط§ظ„ظˆطµظپ: طھط¹ط·ظٹظ„ ظ…ط¹ط·ظ„ ظ„ط§ طھط¸ظ‡ط± ظ‡ط°ظ‡ ط§ظ„ظ…ط·ط§ظ„ط¨ط© ظ…ط±ط© ط£ط®ط±ظ‰ طھط­ظ…ظٹظ„ ظ‚ط§ط¦ظ…ط© ط§ظ„ظ…ظ„ظپط§طھ ظپط§ط±ط؛ط©. طھظ…ظƒظٹظ† طھظ…ظƒظٹظ† ط§ظ„ظ†ط³ط® ط§ظ„ظ…طھط·ط§ط¨ظ‚ ظ„ظ„طµظپط­ط§طھ ظ…ظ…ظƒظ† ط®ط·ط§ط،: ط§ظ„ط£ط³ط¦ظ„ط© ط§ظ„ط´ط§ط¦ط¹ط© ط£ظ†ظˆط§ط¹ ط§ظ„ظ…ظ„ظپط§طھ ظ„ظ„ط§ط³طھظٹط±ط§ط¯: ط§ظ„ظ…ظ†طھط¯ظٹط§طھ ط¹ط§ظ… ط¥ط¹ط¯ط§ط¯ط§طھ ط¹ط§ظ…ط© ط¥ط®ظپط§ط، ظ‡ط°ظ‡ ط§ظ„ط±ط³ط§ظ„ط© طھظ… ظ†ط´ط± ط§ظ„طھط؛ط±ظٹط¯ط© ط§ط¹ط¯ط§ط¯ط§طھ ط§ظ„طھطµط¯ظٹط± / ط§ظ„ط§ط³طھظٹط±ط§ط¯ ظ†ظˆط¹ ط؛ظٹط± طµط­ظٹط­. ط²ظٹط§ط¯ط© ظˆظ‚طھ ط§ظ„ط²ط§ط¦ط± ظپظٹ ط§ظ„ظ…ظˆظ‚ط¹ طھط«ط¨ظٹطھ ظ…ط«ط¨طھ ط·ظ„ط¨ ط؛ظٹط± طµط­ظٹط­ ط§ظ„ظ…ط±ط§ظ‚ط¨ط© ظ…ظˆط§ظ‚ط¹ ط§ظ„ظˆظٹط¨ ط§ظ„ط®ط§طµط© ط¨ظٹ ط§ظ„ط§ط³ظ…: ظˆط¶ط¹ ط§ظ„ط´ط¨ظƒط©: ط§ظ„ط£ط®ط¨ط§ط± ظ„ط§ ظ„ظ… ظٹطھظ… ط§ظ„ط¹ط«ظˆط± ط¹ظ„ظ‰ ط§ظ„ظ…ظ„ظپط§طھ. ط؛ظٹط± ظ…طھط§ط­ ط؛ظٹط± ظ…ط¹ط±ظپ ظ„ظ… ظٹطھظ… ط§ظ„ط§ظƒطھط´ط§ظپ ظ„ظ… ظٹطھظ… ط§ظ„طھط«ط¨ظٹطھ ظ…ظ„ط§ط­ط¸ط§طھ ط§ظ„ط¢ظ† ظ†ط¨ط¯ط£ ظپظٹ طھط¬ظ…ظٹط¹: ظ…ظˆط§ظپظ‚ ط¹ظ„ظ‰ ط¥طµط¯ط§ط± php: ظ…ظ† ظپط¶ظ„ظƒ ط¥ط®طھط± ظ…ظ„ظپ ط§ظ„طھظƒظˆظٹظ† (ط§ظ„ظƒظˆظ†ظپظٹط¬). ظ…ظ† ظپط¶ظ„ظƒ ط¥ط®طھط± ظ†ظˆط¹ ط§ظ„ط·ظ„ط¨. ط§ط¶ط¯ط§ط± ط§ظ„ط§ط¶ط§ظپط©: ط®ط¯ظ…ط§طھ ظ…ظ…ظٹط²ط© ظ…ط¹ط§ظٹظ†ط© طھظ… طھط¹ط·ظٹظ„ ظˆط¶ط¹ ط§ظ„ظ…ط¹ط§ظٹظ†ط© ط¨ظ†ط¬ط§ط­ طھظ… طھظ…ظƒظٹظ† ظˆط¶ط¹ ط§ظ„ظ…ط¹ط§ظٹظ†ط© ط¨ظ†ط¬ط§ط­ ط¥ط²ط§ظ„ط© ط±ظپط¶ ظƒظ„ظ…ط§طھ ط§ظ„ط§ط³طھط¹ظ„ط§ظ…: ط±ظپط¶ ط§ظ„ظ…ظ„ظپط§طھ: ط§ط³طھط¨ط¯ظ„ ط§ط³ظ… ط§ظ„ظ…ط¶ظٹظپ ط§ظ„ط§ظپطھط±ط§ط¶ظٹ ظ…ط¹ ط§ط³طھط¹ط§ط¯ط© ط§ظ„ط¥ط¹ط¯ط§ط¯ط§طھ ط§ظ„ط§ظپطھط±ط§ط¶ظٹط© ط§ظ„ظˆط¶ط¹ ط§ظ„ط¢ظ…ظ†: ظ…ط³طھظˆظ‰ ط§ظ„ط£ظ…ط§ظ†: ط®ط·ط£ ظپظٹ ط§ظ„ط®ط§ط¯ظ… طھظ… ط§ط³طھظٹط±ط§ط¯ ط§ظ„ط§ط¹ط¯ط§ط¯ط§طھ ط¨ظ†ط¬ط§ط­ طھظ…طھ ط§ط³طھط¹ط§ط¯ط© ط§ظ„ط§ط¹ط¯ط§ط¯ط§طھ ط¨ظ†ط¬ط§ط­ ط§ط±ط³ط§ظ„ ط¥ط±ط³ط§ظ„ طھظ‚ط±ظٹط± ط¨ط§ظ„ط£ط®ط·ط§ط، ط£ظ‚طھط±ط­ ظ…ظٹط²ط© ط¬ط¯ظٹط¯ط© ط§ظ„ط¯ط¹ظ… ط§ط¯ط¹ظ…ظ†ط§, ظ…ط¬ط§ظ†ط§ظ‹ ط¬ط¯ظˆظ„ ط§ظ„ظ…ط­طھظˆظٹط§طھ ط§ظ„ظ‚ط§ظ„ط¨: ط§ط®طھط¨ط§ط± ظپط´ظ„ ط§ظ„ط§ط®طھط¨ط§ط±. ط§ظ„ط§ط®طھط¨ط§ط± ظ…ظ†ط¬ط² ط§ظ„ط§ط®طھط¨ط§ط± ظ…ظ†ط¬ط² ط´ظƒط±ط§ ظ„طھظˆط§طµظ„ظƒ ظ…ط¹ظ†ط§!! طھظ… ط§ط±ط³ط§ظ„ ط·ظ„ط¨ظƒ ظ„ظ„ط¯ط¹ظ… ط¨ظ†ط¬ط§ط­. ط§ظ„ظ…ظˆط¶ظˆط¹: ط؛ظٹط± ظ‚ط§ط¯ط± ط¹ظ„ظ‰ ط¥ط±ط³ط§ظ„ ط·ظ„ط¨ ط§ظ„ط¯ط¹ظ…. ط؛ظٹط± ظ‚ط§ط¯ط± ط¹ظ„ظ‰ ط±ظپط¹ ظ…ظ„ظپ ط§ظ„طھظƒظˆظٹظ† (ط§ظ„ظƒظˆظ†ظپظٹط¬). ظپط´ظ„ ظ†ظ‚ظ„ ط§ظ„ظ…ظ„ظپط§طھ ط§ظ„طھط­ط¯ظٹط« ط¹ظ† ط·ط±ظٹظ‚ FTP طھط±ظ‚ظٹط© ظ‚ط§ط¹ط¯ط© ط§ظ„ط¨ظٹط§ظ†ط§طھ ط±ظپط¹ طھط­ظ…ظٹظ„ ط§ظ„ظ…ط±ظپظ‚ط§طھ طھط­ظ…ظٹظ„ ط§ظ„ظ…ظ„ظپط§طھ ط§ظ„ظ…ط®طµطµط© طھط­ظ…ظٹظ„ ظ…ظ„ظپط§طھ ط§ظ„ظ‚ط§ظ„ط¨ ظ…ط¬ظ…ظˆط¹ط§طھ ظˆظƒظٹظ„ ط§ظ„ظ…ط³طھط®ط¯ظ… ط¹ط±ط¶ ط§ظ„ظƒظ„ ظ†ط¹ظ… ظ…ط±ط© ظˆط§ط­ط¯ط© ط£ظˆ طھط¹ط·ظٹظ„ ظ…ط¹ط·ظ„ ط§ظپط±ط§ط؛ ط°ط§ظƒط±ط© ط§ظ„طھط®ط²ظٹظ† ط§ظ„ظ…ظˆظ‚طھط© ط¥ظپط±ط§ط؛ ط°ط§ظƒط±ط© ط§ظ„طھط®ط²ظٹظ† ط§ظ„ظ…ط¤ظ‚طھ ظ…ظ…ظƒظ† ط§ظ„ط¹ط«ظˆط± ط¹ظ„ظٹظ‡ ظ‡ظ†ط§ ظ…ط³ط§ط¹ط¯ط© ط§ظ„ط¹ظ…ظ„ظٹط©. ط£ظˆ ط«ظˆط§ظ†ظٹ ط­ط¯ط¯ ط§ظ„ظ…ظˆظ‚ط¹ ط§ط®ط¨ط± ط§طµط¯ظ‚ط§ط¦ظƒ%s ط¨طھط؛ط±ظٹط¯ط© ظ…ط´ط§ظ‡ط¯ط© ط§ظ„ظ…ط±ط¦ظٹط§طھ
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/w3-total-cache-ar_AR.po DELETED
@@ -1,6659 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: W3 Total Cache\n"
4
- "POT-Creation-Date: 2013-07-13 13:29+0100\n"
5
- "PO-Revision-Date: 2013-07-13 13:29+0100\n"
6
- "Last-Translator: Omar Harbi <tech-u@hotmail.com>\n"
7
- "Language-Team: W3 EDGE\n"
8
- "Language: en_US\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: Poedit 1.5.7\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: ../\n"
15
- "X-Poedit-SearchPath-0: .\n"
16
-
17
- #: inc/define.php:1522
18
- #, php-format
19
- msgid "%dh"
20
- msgstr ""
21
-
22
- #: inc/define.php:1524
23
- #, php-format
24
- msgid "%dm"
25
- msgstr ""
26
-
27
- #: inc/define.php:1526
28
- #, php-format
29
- msgid "%ds"
30
- msgstr ""
31
-
32
- #: inc/define.php:1528 inc/define.php:1531
33
- #, php-format
34
- msgid "%dms"
35
- msgstr ""
36
-
37
- #: inc/functions/activation.php:57
38
- #, php-format
39
- msgid "%s<br />then %s."
40
- msgstr "%s<br />ثم %s."
41
-
42
- #: inc/functions/activation.php:70
43
- #, fuzzy, php-format
44
- msgid ""
45
- "<strong>%s</strong> could not be read, please run following command:<br />\n"
46
- " <strong style=\"color: #f00;\">chmod 777 %s</strong>"
47
- msgstr ""
48
- "<strong>%s</strong>تعذر قراءة فضلاً اعطه التصريح التالي::<br /><strong style="
49
- "\"color: #f00;\">chmod 777 %s</strong>"
50
-
51
- #: inc/functions/activation.php:74
52
- #, fuzzy, php-format
53
- msgid ""
54
- "<strong>%s</strong> could not be read, <strong>open_basedir</strong> "
55
- "restriction in effect,\n"
56
- " please check your php.ini settings:<br /><strong style=\"color: #f00;"
57
- "\">open_basedir = \"%s\"</strong>"
58
- msgstr ""
59
- "<strong>%s</strong>تعذر قراءة فضلاً اعطه التصريح التالي::<br /><strong style="
60
- "\"color: #f00;\">chmod 777 %s</strong>"
61
-
62
- #: inc/functions/activation.php:96
63
- #, php-format
64
- msgid "<li><strong style=\"color: #f00;\">chmod 777 %s</strong></li>"
65
- msgstr "<li><strong style=\"color: #f00;\">التصريح 777 %s</strong></li>"
66
-
67
- #: inc/functions/activation.php:103
68
- #, php-format
69
- msgid ""
70
- "<strong>%s</strong> could not be created, please run following command:<br />"
71
- "%s"
72
- msgstr "<strong>%s</strong> تعذر الانشاء, فضلاً نفذ الامر التالي:<br />%s"
73
-
74
- #: inc/functions/activation.php:107
75
- #, php-format
76
- msgid ""
77
- "<strong>%s</strong> could not be created, <strong>open_basedir\n"
78
- " </strong> restriction in effect, please check your php."
79
- "ini settings:<br />\n"
80
- " <strong style=\"color: #f00;\">open_basedir = \"%s\"</"
81
- "strong>"
82
- msgstr ""
83
-
84
- #: inc/functions/activation.php:286
85
- msgid "FTP credentials don't allow to delete folder "
86
- msgstr "تصاريح الاف تي بي لا تسمح لحذف المجلد"
87
-
88
- #: inc/functions/activation.php:314
89
- msgid "FTP credentials don't allow to chmod "
90
- msgstr ""
91
-
92
- #: inc/functions/activation.php:346
93
- msgid "FTP credentials don't allow to delete "
94
- msgstr ""
95
-
96
- #: inc/functions/activation.php:464
97
- #, php-format
98
- msgid ""
99
- "Create the <strong>%s</strong> file and paste the following text into it:\n"
100
- " <textarea>%s</textarea> <br />"
101
- msgstr ""
102
-
103
- #: inc/functions/activation.php:495
104
- msgid "Technical info"
105
- msgstr "معلومات فنية"
106
-
107
- #: inc/functions/activation.php:508
108
- msgid "Execute next commands in a shell:"
109
- msgstr "تنفيذ الأوامر التالية في الشيل:"
110
-
111
- #: inc/functions/activation.php:776
112
- #, php-format
113
- msgid ""
114
- "<strong>W3 Total Cache Error:</strong>\n"
115
- "\t\t Files and directories could not be automatically\n"
116
- "\t\t deleted.\n"
117
- "\t\t <table>\n"
118
- "\t\t <tr>\n"
119
- "\t\t <td>Please execute commands manually</td>\n"
120
- "\t\t <td>\n"
121
- "\t\t\t\t\t\t\t\t%s\n"
122
- "\t\t </td>\n"
123
- "\t\t </tr>\n"
124
- "\t\t <tr>\n"
125
- "\t\t <td>or use FTP form to allow\n"
126
- "\t\t <strong>W3 Total Cache</strong> make it "
127
- "automatically.\n"
128
- "\t\t </td>\n"
129
- "\t\t <td>\n"
130
- "\t\t\t\t\t\t\t\t%s\n"
131
- "\t\t </td>\n"
132
- "\t\t </tr></table>"
133
- msgstr ""
134
-
135
- #: inc/functions/activation.php:794
136
- msgid "View required changes"
137
- msgstr "عرض التغييرات المطلوبة"
138
-
139
- #: inc/functions/activation.php:795
140
- msgid "Update via FTP"
141
- msgstr "التحديث عن طريق FTP"
142
-
143
- #: inc/functions/admin_ui.php:113
144
- msgid "Take a minute to update, here's why:"
145
- msgstr ""
146
-
147
- #: inc/functions/rule.php:335
148
- #, php-format
149
- msgid ""
150
- "Edit file <strong>%s\n"
151
- " </strong> and replace all lines between and "
152
- "including <strong>%s</strong> and\n"
153
- " <strong>%s</strong> markers with:"
154
- msgstr ""
155
-
156
- #: inc/functions/rule.php:341
157
- #, php-format
158
- msgid ""
159
- "Edit file <strong>%s</strong> and add the following rules\n"
160
- " above the WordPress directives:"
161
- msgstr ""
162
-
163
- #: inc/functions/rule.php:385
164
- #, php-format
165
- msgid ""
166
- "Edit file <strong>%s</strong> and remove all lines between and including "
167
- "<strong>%s</strong>\n"
168
- " and <strong>%s</strong> markers."
169
- msgstr ""
170
-
171
- #: inc/functions/themes.php:28
172
- msgid "All Templates"
173
- msgstr "كافة القوالب"
174
-
175
- #: inc/functions/widgets.php:31
176
- msgid "View all"
177
- msgstr "عرض الكل"
178
-
179
- #: inc/functions/widgets.php:61 inc/options/support/form.php:26
180
- #: inc/options/support/payment.php:21 inc/widget/services.php:11
181
- msgid "Cancel"
182
- msgstr "إلغاء"
183
-
184
- #: inc/functions/widgets.php:65
185
- msgid "Configure"
186
- msgstr "تهيئة"
187
-
188
- #: inc/functions/widgets.php:83
189
- msgid "Submit"
190
- msgstr "ارسال"
191
-
192
- #: inc/lightbox/cdn_s3_bucket_location.php:14 inc/options/cdn/s3.php:26
193
- msgid "Create bucket"
194
- msgstr ""
195
-
196
- #: inc/lightbox/cdn_s3_bucket_location.php:18 inc/lightbox/self_test.php:320
197
- msgid "Close"
198
- msgstr "اغلاق"
199
-
200
- #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:2
201
- #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:30
202
- #: inc/widget/maxcdn_signup.php:26 inc/widget/netdna_signup.php:15
203
- msgid "Create Pull Zone"
204
- msgstr ""
205
-
206
- #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:8
207
- #: inc/options/support/form/bug_report.php:13
208
- #: inc/options/support/form/email_support.php:13
209
- #: inc/options/support/form/linux_config.php:13
210
- #: inc/options/support/form/new_feature.php:13
211
- #: inc/options/support/form/phone_support.php:13
212
- #: inc/options/support/form/plugin_config.php:13
213
- #: inc/options/support/form/theme_config.php:13
214
- msgid "Name:"
215
- msgstr "الاسم:"
216
-
217
- #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:10
218
- msgid ""
219
- "Pull Zone Name. Length: 3-32 chars; only letters, digits, and dash (-) "
220
- "accepted"
221
- msgstr ""
222
-
223
- #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:14
224
- msgid "Url used:"
225
- msgstr "الرابط المستخدم:"
226
-
227
- #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:16
228
- msgid "Origin URL"
229
- msgstr "الرابط الاصلي"
230
-
231
- #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:20
232
- msgid "Description:"
233
- msgstr "الوصف:"
234
-
235
- #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:22
236
- msgid "Something that describes your zone. Length: 1-255 chars"
237
- msgstr ""
238
-
239
- #: inc/lightbox/minify_recommendations.php:5
240
- msgid ""
241
- "To get started with minify, we've identified the following external CSS and "
242
- "JS objects in the"
243
- msgstr ""
244
-
245
- #: inc/lightbox/minify_recommendations.php:11
246
- msgid ""
247
- "theme. Select \"add\" the files you wish to minify, then click \"apply &amp; "
248
- "close\" to save the settings."
249
- msgstr ""
250
-
251
- #: inc/lightbox/minify_recommendations.php:23
252
- #: inc/lightbox/minify_recommendations.php:77
253
- msgid "Add:"
254
- msgstr "إضافة:"
255
-
256
- #: inc/lightbox/minify_recommendations.php:25
257
- #: inc/lightbox/minify_recommendations.php:79 inc/options/minify.php:234
258
- #: inc/options/minify.php:359
259
- msgid "File URI:"
260
- msgstr "مسار الملف:"
261
-
262
- #: inc/lightbox/minify_recommendations.php:26
263
- #: inc/lightbox/minify_recommendations.php:80 inc/options/minify.php:235
264
- #: inc/options/minify.php:360
265
- msgid "Template:"
266
- msgstr "القالب:"
267
-
268
- #: inc/lightbox/minify_recommendations.php:27 inc/options/minify.php:236
269
- msgid "Embed Location:"
270
- msgstr "إدراج الموقع:"
271
-
272
- #: inc/lightbox/minify_recommendations.php:47 inc/options/minify.php:254
273
- msgid "Embed in &lt;head&gt;"
274
- msgstr ""
275
-
276
- #: inc/lightbox/minify_recommendations.php:48 inc/options/minify.php:255
277
- msgid "Embed after &lt;body&gt;"
278
- msgstr "تضمينها بعد &lt;body&gt; "
279
-
280
- #: inc/lightbox/minify_recommendations.php:49 inc/options/minify.php:256
281
- msgid "Embed before &lt;/body&gt;"
282
- msgstr "تضمينها قبل &lt;/body&gt;"
283
-
284
- #: inc/lightbox/minify_recommendations.php:53
285
- #: inc/lightbox/minify_recommendations.php:98 inc/options/minify.php:261
286
- #: inc/options/minify.php:378
287
- msgid "Verify URI"
288
- msgstr "لتحقق من الرابط"
289
-
290
- #: inc/lightbox/minify_recommendations.php:62
291
- #: inc/lightbox/minify_recommendations.php:107
292
- msgid "Check / Uncheck All"
293
- msgstr "تحديد / إلغاء تحديد كل"
294
-
295
- #: inc/lightbox/minify_recommendations.php:65
296
- msgid "No files found."
297
- msgstr "لم يتم العثور على الملفات."
298
-
299
- #: inc/lightbox/minify_recommendations.php:68
300
- msgid "Cascading Style Sheets:"
301
- msgstr ""
302
-
303
- #: inc/lightbox/minify_recommendations.php:116
304
- msgid "Apply &amp; close"
305
- msgstr "Apply &amp; close"
306
-
307
- #: inc/lightbox/minify_recommendations.php:120
308
- msgid "Notes"
309
- msgstr "ملاحظات"
310
-
311
- #: inc/lightbox/minify_recommendations.php:123
312
- msgid ""
313
- "Typically minification of advertiser code, analytics/statistics or any other "
314
- "types of tracking code is not recommended."
315
- msgstr ""
316
-
317
- #: inc/lightbox/minify_recommendations.php:124
318
- msgid ""
319
- "Scripts that were not already detected above may require <a href=\"admin.php?"
320
- "page=w3tc_support&amp;request_type=plugin_config\">professional "
321
- "consultation</a> to implement."
322
- msgstr ""
323
-
324
- #: inc/lightbox/self_test.php:10
325
- msgid "Compatibility Test"
326
- msgstr "اختبار التوافق"
327
-
328
- #: inc/lightbox/self_test.php:13
329
- msgid "Legend"
330
- msgstr ""
331
-
332
- #: inc/lightbox/self_test.php:16
333
- msgid "<code>Installed</code>: Functionality will work properly."
334
- msgstr ""
335
-
336
- #: inc/lightbox/self_test.php:17
337
- msgid ""
338
- "<code>Not detected</code>: May be installed, but cannot be automatically "
339
- "confirmed."
340
- msgstr ""
341
-
342
- #: inc/lightbox/self_test.php:18
343
- msgid "<code>Ok</code>: Current value is acceptable."
344
- msgstr ""
345
-
346
- #: inc/lightbox/self_test.php:19
347
- msgid "<code>Yes / No</code>: The value was successful detected."
348
- msgstr ""
349
-
350
- #: inc/lightbox/self_test.php:24
351
- msgid "Server Modules &amp; Resources:"
352
- msgstr ""
353
-
354
- #: inc/lightbox/self_test.php:28
355
- msgid "Plugin Version:"
356
- msgstr "اضدار الاضافة:"
357
-
358
- #: inc/lightbox/self_test.php:32
359
- msgid "PHP Version:"
360
- msgstr "إصدار php:"
361
-
362
- #: inc/lightbox/self_test.php:60
363
- msgid ""
364
- "(required for Self-hosted (<acronym title=\"File Transfer Protocol\">FTP</"
365
- "acronym>) <acronym title=\"Content Delivery Network\">CDN</acronym> support)"
366
- msgstr ""
367
-
368
- #: inc/lightbox/self_test.php:64
369
- msgid "Multibyte String support:"
370
- msgstr ""
371
-
372
- #: inc/lightbox/self_test.php:66 inc/lightbox/self_test.php:76
373
- #: inc/lightbox/self_test.php:86 inc/lightbox/self_test.php:111
374
- #: inc/lightbox/self_test.php:120 inc/lightbox/self_test.php:206
375
- msgid "Installed"
376
- msgstr "مثبت"
377
-
378
- #: inc/lightbox/self_test.php:68 inc/lightbox/self_test.php:78
379
- #: inc/lightbox/self_test.php:88 inc/lightbox/self_test.php:104
380
- #: inc/lightbox/self_test.php:113 inc/lightbox/self_test.php:122
381
- #: inc/lightbox/self_test.php:134 inc/lightbox/self_test.php:146
382
- #: inc/lightbox/self_test.php:208
383
- msgid "Not installed"
384
- msgstr "لم يتم التثبيت"
385
-
386
- #: inc/lightbox/self_test.php:70
387
- msgid "(required for Rackspace Cloud Files support)"
388
- msgstr ""
389
-
390
- #: inc/lightbox/self_test.php:74
391
- msgid "cURL extension:"
392
- msgstr ""
393
-
394
- #: inc/lightbox/self_test.php:80
395
- msgid ""
396
- "(required for Amazon S3, Amazon CloudFront, Rackspace CloudFiles support)"
397
- msgstr ""
398
-
399
- #: inc/lightbox/self_test.php:90
400
- msgid "(required for compression support)"
401
- msgstr ""
402
-
403
- #: inc/lightbox/self_test.php:96
404
- msgid "Installed (APC)"
405
- msgstr " منصب (APC)"
406
-
407
- #: inc/lightbox/self_test.php:98
408
- msgid "Installed (eAccelerator)"
409
- msgstr "منصب (eAccelerator)"
410
-
411
- #: inc/lightbox/self_test.php:100
412
- msgid "Installed (XCache)"
413
- msgstr "منصب (XCache)"
414
-
415
- #: inc/lightbox/self_test.php:102
416
- msgid "PHP6"
417
- msgstr "PHP6"
418
-
419
- #: inc/lightbox/self_test.php:109
420
- msgid "Memcache extension:"
421
- msgstr ""
422
-
423
- #: inc/lightbox/self_test.php:118
424
- msgid "HTML Tidy extension:"
425
- msgstr ""
426
-
427
- #: inc/lightbox/self_test.php:124
428
- msgid "(required for HTML Tidy minifier support)"
429
- msgstr ""
430
-
431
- #: inc/lightbox/self_test.php:128
432
- msgid "Mime type detection:"
433
- msgstr ""
434
-
435
- #: inc/lightbox/self_test.php:130
436
- msgid "Installed (Fileinfo)"
437
- msgstr " منصب (Fileinfo)"
438
-
439
- #: inc/lightbox/self_test.php:132
440
- msgid "Installed (mime_content_type)"
441
- msgstr "منصب (mime_content_type)"
442
-
443
- #: inc/lightbox/self_test.php:136
444
- msgid ""
445
- "(required for <acronym title=\"Content Delivery Network\">CDN</acronym> "
446
- "support)"
447
- msgstr ""
448
-
449
- #: inc/lightbox/self_test.php:140
450
- msgid "Hash function:"
451
- msgstr "دالة التجزئة:"
452
-
453
- #: inc/lightbox/self_test.php:142
454
- msgid "Installed (hash)"
455
- msgstr "منصب (hash)"
456
-
457
- #: inc/lightbox/self_test.php:144
458
- msgid "Installed (mhash)"
459
- msgstr "منصب (mhash)"
460
-
461
- #: inc/lightbox/self_test.php:148
462
- msgid ""
463
- "(required for NetDNA / MaxCDN <acronym title=\"Content Delivery Network"
464
- "\">CDN</acronym> purge support)"
465
- msgstr ""
466
-
467
- #: inc/lightbox/self_test.php:152
468
- msgid "Safe mode:"
469
- msgstr "الوضع الآمن:"
470
-
471
- #: inc/lightbox/self_test.php:154 inc/lightbox/self_test.php:172
472
- msgid "On"
473
- msgstr "على"
474
-
475
- #: inc/lightbox/self_test.php:156 inc/lightbox/self_test.php:165
476
- #: inc/lightbox/self_test.php:174
477
- msgid "Off"
478
- msgstr "موقف"
479
-
480
- #: inc/lightbox/self_test.php:161
481
- msgid "Open basedir:"
482
- msgstr "فتح basedir:"
483
-
484
- #: inc/lightbox/self_test.php:163
485
- msgid "On:"
486
- msgstr "مشغل:"
487
-
488
- #: inc/lightbox/self_test.php:170
489
- msgid "zlib output compression:"
490
- msgstr ""
491
-
492
- #: inc/lightbox/self_test.php:179
493
- msgid "set_time_limit:"
494
- msgstr "set_time_limit:"
495
-
496
- #: inc/lightbox/self_test.php:181
497
- msgid "Available"
498
- msgstr "متاح"
499
-
500
- #: inc/lightbox/self_test.php:183
501
- msgid "Not available"
502
- msgstr "غير متاح"
503
-
504
- #: inc/lightbox/self_test.php:211
505
- msgid "Not detected"
506
- msgstr "لم يتم الاكتشاف"
507
-
508
- #: ../inc/lightbox/self_test.php:202
509
- msgid "(required for Self-hosted (<acronym title=\"File Transfer Protocol\">FTP</acronym>) <acronym title=\"Content Delivery Network\">CDN</acronym> <acronym title=\"Secure File Transfer Protocol\">SFTP</acronym> support)"
510
- msgstr ""
511
-
512
- #: inc/lightbox/self_test.php:213
513
- msgid "(required for disk enhanced Page Cache and Browser Cache)"
514
- msgstr ""
515
-
516
- #: inc/lightbox/self_test.php:220
517
- msgid "Additional modules"
518
- msgstr ""
519
-
520
- #: inc/lightbox/self_test.php:231
521
- msgid "WordPress Resources"
522
- msgstr "مصادر ووردبريس"
523
-
524
- #: inc/lightbox/self_test.php:246 inc/lightbox/self_test.php:263
525
- #: inc/lightbox/self_test.php:277 lib/W3/Cdn/Mirror/Akamai.php:112
526
- #: lib/W3/Cdn/Mirror/Cotendo.php:114 lib/W3/Cdn/Mirror/Edgecast.php:66
527
- #: lib/W3/Cdn/Mirror/Netdna.php:234
528
- msgid "OK"
529
- msgstr "موافق"
530
-
531
- #: inc/lightbox/self_test.php:248 inc/lightbox/self_test.php:254
532
- #: inc/lightbox/self_test.php:265 inc/lightbox/self_test.php:275
533
- msgid "Not write-able"
534
- msgstr "غير قابل للكتابة"
535
-
536
- #: inc/lightbox/self_test.php:252
537
- msgid "Write-able"
538
- msgstr "قابل للكتابة"
539
-
540
- #: inc/lightbox/self_test.php:273
541
- msgid "Error:"
542
- msgstr "خطاء:"
543
-
544
- #: inc/lightbox/self_test.php:282
545
- msgid "Fancy permalinks:"
546
- msgstr ""
547
-
548
- #: inc/lightbox/self_test.php:286 inc/lightbox/self_test.php:304
549
- #: inc/options/minify.php:58
550
- msgid "Disabled"
551
- msgstr "معطل"
552
-
553
- #: inc/lightbox/self_test.php:291
554
- msgid "WP_CACHE define:"
555
- msgstr ""
556
-
557
- #: inc/lightbox/self_test.php:293
558
- msgid "Defined"
559
- msgstr "معرف"
560
-
561
- #: inc/lightbox/self_test.php:295
562
- msgid "Not defined"
563
- msgstr "غير معرف"
564
-
565
- #: inc/lightbox/self_test.php:300
566
- msgid "URL rewrite:"
567
- msgstr "اعادة كتابة الرابط:"
568
-
569
- #: inc/lightbox/self_test.php:302
570
- msgid "Enabled"
571
- msgstr "ممكن"
572
-
573
- #: inc/lightbox/self_test.php:309
574
- msgid "Network mode:"
575
- msgstr "وضع الشبكة:"
576
-
577
- #: inc/lightbox/self_test.php:311 inc/options/support/form/bug_report.php:87
578
- msgid "Yes"
579
- msgstr "نعم"
580
-
581
- #: inc/lightbox/self_test.php:313
582
- msgid "No"
583
- msgstr "لا"
584
-
585
- #: inc/lightbox/support_us.php:2
586
- msgid "Support Us, It's Free!"
587
- msgstr "ادعمنا, مجاناً"
588
-
589
- #: inc/lightbox/support_us.php:4
590
- msgid ""
591
- "We noticed you've been using W3 Total cache for at least 30 days, please "
592
- "help us improe WordPress:"
593
- msgstr ""
594
- "لاحظنا انك تستخدم اداة W3TC لمدة لا تقل عن 30 يوم, لذا نرجو ان تساعدنا "
595
- "لتطوير وردبريس"
596
-
597
- #: inc/lightbox/support_us.php:9
598
- msgid "Link to us:"
599
- msgstr "ارتبط بنا: "
600
-
601
- #: inc/lightbox/support_us.php:16
602
- #, php-format
603
- msgid "tell your friends%s with a tweet"
604
- msgstr "اخبر اصدقائك%s بتغريدة"
605
-
606
- #: inc/lightbox/support_us.php:17
607
- msgid "I've tweeted"
608
- msgstr "تم نشر التغريدة"
609
-
610
- #: inc/lightbox/support_us.php:18
611
- #, php-format
612
- msgid "and login to wordpress.org to give us a great %srating%s"
613
- msgstr "وقمت بتسجيل الدخول على wordpress.org لتمنحنا %srating%s"
614
-
615
- #: inc/lightbox/support_us.php:22
616
- msgid "Thanks in advance!"
617
- msgstr ""
618
-
619
- #: inc/lightbox/support_us.php:25
620
- msgid "Save &amp; close"
621
- msgstr "حفظ &amp; اغلاق"
622
-
623
- #: inc/lightbox/support_us.php:26
624
- msgid "Don't show this prompt again"
625
- msgstr "لا تظهر هذه المطالبة مرة أخرى"
626
-
627
- #: inc/options/about.php:5
628
- msgid ""
629
- "User experience is an important aspect of every web site and all web sites "
630
- "can benefit from effective caching and file size reduction. We have applied "
631
- "web site optimization methods typically used with high traffic sites and "
632
- "simplified their implementation. Coupling these methods either <a href="
633
- "\"http://memcached.org/\" target=\"_blank\">memcached</a> and/or opcode "
634
- "caching and the <acronym title=\"Content Delivery Network\">CDN</acronym> of "
635
- "your choosing to provide the following features and benefits:"
636
- msgstr ""
637
-
638
- #: inc/options/about.php:8
639
- msgid "Improved Google search engine ranking"
640
- msgstr "تحسين الترتيب في محرك البحث قوقل"
641
-
642
- #: inc/options/about.php:9
643
- msgid "Increased visitor time on site"
644
- msgstr "زيادة وقت الزائر في الموقع"
645
-
646
- #: inc/options/about.php:10
647
- msgid "Optimized progressive render (pages start rendering immediately)"
648
- msgstr ""
649
-
650
- #: inc/options/about.php:11
651
- msgid ""
652
- "Reduced <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> "
653
- "Transactions, <acronym title=\"Domain Name System\">DNS</acronym> lookups "
654
- "and reduced document load time"
655
- msgstr ""
656
-
657
- #: inc/options/about.php:12
658
- msgid ""
659
- "Bandwidth savings via Minify and <acronym title=\"Hypertext Transfer Protocol"
660
- "\">HTTP</acronym> compression of <acronym title=\"Hypertext Markup Language"
661
- "\">HTML</acronym>, <acronym title=\"Cascading Style Sheet\">CSS</acronym>, "
662
- "JavaScript and feeds"
663
- msgstr ""
664
-
665
- #: inc/options/about.php:13
666
- msgid ""
667
- "Increased web server concurrency and increased scale (easily sustain high "
668
- "traffic spikes)"
669
- msgstr ""
670
-
671
- #: inc/options/about.php:14
672
- msgid ""
673
- "Transparent content delivery network (<acronym title=\"Content Delivery "
674
- "Network\">CDN</acronym>) integration with Media Library, theme files and "
675
- "WordPress core"
676
- msgstr ""
677
-
678
- #: inc/options/about.php:15
679
- msgid "Caching of pages / posts in memory or on disk or on CDN (mirror only)"
680
- msgstr ""
681
-
682
- #: inc/options/about.php:16
683
- msgid ""
684
- "Caching of (minified) <acronym title=\"Cascading Style Sheet\">CSS</acronym> "
685
- "and JavaScript in memory, on disk or on <acronym title=\"Content Delivery "
686
- "Network\">CDN</acronym>"
687
- msgstr ""
688
-
689
- #: inc/options/about.php:17
690
- msgid "Caching of database objects in memory or on disk"
691
- msgstr ""
692
-
693
- #: inc/options/about.php:18
694
- msgid "Caching of objects in memory or on disk"
695
- msgstr ""
696
-
697
- #: inc/options/about.php:19
698
- msgid ""
699
- "Caching of feeds (site, categories, tags, comments, search results) in "
700
- "memory or on disk"
701
- msgstr ""
702
-
703
- #: inc/options/about.php:20
704
- msgid ""
705
- "Caching of search results pages (i.e. <acronym title=\"Uniform Resource "
706
- "Identifier\">URI</acronym>s with query string variables) in memory or on disk"
707
- msgstr ""
708
-
709
- #: inc/options/about.php:21
710
- msgid "Minification of posts / pages and feeds"
711
- msgstr ""
712
-
713
- #: inc/options/about.php:22
714
- msgid ""
715
- "Minification (concatenation and white space removal) of inline, external or "
716
- "3rd party JavaScript / <acronym title=\"Cascading Style Sheet\">CSS</"
717
- "acronym> with automated updates"
718
- msgstr ""
719
-
720
- #: inc/options/about.php:23
721
- msgid ""
722
- "Complete header management including <a href=\"http://en.wikipedia.org/wiki/"
723
- "HTTP_ETag\">Etags</a>"
724
- msgstr ""
725
-
726
- #: inc/options/about.php:24
727
- msgid "JavaScript embedding group and location management"
728
- msgstr ""
729
-
730
- #: inc/options/about.php:25
731
- msgid ""
732
- "Import post attachments directly into the Media Library (and <acronym title="
733
- "\"Content Delivery Network\">CDN</acronym>)"
734
- msgstr ""
735
-
736
- #: inc/options/about.php:28
737
- msgid ""
738
- "Your users have less data to download, you can now serve more visitors at "
739
- "once without upgrading your hardware and you don't have to change how you do "
740
- "anything; just set it and forget it."
741
- msgstr ""
742
-
743
- #: inc/options/about.php:30
744
- msgid "Who do I thank for all of this?"
745
- msgstr ""
746
-
747
- #: inc/options/about.php:32
748
- msgid ""
749
- "It's quite difficult to recall all of the innovators that have shared their "
750
- "thoughts, code and experiences in the blogosphere over the years, but here "
751
- "are some names to get you started:"
752
- msgstr ""
753
-
754
- #: inc/options/about.php:49
755
- msgid ""
756
- "Please reach out to all of these people and support their projects if you're "
757
- "so inclined."
758
- msgstr ""
759
-
760
- #: inc/options/browsercache.php:6
761
- #, php-format
762
- msgid "Browser caching is currently %s."
763
- msgstr ""
764
-
765
- #: inc/options/browsercache.php:6 inc/options/cdn.php:8
766
- #: inc/options/dashboard.php:7 inc/options/dbcache.php:6
767
- #: inc/options/general.php:7 inc/options/minify.php:16
768
- #: inc/options/new_relic.php:4 inc/options/objectcache.php:9
769
- #: inc/options/pgcache.php:9 inc/options/pro/fragmentcache.php:6
770
- #: inc/widget/new_relic.php:89
771
- msgid "enabled"
772
- msgstr "ممكن"
773
-
774
- #: inc/options/browsercache.php:6 inc/options/cdn.php:8
775
- #: inc/options/dashboard.php:7 inc/options/dbcache.php:6
776
- #: inc/options/general.php:7 inc/options/minify.php:16
777
- #: inc/options/new_relic.php:4 inc/options/objectcache.php:9
778
- #: inc/options/pgcache.php:9 inc/options/pro/fragmentcache.php:6
779
- #: inc/widget/new_relic.php:89
780
- msgid "disabled"
781
- msgstr "معطل"
782
-
783
- #: inc/options/browsercache.php:12
784
- #, php-format
785
- msgid ""
786
- "%sUpdate media query string%s to make existing file modifications visible to "
787
- "visitors with a primed cache"
788
- msgstr ""
789
-
790
- #: inc/options/browsercache.php:20 inc/options/cdn.php:42
791
- #: inc/options/dbcache.php:18 inc/options/general.php:15
792
- #: inc/options/minify.php:36 inc/options/pgcache.php:24
793
- #: inc/options/common/header.php:78 inc/options/common/header.php:105
794
- #: inc/options/common/header.php:118 inc/options/common/header.php:132
795
- #: inc/options/common/header.php:151 inc/options/common/header.php:181
796
- msgid "General"
797
- msgstr "عام"
798
-
799
- #: inc/options/browsercache.php:21
800
- msgid "Specify global browser cache policy."
801
- msgstr ""
802
-
803
- #: inc/options/browsercache.php:29 inc/options/browsercache.php:128
804
- #: inc/options/browsercache.php:218 inc/options/browsercache.php:294
805
- msgid "Set Last-Modified header"
806
- msgstr ""
807
-
808
- #: inc/options/browsercache.php:30 inc/options/browsercache.php:129
809
- #: inc/options/browsercache.php:219 inc/options/browsercache.php:295
810
- msgid "Set the Last-Modified header to enable 304 Not Modified response."
811
- msgstr ""
812
-
813
- #: inc/options/browsercache.php:39 inc/options/browsercache.php:135
814
- #: inc/options/browsercache.php:225 inc/options/browsercache.php:301
815
- msgid "Set expires header"
816
- msgstr ""
817
-
818
- #: inc/options/browsercache.php:40 inc/options/browsercache.php:136
819
- #: inc/options/browsercache.php:226 inc/options/browsercache.php:302
820
- msgid "Set the expires header to encourage browser caching of files."
821
- msgstr ""
822
-
823
- #: inc/options/browsercache.php:46 inc/options/browsercache.php:151
824
- #: inc/options/browsercache.php:242 inc/options/browsercache.php:317
825
- msgid "Set cache control header"
826
- msgstr ""
827
-
828
- #: inc/options/browsercache.php:47 inc/options/browsercache.php:152
829
- #: inc/options/browsercache.php:243 inc/options/browsercache.php:318
830
- msgid ""
831
- "Set pragma and cache-control headers to encourage browser caching of files."
832
- msgstr ""
833
-
834
- #: inc/options/browsercache.php:54 inc/options/browsercache.php:175
835
- #: inc/options/browsercache.php:265 inc/options/browsercache.php:341
836
- msgid "Set entity tag (eTag)"
837
- msgstr ""
838
-
839
- #: inc/options/browsercache.php:55 inc/options/browsercache.php:176
840
- #: inc/options/browsercache.php:266 inc/options/browsercache.php:342
841
- msgid "Set the Etag header to encourage browser caching of files."
842
- msgstr ""
843
-
844
- #: inc/options/browsercache.php:61 inc/options/browsercache.php:181
845
- #: inc/options/browsercache.php:271 inc/options/browsercache.php:347
846
- msgid "Set W3 Total Cache header"
847
- msgstr ""
848
-
849
- #: inc/options/browsercache.php:62 inc/options/browsercache.php:182
850
- #: inc/options/browsercache.php:272 inc/options/browsercache.php:348
851
- msgid "Set this header to assist in identifying optimized files."
852
- msgstr ""
853
-
854
- #: inc/options/browsercache.php:69 inc/options/browsercache.php:187
855
- #: inc/options/browsercache.php:277
856
- msgid ""
857
- "Enable <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> (gzip) "
858
- "compression"
859
- msgstr ""
860
-
861
- #: inc/options/browsercache.php:70 inc/options/browsercache.php:188
862
- #: inc/options/browsercache.php:278 inc/options/browsercache.php:354
863
- msgid "Reduce the download time for text-based files."
864
- msgstr "تقليل من وقت تحميل ملفات text-based."
865
-
866
- #: inc/options/browsercache.php:77 inc/options/browsercache.php:193
867
- #: inc/options/browsercache.php:359
868
- msgid "Prevent caching of objects after settings change"
869
- msgstr ""
870
-
871
- #: inc/options/browsercache.php:78 inc/options/browsercache.php:194
872
- #: inc/options/browsercache.php:360
873
- msgid ""
874
- "Whenever settings are changed, a new query string will be generated and "
875
- "appended to objects allowing the new policy to be applied."
876
- msgstr ""
877
-
878
- #: inc/options/browsercache.php:82
879
- msgid "Prevent caching exception list:"
880
- msgstr ""
881
-
882
- #: inc/options/browsercache.php:87
883
- msgid ""
884
- "Do not add the prevent caching query string to the specified files. Supports "
885
- "regular expression."
886
- msgstr ""
887
-
888
- #: inc/options/browsercache.php:94 inc/options/browsercache.php:199
889
- #: inc/options/browsercache.php:365
890
- msgid "Disable cookies for static files"
891
- msgstr "تعطيل الكوكيز للملفات الثابته"
892
-
893
- #: inc/options/browsercache.php:95 inc/options/browsercache.php:200
894
- #: inc/options/browsercache.php:366
895
- msgid "Removes Set-Cookie header for responses."
896
- msgstr ""
897
-
898
- #: inc/options/browsercache.php:100
899
- msgid "Do not process 404 errors for static objects with WordPress"
900
- msgstr ""
901
-
902
- #: inc/options/browsercache.php:101
903
- msgid ""
904
- "Reduce server load by allowing the web server to handle 404 (not found) "
905
- "errors for static files (images etc)."
906
- msgstr ""
907
-
908
- #: inc/options/browsercache.php:105
909
- msgid "404 error exception list:"
910
- msgstr ""
911
-
912
- #: inc/options/browsercache.php:110
913
- msgid "Never process 404 (not found) events for the specified files."
914
- msgstr ""
915
-
916
- #: inc/options/browsercache.php:117 inc/options/browsercache.php:207
917
- #: inc/options/browsercache.php:285 inc/options/browsercache.php:373
918
- #: inc/options/cdn.php:138 inc/options/cdn.php:153 inc/options/cdn.php:301
919
- #: inc/options/dbcache.php:30 inc/options/dbcache.php:95
920
- #: inc/options/general.php:43 inc/options/general.php:97
921
- #: inc/options/general.php:184 inc/options/general.php:235
922
- #: inc/options/general.php:282 inc/options/general.php:312
923
- #: inc/options/general.php:364 inc/options/general.php:399
924
- #: inc/options/general.php:467 inc/options/general.php:579
925
- #: inc/options/general.php:735 inc/options/general.php:765
926
- #: inc/options/minify.php:70 inc/options/minify.php:126
927
- #: inc/options/minify.php:280 inc/options/minify.php:397
928
- #: inc/options/minify.php:498 inc/options/mobile.php:83
929
- #: inc/options/objectcache.php:83 inc/options/pgcache.php:95
930
- #: inc/options/pgcache.php:142 inc/options/pgcache.php:229
931
- #: inc/options/pgcache.php:390 inc/options/referrer.php:83
932
- #: inc/options/pro/fragmentcache.php:87
933
- msgid "Save all settings"
934
- msgstr "حفظ كافة الإعدادات"
935
-
936
- #: inc/options/browsercache.php:121 inc/options/common/header.php:152
937
- msgid ""
938
- "<acronym title=\"Cascading Style Sheet\">CSS</acronym> &amp; <acronym title="
939
- "\"JavaScript\">JS</acronym>"
940
- msgstr ""
941
-
942
- #: inc/options/browsercache.php:122
943
- msgid ""
944
- "Specify browser cache policy for Cascading Style Sheets and JavaScript files."
945
- msgstr ""
946
-
947
- #: inc/options/browsercache.php:141 inc/options/browsercache.php:231
948
- #: inc/options/browsercache.php:307
949
- msgid "Expires header lifetime:"
950
- msgstr ""
951
-
952
- #: inc/options/browsercache.php:146 inc/options/browsercache.php:237
953
- #: inc/options/browsercache.php:312 inc/options/cdn.php:208
954
- #: inc/options/cdn.php:217 inc/options/dbcache.php:53
955
- #: inc/options/dbcache.php:61 inc/options/minify.php:437
956
- #: inc/options/minify.php:446 inc/options/objectcache.php:41
957
- #: inc/options/objectcache.php:49 inc/options/pgcache.php:111
958
- #: inc/options/pgcache.php:275 inc/options/pgcache.php:285
959
- #: inc/options/pgcache.php:292 inc/options/pro/fragmentcache.php:63
960
- #: inc/options/pro/fragmentcache.php:70
961
- msgid "seconds"
962
- msgstr "ثواني"
963
-
964
- #: inc/options/browsercache.php:157 inc/options/browsercache.php:248
965
- #: inc/options/browsercache.php:323
966
- msgid "Cache Control policy:"
967
- msgstr "سياسة تحكم ذاكرة التخزين المؤقت:"
968
-
969
- #: inc/options/browsercache.php:165 inc/options/browsercache.php:255
970
- #: inc/options/browsercache.php:331
971
- msgid "cache with max-age (\"public, max-age=EXPIRES_SECONDS\")"
972
- msgstr ""
973
-
974
- #: inc/options/browsercache.php:166
975
- msgid "cache with validation (\"public, must-revalidate, proxy-revalidate\")"
976
- msgstr ""
977
-
978
- #: inc/options/browsercache.php:167 inc/options/browsercache.php:257
979
- #: inc/options/browsercache.php:333
980
- msgid ""
981
- "cache with max-age and validation (\"max-age=EXPIRES_SECONDS, public, must-"
982
- "revalidate, proxy-revalidate\")"
983
- msgstr ""
984
-
985
- #: inc/options/browsercache.php:168 inc/options/browsercache.php:258
986
- #: inc/options/browsercache.php:334
987
- msgid "cache without proxy (\"private, must-revalidate\")"
988
- msgstr ""
989
-
990
- #: inc/options/browsercache.php:169
991
- msgid "no-cache (\"max-age=0, private, no-store, no-cache, must-revalidate\")"
992
- msgstr ""
993
-
994
- #: inc/options/browsercache.php:211
995
- msgid ""
996
- "<acronym title=\"Hypertext Markup Language\">HTML</acronym> &amp; <acronym "
997
- "title=\"Extensible Markup Language\">XML</acronym>"
998
- msgstr ""
999
-
1000
- #: inc/options/browsercache.php:212
1001
- msgid ""
1002
- "Specify browser cache policy for posts, pages, feeds and text-based files."
1003
- msgstr ""
1004
-
1005
- #: inc/options/browsercache.php:256 inc/options/browsercache.php:332
1006
- msgid "cache with validation (\"public, must-revalidate, proxy-revalidate\")"
1007
- msgstr ""
1008
-
1009
- #: inc/options/browsercache.php:259 inc/options/browsercache.php:335
1010
- msgid "no-cache (\"max-age=0, private, no-store, no-cache, must-revalidate\")"
1011
- msgstr ""
1012
-
1013
- #: inc/options/browsercache.php:289
1014
- msgid "Media &amp; Other Files"
1015
- msgstr ""
1016
-
1017
- #: inc/options/browsercache.php:330
1018
- msgid "cache (\"public\")"
1019
- msgstr ""
1020
-
1021
- #: inc/options/browsercache.php:353
1022
- msgid ""
1023
- "Enable <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> (gzip) "
1024
- "compression</label>"
1025
- msgstr ""
1026
-
1027
- #: inc/options/cdn.php:6
1028
- #, php-format
1029
- msgid "Content Delivery Network support via %1$s is currently %2$s."
1030
- msgstr ""
1031
-
1032
- #: inc/options/cdn.php:26
1033
- msgid ""
1034
- "Prepare the <acronym title=\"Content Delivery Network\">CDN</acronym> by:"
1035
- msgstr ""
1036
-
1037
- #: inc/options/cdn.php:27
1038
- msgid "importing attachments into the Media Library"
1039
- msgstr "استيراد المرفقات في مكتبة الوسائط"
1040
-
1041
- #: inc/options/cdn.php:28
1042
- msgid "unsuccessful file transfers"
1043
- msgstr "لم يتم نقل الملفات بشكل صحيح"
1044
-
1045
- #: inc/options/cdn.php:28
1046
- msgid "if some objects appear to be missing."
1047
- msgstr ""
1048
-
1049
- #: inc/options/cdn.php:30 inc/popup/cdn_purge.php:35 inc/widget/maxcdn.php:25
1050
- #: inc/widget/netdna.php:25
1051
- msgid "Purge"
1052
- msgstr "إزالة"
1053
-
1054
- #: inc/options/cdn.php:30
1055
- msgid ""
1056
- "objects from the <acronym title=\"Content Delivery Network\">CDN</acronym> "
1057
- "if needed."
1058
- msgstr ""
1059
-
1060
- #: inc/options/cdn.php:32
1061
- msgid "if the domain name of your site has ever changed."
1062
- msgstr ""
1063
-
1064
- #: inc/options/cdn.php:36 inc/options/minify.php:29
1065
- msgid "Update media query string"
1066
- msgstr ""
1067
-
1068
- #: inc/options/cdn.php:36
1069
- msgid ""
1070
- "to make existing file modifications visible to visitors with a primed cache."
1071
- msgstr ""
1072
-
1073
- #: inc/options/cdn.php:46
1074
- msgid "Host attachments"
1075
- msgstr "مضيف المفرفقات"
1076
-
1077
- #: inc/options/cdn.php:47
1078
- msgid ""
1079
- "If checked, all attachments will be hosted with the <acronym title=\"Content "
1080
- "Delivery Network\">CDN</acronym>."
1081
- msgstr ""
1082
-
1083
- #: inc/options/cdn.php:51
1084
- msgid "Upload attachments"
1085
- msgstr "تحميل المرفقات"
1086
-
1087
- #: inc/options/cdn.php:57
1088
- msgid "Host wp-includes/ files"
1089
- msgstr ""
1090
-
1091
- #: inc/options/cdn.php:58
1092
- msgid ""
1093
- "If checked, WordPress static core file types specified in the \"wp-includes "
1094
- "file types to upload\" field below will be hosted with the <acronym title="
1095
- "\"Content Delivery Network\">CDN</acronym>."
1096
- msgstr ""
1097
-
1098
- #: inc/options/cdn.php:62
1099
- msgid "Upload includes files"
1100
- msgstr ""
1101
-
1102
- #: inc/options/cdn.php:68
1103
- msgid "Host theme files"
1104
- msgstr ""
1105
-
1106
- #: inc/options/cdn.php:69
1107
- msgid ""
1108
- "If checked, all theme file types specified in the \"theme file types to "
1109
- "upload\" field below will be hosted with the <acronym title=\"Content "
1110
- "Delivery Network\">CDN</acronym>."
1111
- msgstr ""
1112
-
1113
- #: inc/options/cdn.php:73
1114
- msgid "Upload theme files"
1115
- msgstr "تحميل ملفات القالب"
1116
-
1117
- #: inc/options/cdn.php:79
1118
- msgid ""
1119
- "Host minified <acronym title=\"Cascading Style Sheet\">CSS</acronym> and "
1120
- "<acronym title=\"JavaScript\">JS</acronym> files"
1121
- msgstr ""
1122
-
1123
- #: inc/options/cdn.php:80
1124
- msgid ""
1125
- "If checked, minified <acronym>CSS</acronym> and <acronym>JS</acronym> files "
1126
- "will be hosted with the <acronym title=\"Content Delivery Network\">CDN</"
1127
- "acronym>."
1128
- msgstr ""
1129
-
1130
- #: inc/options/cdn.php:84
1131
- msgid "Upload minify files"
1132
- msgstr ""
1133
-
1134
- #: inc/options/cdn.php:90
1135
- msgid "Host custom files"
1136
- msgstr ""
1137
-
1138
- #: inc/options/cdn.php:92
1139
- #, php-format
1140
- msgid ""
1141
- "If checked, any file names or paths specified in the \"custom file list\" "
1142
- "field below will be hosted with the <acronym title=\"Content Delivery Network"
1143
- "\">CDN</acronym>. Supports regular expression (See <a href=\"%s\">FAQ</a>)"
1144
- msgstr ""
1145
-
1146
- #: inc/options/cdn.php:97
1147
- msgid "Upload custom files"
1148
- msgstr "تحميل الملفات المخصصة"
1149
-
1150
- #: inc/options/cdn.php:104
1151
- msgid "Force over-writing of existing files"
1152
- msgstr ""
1153
-
1154
- #: inc/options/cdn.php:105
1155
- msgid ""
1156
- "If modified files are not always detected and replaced, use this option to "
1157
- "over-write them."
1158
- msgstr ""
1159
-
1160
- #: inc/options/cdn.php:111
1161
- msgid "Import external media library attachments"
1162
- msgstr ""
1163
-
1164
- #: inc/options/cdn.php:112
1165
- msgid ""
1166
- "Download attachments hosted elsewhere into your media library and deliver "
1167
- "them via <acronym title=\"Content Delivery Network\">CDN</acronym>."
1168
- msgstr ""
1169
-
1170
- #: inc/options/cdn.php:117
1171
- msgid "Enable mirroring of pages"
1172
- msgstr "تمكين النسخ المتطابق للصفحات"
1173
-
1174
- #: inc/options/cdn.php:120
1175
- #, php-format
1176
- msgid ""
1177
- "Enabling this option allows the <acronym title=\"Content Delivery Network"
1178
- "\">CDN</acronym> to handle requests for unauthenticated pages thereby "
1179
- "reducing the traffic load on the origin server(s). Purge policies are set on "
1180
- "the <a href=\"%s\">Page Cache settings</a> tab."
1181
- msgstr ""
1182
-
1183
- #: inc/options/cdn.php:128
1184
- msgid "Add canonical header"
1185
- msgstr ""
1186
-
1187
- #: inc/options/cdn.php:129
1188
- msgid ""
1189
- "Adds canonical <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> "
1190
- "header to assets files."
1191
- msgstr ""
1192
-
1193
- #: inc/options/cdn.php:142 inc/options/common/header.php:182
1194
- msgid "Configuration"
1195
- msgstr "التكوين"
1196
-
1197
- #: inc/options/cdn.php:157 inc/options/dbcache.php:34
1198
- #: inc/options/minify.php:401 inc/options/objectcache.php:23
1199
- #: inc/options/pgcache.php:233 inc/options/common/header.php:106
1200
- #: inc/options/common/header.php:122 inc/options/common/header.php:133
1201
- #: inc/options/common/header.php:142 inc/options/common/header.php:183
1202
- #: inc/options/pro/fragmentcache.php:46
1203
- msgid "Advanced"
1204
- msgstr "متقدم"
1205
-
1206
- #: inc/options/cdn.php:161
1207
- msgid ""
1208
- "Disable <acronym title=\"Content Delivery Network\">CDN</acronym> on "
1209
- "<acronym title=\"Secure Sockets Layer\">SSL</acronym> pages"
1210
- msgstr ""
1211
-
1212
- #: inc/options/cdn.php:167
1213
- msgid ""
1214
- "Don't replace <acronym title=\"Uniform Resource Indicator\">URL</acronym>s "
1215
- "for following user roles"
1216
- msgstr ""
1217
-
1218
- #: inc/options/cdn.php:168
1219
- msgid "Select user roles that will use the origin server exclusively:"
1220
- msgstr ""
1221
-
1222
- #: inc/options/cdn.php:192
1223
- msgid "Automatically upload minify files"
1224
- msgstr ""
1225
-
1226
- #: inc/options/cdn.php:193
1227
- msgid ""
1228
- "If <acronym title=\"Content Delivery Network\">CDN</acronym> is enabled (and "
1229
- "not using the origin pull method), your minified files will be automatically "
1230
- "uploaded."
1231
- msgstr ""
1232
-
1233
- #: inc/options/cdn.php:198
1234
- msgid "Export changed files automatically"
1235
- msgstr ""
1236
-
1237
- #: inc/options/cdn.php:199
1238
- msgid "Automatically attempt to find and upload changed files."
1239
- msgstr ""
1240
-
1241
- #: inc/options/cdn.php:203
1242
- msgid "Auto upload interval:"
1243
- msgstr ""
1244
-
1245
- #: inc/options/cdn.php:209
1246
- msgid "Specify the interval between upload of changed files."
1247
- msgstr ""
1248
-
1249
- #: inc/options/cdn.php:213
1250
- msgid "Re-transfer cycle interval:"
1251
- msgstr ""
1252
-
1253
- #: inc/options/cdn.php:218
1254
- msgid "The number of seconds to wait before upload attempt."
1255
- msgstr ""
1256
-
1257
- #: inc/options/cdn.php:222
1258
- msgid "Re-transfer cycle limit:"
1259
- msgstr ""
1260
-
1261
- #: inc/options/cdn.php:227
1262
- msgid "Number of files processed per upload attempt."
1263
- msgstr ""
1264
-
1265
- #: inc/options/cdn.php:232
1266
- msgid "wp-includes file types to upload:"
1267
- msgstr ""
1268
-
1269
- #: inc/options/cdn.php:237
1270
- msgid ""
1271
- "Specify the file types within the WordPress core to host with the <acronym "
1272
- "title=\"Content Delivery Network\">CDN</acronym>."
1273
- msgstr ""
1274
-
1275
- #: inc/options/cdn.php:241
1276
- msgid "Theme file types to upload:"
1277
- msgstr ""
1278
-
1279
- #: inc/options/cdn.php:246
1280
- msgid ""
1281
- "Specify the file types in the active theme to host with the <acronym title="
1282
- "\"Content Delivery Network\">CDN</acronym>."
1283
- msgstr ""
1284
-
1285
- #: inc/options/cdn.php:250
1286
- msgid "File types to import:"
1287
- msgstr "أنواع الملفات للاستيراد:"
1288
-
1289
- #: inc/options/cdn.php:255
1290
- msgid ""
1291
- "Automatically import files hosted with 3rd parties of these types (if used "
1292
- "in your posts / pages) to your media library."
1293
- msgstr ""
1294
-
1295
- #: inc/options/cdn.php:264
1296
- msgid ""
1297
- "Specify any files outside of theme or other common directories to host with "
1298
- "the <acronym title=\"Content Delivery Network\">CDN</acronym>."
1299
- msgstr ""
1300
-
1301
- #: inc/options/cdn.php:267
1302
- msgid ""
1303
- "To upload files in blogs.dir for current blog write wp-content/&lt;"
1304
- "currentblog&gt;/."
1305
- msgstr ""
1306
-
1307
- #: inc/options/cdn.php:273 inc/options/minify.php:475
1308
- #: inc/options/pgcache.php:306
1309
- msgid "Rejected user agents:"
1310
- msgstr ""
1311
-
1312
- #: inc/options/cdn.php:277
1313
- msgid ""
1314
- "Specify user agents that should not access files hosted with the <acronym "
1315
- "title=\"Content Delivery Network\">CDN</acronym>."
1316
- msgstr ""
1317
-
1318
- #: inc/options/cdn.php:281
1319
- msgid "Rejected files:"
1320
- msgstr "رفض الملفات:"
1321
-
1322
- #: inc/options/cdn.php:285
1323
- msgid ""
1324
- "Specify the path of files that should not use the <acronym title=\"Content "
1325
- "Delivery Network\">CDN</acronym>."
1326
- msgstr ""
1327
-
1328
- #: inc/options/cdn.php:294
1329
- msgid ""
1330
- "If using subdomain for <acronym title=\"Content Delivery Network\">CDN</"
1331
- "acronym> functionality, this setting helps prevent new users from sending "
1332
- "cookies in requests to the <acronym title=\"Content Delivery Network\">CDN</"
1333
- "acronym> subdomain."
1334
- msgstr ""
1335
-
1336
- #: inc/options/cdn.php:305 inc/options/install.php:269
1337
- #: inc/options/minify.php:502 inc/options/mobile.php:87
1338
- #: inc/options/support/form.php:6
1339
- msgid "Note(s):"
1340
- msgstr "ملاحظات:"
1341
-
1342
- #: inc/options/cdn.php:310
1343
- msgid ""
1344
- "You can use placeholders {wp_content_dir}, {plugins_dir}, {uploads_dir} "
1345
- "instead of writing folder paths (wp-content, wp-content/plugins, wp-content/"
1346
- "uploads)."
1347
- msgstr ""
1348
-
1349
- #: inc/options/cdn.php:311
1350
- msgid ""
1351
- "If using Amazon Web Services or Self-Hosted <acronym title=\"Content "
1352
- "Delivery Network\">CDN</acronym> types, enable <acronym title=\"Hypertext "
1353
- "Transfer Protocol\">HTTP</acronym> compression in the \"Media &amp; Other "
1354
- "Files\" section on <a href=\"admin.php?page=w3tc_browsercache\">Browser "
1355
- "Cache</a> Settings tab."
1356
- msgstr ""
1357
-
1358
- #: inc/options/dashboard.php:5
1359
- #, php-format
1360
- msgid ""
1361
- "The plugin is currently <span class=\"w3tc-%s\">%s</span> in <strong>%s</"
1362
- "strong> mode."
1363
- msgstr ""
1364
-
1365
- #: inc/options/dashboard.php:15
1366
- msgid "compatibility check"
1367
- msgstr "فحص التوافق"
1368
-
1369
- #: inc/options/dashboard.php:17
1370
- msgid "empty all caches"
1371
- msgstr "افراغ ذاكرة التخزين الموقتة"
1372
-
1373
- #: inc/options/dashboard.php:17 inc/options/dashboard.php:19
1374
- msgid "at once or"
1375
- msgstr "مرة واحدة أو"
1376
-
1377
- #: inc/options/dashboard.php:19
1378
- msgid "empty all caches except CloudFlare"
1379
- msgstr ""
1380
-
1381
- #: inc/options/dashboard.php:21
1382
- msgid "empty only the memcached cache(s)"
1383
- msgstr ""
1384
-
1385
- #: inc/options/dashboard.php:21 inc/options/dashboard.php:22
1386
- #: inc/options/dashboard.php:24 inc/options/dashboard.php:26
1387
- #: inc/options/dashboard.php:28
1388
- msgid "or"
1389
- msgstr "أو"
1390
-
1391
- #: inc/options/dashboard.php:22
1392
- msgid "empty only the opcode cache"
1393
- msgstr ""
1394
-
1395
- #: inc/options/dashboard.php:24
1396
- msgid "empty only the APC system cache"
1397
- msgstr ""
1398
-
1399
- #: inc/options/dashboard.php:26
1400
- msgid "empty only the disk cache(s)"
1401
- msgstr ""
1402
-
1403
- #: inc/options/dashboard.php:28
1404
- msgid "purge CDN completely"
1405
- msgstr ""
1406
-
1407
- #: inc/options/dashboard.php:30
1408
- msgid "update Media Query String"
1409
- msgstr ""
1410
-
1411
- #: inc/options/dashboard.php:40 lib/W3/Menus.php:38 lib/W3/Menus.php:39
1412
- msgid "Dashboard"
1413
- msgstr ""
1414
-
1415
- # php-format
1416
- #: inc/options/dbcache.php:6
1417
- #, php-format
1418
- msgid "Database caching via %s is currently %s."
1419
- msgstr ""
1420
-
1421
- #: inc/options/dbcache.php:9
1422
- msgid "To rebuild the database cache use the"
1423
- msgstr ""
1424
-
1425
- #: inc/options/dbcache.php:11 inc/options/minify.php:21
1426
- #: inc/options/objectcache.php:16
1427
- msgid "empty cache"
1428
- msgstr "إفراغ ذاكرة التخزين المؤقت"
1429
-
1430
- #: inc/options/dbcache.php:12
1431
- msgid "operation."
1432
- msgstr "العملية."
1433
-
1434
- #: inc/options/dbcache.php:22
1435
- msgid "Don't cache queries for logged in users"
1436
- msgstr ""
1437
-
1438
- #: inc/options/dbcache.php:23
1439
- msgid ""
1440
- "Enabling this option is recommended to maintain default WordPress behavior."
1441
- msgstr "يوصى تمكين هذا الخيار للحفاظ على سلوك ووردبريس"
1442
-
1443
- #: inc/options/dbcache.php:38 inc/options/minify.php:420
1444
- #: inc/options/objectcache.php:27 inc/options/pgcache.php:237
1445
- #: inc/options/pro/fragmentcache.php:50
1446
- msgid ""
1447
- "Memcached hostname:port / <acronym title=\"Internet Protocol\">IP</acronym>:"
1448
- "port:"
1449
- msgstr ""
1450
-
1451
- #: inc/options/dbcache.php:42 inc/options/minify.php:426
1452
- #: inc/options/objectcache.php:31 inc/options/pro/fragmentcache.php:54
1453
- msgid "Test"
1454
- msgstr "اختبار"
1455
-
1456
- #: inc/options/dbcache.php:44 inc/options/minify.php:428
1457
- #: inc/options/objectcache.php:33 inc/options/pgcache.php:247
1458
- #: inc/options/pro/fragmentcache.php:56
1459
- msgid ""
1460
- "Multiple servers may be used and seperated by a comma; e.g. "
1461
- "192.168.1.100:11211, domain.com:22122"
1462
- msgstr ""
1463
-
1464
- #: inc/options/dbcache.php:49 inc/options/pgcache.php:271
1465
- msgid "Maximum lifetime of cache objects:"
1466
- msgstr ""
1467
-
1468
- #: inc/options/dbcache.php:54 inc/options/objectcache.php:42
1469
- #: inc/options/pgcache.php:276 inc/options/pro/fragmentcache.php:64
1470
- msgid ""
1471
- "Determines the natural expiration time of unchanged cache items. The higher "
1472
- "the value, the larger the cache."
1473
- msgstr ""
1474
-
1475
- #: inc/options/dbcache.php:58 inc/options/minify.php:442
1476
- #: inc/options/objectcache.php:46 inc/options/pgcache.php:281
1477
- #: inc/options/pro/fragmentcache.php:68
1478
- msgid "Garbage collection interval:"
1479
- msgstr ""
1480
-
1481
- #: inc/options/dbcache.php:62 inc/options/minify.php:447
1482
- #: inc/options/objectcache.php:50 inc/options/pgcache.php:286
1483
- #: inc/options/pro/fragmentcache.php:71
1484
- msgid ""
1485
- "If caching to disk, specify how frequently expired cache data is removed. "
1486
- "For busy sites, a lower value is best."
1487
- msgstr ""
1488
-
1489
- #: inc/options/dbcache.php:66 inc/options/pgcache.php:324
1490
- msgid "Never cache the following pages:"
1491
- msgstr ""
1492
-
1493
- #: inc/options/dbcache.php:71
1494
- #, php-format
1495
- msgid ""
1496
- "Always ignore the specified pages / directories. Supports regular expression "
1497
- "(See <a href=\"%s\">FAQ</a>)."
1498
- msgstr ""
1499
-
1500
- #: inc/options/dbcache.php:76
1501
- msgid "Ignored query stems:"
1502
- msgstr ""
1503
-
1504
- #: inc/options/dbcache.php:80
1505
- msgid ""
1506
- "Do not cache queries that contain these terms. Any entered prefix (set in wp-"
1507
- "config.php) will be replaced with current database prefix (default: wp_). "
1508
- "Query stems can be identified using debug mode."
1509
- msgstr ""
1510
-
1511
- #: inc/options/dbcache.php:84
1512
- msgid "Reject query words:"
1513
- msgstr "رفض كلمات الاستعلام:"
1514
-
1515
- #: inc/options/dbcache.php:88
1516
- msgid "Do not cache queries that contain these words or regular expressions."
1517
- msgstr ""
1518
-
1519
- #: inc/options/faq.php:4
1520
- msgid "Table of Contents"
1521
- msgstr "جدول المحتويات"
1522
-
1523
- #: inc/options/general.php:21
1524
- msgid "Toggle all caching types on or off (at once)"
1525
- msgstr ""
1526
-
1527
- #: inc/options/general.php:30
1528
- msgid "Disable"
1529
- msgstr "تعطيل"
1530
-
1531
- #: inc/options/general.php:31 lib/W3/UI/PluginView.php:383
1532
- msgid "Preview"
1533
- msgstr "معاينة"
1534
-
1535
- #: inc/options/general.php:32
1536
- msgid "Deploy"
1537
- msgstr "نشر"
1538
-
1539
- #: inc/options/general.php:34 inc/options/general.php:54
1540
- #: inc/options/general.php:109 inc/options/general.php:196
1541
- #: inc/options/general.php:247 inc/options/general.php:323
1542
- #: inc/options/general.php:483 inc/options/general.php:602
1543
- #: inc/options/minify.php:79 inc/options/minify.php:135
1544
- #: inc/options/minify.php:289
1545
- msgid "Enable"
1546
- msgstr "تمكين"
1547
-
1548
- #: inc/options/general.php:36
1549
- msgid ""
1550
- "Use preview mode to test configuration scenarios prior to releasing them "
1551
- "(deploy) on the actual site. Preview mode remains active even after "
1552
- "deploying settings until the feature is disabled."
1553
- msgstr ""
1554
-
1555
- #: inc/options/general.php:47 inc/options/general.php:746
1556
- #: inc/options/common/header.php:79 lib/W3/Menus.php:48 lib/W3/Menus.php:49
1557
- #: lib/W3/UI/NewRelicNotes.php:28
1558
- msgid "Page Cache"
1559
- msgstr ""
1560
-
1561
- #: inc/options/general.php:48
1562
- msgid "Enable page caching to decrease the response time of the site."
1563
- msgstr ""
1564
-
1565
- #: inc/options/general.php:52
1566
- msgid "Page cache:"
1567
- msgstr ""
1568
-
1569
- #: inc/options/general.php:55
1570
- msgid ""
1571
- "Caching pages will reduce the response time of your site and increase the "
1572
- "scale of your web server."
1573
- msgstr ""
1574
-
1575
- #: inc/options/general.php:59
1576
- msgid "Page cache method:"
1577
- msgstr ""
1578
-
1579
- #: inc/options/general.php:62
1580
- msgid "Shared Server (disk enhanced is best):"
1581
- msgstr ""
1582
-
1583
- #: inc/options/general.php:63
1584
- msgid "Disk: Basic"
1585
- msgstr ""
1586
-
1587
- #: inc/options/general.php:64
1588
- msgid "Disk: Enhanced"
1589
- msgstr ""
1590
-
1591
- #: inc/options/general.php:66 inc/options/general.php:131
1592
- #: inc/options/general.php:258
1593
- msgid "Dedicated / Virtual Server:"
1594
- msgstr ""
1595
-
1596
- #: inc/options/general.php:67 inc/options/general.php:132
1597
- #: inc/options/general.php:208 inc/options/general.php:259
1598
- msgid "Opcode: Alternative PHP Cache (APC)"
1599
- msgstr ""
1600
-
1601
- #: inc/options/general.php:68 inc/options/general.php:133
1602
- #: inc/options/general.php:209 inc/options/general.php:260
1603
- msgid "Opcode: eAccelerator"
1604
- msgstr ""
1605
-
1606
- #: inc/options/general.php:69 inc/options/general.php:134
1607
- #: inc/options/general.php:210 inc/options/general.php:261
1608
- msgid "Opcode: XCache"
1609
- msgstr ""
1610
-
1611
- #: inc/options/general.php:70 inc/options/general.php:135
1612
- #: inc/options/general.php:211 inc/options/general.php:262
1613
- msgid "Opcode: WinCache"
1614
- msgstr ""
1615
-
1616
- #: inc/options/general.php:72 inc/options/general.php:137
1617
- #: inc/options/general.php:264
1618
- msgid "Multiple Servers:"
1619
- msgstr ""
1620
-
1621
- #: inc/options/general.php:73 inc/options/general.php:138
1622
- #: inc/options/general.php:214 inc/options/general.php:265
1623
- msgid "Memcached"
1624
- msgstr ""
1625
-
1626
- #: inc/options/general.php:81
1627
- msgid "Use late \"init\""
1628
- msgstr ""
1629
-
1630
- #: inc/options/general.php:82
1631
- msgid ""
1632
- "Adds support for use of WordPress functionality in fragment caching calls. "
1633
- "Usage of this option will increase response times."
1634
- msgstr ""
1635
-
1636
- #: inc/options/general.php:87 inc/options/general.php:174
1637
- #: inc/options/general.php:221 inc/options/general.php:272
1638
- #: inc/options/general.php:302 inc/options/general.php:354
1639
- #: inc/options/general.php:389 inc/options/general.php:569
1640
- #: inc/options/general.php:655
1641
- msgid "Network policy:"
1642
- msgstr ""
1643
-
1644
- #: inc/options/general.php:89 inc/options/general.php:176
1645
- #: inc/options/general.php:223 inc/options/general.php:274
1646
- #: inc/options/general.php:304 inc/options/general.php:356
1647
- #: inc/options/general.php:391 inc/options/general.php:571
1648
- #: inc/options/general.php:657
1649
- msgid "Apply the settings above to the entire network."
1650
- msgstr ""
1651
-
1652
- #: inc/options/general.php:98 inc/options/general.php:185
1653
- #: inc/options/general.php:236 inc/options/general.php:283
1654
- msgid "Empty cache"
1655
- msgstr "إفراغ ذاكرة التخزين المؤقته"
1656
-
1657
- #: inc/options/general.php:102 inc/options/general.php:747
1658
- #: inc/options/minify.php:141 inc/options/minify.php:155
1659
- #: inc/options/minify.php:166 lib/W3/Menus.php:53 lib/W3/Menus.php:54
1660
- #: lib/W3/UI/NewRelicNotes.php:30
1661
- msgid "Minify"
1662
- msgstr "قلل"
1663
-
1664
- #: inc/options/general.php:103
1665
- msgid ""
1666
- "Reduce load time by decreasing the size and number of <acronym title="
1667
- "\"Cascading Style Sheet\">CSS</acronym> and <acronym title=\"JavaScript"
1668
- "\">JS</acronym> files. Automatically remove unncessary data from <acronym "
1669
- "title=\"Cascading Style Sheet\">CSS</acronym>, <acronym title=\"JavaScript"
1670
- "\">JS</acronym>, feed, page and post <acronym title=\"Hypertext Markup "
1671
- "Language\">HTML</acronym>."
1672
- msgstr ""
1673
-
1674
- #: inc/options/general.php:107
1675
- msgid "Minify:"
1676
- msgstr ""
1677
-
1678
- #: inc/options/general.php:111
1679
- msgid "Minify is disabled because CloudFlare minification is enabled."
1680
- msgstr ""
1681
-
1682
- #: inc/options/general.php:113
1683
- #, php-format
1684
- msgid ""
1685
- "Minification can decrease file size of <acronym title=\"Hypertext Markup "
1686
- "Language\">HTML</acronym>, <acronym title=\"Cascading Style Sheet\">CSS</"
1687
- "acronym>, <acronym title=\"JavaScript\">JS</acronym> and feeds respectively "
1688
- "by ~10% on average."
1689
- msgstr ""
1690
-
1691
- #: inc/options/general.php:117
1692
- msgid "Minify mode:"
1693
- msgstr ""
1694
-
1695
- #: inc/options/general.php:119
1696
- msgid "Auto"
1697
- msgstr "تلقائي"
1698
-
1699
- #: inc/options/general.php:120
1700
- msgid "Manual"
1701
- msgstr "يدوي"
1702
-
1703
- #: inc/options/general.php:121
1704
- msgid ""
1705
- "Select manual mode to use fields on the minify settings tab to specify files "
1706
- "to be minified, otherwise files will be minified automatically."
1707
- msgstr ""
1708
-
1709
- #: inc/options/general.php:125
1710
- msgid "Minify cache method:"
1711
- msgstr ""
1712
-
1713
- #: inc/options/general.php:128
1714
- msgid "Shared Server (disk is best):"
1715
- msgstr ""
1716
-
1717
- #: inc/options/general.php:129 inc/options/general.php:205
1718
- #: inc/options/general.php:256
1719
- msgid "Disk"
1720
- msgstr ""
1721
-
1722
- #: inc/options/general.php:144
1723
- msgid "<acronym title=\"Hypertext Markup Language\">HTML</acronym> minifier:"
1724
- msgstr ""
1725
-
1726
- #: inc/options/general.php:147 inc/options/general.php:166
1727
- msgid "Default"
1728
- msgstr "افتراضي"
1729
-
1730
- #: inc/options/general.php:148
1731
- msgid "HTML Tidy"
1732
- msgstr ""
1733
-
1734
- #: inc/options/general.php:153
1735
- msgid "<acronym title=\"JavaScript\">JS</acronym> minifier:"
1736
- msgstr ""
1737
-
1738
- #: inc/options/general.php:156
1739
- msgid "JSMin (default)"
1740
- msgstr ""
1741
-
1742
- #: inc/options/general.php:157 inc/options/general.php:167
1743
- msgid "YUI Compressor"
1744
- msgstr ""
1745
-
1746
- #: inc/options/general.php:158
1747
- msgid "Closure Compiler"
1748
- msgstr "إغلاق المحول البرمجي"
1749
-
1750
- #: inc/options/general.php:163
1751
- msgid "<acronym title=\"Cascading Style Sheets\">CSS</acronym> minifier:"
1752
- msgstr ""
1753
-
1754
- #: inc/options/general.php:168
1755
- msgid "CSS Tidy"
1756
- msgstr ""
1757
-
1758
- #: inc/options/general.php:189 inc/options/general.php:748
1759
- #: inc/options/common/header.php:81 lib/W3/Menus.php:58 lib/W3/Menus.php:59
1760
- msgid "Database Cache"
1761
- msgstr ""
1762
-
1763
- #: inc/options/general.php:190
1764
- msgid "Enable database caching to reduce post, page and feed creation time."
1765
- msgstr ""
1766
-
1767
- #: inc/options/general.php:194
1768
- msgid "Database Cache:"
1769
- msgstr ""
1770
-
1771
- #: inc/options/general.php:197
1772
- msgid ""
1773
- "Caching database objects decreases the response time of your site. Best used "
1774
- "if object caching is not possible."
1775
- msgstr ""
1776
-
1777
- #: inc/options/general.php:201
1778
- msgid "Database Cache Method:"
1779
- msgstr ""
1780
-
1781
- #: inc/options/general.php:241
1782
- msgid ""
1783
- "Enable object caching to further reduce execution time for common operations."
1784
- msgstr ""
1785
-
1786
- #: inc/options/general.php:245
1787
- msgid "Object Cache:"
1788
- msgstr ""
1789
-
1790
- #: inc/options/general.php:248
1791
- msgid ""
1792
- "Object caching greatly increases performance for highly dynamic sites that "
1793
- "use the <a href=\"http://codex.wordpress.org/Class_Reference/WP_Object_Cache"
1794
- "\" target=\"_blank\">Object Cache <acronym title=\"Application Programming "
1795
- "Interface\">API</acronym></a>."
1796
- msgstr ""
1797
-
1798
- #: inc/options/general.php:252
1799
- msgid "Object Cache Method:"
1800
- msgstr ""
1801
-
1802
- #: inc/options/general.php:255
1803
- msgid "Shared Server:"
1804
- msgstr "خادم مشترك: "
1805
-
1806
- #: inc/options/general.php:289 inc/options/common/header.php:86
1807
- #: lib/W3/Menus.php:77 lib/W3/Menus.php:78
1808
- msgid "Browser Cache"
1809
- msgstr "مستعرض الكاش"
1810
-
1811
- #: inc/options/general.php:290
1812
- msgid ""
1813
- "Reduce server load and decrease response time by using the cache available "
1814
- "in site visitor's web browser."
1815
- msgstr ""
1816
-
1817
- #: inc/options/general.php:294
1818
- msgid "Browser Cache:"
1819
- msgstr ""
1820
-
1821
- #: inc/options/general.php:297
1822
- msgid ""
1823
- "Enable <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> "
1824
- "compression and add headers to reduce server load and decrease file load "
1825
- "time."
1826
- msgstr ""
1827
-
1828
- #: inc/options/general.php:316 inc/options/general.php:753
1829
- #: inc/options/common/header.php:87 lib/W3/Menus.php:93
1830
- msgid "<acronym title=\"Content Delivery Network\">CDN</acronym>"
1831
- msgstr ""
1832
-
1833
- #: inc/options/general.php:317
1834
- msgid ""
1835
- "Host static files with your content delivery network provider to reduce page "
1836
- "load time."
1837
- msgstr ""
1838
-
1839
- #: inc/options/general.php:321
1840
- msgid "<acronym title=\"Content Delivery Network\">CDN</acronym>:"
1841
- msgstr ""
1842
-
1843
- #: inc/options/general.php:324
1844
- msgid ""
1845
- "Theme files, media library attachments, <acronym title=\"Cascading Style "
1846
- "Sheet\">CSS</acronym>, <acronym title=\"JavaScript\">JS</acronym> files etc "
1847
- "will appear to load instantly for site visitors."
1848
- msgstr ""
1849
-
1850
- #: inc/options/general.php:328
1851
- msgid "<acronym title=\"Content Delivery Network\">CDN</acronym> Type:"
1852
- msgstr ""
1853
-
1854
- #: inc/options/general.php:332
1855
- msgid "Akamai"
1856
- msgstr ""
1857
-
1858
- #: inc/options/general.php:333 inc/options/general.php:342
1859
- msgid "Amazon CloudFront"
1860
- msgstr ""
1861
-
1862
- #: inc/options/general.php:334
1863
- msgid "Cotendo (Akamai)"
1864
- msgstr ""
1865
-
1866
- #: inc/options/general.php:335
1867
- msgid "AT&amp;T"
1868
- msgstr ""
1869
-
1870
- #: inc/options/general.php:336
1871
- msgid "Generic Mirror"
1872
- msgstr ""
1873
-
1874
- #: inc/options/general.php:337
1875
- msgid "Media Temple ProCDN / EdgeCast"
1876
- msgstr ""
1877
-
1878
- #: inc/options/general.php:338
1879
- msgid "NetDNA"
1880
- msgstr ""
1881
-
1882
- #: inc/options/general.php:339
1883
- msgid "MaxCDN"
1884
- msgstr ""
1885
-
1886
- #: inc/options/general.php:343
1887
- msgid "Amazon Simple Storage Service (S3)"
1888
- msgstr ""
1889
-
1890
- #: inc/options/general.php:344
1891
- msgid "Microsoft Azure Storage"
1892
- msgstr ""
1893
-
1894
- #: inc/options/general.php:345
1895
- msgid "Rackspace Cloud Files"
1896
- msgstr ""
1897
-
1898
- #: inc/options/general.php:346
1899
- msgid "Self-hosted / File Transfer Protocol Upload"
1900
- msgstr ""
1901
-
1902
- #: inc/options/general.php:349
1903
- msgid ""
1904
- "Select the <acronym title=\"Content Delivery Network\">CDN</acronym> type "
1905
- "you wish to use."
1906
- msgstr ""
1907
-
1908
- #: inc/options/general.php:365 inc/options/general.php:400
1909
- #: inc/options/general.php:580
1910
- msgid "Purge cache"
1911
- msgstr ""
1912
-
1913
- #: inc/options/general.php:369 inc/options/general.php:754
1914
- msgid "Reverse Proxy"
1915
- msgstr ""
1916
-
1917
- #: inc/options/general.php:371
1918
- #, php-format
1919
- msgid ""
1920
- "Purge policies are set on the <a href=\"%s\">Page Cache settings</a> page."
1921
- msgstr ""
1922
-
1923
- #: inc/options/general.php:376
1924
- msgid "Enable varnish cache purging"
1925
- msgstr ""
1926
-
1927
- #: inc/options/general.php:380
1928
- msgid "Varnish servers:"
1929
- msgstr ""
1930
-
1931
- #: inc/options/general.php:384
1932
- msgid ""
1933
- "Specify the IP addresses of your varnish instances above. The <acronym title="
1934
- "\"Varnish Configuration Language\">VCL</acronym>'s <acronym title=\"Access "
1935
- "Control List\">ACL</acronym> must allow this request."
1936
- msgstr ""
1937
-
1938
- #: inc/options/general.php:410
1939
- msgid ""
1940
- "Manage the cache purge queue via <acronym title=\"Simple Notification Service"
1941
- "\">SNS</acronym>"
1942
- msgstr ""
1943
-
1944
- #: inc/options/general.php:414
1945
- msgid "SNS region:"
1946
- msgstr ""
1947
-
1948
- #: inc/options/general.php:420
1949
- msgid ""
1950
- "Specify the Amazon SNS service endpoint hostname. If empty, then default "
1951
- "\"sns.us-east-1.amazonaws.com\" will be used."
1952
- msgstr ""
1953
-
1954
- #: inc/options/general.php:424 inc/options/general.php:496
1955
- #: inc/options/cdn/rscf.php:10
1956
- msgid "<acronym title=\"Application Programming Interface\">API</acronym> key:"
1957
- msgstr ""
1958
-
1959
- #: inc/options/general.php:430
1960
- msgid ""
1961
- "Specify the <acronym title=\"Application Programming Interface\">API</"
1962
- "acronym> Key."
1963
- msgstr ""
1964
-
1965
- #: inc/options/general.php:434
1966
- msgid ""
1967
- "<acronym title=\"Application Programming Interface\">API</acronym> secret:"
1968
- msgstr ""
1969
-
1970
- #: inc/options/general.php:440
1971
- msgid ""
1972
- "Specify the <acronym title=\"Application Programming Interface\">API</"
1973
- "acronym> secret."
1974
- msgstr ""
1975
-
1976
- #: inc/options/general.php:445
1977
- msgid "Topic <acronym title=\"Identification\">ID</acronym>:"
1978
- msgstr ""
1979
-
1980
- #: inc/options/general.php:452
1981
- msgid "Topic:"
1982
- msgstr "الموضوع:"
1983
-
1984
- #: inc/options/general.php:460
1985
- msgid ""
1986
- "Subscribe to the <acronym title=\"Simple Notification Service\">SNS</"
1987
- "acronym> topic."
1988
- msgstr ""
1989
-
1990
- #: inc/options/general.php:472
1991
- msgid "Network Performance &amp; Security powered by CloudFlare"
1992
- msgstr ""
1993
-
1994
- #: inc/options/general.php:474
1995
- #, php-format
1996
- msgid ""
1997
- "CloudFlare protects and accelerates websites. <a href=\"%s\" target=\"_blank"
1998
- "\">Sign up now for free</a> to get started,\n"
1999
- " \tor if you have an account simply log in to obtain your <acronym "
2000
- "title=\"Application Programming Interface\">API</acronym> key from the <a "
2001
- "href=\"https://www.cloudflare.com/my-account.html\">account page</a> to "
2002
- "enter it below.\n"
2003
- " \tContact the CloudFlare <a href=\"http://www.cloudflare.com/help."
2004
- "html\" target=\"_blank\">support team</a> with any questions."
2005
- msgstr ""
2006
-
2007
- #: inc/options/general.php:481
2008
- msgid "CloudFlare:"
2009
- msgstr ""
2010
-
2011
- #: inc/options/general.php:487
2012
- msgid "CloudFlare account email:"
2013
- msgstr ""
2014
-
2015
- #: inc/options/general.php:501
2016
- msgid "find it here"
2017
- msgstr "العثور عليه هنا"
2018
-
2019
- #: inc/options/general.php:505
2020
- msgid "Domain:"
2021
- msgstr "الدومين:"
2022
-
2023
- #: inc/options/general.php:513
2024
- msgid "Security level:"
2025
- msgstr "مستوى الأمان:"
2026
-
2027
- #: inc/options/general.php:526
2028
- msgid "Rocket Loader:"
2029
- msgstr ""
2030
-
2031
- #: inc/options/general.php:539
2032
- msgid "Minification:"
2033
- msgstr ""
2034
-
2035
- #: inc/options/general.php:552
2036
- msgid "Development mode:"
2037
- msgstr "وضع التطوير: "
2038
-
2039
- #: inc/options/general.php:563
2040
- msgid "Will automatically turn off at $s"
2041
- msgstr ""
2042
-
2043
- #: inc/options/general.php:584 inc/options/common/header.php:93
2044
- #: lib/W3/Menus.php:97 lib/W3/Menus.php:98
2045
- msgid "Monitoring"
2046
- msgstr "المراقبة"
2047
-
2048
- #: inc/options/general.php:586
2049
- #, php-format
2050
- msgid ""
2051
- "\n"
2052
- " New Relic may not be installed on this server. %s. Visit %s "
2053
- "for installation instructions."
2054
- msgstr ""
2055
-
2056
- #: inc/options/general.php:588
2057
- msgid "Sign up for a (free) account"
2058
- msgstr ""
2059
-
2060
- #: inc/options/general.php:594
2061
- msgid "The network administrator has not provided the API Key."
2062
- msgstr ""
2063
-
2064
- #: inc/options/general.php:613
2065
- #, php-format
2066
- msgid "Verify %s"
2067
- msgstr ""
2068
-
2069
- #: inc/options/general.php:619
2070
- msgid "Application name:"
2071
- msgstr "اسم التطبيق:"
2072
-
2073
- #: inc/options/general.php:623
2074
- msgid "Obtain application ID via:"
2075
- msgstr ""
2076
-
2077
- #: inc/options/general.php:624
2078
- msgid "Enter application name below:"
2079
- msgstr "أدخل اسم التطبيق أدناه:"
2080
-
2081
- #: inc/options/general.php:625
2082
- msgid "Select from the following list:"
2083
- msgstr "اختر من القائمة التالية:"
2084
-
2085
- #: inc/options/general.php:634
2086
- msgid "-- Select Application --"
2087
- msgstr "-- اختر التطبيق --"
2088
-
2089
- #: inc/options/general.php:644
2090
- msgid ""
2091
- "Note: Changing application name may create a new application in New Relic if "
2092
- "no application with that name already exists."
2093
- msgstr ""
2094
-
2095
- #: inc/options/general.php:650
2096
- msgid "Use above application name and ID for all sites in network:"
2097
- msgstr ""
2098
-
2099
- #: inc/options/general.php:670 inc/options/common/header.php:94
2100
- msgid "Miscellaneous"
2101
- msgstr ""
2102
-
2103
- #: inc/options/general.php:675
2104
- msgid "Enable Google Page Speed dashboard widget"
2105
- msgstr ""
2106
-
2107
- #: inc/options/general.php:676
2108
- msgid "Display Google Page Speed results on the WordPress dashboard."
2109
- msgstr ""
2110
-
2111
- #: inc/options/general.php:680
2112
- msgid ""
2113
- "Page Speed <acronym title=\"Application Programming Interface\">API</"
2114
- "acronym> Key:"
2115
- msgstr ""
2116
-
2117
- #: inc/options/general.php:683
2118
- msgid ""
2119
- "To acquire an <acronym title=\"Application Programming Interface\">API</"
2120
- "acronym> key, visit the <a href=\"https://code.google.com/apis/console\" "
2121
- "target=\"_blank\"><acronym title=\"Application Programming Interface\">API</"
2122
- "acronym>s Console</a>. Go to the Project Home tab, activate the Page Speed "
2123
- "Online <acronym title=\"Application Programming Interface\">API</acronym>, "
2124
- "and accept the Terms of Service.\n"
2125
- " Then go to the <acronym title=\"Application Programming "
2126
- "Interface\">API</acronym> Access tab. The <acronym title=\"Application "
2127
- "Programming Interface\">API</acronym> key is in the Simple <acronym title="
2128
- "\"Application Programming Interface\">API</acronym> Access section."
2129
- msgstr ""
2130
-
2131
- #: inc/options/general.php:690
2132
- msgid "Use single network configuration file for all sites."
2133
- msgstr ""
2134
-
2135
- #: inc/options/general.php:691
2136
- msgid ""
2137
- "Only one configuration file for whole network will be created and used. "
2138
- "Recommended if all sites have the same configuration."
2139
- msgstr ""
2140
-
2141
- #: inc/options/general.php:696
2142
- msgid "Hide performance settings"
2143
- msgstr "إخفاء إعدادات الأداء"
2144
-
2145
- #: inc/options/general.php:697
2146
- msgid "Prevent sites from independently managing their performance settings."
2147
- msgstr ""
2148
-
2149
- #: inc/options/general.php:703
2150
- msgid "Nginx server configuration file path"
2151
- msgstr ""
2152
-
2153
- #: inc/options/general.php:706
2154
- msgid "If empty the default path will be used.."
2155
- msgstr "إذا فارغة سيتم استخدام المسار الافتراضي .."
2156
-
2157
- #: inc/options/general.php:713
2158
- msgid "Verify rewrite rules"
2159
- msgstr ""
2160
-
2161
- #: inc/options/general.php:714
2162
- msgid ""
2163
- "Notify of server configuration errors, if this option is disabled, the "
2164
- "server configuration for active settings can be found on the <a href=\"admin."
2165
- "php?page=w3tc_install\">install</a> tab."
2166
- msgstr ""
2167
-
2168
- #: inc/options/general.php:720
2169
- msgid "Enable file locking"
2170
- msgstr "تمكين تأمين الملف"
2171
-
2172
- #: inc/options/general.php:721
2173
- msgid ""
2174
- "Not recommended for <acronym title=\"Network File System\">NFS</acronym> "
2175
- "systems."
2176
- msgstr ""
2177
-
2178
- #: inc/options/general.php:727
2179
- msgid ""
2180
- "Optimize disk enhanced page and minify disk caching for <acronym title="
2181
- "\"Network File System\">NFS</acronym>"
2182
- msgstr ""
2183
-
2184
- #: inc/options/general.php:728
2185
- msgid ""
2186
- "Try this option if your hosting environment uses a network based file system "
2187
- "for a possible performance improvement."
2188
- msgstr ""
2189
-
2190
- #: inc/options/general.php:740
2191
- msgid ""
2192
- "Detailed information about each cache will be appended in (publicly "
2193
- "available) <acronym title=\"Hypertext Markup Language\">HTML</acronym> "
2194
- "comments in the page's source code. Performance in this mode will not be "
2195
- "optimal, use sparingly and disable when not in use."
2196
- msgstr ""
2197
-
2198
- #: inc/options/general.php:744
2199
- msgid "Debug Mode:"
2200
- msgstr ""
2201
-
2202
- #: inc/options/general.php:749 inc/options/common/header.php:82
2203
- #: lib/W3/Menus.php:63 lib/W3/Menus.php:64
2204
- msgid "Object Cache"
2205
- msgstr ""
2206
-
2207
- #: inc/options/general.php:751 inc/options/common/header.php:84
2208
- #: lib/W3/Menus.php:70 lib/W3/Menus.php:71
2209
- msgid "Fragment Cache"
2210
- msgstr ""
2211
-
2212
- #: inc/options/general.php:756 inc/options/common/header.php:90
2213
- msgid "Amazon <acronym title=\"Simple Notification Service\">SNS</acronym>"
2214
- msgstr ""
2215
-
2216
- #: inc/options/general.php:758
2217
- msgid ""
2218
- "If selected, detailed caching information will appear at the end of each "
2219
- "page in a <acronym title=\"Hypertext Markup Language\">HTML</acronym> "
2220
- "comment. View a page's source code to review."
2221
- msgstr ""
2222
-
2223
- #: inc/options/general.php:773 inc/options/common/header.php:96
2224
- msgid "Import / Export Settings"
2225
- msgstr "اعدادات التصدير / الاستيراد"
2226
-
2227
- #: inc/options/general.php:777
2228
- msgid "Import configuration:"
2229
- msgstr ""
2230
-
2231
- #: inc/options/general.php:780
2232
- msgid "Upload"
2233
- msgstr "رفع"
2234
-
2235
- #: inc/options/general.php:781
2236
- msgid "Upload and replace the active settings file."
2237
- msgstr "تحميل واستبدال ملف الإعدادات النشطة."
2238
-
2239
- #: inc/options/general.php:785
2240
- msgid "Export configuration:"
2241
- msgstr ""
2242
-
2243
- #: inc/options/general.php:787
2244
- msgid "Download"
2245
- msgstr "تحميل"
2246
-
2247
- #: inc/options/general.php:788
2248
- msgid "Download the active settings file."
2249
- msgstr "تحميل ملف الإعدادات النشطة."
2250
-
2251
- #: inc/options/general.php:792
2252
- msgid "Reset configuration:"
2253
- msgstr "إعادة التهيئة:"
2254
-
2255
- #: inc/options/general.php:794
2256
- msgid "Restore Default Settings"
2257
- msgstr "استعادة الإعدادات الافتراضية"
2258
-
2259
- #: inc/options/general.php:795
2260
- msgid ""
2261
- "Revert all settings to the defaults. Any settings staged in preview mode "
2262
- "will not be modified."
2263
- msgstr ""
2264
-
2265
- #: inc/options/install.php:7
2266
- msgid "Set the permissions of wp-content/ back to 755, e.g.:"
2267
- msgstr ""
2268
-
2269
- #: inc/options/install.php:10
2270
- msgid ""
2271
- "On the \"<a href=\"admin.php?page=w3tc_general\">General</a>\" tab and "
2272
- "select your caching methods for page, database and minify. In most cases, "
2273
- "\"disk enhanced\" mode for page cache, \"disk\" mode for minify and \"disk\" "
2274
- "mode for database caching are \"good\" settings."
2275
- msgstr ""
2276
-
2277
- #: inc/options/install.php:11
2278
- msgid ""
2279
- "1. The \"Compatibility Mode\" option found in the advanced section of the "
2280
- "\"<a href=\"admin.php?page=w3tc_pgcache\">Page Cache Settings</a>\" tab will "
2281
- "enable functionality that optimizes the interoperablity of caching with "
2282
- "WordPress, is disabled by default, but highly recommended. Years of testing "
2283
- "in hundreds of thousands of installations have helped us learn how to make "
2284
- "caching behave well with WordPress. The tradeoff is that disk enhanced page "
2285
- "cache performance under load tests will be decreased by ~20% at scale."
2286
- msgstr ""
2287
-
2288
- #: inc/options/install.php:12
2289
- msgid ""
2290
- "<em>Recommended:</em> On the \"<a href=\"admin.php?page=w3tc_minify"
2291
- "\">Minify</a>\" tab all of the recommended settings are preset. Use the help "
2292
- "button to simplify discovery of your <acronym title=\"Cascading Style Sheet"
2293
- "\">CSS</acronym> and <acronym title=\"JavaScript\">JS</acronym> files and "
2294
- "groups. Pay close attention to the method and location of your <acronym "
2295
- "title=\"JavaScript\">JS</acronym> group embeddings. See the plugin's <a href="
2296
- "\"admin.php?page=w3tc_faq\">FAQ</a> for more information on usage."
2297
- msgstr ""
2298
-
2299
- #: inc/options/install.php:13
2300
- msgid ""
2301
- "<em>Recommended:</em> On the \"<a href=\"admin.php?page=w3tc_browsercache"
2302
- "\">Browser Cache</a>\" tab, <acronym title=\"Hypertext Transfer Protocol"
2303
- "\">HTTP</acronym> compression is enabled by default. Make sure to enable "
2304
- "other options to suit your goals."
2305
- msgstr ""
2306
-
2307
- #: inc/options/install.php:14
2308
- msgid ""
2309
- "<em>Recommended:</em> If you already have a content delivery network "
2310
- "(<acronym title=\"Content Delivery Network\">CDN</acronym>) provider, "
2311
- "proceed to the \"<a href=\"admin.php?page=w3tc_cdn\">Content Delivery "
2312
- "Network</a>\" tab and populate the fields and set your preferences. If you "
2313
- "do not use the Media Library, you will need to import your images etc into "
2314
- "the default locations. Use the Media Library Import Tool on the \"Content "
2315
- "Delivery Network\" tab to perform this task. If you do not have a <acronym "
2316
- "title=\"Content Delivery Network\">CDN</acronym> provider, you can still "
2317
- "improve your site's performance using the \"Self-hosted\" method. On your "
2318
- "own server, create a subdomain and matching <acronym title=\"Domain Name "
2319
- "System\">DNS</acronym> Zone record; e.g. static.domain.com and configure "
2320
- "<acronym title=\"File Transfer Protocol\">FTP</acronym> options on the "
2321
- "\"Content Delivery Network\" tab accordingly. Be sure to <acronym title="
2322
- "\"File Transfer Protocol\">FTP</acronym> upload the appropriate files, using "
2323
- "the available upload buttons."
2324
- msgstr ""
2325
-
2326
- #: inc/options/install.php:15
2327
- msgid ""
2328
- "<em>Optional:</em> On the \"<a href=\"admin.php?page=w3tc_dbcache\">Database "
2329
- "Cache</a>\" tab the recommended settings are preset. If using a shared "
2330
- "hosting account use the \"disk\" method with caution; in either of these "
2331
- "cases the response time of the disk may not be fast enough, so this option "
2332
- "is disabled by default."
2333
- msgstr ""
2334
-
2335
- #: inc/options/install.php:16
2336
- msgid ""
2337
- "<em>Optional:</em> On the \"<a href=\"admin.php?page=w3tc_objectcache"
2338
- "\">Object Cache</a>\" tab the recommended settings are preset. If using a "
2339
- "shared hosting account use the \"disk\" method with caution, the response "
2340
- "time of the disk may not be fast enough, so this option is disabled by "
2341
- "default. Test this option with and without database cache to ensure that it "
2342
- "provides a performance increase."
2343
- msgstr ""
2344
-
2345
- #: inc/options/install.php:17
2346
- msgid ""
2347
- "<em>Optional:</em> On the \"<a href=\"admin.php?page=w3tc_mobile\">User "
2348
- "Agent Groups</a>\" tab, specify any user agents, like mobile phones if a "
2349
- "mobile theme is used."
2350
- msgstr ""
2351
-
2352
- #: inc/options/install.php:21
2353
- msgid ""
2354
- "Check out the <acronym title=\"Frequently Asked Questions\">FAQ</acronym> "
2355
- "for more details on <a href=\"admin.php?page=w3tc_faq\">usage</a>"
2356
- msgstr ""
2357
-
2358
- #: inc/options/install.php:26
2359
- msgid "Rewrite rules"
2360
- msgstr ""
2361
-
2362
- #: inc/options/install.php:34
2363
- msgid ""
2364
- "Software Installation for Dedicated / Virtual Dedicated / Multiple Servers "
2365
- "(Optional)"
2366
- msgstr ""
2367
-
2368
- #: inc/options/install.php:36
2369
- msgid ""
2370
- "<strong>Server Preparation:</strong><br /><em>Time required: ~1 minute</em>"
2371
- msgstr ""
2372
-
2373
- #: inc/options/install.php:40
2374
- msgid ""
2375
- "<a href=\"http://www.google.com/search?q=installing%20yum&amp;"
2376
- "output=search&amp;tbs=qdr:y&amp;tbo=1\" target=\"_blank\">Install yum</a> if "
2377
- "you don't already have it. Then, if you like, you can update all of your "
2378
- "installed software, but do so only if you have the experience and time to "
2379
- "double check configurations afterwards:"
2380
- msgstr ""
2381
-
2382
- #: inc/options/install.php:44
2383
- msgid ""
2384
- "Install <acronym title=\"PHP Extension Community Library\">PECL</acronym>:"
2385
- msgstr ""
2386
-
2387
- #: inc/options/install.php:48
2388
- msgid ""
2389
- "Install the <acronym title=\"Hypertext Preprocessor\">PHP</acronym> "
2390
- "Development package:"
2391
- msgstr ""
2392
-
2393
- #: inc/options/install.php:52
2394
- msgid "Install apxs with the following command:"
2395
- msgstr ""
2396
-
2397
- #: inc/options/install.php:56
2398
- msgid "Make sure GCC is up-to-date:"
2399
- msgstr ""
2400
-
2401
- #: inc/options/install.php:60
2402
- msgid "Make sure ZLIB is fully installed:"
2403
- msgstr ""
2404
-
2405
- #: inc/options/install.php:64
2406
- msgid "Make sure PCRE is fully installed:"
2407
- msgstr ""
2408
-
2409
- #: inc/options/install.php:71
2410
- msgid ""
2411
- "Memcached (Daemon) Installation:</strong><br /><em>Time required: 2 minutes</"
2412
- "em>"
2413
- msgstr ""
2414
-
2415
- #: inc/options/install.php:75
2416
- msgid "Try to install with yum:"
2417
- msgstr ""
2418
-
2419
- #: inc/options/install.php:78
2420
- msgid ""
2421
- "If this succeeds skip to #5. If this fails, then let's compile. Download and "
2422
- "extract the <a href=\"http://www.monkey.org/~provos/libevent/\" target="
2423
- "\"_blank\">latest stable version</a>:"
2424
- msgstr ""
2425
-
2426
- #: inc/options/install.php:82 inc/options/install.php:100
2427
- msgid "Let's compile:"
2428
- msgstr ""
2429
-
2430
- #: inc/options/install.php:86
2431
- msgid "In the output you should see:"
2432
- msgstr ""
2433
-
2434
- #: inc/options/install.php:87
2435
- #, php-format
2436
- msgid "Libraries have been installed in: %s"
2437
- msgstr ""
2438
-
2439
- #: inc/options/install.php:88
2440
- msgid "If so you can:"
2441
- msgstr "إذا كان الأمر كذلك، يمكنك:"
2442
-
2443
- #: inc/options/install.php:92
2444
- msgid "Configure your server for the new install:"
2445
- msgstr ""
2446
-
2447
- #: inc/options/install.php:96
2448
- msgid ""
2449
- "Now find the <a href=\"http://memcached.org/\" target=\"_blank\">latest "
2450
- "stable memcached</a>, download and extract:"
2451
- msgstr ""
2452
-
2453
- #: inc/options/install.php:104
2454
- msgid "Make sure memcached is starts automatically on server boot:"
2455
- msgstr ""
2456
-
2457
- #: inc/options/install.php:112
2458
- msgid "And finally, let's start memcached:"
2459
- msgstr ""
2460
-
2461
- #: inc/options/install.php:119
2462
- msgid ""
2463
- "<strong><acronym title=\"PHP Extension Community Library\">PECL</acronym> "
2464
- "Memcache Module Installation:</strong><br /><em>Time required: 1 minute</em>"
2465
- msgstr ""
2466
-
2467
- #: inc/options/install.php:123
2468
- msgid ""
2469
- "Either use <acronym title=\"PHP Extension Community Library\">PECL</acronym> "
2470
- "(and skip to #4 if successful):"
2471
- msgstr ""
2472
-
2473
- #: inc/options/install.php:127
2474
- msgid ""
2475
- "Or via compilation. Download the <a href=\"http://pecl.php.net/package/"
2476
- "memcache\" target=\"_blank\">latest stable version</a> and extract:"
2477
- msgstr ""
2478
-
2479
- #: inc/options/install.php:131
2480
- msgid "Now we start to compile:"
2481
- msgstr "الآن نبدأ في تجميع:"
2482
-
2483
- #: inc/options/install.php:135
2484
- msgid "You can also use the memcache.ini file we prepared for you:"
2485
- msgstr ""
2486
-
2487
- #: inc/options/install.php:139
2488
- msgid "Finally restart apache:"
2489
- msgstr "أخيرا إعادة تشغيل الاباتشي:"
2490
-
2491
- #: inc/options/install.php:143
2492
- msgid ""
2493
- "You're done! Memcache should now be available. If the following command "
2494
- "retuns anything, you're all set:"
2495
- msgstr ""
2496
-
2497
- #: inc/options/install.php:150
2498
- msgid ""
2499
- "<strong><acronym title=\"PHP Extension Community Library\">PECL</acronym> "
2500
- "Alternative PHP Cache (<acronym title=\"Alternative PHP Cache\">APC</"
2501
- "acronym>) Installation (Recommended):</strong><br /><em>Time required: 1 "
2502
- "minute</em>"
2503
- msgstr ""
2504
-
2505
- #: inc/options/install.php:154
2506
- msgid ""
2507
- "Install <acronym title=\"Alternative PHP Cache\">APC</acronym> using the "
2508
- "<acronym title=\"PHP Extension Community Library\">PECL</acronym> command "
2509
- "(and skip to #5 if successful):"
2510
- msgstr ""
2511
-
2512
- #: inc/options/install.php:158
2513
- msgid ""
2514
- "Or via compilation. Download the <a href=\"http://pecl.php.net/package/APC\" "
2515
- "target=\"_blank\">latest stable version</a> and extract:"
2516
- msgstr ""
2517
-
2518
- #: inc/options/install.php:162
2519
- msgid "Note the paths returned for the following commands:"
2520
- msgstr ""
2521
-
2522
- #: inc/options/install.php:167
2523
- msgid ""
2524
- "Use the output from #2 to modify the --with-apxs and --with-php-config flags "
2525
- "in the following compile command:"
2526
- msgstr ""
2527
-
2528
- #: inc/options/install.php:170
2529
- #, php-format
2530
- msgid "Installing shared extensions: %s"
2531
- msgstr ""
2532
-
2533
- #: inc/options/install.php:173
2534
- msgid "You can also use the apc.ini file we prepared for you:"
2535
- msgstr ""
2536
-
2537
- #: inc/options/install.php:177 inc/options/install.php:210
2538
- #: inc/options/install.php:243
2539
- msgid "Restart apache when ready:"
2540
- msgstr "إعادة تشغيل اباتشي عندما تكون جاهزا:"
2541
-
2542
- #: inc/options/install.php:181
2543
- msgid ""
2544
- "You're done! <acronym title=\"Alternative PHP Cache\">APC</acronym> should "
2545
- "now be available. If the following command retuns anything, you're all set:"
2546
- msgstr ""
2547
-
2548
- #: inc/options/install.php:188
2549
- msgid ""
2550
- "<strong>XCache Installation:</strong><br /><em>Time required: 1 minute</em>"
2551
- msgstr ""
2552
-
2553
- #: inc/options/install.php:192
2554
- msgid ""
2555
- "Download the <a href=\"http://xcache.lighttpd.net/wiki/ReleaseArchive\" "
2556
- "target=\"_blank\">latest compatible version</a> and extract:"
2557
- msgstr ""
2558
-
2559
- #: inc/options/install.php:196 inc/options/install.php:229
2560
- msgid "Note the path returned for the following command:"
2561
- msgstr "لاحظ المسار عاد للأمر التالي:"
2562
-
2563
- #: inc/options/install.php:200 inc/options/install.php:233
2564
- msgid ""
2565
- "Use the output from #2 to modify the --with-php-config flag in the following "
2566
- "compile command:"
2567
- msgstr ""
2568
-
2569
- #: inc/options/install.php:202 inc/options/install.php:235
2570
- msgid "The result should be similar to:"
2571
- msgstr ""
2572
-
2573
- #: inc/options/install.php:206 inc/options/install.php:239
2574
- msgid "You can also use the eaccelerator.ini file we prepared for you:"
2575
- msgstr ""
2576
-
2577
- #: inc/options/install.php:214
2578
- msgid ""
2579
- "You're done! XCache should now be available. If the following command retuns "
2580
- "anything, you're all set:"
2581
- msgstr ""
2582
-
2583
- #: inc/options/install.php:221
2584
- msgid ""
2585
- "<strong>eAccelerator Installation:</strong><br /><em>Time required: 1 "
2586
- "minute</em>"
2587
- msgstr ""
2588
-
2589
- #: inc/options/install.php:225
2590
- msgid ""
2591
- "If using <acronym title=\"Hypertext Preprocessor\">PHP</acronym> v5+, "
2592
- "download the <a href=\"http://eaccelerator.net/\" target=\"_blank\">lastest "
2593
- "compatible version</a> and extract. Remember v0.9.5.3 is the last version "
2594
- "that supports user objects, later versions only support opcode caching."
2595
- msgstr ""
2596
-
2597
- #: inc/options/install.php:247
2598
- msgid ""
2599
- "You're done! eAccelerator should now be available. If the following command "
2600
- "retuns anything, you're all set:"
2601
- msgstr ""
2602
-
2603
- #: inc/options/install.php:274
2604
- msgid ""
2605
- "The provided instructions are for 32-bit CentOS, however we can provide "
2606
- "others based on <a href=\"mailto:wordpressexperts@w3-edge.com\">your "
2607
- "requests</a>."
2608
- msgstr ""
2609
-
2610
- #: inc/options/install.php:275
2611
- msgid ""
2612
- "Best compatibility with <a href=\"http://www.iis.net/\" target=\"_blank"
2613
- "\">IIS</a> is realized via <a href=\"http://www.microsoft.com/web/webmatrix/"
2614
- "\" target=\"_blank\">WebMatrix</a>, which also includes the supported <a "
2615
- "href=\"http://www.iis.net/download/wincacheforphp\" target=\"_blank"
2616
- "\">WinCache</a> opcode cache."
2617
- msgstr ""
2618
-
2619
- #: inc/options/install.php:276
2620
- msgid ""
2621
- "In the case where Apache is not used, the .htaccess file located in the root "
2622
- "directory of the WordPress installation, wp-content/w3tc/pgcache/.htaccess "
2623
- "and wp-content/w3tc/min/.htaccess contain directives that must be manually "
2624
- "created for your web server software."
2625
- msgstr ""
2626
-
2627
- #: inc/options/install.php:277
2628
- msgid ""
2629
- "Restarting the web server will empty the opcode cache, which means it will "
2630
- "have to be rebuilt over time and your site's performance will suffer during "
2631
- "this period. Still, an opcode cache should be installed in any case to "
2632
- "maximize WordPress performance."
2633
- msgstr ""
2634
-
2635
- #: inc/options/install.php:278
2636
- msgid ""
2637
- "Consider using memcached for objects that must persist across web server "
2638
- "restarts or that you wish to share amongst your pool of servers (or "
2639
- "cluster), e.g.: database objects or page cache."
2640
- msgstr ""
2641
-
2642
- #: inc/options/install.php:279
2643
- msgid ""
2644
- "Some yum or mirrors may not have the necessary packages, in such cases you "
2645
- "may have to do a manual installation."
2646
- msgstr ""
2647
-
2648
- #: inc/options/minify.php:16
2649
- #, php-format
2650
- msgid "Minify via %s is currently %s."
2651
- msgstr ""
2652
-
2653
- #: inc/options/minify.php:20
2654
- #, php-format
2655
- msgid "To rebuild the minify cache use the %s operation."
2656
- msgstr ""
2657
-
2658
- #: inc/options/minify.php:24
2659
- msgid "Get minify hints using the"
2660
- msgstr ""
2661
-
2662
- #: inc/options/minify.php:25
2663
- msgid "help"
2664
- msgstr "مساعدة"
2665
-
2666
- #: inc/options/minify.php:26
2667
- msgid "wizard."
2668
- msgstr ""
2669
-
2670
- #: inc/options/minify.php:28
2671
- #, php-format
2672
- msgid ""
2673
- "%s to make existing file modifications visible to visitors with a primed "
2674
- "cache."
2675
- msgstr ""
2676
-
2677
- #: inc/options/minify.php:40
2678
- msgid ""
2679
- "Rewrite <acronym title=\"Uniform Resource Locator\">URL</acronym> structure"
2680
- msgstr ""
2681
-
2682
- #: inc/options/minify.php:41
2683
- msgid ""
2684
- "If disabled, <acronym title=\"Cascading Style Sheet\">CSS</acronym> and "
2685
- "<acronym title=\"JavaScript\">JS</acronym> embeddings will use GET variables "
2686
- "instead of \"fancy\" links."
2687
- msgstr ""
2688
-
2689
- #: inc/options/minify.php:46
2690
- msgid "Disable minify for logged in users"
2691
- msgstr ""
2692
-
2693
- #: inc/options/minify.php:47
2694
- msgid ""
2695
- "Authenticated users will not receive minified pages if this option is "
2696
- "enabled."
2697
- msgstr ""
2698
-
2699
- #: inc/options/minify.php:52
2700
- msgid "Minify error notification:"
2701
- msgstr ""
2702
-
2703
- #: inc/options/minify.php:59
2704
- msgid "Admin Notification"
2705
- msgstr "اشعارات المسوؤل"
2706
-
2707
- #: inc/options/minify.php:60
2708
- msgid "Email Notification"
2709
- msgstr ""
2710
-
2711
- #: inc/options/minify.php:61
2712
- msgid "Both Admin &amp; Email Notification"
2713
- msgstr ""
2714
-
2715
- #: inc/options/minify.php:63
2716
- msgid "Notify when minify cache creation errors occur."
2717
- msgstr ""
2718
-
2719
- #: inc/options/minify.php:74 inc/options/common/header.php:119
2720
- #: inc/options/common/header.php:153
2721
- msgid ""
2722
- "<acronym title=\"Hypertext Markup Language\">HTML</acronym> &amp; <acronym "
2723
- "title=\"eXtensible Markup Language\">XML</acronym>"
2724
- msgstr ""
2725
-
2726
- #: inc/options/minify.php:77
2727
- msgid ""
2728
- "<acronym title=\"Hypertext Markup Language\">HTML</acronym> minify settings:"
2729
- msgstr ""
2730
-
2731
- #: inc/options/minify.php:80
2732
- msgid ""
2733
- "Inline <acronym title=\"Cascading Style Sheet\">CSS</acronym> minification"
2734
- msgstr ""
2735
-
2736
- #: inc/options/minify.php:81
2737
- msgid "Inline <acronym title=\"JavaScript\">JS</acronym> minification"
2738
- msgstr ""
2739
-
2740
- #: inc/options/minify.php:82
2741
- msgid "Don't minify feeds"
2742
- msgstr ""
2743
-
2744
- #: inc/options/minify.php:100
2745
- msgid "Ignored comment stems:"
2746
- msgstr ""
2747
-
2748
- #: inc/options/minify.php:105
2749
- msgid "Do not remove comments that contain these terms."
2750
- msgstr ""
2751
-
2752
- #: inc/options/minify.php:130 inc/options/common/header.php:120
2753
- msgid "<acronym title=\"JavaScript\">JS</acronym>"
2754
- msgstr ""
2755
-
2756
- #: inc/options/minify.php:133
2757
- msgid "<acronym title=\"JavaScript\">JS</acronym> minify settings:"
2758
- msgstr ""
2759
-
2760
- #: inc/options/minify.php:136
2761
- msgid "Operations in areas:"
2762
- msgstr ""
2763
-
2764
- #: inc/options/minify.php:138
2765
- msgid "Embed type:"
2766
- msgstr ""
2767
-
2768
- #: inc/options/minify.php:140
2769
- msgid "Before <span class=\"html-tag\">&lt;/head&gt;"
2770
- msgstr ""
2771
-
2772
- #: inc/options/minify.php:141 inc/options/minify.php:155
2773
- #: inc/options/minify.php:166 inc/options/minify.php:290
2774
- msgid "Combine only"
2775
- msgstr ""
2776
-
2777
- #: inc/options/minify.php:143 inc/options/minify.php:157
2778
- #: inc/options/minify.php:168
2779
- msgid "Default (blocking)"
2780
- msgstr ""
2781
-
2782
- #: inc/options/minify.php:144 inc/options/minify.php:158
2783
- #: inc/options/minify.php:169
2784
- msgid "Non-blocking using JS"
2785
- msgstr ""
2786
-
2787
- #: inc/options/minify.php:145 inc/options/minify.php:159
2788
- #: inc/options/minify.php:170
2789
- msgid "Non-blocking using \"async\""
2790
- msgstr ""
2791
-
2792
- #: inc/options/minify.php:146 inc/options/minify.php:160
2793
- #: inc/options/minify.php:171
2794
- msgid "Non-blocking using \"defer\""
2795
- msgstr ""
2796
-
2797
- #: inc/options/minify.php:148 inc/options/minify.php:161
2798
- #: inc/options/minify.php:172
2799
- msgid "Non-blocking using \"extsrc\""
2800
- msgstr ""
2801
-
2802
- #: inc/options/minify.php:149 inc/options/minify.php:162
2803
- #: inc/options/minify.php:173
2804
- msgid "Non-blocking using \"asyncsrc\""
2805
- msgstr ""
2806
-
2807
- #: inc/options/minify.php:154
2808
- msgid "After <span class=\"html-tag\">&lt;body&gt;</span>"
2809
- msgstr ""
2810
-
2811
- #: inc/options/minify.php:165
2812
- msgid "Before <span class=\"html-tag\">&lt;/body&gt;</span>"
2813
- msgstr ""
2814
-
2815
- #: inc/options/minify.php:211
2816
- msgid "<acronym title=\"JavaScript\">JS</acronym> file management:"
2817
- msgstr ""
2818
-
2819
- #: inc/options/minify.php:215 inc/options/minify.php:340
2820
- #: inc/options/mobile.php:45 inc/options/referrer.php:45
2821
- msgid "Theme:"
2822
- msgstr ""
2823
-
2824
- #: inc/options/minify.php:223
2825
- msgid ""
2826
- "Files are minified by template. First select the theme to manage, then add "
2827
- "scripts used in all templates to the \"All Templates\" group. Use the menu "
2828
- "above to manage scripts unique to a specific template. If necessary drag "
2829
- "&amp; drop to resolve dependency issues (due to incorrect order)."
2830
- msgstr ""
2831
-
2832
- #: inc/options/minify.php:260 inc/options/minify.php:377
2833
- #: inc/options/cdn/common/cnames.php:41 inc/popup/cdn_queue.php:19
2834
- #: inc/popup/cdn_queue.php:28 inc/popup/cdn_queue.php:52
2835
- #: inc/popup/cdn_queue.php:61 inc/popup/cdn_queue.php:82
2836
- #: inc/popup/cdn_queue.php:91
2837
- msgid "Delete"
2838
- msgstr ""
2839
-
2840
- #: inc/options/minify.php:271
2841
- msgid "No <acronym title=\"JavaScript\">JS</acronym> files added"
2842
- msgstr ""
2843
-
2844
- #: inc/options/minify.php:272
2845
- msgid "Add a script"
2846
- msgstr ""
2847
-
2848
- #: inc/options/minify.php:284 inc/options/common/header.php:121
2849
- msgid "<acronym title=\"Cascading Style Sheet\">CSS</acronym>"
2850
- msgstr ""
2851
-
2852
- #: inc/options/minify.php:287
2853
- msgid "<acronym title=\"Cascading Style Sheet\">CSS</acronym> minify settings:"
2854
- msgstr ""
2855
-
2856
- #: inc/options/minify.php:309
2857
- msgid "@import handling:"
2858
- msgstr ""
2859
-
2860
- #: inc/options/minify.php:336
2861
- msgid "<acronym title=\"Cascading Style Sheet\">CSS</acronym> file management:"
2862
- msgstr ""
2863
-
2864
- #: inc/options/minify.php:348
2865
- msgid ""
2866
- "Files are minified by template. First select the theme to manage, then add "
2867
- "style sheets used in all templates to the \"All Templates\" group. Use the "
2868
- "menu above to manage style sheets unique to a specific template. If "
2869
- "necessary drag &amp; drop to resolve dependency issues (due to incorrect "
2870
- "order)."
2871
- msgstr ""
2872
-
2873
- #: inc/options/minify.php:388
2874
- msgid "No <acronym title=\"Cascading Style Sheet\">CSS</acronym> files added"
2875
- msgstr ""
2876
-
2877
- #: inc/options/minify.php:389
2878
- msgid "Add a style sheet"
2879
- msgstr ""
2880
-
2881
- #: inc/options/minify.php:405
2882
- msgid "Disable Minify Auto automatic filename test"
2883
- msgstr ""
2884
-
2885
- #: inc/options/minify.php:406
2886
- msgid ""
2887
- "Disables functionality that tries to find optimal filename length for Minify "
2888
- "Auto files. Needs to be checked to be able to set manual filename length "
2889
- "below."
2890
- msgstr ""
2891
-
2892
- #: inc/options/minify.php:410
2893
- msgid ""
2894
- "Maximum filename length to enter is 246. Change this value to decrease or\n"
2895
- " increase the number of minified files that are generated.\n"
2896
- " The more JS/CSS files you have the more files will be "
2897
- "generated since the filenames are combined in\n"
2898
- " the filename. This is only applicable when using Minify Auto."
2899
- msgstr ""
2900
-
2901
- #: inc/options/minify.php:433
2902
- msgid "Update external files every:"
2903
- msgstr ""
2904
-
2905
- #: inc/options/minify.php:438
2906
- msgid ""
2907
- "Specify the interval between download and update of external files in the "
2908
- "minify cache. Hint: 6 hours is 21600 seconds. 12 hours is 43200 seconds. 24 "
2909
- "hours is 86400 seconds."
2910
- msgstr ""
2911
-
2912
- #: inc/options/minify.php:451
2913
- msgid "Never minify the following pages:"
2914
- msgstr ""
2915
-
2916
- #: inc/options/minify.php:455
2917
- msgid "Always ignore the specified pages / directories."
2918
- msgstr ""
2919
-
2920
- #: inc/options/minify.php:459
2921
- msgid "Never minify the following JS files:"
2922
- msgstr ""
2923
-
2924
- #: inc/options/minify.php:463
2925
- msgid "Always ignore the specified JS files."
2926
- msgstr ""
2927
-
2928
- #: inc/options/minify.php:467
2929
- msgid "Never minify the following CSS files:"
2930
- msgstr ""
2931
-
2932
- #: inc/options/minify.php:471
2933
- msgid "Always ignore the specified CSS files."
2934
- msgstr ""
2935
-
2936
- #: inc/options/minify.php:480
2937
- msgid "Specify user agents that will never receive minified content."
2938
- msgstr ""
2939
-
2940
- #: inc/options/minify.php:485
2941
- msgid "Include external files/libraries:"
2942
- msgstr ""
2943
-
2944
- #: inc/options/minify.php:490
2945
- msgid "Specify external files/libraries that should be combined."
2946
- msgstr ""
2947
-
2948
- #: inc/options/minify.php:507
2949
- msgid ""
2950
- "Enable <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> "
2951
- "compression in the \"Cascading Style Sheets &amp; JavaScript\" section on <a "
2952
- "href=\"admin.php?page=w3tc_browsercache\">Browser Cache</a> Settings tab."
2953
- msgstr ""
2954
-
2955
- #: inc/options/minify.php:508
2956
- msgid ""
2957
- "The <acronym title=\"Time to Live\">TTL</acronym> of page cache files is set "
2958
- "via the \"Expires header lifetime\" field in the \"Cascading Style Sheets "
2959
- "&amp; JavaScript\" section on <a href=\"admin.php?page=w3tc_browsercache"
2960
- "\">Browser Cache</a> Settings tab."
2961
- msgstr ""
2962
-
2963
- #: inc/options/mobile.php:12
2964
- msgid ""
2965
- "User agent group support is always <span class=\"w3tc-enabled\">enabled</"
2966
- "span>."
2967
- msgstr ""
2968
-
2969
- #: inc/options/mobile.php:17 inc/options/common/header.php:163
2970
- msgid "Manage User Agent Groups"
2971
- msgstr ""
2972
-
2973
- #: inc/options/mobile.php:19 inc/options/referrer.php:19
2974
- msgid "Create a group"
2975
- msgstr ""
2976
-
2977
- #: inc/options/mobile.php:19
2978
- msgid ""
2979
- "of user agents by specifying names in the user agents field. Assign a set of "
2980
- "user agents to use a specific theme, redirect them to another domain or if "
2981
- "an existing mobile plugin is active, create user agent groups to ensure that "
2982
- "a unique cache is created for each user agent group. Drag and drop groups "
2983
- "into order (if needed) to determine their priority (top -&gt; down)."
2984
- msgstr ""
2985
-
2986
- #: inc/options/mobile.php:28 inc/options/referrer.php:28
2987
- msgid "Group name:"
2988
- msgstr ""
2989
-
2990
- #: inc/options/mobile.php:36 inc/options/referrer.php:36
2991
- msgid "Enabled:"
2992
- msgstr ""
2993
-
2994
- #: inc/options/mobile.php:54
2995
- msgid ""
2996
- "Assign this group of user agents to a specific theme. Selecting \"Pass-"
2997
- "through\" allows any plugin(s) (e.g. mobile plugins) to properly handle "
2998
- "requests for these user agents. If the \"redirect users to\" field is not "
2999
- "empty, this setting is ignored."
3000
- msgstr ""
3001
-
3002
- #: inc/options/mobile.php:59 inc/options/referrer.php:59
3003
- msgid "Redirect users to:"
3004
- msgstr ""
3005
-
3006
- #: inc/options/mobile.php:63
3007
- msgid ""
3008
- "A 302 redirect is used to send this group of users to another hostname "
3009
- "(domain); recommended if a 3rd party service provides a mobile version of "
3010
- "your site."
3011
- msgstr ""
3012
-
3013
- #: inc/options/mobile.php:68
3014
- msgid "User agents:"
3015
- msgstr ""
3016
-
3017
- #: inc/options/mobile.php:72
3018
- msgid ""
3019
- "Specify the user agents for this group. Remember to escape special "
3020
- "characters like spaces, dots or dashes with a backslash. Regular expressions "
3021
- "are also supported."
3022
- msgstr ""
3023
-
3024
- #: inc/options/mobile.php:79
3025
- msgid ""
3026
- "No groups added. All user agents recieve the same page and minify cache "
3027
- "results."
3028
- msgstr ""
3029
-
3030
- #: inc/options/mobile.php:92
3031
- msgid ""
3032
- "Enabling even a single user agent group will set a cookie called "
3033
- "\"w3tc_referrer.\" It is used to ensure a consistent user experience across "
3034
- "page views. Make sure any reverse proxy servers etc respect this cookie for "
3035
- "proper operation."
3036
- msgstr ""
3037
-
3038
- #: inc/options/mobile.php:93
3039
- msgid ""
3040
- "Per the above, make sure that visitors are notified about the cookie as per "
3041
- "any regulations in your market."
3042
- msgstr ""
3043
-
3044
- #: inc/options/new_relic.php:4
3045
- msgid "Monitoring via New Relic is currently"
3046
- msgstr ""
3047
-
3048
- #: inc/options/new_relic.php:8
3049
- msgid "Application Settings"
3050
- msgstr ""
3051
-
3052
- #: inc/options/new_relic.php:67
3053
- #, php-format
3054
- msgid ""
3055
- "Application settings could not be retrieved. New Relic may not be properly "
3056
- "configured, <a href=\"%s\">review the settings</a>."
3057
- msgstr ""
3058
-
3059
- #: inc/options/new_relic.php:69
3060
- msgid "Application settings are only visible when New Relic is enabled"
3061
- msgstr ""
3062
-
3063
- #: inc/options/new_relic.php:75
3064
- msgid "Dashboard Settings"
3065
- msgstr ""
3066
-
3067
- #: inc/options/new_relic.php:78
3068
- msgid "Cache time:"
3069
- msgstr ""
3070
-
3071
- #: inc/options/new_relic.php:81
3072
- msgid ""
3073
- "How many minutes data retrieved from New Relic should be stored. Minimum is "
3074
- "1 minute."
3075
- msgstr ""
3076
-
3077
- #: inc/options/new_relic.php:92
3078
- msgid "Behavior Settings"
3079
- msgstr ""
3080
-
3081
- #: inc/options/new_relic.php:96
3082
- msgid ""
3083
- "Use <acronym title=\"Real User Monitoring\">RUM</acronym> only for following "
3084
- "user roles"
3085
- msgstr ""
3086
-
3087
- #: inc/options/new_relic.php:97
3088
- msgid ""
3089
- "Select user roles that <acronym title=\"Real User Monitoring\">RUM</acronym> "
3090
- "should be enabled for:"
3091
- msgstr ""
3092
-
3093
- #: inc/options/new_relic.php:112
3094
- msgid ""
3095
- "Include <acronym title=\"Real User Monitoring\">RUM</acronym> in compressed "
3096
- "or cached pages"
3097
- msgstr ""
3098
-
3099
- #: inc/options/new_relic.php:118
3100
- msgid ""
3101
- "This enables inclusion of <acronym title=\"Real User Monitoring\">RUM</"
3102
- "acronym> when using Page Cache together with Browser Cache gzip or when "
3103
- "using Page Cache with Disc: Enhanced"
3104
- msgstr ""
3105
-
3106
- #: inc/options/new_relic.php:125
3107
- msgid "Prefix network sites:"
3108
- msgstr ""
3109
-
3110
- #: inc/options/new_relic.php:129
3111
- msgid "Include network sites stats in network:"
3112
- msgstr ""
3113
-
3114
- #: inc/options/new_relic.php:134
3115
- msgid ""
3116
- "This means that the data collected for sites in the network will be included "
3117
- "in the main network sites data on New Relic."
3118
- msgstr ""
3119
-
3120
- #: inc/options/new_relic.php:141
3121
- msgid "Use PHP function to set application name:"
3122
- msgstr ""
3123
-
3124
- #: inc/options/new_relic.php:146
3125
- msgid ""
3126
- "This is required when using New Relic on a network install to set the proper "
3127
- "names for sites."
3128
- msgstr ""
3129
-
3130
- #: inc/options/new_relic.php:151
3131
- msgid ""
3132
- "Enable this to dynamically set proper application name. (See New Relic <a "
3133
- "href=\"https://newrelic.com/docs/php/per-directory-settings\">Per-directory "
3134
- "settings</a> for other methods."
3135
- msgstr ""
3136
-
3137
- #: inc/options/new_relic.php:157
3138
- msgid "Enable XMIT"
3139
- msgstr ""
3140
-
3141
- #: inc/options/objectcache.php:7
3142
- #, php-format
3143
- msgid "Object caching via %1$s is currently %2$s"
3144
- msgstr ""
3145
-
3146
- #: inc/options/objectcache.php:38
3147
- msgid "Default lifetime of cache objects:"
3148
- msgstr ""
3149
-
3150
- #: inc/options/objectcache.php:54
3151
- msgid "Global groups:"
3152
- msgstr ""
3153
-
3154
- #: inc/options/objectcache.php:58
3155
- msgid "Groups shared amongst sites in network mode."
3156
- msgstr ""
3157
-
3158
- #: inc/options/objectcache.php:62
3159
- msgid "Non-persistent groups:"
3160
- msgstr ""
3161
-
3162
- #: inc/options/objectcache.php:66
3163
- msgid "Groups that should not be cached."
3164
- msgstr ""
3165
-
3166
- #: inc/options/objectcache.php:72
3167
- msgid "Flush all cache on post, comment etc changes."
3168
- msgstr ""
3169
-
3170
- #: inc/options/objectcache.php:73
3171
- msgid ""
3172
- "Enabling this option will increase load on server on certain actions but "
3173
- "will guarantee that\n"
3174
- " the Object Cache is always clean and contains latest "
3175
- "changes. <em>Enable if you are experiencing issues\n"
3176
- " with options displaying wrong value/state (checkboxes "
3177
- "etc).</em>"
3178
- msgstr ""
3179
-
3180
- # php-format
3181
- #: inc/options/pgcache.php:7
3182
- #, php-format
3183
- msgid "Page caching via %1$s is currently %2$s"
3184
- msgstr ""
3185
-
3186
- #: inc/options/pgcache.php:15
3187
- #, php-format
3188
- msgid "To rebuild the page cache use the %s operation"
3189
- msgstr ""
3190
-
3191
- #: inc/options/pgcache.php:28
3192
- msgid "Cache front page"
3193
- msgstr ""
3194
-
3195
- #: inc/options/pgcache.php:28
3196
- msgid "Cache posts page"
3197
- msgstr ""
3198
-
3199
- #: inc/options/pgcache.php:29
3200
- msgid ""
3201
- "For many blogs this is your most visited page, it is recommended that you "
3202
- "cache it."
3203
- msgstr ""
3204
-
3205
- #: inc/options/pgcache.php:35
3206
- msgid "Don't cache front page"
3207
- msgstr ""
3208
-
3209
- #: inc/options/pgcache.php:36
3210
- msgid ""
3211
- "By default the front page is cached when using static front page in reading "
3212
- "settings."
3213
- msgstr ""
3214
-
3215
- #: inc/options/pgcache.php:42
3216
- msgid "Cache feeds: site, categories, tags, comments"
3217
- msgstr ""
3218
-
3219
- #: inc/options/pgcache.php:43
3220
- msgid ""
3221
- "Even if using a feed proxy service (like <a href=\"http://en.wikipedia.org/"
3222
- "wiki/FeedBurner\" target=\"_blank\">FeedBurner</a>), enabling this option is "
3223
- "still recommended."
3224
- msgstr ""
3225
-
3226
- #: inc/options/pgcache.php:48
3227
- msgid ""
3228
- "Cache <acronym title=\"Secure Socket Layer\">SSL</acronym> (<acronym title="
3229
- "\"HyperText Transfer Protocol over SSL\">https</acronym>) requests"
3230
- msgstr ""
3231
-
3232
- #: inc/options/pgcache.php:49
3233
- msgid ""
3234
- "Cache <acronym title=\"Secure Socket Layer\">SSL</acronym> requests "
3235
- "(uniquely) for improved performance."
3236
- msgstr ""
3237
-
3238
- #: inc/options/pgcache.php:54
3239
- msgid ""
3240
- "Cache <acronym title=\"Uniform Resource Identifier\">URI</acronym>s with "
3241
- "query string variables"
3242
- msgstr ""
3243
-
3244
- #: inc/options/pgcache.php:55
3245
- msgid "Search result (and similar) pages will be cached if enabled."
3246
- msgstr ""
3247
-
3248
- #: inc/options/pgcache.php:60
3249
- msgid "Cache 404 (not found) pages"
3250
- msgstr ""
3251
-
3252
- #: inc/options/pgcache.php:61
3253
- msgid ""
3254
- "Reduce server load by caching 404 pages. If the disk enhanced method of disk "
3255
- "caching is used, 404 pages will be returned with a 200 response code. Use at "
3256
- "your own risk."
3257
- msgstr ""
3258
-
3259
- #: inc/options/pgcache.php:66
3260
- #, php-format
3261
- msgid "Cache requests only for %s site address"
3262
- msgstr ""
3263
-
3264
- #: inc/options/pgcache.php:67
3265
- msgid ""
3266
- "Cache only requests with the same <acronym title=\"Uniform Resource Indicator"
3267
- "\">URL</acronym> as the site's <a href=\"options-general.php\">site address</"
3268
- "a>."
3269
- msgstr ""
3270
-
3271
- #: inc/options/pgcache.php:72
3272
- msgid "Don't cache pages for logged in users"
3273
- msgstr ""
3274
-
3275
- #: inc/options/pgcache.php:73
3276
- msgid ""
3277
- "Unauthenticated users may view a cached version of the last authenticated "
3278
- "user's view of a given page. Disabling this option is not recommended."
3279
- msgstr ""
3280
-
3281
- #: inc/options/pgcache.php:78
3282
- msgid "Don't cache pages for following user roles"
3283
- msgstr ""
3284
-
3285
- #: inc/options/pgcache.php:79
3286
- msgid "Select user roles that should not receive cached pages:"
3287
- msgstr ""
3288
-
3289
- #: inc/options/pgcache.php:99 inc/options/common/header.php:107
3290
- msgid "Cache Preload"
3291
- msgstr ""
3292
-
3293
- #: inc/options/pgcache.php:103
3294
- msgid "Automatically prime the page cache"
3295
- msgstr ""
3296
-
3297
- #: inc/options/pgcache.php:107
3298
- msgid "Update interval:"
3299
- msgstr ""
3300
-
3301
- #: inc/options/pgcache.php:112
3302
- msgid ""
3303
- "The number of seconds to wait before creating another set of cached pages."
3304
- msgstr ""
3305
-
3306
- #: inc/options/pgcache.php:116
3307
- msgid "Pages per interval:"
3308
- msgstr ""
3309
-
3310
- #: inc/options/pgcache.php:121
3311
- msgid ""
3312
- "Limit the number of pages to create per batch. Fewer pages may be better for "
3313
- "under-powered servers."
3314
- msgstr ""
3315
-
3316
- #: inc/options/pgcache.php:125
3317
- msgid "Sitemap <acronym title=\"Uniform Resource Indicator\">URL</acronym>:"
3318
- msgstr ""
3319
-
3320
- #: inc/options/pgcache.php:130
3321
- msgid ""
3322
- "A <a href=\"http://www.xml-sitemaps.com/validate-xml-sitemap.html\" target="
3323
- "\"_blank\">compliant</a> sitemap can be used to specify the pages to "
3324
- "maintain in the primed cache. Pages will be cached according to the "
3325
- "priorities specified in the <acronym title=\"Extensible Markup Language"
3326
- "\">XML</acronym> file. Due to its completeness and integrations, <a href="
3327
- "\"http://wordpress.org/extend/plugins/wordpress-seo/\" target=\"_blank"
3328
- "\">WordPress SEO</a> is recommended for use with this feature."
3329
- msgstr ""
3330
-
3331
- #: inc/options/pgcache.php:135
3332
- msgid "Prime post cache on publish."
3333
- msgstr ""
3334
-
3335
- #: inc/options/pgcache.php:151
3336
- msgid "Purge Policy: "
3337
- msgstr ""
3338
-
3339
- #: inc/options/pgcache.php:161 inc/options/pgcache.php:163
3340
- msgid "Front page"
3341
- msgstr ""
3342
-
3343
- #: inc/options/pgcache.php:163
3344
- msgid "Posts page"
3345
- msgstr ""
3346
-
3347
- #: inc/options/pgcache.php:164
3348
- msgid "Post page"
3349
- msgstr ""
3350
-
3351
- #: inc/options/pgcache.php:165
3352
- msgid "Blog feed"
3353
- msgstr ""
3354
-
3355
- #: inc/options/pgcache.php:168
3356
- msgid "Post comments pages"
3357
- msgstr ""
3358
-
3359
- #: inc/options/pgcache.php:169
3360
- msgid "Post author pages"
3361
- msgstr ""
3362
-
3363
- #: inc/options/pgcache.php:170
3364
- msgid "Post terms pages"
3365
- msgstr ""
3366
-
3367
- #: inc/options/pgcache.php:173
3368
- msgid "Post comments feed"
3369
- msgstr ""
3370
-
3371
- #: inc/options/pgcache.php:174
3372
- msgid "Post author feed"
3373
- msgstr ""
3374
-
3375
- #: inc/options/pgcache.php:175
3376
- msgid "Post terms feeds"
3377
- msgstr ""
3378
-
3379
- #: inc/options/pgcache.php:178
3380
- msgid "Daily archive pages"
3381
- msgstr ""
3382
-
3383
- #: inc/options/pgcache.php:179
3384
- msgid "Monthly archive pages"
3385
- msgstr ""
3386
-
3387
- #: inc/options/pgcache.php:180
3388
- msgid "Yearly archive pages"
3389
- msgstr ""
3390
-
3391
- #: inc/options/pgcache.php:188
3392
- msgid "Specify the feed types to purge:"
3393
- msgstr ""
3394
-
3395
- #: inc/options/pgcache.php:203
3396
- msgid "Limit page purging:"
3397
- msgstr ""
3398
-
3399
- #: inc/options/pgcache.php:206
3400
- msgid ""
3401
- "Specify number of pages that lists posts (archive etc) that should be purged "
3402
- "on post updates etc, i.e example.com/ ... example.com/page/5. <br />0 means "
3403
- "all pages that lists posts are purged, i.e example.com/page/2 ... ."
3404
- msgstr ""
3405
-
3406
- #: inc/options/pgcache.php:210
3407
- msgid "Additional pages:"
3408
- msgstr ""
3409
-
3410
- #: inc/options/pgcache.php:215
3411
- msgid ""
3412
- "Specify additional pages to purge. Including parent page in path. Ex: parent/"
3413
- "posts."
3414
- msgstr ""
3415
-
3416
- #: inc/options/pgcache.php:219
3417
- msgid "Purge sitemaps:"
3418
- msgstr ""
3419
-
3420
- #: inc/options/pgcache.php:222
3421
- msgid "Specify a regular expression that matches your sitemaps."
3422
- msgstr ""
3423
-
3424
- #: inc/options/pgcache.php:253
3425
- msgid "Compatibility mode"
3426
- msgstr ""
3427
-
3428
- #: inc/options/pgcache.php:255
3429
- msgid "Enable compatibility mode"
3430
- msgstr ""
3431
-
3432
- #: inc/options/pgcache.php:256
3433
- msgid ""
3434
- "Decreases performance by ~20% at scale in exchange for increasing "
3435
- "interoperability with more hosting environments and WordPress "
3436
- "idiosyncrasies. This option should be enabled for most sites"
3437
- msgstr ""
3438
-
3439
- #: inc/options/pgcache.php:261
3440
- msgid "Charset:"
3441
- msgstr ""
3442
-
3443
- #: inc/options/pgcache.php:263
3444
- msgid "Remove UTF8/blog charset support"
3445
- msgstr ""
3446
-
3447
- #: inc/options/pgcache.php:264
3448
- msgid ""
3449
- "Check if you have odd characters or incorrect punctuation when viewing "
3450
- "cached pages."
3451
- msgstr ""
3452
-
3453
- #: inc/options/pgcache.php:290
3454
- msgid "Comment cookie lifetime:"
3455
- msgstr ""
3456
-
3457
- #: inc/options/pgcache.php:293
3458
- msgid ""
3459
- "Significantly reduce the default <acronym title=\"Time to Live\">TTL</"
3460
- "acronym> for comment cookies to reduce the number of authenticated user "
3461
- "traffic. Enter -1 to revert to default <acronym title=\"Time to Live\">TTL</"
3462
- "acronym>."
3463
- msgstr ""
3464
-
3465
- #: inc/options/pgcache.php:297
3466
- msgid "Accepted query strings:"
3467
- msgstr ""
3468
-
3469
- #: inc/options/pgcache.php:302
3470
- msgid "Always cache URLs with these query strings."
3471
- msgstr ""
3472
-
3473
- #: inc/options/pgcache.php:311
3474
- msgid "Never send cache pages for these user agents."
3475
- msgstr ""
3476
-
3477
- #: inc/options/pgcache.php:315
3478
- msgid "Rejected cookies:"
3479
- msgstr ""
3480
-
3481
- #: inc/options/pgcache.php:320
3482
- msgid "Never cache pages that use the specified cookies."
3483
- msgstr ""
3484
-
3485
- #: inc/options/pgcache.php:332
3486
- #, php-format
3487
- msgid ""
3488
- "Always ignore the specified pages / directories. Supports regular expression "
3489
- "(See <a href=\"%s\">FAQ</a>)"
3490
- msgstr ""
3491
-
3492
- #: inc/options/pgcache.php:338
3493
- msgid "Reject HEAD request method:"
3494
- msgstr ""
3495
-
3496
- #: inc/options/pgcache.php:345
3497
- msgid "Do not cache HEAD request."
3498
- msgstr ""
3499
-
3500
- #: inc/options/pgcache.php:349
3501
- msgid "Cache exception list:"
3502
- msgstr ""
3503
-
3504
- #: inc/options/pgcache.php:354
3505
- #, php-format
3506
- msgid ""
3507
- "Cache the specified pages / directories even if listed in the \"never cache "
3508
- "the following pages\" field. Supports regular expression (See <a href=\"%s"
3509
- "\">FAQ</a>)"
3510
- msgstr ""
3511
-
3512
- #: inc/options/pgcache.php:359
3513
- msgid "Non-trailing slash pages:"
3514
- msgstr ""
3515
-
3516
- #: inc/options/pgcache.php:364
3517
- msgid "Cache the specified pages even if they don't have tailing slash."
3518
- msgstr ""
3519
-
3520
- #: inc/options/pgcache.php:369
3521
- msgid "Specify page headers:"
3522
- msgstr ""
3523
-
3524
- #: inc/options/pgcache.php:374
3525
- msgid "Specify additional page headers to cache."
3526
- msgstr ""
3527
-
3528
- #: inc/options/pgcache.php:379
3529
- msgid ""
3530
- "Handle <acronym title=\"Extensible Markup Language\">XML</acronym> mime type"
3531
- msgstr ""
3532
-
3533
- #: inc/options/pgcache.php:381
3534
- msgid "Handle XML mime type"
3535
- msgstr ""
3536
-
3537
- #: inc/options/pgcache.php:382
3538
- msgid ""
3539
- "Return correct Content-Type header for XML files. Slows down cache engine."
3540
- msgstr ""
3541
-
3542
- #: inc/options/pgcache.php:394 inc/options/common/header.php:109
3543
- #: inc/options/common/header.php:123 inc/options/common/header.php:184
3544
- msgid "Note(s)"
3545
- msgstr ""
3546
-
3547
- #: inc/options/pgcache.php:399
3548
- msgid ""
3549
- "Enable <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> "
3550
- "compression in the \"<acronym title=\"Hypertext Markup Language\">HTML</"
3551
- "acronym>\" section on <a href=\"admin.php?page=w3tc_browsercache\">Browser "
3552
- "Cache</a> Settings tab."
3553
- msgstr ""
3554
-
3555
- #: inc/options/pgcache.php:400
3556
- msgid ""
3557
- "The <acronym title=\"Time to Live\">TTL</acronym> of page cache files is set "
3558
- "via the \"Expires header lifetime\" field in the \"<acronym title="
3559
- "\"Hypertext Markup Language\">HTML</acronym>\" section on <a href=\"admin."
3560
- "php?page=w3tc_browsercache\">Browser Cache</a> Settings tab."
3561
- msgstr ""
3562
-
3563
- #: inc/options/referrer.php:12
3564
- msgid "Referrer group support is always <span class=\"w3tc-enabled\">enabled"
3565
- msgstr ""
3566
-
3567
- #: inc/options/referrer.php:17 inc/options/common/header.php:172
3568
- msgid "Manage Referrer Groups"
3569
- msgstr ""
3570
-
3571
- #: inc/options/referrer.php:19
3572
- msgid ""
3573
- "of referrers by specifying names in the referrers field. Assign a set of "
3574
- "referrers to use a specific theme, redirect them to another domain, create "
3575
- "referrer groups to ensure that a unique cache is created for each referrer "
3576
- "group. Drag and drop groups into order (if needed) to determine their "
3577
- "priority (top -&gt; down)."
3578
- msgstr ""
3579
-
3580
- #: inc/options/referrer.php:31
3581
- msgid "Delete group"
3582
- msgstr ""
3583
-
3584
- #: inc/options/referrer.php:49
3585
- msgid "-- Pass-through --"
3586
- msgstr ""
3587
-
3588
- #: inc/options/referrer.php:54
3589
- msgid ""
3590
- "Assign this group of referrers to a specific theme. Selecting \"Pass-through"
3591
- "\" allows any plugin(s) (e.g. referrer plugins) to properly handle requests "
3592
- "for these referrers. If the \"redirect users to\" field is not empty, this "
3593
- "setting is ignored."
3594
- msgstr ""
3595
-
3596
- #: inc/options/referrer.php:63
3597
- msgid ""
3598
- "A 302 redirect is used to send this group of referrers to another hostname "
3599
- "(domain)."
3600
- msgstr ""
3601
-
3602
- #: inc/options/referrer.php:68
3603
- msgid "Referrers:"
3604
- msgstr ""
3605
-
3606
- #: inc/options/referrer.php:72
3607
- msgid ""
3608
- "Specify the referrers for this group. Remember to escape special characters "
3609
- "like spaces, dots or dashes with a backslash. Regular expressions are also "
3610
- "supported."
3611
- msgstr ""
3612
-
3613
- #: inc/options/referrer.php:79
3614
- msgid ""
3615
- "No groups added. All referrers recieve the same page and minify cache "
3616
- "results."
3617
- msgstr ""
3618
-
3619
- #: inc/options/support.php:9
3620
- msgid ""
3621
- "Request premium services, suggest a feature or submit a bug using the form "
3622
- "below:"
3623
- msgstr ""
3624
-
3625
- #: inc/options/cdn/akamai.php:3 inc/options/cdn/cotendo.php:3
3626
- #: inc/options/cdn/rscf.php:3
3627
- msgid "Username:"
3628
- msgstr ""
3629
-
3630
- #: inc/options/cdn/akamai.php:10 inc/options/cdn/cotendo.php:10
3631
- msgid "Password:"
3632
- msgstr ""
3633
-
3634
- #: inc/options/cdn/akamai.php:17
3635
- msgid "Email notification:"
3636
- msgstr ""
3637
-
3638
- #: inc/options/cdn/akamai.php:22
3639
- msgid ""
3640
- "Specify email addresses for completed removal notifications. One email per "
3641
- "line."
3642
- msgstr ""
3643
-
3644
- #: inc/options/cdn/akamai.php:26
3645
- msgid "Domain to purge:"
3646
- msgstr ""
3647
-
3648
- #: inc/options/cdn/akamai.php:35
3649
- msgid "Purge action:"
3650
- msgstr ""
3651
-
3652
- #: inc/options/cdn/akamai.php:44
3653
- msgid "<acronym title=\"Secure Sockets Layer\">SSL</acronym> support:</label>"
3654
- msgstr ""
3655
-
3656
- #: inc/options/cdn/akamai.php:47 inc/options/cdn/att.php:20
3657
- #: inc/options/cdn/azure.php:29 inc/options/cdn/cf.php:34
3658
- #: inc/options/cdn/cf2.php:34 inc/options/cdn/cotendo.php:27
3659
- #: inc/options/cdn/edgecast.php:20 inc/options/cdn/ftp.php:42
3660
- #: inc/options/cdn/maxcdn.php:47 inc/options/cdn/mirror.php:6
3661
- #: inc/options/cdn/netdna.php:47 inc/options/cdn/rscf.php:39
3662
- #: inc/options/cdn/s3.php:33
3663
- msgid "Auto (determine connection type automatically)"
3664
- msgstr ""
3665
-
3666
- #: inc/options/cdn/akamai.php:48 inc/options/cdn/att.php:21
3667
- #: inc/options/cdn/azure.php:30 inc/options/cdn/cf.php:35
3668
- #: inc/options/cdn/cf2.php:35 inc/options/cdn/cotendo.php:28
3669
- #: inc/options/cdn/edgecast.php:21 inc/options/cdn/ftp.php:43
3670
- #: inc/options/cdn/maxcdn.php:48 inc/options/cdn/mirror.php:7
3671
- #: inc/options/cdn/netdna.php:48 inc/options/cdn/rscf.php:40
3672
- #: inc/options/cdn/s3.php:34
3673
- msgid "Enabled (always use SSL)"
3674
- msgstr ""
3675
-
3676
- #: inc/options/cdn/akamai.php:49 inc/options/cdn/att.php:22
3677
- #: inc/options/cdn/azure.php:31 inc/options/cdn/cf.php:36
3678
- #: inc/options/cdn/cf2.php:36 inc/options/cdn/cotendo.php:29
3679
- #: inc/options/cdn/edgecast.php:22 inc/options/cdn/ftp.php:44
3680
- #: inc/options/cdn/maxcdn.php:49 inc/options/cdn/mirror.php:8
3681
- #: inc/options/cdn/netdna.php:49 inc/options/cdn/rscf.php:41
3682
- #: inc/options/cdn/s3.php:35
3683
- msgid "Disabled (always use HTTP)"
3684
- msgstr ""
3685
-
3686
- #: inc/options/cdn/akamai.php:51 inc/options/cdn/att.php:24
3687
- #: inc/options/cdn/azure.php:33 inc/options/cdn/cf.php:38
3688
- #: inc/options/cdn/cf2.php:38 inc/options/cdn/cotendo.php:31
3689
- #: inc/options/cdn/edgecast.php:24 inc/options/cdn/ftp.php:46
3690
- #: inc/options/cdn/maxcdn.php:51 inc/options/cdn/mirror.php:10
3691
- #: inc/options/cdn/netdna.php:51 inc/options/cdn/rscf.php:43
3692
- #: inc/options/cdn/s3.php:37
3693
- msgid ""
3694
- "Some <acronym>CDN</acronym> providers may or may not support <acronym title="
3695
- "\"Secure Sockets Layer\">SSL</acronym>, contact your vendor for more "
3696
- "information."
3697
- msgstr ""
3698
-
3699
- #: inc/options/cdn/ftp.php:67
3700
- msgid "Use default <acronym title=\"Secure Shell\">SSH</acronym> public/private key files"
3701
- msgstr ""
3702
-
3703
- #: inc/options/cdn/ftp.php:68
3704
- msgid "Enable this option if you don't have special public/private key files."
3705
- msgstr ""
3706
-
3707
- #: inc/options/cdn/ftp.php:72
3708
- msgid "<acronym title=\"Secure File Transfer Protocol\">SFTP</acronym> public key:"
3709
- msgstr ""
3710
-
3711
- #: inc/options/cdn/ftp.php:79
3712
- msgid "<acronym title=\"Secure File Transfer Protocol\">SFTP</acronym> private key:"
3713
- msgstr ""
3714
-
3715
- #: inc/options/cdn/akamai.php:55 inc/options/cdn/att.php:28
3716
- #: inc/options/cdn/azure.php:37 inc/options/cdn/cf.php:42
3717
- #: inc/options/cdn/cf2.php:42 inc/options/cdn/cotendo.php:35
3718
- #: inc/options/cdn/edgecast.php:28 inc/options/cdn/ftp.php:50
3719
- #: inc/options/cdn/maxcdn.php:55 inc/options/cdn/mirror.php:14
3720
- #: inc/options/cdn/netdna.php:55 inc/options/cdn/rscf.php:47
3721
- #: inc/options/cdn/s3.php:41
3722
- msgid "Replace site's hostname with:"
3723
- msgstr ""
3724
-
3725
- #: inc/options/cdn/akamai.php:58 inc/options/cdn/att.php:31
3726
- #: inc/options/cdn/cotendo.php:38 inc/options/cdn/edgecast.php:31
3727
- #: inc/options/cdn/maxcdn.php:58 inc/options/cdn/mirror.php:17
3728
- #: inc/options/cdn/netdna.php:58
3729
- msgid ""
3730
- "Enter the hostname provided by your <acronym>CDN</acronym> provider, this "
3731
- "value will replace your site's hostname in the <acronym title=\"Hypertext "
3732
- "Markup Language\">HTML</acronym>."
3733
- msgstr ""
3734
-
3735
- #: inc/options/cdn/akamai.php:63
3736
- msgid "Test akamai"
3737
- msgstr ""
3738
-
3739
- #: inc/options/cdn/att.php:3 inc/options/cdn/edgecast.php:3
3740
- msgid "Account #:"
3741
- msgstr ""
3742
-
3743
- #: inc/options/cdn/att.php:10 inc/options/cdn/edgecast.php:10
3744
- msgid "Token:"
3745
- msgstr ""
3746
-
3747
- #: inc/options/cdn/att.php:17 inc/options/cdn/azure.php:26
3748
- #: inc/options/cdn/cf.php:31 inc/options/cdn/cf2.php:31
3749
- #: inc/options/cdn/cotendo.php:24 inc/options/cdn/edgecast.php:17
3750
- #: inc/options/cdn/ftp.php:39 inc/options/cdn/mirror.php:3
3751
- #: inc/options/cdn/rscf.php:36 inc/options/cdn/s3.php:30
3752
- msgid "<acronym title=\"Secure Sockets Layer\">SSL</acronym> support:"
3753
- msgstr ""
3754
-
3755
- #: inc/options/cdn/azure.php:3
3756
- msgid "Account name:"
3757
- msgstr ""
3758
-
3759
- #: inc/options/cdn/azure.php:10
3760
- msgid "Account key:"
3761
- msgstr ""
3762
-
3763
- #: inc/options/cdn/azure.php:17 inc/options/cdn/rscf.php:26
3764
- msgid "Container:"
3765
- msgstr ""
3766
-
3767
- #: inc/options/cdn/azure.php:21 inc/options/cdn/rscf.php:31
3768
- msgid "Create container"
3769
- msgstr ""
3770
-
3771
- #: inc/options/cdn/azure.php:43 inc/options/cdn/s3.php:47
3772
- msgid "or CNAME:"
3773
- msgstr ""
3774
-
3775
- #: inc/options/cdn/azure.php:49
3776
- msgid "Test Microsoft Azure Storage upload"
3777
- msgstr ""
3778
-
3779
- #: inc/options/cdn/cf.php:4 inc/options/cdn/cf2.php:4 inc/options/cdn/s3.php:4
3780
- msgid ""
3781
- "We recommend that you use <a href=\"http://docs.amazonwebservices.com/IAM/"
3782
- "latest/UserGuide/AccessPolicyLanguage_KeyConcepts.html\" target=\"_blank"
3783
- "\"><acronym title=\"AWS Identity and Access Management\">IAM</acronym></a> "
3784
- "to create a new policy for <acronym title=\"Amazon Web Services\">AWS</"
3785
- "acronym> services that have limited permissions. A helpful tool: <a href="
3786
- "\"http://awspolicygen.s3.amazonaws.com/policygen.html\" target=\"_blank"
3787
- "\"><acronym title=\"Amazon Web Services\">AWS</acronym> Policy Generator</a>"
3788
- msgstr ""
3789
-
3790
- #: inc/options/cdn/cf.php:8 inc/options/cdn/cf2.php:8 inc/options/cdn/s3.php:8
3791
- msgid "Access key ID:"
3792
- msgstr ""
3793
-
3794
- #: inc/options/cdn/cf.php:15 inc/options/cdn/cf2.php:15
3795
- #: inc/options/cdn/s3.php:15
3796
- msgid "Secret key:"
3797
- msgstr ""
3798
-
3799
- #: inc/options/cdn/cf.php:22 inc/options/cdn/s3.php:22
3800
- msgid "Bucket:"
3801
- msgstr ""
3802
-
3803
- #: inc/options/cdn/cf.php:27
3804
- msgid "Create bucket &amp; distribution"
3805
- msgstr ""
3806
-
3807
- #: inc/options/cdn/cf.php:47 inc/options/cdn/cf2.php:47
3808
- msgid ""
3809
- "If you have already added a <a href=\"http://docs.amazonwebservices.com/"
3810
- "AmazonCloudFront/latest/DeveloperGuide/index.html?CNAMEs.html\" target="
3811
- "\"_blank\">CNAME</a> to your <acronym title=\"Domain Name System\">DNS</"
3812
- "acronym> Zone, enter it here."
3813
- msgstr ""
3814
-
3815
- #: inc/options/cdn/cf.php:52
3816
- msgid "Test S3 upload &amp; CloudFront distribution"
3817
- msgstr ""
3818
-
3819
- #: inc/options/cdn/cf2.php:22
3820
- msgid "Origin:"
3821
- msgstr ""
3822
-
3823
- #: inc/options/cdn/cf2.php:26
3824
- msgid "Create distribution"
3825
- msgstr ""
3826
-
3827
- #: inc/options/cdn/cf2.php:52
3828
- msgid "Test CloudFront distribution"
3829
- msgstr ""
3830
-
3831
- #: inc/options/cdn/cotendo.php:17
3832
- msgid "Zones to purge:"
3833
- msgstr ""
3834
-
3835
- #: inc/options/cdn/cotendo.php:43
3836
- msgid "Test Cotendo"
3837
- msgstr "اختبار Cotendo"
3838
-
3839
- #: inc/options/cdn/edgecast.php:36
3840
- msgid "Test EdgeCast"
3841
- msgstr "اختبار EdgeCast"
3842
-
3843
- #: inc/options/cdn/ftp.php:4
3844
- msgid ""
3845
- "Use passive <acronym title=\"File Transfer Protocol\">FTP</acronym> mode"
3846
- msgstr ""
3847
-
3848
- #: inc/options/cdn/ftp.php:5
3849
- msgid ""
3850
- "Enable this option only if there are connectivity issues, otherwise it's not "
3851
- "recommended."
3852
- msgstr ""
3853
-
3854
- #: inc/options/cdn/ftp.php:9
3855
- msgid "<acronym title=\"File Transfer Protocol\">FTP</acronym> hostname:"
3856
- msgstr ""
3857
-
3858
- #: inc/options/cdn/ftp.php:13
3859
- msgid ""
3860
- "Specify the server's address, e.g.: \"ftp.domain.com\". Try \"127.0.0.1\" if "
3861
- "using a sub-domain on the same server as your site."
3862
- msgstr ""
3863
-
3864
- #: inc/options/cdn/ftp.php:17
3865
- msgid "<acronym title=\"File Transfer Protocol\">FTP</acronym> username:"
3866
- msgstr ""
3867
-
3868
- #: inc/options/cdn/ftp.php:24
3869
- msgid "<acronym title=\"File Transfer Protocol\">FTP</acronym> password:"
3870
- msgstr ""
3871
-
3872
- #: inc/options/cdn/ftp.php:31
3873
- msgid "<acronym title=\"File Transfer Protocol\">FTP</acronym> path:"
3874
- msgstr ""
3875
-
3876
- #: inc/options/cdn/ftp.php:35
3877
- msgid ""
3878
- "Specify the directory where files must be uploaded to be accessible in a web "
3879
- "browser (the document root)."
3880
- msgstr ""
3881
-
3882
- #: inc/options/cdn/ftp.php:53
3883
- msgid ""
3884
- "Enter the hostname or CNAME(s) of your <acronym title=\"File Transfer "
3885
- "Protocol\">FTP</acronym> server configured above, these values will replace "
3886
- "your site's hostname in the <acronym title=\"Hypertext Markup Language"
3887
- "\">HTML</acronym>."
3888
- msgstr ""
3889
-
3890
- #: inc/options/cdn/ftp.php:58
3891
- msgid "Test FTP server"
3892
- msgstr ""
3893
-
3894
- #: inc/options/cdn/maxcdn.php:4 inc/options/cdn/netdna.php:4
3895
- msgid "Select pull zone:"
3896
- msgstr ""
3897
-
3898
- #: inc/options/cdn/maxcdn.php:12 inc/options/cdn/netdna.php:12
3899
- msgid "Select the pull zone to use with this site."
3900
- msgstr ""
3901
-
3902
- #: inc/options/cdn/maxcdn.php:18 inc/options/cdn/netdna.php:18
3903
- msgid "Create pull zone:"
3904
- msgstr ""
3905
-
3906
- #: inc/options/cdn/maxcdn.php:18 inc/options/cdn/netdna.php:18
3907
- msgid "Create new pull zone:"
3908
- msgstr ""
3909
-
3910
- #: inc/options/cdn/maxcdn.php:20 inc/options/cdn/netdna.php:20
3911
- msgid "Create pull zone"
3912
- msgstr ""
3913
-
3914
- #: inc/options/cdn/maxcdn.php:20 inc/options/cdn/netdna.php:20
3915
- msgid "Create new pull zone"
3916
- msgstr ""
3917
-
3918
- #: inc/options/cdn/maxcdn.php:22 inc/options/cdn/netdna.php:22
3919
- msgid ""
3920
- "Click the Create Pull Zone button above and create a pull zone for this site."
3921
- msgstr ""
3922
-
3923
- #: inc/options/cdn/maxcdn.php:27 inc/options/cdn/netdna.php:27
3924
- msgid "Specify account credentials:"
3925
- msgstr ""
3926
-
3927
- #: inc/options/cdn/maxcdn.php:29 inc/options/cdn/netdna.php:29
3928
- #: inc/widget/maxcdn_signup.php:13 inc/widget/netdna_signup.php:17
3929
- msgid "Authorize"
3930
- msgstr ""
3931
-
3932
- #: inc/options/cdn/maxcdn.php:31 inc/options/cdn/netdna.php:31
3933
- msgid ""
3934
- "Click the Authorize button above, log in, paste the key below and save "
3935
- "settings."
3936
- msgstr ""
3937
-
3938
- #: inc/options/cdn/maxcdn.php:36 inc/options/cdn/netdna.php:36
3939
- #: inc/widget/maxcdn_signup.php:16 inc/widget/netdna_signup.php:20
3940
- #: lib/W3/UI/PluginView.php:318 lib/W3/UI/PluginView.php:338
3941
- msgid "Authorization key"
3942
- msgstr ""
3943
-
3944
- #: inc/options/cdn/maxcdn.php:40 inc/options/cdn/netdna.php:40
3945
- msgid ""
3946
- "Consists of alias+key+secret . Example: bluewidgets+asd897asd98a7sd"
3947
- "+798a7sd9 . If you use \"Authorize\" its already formatted correctly."
3948
- msgstr ""
3949
-
3950
- #: inc/options/cdn/maxcdn.php:44 inc/options/cdn/netdna.php:44
3951
- msgid "<acronym title=\"Secure Sockets Layer\">SSL</acronym> support"
3952
- msgstr ""
3953
-
3954
- #: inc/options/cdn/maxcdn.php:63
3955
- msgid "Test MaxCDN"
3956
- msgstr "اختبار MaxCDN"
3957
-
3958
- #: inc/options/cdn/mirror.php:22
3959
- msgid "Test Mirror"
3960
- msgstr ""
3961
-
3962
- #: inc/options/cdn/netdna.php:63
3963
- msgid "Test NetDNA"
3964
- msgstr "اختبار NetDNA"
3965
-
3966
- #: inc/options/cdn/rscf.php:17
3967
- msgid "Location:"
3968
- msgstr "الموقع:"
3969
-
3970
- #: inc/options/cdn/rscf.php:50
3971
- msgid ""
3972
- "Enter the hostname provided by Rackspace Cloud Files, this value will "
3973
- "replace your site's hostname in the <acronym title=\"Hypertext Markup "
3974
- "Language\">HTML</acronym>."
3975
- msgstr ""
3976
-
3977
- #: inc/options/cdn/rscf.php:55
3978
- msgid "Test Cloud Files upload"
3979
- msgstr ""
3980
-
3981
- #: inc/options/cdn/s3.php:49
3982
- msgid ""
3983
- "If you have already added a <a href=\"http://docs.amazonwebservices.com/"
3984
- "AmazonS3/latest/DeveloperGuide/VirtualHosting.html#VirtualHostingCustomURLs"
3985
- "\" target=\"_blank\">CNAME</a> to your <acronym title=\"Domain Name System"
3986
- "\">DNS</acronym> Zone, enter it here."
3987
- msgstr ""
3988
-
3989
- #: inc/options/cdn/s3.php:54
3990
- msgid "Test S3 upload"
3991
- msgstr ""
3992
-
3993
- #: inc/options/cdn/common/cnames.php:16
3994
- msgid "(reserved for CSS)"
3995
- msgstr ""
3996
-
3997
- #: inc/options/cdn/common/cnames.php:20
3998
- msgid "(reserved for JS in <head>)"
3999
- msgstr ""
4000
-
4001
- #: inc/options/cdn/common/cnames.php:24
4002
- msgid "(reserved for JS after <body>)"
4003
- msgstr ""
4004
-
4005
- #: inc/options/cdn/common/cnames.php:28
4006
- msgid "(reserved for JS before </body>)"
4007
- msgstr ""
4008
-
4009
- #: inc/options/cdn/common/cnames.php:46
4010
- msgid "Add CNAME"
4011
- msgstr "إضافة CNAME"
4012
-
4013
- #: inc/options/common/header.php:11
4014
- msgid "W3 Total Cache <span>by W3 EDGE <sup>&reg;</sup></span>"
4015
- msgstr ""
4016
-
4017
- #: inc/options/common/header.php:22 inc/options/common/header.php:41
4018
- msgid ""
4019
- "The following configuration changes are needed to ensure optimal performance:"
4020
- msgstr ""
4021
-
4022
- #: inc/options/common/header.php:31
4023
- msgid "If permission allow this can be done automatically, by clicking here:"
4024
- msgstr ""
4025
-
4026
- #: inc/options/common/header.php:51
4027
- msgid ""
4028
- "If permission allow this can be done using the <a href=\"#ftp_upload_form"
4029
- "\">FTP form</a> below."
4030
- msgstr ""
4031
-
4032
- #: inc/options/common/header.php:76 inc/options/common/header.php:116
4033
- #: inc/options/common/header.php:130 inc/options/common/header.php:140
4034
- #: inc/options/common/header.php:149 inc/options/common/header.php:161
4035
- #: inc/options/common/header.php:170
4036
- msgid "Jump to: "
4037
- msgstr "انتقل الى:"
4038
-
4039
- #: inc/options/common/header.php:77 inc/options/common/header.php:104
4040
- #: inc/options/common/header.php:117 inc/options/common/header.php:131
4041
- #: inc/options/common/header.php:141 inc/options/common/header.php:150
4042
- #: inc/options/common/header.php:162 inc/options/common/header.php:171
4043
- #: inc/options/common/header.php:180
4044
- msgid "Main Menu"
4045
- msgstr "القائمة الرئيسية"
4046
-
4047
- #: inc/options/common/header.php:88
4048
- msgid "Varnish"
4049
- msgstr ""
4050
-
4051
- #: inc/options/common/header.php:92
4052
- msgid "Cloudflare"
4053
- msgstr "Cloudflare"
4054
-
4055
- #: inc/options/common/header.php:95
4056
- msgid "Debug"
4057
- msgstr "تصحيح"
4058
-
4059
- #: inc/options/common/header.php:108
4060
- msgid "Purge Policy"
4061
- msgstr ""
4062
-
4063
- #: inc/options/common/header.php:154
4064
- msgid "Media"
4065
- msgstr ""
4066
-
4067
- #: inc/options/common/header.php:179
4068
- msgid "Jump to:"
4069
- msgstr "انتقل الى:"
4070
-
4071
- #: inc/options/common/help.php:3
4072
- msgid ""
4073
- "Request professional <a href=\"admin.php?page=w3tc_support\" style=\"color: "
4074
- "red;\"><strong>support</strong></a> or troubleshoot issues using the common "
4075
- "questions below:"
4076
- msgstr ""
4077
-
4078
- #: inc/options/enterprise/dbcluster-config.php:6
4079
- msgid "Database Cluster Configuration File"
4080
- msgstr ""
4081
-
4082
- #: inc/options/enterprise/dbcluster-config.php:15
4083
- msgid ""
4084
- "Note: Changes will have immediate effect on your database configuration. If "
4085
- "the application stops working creating the settings file, edit or remove "
4086
- "this configuration file manually at <strong>/wp-content/db-cluster-config."
4087
- "php</strong>."
4088
- msgstr ""
4089
-
4090
- #: inc/options/enterprise/dbcluster-config.php:23
4091
- msgid "Save configuration file"
4092
- msgstr ""
4093
-
4094
- #: inc/options/extensions/custom.php:15 inc/options/extensions/plugins.php:15
4095
- #: inc/options/extensions/theme.php:18
4096
- #, fuzzy
4097
- msgid "Save settings"
4098
- msgstr "حفظ كافة الإعدادات"
4099
-
4100
- #: inc/options/extensions/custom.php:20
4101
- msgid "No custom W3 Total Cache extensions"
4102
- msgstr ""
4103
-
4104
- #: inc/options/extensions/plugins.php:20
4105
- msgid "No plugins have W3 Total Cache extensions"
4106
- msgstr ""
4107
-
4108
- #: inc/options/extensions/theme.php:23
4109
- msgid "This theme does not have W3 Total Cache extensions"
4110
- msgstr ""
4111
-
4112
- #: inc/options/minify/ccjs2.php:8
4113
- msgid "Whitespace only"
4114
- msgstr ""
4115
-
4116
- #: inc/options/minify/ccjs2.php:9
4117
- msgid "Simple optimizations"
4118
- msgstr ""
4119
-
4120
- #: inc/options/minify/ccjs2.php:10
4121
- msgid "Advanced optimizations"
4122
- msgstr ""
4123
-
4124
- #: inc/options/minify/ccjs2.php:16 inc/options/minify/yuicss2.php:3
4125
- #: inc/options/minify/yuijs2.php:3
4126
- msgid "Path to JAVA executable:"
4127
- msgstr ""
4128
-
4129
- #: inc/options/minify/ccjs2.php:23 inc/options/minify/yuicss2.php:9
4130
- #: inc/options/minify/yuijs2.php:10
4131
- msgid "Path to JAR file:"
4132
- msgstr ""
4133
-
4134
- #: inc/options/minify/ccjs2.php:32
4135
- msgid "Test Closure Compiler"
4136
- msgstr "اختبار إغلاق المحول البرمجي"
4137
-
4138
- #: inc/options/minify/ccjs2.php:37
4139
- msgid "Compilation level:"
4140
- msgstr "مستوى التجميع:"
4141
-
4142
- #: inc/options/minify/css.php:2 inc/options/minify/js.php:2
4143
- msgid "Preserved comment removal (not applied when combine only is active)"
4144
- msgstr ""
4145
-
4146
- #: inc/options/minify/css.php:3
4147
- msgid "Line break removal (not applied when combine only is active)"
4148
- msgstr ""
4149
-
4150
- #: inc/options/minify/csstidy.php:15
4151
- msgid "Remove unnecessary backslashes"
4152
- msgstr ""
4153
-
4154
- #: inc/options/minify/csstidy.php:16
4155
- msgid "Compress colors"
4156
- msgstr "ضغط الألوان"
4157
-
4158
- #: inc/options/minify/csstidy.php:17
4159
- msgid "Compress font-weight"
4160
- msgstr ""
4161
-
4162
- #: inc/options/minify/csstidy.php:18
4163
- msgid "Lowercase selectors"
4164
- msgstr "محددات الأحرف الصغيرة"
4165
-
4166
- #: inc/options/minify/csstidy.php:19
4167
- msgid "Remove last ;"
4168
- msgstr ""
4169
-
4170
- #: inc/options/minify/csstidy.php:20
4171
- msgid "Sort Properties"
4172
- msgstr "فرز الخصائص"
4173
-
4174
- #: inc/options/minify/csstidy.php:21
4175
- msgid "Sort Selectors (caution)"
4176
- msgstr ""
4177
-
4178
- #: inc/options/minify/csstidy.php:22
4179
- msgid "Discard invalid properties"
4180
- msgstr "تجاهل الخصائص الغير صالحة"
4181
-
4182
- #: inc/options/minify/csstidy.php:29
4183
- msgid "Preserve CSS"
4184
- msgstr "المحافظة CSS"
4185
-
4186
- #: inc/options/minify/csstidy.php:30
4187
- msgid "Add timestamp"
4188
- msgstr "إضافة الطابع الزمني"
4189
-
4190
- #: inc/options/minify/csstidy2.php:8
4191
- msgid "Highest (no readability, smallest size)"
4192
- msgstr ""
4193
-
4194
- #: inc/options/minify/csstidy2.php:9
4195
- msgid "High (moderate readability, smaller size)"
4196
- msgstr "عالية (قراءة معتدلة، حجم أصغر)"
4197
-
4198
- #: inc/options/minify/csstidy2.php:10
4199
- msgid "Standard (balance between readability and size)"
4200
- msgstr "القياسية (التوازن بين سهولة القراءة والحجم)"
4201
-
4202
- #: inc/options/minify/csstidy2.php:11
4203
- msgid "Low (higher readability)"
4204
- msgstr "منخفضة (أعلى قراءة)"
4205
-
4206
- #: inc/options/minify/csstidy2.php:15
4207
- msgid "Don't optimise"
4208
- msgstr ""
4209
-
4210
- #: inc/options/minify/csstidy2.php:16
4211
- msgid "Safe optimisations"
4212
- msgstr ""
4213
-
4214
- #: inc/options/minify/csstidy2.php:17
4215
- msgid "All optimisations"
4216
- msgstr ""
4217
-
4218
- #: inc/options/minify/csstidy2.php:21
4219
- msgid "None"
4220
- msgstr "بلا"
4221
-
4222
- #: inc/options/minify/csstidy2.php:22
4223
- msgid "Lowercase"
4224
- msgstr "أحرف صغيرة"
4225
-
4226
- #: inc/options/minify/csstidy2.php:23
4227
- msgid "Uppercase"
4228
- msgstr "حروف كبيرة"
4229
-
4230
- #: inc/options/minify/csstidy2.php:27
4231
- msgid "Do not change anything"
4232
- msgstr ""
4233
-
4234
- #: inc/options/minify/csstidy2.php:28
4235
- msgid "Only seperate selectors (split at ,)"
4236
- msgstr ""
4237
-
4238
- #: inc/options/minify/csstidy2.php:29
4239
- msgid "Merge selectors with the same properties (fast)"
4240
- msgstr "دمج المحددات مع نفس الخصائص (سريع)"
4241
-
4242
- #: inc/options/minify/csstidy2.php:38
4243
- msgid "Compression:"
4244
- msgstr "الضغط:"
4245
-
4246
- #: inc/options/minify/csstidy2.php:49
4247
- msgid "Optimize shorthands:"
4248
- msgstr ""
4249
-
4250
- #: inc/options/minify/csstidy2.php:60
4251
- msgid "Case for properties:"
4252
- msgstr ""
4253
-
4254
- #: inc/options/minify/csstidy2.php:71
4255
- msgid "Regroup selectors:"
4256
- msgstr "إعادة تجميع المحددات:"
4257
-
4258
- #: inc/options/minify/html.php:2
4259
- msgid "Line break removal"
4260
- msgstr ""
4261
-
4262
- #: inc/options/minify/htmltidy.php:2
4263
- msgid "Clean"
4264
- msgstr "تنظيف"
4265
-
4266
- #: inc/options/minify/htmltidy.php:3
4267
- msgid "Hide comments"
4268
- msgstr "إخفاء التعليقات"
4269
-
4270
- #: inc/options/minify/htmltidy2.php:3
4271
- msgid "Wrap after:"
4272
- msgstr ""
4273
-
4274
- #: inc/options/minify/js.php:3
4275
- msgid "Line break removal (not safe, not applied when combine only is active)"
4276
- msgstr ""
4277
-
4278
- #: inc/options/minify/yuicss2.php:17 inc/options/minify/yuijs2.php:19
4279
- msgid "Test YUI Compressor"
4280
- msgstr ""
4281
-
4282
- #: inc/options/minify/yuicss2.php:22 inc/options/minify/yuijs2.php:24
4283
- msgid "Line break after:"
4284
- msgstr ""
4285
-
4286
- #: inc/options/minify/yuijs.php:2
4287
- msgid "Minify only, do not obfuscate local symbols"
4288
- msgstr ""
4289
-
4290
- #: inc/options/minify/yuijs.php:3
4291
- msgid "Preserve unnecessary semicolons"
4292
- msgstr ""
4293
-
4294
- #: inc/options/minify/yuijs.php:4
4295
- msgid "Disable all the built-in micro optimizations"
4296
- msgstr ""
4297
-
4298
- #: inc/options/minify/yuijs2.php:28
4299
- msgid "symbols (set to 0 to disable)"
4300
- msgstr "الرموز (ضع 0 للتعطيل)"
4301
-
4302
- # php-format
4303
- #: inc/options/pro/fragmentcache.php:6
4304
- #, php-format
4305
- msgid "Fragment caching via %s is currently %s."
4306
- msgstr ""
4307
-
4308
- #: inc/options/pro/fragmentcache.php:10
4309
- msgid "Empty the entire cache"
4310
- msgstr "إفراغ ذاكرة التخزين المؤقت بالكامل"
4311
-
4312
- #: inc/options/pro/fragmentcache.php:11
4313
- msgid "if needed."
4314
- msgstr "إذا لزم الأمر."
4315
-
4316
- #: inc/options/pro/fragmentcache.php:17 inc/widget/new_relic.php:11
4317
- msgid "Overview"
4318
- msgstr "استعراض"
4319
-
4320
- #: inc/options/pro/fragmentcache.php:20
4321
- msgid "Registered fragment groups:"
4322
- msgstr ""
4323
-
4324
- #: inc/options/pro/fragmentcache.php:27
4325
- msgid "Groups that will be flushed on actions."
4326
- msgstr ""
4327
-
4328
- #: inc/options/pro/fragmentcache.php:32
4329
- msgid "Registered site wide fragment groups:"
4330
- msgstr ""
4331
-
4332
- #: inc/options/pro/fragmentcache.php:39
4333
- msgid "Site wide groups that will be flushed on actions."
4334
- msgstr ""
4335
-
4336
- #: inc/options/pro/fragmentcache.php:61
4337
- msgid "Default lifetime of cached fragments:"
4338
- msgstr ""
4339
-
4340
- #: inc/options/pro/fragmentcache.php:75
4341
- msgid "Manual fragment groups:"
4342
- msgstr ""
4343
-
4344
- #: inc/options/pro/fragmentcache.php:80
4345
- msgid ""
4346
- "Specify fragment groups that should be handled. One per line Actions to be "
4347
- "performed is entered on same line comma delimited. (group, action1, "
4348
- "action2). The prefix used for a transient in theme or plugin."
4349
- msgstr ""
4350
-
4351
- #: inc/options/support/form.php:11
4352
- msgid ""
4353
- "All submitted data will not be saved and is used solely for the purposes "
4354
- "your support request. You will not be added to a mailing list, solicited "
4355
- "without your permission, nor will your site be administered after this "
4356
- "support case is closed."
4357
- msgstr ""
4358
-
4359
- #: inc/options/support/form.php:12
4360
- msgid ""
4361
- "Instead of providing your primary administrative or <acronym title=\"Secure "
4362
- "Shell\">SSH</acronym> / <acronym title=\"File Transfer Protocol\">FTP</"
4363
- "acronym> accounts, create a new administrator account that can be disabled "
4364
- "when the support case is closed."
4365
- msgstr ""
4366
-
4367
- #: inc/options/support/form.php:13
4368
- msgid ""
4369
- "Please add the domain w3-edge.com to your <a href=\"http://en.wikipedia.org/"
4370
- "wiki/Whitelist\" target=\"_blank\">email whitelist</a> as soon as possible."
4371
- msgstr ""
4372
-
4373
- #: inc/options/support/form.php:25
4374
- msgid "Submit request"
4375
- msgstr "إرسال الطلب"
4376
-
4377
- #: inc/options/support/payment.php:4
4378
- msgid "Make Payment"
4379
- msgstr "إجراء الدفع"
4380
-
4381
- #: inc/options/support/payment.php:8
4382
- #, php-format
4383
- msgid "Price: %.2f USD"
4384
- msgstr ""
4385
-
4386
- #: inc/options/support/payment.php:20 inc/widget/services.php:10
4387
- msgid "Buy now"
4388
- msgstr "الشراء الآن"
4389
-
4390
- #: inc/options/support/select.php:3
4391
- msgid "Choose Request Type"
4392
- msgstr "اختر نوع الطلب"
4393
-
4394
- #: inc/options/support/select.php:6 inc/options/support/form/bug_report.php:5
4395
- #: inc/options/support/form/email_support.php:5
4396
- #: inc/options/support/form/linux_config.php:5
4397
- #: inc/options/support/form/new_feature.php:5
4398
- #: inc/options/support/form/phone_support.php:5
4399
- #: inc/options/support/form/plugin_config.php:5
4400
- #: inc/options/support/form/theme_config.php:5
4401
- msgid "Request type:"
4402
- msgstr "نوع الطلب:"
4403
-
4404
- #: inc/options/support/select.php:9
4405
- msgid "-- Choose Type --"
4406
- msgstr "- اختر النوع -"
4407
-
4408
- #: inc/options/support/form/bug_report.php:2
4409
- msgid "Required Information"
4410
- msgstr "بيانات إلزامية"
4411
-
4412
- #: inc/options/support/form/bug_report.php:9
4413
- #: inc/options/support/form/email_support.php:9
4414
- #: inc/options/support/form/linux_config.php:9
4415
- #: inc/options/support/form/new_feature.php:9
4416
- #: inc/options/support/form/phone_support.php:9
4417
- #: inc/options/support/form/plugin_config.php:9
4418
- #: inc/options/support/form/theme_config.php:9
4419
- msgid "Blog <acronym title=\"Uniform Resource Locator\">URL</acronym>:"
4420
- msgstr ""
4421
-
4422
- #: inc/options/support/form/bug_report.php:17
4423
- #: inc/options/support/form/email_support.php:17
4424
- #: inc/options/support/form/linux_config.php:17
4425
- #: inc/options/support/form/new_feature.php:17
4426
- #: inc/options/support/form/phone_support.php:17
4427
- #: inc/options/support/form/plugin_config.php:17
4428
- #: inc/options/support/form/theme_config.php:17
4429
- msgid "E-Mail:"
4430
- msgstr "البريد الإلكتروني:"
4431
-
4432
- #: inc/options/support/form/bug_report.php:21
4433
- #: inc/options/support/form/email_support.php:21
4434
- #: inc/options/support/form/linux_config.php:21
4435
- #: inc/options/support/form/new_feature.php:21
4436
- #: inc/options/support/form/phone_support.php:21
4437
- #: inc/options/support/form/plugin_config.php:21
4438
- #: inc/options/support/form/theme_config.php:21
4439
- msgid "Twitter ID:"
4440
- msgstr "Twitter ID:"
4441
-
4442
- #: inc/options/support/form/bug_report.php:25
4443
- #: inc/options/support/form/email_support.php:25
4444
- #: inc/options/support/form/linux_config.php:25
4445
- #: inc/options/support/form/new_feature.php:25
4446
- #: inc/options/support/form/phone_support.php:29
4447
- #: inc/options/support/form/plugin_config.php:25
4448
- #: inc/options/support/form/theme_config.php:25
4449
- msgid "Subject:"
4450
- msgstr "الموضوع:"
4451
-
4452
- #: inc/options/support/form/bug_report.php:29
4453
- #: inc/options/support/form/email_support.php:29
4454
- #: inc/options/support/form/linux_config.php:29
4455
- #: inc/options/support/form/new_feature.php:29
4456
- #: inc/options/support/form/phone_support.php:33
4457
- #: inc/options/support/form/plugin_config.php:29
4458
- #: inc/options/support/form/theme_config.php:29
4459
- msgid "Issue description:"
4460
- msgstr "وصف المشكلة:"
4461
-
4462
- #: inc/options/support/form/bug_report.php:33
4463
- #: inc/options/support/form/email_support.php:33
4464
- #: inc/options/support/form/phone_support.php:37
4465
- #: inc/options/support/form/plugin_config.php:33
4466
- #: inc/options/support/form/theme_config.php:33
4467
- msgid "Attach template:"
4468
- msgstr "إرفاق قالب:"
4469
-
4470
- #: inc/options/support/form/bug_report.php:41
4471
- #: inc/options/support/form/email_support.php:41
4472
- #: inc/options/support/form/linux_config.php:33
4473
- #: inc/options/support/form/phone_support.php:45
4474
- #: inc/options/support/form/plugin_config.php:41
4475
- #: inc/options/support/form/theme_config.php:41
4476
- msgid "Attach file:"
4477
- msgstr "إرفاق الملف:"
4478
-
4479
- #: inc/options/support/form/bug_report.php:44
4480
- #: inc/options/support/form/email_support.php:44
4481
- #: inc/options/support/form/linux_config.php:36
4482
- #: inc/options/support/form/phone_support.php:48
4483
- #: inc/options/support/form/plugin_config.php:44
4484
- #: inc/options/support/form/theme_config.php:44
4485
- msgid "Attach more files"
4486
- msgstr "إرفاق ملفات أخرى"
4487
-
4488
- #: inc/options/support/form/bug_report.php:50
4489
- #: inc/options/support/form/email_support.php:50
4490
- #: inc/options/support/form/linux_config.php:62
4491
- #: inc/options/support/form/new_feature.php:35
4492
- #: inc/options/support/form/phone_support.php:54
4493
- #: inc/options/support/form/plugin_config.php:58
4494
- #: inc/options/support/form/theme_config.php:70
4495
- msgid "Additional Information"
4496
- msgstr "معلومات إضافية"
4497
-
4498
- #: inc/options/support/form/bug_report.php:53
4499
- #: inc/options/support/form/email_support.php:53
4500
- #: inc/options/support/form/linux_config.php:65
4501
- #: inc/options/support/form/new_feature.php:38
4502
- #: inc/options/support/form/phone_support.php:25
4503
- #: inc/options/support/form/plugin_config.php:61
4504
- #: inc/options/support/form/theme_config.php:73
4505
- msgid "Phone:"
4506
- msgstr "الهاتف:"
4507
-
4508
- #: inc/options/support/form/bug_report.php:57
4509
- #: inc/options/support/form/email_support.php:57
4510
- #: inc/options/support/form/new_feature.php:42
4511
- #: inc/options/support/form/phone_support.php:57
4512
- msgid "Forum Topic URL:"
4513
- msgstr ""
4514
-
4515
- #: inc/options/support/form/bug_report.php:61
4516
- msgid "<acronym title=\"WordPress\">WP</acronym> Admin login:</label>"
4517
- msgstr ""
4518
-
4519
- #: inc/options/support/form/bug_report.php:65
4520
- msgid "<acronym title=\"WordPress\">WP</acronym> Admin password:</label>"
4521
- msgstr ""
4522
-
4523
- #: inc/options/support/form/bug_report.php:69
4524
- #: inc/options/support/form/email_support.php:69
4525
- #: inc/options/support/form/linux_config.php:48
4526
- #: inc/options/support/form/phone_support.php:69
4527
- #: inc/options/support/form/plugin_config.php:65
4528
- #: inc/options/support/form/theme_config.php:56
4529
- msgid ""
4530
- "<acronym title=\"Secure Shell\">SSH</acronym> / <acronym title=\"File "
4531
- "Transfer Protocol\">FTP</acronym> host:"
4532
- msgstr ""
4533
-
4534
- #: inc/options/support/form/bug_report.php:73
4535
- #: inc/options/support/form/email_support.php:73
4536
- #: inc/options/support/form/linux_config.php:52
4537
- #: inc/options/support/form/phone_support.php:73
4538
- #: inc/options/support/form/plugin_config.php:69
4539
- #: inc/options/support/form/theme_config.php:60
4540
- msgid ""
4541
- "<acronym title=\"Secure Shell\">SSH</acronym> / <acronym title=\"File "
4542
- "Transfer Protocol\">FTP</acronym> login:"
4543
- msgstr ""
4544
-
4545
- #: inc/options/support/form/bug_report.php:77
4546
- #: inc/options/support/form/email_support.php:77
4547
- #: inc/options/support/form/linux_config.php:56
4548
- #: inc/options/support/form/phone_support.php:77
4549
- #: inc/options/support/form/plugin_config.php:73
4550
- #: inc/options/support/form/theme_config.php:64
4551
- msgid ""
4552
- "<acronym title=\"Secure Shell\">SSH</acronym> / <acronym title=\"File "
4553
- "Transfer Protocol\">FTP</acronym> password:"
4554
- msgstr ""
4555
-
4556
- #: inc/options/support/form/bug_report.php:82
4557
- #: inc/options/support/form/email_support.php:82
4558
- #: inc/options/support/form/linux_config.php:70
4559
- #: inc/options/support/form/new_feature.php:47
4560
- #: inc/options/support/form/phone_support.php:82
4561
- #: inc/options/support/form/plugin_config.php:78
4562
- #: inc/options/support/form/theme_config.php:78
4563
- msgid "Would you like to be notified when products are announced and updated?"
4564
- msgstr "هل ترغب في أن يتم إعلامك عندما يتم الإعلان عن المنتجات وتحديثها؟"
4565
-
4566
- #: inc/options/support/form/bug_report.php:87
4567
- #: inc/options/support/form/email_support.php:87
4568
- #: inc/options/support/form/linux_config.php:75
4569
- #: inc/options/support/form/new_feature.php:52
4570
- #: inc/options/support/form/phone_support.php:87
4571
- #: inc/options/support/form/plugin_config.php:83
4572
- #: inc/options/support/form/theme_config.php:83
4573
- msgid "Yes, please notify me."
4574
- msgstr "نعم، الرجاء إبلاغي."
4575
-
4576
- #: inc/options/support/form/email_support.php:61
4577
- #: inc/options/support/form/linux_config.php:40
4578
- #: inc/options/support/form/phone_support.php:61
4579
- #: inc/options/support/form/plugin_config.php:48
4580
- #: inc/options/support/form/theme_config.php:48
4581
- msgid "<acronym title=\"WordPress\">WP</acronym> Admin login:"
4582
- msgstr ""
4583
-
4584
- #: inc/options/support/form/email_support.php:65
4585
- #: inc/options/support/form/linux_config.php:44
4586
- #: inc/options/support/form/phone_support.php:65
4587
- #: inc/options/support/form/plugin_config.php:52
4588
- #: inc/options/support/form/theme_config.php:52
4589
- msgid "<acronym title=\"WordPress\">WP</acronym> Admin password:"
4590
- msgstr ""
4591
-
4592
- #: inc/popup/cdn_export_file.php:18 inc/popup/cdn_export_library.php:11
4593
- msgid ""
4594
- "This tool will upload files of the selected type to content delivery network "
4595
- "provider."
4596
- msgstr ""
4597
-
4598
- #: inc/popup/cdn_export_file.php:21
4599
- msgid "Total files:"
4600
- msgstr "إجمالي الملفات:"
4601
-
4602
- #: inc/popup/cdn_export_file.php:25 inc/popup/cdn_export_library.php:18
4603
- #: inc/popup/cdn_import_library.php:19 inc/popup/cdn_rename_domain.php:18
4604
- msgid "Processed:"
4605
- msgstr "معالجة:"
4606
-
4607
- #: inc/popup/cdn_export_file.php:29 inc/popup/cdn_export_library.php:22
4608
- #: inc/popup/cdn_import_library.php:23 inc/popup/cdn_rename_domain.php:22
4609
- msgid "Status:"
4610
- msgstr "الحالة:"
4611
-
4612
- #: inc/popup/cdn_export_file.php:33 inc/popup/cdn_export_library.php:26
4613
- #: inc/popup/cdn_import_library.php:27 inc/popup/cdn_rename_domain.php:26
4614
- msgid "Time elapsed:"
4615
- msgstr "الوقت المنقضي:"
4616
-
4617
- #: inc/popup/cdn_export_file.php:37 inc/popup/cdn_export_library.php:30
4618
- #: inc/popup/cdn_import_library.php:31 inc/popup/cdn_rename_domain.php:30
4619
- msgid "Last response:"
4620
- msgstr "آخر استجابة:"
4621
-
4622
- #: inc/popup/cdn_export_file.php:43 inc/popup/cdn_export_library.php:36
4623
- #: inc/popup/cdn_import_library.php:47 inc/popup/cdn_rename_domain.php:43
4624
- msgid "Start"
4625
- msgstr "بدء"
4626
-
4627
- #: inc/popup/cdn_export_library.php:14
4628
- msgid "Total media library attachments:"
4629
- msgstr ""
4630
-
4631
- #: inc/popup/cdn_import_library.php:12
4632
- msgid ""
4633
- "This tool will copy post or page attachments into the Media Library allowing "
4634
- "WordPress to work as intended."
4635
- msgstr ""
4636
-
4637
- #: inc/popup/cdn_import_library.php:15 inc/popup/cdn_rename_domain.php:14
4638
- msgid "Total posts:"
4639
- msgstr "إجمالي المشاركات:"
4640
-
4641
- #: inc/popup/cdn_import_library.php:36
4642
- msgid ""
4643
- "Create a list of permanent (301) redirects for use in your site's .htaccess "
4644
- "file"
4645
- msgstr ""
4646
-
4647
- #: inc/popup/cdn_import_library.php:41
4648
- msgid ""
4649
- "Create a list of redirects to <acronym title=\"Content Delivery Network"
4650
- "\">CDN</acronym> (hostname specified in hostname field #1.)"
4651
- msgstr ""
4652
-
4653
- #: inc/popup/cdn_import_library.php:58
4654
- msgid ""
4655
- "Add the following directives to your .htaccess file or if there are several "
4656
- "hundred they should be added directly to your configuration file:"
4657
- msgstr ""
4658
-
4659
- #: inc/popup/cdn_purge.php:5
4660
- msgid ""
4661
- "Remove objects from the CDN by specifying the relative path on individual "
4662
- "lines below and clicking the \"Purge\" button when done. For example:"
4663
- msgstr ""
4664
-
4665
- #: inc/popup/cdn_purge.php:11
4666
- msgid "the directory itself (only when accessed directly without any file)."
4667
- msgstr ""
4668
-
4669
- #: inc/popup/cdn_purge.php:12
4670
- msgid ""
4671
- "all files in the directory with no extension, with all parameter variations."
4672
- msgstr ""
4673
-
4674
- #: inc/popup/cdn_purge.php:13
4675
- msgid "all files in the directory whose extension is \"jpg\"."
4676
- msgstr ""
4677
-
4678
- #: inc/popup/cdn_purge.php:14
4679
- msgid ""
4680
- "the specific file (when the file does not have an extension), and without "
4681
- "parameters."
4682
- msgstr ""
4683
-
4684
- #: inc/popup/cdn_purge.php:15
4685
- msgid "the specific file with its extension, and without parameters."
4686
- msgstr ""
4687
-
4688
- #: inc/popup/cdn_purge.php:16
4689
- msgid "the specific file with its extension, with all variation of parameters."
4690
- msgstr ""
4691
-
4692
- #: inc/popup/cdn_purge.php:17
4693
- msgid "the specific file with its extension, with the specific parameters."
4694
- msgstr ""
4695
-
4696
- #: inc/popup/cdn_purge.php:29
4697
- msgid "Files to purge:"
4698
- msgstr ""
4699
-
4700
- #: inc/popup/cdn_queue.php:4
4701
- msgid "This tool lists the pending file uploads and deletions."
4702
- msgstr ""
4703
-
4704
- #: inc/popup/cdn_queue.php:6
4705
- msgid "Upload queue"
4706
- msgstr "تحميل قائمة انتظار"
4707
-
4708
- #: inc/popup/cdn_queue.php:7
4709
- msgid "Delete queue"
4710
- msgstr "حذف قائمة الانتظار"
4711
-
4712
- #: inc/popup/cdn_queue.php:8
4713
- msgid "Purge queue"
4714
- msgstr ""
4715
-
4716
- #: inc/popup/cdn_queue.php:15 inc/popup/cdn_queue.php:48
4717
- #: inc/popup/cdn_queue.php:78
4718
- msgid "Local Path"
4719
- msgstr ""
4720
-
4721
- #: inc/popup/cdn_queue.php:16 inc/popup/cdn_queue.php:49
4722
- #: inc/popup/cdn_queue.php:79
4723
- msgid "Remote Path"
4724
- msgstr ""
4725
-
4726
- #: inc/popup/cdn_queue.php:17 inc/popup/cdn_queue.php:50
4727
- #: inc/popup/cdn_queue.php:80
4728
- msgid "Last Error"
4729
- msgstr "الخطأ الأخير"
4730
-
4731
- #: inc/popup/cdn_queue.php:18 inc/popup/cdn_queue.php:51
4732
- #: inc/popup/cdn_queue.php:81
4733
- msgid "Date"
4734
- msgstr "التاريخ"
4735
-
4736
- #: inc/popup/cdn_queue.php:34
4737
- msgid "Empty upload queue"
4738
- msgstr ""
4739
-
4740
- #: inc/popup/cdn_queue.php:37
4741
- msgid "Process CDN queue now"
4742
- msgstr ""
4743
-
4744
- #: inc/popup/cdn_queue.php:40
4745
- msgid "Upload queue is empty"
4746
- msgstr ""
4747
-
4748
- #: inc/popup/cdn_queue.php:67
4749
- msgid "Empty delete queue"
4750
- msgstr ""
4751
-
4752
- #: inc/popup/cdn_queue.php:70
4753
- msgid "Delete queue is empty"
4754
- msgstr ""
4755
-
4756
- #: inc/popup/cdn_queue.php:97
4757
- msgid "Empty purge queue"
4758
- msgstr ""
4759
-
4760
- #: inc/popup/cdn_queue.php:100
4761
- msgid "Purge queue is empty"
4762
- msgstr ""
4763
-
4764
- #: inc/popup/cdn_rename_domain.php:11
4765
- msgid ""
4766
- "This tool allows you to modify the URL of Media Library attachments. Use it "
4767
- "if the \"WordPress address (<acronym title=\"Uniform Resource Indicator"
4768
- "\">URL</acronym>)\" value has been changed in the past."
4769
- msgstr ""
4770
-
4771
- #: inc/popup/cdn_rename_domain.php:34
4772
- msgid "Domains to rename:"
4773
- msgstr ""
4774
-
4775
- #: inc/popup/cdn_rename_domain.php:37
4776
- msgid "e.g.: domain.com"
4777
- msgstr "على سبيل المثال: domain.com"
4778
-
4779
- #: inc/popup/pagespeed_results.php:5
4780
- msgid "Page Speed Score:"
4781
- msgstr "نتيجة سرعة الصفحة"
4782
-
4783
- #: inc/popup/pagespeed_results.php:9
4784
- msgid "Expand all"
4785
- msgstr "إظهار الكل"
4786
-
4787
- #: inc/popup/pagespeed_results.php:10
4788
- msgid "Collapse all"
4789
- msgstr "طي الكل"
4790
-
4791
- #: inc/popup/pagespeed_results.php:11
4792
- msgid "Refresh analysis"
4793
- msgstr "تحديث التحليل"
4794
-
4795
- #: inc/popup/pagespeed_results.php:42
4796
- msgid "Resolution:"
4797
- msgstr "القرار:"
4798
-
4799
- #: inc/popup/pagespeed_results.php:50
4800
- msgid "Unable to fetch Page Speed results."
4801
- msgstr "غير قادر على جلب نتائج سرعة الصفحة."
4802
-
4803
- #: inc/popup/pagespeed_results.php:52
4804
- msgid "Refresh Analysis"
4805
- msgstr "تحديث التحليل"
4806
-
4807
- #: inc/widget/latest.php:3 inc/widget/latest_news.php:3
4808
- msgid "Loading&#8230;"
4809
- msgstr ""
4810
-
4811
- #: inc/widget/latest.php:6 inc/widget/latest_news.php:6
4812
- msgid "This widget requires JavaScript."
4813
- msgstr ""
4814
-
4815
- #: inc/widget/maxcdn.php:16 inc/widget/netdna.php:16
4816
- #, php-format
4817
- msgid "Status: %s"
4818
- msgstr "الحالة: %s"
4819
-
4820
- #: inc/widget/maxcdn.php:17 inc/widget/netdna.php:17
4821
- #, php-format
4822
- msgid "Content Zone: %s"
4823
- msgstr ""
4824
-
4825
- #: inc/widget/maxcdn.php:23 inc/widget/netdna.php:23
4826
- msgid "Manage"
4827
- msgstr "الإدارة"
4828
-
4829
- #: inc/widget/maxcdn.php:24 inc/widget/netdna.php:24
4830
- msgid "Reports"
4831
- msgstr "التقارير"
4832
-
4833
- #: inc/widget/maxcdn.php:29 inc/widget/netdna.php:29
4834
- msgid "Reports - 30 days"
4835
- msgstr "تقارير - 30 يوم"
4836
-
4837
- #: inc/widget/maxcdn.php:31 inc/widget/netdna.php:31
4838
- #, php-format
4839
- msgid "<span>Transferred:</span> %s"
4840
- msgstr ""
4841
-
4842
- #: inc/widget/maxcdn.php:32 inc/widget/netdna.php:32
4843
- #, php-format
4844
- msgid "<span>Cache Hits:</span> %d (%d%%)"
4845
- msgstr ""
4846
-
4847
- #: inc/widget/maxcdn.php:34 inc/widget/netdna.php:34
4848
- #, php-format
4849
- msgid "<span>Cache Misses (non-cache hits):</span> %d (%d%%)"
4850
- msgstr ""
4851
-
4852
- #: inc/widget/maxcdn.php:39 inc/widget/netdna.php:39
4853
- msgid "Requests"
4854
- msgstr "الطلبات"
4855
-
4856
- #: inc/widget/maxcdn.php:41 inc/widget/netdna.php:41
4857
- msgid "Content Breakdown"
4858
- msgstr ""
4859
-
4860
- #: inc/widget/maxcdn.php:43 inc/widget/netdna.php:43
4861
- msgid "File"
4862
- msgstr "ملف"
4863
-
4864
- #: inc/widget/maxcdn.php:44 inc/widget/netdna.php:44
4865
- msgid "Hits"
4866
- msgstr ""
4867
-
4868
- #: inc/widget/maxcdn_signup.php:4
4869
- #, php-format
4870
- msgid ""
4871
- "MaxCDN encountered an error trying to retrieve data, make sure your host "
4872
- "support cURL and outgoing requests: %s"
4873
- msgstr ""
4874
-
4875
- #: inc/widget/maxcdn_signup.php:7
4876
- msgid "New customers"
4877
- msgstr "عملاء جدد"
4878
-
4879
- #: inc/widget/maxcdn_signup.php:8
4880
- msgid ""
4881
- "MaxCDN is a service that lets you speed up your site even more with W3 Total "
4882
- "Cache."
4883
- msgstr ""
4884
-
4885
- #: inc/widget/maxcdn_signup.php:9
4886
- msgid "Sign up"
4887
- msgstr "الاشتراك"
4888
-
4889
- #: inc/widget/maxcdn_signup.php:10
4890
- msgid "30 day money back guarantee"
4891
- msgstr "ضمان لمدة 30 يوما لاستعادة الاموال"
4892
-
4893
- #: inc/widget/maxcdn_signup.php:11 inc/widget/maxcdn_signup.php:24
4894
- #: inc/widget/netdna_signup.php:12
4895
- msgid "Current customers"
4896
- msgstr "العملاء الحاليين"
4897
-
4898
- #: inc/widget/maxcdn_signup.php:12
4899
- msgid ""
4900
- "Once you've signed up or if you're an existing MaxCDN customer, to enable "
4901
- "CDN:"
4902
- msgstr ""
4903
-
4904
- #: inc/widget/maxcdn_signup.php:20 inc/widget/netdna_signup.php:24
4905
- msgid "Save key"
4906
- msgstr "حفظ المفتاح"
4907
-
4908
- #: inc/widget/netdna_signup.php:10
4909
- #, php-format
4910
- msgid ""
4911
- "NetDNA encountered an error trying to retrieve data, make sure your host "
4912
- "support cURL and outgoing requests: %s"
4913
- msgstr ""
4914
-
4915
- #: inc/widget/netdna_signup.php:13
4916
- msgid ""
4917
- "Once you've signed up or if you're an existing NetDNA customer, to enable "
4918
- "CDN:"
4919
- msgstr ""
4920
-
4921
- #: inc/widget/new_relic.php:4
4922
- msgid "You have not configured API key and Account Id."
4923
- msgstr ""
4924
-
4925
- #: inc/widget/new_relic.php:20
4926
- msgid "Average times"
4927
- msgstr ""
4928
-
4929
- #: inc/widget/new_relic.php:29
4930
- msgid "Top 5 slowest times"
4931
- msgstr "أعلى 5 مرات أبطأ"
4932
-
4933
- #: inc/widget/new_relic.php:31
4934
- msgid "Page load times"
4935
- msgstr ""
4936
-
4937
- #: inc/widget/new_relic.php:41 inc/widget/new_relic.php:60
4938
- #: inc/widget/new_relic.php:78
4939
- msgid "Not enough data"
4940
- msgstr "البيانات غير كافية"
4941
-
4942
- #: inc/widget/new_relic.php:43 inc/widget/new_relic.php:62
4943
- #: inc/widget/new_relic.php:80
4944
- msgid "Data not available to this subscription level."
4945
- msgstr ""
4946
-
4947
- #: inc/widget/new_relic.php:49
4948
- msgid "Web Transaction times"
4949
- msgstr ""
4950
-
4951
- #: inc/widget/new_relic.php:68
4952
- msgid "Database times"
4953
- msgstr ""
4954
-
4955
- #: inc/widget/new_relic.php:89
4956
- msgid "PHP agent:"
4957
- msgstr ""
4958
-
4959
- #: inc/widget/new_relic.php:90
4960
- msgid "Subscription level:"
4961
- msgstr ""
4962
-
4963
- #: inc/widget/new_relic.php:92
4964
- msgid "Upgrade your New Relic account to enable more metrics."
4965
- msgstr ""
4966
-
4967
- #: inc/widget/spreadtheword.php:1
4968
- msgid "We're working to make WordPress better. Please support us, here's how:"
4969
- msgstr "نحن نعمل على جعل ووردبريس أفضل. من فضلك ادعمنا، وإليك الطريقة:"
4970
-
4971
- #: inc/widget/spreadtheword.php:4
4972
- msgid "Rate:"
4973
- msgstr "التقييم:"
4974
-
4975
- #: inc/widget/spreadtheword.php:5
4976
- msgid "Link:"
4977
- msgstr "الرابط:"
4978
-
4979
- #: inc/widget/spreadtheword.php:15
4980
- msgid "Or manually place a link, here is the code:"
4981
- msgstr ""
4982
-
4983
- #: inc/widget/spreadtheword.php:16
4984
- #, php-format
4985
- msgid "Performance Optimization %s by W3 EDGE"
4986
- msgstr ""
4987
-
4988
- #: lib/NetDNA/NetDNAPresentation.php:63
4989
- msgid "Pending"
4990
- msgstr "\tفي الإنتظار"
4991
-
4992
- #: lib/NetDNA/NetDNAPresentation.php:65
4993
- msgid "Active"
4994
- msgstr "نشط"
4995
-
4996
- #: lib/NetDNA/NetDNAPresentation.php:67
4997
- msgid "Cancelled"
4998
- msgstr "ملغي"
4999
-
5000
- #: lib/NetDNA/NetDNAPresentation.php:69
5001
- msgid "Suspended"
5002
- msgstr "معلق"
5003
-
5004
- #: lib/NetDNA/NetDNAPresentation.php:71
5005
- msgid "Fraud"
5006
- msgstr ""
5007
-
5008
- #: lib/NetDNA/NetDNAPresentation.php:73 lib/W3/Widget/NewRelic.php:88
5009
- msgid "unknown"
5010
- msgstr "غير معروف"
5011
-
5012
- #: lib/NewRelic/NewRelicAPI.php:41
5013
- msgid "Invalid API key or Account ID"
5014
- msgstr ""
5015
-
5016
- #: lib/NewRelic/NewRelicPresentation.php:14
5017
- msgid "Page load time"
5018
- msgstr "وقت تحميل الصفحة"
5019
-
5020
- #: lib/NewRelic/NewRelicPresentation.php:17
5021
- msgid "Web Transaction"
5022
- msgstr ""
5023
-
5024
- #: lib/NewRelic/NewRelicPresentation.php:20
5025
- msgid "Database"
5026
- msgstr "قاعدة البيانات"
5027
-
5028
- #: lib/W3/AdminCompatibility.php:89
5029
- msgid ""
5030
- "The following plugins are not compatible with W3 Total Cache and will cause "
5031
- "unintended results:"
5032
- msgstr ""
5033
-
5034
- #: lib/W3/AdminCompatibility.php:95
5035
- msgid "Network Deactivate"
5036
- msgstr ""
5037
-
5038
- #: lib/W3/AdminCompatibility.php:97
5039
- msgid "Deactivate"
5040
- msgstr "تعطيل"
5041
-
5042
- #: lib/W3/Cli.php:32
5043
- msgid "Flushing the DB cache failed."
5044
- msgstr ""
5045
-
5046
- #: lib/W3/Cli.php:34
5047
- msgid "The DB cache is flushed successfully."
5048
- msgstr ""
5049
-
5050
- #: lib/W3/Cli.php:43
5051
- msgid "Flushing the minify cache failed."
5052
- msgstr ""
5053
-
5054
- #: lib/W3/Cli.php:45
5055
- msgid "The minify cache is flushed successfully."
5056
- msgstr ""
5057
-
5058
- #: lib/W3/Cli.php:54
5059
- msgid "Flushing the object cache failed."
5060
- msgstr ""
5061
-
5062
- #: lib/W3/Cli.php:56
5063
- msgid "The object cache is flushed successfully."
5064
- msgstr ""
5065
-
5066
- #: lib/W3/Cli.php:69 lib/W3/Cli.php:88
5067
- msgid "Flushing the page from cache failed."
5068
- msgstr ""
5069
-
5070
- #: lib/W3/Cli.php:71 lib/W3/Cli.php:90
5071
- msgid "The page is flushed from cache successfully."
5072
- msgstr ""
5073
-
5074
- #: lib/W3/Cli.php:73
5075
- msgid "This is not a valid post id."
5076
- msgstr ""
5077
-
5078
- #: lib/W3/Cli.php:92
5079
- msgid "There is no post with this permalink."
5080
- msgstr ""
5081
-
5082
- #: lib/W3/Cli.php:105
5083
- msgid "Flushing the page cache failed."
5084
- msgstr ""
5085
-
5086
- #: lib/W3/Cli.php:107
5087
- msgid "The page cache is flushed successfully."
5088
- msgstr ""
5089
-
5090
- #: lib/W3/Cli.php:124
5091
- #, php-format
5092
- msgid "updating the query string failed. with error %s"
5093
- msgstr ""
5094
-
5095
- #: lib/W3/Cli.php:127
5096
- msgid "The query string was updated successfully."
5097
- msgstr ""
5098
-
5099
- #: lib/W3/Cli.php:149
5100
- #, php-format
5101
- msgid "Files did not successfully purge with error %s"
5102
- msgstr ""
5103
-
5104
- #: lib/W3/Cli.php:151
5105
- msgid "Files purged successfully."
5106
- msgstr ""
5107
-
5108
- #: lib/W3/Cli.php:163
5109
- msgid " is not supported. Change to SNS or local to reload APC files"
5110
- msgstr ""
5111
-
5112
- #: lib/W3/Cli.php:180 lib/W3/Cli.php:187
5113
- #, php-format
5114
- msgid "Files did not successfully reload with error %s"
5115
- msgstr ""
5116
-
5117
- #: lib/W3/Cli.php:182
5118
- msgid "Files did not successfully reload with message: "
5119
- msgstr ""
5120
-
5121
- #: lib/W3/Cli.php:189
5122
- msgid "Files reloaded successfully."
5123
- msgstr "تم اعادة تحميل الملفات بنجاح."
5124
-
5125
- #: lib/W3/Cli.php:201
5126
- msgid " is not supported. Change to SNS or local to delete APC files"
5127
- msgstr ""
5128
-
5129
- #: lib/W3/Cli.php:219 lib/W3/Cli.php:226
5130
- #, php-format
5131
- msgid "Files did not successfully delete with error %s"
5132
- msgstr ""
5133
-
5134
- #: lib/W3/Cli.php:221
5135
- msgid "Files did not successfully delete with message: "
5136
- msgstr "لم تقم بحذف الملفات بنجاح مع الرسالة:"
5137
-
5138
- #: lib/W3/Cli.php:228
5139
- msgid "Files deleted successfully."
5140
- msgstr "تم حذف الملفات بنجاح"
5141
-
5142
- #: lib/W3/Cli.php:241
5143
- #, php-format
5144
- msgid "PageCache Garbage cleanup did not start with error %s"
5145
- msgstr ""
5146
-
5147
- #: lib/W3/Cli.php:243
5148
- msgid "PageCache Garbage cleanup triggered successfully."
5149
- msgstr ""
5150
-
5151
- #: lib/W3/DbCache.php:611
5152
- #, fuzzy
5153
- msgid "Request-wide"
5154
- msgstr "الطلبات"
5155
-
5156
- #: lib/W3/DbCache.php:624
5157
- msgid "Database caching is disabled"
5158
- msgstr "تم تعطيل التخزين المؤقت لقاعدة البيانات"
5159
-
5160
- #: lib/W3/DbCache.php:626
5161
- msgid "DONOTCACHEDB constant is defined"
5162
- msgstr ""
5163
-
5164
- #: lib/W3/DbCache.php:628
5165
- msgid "Doing AJAX"
5166
- msgstr ""
5167
-
5168
- #: lib/W3/DbCache.php:630
5169
- msgid "Request URI is rejected"
5170
- msgstr ""
5171
-
5172
- #: lib/W3/DbCache.php:632
5173
- msgid "Cookie is rejected"
5174
- msgstr "تم رفض ملفات تعريف الارتباط"
5175
-
5176
- #: lib/W3/DbCache.php:634
5177
- msgid "Doing cron"
5178
- msgstr ""
5179
-
5180
- #: lib/W3/DbCache.php:636
5181
- msgid "Application request"
5182
- msgstr ""
5183
-
5184
- #: lib/W3/DbCache.php:638
5185
- msgid "XMLRPC request"
5186
- msgstr "طلب XMLRPC"
5187
-
5188
- #: lib/W3/DbCache.php:640
5189
- msgid "wp-admin"
5190
- msgstr "wp-admin"
5191
-
5192
- #: lib/W3/DbCache.php:642
5193
- msgid "Short init"
5194
- msgstr ""
5195
-
5196
- #: lib/W3/DbCache.php:644
5197
- msgid "Query is rejected"
5198
- msgstr "تم رفض الاستعلام"
5199
-
5200
- #: lib/W3/DbCache.php:646
5201
- msgid "User is logged in"
5202
- msgstr "تم تسجيل المستخدم في"
5203
-
5204
- #: lib/W3/DbCacheAdminEnvironment.php:109
5205
- #, php-format
5206
- msgid ""
5207
- "The Database add-in file db.php is not a W3 Total Cache drop-in.\n"
5208
- " Remove it or disable Database Caching. %s"
5209
- msgstr ""
5210
-
5211
- #: lib/W3/DbCacheAdminEnvironment.php:111
5212
- msgid "Remove it for me"
5213
- msgstr ""
5214
-
5215
- #: lib/W3/GeneralActions.php:31 lib/W3/GeneralActions.php:47
5216
- #: lib/W3/GeneralActions.php:59
5217
- msgid "Purge from cache"
5218
- msgstr ""
5219
-
5220
- #: lib/W3/GenericAdminEnvironment.php:97
5221
- #, php-format
5222
- msgid ""
5223
- "The Page Cache add-in file advanced-cache.php is not a W3 Total Cache drop-"
5224
- "in.\n"
5225
- " It should be removed. %s"
5226
- msgstr ""
5227
-
5228
- #: lib/W3/GenericAdminEnvironment.php:99
5229
- #: lib/W3/ObjectCacheAdminEnvironment.php:110
5230
- #, fuzzy
5231
- msgid "Yes, remove it for me"
5232
- msgstr "نعم، الرجاء إبلاغي."
5233
-
5234
- #: lib/W3/Menus.php:43 lib/W3/Menus.php:44
5235
- msgid "General Settings"
5236
- msgstr "إعدادات عامة"
5237
-
5238
- #: lib/W3/Menus.php:82 lib/W3/Menus.php:83
5239
- msgid "User Agent Groups"
5240
- msgstr "مجموعات وكيل المستخدم"
5241
-
5242
- #: lib/W3/Menus.php:87 lib/W3/Menus.php:88
5243
- msgid "Referrer Groups"
5244
- msgstr ""
5245
-
5246
- #: lib/W3/Menus.php:92
5247
- msgid "Content Delivery Network"
5248
- msgstr ""
5249
-
5250
- #: lib/W3/Menus.php:104 lib/W3/Menus.php:105 lib/W3/Plugin/TotalCache.php:398
5251
- msgid "FAQ"
5252
- msgstr "الأسئلة الشائعة"
5253
-
5254
- #: lib/W3/Menus.php:109
5255
- msgid "Support"
5256
- msgstr "الدعم"
5257
-
5258
- #: lib/W3/Menus.php:110
5259
- msgid "<span style=\"color: red;\">Support</span>"
5260
- msgstr ""
5261
-
5262
- #: lib/W3/Menus.php:114 lib/W3/Menus.php:115
5263
- msgid "Install"
5264
- msgstr "تثبيت"
5265
-
5266
- #: lib/W3/Menus.php:119 lib/W3/Menus.php:120
5267
- msgid "About"
5268
- msgstr "حول"
5269
-
5270
- #: lib/W3/Menus.php:126 lib/W3/Plugin/TotalCache.php:244
5271
- msgid "Performance"
5272
- msgstr "الأداء"
5273
-
5274
- #: lib/W3/NewRelicService.php:45
5275
- msgid "Supported"
5276
- msgstr "مدعوم"
5277
-
5278
- #: lib/W3/NewRelicService.php:51
5279
- msgid "PHP version"
5280
- msgstr "اصدار PHP"
5281
-
5282
- #: lib/W3/NewRelicService.php:52
5283
- #, php-format
5284
- msgid "Not supported: %s. Supported versions are %s."
5285
- msgstr "غير مدعوم: %s. الاصدارات المدعومة %s."
5286
-
5287
- #: lib/W3/NewRelicService.php:99
5288
- msgid "Operating System"
5289
- msgstr "نظام التشغيل"
5290
-
5291
- #: lib/W3/NewRelicService.php:100 lib/W3/NewRelicService.php:128
5292
- #, php-format
5293
- msgid "Not Supported. %s %s See %s page."
5294
- msgstr "غير مدعوم. %s %s راجع %s صفحة."
5295
-
5296
- #: lib/W3/NewRelicService.php:127
5297
- msgid "Web Server"
5298
- msgstr "خادم الويب"
5299
-
5300
- #: lib/W3/NewRelicService.php:144
5301
- msgid "PHP module is not enabled."
5302
- msgstr "لم يتم تمكين موديل PHP."
5303
-
5304
- #: lib/W3/NewRelicService.php:146
5305
- msgid "PHP agent is not enabled."
5306
- msgstr "لم يتم تمكين وكيل PHP."
5307
-
5308
- #: lib/W3/NewRelicService.php:148
5309
- msgid "API Key is not configured."
5310
- msgstr ""
5311
-
5312
- #: lib/W3/NewRelicService.php:150
5313
- msgid "Account ID is not configured."
5314
- msgstr ""
5315
-
5316
- #: lib/W3/NewRelicService.php:152
5317
- msgid "Application ID is not configured. Enter/Select application name."
5318
- msgstr ""
5319
-
5320
- #: lib/W3/NewRelicService.php:155
5321
- msgid "License key could not be detected."
5322
- msgstr "تعذر الكشف عن مفتاح الترخيص."
5323
-
5324
- #: lib/W3/NewRelicService.php:160
5325
- #, php-format
5326
- msgid ""
5327
- "Configured license key does not match license key(s) in account: <br />%s "
5328
- "<br />%s"
5329
- msgstr ""
5330
-
5331
- #: lib/W3/NewRelicService.php:165
5332
- msgid "API Key is invalid."
5333
- msgstr ""
5334
-
5335
- #: lib/W3/ObjectCache.php:683
5336
- msgid "Object caching is disabled"
5337
- msgstr ""
5338
-
5339
- #: lib/W3/ObjectCache.php:685
5340
- msgid "DONOTCACHEOBJECT constant is defined"
5341
- msgstr ""
5342
-
5343
- #: lib/W3/ObjectCacheAdminEnvironment.php:108
5344
- #, php-format
5345
- msgid ""
5346
- "The Object Cache add-in file object-cache.php is not a W3 Total Cache drop-"
5347
- "in.\n"
5348
- " Remove it or disable Object Caching. %s"
5349
- msgstr ""
5350
-
5351
- #: lib/W3/PgCacheAdminEnvironment.php:478
5352
- #, php-format
5353
- msgid ""
5354
- "Edit file <strong>%s</strong> and remove all lines between and including "
5355
- "<strong>\n"
5356
- " %s</strong> and <strong>%s</strong> markers."
5357
- msgstr ""
5358
-
5359
- #: lib/W3/PgCacheAdminEnvironment.php:487
5360
- #, php-format
5361
- msgid ""
5362
- "Edit file <strong>%s</strong> and remove all lines between and including\n"
5363
- " <strong>%s</strong> and <strong>%s</strong> "
5364
- "markers."
5365
- msgstr ""
5366
-
5367
- #: lib/W3/PgCacheAdminEnvironment.php:498
5368
- #, php-format
5369
- msgid ""
5370
- "Edit file <strong>%s</strong> and replace all lines between and including\n"
5371
- " <strong>%s</strong> and <strong>%s</"
5372
- "strong> markers with:"
5373
- msgstr ""
5374
-
5375
- #: lib/W3/PgCacheAdminEnvironment.php:507
5376
- #, php-format
5377
- msgid ""
5378
- "Edit file <strong>%s</strong> and add the following rules above the "
5379
- "WordPress\n"
5380
- " directives:"
5381
- msgstr ""
5382
-
5383
- #: lib/W3/AdminActions/ActionHandler.php:45
5384
- #, php-format
5385
- msgid "%s is not an correct action."
5386
- msgstr ""
5387
-
5388
- #: lib/W3/AdminActions/ActionHandler.php:64
5389
- #, php-format
5390
- msgid "action %s does not exist for %s"
5391
- msgstr ""
5392
-
5393
- #: lib/W3/AdminActions/CdnActionsAdmin.php:49
5394
- msgid "File successfully deleted from the queue."
5395
- msgstr "تم حذف الملف بنجاح"
5396
-
5397
- #: lib/W3/AdminActions/CdnActionsAdmin.php:57
5398
- msgid "Queue successfully emptied."
5399
- msgstr "قائمة الانتظار أفرغت بنجاح."
5400
-
5401
- #: lib/W3/AdminActions/CdnActionsAdmin.php:64
5402
- #, php-format
5403
- msgid "Number of processed queue items: %d"
5404
- msgstr ""
5405
-
5406
- #: lib/W3/AdminActions/CdnActionsAdmin.php:70
5407
- msgid "Unsuccessful file transfer queue."
5408
- msgstr ""
5409
-
5410
- #: lib/W3/AdminActions/CdnActionsAdmin.php:84
5411
- msgid "Media Library export"
5412
- msgstr "تصدير مكتبة الوسائط"
5413
-
5414
- #: lib/W3/AdminActions/CdnActionsAdmin.php:133
5415
- msgid "Media Library import"
5416
- msgstr "استيراد مكتبة الوسائط"
5417
-
5418
- #: lib/W3/AdminActions/CdnActionsAdmin.php:178
5419
- msgid "Modify attachment URLs"
5420
- msgstr ""
5421
-
5422
- #: lib/W3/AdminActions/CdnActionsAdmin.php:228
5423
- msgid "Includes files export"
5424
- msgstr ""
5425
-
5426
- #: lib/W3/AdminActions/CdnActionsAdmin.php:233
5427
- msgid "Theme files export"
5428
- msgstr "تصدير ملفات القالب"
5429
-
5430
- #: lib/W3/AdminActions/CdnActionsAdmin.php:238
5431
- msgid "Minify files export"
5432
- msgstr ""
5433
-
5434
- #: lib/W3/AdminActions/CdnActionsAdmin.php:244
5435
- msgid "Custom files export"
5436
- msgstr "تصدير ملفات مخصصة"
5437
-
5438
- #: lib/W3/AdminActions/CdnActionsAdmin.php:290
5439
- #: lib/W3/AdminActions/CdnActionsAdmin.php:305
5440
- msgid "Content Delivery Network (CDN): Purge Tool"
5441
- msgstr ""
5442
-
5443
- #: lib/W3/AdminActions/CdnActionsAdmin.php:326
5444
- msgid "Empty files list."
5445
- msgstr "قائمة الملفات فارغة."
5446
-
5447
- #: lib/W3/AdminActions/CdnActionsAdmin.php:378
5448
- msgid "Incorrect engine."
5449
- msgstr "المحرك غير صحيح."
5450
-
5451
- #: lib/W3/AdminActions/CdnActionsAdmin.php:388
5452
- msgid "Test passed"
5453
- msgstr "الاختبار منجز"
5454
-
5455
- #: lib/W3/AdminActions/CdnActionsAdmin.php:391
5456
- #: lib/W3/AdminActions/CdnActionsAdmin.php:444
5457
- #, php-format
5458
- msgid "Error: %s"
5459
- msgstr "خطاء: %s"
5460
-
5461
- #: lib/W3/AdminActions/CdnActionsAdmin.php:421
5462
- msgid "Incorrect type."
5463
- msgstr "نوع غير صحيح."
5464
-
5465
- #: lib/W3/AdminActions/CdnActionsAdmin.php:441
5466
- msgid "Created successfully."
5467
- msgstr "تم الانشاء بنجاح"
5468
-
5469
- #: lib/W3/AdminActions/CdnActionsAdmin.php:470
5470
- msgid "US-West (Northern California)"
5471
- msgstr ""
5472
-
5473
- #: lib/W3/AdminActions/CdnActionsAdmin.php:472
5474
- msgid "AP-SouthEast (Singapore)"
5475
- msgstr ""
5476
-
5477
- #: lib/W3/AdminActions/ConfigActionsAdmin.php:66
5478
- #, php-format
5479
- msgid "Content-Disposition: attachment; filename=%s.php"
5480
- msgstr ""
5481
-
5482
- #: lib/W3/AdminActions/ConfigActionsAdmin.php:151
5483
- msgid "Database Cluster configuration file has been successfully saved"
5484
- msgstr ""
5485
-
5486
- #: lib/W3/AdminActions/DefaultActionsAdmin.php:634
5487
- msgid "Added by W3 Total Cache"
5488
- msgstr "اضيفت من قبل اداة W3 Total Cache"
5489
-
5490
- #: lib/W3/AdminActions/SupportActionsAdmin.php:58
5491
- #: lib/W3/UI/SupportAdminView.php:61
5492
- msgid "Submit a Bug Report"
5493
- msgstr "إرسال تقرير بالأخطاء"
5494
-
5495
- #: lib/W3/AdminActions/SupportActionsAdmin.php:59
5496
- #: lib/W3/UI/SupportAdminView.php:62
5497
- msgid "Suggest a New Feature"
5498
- msgstr "أقترح ميزة جديدة"
5499
-
5500
- #: lib/W3/AdminActions/SupportActionsAdmin.php:60
5501
- #: lib/W3/UI/SupportAdminView.php:63
5502
- msgid "Less than 15 Minute Email Support Response (M-F 9AM - 5PM EDT): $75 USD"
5503
- msgstr ""
5504
-
5505
- #: lib/W3/AdminActions/SupportActionsAdmin.php:61
5506
- #: lib/W3/UI/SupportAdminView.php:64
5507
- msgid ""
5508
- "Less than 15 Minute Phone Support Response (M-F 9AM - 5PM EDT): $150 USD"
5509
- msgstr ""
5510
-
5511
- #: lib/W3/AdminActions/SupportActionsAdmin.php:62
5512
- #: lib/W3/UI/SupportAdminView.php:65
5513
- msgid "Professional Plugin Configuration: Starting @ $100 USD"
5514
- msgstr ""
5515
-
5516
- #: lib/W3/AdminActions/SupportActionsAdmin.php:63
5517
- #: lib/W3/UI/SupportAdminView.php:66
5518
- msgid ""
5519
- "Theme Performance Optimization & Plugin Configuration: Starting @ $150 USD"
5520
- msgstr ""
5521
-
5522
- #: lib/W3/AdminActions/SupportActionsAdmin.php:64
5523
- #: lib/W3/UI/SupportAdminView.php:67
5524
- msgid "Linux Server Optimization & Plugin Configuration: Starting @ $200 USD"
5525
- msgstr ""
5526
-
5527
- #: lib/W3/AdminActions/TestActionsAdmin.php:31
5528
- msgid "Test passed."
5529
- msgstr "الاختبار منجز"
5530
-
5531
- #: lib/W3/AdminActions/TestActionsAdmin.php:34
5532
- msgid "Test failed."
5533
- msgstr "فشل الاختبار."
5534
-
5535
- #: lib/W3/AdminActions/TestActionsAdmin.php:61
5536
- msgid "Empty JAVA executable path."
5537
- msgstr "افراغ المسار java القابل للتنفيذ"
5538
-
5539
- #: lib/W3/AdminActions/TestActionsAdmin.php:63
5540
- msgid "Empty JAR file path."
5541
- msgstr "إفراغ مسار الملف JAR."
5542
-
5543
- #: lib/W3/AdminActions/TestActionsAdmin.php:94
5544
- msgid "Invalid engine."
5545
- msgstr "المحرك غير صالح"
5546
-
5547
- #: lib/W3/Cdn/Mirror/Akamai.php:41 lib/W3/Cdn/Mirror/Cotendo.php:44
5548
- msgid "Empty username."
5549
- msgstr "اسم المستخدم فارغ."
5550
-
5551
- #: lib/W3/Cdn/Mirror/Akamai.php:47 lib/W3/Cdn/Mirror/Cotendo.php:50
5552
- msgid "Empty password."
5553
- msgstr "كلمة المرور فارغة."
5554
-
5555
- #: lib/W3/Cdn/Mirror/Akamai.php:62 lib/W3/Cdn/Mirror/Cotendo.php:71
5556
- #, php-format
5557
- msgid "Constructor error (%s)."
5558
- msgstr "خطاء في الدالة الانشائية (%s)."
5559
-
5560
- #: lib/W3/Cdn/Mirror/Akamai.php:92 lib/W3/Cdn/Mirror/Cotendo.php:100
5561
- msgid "Invalid response."
5562
- msgstr "خطاء في الاستجابة."
5563
-
5564
- #: lib/W3/Cdn/Mirror/Akamai.php:102 lib/W3/Cdn/Mirror/Akamai.php:107
5565
- #: lib/W3/Cdn/Mirror/Cotendo.php:108 lib/W3/Cdn/Mirror/Edgecast.php:68
5566
- #: lib/W3/Cdn/Mirror/Netdna.php:126 lib/W3/Cdn/Mirror/Netdna.php:142
5567
- #: lib/W3/Cdn/Mirror/Netdna.php:245 lib/W3/Cdn/Mirror/Netdna.php:259
5568
- #, php-format
5569
- msgid "Unable to purge (%s)."
5570
- msgstr "غير قادر على تطهير (%s)"
5571
-
5572
- #: lib/W3/Cdn/Mirror/Cotendo.php:56
5573
- msgid "Empty zones list."
5574
- msgstr ""
5575
-
5576
- #: lib/W3/Cdn/Mirror/Edgecast.php:46
5577
- msgid "Empty account #."
5578
- msgstr ""
5579
-
5580
- #: lib/W3/Cdn/Mirror/Edgecast.php:52
5581
- msgid "Empty token."
5582
- msgstr ""
5583
-
5584
- #: lib/W3/Cdn/Mirror/Edgecast.php:121
5585
- msgid "Invalid Request Parameter"
5586
- msgstr ""
5587
-
5588
- #: lib/W3/Cdn/Mirror/Edgecast.php:125
5589
- msgid "Authentication Failure or Insufficient Access Rights"
5590
- msgstr ""
5591
-
5592
- #: lib/W3/Cdn/Mirror/Edgecast.php:129
5593
- msgid "Invalid Request URI"
5594
- msgstr ""
5595
-
5596
- #: lib/W3/Cdn/Mirror/Edgecast.php:133
5597
- msgid "Invalid Request"
5598
- msgstr "طلب غير صحيح"
5599
-
5600
- #: lib/W3/Cdn/Mirror/Edgecast.php:137
5601
- msgid "Server Error"
5602
- msgstr "خطأ في الخادم"
5603
-
5604
- #: lib/W3/Cdn/Mirror/Netdna.php:46 lib/W3/Cdn/Mirror/Netdna.php:165
5605
- msgid "Empty Authorization Key."
5606
- msgstr ""
5607
-
5608
- #: lib/W3/Cdn/Mirror/Netdna.php:52 lib/W3/Cdn/Mirror/Netdna.php:171
5609
- msgid "Malformed Authorization Key."
5610
- msgstr ""
5611
-
5612
- #: lib/W3/Cdn/Mirror/Netdna.php:85 lib/W3/Cdn/Mirror/Netdna.php:152
5613
- #: lib/W3/Cdn/Mirror/Netdna.php:205 lib/W3/Cdn/Mirror/Netdna.php:269
5614
- #, php-format
5615
- msgid "No zones match site: %s."
5616
- msgstr ""
5617
-
5618
- #: lib/W3/Cdn/Mirror/Netdna.php:87 lib/W3/Cdn/Mirror/Netdna.php:207
5619
- #, php-format
5620
- msgid "No zones match site: %s or %s."
5621
- msgstr ""
5622
-
5623
- #: lib/W3/Cdn/Mirror/Netdna.php:118
5624
- #, php-format
5625
- msgid ""
5626
- "Failed with error code %s Please check your alias, consumer key, and private "
5627
- "key."
5628
- msgstr ""
5629
-
5630
- #: lib/W3/Cdn/Mirror/Netdna.php:120 lib/W3/Cdn/Mirror/Netdna.php:138
5631
- #: lib/W3/Cdn/Mirror/Netdna.php:239 lib/W3/Cdn/Mirror/Netdna.php:255
5632
- msgid "Failed with error code "
5633
- msgstr "فشل , رمز الخطأ"
5634
-
5635
- #: lib/W3/Cdn/Mirror/Netdna.php:129 lib/W3/Cdn/Mirror/Netdna.php:248
5636
- #, php-format
5637
- msgid "No registered CNAMEs match %s."
5638
- msgstr ""
5639
-
5640
- #: lib/W3/Cdn/Mirror/Netdna.php:136 lib/W3/Cdn/Mirror/Netdna.php:237
5641
- #: lib/W3/Cdn/Mirror/Netdna.php:253
5642
- #, php-format
5643
- msgid ""
5644
- "Failed with error code %s. Please check your alias, consumer key, and "
5645
- "private key."
5646
- msgstr ""
5647
-
5648
- #: lib/W3/Cdn/Mirror/Netdna.php:146 lib/W3/Cdn/Mirror/Netdna.php:263
5649
- msgid "Failure to pull zone: "
5650
- msgstr "فشل في سحب المنطقة:"
5651
-
5652
- #: lib/W3/Cdn/Mirror/Netdna.php:150 lib/W3/Cdn/Mirror/Netdna.php:267
5653
- msgid "No zones match custom domain."
5654
- msgstr ""
5655
-
5656
- #: lib/W3/Enterprise/DbCluster.php:573
5657
- #, php-format
5658
- msgid "<strong>ERROR</strong>: WordPress %s requires MySQL 4.1.2 or higher"
5659
- msgstr ""
5660
-
5661
- #: lib/W3/Extensions/GenesisExtension.php:128
5662
- msgid "Stores wp_head loop."
5663
- msgstr ""
5664
-
5665
- #: lib/W3/Extensions/GenesisExtension.php:129
5666
- msgid "Cache head"
5667
- msgstr ""
5668
-
5669
- #: lib/W3/Extensions/GenesisExtension.php:135
5670
- msgid "Cache Genesis header"
5671
- msgstr ""
5672
-
5673
- #: lib/W3/Extensions/GenesisExtension.php:136
5674
- msgid "Stores header loop."
5675
- msgstr ""
5676
-
5677
- #: lib/W3/Extensions/GenesisExtension.php:142
5678
- msgid "Cache Genesis primary navigation"
5679
- msgstr ""
5680
-
5681
- #: lib/W3/Extensions/GenesisExtension.php:143
5682
- msgid "Stores navigation filter."
5683
- msgstr ""
5684
-
5685
- #: lib/W3/Extensions/GenesisExtension.php:149
5686
- msgid "Stores secondary navigation filter."
5687
- msgstr ""
5688
-
5689
- #: lib/W3/Extensions/GenesisExtension.php:150
5690
- msgid "Cache Genesis secondary navigation"
5691
- msgstr ""
5692
-
5693
- #: lib/W3/Extensions/GenesisExtension.php:156
5694
- msgid "Cache front page post loop"
5695
- msgstr ""
5696
-
5697
- #: lib/W3/Extensions/GenesisExtension.php:157
5698
- msgid "Stores the front post loop, paging is supported."
5699
- msgstr ""
5700
-
5701
- #: lib/W3/Extensions/GenesisExtension.php:163
5702
- msgid "Cache single post/page"
5703
- msgstr ""
5704
-
5705
- #: lib/W3/Extensions/GenesisExtension.php:164
5706
- msgid "Stores the single post/page loop, paging is supported."
5707
- msgstr ""
5708
-
5709
- #: lib/W3/Extensions/GenesisExtension.php:170
5710
- msgid "Exclude single pages"
5711
- msgstr ""
5712
-
5713
- #: lib/W3/Extensions/GenesisExtension.php:171
5714
- msgid ""
5715
- "List of pages that should have the single post cached. One page per line."
5716
- msgstr ""
5717
-
5718
- #: lib/W3/Extensions/GenesisExtension.php:177
5719
- msgid "Cache genesis comments"
5720
- msgstr ""
5721
-
5722
- #: lib/W3/Extensions/GenesisExtension.php:178
5723
- msgid "Stores the comments loop, paging is supported."
5724
- msgstr ""
5725
-
5726
- #: lib/W3/Extensions/GenesisExtension.php:184
5727
- msgid "Cache genesis pings"
5728
- msgstr ""
5729
-
5730
- #: lib/W3/Extensions/GenesisExtension.php:185
5731
- msgid "Stores the genesis pings loop, paging is supported. One per line."
5732
- msgstr ""
5733
-
5734
- #: lib/W3/Extensions/GenesisExtension.php:191
5735
- msgid "Cache sidebar"
5736
- msgstr ""
5737
-
5738
- #: lib/W3/Extensions/GenesisExtension.php:192
5739
- msgid "Stores sidebar loop."
5740
- msgstr ""
5741
-
5742
- #: lib/W3/Extensions/GenesisExtension.php:198
5743
- msgid "Exclude pages"
5744
- msgstr ""
5745
-
5746
- #: lib/W3/Extensions/GenesisExtension.php:199
5747
- msgid "List of pages that should not have sidebar cached. One per line."
5748
- msgstr ""
5749
-
5750
- #: lib/W3/Extensions/GenesisExtension.php:205
5751
- msgid "Cache Genesis footer"
5752
- msgstr ""
5753
-
5754
- #: lib/W3/Extensions/GenesisExtension.php:206
5755
- msgid "Stores footer loop."
5756
- msgstr ""
5757
-
5758
- #: lib/W3/Extensions/GenesisExtension.php:212
5759
- msgid "Cache footer"
5760
- msgstr ""
5761
-
5762
- #: lib/W3/Extensions/GenesisExtension.php:213
5763
- msgid "Stores wp_footer loop."
5764
- msgstr ""
5765
-
5766
- #: lib/W3/Plugin/Cdn.php:228
5767
- msgid "Upgrading database"
5768
- msgstr "ترقية قاعدة البيانات"
5769
-
5770
- #: lib/W3/Plugin/CdnAdmin.php:705
5771
- msgid "Purge from CDN"
5772
- msgstr ""
5773
-
5774
- #: lib/W3/Plugin/CloudFlareAdmin.php:57
5775
- msgid ""
5776
- "CloudFlare plugin detected. We recommend removing the\n"
5777
- " plugin as it offers no additional capabilities when W3 Total "
5778
- "Cache is installed. This message will disappear\n"
5779
- " when CloudFlare is removed."
5780
- msgstr ""
5781
-
5782
- #: lib/W3/Plugin/ExtensionsAdmin.php:21 lib/W3/Plugin/ExtensionsAdmin.php:22
5783
- msgid "Extensions"
5784
- msgstr ""
5785
-
5786
- #: lib/W3/Plugin/MinifyAdmin.php:113
5787
- #, php-format
5788
- msgid ""
5789
- "Minify Auto encountered an error. The filename length value is most likely "
5790
- "too high for\n"
5791
- " your host. It is currently %d. The plugin is "
5792
- "trying to solve the issue for you:\n"
5793
- " <span id=\"minify_auto_test_loading\">"
5794
- "(solving ...)</span>."
5795
- msgstr ""
5796
-
5797
- #: lib/W3/Plugin/NewRelic.php:71
5798
- msgid "DOING_AJAX constant is defined"
5799
- msgstr ""
5800
-
5801
- #: lib/W3/Plugin/NewRelic.php:81
5802
- msgid "DONOTAUTORUM constant is defined"
5803
- msgstr ""
5804
-
5805
- #: lib/W3/Plugin/NewRelic.php:90
5806
- msgid "logged in role is rejected"
5807
- msgstr ""
5808
-
5809
- #: lib/W3/Plugin/NewRelicAdmin.php:56
5810
- msgid ""
5811
- "New Relic is not running correctly. The plugin has detected the following "
5812
- "issues:"
5813
- msgstr ""
5814
-
5815
- #: lib/W3/Plugin/NewRelicAdmin.php:63
5816
- #, php-format
5817
- msgid "Please review the <a href=\"%s\">settings</a>."
5818
- msgstr "فضلاً قم بمراجعة <a href=\"%s\">الاعدادات</a>."
5819
-
5820
- #: lib/W3/Plugin/TotalCache.php:252
5821
- msgid "Purge From Cache"
5822
- msgstr ""
5823
-
5824
- #: lib/W3/Plugin/TotalCache.php:261
5825
- msgid "Empty Disc Cache(s)"
5826
- msgstr ""
5827
-
5828
- #: lib/W3/Plugin/TotalCache.php:270
5829
- msgid "Empty Opcode Cache"
5830
- msgstr "افراغ الذاكرة العشوائية لـ Opcode"
5831
-
5832
- #: lib/W3/Plugin/TotalCache.php:279
5833
- msgid "Empty Memcached Cache(s)"
5834
- msgstr "افراغ ذاكرة التخزين المؤقتة"
5835
-
5836
- #: lib/W3/Plugin/TotalCache.php:288
5837
- msgid "Update Media Query String"
5838
- msgstr ""
5839
-
5840
- #: lib/W3/Plugin/TotalCache.php:297
5841
- msgid "Empty All Caches"
5842
- msgstr ""
5843
-
5844
- #: lib/W3/Plugin/TotalCache.php:304
5845
- msgid "Empty Modules"
5846
- msgstr ""
5847
-
5848
- #: lib/W3/Plugin/TotalCache.php:312
5849
- msgid "Empty Page Cache"
5850
- msgstr ""
5851
-
5852
- #: lib/W3/Plugin/TotalCache.php:321
5853
- msgid "Empty Minify Cache"
5854
- msgstr ""
5855
-
5856
- #: lib/W3/Plugin/TotalCache.php:330
5857
- msgid "Empty Database Cache"
5858
- msgstr ""
5859
-
5860
- #: lib/W3/Plugin/TotalCache.php:339
5861
- msgid "Empty Object Cache"
5862
- msgstr ""
5863
-
5864
- #: lib/W3/Plugin/TotalCache.php:349
5865
- msgid "Empty Fragment Cache"
5866
- msgstr ""
5867
-
5868
- #: lib/W3/Plugin/TotalCache.php:359
5869
- msgid "Purge Varnish Cache"
5870
- msgstr ""
5871
-
5872
- #: lib/W3/Plugin/TotalCache.php:369
5873
- msgid "Purge CDN"
5874
- msgstr ""
5875
-
5876
- #: lib/W3/Plugin/TotalCache.php:379
5877
- msgid "Purge CDN Completely"
5878
- msgstr ""
5879
-
5880
- #: lib/W3/Plugin/TotalCache.php:387
5881
- msgid "Unsuccessful file transfers"
5882
- msgstr "فشل نقل الملفات"
5883
-
5884
- #: lib/W3/Plugin/TotalCache.php:404
5885
- msgid "<span style=\"color: red; background: none;\">Support</span>"
5886
- msgstr ""
5887
-
5888
- #: lib/W3/Plugin/TotalCache.php:413
5889
- msgid "CloudFlare"
5890
- msgstr ""
5891
-
5892
- #: lib/W3/Plugin/TotalCache.php:419
5893
- msgid "My Websites"
5894
- msgstr "مواقع الويب الخاصة بي"
5895
-
5896
- #: lib/W3/Plugin/TotalCache.php:425
5897
- msgid "Analytics"
5898
- msgstr "التحليلات"
5899
-
5900
- #: lib/W3/Plugin/TotalCache.php:431
5901
- msgid "Account"
5902
- msgstr "الحساب"
5903
-
5904
- #: lib/W3/Plugin/TotalCache.php:570
5905
- #, php-format
5906
- msgid "Minified using %s%s"
5907
- msgstr ""
5908
-
5909
- #: lib/W3/Plugin/TotalCache.php:576
5910
- #, php-format
5911
- msgid "Page Caching using %s%s"
5912
- msgstr ""
5913
-
5914
- #: lib/W3/Plugin/TotalCache.php:588
5915
- #, php-format
5916
- msgid "Database Caching %d/%d queries in %.3f seconds using %s%s"
5917
- msgstr ""
5918
-
5919
- #: lib/W3/Plugin/TotalCache.php:593
5920
- #, php-format
5921
- msgid "Database Caching using %s%s"
5922
- msgstr ""
5923
-
5924
- #: lib/W3/Plugin/TotalCache.php:611
5925
- #, php-format
5926
- msgid "Object Caching %d/%d objects using %s%s"
5927
- msgstr ""
5928
-
5929
- #: lib/W3/Plugin/TotalCache.php:621
5930
- #, php-format
5931
- msgid "Fragment Caching %d/%d fragments using %s%s"
5932
- msgstr ""
5933
-
5934
- #: lib/W3/Plugin/TotalCache.php:633
5935
- #, php-format
5936
- msgid "Content Delivery Network via %s%s"
5937
- msgstr ""
5938
-
5939
- #: lib/W3/Plugin/TotalCache.php:640
5940
- #, php-format
5941
- msgid "Application Monitoring using New Relic%s"
5942
- msgstr ""
5943
-
5944
- #: lib/W3/Plugin/TotalCacheAdmin.php:210
5945
- msgid "SSH / FTP host"
5946
- msgstr ""
5947
-
5948
- #: lib/W3/Plugin/TotalCacheAdmin.php:211
5949
- msgid "SSH / FTP login"
5950
- msgstr ""
5951
-
5952
- #: lib/W3/Plugin/TotalCacheAdmin.php:212
5953
- msgid "SSH / FTP password"
5954
- msgstr ""
5955
-
5956
- #: lib/W3/Plugin/TotalCacheAdmin.php:466
5957
- msgid "Empty Caches"
5958
- msgstr ""
5959
-
5960
- #: lib/W3/Plugin/TotalCacheAdmin.php:518
5961
- #, php-format
5962
- msgid ""
5963
- "Fancy permalinks are disabled. Please %s it first, then re-attempt to "
5964
- "enabling enhanced disk mode."
5965
- msgstr ""
5966
-
5967
- #: lib/W3/Plugin/TotalCacheAdmin.php:519
5968
- #, php-format
5969
- msgid ""
5970
- "Fancy permalinks are disabled. Please %s it first, then re-attempt to "
5971
- "enabling the 'Do not process 404 errors for static objects with WordPress'."
5972
- msgstr ""
5973
-
5974
- #: lib/W3/Plugin/TotalCacheAdmin.php:520
5975
- msgid "Please select request type."
5976
- msgstr "من فضلك إختر نوع الطلب."
5977
-
5978
- #: lib/W3/Plugin/TotalCacheAdmin.php:521
5979
- msgid ""
5980
- "Please enter the address of the site in the site <acronym title=\"Uniform "
5981
- "Resource Locator\">URL</acronym> field."
5982
- msgstr ""
5983
-
5984
- #: lib/W3/Plugin/TotalCacheAdmin.php:522
5985
- msgid "Please enter your name in the Name field"
5986
- msgstr ""
5987
-
5988
- #: lib/W3/Plugin/TotalCacheAdmin.php:523
5989
- msgid "Please enter valid email address in the E-Mail field."
5990
- msgstr ""
5991
-
5992
- #: lib/W3/Plugin/TotalCacheAdmin.php:524
5993
- msgid "Please enter your phone in the phone field."
5994
- msgstr ""
5995
-
5996
- #: lib/W3/Plugin/TotalCacheAdmin.php:525
5997
- msgid "Please enter subject in the subject field."
5998
- msgstr ""
5999
-
6000
- #: lib/W3/Plugin/TotalCacheAdmin.php:526
6001
- msgid "Please describe the issue in the issue description field."
6002
- msgstr ""
6003
-
6004
- #: lib/W3/Plugin/TotalCacheAdmin.php:527
6005
- msgid ""
6006
- "Please enter an administrator login. Create a temporary one just for this "
6007
- "support case if needed."
6008
- msgstr ""
6009
-
6010
- #: lib/W3/Plugin/TotalCacheAdmin.php:528
6011
- msgid "Please enter WP Admin password, be sure it's spelled correctly."
6012
- msgstr ""
6013
-
6014
- #: lib/W3/Plugin/TotalCacheAdmin.php:529
6015
- msgid ""
6016
- "Please enter <acronym title=\"Secure Shell\">SSH</acronym> or <acronym title="
6017
- "\"File Transfer Protocol\">FTP</acronym> host for the site."
6018
- msgstr ""
6019
-
6020
- #: lib/W3/Plugin/TotalCacheAdmin.php:530
6021
- msgid ""
6022
- "Please enter <acronym title=\"Secure Shell\">SSH</acronym> or <acronym title="
6023
- "\"File Transfer Protocol\">FTP</acronym> login for the server. Create a "
6024
- "temporary one just for this support case if needed."
6025
- msgstr ""
6026
-
6027
- #: lib/W3/Plugin/TotalCacheAdmin.php:531
6028
- msgid ""
6029
- "Please enter <acronym title=\"Secure Shell\">SSH</acronym> or <acronym title="
6030
- "\"File Transfer Protocol\">FTP</acronym> password for the <acronym title="
6031
- "\"File Transfer Protocol\">FTP</acronym> account."
6032
- msgstr ""
6033
-
6034
- #: lib/W3/Plugin/TotalCacheAdmin.php:532
6035
- msgid "Unable to send the support request."
6036
- msgstr "غير قادر على إرسال طلب الدعم."
6037
-
6038
- #: lib/W3/Plugin/TotalCacheAdmin.php:533
6039
- msgid "Please select config file."
6040
- msgstr "من فضلك إختر ملف التكوين (الكونفيج)."
6041
-
6042
- #: lib/W3/Plugin/TotalCacheAdmin.php:534
6043
- msgid "Unable to upload config file."
6044
- msgstr "غير قادر على رفع ملف التكوين (الكونفيج)."
6045
-
6046
- #: lib/W3/Plugin/TotalCacheAdmin.php:535
6047
- msgid "Configuration file could not be imported."
6048
- msgstr ""
6049
-
6050
- #: lib/W3/Plugin/TotalCacheAdmin.php:536
6051
- #, php-format
6052
- msgid ""
6053
- "Default settings could not be restored. Please run <strong>chmod 777 %s</"
6054
- "strong> to make the configuration file write-able, then try again."
6055
- msgstr ""
6056
-
6057
- #: lib/W3/Plugin/TotalCacheAdmin.php:537
6058
- msgid "Unable to purge attachment."
6059
- msgstr ""
6060
-
6061
- #: lib/W3/Plugin/TotalCacheAdmin.php:538
6062
- msgid "Unable to purge post."
6063
- msgstr ""
6064
-
6065
- #: lib/W3/Plugin/TotalCacheAdmin.php:539
6066
- msgid "Unable to purge page."
6067
- msgstr ""
6068
-
6069
- #: lib/W3/Plugin/TotalCacheAdmin.php:540
6070
- #, php-format
6071
- msgid ""
6072
- "<strong>%swp-config.php</strong> could not be written, please edit config "
6073
- "and add:<br /><strong style=\"color:#f00;\">define('COOKIE_DOMAIN', '%s');</"
6074
- "strong> before <strong style=\"color:#f00;\">require_once(ABSPATH . 'wp-"
6075
- "settings.php');</strong>."
6076
- msgstr ""
6077
-
6078
- #: lib/W3/Plugin/TotalCacheAdmin.php:541
6079
- #, php-format
6080
- msgid ""
6081
- "<strong>%swp-config.php</strong> could not be written, please edit config "
6082
- "and add:<br /><strong style=\"color:#f00;\">define('COOKIE_DOMAIN', false);</"
6083
- "strong> before <strong style=\"color:#f00;\">require_once(ABSPATH . 'wp-"
6084
- "settings.php');</strong>."
6085
- msgstr ""
6086
-
6087
- #: lib/W3/Plugin/TotalCacheAdmin.php:542
6088
- msgid "Unable to make CloudFlare API request."
6089
- msgstr ""
6090
-
6091
- #: lib/W3/Plugin/TotalCacheAdmin.php:546
6092
- msgid "Plugin configuration successfully updated."
6093
- msgstr ""
6094
-
6095
- #: lib/W3/Plugin/TotalCacheAdmin.php:547
6096
- msgid "All caches successfully emptied."
6097
- msgstr ""
6098
-
6099
- #: lib/W3/Plugin/TotalCacheAdmin.php:548
6100
- msgid "All caches except CloudFlare successfully emptied."
6101
- msgstr ""
6102
-
6103
- #: lib/W3/Plugin/TotalCacheAdmin.php:549
6104
- msgid "Memcached cache(s) successfully emptied."
6105
- msgstr ""
6106
-
6107
- #: lib/W3/Plugin/TotalCacheAdmin.php:550
6108
- msgid "Opcode cache(s) successfully emptied."
6109
- msgstr ""
6110
-
6111
- #: lib/W3/Plugin/TotalCacheAdmin.php:551
6112
- msgid "APC system cache successfully emptied"
6113
- msgstr ""
6114
-
6115
- #: lib/W3/Plugin/TotalCacheAdmin.php:552
6116
- msgid "Disk cache(s) successfully emptied."
6117
- msgstr ""
6118
-
6119
- #: lib/W3/Plugin/TotalCacheAdmin.php:553
6120
- msgid "Page cache successfully emptied."
6121
- msgstr ""
6122
-
6123
- #: lib/W3/Plugin/TotalCacheAdmin.php:554
6124
- msgid "Database cache successfully emptied."
6125
- msgstr ""
6126
-
6127
- #: lib/W3/Plugin/TotalCacheAdmin.php:555
6128
- msgid "Object cache successfully emptied."
6129
- msgstr ""
6130
-
6131
- #: lib/W3/Plugin/TotalCacheAdmin.php:556
6132
- msgid "Fragment cache successfully emptied."
6133
- msgstr ""
6134
-
6135
- #: lib/W3/Plugin/TotalCacheAdmin.php:557
6136
- msgid "Minify cache successfully emptied."
6137
- msgstr ""
6138
-
6139
- #: lib/W3/Plugin/TotalCacheAdmin.php:558
6140
- msgid "Media Query string has been successfully updated."
6141
- msgstr ""
6142
-
6143
- #: lib/W3/Plugin/TotalCacheAdmin.php:559
6144
- msgid "Varnish servers successfully purged."
6145
- msgstr ""
6146
-
6147
- #: lib/W3/Plugin/TotalCacheAdmin.php:560
6148
- msgid "CDN was successfully purged."
6149
- msgstr ""
6150
-
6151
- #: lib/W3/Plugin/TotalCacheAdmin.php:561
6152
- msgid "The support request has been successfully sent."
6153
- msgstr "تم ارسال طلبك للدعم بنجاح."
6154
-
6155
- #: lib/W3/Plugin/TotalCacheAdmin.php:562
6156
- msgid "Settings successfully imported."
6157
- msgstr "تم استيراد الاعدادات بنجاح"
6158
-
6159
- #: lib/W3/Plugin/TotalCacheAdmin.php:563
6160
- msgid "Settings successfully restored."
6161
- msgstr "تمت استعادة الاعدادات بنجاح"
6162
-
6163
- #: lib/W3/Plugin/TotalCacheAdmin.php:564
6164
- msgid "Preview mode was successfully enabled"
6165
- msgstr "تم تمكين وضع المعاينة بنجاح"
6166
-
6167
- #: lib/W3/Plugin/TotalCacheAdmin.php:565
6168
- msgid "Preview mode was successfully disabled"
6169
- msgstr "تم تعطيل وضع المعاينة بنجاح"
6170
-
6171
- #: lib/W3/Plugin/TotalCacheAdmin.php:566
6172
- msgid ""
6173
- "Preview settings successfully deployed. Preview mode remains enabled until "
6174
- "it's disabled. Continue testing new settings or disable preview mode if done."
6175
- msgstr ""
6176
-
6177
- #: lib/W3/Plugin/TotalCacheAdmin.php:567
6178
- msgid "Attachment successfully purged."
6179
- msgstr ""
6180
-
6181
- #: lib/W3/Plugin/TotalCacheAdmin.php:568
6182
- msgid "Post successfully purged."
6183
- msgstr ""
6184
-
6185
- #: lib/W3/Plugin/TotalCacheAdmin.php:569
6186
- msgid "Page successfully purged."
6187
- msgstr ""
6188
-
6189
- #: lib/W3/Plugin/TotalCacheAdmin.php:570
6190
- msgid "New relic settings have been updated."
6191
- msgstr ""
6192
-
6193
- #: lib/W3/Plugin/TotalCacheAdmin.php:571
6194
- msgid "The add-in has been removed."
6195
- msgstr ""
6196
-
6197
- #: lib/W3/Plugin/TotalCacheAdmin.php:615
6198
- msgid "Required files and directories have been automatically created"
6199
- msgstr ""
6200
-
6201
- #: lib/W3/Plugin/TotalCacheAdmin.php:720
6202
- msgid "empty the page cache"
6203
- msgstr ""
6204
-
6205
- #: lib/W3/Plugin/TotalCacheAdmin.php:724
6206
- #, php-format
6207
- msgid "check the %s to maintain the desired user experience"
6208
- msgstr ""
6209
-
6210
- #: lib/W3/Plugin/TotalCacheAdmin.php:724
6211
- msgid "minify settings"
6212
- msgstr ""
6213
-
6214
- #: lib/W3/Plugin/TotalCacheAdmin.php:728
6215
- #, php-format
6216
- msgid "One or more plugins have been activated or deactivated, please %s. %s"
6217
- msgstr ""
6218
-
6219
- #: lib/W3/Plugin/TotalCacheAdmin.php:728 lib/W3/UI/PluginView.php:325
6220
- #: lib/W3/UI/PluginView.php:345
6221
- msgid " and "
6222
- msgstr "و"
6223
-
6224
- #: lib/W3/Plugin/TotalCacheAdmin.php:728 lib/W3/Plugin/TotalCacheAdmin.php:754
6225
- #: lib/W3/UI/CdnNotes.php:24 lib/W3/UI/CdnNotes.php:31
6226
- #: lib/W3/UI/CdnNotes.php:62 lib/W3/UI/PluginView.php:197
6227
- #: lib/W3/UI/PluginView.php:204 lib/W3/UI/PluginView.php:221
6228
- #: lib/W3/UI/PluginView.php:239 lib/W3/UI/PluginView.php:247
6229
- #: lib/W3/UI/PluginView.php:391
6230
- msgid "Hide this message"
6231
- msgstr "إخفاء هذه الرسالة"
6232
-
6233
- #: lib/W3/Plugin/TotalCacheAdmin.php:743 lib/W3/Plugin/TotalCacheAdmin.php:761
6234
- #, php-format
6235
- msgid ""
6236
- "The setting change(s) made either invalidate the cached data or modify the "
6237
- "behavior of the site. %s now to provide a consistent user experience."
6238
- msgstr ""
6239
-
6240
- #: lib/W3/Plugin/TotalCacheAdmin.php:743
6241
- msgid "Empty the object cache"
6242
- msgstr ""
6243
-
6244
- #: lib/W3/Plugin/TotalCacheAdmin.php:754
6245
- #, php-format
6246
- msgid ""
6247
- "Recently an error occurred while creating the CSS / JS minify cache: %s. %s"
6248
- msgstr ""
6249
-
6250
- #: lib/W3/Plugin/TotalCacheAdmin.php:761
6251
- msgid "Empty the minify cache"
6252
- msgstr ""
6253
-
6254
- #: lib/W3/Plugin/TotalCacheAdmin.php:780
6255
- #, php-format
6256
- msgid ""
6257
- "The directory w3tc can be deleted. %s: %s. However, <em>do not remove the "
6258
- "w3tc-config directory</em>. %s"
6259
- msgstr ""
6260
-
6261
- #: lib/W3/Pro/FragmentCache.php:582
6262
- msgid "Fragment caching is disabled"
6263
- msgstr ""
6264
-
6265
- #: lib/W3/UI/CdnNotes.php:24
6266
- #, php-format
6267
- msgid ""
6268
- "The active theme has changed, please %s now to ensure proper operation. %s"
6269
- msgstr ""
6270
-
6271
- #: lib/W3/UI/CdnNotes.php:24
6272
- msgid "upload active theme files"
6273
- msgstr ""
6274
-
6275
- #: lib/W3/UI/CdnNotes.php:31
6276
- #, php-format
6277
- msgid "Upgraded WordPress? Please %s files now to ensure proper operation. %s"
6278
- msgstr ""
6279
-
6280
- #: lib/W3/UI/CdnNotes.php:58
6281
- #, php-format
6282
- msgid ""
6283
- "Make sure to %s and upload the %s, files to the <acronym title=\"Content "
6284
- "Delivery Network\">CDN</acronym> to ensure proper operation. %s"
6285
- msgstr ""
6286
-
6287
- #: lib/W3/UI/CdnNotes.php:62
6288
- #, php-format
6289
- msgid ""
6290
- "Settings that affect Browser Cache settings for files hosted by the CDN have "
6291
- "been changed. To apply the new settings %s and %s. %s"
6292
- msgstr ""
6293
-
6294
- #: lib/W3/UI/CdnNotes.php:62
6295
- msgid "export the media library"
6296
- msgstr "تصدير مكتبة الوسائط"
6297
-
6298
- #: lib/W3/UI/CdnNotes.php:75
6299
- #, php-format
6300
- msgid ""
6301
- "The %s has unresolved errors. Empty the queue to restore normal operation."
6302
- msgstr ""
6303
-
6304
- #: lib/W3/UI/CdnNotes.php:75
6305
- msgid "unsuccessful transfer queue"
6306
- msgstr ""
6307
-
6308
- #: lib/W3/UI/NewRelicNotes.php:32
6309
- msgid "CDN"
6310
- msgstr ""
6311
-
6312
- #: lib/W3/UI/NewRelicNotes.php:34
6313
- msgid "Browser Cache and use compression"
6314
- msgstr ""
6315
-
6316
- #: lib/W3/UI/NewRelicNotes.php:36
6317
- #, php-format
6318
- msgid ""
6319
- "Application monitoring has detected that your page load time is\n"
6320
- " higher than 300ms. It "
6321
- "is recommended that you enable the following\n"
6322
- " features: %s %s"
6323
- msgstr ""
6324
-
6325
- #: lib/W3/UI/PluginView.php:146
6326
- #, php-format
6327
- msgid "Page Cache: %s."
6328
- msgstr ""
6329
-
6330
- #: lib/W3/UI/PluginView.php:154
6331
- #, php-format
6332
- msgid "Minify: %s."
6333
- msgstr ""
6334
-
6335
- #: lib/W3/UI/PluginView.php:162
6336
- #, php-format
6337
- msgid "Database Cache: %s."
6338
- msgstr ""
6339
-
6340
- #: lib/W3/UI/PluginView.php:170
6341
- #, php-format
6342
- msgid "Object Cache: %s."
6343
- msgstr ""
6344
-
6345
- #: lib/W3/UI/PluginView.php:175
6346
- msgid ""
6347
- "The following memcached servers are not responding or not running:</p><ul>"
6348
- msgstr ""
6349
-
6350
- #: lib/W3/UI/PluginView.php:181
6351
- msgid ""
6352
- "</ul><p>This message will automatically disappear once the issue is resolved."
6353
- msgstr ""
6354
-
6355
- #: lib/W3/UI/PluginView.php:190
6356
- #, php-format
6357
- msgid ""
6358
- "The <strong>CURL PHP</strong> extension is not available. Please install it "
6359
- "to enable S3 or CloudFront functionality. %s"
6360
- msgstr ""
6361
-
6362
- #: lib/W3/UI/PluginView.php:197
6363
- #, php-format
6364
- msgid ""
6365
- "Unfortunately the PHP installation is incomplete, the <strong>zlib module is "
6366
- "missing</strong>. This is a core PHP module. Notify the server "
6367
- "administrator. %s"
6368
- msgstr ""
6369
-
6370
- #: lib/W3/UI/PluginView.php:204
6371
- #, php-format
6372
- msgid ""
6373
- "Either the PHP configuration, web server configuration or a script in the "
6374
- "WordPress installation has <strong>zlib.output_compression</strong> enabled."
6375
- "<br />Please locate and disable this setting to ensure proper HTTP "
6376
- "compression behavior. %s"
6377
- msgstr ""
6378
-
6379
- #: lib/W3/UI/PluginView.php:215
6380
- #, php-format
6381
- msgid ""
6382
- "<strong>%s</strong> is write-able. When finished installing the plugin,\n"
6383
- " change the permissions back to the "
6384
- "default: <strong>chmod 755 %s</strong>.\n"
6385
- " Permissions are currently %s. %s"
6386
- msgstr ""
6387
-
6388
- #: lib/W3/UI/PluginView.php:232
6389
- #, php-format
6390
- msgid ""
6391
- "<strong>%s</strong> permissions were changed during the setup process.\n"
6392
- " Permissions are currently %s.<br /"
6393
- ">To restore permissions run\n"
6394
- " <strong>chmod %s %s</strong>. %s"
6395
- msgstr ""
6396
-
6397
- #: lib/W3/UI/PluginView.php:247
6398
- #, php-format
6399
- msgid ""
6400
- "The required directives for fancy permalinks could not be detected, please "
6401
- "confirm they are available: <a href=\"http://codex.wordpress.org/"
6402
- "Using_Permalinks#Creating_and_editing_.28.htaccess.29\">Creating and "
6403
- "editing</a> %s"
6404
- msgstr ""
6405
-
6406
- #: lib/W3/UI/PluginView.php:267
6407
- #, php-format
6408
- msgid ""
6409
- "The uploads directory is not available. Default WordPress directories will "
6410
- "be created: <strong>%s</strong>."
6411
- msgstr ""
6412
-
6413
- #: lib/W3/UI/PluginView.php:271
6414
- #, php-format
6415
- msgid ""
6416
- "The uploads path found in the database (%s) is inconsistent with the actual "
6417
- "path. Please manually adjust the upload path either in miscellaneous "
6418
- "settings or if not using a custom path %s automatically to resolve the issue."
6419
- msgstr ""
6420
-
6421
- #: lib/W3/UI/PluginView.php:271
6422
- msgid "update the path"
6423
- msgstr "تحديث المسار"
6424
-
6425
- #: lib/W3/UI/PluginView.php:282
6426
- msgid ""
6427
- "A configuration issue prevents <acronym title=\"Content Delivery Network"
6428
- "\">CDN</acronym> from working:\n"
6429
- " The <strong>\"Replace default "
6430
- "hostname with\"</strong>\n"
6431
- " field cannot be empty. Enter "
6432
- "<acronym\n"
6433
- " title=\"Content Delivery Network"
6434
- "\">CDN</acronym>\n"
6435
- " provider hostname <a href=\"?"
6436
- "page=w3tc_cdn#configuration\">here</a>.\n"
6437
- " <em>(This is the hostname used "
6438
- "in order to view objects\n"
6439
- " in a browser.)</em>"
6440
- msgstr ""
6441
-
6442
- #: lib/W3/UI/PluginView.php:292
6443
- msgid ""
6444
- "The <strong>\"Access key\", \"Secret key\" and \"Bucket\"</strong> fields "
6445
- "cannot be empty."
6446
- msgstr ""
6447
-
6448
- #: lib/W3/UI/PluginView.php:296
6449
- msgid ""
6450
- "The <strong>\"Access key\", \"Secret key\", \"Bucket\" and \"Replace default "
6451
- "hostname with\"</strong> fields cannot be empty."
6452
- msgstr ""
6453
-
6454
- #: lib/W3/UI/PluginView.php:300
6455
- msgid ""
6456
- "The <strong>\"Access key\", \"Secret key\" and \"Replace default hostname "
6457
- "with\"</strong> fields cannot be empty."
6458
- msgstr ""
6459
-
6460
- #: lib/W3/UI/PluginView.php:304
6461
- msgid ""
6462
- "The <strong>\"Username\", \"API key\", \"Container\" and \"Replace default "
6463
- "hostname with\"</strong> fields cannot be empty."
6464
- msgstr ""
6465
-
6466
- #: lib/W3/UI/PluginView.php:308
6467
- msgid ""
6468
- "The <strong>\"Account name\", \"Account key\" and \"Container\"</strong> "
6469
- "fields cannot be empty."
6470
- msgstr ""
6471
-
6472
- #: lib/W3/UI/PluginView.php:312 lib/W3/UI/PluginView.php:357
6473
- #: lib/W3/UI/PluginView.php:361 lib/W3/UI/PluginView.php:365
6474
- msgid ""
6475
- "The <strong>\"Replace default hostname with\"</strong> field cannot be empty."
6476
- msgstr ""
6477
-
6478
- #: lib/W3/UI/PluginView.php:321 lib/W3/UI/PluginView.php:341
6479
- msgid "Replace default hostname with"
6480
- msgstr "استبدل اسم المضيف الافتراضي مع"
6481
-
6482
- #: lib/W3/UI/PluginView.php:324 lib/W3/UI/PluginView.php:344
6483
- #, php-format
6484
- msgid "The <strong>%s</strong> field cannot be empty."
6485
- msgstr ""
6486
-
6487
- #: lib/W3/UI/PluginView.php:330 lib/W3/UI/PluginView.php:350
6488
- msgid "The <strong>\"Authorization key\"</strong> is not correct."
6489
- msgstr ""
6490
-
6491
- #: lib/W3/UI/PluginView.php:332 lib/W3/UI/PluginView.php:352
6492
- msgid "You need to select / create a pull zone."
6493
- msgstr ""
6494
-
6495
- #: lib/W3/UI/PluginView.php:374
6496
- msgid ""
6497
- "A configuration issue prevents <acronym title=\"Content Delivery Network"
6498
- "\">CDN</acronym> from working: "
6499
- msgstr ""
6500
-
6501
- #: lib/W3/UI/PluginView.php:374
6502
- msgid " <a href=\"?page=w3tc_cdn#configuration\">Specify it here</a>."
6503
- msgstr " <a href=\"?page=w3tc_cdn#configuration\">قم بتحديدها هنا</a>."
6504
-
6505
- #: lib/W3/UI/PluginView.php:383
6506
- #, php-format
6507
- msgid ""
6508
- "Preview mode is active: Changed settings will not take effect until preview "
6509
- "mode is %s or %s. %s any changed settings (without deploying), or make "
6510
- "additional changes."
6511
- msgstr ""
6512
-
6513
- #: lib/W3/UI/PluginView.php:383
6514
- msgid "deploy"
6515
- msgstr "نشر"
6516
-
6517
- #: lib/W3/UI/PluginView.php:383
6518
- msgid "disable"
6519
- msgstr "تعطيل"
6520
-
6521
- #: lib/W3/UI/PluginView.php:402
6522
- #, php-format
6523
- msgid ""
6524
- "File permissions are <strong>%s</strong>, however they should be\n"
6525
- "\t\t\t\t\t<strong>644</strong>."
6526
- msgstr ""
6527
-
6528
- #: lib/W3/UI/PluginView.php:407 lib/W3/UI/PluginView.php:415
6529
- #, php-format
6530
- msgid "File permissions are <strong>%s</strong>"
6531
- msgstr ""
6532
-
6533
- #: lib/W3/UI/PluginView.php:410
6534
- #, php-format
6535
- msgid ""
6536
- "File permissions are <strong>%s</strong>, however they should be\n"
6537
- "\t\t\t\t\t\t\t\t\t\t\t<strong>644</strong>."
6538
- msgstr ""
6539
-
6540
- #: lib/W3/UI/PluginView.php:419
6541
- #, php-format
6542
- msgid ""
6543
- "Directory permissions are <strong>%s</strong>, however they should be\n"
6544
- "\t\t\t\t\t\t\t\t\t\t\t<strong>755</strong>."
6545
- msgstr ""
6546
-
6547
- #: lib/W3/UI/PluginView.php:423 lib/W3/UI/PluginView.php:429
6548
- #, php-format
6549
- msgid "File: <strong>%s</strong> %s File owner: %s"
6550
- msgstr ""
6551
-
6552
- #: lib/W3/UI/PluginView.php:435
6553
- #, php-format
6554
- msgid "Directory: <strong>%s</strong> %s File owner: %s"
6555
- msgstr ""
6556
-
6557
- #: lib/W3/UI/PluginView.php:441
6558
- #, php-format
6559
- msgid "Owner of current file: %s"
6560
- msgstr "مالك الملف الحلي: %s"
6561
-
6562
- #: lib/W3/UI/PluginView.php:445
6563
- msgid ""
6564
- "<li>The files and directories have different ownership, they should have the "
6565
- "same ownership.\n"
6566
- "\t\t\t\t\t\t\t\t </li>"
6567
- msgstr ""
6568
-
6569
- #: lib/W3/UI/PluginView.php:449
6570
- #, php-format
6571
- msgid ""
6572
- "<strong>W3 Total Cache Error:</strong> The plugin tried to edit, %s, but "
6573
- "failed.\n"
6574
- "\t\t\t\t\t\t\t\tFiles and directories cannot be modified. Please review "
6575
- "your\n"
6576
- "\t\t\t\t\t\t\t\t<a target=\"_blank\" href=\"http://codex.wordpress.org/"
6577
- "Changing_File_Permissions\">\n"
6578
- "\t\t\t\t\t\t\t\tfile permissions</a>. A common cause is %s and %s having "
6579
- "different ownership or permissions.\n"
6580
- "\t\t\t\t\t\t\t\t%s %s"
6581
- msgstr ""
6582
-
6583
- #: lib/W3/UI/PluginView.php:457
6584
- msgid "View technical information"
6585
- msgstr "عرض المعلومات التقنية"
6586
-
6587
- #: lib/W3/UI/PluginView.php:468
6588
- msgid ""
6589
- "Please enter FTP details <a href=\"#ftp_upload_form\">below</a> to remove "
6590
- "the disabled modules. "
6591
- msgstr ""
6592
-
6593
- #: lib/W3/UI/PluginView.php:497
6594
- msgid "Click to toggle"
6595
- msgstr "انقر للتبديل"
6596
-
6597
- #: lib/W3/Widget/Forum.php:42
6598
- msgid "Forums"
6599
- msgstr "المنتديات"
6600
-
6601
- #: lib/W3/Widget/NewRelic.php:48
6602
- msgid "view visualizations"
6603
- msgstr "مشاهدة المرئيات"
6604
-
6605
- #: lib/W3/Widget/News.php:42
6606
- msgid "News"
6607
- msgstr "الأخبار"
6608
-
6609
- #: lib/W3/Widget/PageSpeed.php:26
6610
- msgid "Page Speed Report"
6611
- msgstr "تقرير لسرعة الصفحة"
6612
-
6613
- #: lib/W3/Widget/Services.php:52 lib/W3/Widget/Services.php:59
6614
- #, php-format
6615
- msgid "Less than 15 Minute Email Support Response %s"
6616
- msgstr "تجاوب في اقل من 15 دقيقة للدعم الفني من خلال البريد الالكتروني %s"
6617
-
6618
- #: lib/W3/Widget/Services.php:53 lib/W3/Widget/Services.php:60
6619
- #, php-format
6620
- msgid "Less than 15 Minute Phone Support Response %s"
6621
- msgstr " تجاوب في اقل من 15 دقيقة للدعم الفني من خلال الهاتف %s"
6622
-
6623
- #: lib/W3/Widget/Services.php:54 lib/W3/Widget/Services.php:61
6624
- #, php-format
6625
- msgid "Professional Plugin Configuration %s"
6626
- msgstr ""
6627
-
6628
- #: lib/W3/Widget/Services.php:55 lib/W3/Widget/Services.php:62
6629
- #, php-format
6630
- msgid "Theme Performance Optimization & Plugin Configuration %s"
6631
- msgstr ""
6632
-
6633
- #: lib/W3/Widget/Services.php:56 lib/W3/Widget/Services.php:63
6634
- #, php-format
6635
- msgid "Linux Server Optimization & Plugin Configuration %s"
6636
- msgstr ""
6637
-
6638
- #: lib/W3/Widget/Services.php:89
6639
- msgid "Premium Services"
6640
- msgstr "خدمات مميزة"
6641
-
6642
- #: lib/W3/Widget/SpreadTheWord.php:42
6643
- msgid "Spread The Word"
6644
- msgstr ""
6645
-
6646
- #: lib/W3/Widget/SpreadTheWord.php:84
6647
- msgid "Thank you for linking to us!"
6648
- msgstr "شكرا لتواصلك معنا!!"
6649
-
6650
- #: lib/W3/Widget/SpreadTheWord.php:86
6651
- msgid ""
6652
- "You are no longer linking to us. Please support us in other ways instead."
6653
- msgstr "لم تعد مرتبطاً بنا. فضلاً ادعمنا بطرق اخرى بدلا من ذلك"
6654
-
6655
- #~ msgid "select location"
6656
- #~ msgstr "حدد الموقع"
6657
-
6658
- #~ msgid "select one"
6659
- #~ msgstr "اختر واحد"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/w3-total-cache-de_DE.mo ADDED
Binary file
languages/w3-total-cache-de_DE.po ADDED
@@ -0,0 +1,13078 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2022 BoldGrid
2
+ # This file is distributed under the GPL v2 or later.
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: W3 Total Cache 2.2.7\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/w3-total-cache\n"
7
+ "Last-Translator: \n"
8
+ "Language-Team: German\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2022-11-04T21:35:34+00:00\n"
13
+ "PO-Revision-Date: 2022-11-14 17:37+0000\n"
14
+ "X-Generator: Loco https://localise.biz/\n"
15
+ "X-Domain: w3-total-cache\n"
16
+ "Language: de-DE\n"
17
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
+ "X-Loco-Version: 2.6.3; wp-6.0.3"
19
+
20
+ #. translators: 1 HTML line break tag, 2 opening HTML b tag, 3 closing HTML b tag.
21
+ #: inc/options/minify.php:840
22
+ msgid ""
23
+ " %1$s%2$sNot supported by \"Disk: Enhanced\" page cache method for Nginx%3$s"
24
+ msgstr ""
25
+ " %1$s%2$sNicht unterstützt von der Seiten-Cache-Methode „Datenträger: "
26
+ "Verbessert“ für Nginx%3$s"
27
+
28
+ #. translators: 1 HTML line break tag followed by opening HTML b tag, 2 closing HTML b tag.
29
+ #: inc/options/minify.php:571
30
+ msgid ""
31
+ " %1$sNot supported by \"Disk: Enhanced\" page cache method for Nginx%2$s"
32
+ msgstr ""
33
+ " %1$sNicht unterstützt von der Seiten-Cache-Methode „Datenträger: Erweitert“ "
34
+ "für Nginx%2$s"
35
+
36
+ #: inc/options/general.php:159
37
+ msgid " (available after upgrade)"
38
+ msgstr " (verfügbar nach Upgrade)"
39
+
40
+ #: Cdn_AdminNotes.php:275
41
+ msgid " <a href=\"?page=w3tc_cdn#configuration\">Specify it here</a>."
42
+ msgstr "<a href=\"?page=w3tc_cdn#configuration\">Geben Sie es hier an</a> ."
43
+
44
+ #: Cdn_AdminNotes.php:246 Generic_AdminNotes.php:259
45
+ msgid " and "
46
+ msgstr " und"
47
+
48
+ #: PgCache_ConfigLabels.php:42
49
+ msgid ""
50
+ " Disable caching of HEAD <acronym title=\"Hypertext Transfer Protocol\">"
51
+ "HTTP</acronym> requests"
52
+ msgstr ""
53
+ "Deaktivieren Sie das Caching von HEAD- <acronym title=\"Hypertext Transfer "
54
+ "Protocol\">HTTP</acronym> -Anforderungen"
55
+
56
+ #: Cdnfsd_StackPath_Popup_View_Zone.php:44
57
+ msgid " Domain:"
58
+ msgstr " Domain:"
59
+
60
+ #: UsageStatistics_Page_View.php:53 UsageStatistics_Page_View.php:274
61
+ #: UsageStatistics_Page_View.php:333
62
+ msgid " ms"
63
+ msgstr " Frau"
64
+
65
+ #: Minify_HelpPopup_View.php:15
66
+ msgid " not "
67
+ msgstr " nicht"
68
+
69
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
70
+ #: inc/options/cdn.php:91
71
+ msgid " objects from the %1$sCDN%2$s if needed."
72
+ msgstr " Objekte aus dem %1$sCDN%2$s, falls erforderlich."
73
+
74
+ #: inc/options/objectcache.php:47
75
+ msgid " operation."
76
+ msgstr " Betrieb."
77
+
78
+ #: Extension_CloudFlare_Plugin_Admin.php:300
79
+ msgid " or "
80
+ msgstr " oder"
81
+
82
+ #. translators: 1: Hourly request limit, 2: HTML anchor open tag, 3: HTML anchor close tag.
83
+ #: Extension_ImageService_Api.php:205
84
+ msgid " or %1$supgrade to Pro%2$s for higher limits"
85
+ msgstr " oder %1$sUpgrade auf Pro%2$s für höhere Limits"
86
+
87
+ #: Cdnfsd_StackPath_Popup_View_Zone.php:52
88
+ msgid " will handle"
89
+ msgstr " behandeln wird"
90
+
91
+ #. translators: 1 absolute path to wp-config.php, 2 cookie domain definition, 3 require once wp-setting.php definition.
92
+ #: Generic_Plugin_Admin.php:761
93
+ msgid ""
94
+ "%1$s could not be written, please edit config and add: %2$s before %3$s."
95
+ msgstr ""
96
+ "%1$s konnte nicht geschrieben werden, bitte bearbeiten Sie die Konfiguration "
97
+ "und fügen Sie hinzu: %2$s vor %3$s."
98
+
99
+ #. translators: 1 absolute path to wp-config.php, 2 cooke domain definition, 3 require once wp-setting.php definition.
100
+ #: Generic_Plugin_Admin.php:771
101
+ msgid "%1$s could not be written, please edit config and add:%2$s before %3$s."
102
+ msgstr ""
103
+ "%1$s konnte nicht geschrieben werden, bitte bearbeiten Sie die Konfiguration "
104
+ "und fügen Sie Folgendes hinzu: %2$s vor %3$s."
105
+
106
+ #. translators: 3: conversion of file permissions from base 10 to 8, 4: HTML input button for hiding message.
107
+ #: Generic_AdminNotes.php:37
108
+ msgid ""
109
+ "%1$s is write-able. When finished installing the plugin, change the "
110
+ "permissions back to the default: %2$s. Permissions are currently %3$s. %4$s"
111
+ msgstr ""
112
+ "%1$s ist schreibbar. Wenn Sie mit der Installation des Plugins fertig sind, "
113
+ "ändern Sie die Berechtigungen wieder auf die Standardeinstellung: %2$s. "
114
+ "Berechtigungen sind derzeit %3$s. %4$s"
115
+
116
+ #. translators: HTML input submit for updating media query string.
117
+ #: inc/options/browsercache.php:55
118
+ msgid ""
119
+ "%1$s to make existing file modifications visible to visitors with a primed "
120
+ "cache"
121
+ msgstr ""
122
+ "%1$s, um vorhandene Dateiänderungen für Besucher mit vorbereitetem Cache "
123
+ "sichtbar zu machen"
124
+
125
+ #. translators: %1 HTML input submit.
126
+ #: inc/options/minify.php:72
127
+ msgid ""
128
+ "%1$s to make existing file modifications visible to visitors with a primed "
129
+ "cache."
130
+ msgstr ""
131
+ "%1$s, um vorhandene Dateiänderungen für Besucher mit vorbereitetem Cache "
132
+ "sichtbar zu machen."
133
+
134
+ #. translators: 1 HTML acronym for CDN (content delivery network).
135
+ #: Generic_Plugin_Admin.php:797
136
+ msgid "%1$s was successfully purged."
137
+ msgstr "%1$s wurde erfolgreich gelöscht."
138
+
139
+ #. translators: 8 closing HTML p tag followed by closing HTML div tag.
140
+ #: Root_AdminActivation.php:104
141
+ msgid ""
142
+ "%1$s%2$sW3 Total Cache Error:%3$s Files and directories could not be "
143
+ "automatically removed to complete the deactivation. %4$sPlease execute "
144
+ "commands manually:%5$s%6$s%7$s%8$s"
145
+ msgstr ""
146
+ "%1$s%2$sW3 Gesamt-Cache-Fehler: %3$s Dateien und Verzeichnisse konnten nicht "
147
+ "automatisch entfernt werden, um die Deaktivierung abzuschließen. %4$sBitte "
148
+ "führen Sie die Befehle manuell aus:%5$s%6$s%7$s%8$s"
149
+
150
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
151
+ #: Cdn_RackSpaceCdn_Popup_View_Intro.php:31
152
+ #: Cdn_RackSpaceCloudFiles_Popup_View_Intro.php:32
153
+ #: Extension_NewRelic_GeneralPage_View.php:51
154
+ #: Extension_NewRelic_Popup_View_Intro.php:25 inc/options/cdn/rscf.php:22
155
+ msgid "%1$sAPI%2$s key:"
156
+ msgstr "%1$sAPI%2$s-Schlüssel:"
157
+
158
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
159
+ #: Extension_CloudFlare_Popup_View_Intro.php:32
160
+ msgid "%1$sAPI%2$s token / global key:"
161
+ msgstr "%1$sAPI%2$s Token / globaler Schlüssel:"
162
+
163
+ #. translators: 1 HTML line break, 2 opening HTML acronym tag, 3 closing HTML acronym tag.
164
+ #: inc/options/parts/memcached.php:102
165
+ msgid ""
166
+ "%1$sAvailable when memcached extension installed, built with %2$sSASL%3$s"
167
+ msgstr ""
168
+ "%1$sVerfügbar, wenn die Memcache-Erweiterung installiert ist, erstellt mit "
169
+ "%2$sSASL%3$s"
170
+
171
+ #. translators: 1: HTML strong open tag, 2: HTML strong close tag, 3: Label.
172
+ #: SetupGuide_Plugin_Admin.php:1330
173
+ msgid ""
174
+ "%1$sBrowser Cache%2$s headers set for JavaScript, CSS, and images? "
175
+ "%1$s%3$s%2$s"
176
+ msgstr ""
177
+ "%1$sBrowser-Cache%2$s-Header für JavaScript, CSS und Bilder festgelegt? "
178
+ "%1$s%3$s%2$s"
179
+
180
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
181
+ #. translators: 1 opening HTML abbr tag, 2 closing HTML abbr tag.
182
+ #: Cdn_GeneralPage_View.php:12 inc/options/common/header.php:96
183
+ msgid "%1$sCDN%2$s"
184
+ msgstr "%1$sCDN%2$s"
185
+
186
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
187
+ #: Cdnfsd_CloudFront_Page_View.php:42 Cdnfsd_MaxCdn_Page_View.php:45
188
+ #: Cdnfsd_StackPath2_Page_View.php:52 Cdnfsd_StackPath_Page_View.php:46
189
+ msgid "%1$sCDN%2$s %3$sCNAME%4$s:"
190
+ msgstr "%1$sCDN%2$s %3$sCNAME%4$s:"
191
+
192
+ #. translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
193
+ #: Cdn_MaxCdn_Page_View.php:52 Cdn_StackPath2_Page_View.php:79
194
+ #: Cdn_StackPath_Page_View.php:50
195
+ msgid "%1$sCDN%2$s %3$sHTTP%4$s %5$sCNAME%6$s:"
196
+ msgstr "%1$sCDN%2$s %3$sHTTP%4$s %5$sCNAME%6$s:"
197
+
198
+ #. translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
199
+ #: Cdn_MaxCdn_Page_View.php:110
200
+ msgid "%1$sCDN%2$s %3$sHTTP%4$sS %5$sCNAME%6$s:"
201
+ msgstr "%1$sCDN%2$s %3$sHTTP%4$sS %5$sCNAME%6$s:"
202
+
203
+ #. translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
204
+ #: Cdn_StackPath2_Page_View.php:141 Cdn_StackPath_Page_View.php:90
205
+ msgid "%1$sCDN%2$s %3$sHTTPS%4$s %5$sCNAME%6$s:"
206
+ msgstr "%1$sCDN%2$s %3$sHTTPS%4$s %5$sCNAME%6$s:"
207
+
208
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
209
+ #: Cdn_RackSpaceCdn_Page_View.php:49 Cdn_RackSpaceCloudFiles_Page_View.php:48
210
+ msgid "%1$sCDN%2$s host (%3$sCNAME%4$s target):"
211
+ msgstr "%1$sCDN%2$s-Host (%3$sCNAME%4$s-Ziel):"
212
+
213
+ #. translators: 3 closing HTML p tag followed by closing HTML div tag.
214
+ #: Extension_CloudFlare_Plugin_Admin.php:137
215
+ msgid ""
216
+ "%1$sCloudFlare plugin detected. We recommend removing the plugin as it "
217
+ "offers no additional capabilities when W3 Total Cache is installed. This "
218
+ "message will disappear when CloudFlare is removed. %2$s%3$s"
219
+ msgstr ""
220
+ "%1$sCloudFlare-Plugin erkannt. Wir empfehlen, das Plugin zu entfernen, da es "
221
+ "keine zusätzlichen Funktionen bietet, wenn W3 Total Cache installiert ist. "
222
+ "Diese Meldung verschwindet, wenn CloudFlare entfernt wird. %2$s%3$s"
223
+
224
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
225
+ #: Cdn_Highwinds_Popup_View_ConfigureCnamesForm.php:20
226
+ #: Cdn_RackSpaceCdn_Popup_View_ConfigureDomains.php:20
227
+ msgid "%1$sCNAME%2$ss to use"
228
+ msgstr "%1$sCNAME%2$ss zu verwenden"
229
+
230
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
231
+ #: inc/options/common/header.php:248 inc/options/minify.php:591
232
+ msgid "%1$sCSS%2$s"
233
+ msgstr "%1$sCSS%2$s"
234
+
235
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
236
+ #: inc/options/browsercache.php:357 inc/options/common/header.php:302
237
+ msgid "%1$sCSS%2$s &amp; %3$sJS%4$s"
238
+ msgstr "%1$sCSS%2$s &amp; %3$sJS%4$s"
239
+
240
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
241
+ #: inc/options/minify.php:703
242
+ msgid "%1$sCSS%2$s file management:"
243
+ msgstr "%1$sCSS%2$s Dateiverwaltung:"
244
+
245
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
246
+ #: inc/options/minify.php:610
247
+ msgid "%1$sCSS%2$s minify settings:"
248
+ msgstr "%1$sCSS%2$s Minimierungseinstellungen:"
249
+
250
+ #. translators: 3 closing HTML p tag.
251
+ #: Cdnfsd_MaxCdn_Popup.php:228
252
+ msgid "%1$scurrently set to %2$s%3$s"
253
+ msgstr "%1$sist derzeit auf %2$s%3$s eingestellt"
254
+
255
+ #. translators: 1: HTML strong open tag, 2: HTML strong close tag, 3: Label.
256
+ #: SetupGuide_Plugin_Admin.php:1308
257
+ msgid "%1$sDatabase Cache%2$s engine set to %1$s%3$s%2$s"
258
+ msgstr "%1$sDatenbank-Cache%2$s-Engine auf %1$s%3$s%2$s eingestellt"
259
+
260
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
261
+ #: Cdnfsd_GeneralPage_View.php:105
262
+ msgid "%1$sFSD%2$s %3$sCDN%4$s Type:"
263
+ msgstr "%1$sFSD%2$s %3$sCDN%4$s Typ:"
264
+
265
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
266
+ #: Cdnfsd_GeneralPage_View.php:57
267
+ msgid "%1$sFSD%2$s %3$sCDN%4$s:"
268
+ msgstr "%1$sFSD%2$s %3$sCDN%4$s:"
269
+
270
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
271
+ #: inc/options/cdn/ftp.php:66
272
+ msgid "%1$sFTP%2$s connection:"
273
+ msgstr "%1$sFTP%2$s-Verbindung:"
274
+
275
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
276
+ #: inc/options/cdn/ftp.php:38
277
+ msgid "%1$sFTP%2$s hostname:"
278
+ msgstr "%1$sFTP%2$s-Hostname:"
279
+
280
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
281
+ #: inc/options/cdn/ftp.php:125
282
+ msgid "%1$sFTP%2$s password:"
283
+ msgstr "%1$sFTP%2$s Passwort:"
284
+
285
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
286
+ #: inc/options/cdn/ftp.php:153
287
+ msgid "%1$sFTP%2$s path:"
288
+ msgstr "%1$sFTP%2$s-Pfad:"
289
+
290
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
291
+ #: inc/options/cdn/ftp.php:97
292
+ msgid "%1$sFTP%2$s username:"
293
+ msgstr "%1$sFTP%2$s Benutzername:"
294
+
295
+ #. translators: 1 opening HTML a tag to Google Maps Easy plugin, 2 closing HTML a tag.
296
+ #: UserExperience_LazyLoad_Page_View.php:159
297
+ msgid "%1$sGoogle Maps Easy%2$s plugin"
298
+ msgstr "%1$sGoogle Maps Easy%2$s-Plugin"
299
+
300
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
301
+ #: inc/options/browsercache.php:503 inc/options/common/header.php:206
302
+ #: inc/options/common/header.php:325 inc/options/minify.php:165
303
+ msgid "%1$sHTML%2$s &amp; %3$sXML%4$s"
304
+ msgstr "%1$sHTML%2$s und %3$sXML%4$s"
305
+
306
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
307
+ #: inc/options/minify.php:191
308
+ msgid "%1$sHTML%2$s minify settings:"
309
+ msgstr "%1$sHTML%2$s Minimierungseinstellungen:"
310
+
311
+ #. translators: 5 opening HTML acronym tag, 6 closing HTML acornym tag.
312
+ #: BrowserCache_Page_View_SectionSecurity.php:375
313
+ msgid ""
314
+ "%1$sHTTP%2$s Public Key Pinning (%3$sHPKP%4$s) is a security feature for "
315
+ "%5$sHTTP%6$sS websites that can prevent fraudulently issued certificates "
316
+ "from being used to impersonate existing secure websites."
317
+ msgstr ""
318
+ "%1$sHTTP%2$s Public Key Pinning (%3$sHPKP%4$s) ist eine Sicherheitsfunktion "
319
+ "für %5$sHTTP%6$sS-Websites, die verhindern kann, dass betrügerisch "
320
+ "ausgestellte Zertifikate verwendet werden, um sich als vorhandene sichere "
321
+ "Websites auszugeben."
322
+
323
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
324
+ #: BrowserCache_Page_View_SectionSecurity.php:170
325
+ msgid ""
326
+ "%1$sHTTP%2$s security headers provide another layer of protection for your "
327
+ "website by helping to mitigate attacks and security vulnerabilities."
328
+ msgstr ""
329
+ "Die Sicherheitsheader von %1$sHTTP%2$s bieten eine weitere Schutzebene für "
330
+ "Ihre Website, indem sie dazu beitragen, Angriffe und Sicherheitslücken "
331
+ "abzuschwächen."
332
+
333
+ #. translators: 11 opening HTML acronym tag, 12 closing HTML acornym tag.
334
+ #: BrowserCache_Page_View_SectionSecurity.php:246
335
+ msgid ""
336
+ "%1$sHTTP%2$s Strict-Transport-Security (%3$sHSTS%4$s) enforces secure "
337
+ "(%5$sHTTP%6$s over %7$sSSL%8$s/%9$sTLS%10$s) connections to the server. This "
338
+ "can help mitigate adverse effects caused by bugs and session leaks through "
339
+ "cookies and links. It also helps defend against man-in-the-middle attacks. "
340
+ "If there are %11$sSSL%12$s negotiation warnings then users will not be "
341
+ "permitted to ignore them."
342
+ msgstr ""
343
+ "%1$sHTTP%2$s Strict-Transport-Security (%3$sHSTS%4$s) erzwingt sichere "
344
+ "(%5$sHTTP%6$s über %7$sSSL%8$s/%9$sTLS%10$s) Verbindungen zum Server. Dies "
345
+ "kann dazu beitragen, nachteilige Auswirkungen zu mindern, die durch Fehler "
346
+ "und Sitzungslecks durch Cookies und Links verursacht werden. Es hilft auch "
347
+ "bei der Abwehr von Man-in-the-Middle-Angriffen. Wenn %11$sSSL%12$s "
348
+ "Verhandlungswarnungen vorhanden sind, dürfen Benutzer diese nicht ignorieren."
349
+
350
+ #. translators: 1 opening HTML span with background, 2 closing HTML span tag, 3 HTML line break tag.
351
+ #: inc/lightbox/self_test.php:18
352
+ msgid "%1$sInstalled/Ok/Yes/True/On%2$s: Functionality will work properly.%3$s"
353
+ msgstr ""
354
+ "%1$sInstalliert/Ok/Ja/True/On%2$s: Die Funktionalität wird ordnungsgemäß "
355
+ "funktionieren.%3$s"
356
+
357
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
358
+ #: Extension_CloudFlare_Page_View.php:639
359
+ msgid "%1$sIP%2$s geolocation:"
360
+ msgstr "%1$sIP%2$s-Geolokalisierung:"
361
+
362
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
363
+ #: inc/options/common/header.php:228 inc/options/minify.php:259
364
+ msgid "%1$sJS%2$s"
365
+ msgstr "%1$sJS%2$s"
366
+
367
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
368
+ #: inc/options/minify.php:440
369
+ msgid "%1$sJS%2$s file management:"
370
+ msgstr "%1$sJS%2$s Dateiverwaltung:"
371
+
372
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
373
+ #: inc/options/minify.php:277
374
+ msgid "%1$sJS%2$s minify settings:"
375
+ msgstr "%1$sJS%2$s Minimierungseinstellungen:"
376
+
377
+ #. translators: 1: HTML strong open tag, 2: HTML strong close tag, 3: Label.
378
+ #: SetupGuide_Plugin_Admin.php:1340
379
+ msgid "%1$sLazy Load%2$s images? %1$s%3$s%2$s"
380
+ msgstr "%1$sLazy Load%2$s Bilder? %1$s%3$s%2$s"
381
+
382
+ #. translators: 1: HTML achor open tag, 2: HTML anchor close tag.
383
+ #: Extension_ImageService_Plugin_Admin.php:948
384
+ #: Extension_ImageService_Plugin_Admin.php:1154
385
+ msgid "%1$sLearn more%2$s."
386
+ msgstr "%1$sWeitere Informationen%2$s."
387
+
388
+ #. translators: 1 opening HTML span with background, 2 closing HTML span tag, 3 HTML line break tag.
389
+ #: inc/lightbox/self_test.php:36
390
+ msgid ""
391
+ "%1$sNot detected/Not available/Off%2$s: May be installed, but cannot be "
392
+ "automatically confirmed. Functionality may be limited.%3$s"
393
+ msgstr ""
394
+ "%1$sNicht erkannt/Nicht verfügbar/Aus%2$s: Kann installiert werden, kann "
395
+ "aber nicht automatisch bestätigt werden. Die Funktionalität kann "
396
+ "eingeschränkt sein.%3$s"
397
+
398
+ #. translators: 1 opening HTML span with background, 2 closing HTML span tag, 3 HTML line break tag.
399
+ #: inc/lightbox/self_test.php:54
400
+ msgid ""
401
+ "%1$sNot installed/Error/No/False%2$s: Plugin or some functions may not work."
402
+ "%3$s"
403
+ msgstr ""
404
+ "%1$sNicht installiert/Fehler/Nein/Falsch%2$s: Plugin oder einige Funktionen "
405
+ "funktionieren möglicherweise nicht.%3$s"
406
+
407
+ #. translators: 1: HTML strong open tag, 2: HTML strong close tag, 3: Label.
408
+ #: SetupGuide_Plugin_Admin.php:1319
409
+ msgid "%1$sObject Cache%2$s engine set to %1$s%3$s%2$s"
410
+ msgstr "%1$sObjekt-Cache%2$s-Engine auf %1$s%3$s%2$s gesetzt"
411
+
412
+ #. translators: 3 opening HTML a tag to W3TC DatabaseCache admin page, 4 closing HTML a tag.
413
+ #: inc/options/install.php:177
414
+ msgid ""
415
+ "%1$sOptional:%2$s On the \"%3$sDatabase Cache%4$s\" tab the recommended "
416
+ "settings are preset. If using a shared hosting account use the \"disk\" "
417
+ "method with caution; in either of these cases the response time of the disk "
418
+ "may not be fast enough, so this option is disabled by default."
419
+ msgstr ""
420
+ "%1$sOptional:%2$s Auf der Registerkarte \"%3$sDatenbank-Cache%4$s\" sind die "
421
+ "empfohlenen Einstellungen voreingestellt. Wenn Sie ein gemeinsam genutztes "
422
+ "Hosting-Konto verwenden, verwenden Sie die \"Disk\"-Methode mit Vorsicht; In "
423
+ "beiden Fällen ist die Reaktionszeit der Festplatte möglicherweise nicht "
424
+ "schnell genug, daher ist diese Option standardmäßig deaktiviert."
425
+
426
+ #. translators: 3 opening HTML a tag to W3TC ObjectCache admin page, 4 closing HTML a tag.
427
+ #: inc/options/install.php:201
428
+ msgid ""
429
+ "%1$sOptional:%2$s On the \"%3$sObject Cache%4$s\" tab the recommended "
430
+ "settings are preset. If using a shared hosting account use the \"disk\" "
431
+ "method with caution, the response time of the disk may not be fast enough, "
432
+ "so this option is disabled by default. Test this option with and without "
433
+ "database cache to ensure that it provides a performance increase."
434
+ msgstr ""
435
+ "%1$sOptional:%2$s Auf der Registerkarte \"%3$sObject Cache%4$s\" sind die "
436
+ "empfohlenen Einstellungen voreingestellt. Wenn Sie ein Shared-Hosting-Konto "
437
+ "verwenden, verwenden Sie die „Datenträger“-Methode mit Vorsicht, da die "
438
+ "Reaktionszeit des Datenträgers möglicherweise nicht schnell genug ist, "
439
+ "sodass diese Option standardmäßig deaktiviert ist. Testen Sie diese Option "
440
+ "mit und ohne Datenbank-Cache, um sicherzustellen, dass sie eine "
441
+ "Leistungssteigerung bietet."
442
+
443
+ #. translators: 3 opening HTML a tag to W3TC Cache Groups admin page, 4 closing HTML a tag.
444
+ #: inc/options/install.php:225
445
+ msgid ""
446
+ "%1$sOptional:%2$s On the \"%3$sUser Agent Groups%4$s\" tab, specify any user "
447
+ "agents, like mobile phones if a mobile theme is used."
448
+ msgstr ""
449
+ "%1$sOptional:%2$s Geben Sie auf der Registerkarte "
450
+ "\"%3$sBenutzeragentengruppen%4$s\" alle Benutzeragenten an, z. B. "
451
+ "Mobiltelefone, wenn ein mobiles Design verwendet wird."
452
+
453
+ #. translators: 1: HTML strong open tag, 2: HTML strong close tag, 3: Label.
454
+ #: SetupGuide_Plugin_Admin.php:1286
455
+ msgid "%1$sPage Cache%2$s engine set to %1$s%3$s%2$s"
456
+ msgstr "%1$sSeiten-Cache%2$s-Engine auf %1$s%3$s%2$s eingestellt"
457
+
458
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
459
+ #: inc/options/common/header.php:377 inc/options/install.php:306
460
+ msgid "%1$sPHP%2$s Modules"
461
+ msgstr "%1$sPHP%2$s Module"
462
+
463
+ #. translators: 13 opening HTML acronym tag, 14 closing HTML acronym tag.
464
+ #: inc/options/install.php:140
465
+ msgid ""
466
+ "%1$sRecommended:%2$s If you already have a content delivery network "
467
+ "(%3$sCDN%4$s) provider, proceed to the \"%5$sContent Delivery Network%6$s\" "
468
+ "tab and populate the fields and set your preferences. If you do not use the "
469
+ "Media Library, you will need to import your images etc into the default "
470
+ "locations. Use the Media Library Import Tool on the \"Content Delivery "
471
+ "Network\" tab to perform this task. If you do not have a %7$sCDN%8$s "
472
+ "provider, you can still improve your site's performance using the \"Self-"
473
+ "hosted\" method. On your own server, create a subdomain and matching "
474
+ "%9$sDNS%10$s Zone record; e.g. static.domain.com and configure %11$sFTP%12$s "
475
+ "options on the \"Content Delivery Network\" tab accordingly. Be sure to "
476
+ "%13$sFTP%14$s upload the appropriate files, using the available upload "
477
+ "buttons."
478
+ msgstr ""
479
+ "%1$sEmpfohlen:%2$s Wenn Sie bereits einen Content-Delivery-Network-Anbieter "
480
+ "(%3$sCDN%4$s) haben, fahren Sie mit der Registerkarte \"%5$sContent-Delivery-"
481
+ "Network%6$s\" fort und füllen Sie die Felder und aus legen Sie Ihre "
482
+ "Einstellungen fest. Wenn Sie die Medienbibliothek nicht verwenden, müssen "
483
+ "Sie Ihre Bilder usw. in die Standardspeicherorte importieren. Verwenden Sie "
484
+ "das Media Library Import Tool auf der Registerkarte „Content Delivery "
485
+ "Network“, um diese Aufgabe auszuführen. Wenn Sie keinen %7$sCDN%8$s-Anbieter "
486
+ "haben, können Sie die Leistung Ihrer Website dennoch verbessern, indem Sie "
487
+ "die Methode \"Selbst gehostet\" verwenden. Erstellen Sie auf Ihrem eigenen "
488
+ "Server eine Subdomain und einen passenden %9$sDNS%10$s-Zoneneintrag; z.B. "
489
+ "static.domain.com und konfigurieren Sie %11$sFTP%12$s-Optionen auf der "
490
+ "Registerkarte \"Content Delivery Network\" entsprechend. Stellen Sie sicher, "
491
+ "%13$sFTP%14$s die entsprechenden Dateien hochzuladen, indem Sie die "
492
+ "verfügbaren Upload-Schaltflächen verwenden."
493
+
494
+ #. translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
495
+ #: inc/options/install.php:106
496
+ msgid ""
497
+ "%1$sRecommended:%2$s On the \"%3$sBrowser Cache%4$s\" tab, %5$sHTTP%6$s "
498
+ "compression is enabled by default. Make sure to enable other options to suit "
499
+ "your goals."
500
+ msgstr ""
501
+ "%1$sEmpfohlen:%2$s Auf der Registerkarte \"%3$sBrowser-Cache%4$s\" ist die "
502
+ "%5$sHTTP%6$s-Komprimierung standardmäßig aktiviert. Stellen Sie sicher, dass "
503
+ "Sie andere Optionen aktivieren, die Ihren Zielen entsprechen."
504
+
505
+ #. translators: 13 closing HTML acronym tag, 14 closing HTML a tag.
506
+ #: inc/options/install.php:68
507
+ msgid ""
508
+ "%1$sRecommended:%2$s On the \"%3$sMinify%4$s\" tab all of the recommended "
509
+ "settings are preset. Use the help button to simplify discovery of your "
510
+ "%5$sCSS%6$s and %7$sJS%8$s files and groups. Pay close attention to the "
511
+ "method and location of your %9$sJS%10$s group embeddings. See the plugin's "
512
+ "%11$s%12$sFAQ%13$s%14$s for more information on usage."
513
+ msgstr ""
514
+ "%1$sEmpfohlen:%2$s Auf der Registerkarte \"%3$sMinify%4$s\" sind alle "
515
+ "empfohlenen Einstellungen voreingestellt. Verwenden Sie die "
516
+ "Hilfeschaltfläche, um die Suche nach Ihren %5$sCSS%6$s- und %7$sJS%8$s-"
517
+ "Dateien und -Gruppen zu vereinfachen. Achten Sie genau auf die Methode und "
518
+ "den Ort Ihrer %9$sJS%10$s-Gruppeneinbettungen. Weitere Informationen zur "
519
+ "Verwendung finden Sie in den %11$s%12$sFAQ%13$s%14$s des Plugins."
520
+
521
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
522
+ #: inc/options/pgcache.php:418
523
+ msgid "%1$sREST%2$s %3$sAPI%4$s"
524
+ msgstr "%1$sREST%2$s %3$sAPI%4$s"
525
+
526
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
527
+ #: Extension_NewRelic_Page_View_Apm.php:74
528
+ msgid "%1$sRUM%2$s ApDex Threshold:"
529
+ msgstr "%1$sRUM%2$s ApDex-Schwellenwert:"
530
+
531
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
532
+ #: Extension_NewRelic_Page_View_Apm.php:103
533
+ msgid "%1$sRUM%2$s enabled:"
534
+ msgstr "%1$sRUM%2$s aktiviert:"
535
+
536
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
537
+ #: inc/options/cdn/ftp.php:288
538
+ msgid "%1$sSFTP%2$s private key:"
539
+ msgstr "%1$sSFTP%2$s privater Schlüssel:"
540
+
541
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
542
+ #: inc/options/cdn/ftp.php:260
543
+ msgid "%1$sSFTP%2$s public key:"
544
+ msgstr "%1$sSFTP%2$s öffentlicher Schlüssel:"
545
+
546
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
547
+ #: Extension_CloudFlare_Page_View.php:741
548
+ msgid ""
549
+ "%1$sSSL%2$s encrypts your visitor's connection and safeguards credit card "
550
+ "numbers and other personal data to and from your website."
551
+ msgstr ""
552
+ "%1$sSSL%2$s verschlüsselt die Verbindung Ihres Besuchers und schützt "
553
+ "Kreditkartennummern und andere persönliche Daten zu und von Ihrer Website."
554
+
555
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
556
+ #: Cdn_Highwinds_Page_View.php:60 Cdn_LimeLight_Page_View.php:31
557
+ #: Cdn_MaxCdn_Page_View.php:168 Cdn_RackSpaceCloudFiles_Page_View.php:78
558
+ #: Cdn_StackPath2_Page_View.php:200 Cdn_StackPath_Page_View.php:127
559
+ #: inc/options/cdn/akamai.php:55 inc/options/cdn/att.php:29
560
+ #: inc/options/cdn/azure.php:38 inc/options/cdn/cf.php:85
561
+ #: inc/options/cdn/cf2.php:77 inc/options/cdn/cotendo.php:36
562
+ #: inc/options/cdn/edgecast.php:29 inc/options/cdn/ftp.php:182
563
+ #: inc/options/cdn/mirror.php:15 inc/options/cdn/rscf.php:72
564
+ #: inc/options/cdn/s3.php:91 inc/options/cdn/s3_compatible.php:67
565
+ msgid "%1$sSSL%2$s support:"
566
+ msgstr "%1$sSSL%2$s-Unterstützung:"
567
+
568
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
569
+ #: Extension_CloudFlare_Page_View.php:718
570
+ msgid "%1$sSSL%2$s:"
571
+ msgstr "%1$sSSL%2$s:"
572
+
573
+ #. translators: 3: closing HTML p tag.
574
+ #: Generic_AdminNotes.php:464
575
+ msgid ""
576
+ "%1$sThe following memcached servers are not responding or not running:"
577
+ "%2$sThis message will automatically disappear once the issue is resolved.%3$s"
578
+ msgstr ""
579
+ "%1$sDie folgenden Memcache-Server reagieren nicht oder laufen nicht:"
580
+ "%2$sDiese Meldung verschwindet automatisch, sobald das Problem behoben ist."
581
+ "%3$s"
582
+
583
+ #. translators: 3 HTML strong tag indicating W3TC version, 4 closing HTML p tag.
584
+ #: inc/options/dashboard.php:22
585
+ msgid "%1$sThe plugin is currently %2$s in %3$s mode.%4$s"
586
+ msgstr "%1$sDas Plug-in ist derzeit %2$s im %3$s-Modus.%4$s"
587
+
588
+ #. translators: 1: HTML break, 2: WordPress version string, 3: HTML archor open tag, 4: HTML archor close tag.
589
+ #: Extension_ImageService_Plugin_Admin.php:87
590
+ msgid ""
591
+ "%1$sThis extension works best in WordPress version 5.8 and higher. You are "
592
+ "running WordPress version %2$s. Please %3$supdate now%4$s to benefit from "
593
+ "this feature."
594
+ msgstr ""
595
+ "%1$sDiese Erweiterung funktioniert am besten in WordPress Version 5.8 und "
596
+ "höher. Sie verwenden die WordPress-Version %2$s. Bitte %3$saktualisiere "
597
+ "jetzt%4$s, um von dieser Funktion zu profitieren."
598
+
599
+ #. translators: 1: HTML p open tag, 2: WordPress version string, 3: HTML anchor open tag, 4: HTML anchor close tag, 5: HTML p close tag.
600
+ #: FeatureShowcase_Plugin_Admin.php:225
601
+ msgid ""
602
+ "%1$sThis feature works best in WordPress version 5.8 and higher. You are "
603
+ "running WordPress version %2$s. Please %3$supdate now%4$s to benefit from "
604
+ "this feature.%5$s"
605
+ msgstr ""
606
+ "%1$sDiese Funktion funktioniert am besten in WordPress-Version 5.8 und höher."
607
+ " Sie verwenden die WordPress-Version %2$s. Bitte %3$saktualisiere jetzt%4$s, "
608
+ "um von dieser Funktion zu profitieren.%5$s"
609
+
610
+ #. translators: 1: HTML strong open tag, 2: HTML strong close tag.
611
+ #: SetupGuide_Plugin_Admin.php:1297
612
+ msgid "%1$sTime to First Byte%2$s has changed by %1$s%3$s%2$s"
613
+ msgstr "%1$sZeit bis zum ersten Byte%2$s hat sich um %1$s%3$s%2$s geändert"
614
+
615
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
616
+ #: Extension_CloudFlare_Page_View.php:801
617
+ msgid "%1$sTLS%2$s 1.2 only:"
618
+ msgstr "%1$sTLS%2$s nur 1.2:"
619
+
620
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
621
+ #: Extension_CloudFlare_Page_View.php:840
622
+ msgid ""
623
+ "%1$sTLS%2$s Client authentication requires CloudFlare to connect to your "
624
+ "origin server using a client certificate"
625
+ msgstr ""
626
+ "Für die %1$sTLS%2$s-Client-Authentifizierung muss CloudFlare eine Verbindung "
627
+ "zu Ihrem Ursprungsserver mithilfe eines Client-Zertifikats herstellen"
628
+
629
+ #. translators: 1 HTML line break.
630
+ #: inc/options/cdn.php:162
631
+ msgid ""
632
+ "%1$sTo enable that, switch off \"Use single network configuration file for "
633
+ "all sites\" option at General settings page and use specific settings for "
634
+ "each blog."
635
+ msgstr ""
636
+ "%1$sUm dies zu aktivieren, schalten Sie die Option \"Eine einzige "
637
+ "Netzwerkkonfigurationsdatei für alle Sites verwenden\" auf der Seite "
638
+ "\"Allgemeine Einstellungen\" aus und verwenden Sie spezifische Einstellungen "
639
+ "für jeden Blog."
640
+
641
+ #. translators: 1 opening HTML span tag, 2 closing HTML span tag.
642
+ #: Licensing_Plugin_Admin.php:37
643
+ msgid "%1$sUpgrade Performance%2$s"
644
+ msgstr "%1$sLeistung verbessern%2$s"
645
+
646
+ #. translators: 1 opening HTML strong tag, 2 closing HTML strong tag, 3 database driver file path.
647
+ #: wp-content/db.php:67
648
+ msgid "%1$sW3 Total Cache Error:%2$s database driver doesn't exist: %3$s."
649
+ msgstr ""
650
+ "%1$sW3 Gesamt-Cache-Fehler: %2$s-Datenbanktreiber existiert nicht: %3$s."
651
+
652
+ #. translators: 4 file path, 5 closing HTML strong tag, 6 HTML line break.
653
+ #: wp-content/db.php:32
654
+ msgid ""
655
+ "%1$sW3 Total Cache Error:%2$s some files appear to be missing or out of "
656
+ "place. Please re-install plugin or remove %3$s%4$s%5$s. %6$s"
657
+ msgstr ""
658
+ "%1$sW3 Gesamt-Cache-Fehler:%2$s einige Dateien scheinen zu fehlen oder sind "
659
+ "fehl am Platz. Bitte installieren Sie das Plugin neu oder entfernen Sie "
660
+ "%3$s%4$s%5$s. %6$s"
661
+
662
+ #. translators: 1 opening HTML a tag to WordPress Google Map Plugin, 2 closing HTML a tag.
663
+ #: UserExperience_LazyLoad_Page_View.php:128
664
+ msgid "%1$sWP Google Map Plugin%2$s plugin"
665
+ msgstr "%1$sWP Google Map-Plug-in%2$s-Plug-in"
666
+
667
+ #. translators: 1 opening HTML a tag to WordPress Google Maps, 2 closing HTML a tag.
668
+ #: UserExperience_LazyLoad_Page_View.php:190
669
+ msgid "%1$sWP Google Maps%2$s plugin"
670
+ msgstr "%1$sWP Google Maps%2$s-Plugin"
671
+
672
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
673
+ #: Cdn_Highwinds_Page_View.php:31
674
+ msgid "%1CDN%2 host (%3$sCNAME%4$s target):"
675
+ msgstr "%1CDN%2-Host (%3$sCNAME%4$s-Ziel):"
676
+
677
+ #: Util_Activation.php:57
678
+ msgid "%s<br />then %s."
679
+ msgstr "%s<br /> dann %s."
680
+
681
+ #: UsageStatistics_Page_DbRequests_View.php:13
682
+ #: UsageStatistics_Page_ObjectCacheLog_View.php:13
683
+ #: UsageStatistics_Page_PageCacheRequests_View.php:13
684
+ msgid "&lt; Back To Statistics"
685
+ msgstr "&lt; Zurück zu den Statistiken"
686
+
687
+ #: Extension_Swarmify_Page_View.php:50
688
+ msgid "&lt;video&gt;:"
689
+ msgstr "&lt;video&gt;:"
690
+
691
+ #. translators: 1 opening HTML acornym tag, 2 closing HTML acronym tag.
692
+ #: inc/lightbox/self_test.php:243
693
+ msgid "(required for %1$sCDN%2$s support)"
694
+ msgstr "(erforderlich für %1$sCDN%2$s-Unterstützung)"
695
+
696
+ #: inc/lightbox/self_test.php:152
697
+ msgid ""
698
+ "(required for Amazon S3, Amazon CloudFront, Rackspace CloudFiles support)"
699
+ msgstr ""
700
+ "(erforderlich für Amazon S3, Amazon CloudFront, Rackspace CloudFiles-"
701
+ "Unterstützung)"
702
+
703
+ #: inc/lightbox/self_test.php:172
704
+ msgid "(required for brotli compression support)"
705
+ msgstr "(erforderlich für die Unterstützung der Brotli-Komprimierung)"
706
+
707
+ #: inc/lightbox/self_test.php:420
708
+ msgid "(required for disk enhanced Page Cache and Browser Cache)"
709
+ msgstr ""
710
+ "(erforderlich für festplattenoptimierten Seiten-Cache und Browser-Cache)"
711
+
712
+ #: inc/lightbox/self_test.php:162
713
+ msgid "(required for gzip compression support)"
714
+ msgstr "(erforderlich für gzip-Komprimierungsunterstützung)"
715
+
716
+ #: inc/lightbox/self_test.php:226
717
+ msgid "(required for HTML Tidy minifier support)"
718
+ msgstr "(erforderlich für die Unterstützung von HTML Tidy-Minifiern)"
719
+
720
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
721
+ #: inc/lightbox/self_test.php:274
722
+ msgid "(required for NetDNA / MaxCDN %1$sCDN%2$s purge support)"
723
+ msgstr ""
724
+ "(erforderlich für NetDNA / MaxCDN %1$sCDN%2$s Bereinigungsunterstützung)"
725
+
726
+ #: inc/lightbox/self_test.php:142
727
+ msgid "(required for Rackspace Cloud Files support)"
728
+ msgstr "(erforderlich für die Unterstützung von Rackspace Cloud Files)"
729
+
730
+ #. translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
731
+ #: inc/lightbox/self_test.php:332
732
+ msgid ""
733
+ "(required for Self-hosted (%1$sFTP%2$s) %3$sCDN%4$s %5$sSFTP%6$s support)"
734
+ msgstr ""
735
+ "(erforderlich für selbst gehostete (%1$sFTP%2$s) %3$sCDN%4$s %5$sSFTP%6$s-"
736
+ "Unterstützung)"
737
+
738
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
739
+ #: inc/lightbox/self_test.php:116
740
+ msgid "(required for Self-hosted (%1$sFTP%2$s) %3$sCDN%4$s support)"
741
+ msgstr ""
742
+ "(erforderlich für selbst gehostete (%1$sFTP%2$s) %3$sCDN%4$s-Unterstützung)"
743
+
744
+ #: inc/options/cdn/common/cnames-readonly.php:18
745
+ #: inc/options/cdn/common/cnames.php:33
746
+ msgid "(reserved for CSS)"
747
+ msgstr "(reserviert für CSS)"
748
+
749
+ #: inc/options/cdn/common/cnames-readonly.php:22
750
+ #: inc/options/cdn/common/cnames.php:41
751
+ msgid "(reserved for JS after <body>)"
752
+ msgstr "(reserviert für JS nach <body>)"
753
+
754
+ #: inc/options/cdn/common/cnames-readonly.php:24
755
+ #: inc/options/cdn/common/cnames.php:45
756
+ msgid "(reserved for JS before </body>)"
757
+ msgstr "(reserviert für JS vor </body>)"
758
+
759
+ #: inc/options/cdn/common/cnames-readonly.php:20
760
+ #: inc/options/cdn/common/cnames.php:37
761
+ msgid "(reserved for JS in <head>)"
762
+ msgstr "(reserviert für JS in <head>)"
763
+
764
+ #: CacheGroups_Plugin_Admin_View.php:84 CacheGroups_Plugin_Admin_View.php:199
765
+ msgid "-- Pass-through --"
766
+ msgstr "-- Durchgang --"
767
+
768
+ #. translators: 1 opening HTML a tag to W3TC PageCache admin page, 2 closing HTML a tag.
769
+ #: inc/options/install.php:42
770
+ msgid ""
771
+ "1. The \"Compatibility Mode\" option found in the advanced section of the "
772
+ "%1$s\"Page Cache Settings\"%2$s tab will enable functionality that optimizes "
773
+ "the interoperablity of caching with WordPress, is disabled by default, but "
774
+ "highly recommended. Years of testing in hundreds of thousands of "
775
+ "installations have helped us learn how to make caching behave well with "
776
+ "WordPress. The tradeoff is that disk enhanced page cache performance under "
777
+ "load tests will be decreased by ~20%% at scale."
778
+ msgstr ""
779
+ "1. Die Option \"Kompatibilitätsmodus\" im erweiterten Abschnitt der "
780
+ "Registerkarte \"%1$s\"Seiten-Cache-Einstellungen\"%2$s aktiviert Funktionen, "
781
+ "die die Interoperabilität des Cachings mit WordPress optimieren. Sie ist "
782
+ "standardmäßig deaktiviert, wird jedoch dringend empfohlen. Jahrelange Tests "
783
+ "in Hunderttausenden von Installationen haben uns geholfen, zu lernen, wie "
784
+ "man Caching mit WordPress gut verhält. Der Kompromiss besteht darin, dass "
785
+ "die Leistung des datenträgerverstärkten Seitencaches bei Lasttests um ca. "
786
+ "20 %% verringert wird."
787
+
788
+ #: BrowserCache_ConfigLabels.php:10
789
+ msgid "404 error exception list:"
790
+ msgstr "404-Fehler-Ausnahmeliste:"
791
+
792
+ #: Generic_ConfigLabels.php:9
793
+ msgid "<acronym title=\"Application Programming Interface\">API</acronym> key:"
794
+ msgstr "<acronym title=\"Programmierschnittstelle\">API-</acronym> Schlüssel:"
795
+
796
+ #: Generic_ConfigLabels.php:10
797
+ msgid ""
798
+ "<acronym title=\"Application Programming Interface\">API</acronym> secret:"
799
+ msgstr "<acronym title=\"Programmierschnittstelle\">API-</acronym> Geheimnis:"
800
+
801
+ #: Minify_ConfigLabels.php:12
802
+ msgid "<acronym title=\"Cascading Style Sheets\">CSS</acronym> minifier:"
803
+ msgstr "<acronym title=\"Cascading Style Sheets\">CSS</acronym> -Minifier:"
804
+
805
+ #: Cdn_ConfigLabels.php:9
806
+ msgid "<acronym title=\"Content Delivery Network\">CDN</acronym>"
807
+ msgstr "<acronym title=\"Content-Delivery-Netzwerk\">CDN</acronym>"
808
+
809
+ #: Cdn_ConfigLabels.php:8
810
+ msgid "<acronym title=\"Content Delivery Network\">CDN</acronym> Type:"
811
+ msgstr "<acronym title=\"Content-Delivery-Netzwerk\">CDN</acronym> -Typ:"
812
+
813
+ #: Cdn_ConfigLabels.php:7
814
+ msgid "<acronym title=\"Content Delivery Network\">CDN</acronym>:"
815
+ msgstr "<acronym title=\"Content-Delivery-Netzwerk\">CDN</acronym> :"
816
+
817
+ #: Cdn_ConfigLabels.php:10
818
+ msgid ""
819
+ "<acronym title=\"Full Site Delivery\">FSD</acronym> <acronym title=\"Content "
820
+ "Delivery Network\">CDN</acronym>"
821
+ msgstr ""
822
+ "<acronym title=\"Vollständige Site-Bereitstellung\">FSD-</acronym> <acronym "
823
+ "title=\"Content-Delivery-Netzwerk\">CDN</acronym>"
824
+
825
+ #: Minify_ConfigLabels.php:10
826
+ msgid "<acronym title=\"Hypertext Markup Language\">HTML</acronym> minifier:"
827
+ msgstr ""
828
+ "<acronym title=\"Hypertext-Auszeichnungssprache\">HTML</acronym> -Minifier:"
829
+
830
+ #: BrowserCache_ConfigLabels.php:52
831
+ msgid ""
832
+ "<acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> Public Key "
833
+ "Pinning"
834
+ msgstr ""
835
+ "Anheften öffentlicher <acronym title=\"Hypertext Transfer Protocol\">"
836
+ "HTTP</acronym> -Schlüssel"
837
+
838
+ #: BrowserCache_ConfigLabels.php:45
839
+ msgid ""
840
+ "<acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> Strict "
841
+ "Transport Security policy"
842
+ msgstr ""
843
+ "Strenge <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> -"
844
+ "Transportsicherheitsrichtlinie"
845
+
846
+ #: Minify_ConfigLabels.php:11
847
+ msgid "<acronym title=\"JavaScript\">JS</acronym> minifier:"
848
+ msgstr "<acronym title=\"JavaScript\">JS</acronym> -Minifier:"
849
+
850
+ #: inc/options/parts/memcached_extension.php:64
851
+ msgid ""
852
+ "<br>Available when memcached extension installed, built with <acronym "
853
+ "title=\"Simple Authentication and Security Layer\">SASL</acronym>"
854
+ msgstr ""
855
+ "<br>Verfügbar, wenn die memcached-Erweiterung installiert ist und mit "
856
+ "<acronym title=\"Einfache Authentifizierungs- und Sicherheitsschicht\">SASL "
857
+ "erstellt</acronym> wurde"
858
+
859
+ #: Util_Activation.php:72
860
+ msgid "<li><strong style=\"color: #f00;\">chmod 777 %s</strong></li>"
861
+ msgstr "<li><strong style=\"color: #f00;\">chmod 777 %s</strong></li>"
862
+
863
+ #: Cli.php:219
864
+ msgid "<name> parameter is not specified"
865
+ msgstr "Der <name>-Parameter ist nicht angegeben"
866
+
867
+ #: Cli.php:295
868
+ msgid "<operation> parameter is not specified"
869
+ msgstr "Der Parameter <operation> ist nicht angegeben"
870
+
871
+ #: Util_Activation.php:85
872
+ msgid ""
873
+ "<strong>%s</strong> could not be created, <strong>open_basedir</strong> "
874
+ "restriction in effect, please check your php.ini settings:<br /><strong "
875
+ "style=\"color: #f00;\">open_basedir = \"%s\"</strong>"
876
+ msgstr ""
877
+ "<strong>%s</strong> konnte nicht erstellt werden, <strong>open_basedir-"
878
+ "</strong> Beschränkung in Kraft, bitte überprüfen Sie Ihre php.ini-"
879
+ "Einstellungen:<br /> <strong style=\"color: #f00;\">open_basedir = &quot;"
880
+ "%s&quot;</strong>"
881
+
882
+ #: Util_Activation.php:80
883
+ msgid ""
884
+ "<strong>%s</strong> could not be created, please run following command:<br />"
885
+ "%s"
886
+ msgstr ""
887
+ "<strong>%s</strong> konnte nicht erstellt werden, bitte führen Sie folgenden "
888
+ "Befehl aus:<br /> %s"
889
+
890
+ #: Util_Activation.php:239
891
+ msgid ""
892
+ "<strong>W3 Total Cache Error:</strong> Files and directories could not be "
893
+ "automatically deleted."
894
+ msgstr ""
895
+ "<strong>W3 Total Cache Error:</strong> Dateien und Verzeichnisse konnten "
896
+ "nicht automatisch gelöscht werden."
897
+
898
+ #: Cli.php:271
899
+ msgid "<value> parameter "
900
+ msgstr "<Wert>-Parameter"
901
+
902
+ #: Cli.php:260
903
+ msgid "<value> parameter is not specified"
904
+ msgstr "Der Parameter <Wert> ist nicht angegeben"
905
+
906
+ #: Minify_ConfigLabels.php:30
907
+ msgid "@import handling:"
908
+ msgstr "@Importabwicklung:"
909
+
910
+ #. translators: 1 queue interval value.
911
+ #: Cdn_Plugin.php:287
912
+ msgid "[W3TC] CDN auto upload (every %1$d seconds)"
913
+ msgstr "[W3TC] Automatischer CDN-Upload (alle %1$d Sekunden)"
914
+
915
+ #. translators: 1 queue interval value.
916
+ #: Cdn_Plugin.php:269
917
+ msgid "[W3TC] CDN queue process (every %1$d seconds)"
918
+ msgstr "[W3TC] CDN-Warteschlangenprozess (alle %1$d Sekunden)"
919
+
920
+ #. translators: 1 interval in seconds.
921
+ #: DbCache_Plugin.php:99
922
+ msgid "[W3TC] Database Cache file GC (every %d seconds)"
923
+ msgstr "[W3TC] Datenbank-Cache-Datei GC (alle %d Sekunden)"
924
+
925
+ #. translators: 1 interval in seconds.
926
+ #: ObjectCache_Plugin.php:112
927
+ msgid "[W3TC] Object Cache file GC (every %d seconds)"
928
+ msgstr "[W3TC] Objekt-Cache-Datei GC (alle %d Sekunden)"
929
+
930
+ #. translators: 1 interval in seconds.
931
+ #: PgCache_Plugin.php:157
932
+ msgid "[W3TC] Page Cache file GC (every %d seconds)"
933
+ msgstr "[W3TC] Seiten-Cache-Datei GC (alle %d Sekunden)"
934
+
935
+ #. translators: 1 interval in seconds.
936
+ #: PgCache_Plugin.php:170
937
+ msgid "[W3TC] Page Cache prime (every %d seconds)"
938
+ msgstr "[W3TC] Page Cache prime (alle %d Sekunden)"
939
+
940
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
941
+ #: inc/options/pgcache.php:272
942
+ msgid ""
943
+ "A %1$scompliant%2$s sitemap can be used to specify the pages to maintain in "
944
+ "the primed cache. Pages will be cached according to the priorities specified "
945
+ "in the %3$sXML%4$s file."
946
+ msgstr ""
947
+ "Eine %1$skonforme%2$s Sitemap kann verwendet werden, um die Seiten anzugeben,"
948
+ " die im vorbereiteten Cache beibehalten werden sollen. Seiten werden gemäß "
949
+ "den in der %3$sXML%4$s-Datei angegebenen Prioritäten zwischengespeichert."
950
+
951
+ #: CacheGroups_Plugin_Admin_View.php:213
952
+ msgid ""
953
+ "A 302 redirect is used to send this group of referrers to another hostname "
954
+ "(domain)."
955
+ msgstr ""
956
+ "Eine 302-Weiterleitung wird verwendet, um diese Gruppe von Referrern an "
957
+ "einen anderen Hostnamen (Domain) zu senden."
958
+
959
+ #: CacheGroups_Plugin_Admin_View.php:104
960
+ msgid ""
961
+ "A 302 redirect is used to send this group of users to another hostname "
962
+ "(domain); recommended if a 3rd party service provides a mobile version of "
963
+ "your site."
964
+ msgstr ""
965
+ "Eine 302-Umleitung wird verwendet, um diese Benutzergruppe an einen anderen "
966
+ "Hostnamen (Domain) zu senden; empfohlen, wenn ein Drittanbieterdienst eine "
967
+ "mobile Version Ihrer Website bereitstellt."
968
+
969
+ #: Cdn_AdminNotes.php:203
970
+ msgid ""
971
+ "A configuration issue prevents <acronym title=\"Content Delivery Network\">"
972
+ "CDN</acronym> from working:\n"
973
+ " The <strong>\"Replace default "
974
+ "hostname with\"</strong>\n"
975
+ " field cannot be empty. Enter "
976
+ "<acronym\n"
977
+ " title=\"Content Delivery Network\">"
978
+ "CDN</acronym>\n"
979
+ " provider hostname <a href=\"?"
980
+ "page=w3tc_cdn#configuration\">here</a>.\n"
981
+ " <em>(This is the hostname used in "
982
+ "order to view objects\n"
983
+ " in a browser.)</em>"
984
+ msgstr ""
985
+ "Ein Konfigurationsproblem verhindert, dass <acronym title=\"Content-Delivery-"
986
+ "Netzwerk\">CDN</acronym> funktioniert: Das Feld <strong>„Standard-Hostnamen "
987
+ "ersetzen durch“</strong> darf nicht leer sein. Geben Sie <a href=\"?"
988
+ "page=w3tc_cdn#configuration\">hier</a> den Hostnamen des <acronym\n"
989
+ " title=\"Content-Delivery-Netzwerk\">"
990
+ "CDN-</acronym> Anbieters ein. <em>(Dies ist der Hostname, der verwendet wird,"
991
+ " um Objekte in einem Browser anzuzeigen.)</em>"
992
+
993
+ #: Cdn_AdminNotes.php:275
994
+ msgid ""
995
+ "A configuration issue prevents <acronym title=\"Content Delivery Network\">"
996
+ "CDN</acronym> from working: "
997
+ msgstr ""
998
+ "Ein Konfigurationsproblem verhindert, dass <acronym title=\"Content-Delivery-"
999
+ "Netzwerk\">CDN</acronym> funktioniert:"
1000
+
1001
+ #. translators: 3 opening HTML a tag to W3TC Browsercache admin page, 4 closing HTML a tag.
1002
+ #: inc/options/general.php:477
1003
+ msgid ""
1004
+ "A reverse proxy adds scale to an server by handling requests before "
1005
+ "WordPress does. Purge settings are set on the %1$sPage Cache settings%2$s "
1006
+ "page and %3$sBrowser Cache settings%4$s are set on the browser cache "
1007
+ "settings page."
1008
+ msgstr ""
1009
+ "Ein Reverse-Proxy fügt einem Server Skalierbarkeit hinzu, indem er Anfragen "
1010
+ "bearbeitet, bevor WordPress dies tut. Die Löscheinstellungen werden auf der "
1011
+ "Seite %1$sSeiten-Cache-Einstellungen%2$s und %3$sBrowser-Cache-"
1012
+ "Einstellungen%4$s auf der Seite mit den Browser-Cache-Einstellungen "
1013
+ "festgelegt."
1014
+
1015
+ #: Root_AdminMenu.php:131 Root_AdminMenu.php:132
1016
+ msgid "About"
1017
+ msgstr "Um"
1018
+
1019
+ #: Licensing_Plugin_Admin.php:268 SetupGuide_Plugin_Admin.php:1109
1020
+ msgid "Accept"
1021
+ msgstr "Annehmen"
1022
+
1023
+ #: PgCache_ConfigLabels.php:46
1024
+ msgid "Accepted query strings:"
1025
+ msgstr "Akzeptierte Abfragezeichenfolgen:"
1026
+
1027
+ #: inc/options/general.php:517
1028
+ msgid "Access Control List"
1029
+ msgstr "Zugriffskontrollliste"
1030
+
1031
+ #: inc/options/cdn/cf.php:48 inc/options/cdn/cf2.php:48
1032
+ #: inc/options/cdn/s3.php:54 inc/options/cdn/s3_compatible.php:20
1033
+ msgid "Access key ID:"
1034
+ msgstr "Zugriffsschlüssel-ID:"
1035
+
1036
+ #: CdnEngine_Mirror_LimeLight.php:94 Cdnfsd_CloudFront_Engine.php:83
1037
+ #: Cdnfsd_LimeLight_Engine.php:65
1038
+ msgid "Access key not specified."
1039
+ msgstr "Zugriffsschlüssel nicht angegeben."
1040
+
1041
+ #: Cdnfsd_CloudFront_Popup_View_Intro.php:37
1042
+ msgid "Access Key:"
1043
+ msgstr "Zugangsschlüssel:"
1044
+
1045
+ #: UsageStatistics_GeneralPage_View.php:83
1046
+ msgid "Access Log Filename:"
1047
+ msgstr "Dateiname des Zugriffsprotokolls:"
1048
+
1049
+ #: UsageStatistics_GeneralPage_View.php:93
1050
+ msgid "Access Log Format:"
1051
+ msgstr "Zugriffsprotokollformat:"
1052
+
1053
+ #: UsageStatistics_Page_View.php:182
1054
+ msgid "Access Log:"
1055
+ msgstr "Zugriffsprotokoll:"
1056
+
1057
+ #: Cdnfsd_CloudFront_Popup_View_Intro.php:45
1058
+ msgid "Access Secret:"
1059
+ msgstr "Zugangsgeheimnis:"
1060
+
1061
+ #: BrowserCache_ConfigLabels.php:42
1062
+ msgid ""
1063
+ "Access session cookies through the <acronym title=\"Hypertext Transfer "
1064
+ "Protocol\">HTTP</acronym> only:"
1065
+ msgstr ""
1066
+ "Greifen Sie nur über <acronym title=\"Hypertext Transfer Protocol\">"
1067
+ "HTTP</acronym> auf Sitzungscookies zu:"
1068
+
1069
+ #: inc/options/cdn.php:521
1070
+ msgid "Access-Control-Allow-Origin"
1071
+ msgstr "Access-Control-Allow-Origin"
1072
+
1073
+ #: Extension_CloudFlare_Plugin.php:169
1074
+ msgid "Account"
1075
+ msgstr "Konto"
1076
+
1077
+ #: inc/options/cdn/att.php:9 inc/options/cdn/edgecast.php:9
1078
+ msgid "Account #:"
1079
+ msgstr "Konto #:"
1080
+
1081
+ #: Extension_NewRelic_Service.php:167
1082
+ msgid "Account ID is not configured."
1083
+ msgstr "Konto-ID ist nicht konfiguriert."
1084
+
1085
+ #: inc/options/cdn/azure.php:16
1086
+ msgid "Account key:"
1087
+ msgstr "Kontoschlüssel:"
1088
+
1089
+ #: inc/options/cdn/azure.php:9
1090
+ msgid "Account name:"
1091
+ msgstr "Kontobezeichnung:"
1092
+
1093
+ #: Cdn_LimeLight_Popup_View_Intro.php:18
1094
+ msgid "Account Short Name:"
1095
+ msgstr "Kurzname des Kontos:"
1096
+
1097
+ #: FeatureShowcase_Plugin_Admin.php:210 inc/options/extensions/list.php:32
1098
+ #: inc/options/extensions/list.php:235
1099
+ msgid "Activate"
1100
+ msgstr "aktivieren Sie"
1101
+
1102
+ #: inc/options/extensions/list.php:139
1103
+ msgid "Activate this extension"
1104
+ msgstr "Aktivieren Sie diese Erweiterung"
1105
+
1106
+ #: Extension_Genesis_Plugin_Admin.php:125
1107
+ msgid ""
1108
+ "Activating the <a href=\"%s\">Genesis Theme</a> extension for W3 Total Cache "
1109
+ "may be helpful for your site. <a href=\"%s\">Click here</a> to try it. %s"
1110
+ msgstr ""
1111
+ "Die Aktivierung der <a href=\"%s\">Genesis Theme-</a> Erweiterung für W3 "
1112
+ "Total Cache kann für Ihre Website hilfreich sein. <a href=\"%s\">Klicken Sie "
1113
+ "hier</a> , um es zu versuchen. %s"
1114
+
1115
+ #: Extension_Wpml_Plugin_Admin.php:121
1116
+ msgid ""
1117
+ "Activating the <a href=\"%s\">WPML</a> extension for W3 Total Cache may be "
1118
+ "helpful for your site. %s%s"
1119
+ msgstr ""
1120
+ "Die Aktivierung der <a href=\"%s\">WPML-</a> Erweiterung für W3 Total Cache "
1121
+ "kann für Ihre Website hilfreich sein. %s%s"
1122
+
1123
+ #: Extension_WordPressSeo_Plugin_Admin.php:88
1124
+ msgid ""
1125
+ "Activating the <a href=\"%s\">Yoast SEO</a> extension for W3 Total Cache may "
1126
+ "be helpful for your site. <a class=\"button\" href=\"%s\">Click here</a> to "
1127
+ "try it. %s"
1128
+ msgstr ""
1129
+ "Die Aktivierung der <a href=\"%s\">Yoast SEO-</a> Erweiterung für W3 Total "
1130
+ "Cache kann für Ihre Website hilfreich sein. <a class=\"button\" href=\"%s\">"
1131
+ "Klicken Sie hier</a> , um es zu versuchen. %s"
1132
+
1133
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1134
+ #: inc/options/cdn.php:517
1135
+ msgid "Add %1$sCORS%2$s headers to allow cross-domain assets usage."
1136
+ msgstr ""
1137
+ "Fügen Sie %1$sCORS%2$s-Header hinzu, um die domänenübergreifende Nutzung von "
1138
+ "Assets zu ermöglichen."
1139
+
1140
+ #: inc/options/minify.php:554
1141
+ msgid "Add a script"
1142
+ msgstr "Fügen Sie ein Skript hinzu"
1143
+
1144
+ #: inc/options/minify.php:809
1145
+ msgid "Add a style sheet"
1146
+ msgstr "Fügen Sie ein Stylesheet hinzu"
1147
+
1148
+ #: Cdn_ConfigLabels.php:18
1149
+ msgid "Add canonical header"
1150
+ msgstr "Kanonischen Header hinzufügen"
1151
+
1152
+ #: inc/options/cdn/common/cnames.php:66
1153
+ msgid "Add CNAME"
1154
+ msgstr "CNAME hinzufügen"
1155
+
1156
+ #: Cdn_GoogleDrive_Popup_AuthReturn_View.php:40
1157
+ msgid "Add new folder:"
1158
+ msgstr "Neuen Ordner hinzufügen:"
1159
+
1160
+ #: Cdnfsd_StackPath2_Popup_View_Sites.php:35
1161
+ #: Cdn_StackPath2_Popup_View_Sites.php:33
1162
+ msgid "Add new site: "
1163
+ msgstr "Neue Seite hinzufügen:"
1164
+
1165
+ #: extension-example/Extension_Example_Page_View.php:27
1166
+ msgid "Add postfix to page titles"
1167
+ msgstr "Fügen Sie Postfix zu Seitentiteln hinzu"
1168
+
1169
+ #: inc/popup/cdn_import_library.php:90
1170
+ msgid ""
1171
+ "Add the following directives to your .htaccess file or if there are several "
1172
+ "hundred they should be added directly to your configuration file:"
1173
+ msgstr ""
1174
+ "Fügen Sie die folgenden Anweisungen zu Ihrer .htaccess-Datei hinzu oder wenn "
1175
+ "es mehrere Hundert gibt, sollten sie direkt zu Ihrer Konfigurationsdatei "
1176
+ "hinzugefügt werden:"
1177
+
1178
+ #: Minify_ConfigLabels.php:59
1179
+ msgid "Add timestamp"
1180
+ msgstr "Zeitstempel hinzufügen"
1181
+
1182
+ #: inc/lightbox/minify_recommendations.php:33
1183
+ #: inc/lightbox/minify_recommendations.php:91
1184
+ msgid "Add:"
1185
+ msgstr "Hinzufügen:"
1186
+
1187
+ #: Generic_AdminActions_Default.php:625
1188
+ msgid "Added by W3 Total Cache"
1189
+ msgstr "Hinzugefügt von W3 Total Cache"
1190
+
1191
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1192
+ #: Extension_FeedBurner_Page_View.php:36
1193
+ msgid "Additional %1$sURL%2$ss:"
1194
+ msgstr "Zusätzliche %1$sURL%2$ss:"
1195
+
1196
+ #: FeatureShowcase_Plugin_Admin.php:458
1197
+ msgid ""
1198
+ "Additional features to extend the functionality of W3 Total Cache, such as "
1199
+ "Accelerated Mobile Pages (AMP) for Minify and support for New Relic."
1200
+ msgstr ""
1201
+ "Zusätzliche Funktionen zur Erweiterung der Funktionalität von W3 Total Cache,"
1202
+ " wie z. B. Accelerated Mobile Pages (AMP) für Minify und Unterstützung für "
1203
+ "New Relic."
1204
+
1205
+ #. translators: 1 opneing HTML acronym tag, 2 closing HTML acronym tag.
1206
+ #: inc/options/pgcache.php:193
1207
+ msgid "Additional home %1$sURL%2$ss:"
1208
+ msgstr "Zusätzliche Startseite %1$sURL%2$ss:"
1209
+
1210
+ #. translators: 1 opening HTML a tag to W3TC plugin installation FAQs, 2 closing HTML a tag.
1211
+ #: inc/options/install.php:371
1212
+ msgid "Additional installation guides can be found in the %1$swiki%2$s."
1213
+ msgstr "Weitere Installationsanleitungen finden Sie im %1$swiki%2$s."
1214
+
1215
+ #: PgCache_ConfigLabels.php:38
1216
+ msgid "Additional pages:"
1217
+ msgstr "Zusätzliche Seiten:"
1218
+
1219
+ #: inc/lightbox/self_test.php:429
1220
+ msgid "Additional Server Modules"
1221
+ msgstr "Zusätzliche Servermodule"
1222
+
1223
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1224
+ #: inc/options/cdn.php:335
1225
+ msgid "Adds canonical %1$sHTTP%2$s header to assets files."
1226
+ msgstr "Fügt Assets-Dateien den kanonischen %1$sHTTP%2$s-Header hinzu."
1227
+
1228
+ #: Extension_Amp_Plugin_Admin.php:14
1229
+ msgid "Adds compatibility for accelerated mobile pages (AMP) to minify."
1230
+ msgstr ""
1231
+ "Fügt Kompatibilität für beschleunigte mobile Seiten (AMP) zum Minimieren "
1232
+ "hinzu."
1233
+
1234
+ #: Extension_ImageService_Plugin_Admin.php:79
1235
+ msgid ""
1236
+ "Adds the ability to convert images in the Media Library to the modern WebP "
1237
+ "format for better performance."
1238
+ msgstr ""
1239
+ "Fügt die Möglichkeit hinzu, Bilder in der Medienbibliothek für eine bessere "
1240
+ "Leistung in das moderne WebP-Format zu konvertieren."
1241
+
1242
+ #: FeatureShowcase_Plugin_Admin.php:217
1243
+ msgid ""
1244
+ "Adds the ability to convert images into the modern WebP format for better "
1245
+ "performance using our remote API service."
1246
+ msgstr ""
1247
+ "Fügt die Möglichkeit hinzu, Bilder mithilfe unseres Remote-API-Dienstes für "
1248
+ "eine bessere Leistung in das moderne WebP-Format zu konvertieren."
1249
+
1250
+ #: inc/options/minify.php:146
1251
+ msgid "Admin Notification"
1252
+ msgstr "Admin-Benachrichtigung"
1253
+
1254
+ #: Extension_FragmentCache_Page_View.php:16
1255
+ #: Extension_FragmentCache_Page_View.php:87 inc/options/cdn.php:25
1256
+ #: inc/options/cdn.php:381 inc/options/common/header.php:186
1257
+ #: inc/options/common/header.php:263 inc/options/common/header.php:275
1258
+ #: inc/options/common/header.php:285 inc/options/dbcache.php:65
1259
+ #: inc/options/minify.php:862 inc/options/objectcache.php:53
1260
+ #: inc/options/pgcache.php:503
1261
+ msgid "Advanced"
1262
+ msgstr "Fortschrittlich"
1263
+
1264
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1265
+ #: Extension_CloudFlare_Page_View.php:583
1266
+ msgid "Advanced %1$sDDoS%2$s protection:"
1267
+ msgstr "Erweiterter %1$sDDoS%2$s-Schutz:"
1268
+
1269
+ #: Generic_WidgetCommunity_View.php:20
1270
+ msgid "Advanced Analytics"
1271
+ msgstr "Erweiterte Analysen"
1272
+
1273
+ #: inc/options/minify/ccjs2.php:11 inc/options/minify/googleccjs2.php:11
1274
+ msgid "Advanced optimizations"
1275
+ msgstr "Erweiterte Optimierungen"
1276
+
1277
+ #: Extension_CloudFlare_Page_View.php:596
1278
+ msgid ""
1279
+ "Advanced protection from Distributed Denial of Service (DDoS) attacks on "
1280
+ "your website."
1281
+ msgstr ""
1282
+ "Erweiterter Schutz vor Distributed Denial of Service (DDoS)-Angriffen auf "
1283
+ "Ihre Website."
1284
+
1285
+ #: CdnEngine_S3.php:27
1286
+ msgid "Africa (Cape Town)"
1287
+ msgstr "Afrika (Kapstadt)"
1288
+
1289
+ #: Minify_ConfigLabels.php:25
1290
+ msgid "After <span class=\"html-tag\">&lt;body&gt;</span>"
1291
+ msgstr "Nach <span class=\"html-tag\">&lt;body&gt;</span>"
1292
+
1293
+ #: Extension_CloudFlare_Page_View.php:178
1294
+ msgid ""
1295
+ "Aggressive (cache all static resources, including ones with a query string)"
1296
+ msgstr ""
1297
+ "Aggressiv (alle statischen Ressourcen zwischenspeichern, einschließlich "
1298
+ "solcher mit einer Abfragezeichenfolge)"
1299
+
1300
+ #: Cdn_Plugin_Admin.php:173
1301
+ msgid "Akamai"
1302
+ msgstr "Akamai"
1303
+
1304
+ #: Extension_NewRelic_Page_View_Apm.php:49
1305
+ msgid "Alerts enabled:"
1306
+ msgstr "Benachrichtigungen aktiviert:"
1307
+
1308
+ #: inc/options/pgcache.php:173
1309
+ msgid "Aliases"
1310
+ msgstr "Aliase"
1311
+
1312
+ #: Generic_Plugin_Admin.php:784
1313
+ msgid "All caches successfully emptied."
1314
+ msgstr "Alle Caches erfolgreich geleert."
1315
+
1316
+ #: inc/popup/cdn_purge.php:38
1317
+ msgid "all files in the directory whose extension is \"jpg\"."
1318
+ msgstr "alle Dateien im Verzeichnis mit der Endung \"jpg\"."
1319
+
1320
+ #: inc/popup/cdn_purge.php:37
1321
+ msgid ""
1322
+ "all files in the directory with no extension, with all parameter variations."
1323
+ msgstr ""
1324
+ "alle Dateien im Verzeichnis ohne Erweiterung, mit allen Parametervariationen."
1325
+
1326
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1327
+ #: inc/options/cdn.php:492
1328
+ msgid ""
1329
+ "All Media Library content will use %1$sCDN%2$s links on administration pages."
1330
+ msgstr ""
1331
+ "Alle Inhalte der Medienbibliothek verwenden %1$sCDN%2$s-Links auf "
1332
+ "Verwaltungsseiten."
1333
+
1334
+ #: inc/options/minify/csstidy2.php:19
1335
+ msgid "All optimisations"
1336
+ msgstr "Alle Optimierungen"
1337
+
1338
+ #: Extension_ImageService_Plugin_Admin.php:904
1339
+ msgid "All selected optimizations have been reverted."
1340
+ msgstr "Alle ausgewählten Optimierungen wurden rückgängig gemacht."
1341
+
1342
+ #: Util_Theme.php:80
1343
+ msgid "All Templates"
1344
+ msgstr "Alle Vorlagen"
1345
+
1346
+ #: BrowserCache_Page_View_SectionSecurity.php:673
1347
+ msgid ""
1348
+ "Allows control over the &lt;object&gt;, &lt;embed&gt;, and &lt;applet&gt; "
1349
+ "elements used by Flash and other plugins."
1350
+ msgstr ""
1351
+ "Ermöglicht die Kontrolle über die Elemente &lt;object&gt;, &lt;embed&gt; und "
1352
+ "&lt;applet&gt;, die von Flash und anderen Plug-ins verwendet werden."
1353
+
1354
+ #: Extension_CloudFlare_Page_View.php:683
1355
+ msgid ""
1356
+ "Allows customer to continue to use True Client IP (Akamai feature) in the "
1357
+ "headers we send to the origin."
1358
+ msgstr ""
1359
+ "Ermöglicht dem Kunden, weiterhin True Client IP (Akamai-Funktion) in den "
1360
+ "Headern zu verwenden, die wir an den Ursprung senden."
1361
+
1362
+ #: inc/options/general.php:547
1363
+ msgid ""
1364
+ "Allows policy management to be shared between a dynamic pool of servers. For "
1365
+ "example, each server in a pool to use opcode caching (which is not a shared "
1366
+ "resource) and purging is then syncronized between any number of servers in "
1367
+ "real-time; each server therefore behaves identically even though resources "
1368
+ "are not shared."
1369
+ msgstr ""
1370
+ "Ermöglicht die gemeinsame Nutzung der Richtlinienverwaltung durch einen "
1371
+ "dynamischen Pool von Servern. Beispielsweise wird jeder Server in einem Pool "
1372
+ "zur Verwendung von Opcode-Caching (das keine gemeinsam genutzte Ressource "
1373
+ "ist) und Bereinigung dann zwischen einer beliebigen Anzahl von Servern in "
1374
+ "Echtzeit synchronisiert; jeder Server verhält sich daher identisch, obwohl "
1375
+ "Ressourcen nicht gemeinsam genutzt werden."
1376
+
1377
+ #: BrowserCache_Page_View_SectionSecurity.php:795
1378
+ msgid "Allows you to control which origins can use which features."
1379
+ msgstr ""
1380
+ "Ermöglicht es Ihnen, zu steuern, welche Ursprünge welche Funktionen "
1381
+ "verwenden können."
1382
+
1383
+ #: inc/options/install.php:335
1384
+ msgid "Alternative PHP Cache"
1385
+ msgstr "Alternativer PHP-Cache"
1386
+
1387
+ #: inc/options/general.php:774
1388
+ msgid ""
1389
+ "Although not required, to prevent unauthorized use and quota theft, you have "
1390
+ "the option to restrict your key using a designated HTTP referrer. If you "
1391
+ "decide to use it, you will need to set this referrer within the API "
1392
+ "Console's \"Http Referrers (web sites)\" key restriction area (under "
1393
+ "Credentials)."
1394
+ msgstr ""
1395
+ "Obwohl dies nicht erforderlich ist, haben Sie die Möglichkeit, Ihren "
1396
+ "Schlüssel mithilfe eines bestimmten HTTP-Referrers einzuschränken, um eine "
1397
+ "unbefugte Verwendung und einen Kontingentdiebstahl zu verhindern. Wenn Sie "
1398
+ "sich für die Verwendung entscheiden, müssen Sie diesen Referrer im "
1399
+ "Schlüsseleinschränkungsbereich „Http-Referrer (Websites)“ der API-Konsole "
1400
+ "(unter Anmeldeinformationen) festlegen."
1401
+
1402
+ #: Extension_ImageService_Page_View.php:100
1403
+ msgid "Always"
1404
+ msgstr "Stets"
1405
+
1406
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1407
+ #: inc/options/pgcache.php:638
1408
+ msgid ""
1409
+ "Always cache %1$sURL%2$ss that use these query string name-value pairs. The "
1410
+ "value part is not required. But if used, separate name-value pairs with an "
1411
+ "equals sign (i.e., name=value). Each pair should be on their own line."
1412
+ msgstr ""
1413
+ "Cachen Sie immer %1$sURL%2$ss, die diese Name-Wert-Paare der "
1414
+ "Abfragezeichenfolge verwenden. Der Wertteil ist nicht erforderlich. Aber "
1415
+ "falls verwendet, trennen Sie Name-Wert-Paare mit einem Gleichheitszeichen (d."
1416
+ " h. Name=Wert). Jedes Paar sollte auf einer eigenen Linie sein."
1417
+
1418
+ #: inc/options/pgcache.php:732
1419
+ msgid "Always ignore all pages filed under the specified author usernames."
1420
+ msgstr ""
1421
+ "Ignorieren Sie immer alle Seiten, die unter den angegebenen Autoren-"
1422
+ "Benutzernamen abgelegt wurden."
1423
+
1424
+ #: inc/options/pgcache.php:714
1425
+ msgid "Always ignore all pages filed under the specified category slugs."
1426
+ msgstr ""
1427
+ "Ignorieren Sie immer alle Seiten, die unter den angegebenen Kategorie-Slugs "
1428
+ "abgelegt sind."
1429
+
1430
+ #: inc/options/pgcache.php:741
1431
+ msgid ""
1432
+ "Always ignore all pages filed under the specified custom fields. Separate "
1433
+ "name-value pairs with an equals sign (i.e., name=value)."
1434
+ msgstr ""
1435
+ "Ignorieren Sie immer alle Seiten, die unter den angegebenen "
1436
+ "benutzerdefinierten Feldern abgelegt sind. Trennen Sie Name-Wert-Paare mit "
1437
+ "einem Gleichheitszeichen (d. h. Name=Wert)."
1438
+
1439
+ #: inc/options/pgcache.php:723
1440
+ msgid "Always ignore all pages filed under the specified tag slugs."
1441
+ msgstr ""
1442
+ "Ignorieren Sie immer alle Seiten, die unter den angegebenen Tag-Slugs "
1443
+ "abgelegt sind."
1444
+
1445
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1446
+ #: inc/options/minify.php:942
1447
+ msgid ""
1448
+ "Always ignore the specified %1$sCSS%2$s files. Use relative paths. Omit: "
1449
+ "protocol, hostname, leading forward slash and query strings."
1450
+ msgstr ""
1451
+ "Ignorieren Sie immer die angegebenen %1$sCSS%2$s-Dateien. Verwenden Sie "
1452
+ "relative Pfade. Auslassen: Protokoll, Hostname, führender Schrägstrich und "
1453
+ "Abfragezeichenfolgen."
1454
+
1455
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1456
+ #: inc/options/minify.php:915
1457
+ msgid ""
1458
+ "Always ignore the specified %1$sJS%2$s files. Use relative paths. Omit: "
1459
+ "protocol, hostname, leading forward slash and query strings."
1460
+ msgstr ""
1461
+ "Ignorieren Sie immer die angegebenen %1$sJS%2$s-Dateien. Verwenden Sie "
1462
+ "relative Pfade. Auslassen: Protokoll, Hostname, führender Schrägstrich und "
1463
+ "Abfragezeichenfolgen."
1464
+
1465
+ #. translators: 2 opening HTML acronym tag, 3 closing HTML acronym tag, 4 closing HTML acronym tag.
1466
+ #: inc/options/pgcache.php:686
1467
+ msgid ""
1468
+ "Always ignore the specified pages / directories. Supports regular "
1469
+ "expressions (See %1$s%2$sFAQ%3$s%4$s)"
1470
+ msgstr ""
1471
+ "Ignorieren Sie immer die angegebenen Seiten / Verzeichnisse. Unterstützt "
1472
+ "reguläre Ausdrücke (Siehe %1$s%2$sFAQ%3$s%4$s)"
1473
+
1474
+ #. translators: 3 closing HTML acronym tag, 4 closing HTML a tag.
1475
+ #: inc/options/dbcache.php:104
1476
+ msgid ""
1477
+ "Always ignore the specified pages / directories. Supports regular "
1478
+ "expressions (See %1$s%2$sFAQ%3$s%4$s)."
1479
+ msgstr ""
1480
+ "Ignorieren Sie immer die angegebenen Seiten / Verzeichnisse. Unterstützt "
1481
+ "reguläre Ausdrücke (Siehe %1$s%2$sFAQ%3$s%4$s)."
1482
+
1483
+ #: inc/options/minify.php:902
1484
+ msgid ""
1485
+ "Always ignore the specified pages / directories. Use relative paths. Omit: "
1486
+ "protocol, hostname, leading forward slash and query strings."
1487
+ msgstr ""
1488
+ "Ignorieren Sie immer die angegebenen Seiten / Verzeichnisse. Verwenden Sie "
1489
+ "relative Pfade. Auslassen: Protokoll, Hostname, führender Schrägstrich und "
1490
+ "Abfragezeichenfolgen."
1491
+
1492
+ #: Extension_CloudFlare_Page_View.php:564
1493
+ msgid "Always online:"
1494
+ msgstr "Immer online:"
1495
+
1496
+ #: Generic_ConfigLabels.php:8
1497
+ msgid ""
1498
+ "Amazon <acronym title=\"Simple Notification Service\">SNS</acronym> region:"
1499
+ msgstr ""
1500
+ "Amazon <acronym title=\"Einfacher Benachrichtigungsdienst\">SNS-</acronym> "
1501
+ "Region:"
1502
+
1503
+ #: Cdnfsd_Plugin_Admin.php:93 Cdn_Plugin_Admin.php:177
1504
+ msgid "Amazon CloudFront"
1505
+ msgstr "Amazon CloudFront"
1506
+
1507
+ #: Cdn_Plugin_Admin.php:223
1508
+ msgid "Amazon CloudFront Over S3"
1509
+ msgstr "Amazon CloudFront über S3"
1510
+
1511
+ #: Cdn_Plugin_Admin.php:228
1512
+ msgid "Amazon Simple Storage Service (S3)"
1513
+ msgstr "Amazon Simple Storage Service (S3)"
1514
+
1515
+ #: Cdn_Plugin_Admin.php:233
1516
+ msgid "Amazon Simple Storage Service (S3) Compatible"
1517
+ msgstr "Kompatibel mit Amazon Simple Storage Service (S3)."
1518
+
1519
+ #: Cdnfsd_CloudFront_Popup_View_Intro.php:24 inc/options/cdn/cf.php:26
1520
+ #: inc/options/cdn/cf.php:29 inc/options/cdn/s3.php:32
1521
+ #: inc/options/cdn/s3.php:35
1522
+ msgid "Amazon Web Services"
1523
+ msgstr "Amazon Web-Services"
1524
+
1525
+ #: Extension_Amp_Page_View.php:31
1526
+ msgid "AMP URL Postfix:"
1527
+ msgstr "AMP-URL-Postfix:"
1528
+
1529
+ #: Extension_Amp_Page_View.php:16
1530
+ msgid "AMP URL Type:"
1531
+ msgstr "AMP-URL-Typ:"
1532
+
1533
+ #: Minify_HelpPopup_View.php:16
1534
+ msgid "an \"instant on\" or \"set it and forget it\" optimization technique."
1535
+ msgstr ""
1536
+ "eine \"sofort einschalten\"- oder \"einstellen und vergessen\"-"
1537
+ "Optimierungstechnik."
1538
+
1539
+ #: UsageStatistics_Page_View.php:12
1540
+ msgid "An error occurred"
1541
+ msgstr "Ein Fehler ist aufgetreten"
1542
+
1543
+ #: Extension_ImageService_Api.php:223
1544
+ msgid "An image file is required."
1545
+ msgstr "Eine Bilddatei ist erforderlich."
1546
+
1547
+ #: Extension_CloudFlare_Plugin.php:163
1548
+ msgid "Analytics"
1549
+ msgstr "Analytik"
1550
+
1551
+ #: FeatureShowcase_Plugin_Admin.php:338
1552
+ msgid ""
1553
+ "Analytics for your WordPress and Server cache that allow you to track the "
1554
+ "size, time and hit/miss ratio of each type of cache, giving you the "
1555
+ "information needed to gain maximum performance."
1556
+ msgstr ""
1557
+ "Analysen für Ihren WordPress- und Server-Cache, mit denen Sie die Größe, "
1558
+ "Zeit und das Treffer-/Fehlerverhältnis jedes Cache-Typs verfolgen können, um "
1559
+ "Ihnen die Informationen zu geben, die Sie benötigen, um maximale Leistung zu "
1560
+ "erzielen."
1561
+
1562
+ #: inc/options/general.php:905
1563
+ msgid "Anonymously track usage to improve product quality"
1564
+ msgstr "Verfolgen Sie die Nutzung anonym, um die Produktqualität zu verbessern"
1565
+
1566
+ #: UsageStatistics_Page_View.php:460
1567
+ msgid "APC"
1568
+ msgstr "APC"
1569
+
1570
+ #: UsageStatistics_Widget_View.php:52
1571
+ msgid "APC Usage"
1572
+ msgstr "APC-Nutzung"
1573
+
1574
+ #: UsageStatistics_Page_View.php:109
1575
+ msgid "API call"
1576
+ msgstr "API-Aufruf"
1577
+
1578
+ #: Extension_ImageService_Plugin_Admin.php:554
1579
+ msgid "API error. Please reload the page to try again,"
1580
+ msgstr "API-Fehler. Bitte laden Sie die Seite neu, um es erneut zu versuchen,"
1581
+
1582
+ #: inc/options/cdn/s3_compatible.php:11
1583
+ msgid "API host:"
1584
+ msgstr "API-Host:"
1585
+
1586
+ #: Extension_NewRelic_Service.php:182
1587
+ msgid "API Key is invalid."
1588
+ msgstr "API-Schlüssel ist ungültig."
1589
+
1590
+ #: Extension_NewRelic_Service.php:153
1591
+ msgid "API Key is not configured."
1592
+ msgstr "API-Schlüssel ist nicht konfiguriert."
1593
+
1594
+ #: Cdnfsd_MaxCdn_Engine.php:21 Cdnfsd_MaxCdn_Engine.php:46
1595
+ #: Cdnfsd_StackPath2_Engine.php:19 Cdnfsd_StackPath2_Engine.php:49
1596
+ #: Cdnfsd_StackPath_Engine.php:21 Cdnfsd_StackPath_Engine.php:43
1597
+ #: Cdnfsd_TransparentCDN_Engine.php:252 Cdnfsd_TransparentCDN_Engine.php:280
1598
+ msgid "API key not specified."
1599
+ msgstr "API-Schlüssel nicht angegeben."
1600
+
1601
+ #: Cdn_LimeLight_Popup_View_Intro.php:34 Extension_Swarmify_Page_View.php:33
1602
+ msgid "API Key:"
1603
+ msgstr "API-Schlüssel:"
1604
+
1605
+ #: Cdn_Highwinds_Popup_View_Intro.php:18
1606
+ msgid "API Token:"
1607
+ msgstr "API-Token:"
1608
+
1609
+ #: Extension_NewRelic_Page_View_Apm.php:59
1610
+ msgid "Application ApDex Threshold:"
1611
+ msgstr "Anwendungs-ApDex-Schwellenwert:"
1612
+
1613
+ #: Extension_NewRelic_Service.php:159 Extension_NewRelic_Service.php:169
1614
+ msgid "Application ID is not configured. Enter/Select application name."
1615
+ msgstr ""
1616
+ "Anwendungs-ID ist nicht konfiguriert. Anwendungsnamen eingeben/auswählen."
1617
+
1618
+ #: Extension_NewRelic_Page_View_Apm.php:33
1619
+ msgid "Application ID:"
1620
+ msgstr "Anwendungs-ID:"
1621
+
1622
+ #: Extension_NewRelic_AdminNotes.php:29
1623
+ msgid ""
1624
+ "Application monitoring has detected that your page load time is higher than "
1625
+ "300ms. It is recommended that you enable the following features: %s %s"
1626
+ msgstr ""
1627
+ "Die Anwendungsüberwachung hat festgestellt, dass die Ladezeit Ihrer Seite "
1628
+ "länger als 300 ms ist. Es wird empfohlen, die folgenden Funktionen zu "
1629
+ "aktivieren: %s %s"
1630
+
1631
+ #: Extension_NewRelic_Plugin.php:206
1632
+ msgid "Application Monitoring using New Relic%s"
1633
+ msgstr "Anwendungsüberwachung mit New Relic%s"
1634
+
1635
+ #: Extension_NewRelic_GeneralPage_View.php:75
1636
+ #: Extension_NewRelic_Page_View_Apm.php:41
1637
+ msgid "Application name:"
1638
+ msgstr "Anwendungsname:"
1639
+
1640
+ #: Cdn_RackSpaceCdn_Popup_View_Intro.php:35
1641
+ #: Cdn_RackSpaceCloudFiles_Popup_View_Intro.php:36
1642
+ #: Extension_CloudFlare_Plugin_Admin.php:40
1643
+ #: Extension_CloudFlare_Popup_View_Intro.php:36
1644
+ #: Extension_NewRelic_GeneralPage_View.php:55
1645
+ #: Extension_NewRelic_Popup_View_Intro.php:29 inc/options/cdn/cotendo.php:40
1646
+ #: inc/options/cdn/rscf.php:26 inc/options/general.php:394
1647
+ #: inc/options/general.php:601 inc/options/general.php:630
1648
+ #: inc/options/general.php:751 inc/options/pgcache.php:424
1649
+ #: inc/options/pgcache.php:465
1650
+ msgid "Application Programming Interface"
1651
+ msgstr "Programmierschnittstelle"
1652
+
1653
+ #: DbCache_WpdbInjection_QueryCaching.php:853
1654
+ msgid "Application request"
1655
+ msgstr "Bewerbungsantrag"
1656
+
1657
+ #: Extension_NewRelic_Page_View_Apm.php:28
1658
+ msgid "Application Settings"
1659
+ msgstr "Anwendungseinstellungen"
1660
+
1661
+ #: Extension_NewRelic_Page_View_Apm.php:169
1662
+ msgid "Application settings are only visible when New Relic is enabled"
1663
+ msgstr ""
1664
+ "Anwendungseinstellungen sind nur sichtbar, wenn New Relic aktiviert ist"
1665
+
1666
+ #. translators: 1 opening HTML a tag to W3TC monitoring settings page, 2 closing HTML a tag.
1667
+ #: Extension_NewRelic_Page_View_Apm.php:153
1668
+ msgid ""
1669
+ "Application settings could not be retrieved. New Relic may not be properly "
1670
+ "configured, %1$sreview the settings%2$s."
1671
+ msgstr ""
1672
+ "Anwendungseinstellungen konnten nicht abgerufen werden. New Relic ist "
1673
+ "möglicherweise nicht richtig konfiguriert, %1$süberprüfen Sie die "
1674
+ "Einstellungen%2$s."
1675
+
1676
+ #: Cdnfsd_CloudFront_Popup_View_Distribution.php:75
1677
+ #: Cdnfsd_CloudFront_Popup_View_Distributions.php:52
1678
+ #: Cdnfsd_MaxCdn_Popup_View_Zone.php:75 Cdnfsd_MaxCdn_Popup_View_Zones.php:47
1679
+ #: Cdnfsd_StackPath2_Popup_View_Sites.php:50
1680
+ #: Cdnfsd_StackPath2_Popup_View_Stacks.php:45
1681
+ #: Cdnfsd_StackPath_Popup_View_Zone.php:61
1682
+ #: Cdnfsd_StackPath_Popup_View_Zones.php:45
1683
+ #: Cdn_GoogleDrive_Popup_AuthReturn_View.php:50
1684
+ #: Cdn_Highwinds_Popup_View_ConfigureCnamesForm.php:66
1685
+ #: Cdn_Highwinds_Popup_View_SelectHost.php:56
1686
+ #: Cdn_MaxCdn_Popup_View_Zone.php:72 Cdn_MaxCdn_Popup_View_Zones.php:51
1687
+ #: Cdn_RackSpaceCdn_Popup_View_ConfigureDomains.php:66
1688
+ #: Cdn_RackSpaceCdn_Popup_View_Services.php:59
1689
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Actualize.php:54
1690
+ #: Cdn_RackSpaceCloudFiles_Popup_View_Containers.php:55
1691
+ #: Cdn_StackPath2_Popup_View_Sites.php:48
1692
+ #: Cdn_StackPath2_Popup_View_Stacks.php:47
1693
+ #: Cdn_StackPath_Popup_View_Zone.php:39 Cdn_StackPath_Popup_View_Zones.php:51
1694
+ #: Extension_NewRelic_Popup_View_Intro.php:51
1695
+ #: Extension_NewRelic_Popup_View_ListApplications.php:63
1696
+ #: inc/options/extensions/list.php:238
1697
+ msgid "Apply"
1698
+ msgstr "Sich bewerben"
1699
+
1700
+ #: inc/lightbox/minify_recommendations.php:130
1701
+ msgid "Apply &amp; close"
1702
+ msgstr "Bewerben &amp; schließen"
1703
+
1704
+ #: inc/wizard/template.php:248
1705
+ msgid "Are you sure that you want to leave this page?"
1706
+ msgstr "Möchten Sie diese Seite wirklich verlassen?"
1707
+
1708
+ #: CdnEngine_S3.php:28
1709
+ msgid "Asia Pacific (Hong Kong)"
1710
+ msgstr "Asien-Pazifik (Hongkong)"
1711
+
1712
+ #: CdnEngine_S3.php:32
1713
+ msgid "Asia Pacific (Mumbai)"
1714
+ msgstr "Asien-Pazifik (Mumbai)"
1715
+
1716
+ #: CdnEngine_S3.php:31
1717
+ msgid "Asia Pacific (Osaka-Local)"
1718
+ msgstr "Asien-Pazifik (Osaka-lokal)"
1719
+
1720
+ #: CdnEngine_S3.php:30
1721
+ msgid "Asia Pacific (Seoul)"
1722
+ msgstr "Asien-Pazifik (Seoul)"
1723
+
1724
+ #: CdnEngine_S3.php:33
1725
+ msgid "Asia Pacific (Singapore)"
1726
+ msgstr "Asien-Pazifik (Singapur)"
1727
+
1728
+ #: CdnEngine_S3.php:34
1729
+ msgid "Asia Pacific (Sydney)"
1730
+ msgstr "Asien-Pazifik (Sydney)"
1731
+
1732
+ #: CdnEngine_S3.php:29
1733
+ msgid "Asia Pacific (Tokyo)"
1734
+ msgstr "Asien-Pazifik (Tokio)"
1735
+
1736
+ #: CacheGroups_Plugin_Admin_View.php:204
1737
+ msgid ""
1738
+ "Assign this group of referrers to a specific theme. Selecting \"Pass-"
1739
+ "through\" allows any plugin(s) (e.g. referrer plugins) to properly handle "
1740
+ "requests for these referrers. If the \"redirect users to\" field is not "
1741
+ "empty, this setting is ignored."
1742
+ msgstr ""
1743
+ "Ordnen Sie diese Gruppe von Referrern einem bestimmten Thema zu. Die Auswahl "
1744
+ "von „Pass-through“ ermöglicht allen Plug-ins (z. B. Referrer-Plug-ins), "
1745
+ "Anfragen für diese Referrer ordnungsgemäß zu verarbeiten. Wenn das Feld "
1746
+ "\"Benutzer umleiten zu\" nicht leer ist, wird diese Einstellung ignoriert."
1747
+
1748
+ #: CacheGroups_Plugin_Admin_View.php:90
1749
+ msgid ""
1750
+ "Assign this group of user agents to a specific theme. Selecting \"Pass-"
1751
+ "through\" allows any plugin(s) (e.g. mobile plugins) to properly handle "
1752
+ "requests for these user agents. If the \"redirect users to\" field is not "
1753
+ "empty, this setting is ignored."
1754
+ msgstr ""
1755
+ "Weisen Sie diese Gruppe von Benutzeragenten einem bestimmten Thema zu. Die "
1756
+ "Auswahl von „Pass-Through“ ermöglicht allen Plugins (z. B. mobilen Plugins), "
1757
+ "Anfragen für diese Benutzeragenten ordnungsgemäß zu verarbeiten. Wenn das "
1758
+ "Feld \"Benutzer umleiten zu\" nicht leer ist, wird diese Einstellung "
1759
+ "ignoriert."
1760
+
1761
+ #: UserExperience_LazyLoad_Page_View.php:88
1762
+ msgid "async"
1763
+ msgstr "asynchron"
1764
+
1765
+ #: inc/options/dashboard.php:64
1766
+ msgid "at once or"
1767
+ msgstr "auf einmal bzw"
1768
+
1769
+ #: Cdn_Plugin_Admin.php:182
1770
+ msgid "AT&amp;T"
1771
+ msgstr "AT&amp;T"
1772
+
1773
+ #: Extension_ImageService_Plugin_Admin.php:756
1774
+ msgid "Attachment id: "
1775
+ msgstr "Anhang-ID:"
1776
+
1777
+ #: Generic_Plugin_Admin.php:809
1778
+ msgid "Attachment successfully purged."
1779
+ msgstr "Anhang erfolgreich gelöscht."
1780
+
1781
+ #. translators: 1 class name, 2 file name.
1782
+ #: w3-total-cache-api.php:185
1783
+ msgid ""
1784
+ "Attempt to create object of class %1$s has been made, but file %2$s doesnt "
1785
+ "exists"
1786
+ msgstr ""
1787
+ "Es wurde versucht, ein Objekt der Klasse %1$s zu erstellen, aber die Datei "
1788
+ "%2$s existiert nicht"
1789
+
1790
+ #: Extension_CloudFlare_Page_View.php:92
1791
+ msgid "Authenticate your account in order to access settings."
1792
+ msgstr "Authentifizieren Sie Ihr Konto, um auf die Einstellungen zuzugreifen."
1793
+
1794
+ #: inc/options/minify.php:136
1795
+ msgid ""
1796
+ "Authenticated users will not receive minified pages if this option is "
1797
+ "enabled."
1798
+ msgstr ""
1799
+ "Authentifizierte Benutzer erhalten keine minimierten Seiten, wenn diese "
1800
+ "Option aktiviert ist."
1801
+
1802
+ #: CdnEngine_Mirror_Edgecast.php:122 Cdnfsd_TransparentCDN_Engine.php:152
1803
+ msgid "Authentication Failure or Insufficient Access Rights"
1804
+ msgstr "Authentifizierungsfehler oder unzureichende Zugriffsrechte"
1805
+
1806
+ #: Cdn_AdminNotes.php:239
1807
+ msgid "Authorization key"
1808
+ msgstr "Autorisierungsschlüssel"
1809
+
1810
+ #: Cdnfsd_CloudFront_Page_View.php:28 Cdnfsd_LimeLight_Page_View.php:28
1811
+ #: Cdnfsd_MaxCdn_Page_View.php:30 Cdnfsd_StackPath2_Page_View.php:37
1812
+ #: Cdnfsd_StackPath_Page_View.php:31 Cdn_GoogleDrive_Page_View.php:16
1813
+ #: Cdn_Highwinds_Page_View.php:14 Cdn_LimeLight_Page_View.php:15
1814
+ #: Cdn_MaxCdn_Page_View.php:35
1815
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:54
1816
+ #: Cdn_RackSpaceCdn_Page_View.php:17 Cdn_RackSpaceCloudFiles_Page_View.php:13
1817
+ #: Cdn_StackPath2_Page_View.php:61
1818
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:68
1819
+ #: Cdn_StackPath_Page_View.php:33
1820
+ #: Cdn_StackPath_Widget_View_Unauthorized.php:38
1821
+ #: Extension_CloudFlare_Page_View.php:68
1822
+ msgid "Authorize"
1823
+ msgstr "Autorisieren"
1824
+
1825
+ #: Cdn_GoogleDrive_Page_View.php:12 Cdn_Highwinds_Page_View.php:10
1826
+ #: Cdn_LimeLight_Page_View.php:11 Cdn_RackSpaceCdn_Page_View.php:10
1827
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:9
1828
+ msgid "Authorize:"
1829
+ msgstr "Autorisieren:"
1830
+
1831
+ #: inc/options/general.php:250
1832
+ msgid "Auto"
1833
+ msgstr "Auto"
1834
+
1835
+ #: Cdn_Highwinds_Page_View.php:78 Cdn_LimeLight_Page_View.php:49
1836
+ #: Cdn_MaxCdn_Page_View.php:187 Cdn_RackSpaceCloudFiles_Page_View.php:96
1837
+ #: Cdn_StackPath2_Page_View.php:219 Cdn_StackPath_Page_View.php:146
1838
+ #: inc/options/cdn/akamai.php:73 inc/options/cdn/att.php:47
1839
+ #: inc/options/cdn/azure.php:56 inc/options/cdn/cf.php:103
1840
+ #: inc/options/cdn/cf2.php:95 inc/options/cdn/cotendo.php:54
1841
+ #: inc/options/cdn/edgecast.php:47 inc/options/cdn/ftp.php:200
1842
+ #: inc/options/cdn/mirror.php:33 inc/options/cdn/rscf.php:90
1843
+ #: inc/options/cdn/s3.php:109 inc/options/cdn/s3_compatible.php:85
1844
+ msgid "Auto (determine connection type automatically)"
1845
+ msgstr "Auto (Verbindungstyp automatisch ermitteln)"
1846
+
1847
+ #: Cdn_ConfigLabels.php:24
1848
+ msgid "Auto upload interval:"
1849
+ msgstr "Automatisches Upload-Intervall:"
1850
+
1851
+ #: Extension_ImageService_Page_View.php:84
1852
+ msgid "Auto-convert images on upload."
1853
+ msgstr "Bilder beim Hochladen automatisch konvertieren."
1854
+
1855
+ #: Extension_ImageService_Page_View.php:78
1856
+ msgid "Auto-convert:"
1857
+ msgstr "Automatisch konvertieren:"
1858
+
1859
+ #: inc/options/cdn.php:629
1860
+ msgid "Automatically attempt to find and upload changed files."
1861
+ msgstr ""
1862
+ "Versuchen Sie automatisch, geänderte Dateien zu finden und hochzuladen."
1863
+
1864
+ #: inc/options/cdn.php:723
1865
+ msgid ""
1866
+ "Automatically import files hosted with 3rd parties of these types (if used "
1867
+ "in your posts / pages) to your media library."
1868
+ msgstr ""
1869
+ "Importieren Sie automatisch Dateien, die bei Drittanbietern dieser Art "
1870
+ "gehostet werden (falls in Ihren Beiträgen / Seiten verwendet), in Ihre "
1871
+ "Medienbibliothek."
1872
+
1873
+ #: Extension_CloudFlare_Page_View.php:513
1874
+ msgid ""
1875
+ "Automatically optimize image loading for website visitors on mobile devices"
1876
+ msgstr ""
1877
+ "Optimieren Sie automatisch das Laden von Bildern für Website-Besucher auf "
1878
+ "Mobilgeräten"
1879
+
1880
+ #: Extension_FeedBurner_Plugin_Admin.php:42
1881
+ msgid ""
1882
+ "Automatically ping (purge) FeedBurner feeds when pages / posts are modified. "
1883
+ "Default URL: %s"
1884
+ msgstr ""
1885
+ "Automatisches Pingen (Löschen) von FeedBurner-Feeds, wenn Seiten / Beiträge "
1886
+ "geändert werden. Standard-URL: %s"
1887
+
1888
+ #: PgCache_ConfigLabels.php:18
1889
+ msgid "Automatically prime the page cache"
1890
+ msgstr "Bereiten Sie den Seitencache automatisch vor"
1891
+
1892
+ #: Extension_CloudFlare_Page_View.php:483
1893
+ msgid ""
1894
+ "Automatically redirect visitors on mobile devices to a mobile-optimized "
1895
+ "subdomain"
1896
+ msgstr ""
1897
+ "Leiten Sie Besucher auf Mobilgeräten automatisch zu einer für Mobilgeräte "
1898
+ "optimierten Subdomain weiter"
1899
+
1900
+ #: inc/options/cdn.php:586
1901
+ msgid "Automatically upload minify files"
1902
+ msgstr "Minify-Dateien automatisch hochladen"
1903
+
1904
+ #: inc/lightbox/self_test.php:312
1905
+ msgid "Available"
1906
+ msgstr "Verfügbar"
1907
+
1908
+ #: FeatureShowcase_Plugin_Admin.php:209
1909
+ msgid "Available in sites"
1910
+ msgstr "Verfügbar in Websites"
1911
+
1912
+ #: Extension_NewRelic_Widget_View_Apm.php:28
1913
+ msgid "Average times"
1914
+ msgstr "Durchschnittliche Zeiten"
1915
+
1916
+ #: UsageStatistics_Page_View.php:53
1917
+ msgid "Avg processing time: "
1918
+ msgstr "Durchschnittliche Bearbeitungszeit:"
1919
+
1920
+ #: inc/options/cdn/cf.php:23 inc/options/cdn/s3.php:29
1921
+ msgid "AWS Identity and Access Management"
1922
+ msgstr "AWS Identitäts- und Zugriffsverwaltung"
1923
+
1924
+ #. translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
1925
+ #: inc/options/about.php:70
1926
+ msgid ""
1927
+ "Bandwidth savings via Minify and %1$sHTTP%2$s compression of %3$sHTML%4$s, "
1928
+ "%5$sCSS%6$s, JavaScript and feeds"
1929
+ msgstr ""
1930
+ "Bandbreiteneinsparungen durch Minify und %1$sHTTP%2$s-Komprimierung von "
1931
+ "%3$sHTML%4$s, %5$sCSS%6$s, JavaScript und Feeds"
1932
+
1933
+ #: BrowserCache_ConfigLabels.php:61
1934
+ msgid "base-uri:"
1935
+ msgstr "base-uri:"
1936
+
1937
+ #: Extension_CloudFlare_Page_View.php:179
1938
+ msgid "Basic (cache most static resources (i.e., css, images, and JavaScript)"
1939
+ msgstr ""
1940
+ "Basic (Cache die meisten statischen Ressourcen (z. B. CSS, Bilder und "
1941
+ "JavaScript)"
1942
+
1943
+ #. translators: 1 opening HTML span tag, 2 closing HTML span tag.
1944
+ #: inc/options/minify.php:327
1945
+ msgid "Before %1$s&lt;/head&gt;%2$s"
1946
+ msgstr "Vor %1$s&lt;/head&gt;%2$s"
1947
+
1948
+ #: Minify_ConfigLabels.php:27
1949
+ msgid "Before <span class=\"html-tag\">&lt;/body&gt;</span>"
1950
+ msgstr "Vor <span class=\"html-tag\">&lt;/body&gt;</span>"
1951
+
1952
+ #: Extension_NewRelic_Page_View_Apm.php:195 Extension_Swarmify_Page_View.php:44
1953
+ msgid "Behavior Settings"
1954
+ msgstr "Verhaltenseinstellungen"
1955
+
1956
+ #. translators: 3 opening HTML a tag to iis.net WinCache for PHP download page, 4 closing HTML a tag.
1957
+ #: inc/options/install.php:393
1958
+ msgid ""
1959
+ "Best compatibility with %1$sIIS%2$s is realized via %3$sWinCache%4$s opcode "
1960
+ "cache."
1961
+ msgstr ""
1962
+ "Die beste Kompatibilität mit %1$sIIS%2$s wird über den Opcode-Cache von "
1963
+ "%3$sWinCache%4$s realisiert."
1964
+
1965
+ #: Util_ConfigLabel.php:27
1966
+ msgid "Binary protocol"
1967
+ msgstr "Binäres Protokoll"
1968
+
1969
+ #: PgCache_ConfigLabels.php:26
1970
+ msgid "Blog feed"
1971
+ msgstr "Blog-Feed"
1972
+
1973
+ #. Author of the plugin
1974
+ msgid "BoldGrid"
1975
+ msgstr "FettGitter"
1976
+
1977
+ #: inc/options/minify.php:148
1978
+ msgid "Both Admin &amp; Email Notification"
1979
+ msgstr "Sowohl Admin- als auch E-Mail-Benachrichtigung"
1980
+
1981
+ #: FeatureShowcase_Plugin_Admin.php:444 inc/options/common/header.php:89
1982
+ #: inc/options/general.php:427 Root_AdminMenu.php:85 Root_AdminMenu.php:86
1983
+ #: SetupGuide_Plugin_Admin.php:1060 SetupGuide_Plugin_Admin.php:1221
1984
+ #: SetupGuide_Plugin_Admin.php:1254
1985
+ msgid "Browser Cache"
1986
+ msgstr "Browser-Cache"
1987
+
1988
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1989
+ #: Extension_CloudFlare_Page_View.php:245
1990
+ msgid ""
1991
+ "Browser cache %1$sTTL%2$s (in seconds) specifies how long CloudFlare-cached "
1992
+ "resources will remain on your visitors' computers."
1993
+ msgstr ""
1994
+ "Der Browser-Cache %1$sTTL%2$s (in Sekunden) gibt an, wie lange von "
1995
+ "CloudFlare im Cache gespeicherte Ressourcen auf den Computern Ihrer Besucher "
1996
+ "verbleiben."
1997
+
1998
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1999
+ #: Extension_CloudFlare_Page_View.php:200
2000
+ msgid "Browser cache %1$sTTL%2$s:"
2001
+ msgstr "Browser-Cache %1$sTTL%2$s:"
2002
+
2003
+ #: Extension_NewRelic_AdminNotes.php:25
2004
+ msgid "Browser Cache and use compression"
2005
+ msgstr "Browser-Cache und Komprimierung verwenden"
2006
+
2007
+ #: BrowserCache_ConfigLabels.php:7
2008
+ msgid "Browser Cache:"
2009
+ msgstr "Browser-Cache:"
2010
+
2011
+ #: BrowserCache_Plugin.php:376
2012
+ msgid "Browser Cache: Update Media Query String"
2013
+ msgstr "Browser-Cache: Medienabfragezeichenfolge aktualisieren"
2014
+
2015
+ #. translators: 1 HTML span tag indicating Browsercache enabled/disabled.
2016
+ #: inc/options/browsercache.php:23
2017
+ msgid "Browser caching is currently %1$s."
2018
+ msgstr "Das Browser-Caching beträgt derzeit %1$s."
2019
+
2020
+ #: Extension_CloudFlare_Page_View.php:557
2021
+ msgid ""
2022
+ "Browser Integrity Check is similar to Bad Behavior and looks for common HTTP "
2023
+ "headers abused most commonly by spammers and denies access to your page. It "
2024
+ "will also challenge visitors that do not have a user agent or a non standard "
2025
+ "user agent (also commonly used by abuse bots, crawlers or visitors)."
2026
+ msgstr ""
2027
+ "Die Browser-Integritätsprüfung ähnelt Bad Behavior und sucht nach häufigen "
2028
+ "HTTP-Headern, die am häufigsten von Spammern missbraucht werden, und "
2029
+ "verweigert den Zugriff auf Ihre Seite. Es wird auch Besucher herausfordern, "
2030
+ "die keinen Benutzeragenten oder einen nicht standardmäßigen Benutzeragenten "
2031
+ "haben (auch häufig von Missbrauchs-Bots, Crawlern oder Besuchern verwendet)."
2032
+
2033
+ #: Extension_CloudFlare_Page_View.php:556
2034
+ msgid "Browser integrity check:"
2035
+ msgstr "Browser-Integritätsprüfung:"
2036
+
2037
+ #. translators: 1: AWS S3 bucket name.
2038
+ #: CdnEngine_S3.php:394
2039
+ msgid "Bucket doesn't exist: %1$s."
2040
+ msgstr "Bucket existiert nicht: %1$s."
2041
+
2042
+ #: inc/options/cdn/cf.php:62 inc/options/cdn/s3.php:68
2043
+ #: inc/options/cdn/s3_compatible.php:54
2044
+ msgid "Bucket:"
2045
+ msgstr "Eimer:"
2046
+
2047
+ #: inc/options/extensions/list.php:31 inc/options/extensions/list.php:234
2048
+ msgid "Bulk Actions"
2049
+ msgstr "Massenaktionen"
2050
+
2051
+ #: Generic_WidgetServices_View.php:35
2052
+ msgid "Buy now"
2053
+ msgstr "Kaufe jetzt"
2054
+
2055
+ #. translators: 1 HTML a tag to extension author page.
2056
+ #: inc/options/extensions/list.php:203
2057
+ msgid "By %s"
2058
+ msgstr "Von %s"
2059
+
2060
+ #. translators: 1: Anchor/link open tag, 2: Anchor/link close tag.
2061
+ #: SetupGuide_Plugin_Admin.php:1101
2062
+ msgid ""
2063
+ "By allowing us to collect data about how W3 Total Cache is used, we can "
2064
+ "improve our features and experience for everyone. This data will not include "
2065
+ "any personally identifiable information. Feel free to review our %1$sterms "
2066
+ "of use and privacy policy%2$s."
2067
+ msgstr ""
2068
+ "Indem wir uns erlauben, Daten darüber zu sammeln, wie W3 Total Cache "
2069
+ "verwendet wird, können wir unsere Funktionen und Erfahrungen für alle "
2070
+ "verbessern. Diese Daten enthalten keine personenbezogenen Daten. Lesen Sie "
2071
+ "unsere %1$sNutzungsbedingungen und Datenschutzrichtlinie%2$s."
2072
+
2073
+ #. translators: 1: HTML break tag, 2: Anchor/link open tag, 3: Anchor/link close tag.
2074
+ #: Licensing_Plugin_Admin.php:307
2075
+ msgid ""
2076
+ "By allowing us to collect data about how W3 Total Cache is used, we can "
2077
+ "improve our features and experience for everyone. This data will not include "
2078
+ "any personally identifiable information.%1$sFeel free to review our "
2079
+ "%2$sterms of use and privacy policy%3$s."
2080
+ msgstr ""
2081
+ "Indem wir uns erlauben, Daten darüber zu sammeln, wie W3 Total Cache "
2082
+ "verwendet wird, können wir unsere Funktionen und Erfahrungen für alle "
2083
+ "verbessern. Diese Daten enthalten keine persönlich identifizierbaren "
2084
+ "Informationen.%1$sLesen Sie unsere %2$sNutzungsbedingungen und "
2085
+ "Datenschutzrichtlinie%3$s."
2086
+
2087
+ #: inc/options/pgcache.php:71
2088
+ msgid ""
2089
+ "By default the front page is cached when using static front page in reading "
2090
+ "settings."
2091
+ msgstr ""
2092
+ "Standardmäßig wird die Titelseite zwischengespeichert, wenn die statische "
2093
+ "Titelseite in den Leseeinstellungen verwendet wird."
2094
+
2095
+ #: SetupGuide_Plugin_Admin.php:1185
2096
+ msgid ""
2097
+ "By default, this feature is disabled. We recommend using Redis or Memcached,"
2098
+ " otherwise leave this feature disabled as the server database engine may be "
2099
+ "faster than using disk caching."
2100
+ msgstr ""
2101
+ "Standardmäßig ist diese Funktion deaktiviert. Wir empfehlen die Verwendung "
2102
+ "von Redis oder Memcached. Andernfalls lassen Sie diese Funktion deaktiviert, "
2103
+ "da die Server-Datenbank-Engine möglicherweise schneller ist als die "
2104
+ "Verwendung von Festplatten-Caching."
2105
+
2106
+ #: inc/options/pgcache.php:447
2107
+ msgid "Cache"
2108
+ msgstr "Zwischenspeicher"
2109
+
2110
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
2111
+ #: inc/options/pgcache.php:109
2112
+ msgid "Cache %1$sSSL%2$s requests (uniquely) for improved performance."
2113
+ msgstr ""
2114
+ "Cachen Sie %1$sSSL%2$s-Anfragen (einzigartig) für verbesserte Leistung."
2115
+
2116
+ #: PgCache_ConfigLabels.php:15
2117
+ msgid "Cache 404 (not found) pages"
2118
+ msgstr "Cache 404 (nicht gefunden) Seiten"
2119
+
2120
+ #: PgCache_ConfigLabels.php:13
2121
+ msgid ""
2122
+ "Cache <acronym title=\"Secure Socket Layer\">SSL</acronym> (<acronym "
2123
+ "title=\"HyperText Transfer Protocol over SSL\">HTTPS</acronym>) requests"
2124
+ msgstr ""
2125
+ "Cache- <acronym title=\"Secure Socket Layer\">SSL</acronym> ( <acronym "
2126
+ "title=\"HyperText Transfer Protocol über SSL\">HTTPS</acronym> )-Anfragen"
2127
+
2128
+ #: PgCache_ConfigLabels.php:14
2129
+ msgid ""
2130
+ "Cache <acronym title=\"Uniform Resource Identifier\">URI</acronym>s with "
2131
+ "query string variables"
2132
+ msgstr ""
2133
+ "Zwischenspeichern <acronym title=\"Uniform Resource Identifier\">Sie "
2134
+ "URIs</acronym> mit Abfragezeichenfolgenvariablen"
2135
+
2136
+ #: inc/options/pgcache.php:180
2137
+ msgid "Cache alias hostnames:"
2138
+ msgstr "Cache-Alias-Hostnamen:"
2139
+
2140
+ #: Extension_Genesis_Page_View.php:91
2141
+ msgid "Cache author/tag/categories/term post loop:"
2142
+ msgstr "Cache-Autor/Tag/Kategorien/Term-Post-Loop:"
2143
+
2144
+ #: Extension_Genesis_Page_View.php:134
2145
+ msgid "Cache comments:"
2146
+ msgstr "Cache-Kommentare:"
2147
+
2148
+ #: BrowserCache_ConfigLabels.php:15 BrowserCache_ConfigLabels.php:26
2149
+ #: BrowserCache_ConfigLabels.php:35
2150
+ msgid "Cache Control policy:"
2151
+ msgstr "Cache-Steuerungsrichtlinie:"
2152
+
2153
+ #: PgCache_ConfigLabels.php:54
2154
+ msgid "Cache exception list:"
2155
+ msgstr "Cache-Ausnahmeliste:"
2156
+
2157
+ #: PgCache_ConfigLabels.php:12
2158
+ msgid "Cache feeds: site, categories, tags, comments"
2159
+ msgstr "Cache-Feeds: Website, Kategorien, Tags, Kommentare"
2160
+
2161
+ #: UsageStatistics_Page_View.php:125
2162
+ msgid "Cache Fill"
2163
+ msgstr "Cache-Füllung"
2164
+
2165
+ #: UsageStatistics_Page_View.php:330
2166
+ msgid "Cache flushes: "
2167
+ msgstr "Cache-Flushes:"
2168
+
2169
+ #: Extension_Genesis_Page_View.php:194
2170
+ msgid "Cache footer:"
2171
+ msgstr "Cache-Fußzeile:"
2172
+
2173
+ #: PgCache_ConfigLabels.php:10
2174
+ msgid "Cache front page"
2175
+ msgstr "Cache-Titelseite"
2176
+
2177
+ #: Extension_Genesis_Page_View.php:82
2178
+ msgid "Cache front page post loop:"
2179
+ msgstr "Cache-Frontpage-Post-Loop:"
2180
+
2181
+ #: Extension_Genesis_Page_View.php:185
2182
+ msgid "Cache genesis footer:"
2183
+ msgstr "Cache-Genesis-Fußzeile:"
2184
+
2185
+ #: FeatureShowcase_Plugin_Admin.php:468 Root_AdminMenu.php:91
2186
+ #: Root_AdminMenu.php:92
2187
+ msgid "Cache Groups"
2188
+ msgstr "Cache-Gruppen"
2189
+
2190
+ #: Extension_Genesis_Page_View.php:48
2191
+ msgid "Cache header loop. This is the area where the logo is located."
2192
+ msgstr "Cache-Header-Schleife. In diesem Bereich befindet sich das Logo."
2193
+
2194
+ #: Extension_Genesis_Page_View.php:46
2195
+ msgid "Cache header:"
2196
+ msgstr "Cache-Header:"
2197
+
2198
+ #: UsageStatistics_Page_View.php:49
2199
+ msgid "Cache hit rate: "
2200
+ msgstr "Cache-Trefferrate:"
2201
+
2202
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:55
2203
+ #: Cdn_StackPath_Widget_View_Authorized.php:44
2204
+ msgid "Cache Hits"
2205
+ msgstr "Cache-Treffer"
2206
+
2207
+ #: UsageStatistics_Page_View.php:46
2208
+ msgid "Cache hits: "
2209
+ msgstr "Cache-Treffer:"
2210
+
2211
+ #: Extension_CloudFlare_Page_View.php:175
2212
+ msgid "Cache level:"
2213
+ msgstr "Cache-Level:"
2214
+
2215
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:62
2216
+ #: Cdn_StackPath_Widget_View_Authorized.php:51
2217
+ msgid "Cache Misses"
2218
+ msgstr "Cache-Fehler"
2219
+
2220
+ #: Extension_Genesis_Page_View.php:143
2221
+ msgid "Cache pings:"
2222
+ msgstr "Cache-Pings:"
2223
+
2224
+ #: PgCache_ConfigLabels.php:10
2225
+ msgid "Cache posts page"
2226
+ msgstr "Seite Cache-Beiträge"
2227
+
2228
+ #: inc/options/common/header.php:187 inc/options/pgcache.php:235
2229
+ msgid "Cache Preload"
2230
+ msgstr "Cache-Vorladen"
2231
+
2232
+ #: Extension_Genesis_Page_View.php:55
2233
+ msgid "Cache primary navigation:"
2234
+ msgstr "Cache-Primärnavigation:"
2235
+
2236
+ #: Extension_Genesis_Page_View.php:64
2237
+ msgid "Cache secondary navigation:"
2238
+ msgstr "Cache-Sekundärnavigation:"
2239
+
2240
+ #: Extension_Genesis_Page_View.php:160
2241
+ msgid "Cache sidebar:"
2242
+ msgstr "Cache-Seitenleiste:"
2243
+
2244
+ #: Extension_Genesis_Page_View.php:117
2245
+ msgid "Cache single post / page:"
2246
+ msgstr "Einzelner Beitrag / Seite zwischenspeichern:"
2247
+
2248
+ #: UsageStatistics_Page_View.php:33
2249
+ msgid "Cache size: "
2250
+ msgstr "Cache-Größe:"
2251
+
2252
+ #: UsageStatistics_Page_View.php:400
2253
+ msgid "Cache Storage"
2254
+ msgstr "Cache-Speicher"
2255
+
2256
+ #. translators: 3 closing HTML acronym tag, 4 closing HTML acronym tag.
2257
+ #: inc/options/pgcache.php:757
2258
+ msgid ""
2259
+ "Cache the specified pages / directories even if listed in the \"never cache "
2260
+ "the following pages\" field. Supports regular expression (See "
2261
+ "%1$s%2$sFAQ%3$s%4$s)"
2262
+ msgstr ""
2263
+ "Die angegebenen Seiten / Verzeichnisse zwischenspeichern, auch wenn sie im "
2264
+ "Feld „Folgende Seiten niemals zwischenspeichern“ aufgeführt sind. "
2265
+ "Unterstützt reguläre Ausdrücke (Siehe %1$s%2$sFAQ%3$s%4$s)"
2266
+
2267
+ #: inc/options/pgcache.php:787
2268
+ msgid "Cache the specified pages even if they don't have trailing slash."
2269
+ msgstr ""
2270
+ "Cachen Sie die angegebenen Seiten, auch wenn sie keinen nachgestellten "
2271
+ "Schrägstrich haben."
2272
+
2273
+ #: Extension_CloudFlare_GeneralPage_View.php:19
2274
+ #: Extension_CloudFlare_Page_View.php:126
2275
+ #: Extension_NewRelic_Page_View_Apm.php:180
2276
+ msgid "Cache time:"
2277
+ msgstr "Zwischenspeicher:"
2278
+
2279
+ #: UsageStatistics_GeneralPage_View.php:18
2280
+ msgid "Cache usage statistics"
2281
+ msgstr "Statistiken zur Cache-Nutzung"
2282
+
2283
+ #: inc/options/browsercache.php:420 inc/options/browsercache.php:566
2284
+ #: inc/options/browsercache.php:649
2285
+ msgid "cache with max-age (\"public, max-age=EXPIRES_SECONDS\")"
2286
+ msgstr "Cache mit max-age (\"public, max-age=EXPIRES_SECONDS\")"
2287
+
2288
+ #: inc/options/browsercache.php:422 inc/options/browsercache.php:568
2289
+ #: inc/options/browsercache.php:651
2290
+ msgid ""
2291
+ "cache with max-age and validation (\"max-age=EXPIRES_SECONDS, public, must-"
2292
+ "revalidate, proxy-revalidate\")"
2293
+ msgstr ""
2294
+ "Cache mit maximalem Alter und Validierung (\"max-age=EXPIRES_SECONDS, public,"
2295
+ " must-revalidate, proxy-revalidate\")"
2296
+
2297
+ #: inc/options/browsercache.php:421 inc/options/browsercache.php:567
2298
+ #: inc/options/browsercache.php:650
2299
+ msgid "cache with validation (\"public, must-revalidate, proxy-revalidate\")"
2300
+ msgstr "Cache mit Validierung (\"public, must-revalidate, proxy-revalidate\")"
2301
+
2302
+ #: inc/options/browsercache.php:423 inc/options/browsercache.php:569
2303
+ #: inc/options/browsercache.php:652
2304
+ msgid "cache without proxy (\"private, must-revalidate\")"
2305
+ msgstr "Cache ohne Proxy (\"private, must-revalidate\")"
2306
+
2307
+ #: Extension_Genesis_Page_View.php:37
2308
+ msgid "Cache wp_head loop:"
2309
+ msgstr "Cache-wp_head-Schleife:"
2310
+
2311
+ #: Extension_Genesis_Page_View.php:39
2312
+ msgid "Cache wp_head. This includes the embedded CSS, JS etc."
2313
+ msgstr "Cache wp_head. Dazu gehören das eingebettete CSS, JS usw."
2314
+
2315
+ #: SetupGuide_Plugin_Admin.php:1262
2316
+ msgid "Cache-Control Header"
2317
+ msgstr "Cache-Control-Header"
2318
+
2319
+ #: CacheGroups_Plugin_Admin_View.php:283
2320
+ msgid "Cache:"
2321
+ msgstr "Zwischenspeicher:"
2322
+
2323
+ #: DbCache_WpdbInjection_QueryCaching.php:903
2324
+ msgid "Cached queries: "
2325
+ msgstr "Zwischengespeicherte Abfragen:"
2326
+
2327
+ #: Extension_Genesis_Page_View.php:186
2328
+ msgid "Caches footer loop."
2329
+ msgstr "Caches-Fußzeilenschleife."
2330
+
2331
+ #: Extension_Genesis_Page_View.php:66
2332
+ msgid "Caches secondary navigation filter; per page."
2333
+ msgstr "Caches sekundärer Navigationsfilter; pro Seite."
2334
+
2335
+ #: Extension_Genesis_Page_View.php:161
2336
+ msgid "Caches sidebar loop, the widget area."
2337
+ msgstr "Caches Seitenleistenschleife, der Widget-Bereich."
2338
+
2339
+ #: Extension_Genesis_Page_View.php:135
2340
+ msgid "Caches the comments loop, pagination is supported."
2341
+ msgstr "Cachet die Kommentarschleife, Paginierung wird unterstützt."
2342
+
2343
+ #: Extension_Genesis_Page_View.php:83
2344
+ msgid "Caches the front page post loop, pagination is supported."
2345
+ msgstr "Cachet die Startseiten-Post-Schleife, Paginierung wird unterstützt."
2346
+
2347
+ #: Extension_Genesis_Page_View.php:57
2348
+ msgid "Caches the navigation filter; per page."
2349
+ msgstr "Cachet den Navigationsfilter; pro Seite."
2350
+
2351
+ #: Extension_Genesis_Page_View.php:144
2352
+ msgid "Caches the ping loop, pagination is supported. One per line."
2353
+ msgstr ""
2354
+ "Cachet die Ping-Schleife, Paginierung wird unterstützt. Eine pro Zeile."
2355
+
2356
+ #: Extension_Genesis_Page_View.php:92
2357
+ msgid ""
2358
+ "Caches the posts listed on tag, categories, author and other term pages, "
2359
+ "pagination is supported."
2360
+ msgstr ""
2361
+ "Speichert die Beiträge, die auf Tag-, Kategorien-, Autoren- und anderen "
2362
+ "Begriffsseiten aufgelistet sind, Paginierung wird unterstützt."
2363
+
2364
+ #: Extension_Genesis_Page_View.php:118
2365
+ msgid "Caches the single post / page loop, pagination is supported."
2366
+ msgstr ""
2367
+ "Zwischenspeichern der einzelnen Post- / Seitenschleife, Paginierung wird "
2368
+ "unterstützt."
2369
+
2370
+ #: Extension_Genesis_Page_View.php:195
2371
+ msgid "Caches wp_footer loop."
2372
+ msgstr "Zwischenspeichert die wp_footer-Schleife."
2373
+
2374
+ #: inc/options/general.php:348
2375
+ msgid ""
2376
+ "Caching database objects decreases the response time of your site. Best used "
2377
+ "if object caching is not possible."
2378
+ msgstr ""
2379
+ "Das Zwischenspeichern von Datenbankobjekten verringert die Reaktionszeit "
2380
+ "Ihrer Website. Wird am besten verwendet, wenn Objekt-Caching nicht möglich "
2381
+ "ist."
2382
+
2383
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
2384
+ #: inc/options/about.php:135
2385
+ msgid ""
2386
+ "Caching of (minified) %1$sCSS%2$s and JavaScript in memory, on disk or on "
2387
+ "%3$sCDN%4$s"
2388
+ msgstr ""
2389
+ "Caching von (minimiertem) %1$sCSS%2$s und JavaScript im Arbeitsspeicher, auf "
2390
+ "der Festplatte oder auf %3$sCDN%4$s"
2391
+
2392
+ #: inc/options/about.php:152
2393
+ msgid "Caching of database objects in memory or on disk"
2394
+ msgstr ""
2395
+ "Zwischenspeichern von Datenbankobjekten im Arbeitsspeicher oder auf der "
2396
+ "Festplatte"
2397
+
2398
+ #: inc/options/about.php:154
2399
+ msgid ""
2400
+ "Caching of feeds (site, categories, tags, comments, search results) in "
2401
+ "memory or on disk"
2402
+ msgstr ""
2403
+ "Caching von Feeds (Website, Kategorien, Tags, Kommentare, Suchergebnisse) im "
2404
+ "Speicher oder auf der Festplatte"
2405
+
2406
+ #: inc/options/about.php:153
2407
+ msgid "Caching of objects in memory or on disk"
2408
+ msgstr ""
2409
+ "Zwischenspeichern von Objekten im Arbeitsspeicher oder auf der Festplatte"
2410
+
2411
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
2412
+ #: inc/options/about.php:115
2413
+ msgid ""
2414
+ "Caching of pages / posts in memory or on disk or on %1$sCDN%2$s (mirror only)"
2415
+ msgstr ""
2416
+ "Caching von Seiten/Beiträgen im Arbeitsspeicher oder auf der Festplatte oder "
2417
+ "auf %1$sCDN%2$s (nur Mirror)"
2418
+
2419
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
2420
+ #: inc/options/about.php:160
2421
+ msgid ""
2422
+ "Caching of search results pages (i.e. %1$sURI%2$ss with query string "
2423
+ "variables) in memory or on disk"
2424
+ msgstr ""
2425
+ "Zwischenspeichern von Suchergebnisseiten (d. h. %1$sURI%2$ss mit "
2426
+ "Abfragezeichenfolgenvariablen) im Arbeitsspeicher oder auf der Festplatte"
2427
+
2428
+ #: inc/options/general.php:116
2429
+ msgid ""
2430
+ "Caching pages will reduce the response time of your site and increase the "
2431
+ "scale of your web server."
2432
+ msgstr ""
2433
+ "Durch das Caching von Seiten wird die Antwortzeit Ihrer Website verkürzt und "
2434
+ "die Skalierung Ihres Webservers erhöht."
2435
+
2436
+ #: FeatureShowcase_Plugin_Admin.php:336 UsageStatistics_Widget.php:25
2437
+ msgid "Caching Statistics"
2438
+ msgstr "Caching-Statistiken"
2439
+
2440
+ #: UsageStatistics_Page_View.php:286
2441
+ msgid "Calls"
2442
+ msgstr "Anrufe"
2443
+
2444
+ #: UsageStatistics_Page_View.php:295 UsageStatistics_Page_View.php:321
2445
+ #: UsageStatistics_Page_View.php:350
2446
+ msgid "Calls/period: "
2447
+ msgstr "Anrufe/Zeitraum:"
2448
+
2449
+ #: UsageStatistics_Page_View.php:278 UsageStatistics_Page_View.php:298
2450
+ #: UsageStatistics_Page_View.php:324 UsageStatistics_Page_View.php:353
2451
+ msgid "Calls/sec: "
2452
+ msgstr "Anrufe/Sek.:"
2453
+
2454
+ #: SetupGuide_Plugin_Admin.php:1229
2455
+ msgid "can help ensure browsers are properly caching your assets."
2456
+ msgstr ""
2457
+ "kann dazu beitragen, dass Browser Ihre Assets ordnungsgemäß "
2458
+ "zwischenspeichern."
2459
+
2460
+ #: SetupGuide_Plugin_Admin.php:1128
2461
+ msgid "can help you speed up"
2462
+ msgstr "kann Ihnen helfen, schneller zu werden"
2463
+
2464
+ #: SetupGuide_Plugin_Admin.php:1200
2465
+ msgid "can help you speed up dynamic pages by persistently storing objects."
2466
+ msgstr ""
2467
+ "kann Ihnen dabei helfen, dynamische Seiten zu beschleunigen, indem Objekte "
2468
+ "dauerhaft gespeichert werden."
2469
+
2470
+ #: CdnEngine_S3.php:35
2471
+ msgid "Canada (Central)"
2472
+ msgstr "Kanada (Zentral)"
2473
+
2474
+ #: Util_Widget.php:160
2475
+ msgid "Cancel"
2476
+ msgstr "Absagen"
2477
+
2478
+ #: Cdnfsd_CloudFront_Page_View.php:48 Cdnfsd_MaxCdn_Page_View.php:51
2479
+ #: Cdnfsd_StackPath2_Page_View.php:58 Cdnfsd_StackPath_Page_View.php:52
2480
+ #: Cdn_Highwinds_Page_View.php:37 Cdn_Highwinds_Page_View.php:123
2481
+ #: Cdn_Highwinds_Popup_View_ConfigureCnamesForm.php:24
2482
+ #: Cdn_MaxCdn_Page_View.php:60 Cdn_MaxCdn_Page_View.php:118
2483
+ #: Cdn_MaxCdn_Page_View.php:142 Cdn_RackSpaceCdn_Page_View.php:55
2484
+ #: Cdn_RackSpaceCdn_Page_View.php:125
2485
+ #: Cdn_RackSpaceCdn_Popup_View_ConfigureDomains.php:24
2486
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Create.php:79
2487
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Create.php:110
2488
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:54 Cdn_StackPath2_Page_View.php:87
2489
+ #: Cdn_StackPath2_Page_View.php:112 Cdn_StackPath2_Page_View.php:149
2490
+ #: Cdn_StackPath2_Page_View.php:174 Cdn_StackPath_Page_View.php:58
2491
+ #: Cdn_StackPath_Page_View.php:98 inc/options/cdn/azure.php:103
2492
+ #: inc/options/cdn/cf.php:153 inc/options/cdn/cf2.php:145
2493
+ #: inc/options/cdn/ftp.php:327
2494
+ msgid "Canonical Name"
2495
+ msgstr "Eindeutige Bezeichnung"
2496
+
2497
+ #: Cdn_Plugin.php:1062
2498
+ msgid ""
2499
+ "Cant find minification base url, make sure minification folder sits inside "
2500
+ "WP_CONTENT_DIR and DOCUMENT_ROOT is set correctly"
2501
+ msgstr ""
2502
+ "Minifikations-Basis-URL kann nicht gefunden werden, stellen Sie sicher, dass "
2503
+ "sich der Minifikationsordner in WP_CONTENT_DIR befindet und DOCUMENT_ROOT "
2504
+ "richtig eingestellt ist"
2505
+
2506
+ #. translators: 3 HTML acronym for Hypertext Markup Language (HTML).
2507
+ #: BrowserCache_Page_View_SectionSecurity.php:703 Cdn_GeneralPage_View.php:99
2508
+ #: Extension_CloudFlare_Page_View.php:396 inc/options/about.php:78
2509
+ #: inc/options/about.php:139 inc/options/about.php:185
2510
+ #: inc/options/browsercache.php:361 inc/options/cdn.php:261
2511
+ #: inc/options/cdn/s3_compatible.php:31 inc/options/common/header.php:252
2512
+ #: inc/options/common/header.php:306 inc/options/general.php:201
2513
+ #: inc/options/general.php:227 inc/options/install.php:76
2514
+ #: inc/options/minify.php:118 inc/options/minify.php:595
2515
+ #: inc/options/minify.php:614 inc/options/minify.php:707
2516
+ #: inc/options/minify.php:798 inc/options/minify.php:946
2517
+ #: Minify_HelpPopup_View.php:54 Minify_HelpPopup_View.php:82
2518
+ #: Minify_HelpPopup_View.php:110
2519
+ msgid "Cascading Style Sheet"
2520
+ msgstr "Cascading Stylesheet"
2521
+
2522
+ #: inc/lightbox/minify_recommendations.php:78
2523
+ msgid "Cascading Style Sheets:"
2524
+ msgstr "Cascading Style Sheets:"
2525
+
2526
+ #: Minify_ConfigLabels.php:63
2527
+ msgid "Case for properties:"
2528
+ msgstr "Fall für Eigenschaften:"
2529
+
2530
+ #. translators: 1 HTML acronym for Content Delivery Network (CDN).
2531
+ #: Cdnfsd_GeneralPage_View.php:15 Cdnfsd_MaxCdn_Popup_View_Zone.php:43
2532
+ #: Cdnfsd_StackPath_Popup_View_Zone.php:43
2533
+ #: Cdnfsd_StackPath_Popup_View_Zone.php:51 Cdn_StackPath2_Page_View.php:19
2534
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:17
2535
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:31
2536
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:62
2537
+ #: Cdn_StackPath_Widget_View_Unauthorized.php:16
2538
+ #: Cdn_StackPath_Widget_View_Unauthorized.php:33
2539
+ #: Extension_NewRelic_AdminNotes.php:23 Generic_Plugin_Admin.php:801
2540
+ msgid "CDN"
2541
+ msgstr "CDN"
2542
+
2543
+ #: Cdn_LimeLight_Popup_View_Intro.php:42
2544
+ msgid "CDN hostname:"
2545
+ msgstr "CDN-Hostname:"
2546
+
2547
+ #: Cdn_Environment.php:152
2548
+ msgid "CDN module: Required Database SQL"
2549
+ msgstr "CDN-Modul: Erforderliches Datenbank-SQL"
2550
+
2551
+ #: Cdnfsd_TransparentCDN_Engine.php:263 Cdnfsd_TransparentCDN_Engine.php:295
2552
+ msgid ""
2553
+ "CDN site is not configured correctly: Delivery Domain must match your site "
2554
+ "domain"
2555
+ msgstr ""
2556
+ "Die CDN-Site ist nicht richtig konfiguriert: Die Bereitstellungsdomäne muss "
2557
+ "mit Ihrer Site-Domäne übereinstimmen"
2558
+
2559
+ #: Cdn_Plugin.php:794
2560
+ msgid "CDN: All"
2561
+ msgstr "CDN: Alle"
2562
+
2563
+ #: Cdn_Plugin.php:803
2564
+ msgid "CDN: Manual Purge"
2565
+ msgstr "CDN: Manuelle Bereinigung"
2566
+
2567
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
2568
+ #: Extension_CloudFlare_Page_View.php:267
2569
+ msgid "Challenge %1$sTTL%2$s:"
2570
+ msgstr "Herausforderung %1$sTTL%2$s:"
2571
+
2572
+ #: inc/options/pgcache.php:540
2573
+ msgid "Charset:"
2574
+ msgstr "Zeichensatz:"
2575
+
2576
+ #: inc/lightbox/minify_recommendations.php:72
2577
+ #: inc/lightbox/minify_recommendations.php:121
2578
+ msgid "Check / Uncheck All"
2579
+ msgstr "Alle aktivieren / deaktivieren"
2580
+
2581
+ #: extension-example/Extension_Example_Page_View.php:29
2582
+ msgid "Check if you want to add postfix to each post title."
2583
+ msgstr ""
2584
+ "Überprüfen Sie, ob Sie Postfix zu jedem Beitragstitel hinzufügen möchten."
2585
+
2586
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
2587
+ #: inc/options/install.php:251
2588
+ msgid "Check out the %1$sFAQ%2$s for more details on %3$susage</a>."
2589
+ msgstr ""
2590
+ "Sehen Sie sich die %1$sFAQ%2$s für weitere Details zur %3$sNutzung</a> an."
2591
+
2592
+ #. translators: 1: HTML input button to view minify settings.
2593
+ #: Generic_AdminNotes.php:222
2594
+ msgid "check the %1$s to maintain the desired user experience"
2595
+ msgstr "überprüfen Sie %1$s, um die gewünschte Benutzererfahrung beizubehalten"
2596
+
2597
+ #: CdnEngine_S3.php:36
2598
+ msgid "China (Beijing)"
2599
+ msgstr "China (Peking)"
2600
+
2601
+ #: CdnEngine_S3.php:37
2602
+ msgid "China (Ningxia)"
2603
+ msgstr "China (Ningxia)"
2604
+
2605
+ #: inc/options/general.php:267
2606
+ msgid "Choosing a minification method"
2607
+ msgstr "Auswählen einer Minifizierungsmethode"
2608
+
2609
+ #: Minify_ConfigLabels.php:68
2610
+ msgid "Clean"
2611
+ msgstr "Sauber"
2612
+
2613
+ #: Generic_Page_PurgeLog_View.php:61
2614
+ msgid "Clear Log"
2615
+ msgstr "Protokoll löschen"
2616
+
2617
+ #: Cdn_StackPath_Popup_View_Intro.php:32
2618
+ msgid "click here"
2619
+ msgstr "Klick hier"
2620
+
2621
+ #: Util_Ui.php:187
2622
+ msgid "Click to toggle"
2623
+ msgstr "Zum Umschalten klicken"
2624
+
2625
+ #: Cdnfsd_TransparentCDN_Page_View.php:40
2626
+ msgid "Client id:"
2627
+ msgstr "Kunden ID:"
2628
+
2629
+ #: Cdnfsd_TransparentCDN_Page_View.php:49
2630
+ msgid "Client secret:"
2631
+ msgstr "Client-Geheimnis:"
2632
+
2633
+ #: inc/lightbox/self_test.php:540
2634
+ msgid "Close"
2635
+ msgstr "Nah dran"
2636
+
2637
+ #: Extension_CloudFlare_Plugin.php:151
2638
+ msgid "CloudFlare"
2639
+ msgstr "CloudFlare"
2640
+
2641
+ #: Cdnfsd_Plugin_Admin.php:96
2642
+ msgid "CloudFlare (extension not activated)"
2643
+ msgstr "CloudFlare (Erweiterung nicht aktiviert)"
2644
+
2645
+ #: Extension_CloudFlare_AdminActions.php:33
2646
+ msgid "CloudFlare cache successfully emptied."
2647
+ msgstr "CloudFlare-Cache erfolgreich geleert."
2648
+
2649
+ #: Extension_CloudFlare_Page_View.php:17
2650
+ msgid "CloudFlare extension is currently "
2651
+ msgstr "CloudFlare-Erweiterung ist derzeit"
2652
+
2653
+ #: Extension_CloudFlare_Page_View.php:467
2654
+ msgid ""
2655
+ "CloudFlare may buffer the whole payload to deliver it at once to the client "
2656
+ "versus allowing it to be delivered in chunks."
2657
+ msgstr ""
2658
+ "CloudFlare kann die gesamte Nutzlast puffern, um sie sofort an den Client zu "
2659
+ "liefern, anstatt zuzulassen, dass sie in Blöcken geliefert wird."
2660
+
2661
+ #: Extension_CloudFlare_Page_View.php:100
2662
+ msgid "CloudFlare not available: "
2663
+ msgstr "CloudFlare nicht verfügbar:"
2664
+
2665
+ #: Extension_CloudFlare_GeneralPage_View.php:11
2666
+ msgid "CloudFlare protects and accelerates websites."
2667
+ msgstr "CloudFlare schützt und beschleunigt Websites."
2668
+
2669
+ #. translators: 7 opening HTML a tag to CloudFlare help page, 8 closing HTML a tag.
2670
+ #: Extension_CloudFlare_Plugin_Admin.php:34
2671
+ msgid ""
2672
+ "CloudFlare protects and accelerates websites. %1$sSign up now for free%2$s "
2673
+ "to get started, or if you have an account simply log in to obtain your "
2674
+ "%3$sAPI%4$s token / global key from the %5$saccount page%6$s to enter it on "
2675
+ "the General Settings box that appears after plugin activation. Contact the "
2676
+ "CloudFlare %7$ssupport team%8$s with any questions."
2677
+ msgstr ""
2678
+ "CloudFlare schützt und beschleunigt Websites. %1$sMelden Sie sich jetzt "
2679
+ "kostenlos an,%2$s um loszulegen, oder wenn Sie ein Konto haben, melden Sie "
2680
+ "sich einfach an, um Ihren %3$sAPI%4$s-Token/globalen Schlüssel von der "
2681
+ "%5$sKontoseite%6$s abzurufen s, um es in das Feld Allgemeine Einstellungen "
2682
+ "einzugeben, das nach der Plugin-Aktivierung angezeigt wird. Wenden Sie sich "
2683
+ "bei Fragen an das CloudFlare %7$sSupport-Team%8$s."
2684
+
2685
+ #: Extension_CloudFlare_AdminActions.php:64
2686
+ msgid "CloudFlare settings are successfully updated."
2687
+ msgstr "Die CloudFlare-Einstellungen wurden erfolgreich aktualisiert."
2688
+
2689
+ #: Extension_CloudFlare_Page_View.php:475
2690
+ msgid ""
2691
+ "CloudFlare will prefetch any URLs that are included in the response headers."
2692
+ msgstr ""
2693
+ "CloudFlare ruft alle URLs vorab ab, die in den Antwortheadern enthalten sind."
2694
+
2695
+ #: Extension_CloudFlare_Page_View.php:491
2696
+ msgid ""
2697
+ "CloudFlare will proxy customer error pages on any 502,504 errors on origin "
2698
+ "server instead of showing a default CloudFlare error page. This does not "
2699
+ "apply to 522 errors and is limited to Enterprise Zones."
2700
+ msgstr ""
2701
+ "CloudFlare wird Kundenfehlerseiten bei allen 502.504-Fehlern auf dem "
2702
+ "Ursprungsserver weiterleiten, anstatt eine standardmäßige CloudFlare-"
2703
+ "Fehlerseite anzuzeigen. Dies gilt nicht für 522-Fehler und ist auf "
2704
+ "Enterprise Zones beschränkt."
2705
+
2706
+ #: Extension_CloudFlare_Page_View.php:190
2707
+ msgid ""
2708
+ "CloudFlare will treat files with the same query strings as the same file in "
2709
+ "cache, regardless of the order of the query strings."
2710
+ msgstr ""
2711
+ "CloudFlare behandelt Dateien mit denselben Abfragezeichenfolgen wie dieselbe "
2712
+ "Datei im Cache, unabhängig von der Reihenfolge der Abfragezeichenfolgen."
2713
+
2714
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
2715
+ #: Extension_CloudFlare_Page_View.php:615
2716
+ msgid "CloudFlare: %1$sIP%2$s"
2717
+ msgstr "CloudFlare: %1$sIP%2$s"
2718
+
2719
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
2720
+ #: Extension_CloudFlare_Page_View.php:694
2721
+ msgid "CloudFlare: %1$sSSL%2$s"
2722
+ msgstr "CloudFlare: %1$sSSL%2$s"
2723
+
2724
+ #: Extension_CloudFlare_Plugin_Admin.php:165
2725
+ msgid "CloudFlare: All"
2726
+ msgstr "CloudFlare: Alle"
2727
+
2728
+ #: Extension_CloudFlare_Page_View.php:160
2729
+ msgid "CloudFlare: Caching"
2730
+ msgstr "CloudFlare: Caching"
2731
+
2732
+ #: Extension_CloudFlare_Page_View.php:346
2733
+ msgid "CloudFlare: Content Processing"
2734
+ msgstr "CloudFlare: Inhaltsverarbeitung"
2735
+
2736
+ #: Extension_CloudFlare_Page_View.php:498
2737
+ msgid "CloudFlare: Image Processing"
2738
+ msgstr "CloudFlare: Bildverarbeitung"
2739
+
2740
+ #: Extension_CloudFlare_Page_View.php:534
2741
+ msgid "CloudFlare: Protection"
2742
+ msgstr "CloudFlare: Schutz"
2743
+
2744
+ #: Cdnfsd_CloudFront_Engine.php:76
2745
+ msgid "CloudFront distribution not specified."
2746
+ msgstr "CloudFront-Verteilung nicht angegeben."
2747
+
2748
+ #: inc/popup/pagespeed_results.php:16
2749
+ msgid "Collapse all"
2750
+ msgstr "Alles zusammenklappen"
2751
+
2752
+ #: UsageStatistics_GeneralPage_View.php:59
2753
+ msgid "Collect CPU usage"
2754
+ msgstr "Erfassen Sie die CPU-Auslastung"
2755
+
2756
+ #: inc/options/minify.php:298 inc/options/minify.php:636
2757
+ msgid "Combine & Minify"
2758
+ msgstr "Kombinieren & Minimieren"
2759
+
2760
+ #: inc/options/minify.php:304 inc/options/minify.php:642
2761
+ #: Minify_ConfigLabels.php:24 Minify_ConfigLabels.php:26
2762
+ #: Minify_ConfigLabels.php:28
2763
+ msgid "Combine only"
2764
+ msgstr "Nur kombinieren"
2765
+
2766
+ #: PgCache_ConfigLabels.php:45
2767
+ msgid "Comment cookie lifetime:"
2768
+ msgstr "Kommentar-Cookie-Lebensdauer:"
2769
+
2770
+ #: Extension_Genesis_Page_View.php:227
2771
+ msgid "Comments"
2772
+ msgstr "Kommentare"
2773
+
2774
+ #: Cdnfsd_TransparentCDN_Page_View.php:30
2775
+ msgid "Company id:"
2776
+ msgstr "Firmen-ID:"
2777
+
2778
+ #: inc/lightbox/self_test.php:8
2779
+ msgid "Compatibility Check"
2780
+ msgstr "Kompatibilitätsprüfung"
2781
+
2782
+ #: inc/options/dashboard.php:51
2783
+ msgid "compatibility check"
2784
+ msgstr "Kompatibilitätsprüfung"
2785
+
2786
+ #: inc/options/pgcache.php:532
2787
+ msgid "Compatibility mode:"
2788
+ msgstr "Kompatibilitätsmodus:"
2789
+
2790
+ #: Minify_ConfigLabels.php:43
2791
+ msgid "Compilation level:"
2792
+ msgstr "Zusammenstellungsebene:"
2793
+
2794
+ #. translators: 1 opening HTML a tag to HTTP ETag Wiki page, 2 closing HTML a tag.
2795
+ #: inc/options/about.php:201
2796
+ msgid "Complete header management including %1$sETags%2$s"
2797
+ msgstr "Vollständige Kopfzeilenverwaltung einschließlich %1$sETags%2$s"
2798
+
2799
+ #: Minify_ConfigLabels.php:49
2800
+ msgid "Compress colors"
2801
+ msgstr "Farben komprimieren"
2802
+
2803
+ #: Minify_ConfigLabels.php:50
2804
+ msgid "Compress font-weight"
2805
+ msgstr "Schriftstärke komprimieren"
2806
+
2807
+ #: Extension_ImageService_Page_View.php:61
2808
+ msgid "Compression type:"
2809
+ msgstr "Kompressionstyp:"
2810
+
2811
+ #: Minify_ConfigLabels.php:61
2812
+ msgid "Compression:"
2813
+ msgstr "Kompression:"
2814
+
2815
+ #: Cli.php:319
2816
+ msgid "Config import failed: "
2817
+ msgstr "Konfigurationsimport fehlgeschlagen:"
2818
+
2819
+ #: Extension_Amp_Page_View.php:10 Extension_ImageService_Page_View.php:51
2820
+ #: Extension_Swarmify_Page_View.php:27 inc/options/cdn.php:24
2821
+ msgid "Configuration"
2822
+ msgstr "Aufbau"
2823
+
2824
+ #: Generic_Plugin_Admin.php:748
2825
+ msgid "Configuration file could not be imported."
2826
+ msgstr "Konfigurationsdatei konnte nicht importiert werden."
2827
+
2828
+ #: Cli.php:322
2829
+ msgid "Configuration successfully imported."
2830
+ msgstr "Konfiguration erfolgreich importiert."
2831
+
2832
+ #: Extension_CloudFlare_Cdn_Page_View.php:15
2833
+ msgid "Configuration:"
2834
+ msgstr "Aufbau:"
2835
+
2836
+ #: Cdnfsd_CloudFront_Page_View.php:14 Cdnfsd_LimeLight_Page_View.php:14
2837
+ #: Cdnfsd_MaxCdn_Page_View.php:13 Cdnfsd_StackPath2_Page_View.php:16
2838
+ #: Cdnfsd_StackPath_Page_View.php:14 Cdnfsd_TransparentCDN_Page_View.php:22
2839
+ #: Extension_CloudFlare_Cdn_Page_View.php:10
2840
+ msgid "Configuration: Full-Site Delivery"
2841
+ msgstr "Konfiguration: Full-Site-Bereitstellung"
2842
+
2843
+ #: inc/options/cdn.php:358
2844
+ msgid "Configuration: Objects"
2845
+ msgstr "Konfiguration: Objekte"
2846
+
2847
+ #: Extension_Swarmify_Widget_View_NotConfigured.php:16
2848
+ msgid "Configure"
2849
+ msgstr "Konfigurieren"
2850
+
2851
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
2852
+ #: Cdn_Highwinds_Page_View.php:119
2853
+ msgid "Configure %1$sCNAME%2$ss"
2854
+ msgstr "%1$sCNAME%2$ss konfigurieren"
2855
+
2856
+ #: Cdn_RackSpaceCdn_Page_View.php:80
2857
+ msgid "Configure CNAMEs"
2858
+ msgstr "Konfigurieren Sie CNAMEs"
2859
+
2860
+ #: Cdnfsd_CloudFront_Popup_View_Distribution.php:17
2861
+ msgid "Configure distribution"
2862
+ msgstr "Verteilung konfigurieren"
2863
+
2864
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Actualize.php:34
2865
+ msgid "Configure service"
2866
+ msgstr "Dienst konfigurieren"
2867
+
2868
+ #: Cdnfsd_MaxCdn_Popup_View_Zone.php:16
2869
+ #: Cdnfsd_StackPath_Popup_View_Zone.php:16 Cdn_MaxCdn_Popup_View_Zone.php:16
2870
+ #: Cdn_StackPath_Popup_View_Zone.php:16
2871
+ msgid "Configure zone"
2872
+ msgstr "Zone konfigurieren"
2873
+
2874
+ #: Extension_NewRelic_Service.php:177
2875
+ msgid ""
2876
+ "Configured license key does not match license key(s) in account: <br />%s "
2877
+ "<br />%s"
2878
+ msgstr ""
2879
+ "Der konfigurierte Lizenzschlüssel stimmt nicht mit dem/den Lizenzschlüssel(n)"
2880
+ " im Konto überein:<br /> %s<br /> %s"
2881
+
2882
+ #: Extension_WordPressSeo_Plugin_Admin.php:37
2883
+ msgid ""
2884
+ "Configures W3 Total Cache to comply with Yoast SEO requirements "
2885
+ "automatically."
2886
+ msgstr ""
2887
+ "Konfiguriert W3 Total Cache, um die SEO-Anforderungen von Yoast automatisch "
2888
+ "zu erfüllen."
2889
+
2890
+ #: BrowserCache_ConfigLabels.php:63
2891
+ msgid "connect-src:"
2892
+ msgstr "connect-src:"
2893
+
2894
+ #: Util_ConfigLabel.php:33
2895
+ msgid "Connection read timeout"
2896
+ msgstr "Zeitüberschreitung beim Lesen der Verbindung"
2897
+
2898
+ #: Util_ConfigLabel.php:32
2899
+ msgid "Connection retry interval"
2900
+ msgstr "Verbindungswiederholungsintervall"
2901
+
2902
+ #: Util_ConfigLabel.php:31
2903
+ msgid "Connection timeout"
2904
+ msgstr "Verbindungszeitüberschreitung"
2905
+
2906
+ #: inc/options/install.php:413
2907
+ msgid ""
2908
+ "Consider using memcached for objects that must persist across web server "
2909
+ "restarts or that you wish to share amongst your server pool, e.g.: database "
2910
+ "objects or page cache."
2911
+ msgstr ""
2912
+ "Erwägen Sie die Verwendung von Memcached für Objekte, die über Webserver-"
2913
+ "Neustarts hinweg bestehen bleiben müssen oder die Sie in Ihrem Serverpool "
2914
+ "gemeinsam nutzen möchten, z. B.: Datenbankobjekte oder Seitencache."
2915
+
2916
+ #: CdnEngine_Mirror_Akamai.php:55 CdnEngine_Mirror_Cotendo.php:63
2917
+ msgid "Constructor error (%s)."
2918
+ msgstr "Konstruktorfehler (%s)."
2919
+
2920
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:35 inc/options/cdn/azure.php:23
2921
+ #: inc/options/cdn/rscf.php:56
2922
+ msgid "Container:"
2923
+ msgstr "Container:"
2924
+
2925
+ #: Extension_Genesis_Page_View.php:13 Extension_Genesis_Page_View.php:74
2926
+ msgid "Content"
2927
+ msgstr "Inhalt"
2928
+
2929
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:72
2930
+ #: Cdn_StackPath_Widget_View_Authorized.php:61
2931
+ msgid "Content Breakdown"
2932
+ msgstr "Inhaltsaufschlüsselung"
2933
+
2934
+ #. translators: 1 HTML acronym for Content Delivery Network (CDN).
2935
+ #: Cdnfsd_CloudFront_Page_View.php:46 Cdnfsd_GeneralPage_View.php:15
2936
+ #: Cdnfsd_GeneralPage_View.php:29 Cdnfsd_GeneralPage_View.php:63
2937
+ #: Cdnfsd_GeneralPage_View.php:111 Cdnfsd_GeneralPage_View.php:132
2938
+ #: Cdnfsd_MaxCdn_Page_View.php:49 Cdnfsd_MaxCdn_Popup_View_Zone.php:42
2939
+ #: Cdnfsd_MaxCdn_Popup_View_Zone.php:57 Cdnfsd_StackPath2_Page_View.php:56
2940
+ #: Cdnfsd_StackPath_Page_View.php:50 Cdnfsd_StackPath_Popup_View_Zone.php:42
2941
+ #: Cdnfsd_StackPath_Popup_View_Zone.php:50 Cdn_GeneralPage_View.php:16
2942
+ #: Cdn_GeneralPage_View.php:45 Cdn_GeneralPage_View.php:66
2943
+ #: Cdn_GeneralPage_View.php:126 Cdn_Highwinds_Page_View.php:35
2944
+ #: Cdn_Highwinds_Page_View.php:92 Cdn_Highwinds_Page_View.php:144
2945
+ #: Cdn_Highwinds_Popup_View_ConfigureCnamesForm.php:49
2946
+ #: Cdn_LimeLight_Page_View.php:63 Cdn_LimeLight_Page_View.php:95
2947
+ #: Cdn_MaxCdn_Page_View.php:56 Cdn_MaxCdn_Page_View.php:84
2948
+ #: Cdn_MaxCdn_Page_View.php:114 Cdn_MaxCdn_Page_View.php:144
2949
+ #: Cdn_MaxCdn_Page_View.php:240 Cdn_MaxCdn_Page_View.php:272
2950
+ #: Cdn_Page_View_Fsd_HeaderActions.php:20
2951
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:18
2952
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:43
2953
+ #: Cdn_RackSpaceCdn_Page_View.php:53 Cdn_RackSpaceCdn_Page_View.php:91
2954
+ #: Cdn_RackSpaceCdn_Page_View.php:146
2955
+ #: Cdn_RackSpaceCdn_Popup_View_ConfigureDomains.php:49
2956
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:52
2957
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:110
2958
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:142 Cdn_StackPath2_Page_View.php:19
2959
+ #: Cdn_StackPath2_Page_View.php:83 Cdn_StackPath2_Page_View.php:114
2960
+ #: Cdn_StackPath2_Page_View.php:145 Cdn_StackPath2_Page_View.php:176
2961
+ #: Cdn_StackPath2_Page_View.php:272 Cdn_StackPath2_Page_View.php:304
2962
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:17
2963
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:31
2964
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:62
2965
+ #: Cdn_StackPath_Page_View.php:54 Cdn_StackPath_Page_View.php:94
2966
+ #: Cdn_StackPath_Page_View.php:199 Cdn_StackPath_Page_View.php:231
2967
+ #: Cdn_StackPath_Widget_View_Unauthorized.php:16
2968
+ #: Cdn_StackPath_Widget_View_Unauthorized.php:33 Generic_Plugin_Admin.php:801
2969
+ #: inc/lightbox/self_test.php:122 inc/lightbox/self_test.php:247
2970
+ #: inc/lightbox/self_test.php:278 inc/lightbox/self_test.php:338
2971
+ #: inc/options/about.php:21 inc/options/about.php:99 inc/options/about.php:119
2972
+ #: inc/options/about.php:141 inc/options/about.php:226 inc/options/cdn.php:73
2973
+ #: inc/options/cdn.php:95 inc/options/cdn.php:149 inc/options/cdn.php:196
2974
+ #: inc/options/cdn.php:227 inc/options/cdn.php:265 inc/options/cdn.php:297
2975
+ #: inc/options/cdn.php:395 inc/options/cdn.php:414 inc/options/cdn.php:469
2976
+ #: inc/options/cdn.php:496 inc/options/cdn.php:596 inc/options/cdn.php:676
2977
+ #: inc/options/cdn.php:704 inc/options/cdn.php:741 inc/options/cdn.php:772
2978
+ #: inc/options/cdn.php:799 inc/options/cdn.php:841 inc/options/cdn.php:843
2979
+ #: inc/options/cdn.php:878 inc/options/cdn/akamai.php:87
2980
+ #: inc/options/cdn/akamai.php:119 inc/options/cdn/att.php:61
2981
+ #: inc/options/cdn/att.php:93 inc/options/cdn/azure.php:70
2982
+ #: inc/options/cdn/cf.php:117 inc/options/cdn/cf2.php:109
2983
+ #: inc/options/cdn/cotendo.php:68 inc/options/cdn/cotendo.php:100
2984
+ #: inc/options/cdn/edgecast.php:61 inc/options/cdn/edgecast.php:93
2985
+ #: inc/options/cdn/ftp.php:214 inc/options/cdn/mirror.php:47
2986
+ #: inc/options/cdn/mirror.php:79 inc/options/cdn/rscf.php:104
2987
+ #: inc/options/cdn/s3.php:123 inc/options/cdn/s3_compatible.php:99
2988
+ #: inc/options/common/header.php:100 inc/options/install.php:146
2989
+ #: inc/options/install.php:150 inc/popup/cdn_import_library.php:57
2990
+ #: inc/popup/cdn_purge.php:19 Root_AdminMenu.php:97 Root_AdminMenu.php:100
2991
+ msgid "Content Delivery Network"
2992
+ msgstr "Content-Delivery-Netzwerk"
2993
+
2994
+ #: FeatureShowcase_Plugin_Admin.php:396
2995
+ msgid "Content Delivery Network (CDN)"
2996
+ msgstr "Content-Delivery-Netzwerk (CDN)"
2997
+
2998
+ #: Cdn_AdminActions.php:313 Cdn_AdminActions.php:326
2999
+ msgid "Content Delivery Network (CDN): Purge Tool"
3000
+ msgstr "Content Delivery Network (CDN): Bereinigungstool"
3001
+
3002
+ #: Cdnfsd_Plugin.php:62
3003
+ msgid "Content Delivery Network Full Site Delivery via %s"
3004
+ msgstr "Content Delivery Network Vollständige Site-Bereitstellung über %s"
3005
+
3006
+ #. translators: 1 HTML strong tag containing CDNFSD engine name, 2 HTML span tag containing CDNFSD engine enabled/disabled.
3007
+ #. translators: 1 HTML strong element with CDN engine content, 2 HTML span element with CDN enabled/disabled status.
3008
+ #. translators: 1 HTML strong tag containing CDN Engine value, 2 HTML span tag containing CDN Engine enabled/disabled value.
3009
+ #: Cdnfsd_Page_View_Header.php:14 Cdn_Page_View_Header.php:15
3010
+ #: inc/options/cdn.php:34
3011
+ msgid "Content Delivery Network support via %1$s is currently %2$s."
3012
+ msgstr "Der Content Delivery Network-Support über %1$s beträgt derzeit %2$s."
3013
+
3014
+ #. translators: 1 CDN engine name, 2 rejection reason.
3015
+ #: Cdn_Plugin.php:824
3016
+ msgid "Content Delivery Network via %1$s%2$s"
3017
+ msgstr "Content Delivery Network über %1$s%2$s"
3018
+
3019
+ #: CacheGroups_Plugin_Admin_View.php:333
3020
+ msgid "Content is cached for each group separately."
3021
+ msgstr "Inhalte werden für jede Gruppe separat zwischengespeichert."
3022
+
3023
+ #: BrowserCache_ConfigLabels.php:60
3024
+ #: BrowserCache_Page_View_SectionSecurity.php:570
3025
+ msgid "Content Security Policy"
3026
+ msgstr "Inhaltssicherheitsrichtlinie"
3027
+
3028
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:33
3029
+ #: Cdn_StackPath_Widget_View_Authorized.php:23
3030
+ msgid "Content Zone:"
3031
+ msgstr "Inhaltsbereich:"
3032
+
3033
+ #: Generic_AdminActions_Config.php:55
3034
+ msgid "Content-Disposition: attachment; filename=%s.json"
3035
+ msgstr "Inhaltsdisposition: Anhang; Dateiname=%s.json"
3036
+
3037
+ #: Extension_CloudFlare_Page_View.php:337
3038
+ msgid ""
3039
+ "Controls how long CloudFlare's edge servers will cache a resource before "
3040
+ "getting back to your server for a fresh copy."
3041
+ msgstr ""
3042
+ "Steuert, wie lange die Edge-Server von CloudFlare eine Ressource "
3043
+ "zwischenspeichern, bevor sie für eine neue Kopie zu Ihrem Server "
3044
+ "zurückkehren."
3045
+
3046
+ #: BrowserCache_Page_View_SectionSecurity.php:98
3047
+ msgid ""
3048
+ "Controls the availability of mechanisms that enables the page author to take "
3049
+ "control over the behavior of spatial navigation, or to cancel it outright."
3050
+ msgstr ""
3051
+ "Steuert die Verfügbarkeit von Mechanismen, die es dem Seitenautor "
3052
+ "ermöglichen, das Verhalten der räumlichen Navigation zu steuern oder ganz "
3053
+ "abzubrechen."
3054
+
3055
+ #: BrowserCache_Page_View_SectionSecurity.php:154
3056
+ msgid ""
3057
+ "Controls whether or not the current document is allowed to use the Navigator."
3058
+ "share() of Web Share API to share text, links, images, and other content to "
3059
+ "arbitrary destinations of user's choice, e.g. mobile apps."
3060
+ msgstr ""
3061
+ "Steuert, ob es dem aktuellen Dokument erlaubt ist, Navigator.share() der Web "
3062
+ "Share API zu verwenden, um Text, Links, Bilder und andere Inhalte an "
3063
+ "beliebigen Zielen nach Wahl des Benutzers zu teilen, z. mobile Apps."
3064
+
3065
+ #: BrowserCache_Page_View_SectionSecurity.php:42
3066
+ msgid ""
3067
+ "Controls whether or not the document is permitted to use Screen Capture API."
3068
+ msgstr ""
3069
+ "Steuert, ob das Dokument die Screen Capture API verwenden darf oder nicht."
3070
+
3071
+ #: BrowserCache_Page_View_SectionSecurity.php:54
3072
+ msgid ""
3073
+ "Controls whether tasks should execute in frames while they're not being "
3074
+ "rendered (e.g. if an iframe is hidden or display: none)."
3075
+ msgstr ""
3076
+ "Steuert, ob Aufgaben in Frames ausgeführt werden sollen, während sie nicht "
3077
+ "gerendert werden (z. B. wenn ein Iframe ausgeblendet oder angezeigt wird: "
3078
+ "keine)."
3079
+
3080
+ #: BrowserCache_Page_View_SectionSecurity.php:58
3081
+ msgid ""
3082
+ "Controls whether tasks should execute in frames while they're outside of the "
3083
+ "visible viewport."
3084
+ msgstr ""
3085
+ "Steuert, ob Aufgaben in Frames ausgeführt werden sollen, während sie sich "
3086
+ "außerhalb des sichtbaren Ansichtsfensters befinden."
3087
+
3088
+ #: BrowserCache_Page_View_SectionSecurity.php:30
3089
+ msgid ""
3090
+ "Controls whether the current document is allowed to autoplay media requested "
3091
+ "through the HTMLMediaElement interface."
3092
+ msgstr ""
3093
+ "Steuert, ob das aktuelle Dokument Medien automatisch wiedergeben darf, die "
3094
+ "über die HTMLMediaElement-Schnittstelle angefordert werden."
3095
+
3096
+ #: BrowserCache_Page_View_SectionSecurity.php:134
3097
+ msgid ""
3098
+ "Controls whether the current document is allowed to change the size of media "
3099
+ "elements after the initial layout is complete."
3100
+ msgstr ""
3101
+ "Steuert, ob das aktuelle Dokument die Größe von Medienelementen ändern darf, "
3102
+ "nachdem das anfängliche Layout abgeschlossen ist."
3103
+
3104
+ #: BrowserCache_Page_View_SectionSecurity.php:82
3105
+ msgid ""
3106
+ "Controls whether the current document is allowed to display images in legacy "
3107
+ "formats."
3108
+ msgstr ""
3109
+ "Steuert, ob das aktuelle Dokument Bilder in Legacy-Formaten anzeigen darf."
3110
+
3111
+ #: BrowserCache_Page_View_SectionSecurity.php:102
3112
+ msgid ""
3113
+ "Controls whether the current document is allowed to download and display "
3114
+ "large images."
3115
+ msgstr ""
3116
+ "Steuert, ob das aktuelle Dokument große Bilder herunterladen und anzeigen "
3117
+ "darf."
3118
+
3119
+ #: BrowserCache_Page_View_SectionSecurity.php:130
3120
+ msgid ""
3121
+ "Controls whether the current document is allowed to download and display "
3122
+ "unoptimized images."
3123
+ msgstr ""
3124
+ "Steuert, ob das aktuelle Dokument nicht optimierte Bilder herunterladen und "
3125
+ "anzeigen darf."
3126
+
3127
+ #: BrowserCache_Page_View_SectionSecurity.php:22
3128
+ msgid ""
3129
+ "Controls whether the current document is allowed to gather information about "
3130
+ "the acceleration of the device through the Accelerometer interface."
3131
+ msgstr ""
3132
+ "Steuert, ob das aktuelle Dokument Informationen über die Beschleunigung des "
3133
+ "Geräts über die Accelerometer-Schnittstelle sammeln darf."
3134
+
3135
+ #: BrowserCache_Page_View_SectionSecurity.php:26
3136
+ msgid ""
3137
+ "Controls whether the current document is allowed to gather information about "
3138
+ "the amount of light in the environment around the device through the "
3139
+ "AmbientLightSensor interface."
3140
+ msgstr ""
3141
+ "Steuert, ob das aktuelle Dokument über die AmbientLightSensor-Schnittstelle "
3142
+ "Informationen über die Lichtmenge in der Umgebung des Geräts sammeln darf."
3143
+
3144
+ #: BrowserCache_Page_View_SectionSecurity.php:74
3145
+ msgid ""
3146
+ "Controls whether the current document is allowed to gather information about "
3147
+ "the orientation of the device through the Gyroscope interface."
3148
+ msgstr ""
3149
+ "Steuert, ob das aktuelle Dokument Informationen über die Ausrichtung des "
3150
+ "Geräts über die Gyroskop-Schnittstelle sammeln darf."
3151
+
3152
+ #: BrowserCache_Page_View_SectionSecurity.php:86
3153
+ msgid ""
3154
+ "Controls whether the current document is allowed to gather information about "
3155
+ "the orientation of the device through the Magnetometer interface."
3156
+ msgstr ""
3157
+ "Steuert, ob das aktuelle Dokument Informationen über die Ausrichtung des "
3158
+ "Geräts über die Magnetometer-Schnittstelle sammeln darf."
3159
+
3160
+ #: BrowserCache_Page_View_SectionSecurity.php:126
3161
+ msgid ""
3162
+ "Controls whether the current document is allowed to make synchronous "
3163
+ "XMLHttpRequest requests."
3164
+ msgstr ""
3165
+ "Steuert, ob das aktuelle Dokument synchrone XMLHttpRequest-Anforderungen "
3166
+ "stellen darf."
3167
+
3168
+ #: BrowserCache_Page_View_SectionSecurity.php:110
3169
+ msgid ""
3170
+ "Controls whether the current document is allowed to play a video in a "
3171
+ "Picture-in-Picture mode via the corresponding API."
3172
+ msgstr ""
3173
+ "Steuert, ob das aktuelle Dokument über die entsprechende API ein Video im "
3174
+ "Picture-in-Picture-Modus abspielen darf."
3175
+
3176
+ #: BrowserCache_Page_View_SectionSecurity.php:122
3177
+ msgid ""
3178
+ "Controls whether the current document is allowed to play audio via any "
3179
+ "methods."
3180
+ msgstr ""
3181
+ "Steuert, ob das aktuelle Dokument Audio über beliebige Methoden wiedergeben "
3182
+ "darf."
3183
+
3184
+ #: BrowserCache_Page_View_SectionSecurity.php:46
3185
+ msgid ""
3186
+ "Controls whether the current document is allowed to set document.domain."
3187
+ msgstr "Steuert, ob das aktuelle Dokument document.domain festlegen darf."
3188
+
3189
+ #: BrowserCache_Page_View_SectionSecurity.php:78
3190
+ msgid ""
3191
+ "Controls whether the current document is allowed to show layout animations."
3192
+ msgstr "Steuert, ob das aktuelle Dokument Layoutanimationen anzeigen darf."
3193
+
3194
+ #: BrowserCache_Page_View_SectionSecurity.php:142
3195
+ msgid ""
3196
+ "Controls whether the current document is allowed to trigger device "
3197
+ "vibrations via Navigator.vibrate() method of Vibration API."
3198
+ msgstr ""
3199
+ "Steuert, ob das aktuelle Dokument Gerätevibrationen über die Methode "
3200
+ "Navigator.vibrate() der Vibration API auslösen darf."
3201
+
3202
+ #: BrowserCache_Page_View_SectionSecurity.php:90
3203
+ msgid ""
3204
+ "Controls whether the current document is allowed to use audio input devices."
3205
+ msgstr "Steuert, ob das aktuelle Dokument Audioeingabegeräte verwenden darf."
3206
+
3207
+ #: BrowserCache_Page_View_SectionSecurity.php:62
3208
+ msgid ""
3209
+ "Controls whether the current document is allowed to use Element."
3210
+ "requestFullScreen()."
3211
+ msgstr ""
3212
+ "Steuert, ob das aktuelle Dokument Element.requestFullScreen() verwenden darf."
3213
+
3214
+ #: BrowserCache_Page_View_SectionSecurity.php:118
3215
+ msgid ""
3216
+ "Controls whether the current document is allowed to use Screen Wake Lock API "
3217
+ "to indicate that device should not turn off or dim the screen."
3218
+ msgstr ""
3219
+ "Steuert, ob das aktuelle Dokument die Screen Wake Lock API verwenden darf, "
3220
+ "um anzuzeigen, dass das Gerät den Bildschirm nicht ausschalten oder dimmen "
3221
+ "soll."
3222
+
3223
+ #: BrowserCache_Page_View_SectionSecurity.php:50
3224
+ msgid ""
3225
+ "Controls whether the current document is allowed to use the Encrypted Media "
3226
+ "Extensions API (EME)."
3227
+ msgstr ""
3228
+ "Steuert, ob das aktuelle Dokument die Encrypted Media Extensions API (EME) "
3229
+ "verwenden darf."
3230
+
3231
+ #: BrowserCache_Page_View_SectionSecurity.php:66
3232
+ msgid ""
3233
+ "Controls whether the current document is allowed to use the Gamepad API. "
3234
+ "When this policy is disabled, calls to Navigator.getGamepads() will throw a "
3235
+ "SecurityError DOMException, and the gamepadconnected and gamepaddisconnected "
3236
+ "events will not fire."
3237
+ msgstr ""
3238
+ "Steuert, ob das aktuelle Dokument die Gamepad-API verwenden darf. Wenn diese "
3239
+ "Richtlinie deaktiviert ist, lösen Aufrufe von Navigator.getGamepads() eine "
3240
+ "SecurityError DOMException aus, und die Ereignisse gamepadconnected und "
3241
+ "gamepaddisconnected werden nicht ausgelöst."
3242
+
3243
+ #: BrowserCache_Page_View_SectionSecurity.php:70
3244
+ msgid ""
3245
+ "Controls whether the current document is allowed to use the Geolocation "
3246
+ "Interface."
3247
+ msgstr ""
3248
+ "Steuert, ob das aktuelle Dokument die Geolocation-Schnittstelle verwenden "
3249
+ "darf."
3250
+
3251
+ #: BrowserCache_Page_View_SectionSecurity.php:106
3252
+ msgid ""
3253
+ "Controls whether the current document is allowed to use the Payment Request "
3254
+ "API."
3255
+ msgstr ""
3256
+ "Steuert, ob das aktuelle Dokument die Zahlungsanforderungs-API verwenden "
3257
+ "darf."
3258
+
3259
+ #: BrowserCache_Page_View_SectionSecurity.php:114
3260
+ msgid ""
3261
+ "Controls whether the current document is allowed to use the Web "
3262
+ "Authentication API to retrieve already stored public-key credentials, i.e. "
3263
+ "via navigator.credentials.get({publicKey: ..., ...})."
3264
+ msgstr ""
3265
+ "Steuert, ob das aktuelle Dokument die Web-Authentifizierungs-API verwenden "
3266
+ "darf, um bereits gespeicherte Anmeldeinformationen mit öffentlichem "
3267
+ "Schlüssel abzurufen, d. h. über navigator.credentials.get({publicKey: ..., .."
3268
+ ".})."
3269
+
3270
+ #: BrowserCache_Page_View_SectionSecurity.php:94
3271
+ msgid ""
3272
+ "Controls whether the current document is allowed to use the Web MIDI API."
3273
+ msgstr "Steuert, ob das aktuelle Dokument die Web-MIDI-API verwenden darf."
3274
+
3275
+ #: BrowserCache_Page_View_SectionSecurity.php:138
3276
+ msgid "Controls whether the current document is allowed to use the WebUSB API."
3277
+ msgstr "Steuert, ob das aktuelle Dokument die WebUSB-API verwenden darf."
3278
+
3279
+ #: BrowserCache_Page_View_SectionSecurity.php:146
3280
+ msgid ""
3281
+ "Controls whether the current document is allowed to use the WebVR API. When "
3282
+ "this policy is disabled, the Promise returned by Navigator.getVRDisplays() "
3283
+ "will reject with a DOMException. Keep in mind that the WebVR standard is in "
3284
+ "the process of being replaced with WebXR."
3285
+ msgstr ""
3286
+ "Steuert, ob das aktuelle Dokument die WebVR-API verwenden darf. Wenn diese "
3287
+ "Richtlinie deaktiviert ist, wird das von Navigator.getVRDisplays() "
3288
+ "zurückgegebene Promise mit einer DOMException abgelehnt. Denken Sie daran, "
3289
+ "dass der WebVR-Standard gerade durch WebXR ersetzt wird."
3290
+
3291
+ #: BrowserCache_Page_View_SectionSecurity.php:158
3292
+ msgid ""
3293
+ "Controls whether the current document is allowed to use the WebXR Device API."
3294
+ msgstr "Steuert, ob das aktuelle Dokument die WebXR Device API verwenden darf."
3295
+
3296
+ #: BrowserCache_Page_View_SectionSecurity.php:38
3297
+ msgid ""
3298
+ "Controls whether the current document is allowed to use video input devices."
3299
+ msgstr "Steuert, ob das aktuelle Dokument Videoeingabegeräte verwenden darf."
3300
+
3301
+ #: BrowserCache_Page_View_SectionSecurity.php:150
3302
+ msgid ""
3303
+ "Controls whether the current document is allowed to use Wake Lock API to "
3304
+ "indicate that device should not enter power-saving mode."
3305
+ msgstr ""
3306
+ "Steuert, ob das aktuelle Dokument die Wake Lock-API verwenden darf, um "
3307
+ "anzuzeigen, dass das Gerät nicht in den Energiesparmodus wechseln soll."
3308
+
3309
+ #: BrowserCache_Page_View_SectionSecurity.php:34
3310
+ msgid ""
3311
+ "Controls whether the use of the Battery Status API is allowed. When this "
3312
+ "policy is disabled, the Promise returned by Navigator.getBattery() will "
3313
+ "reject with a NotAllowedError DOMException."
3314
+ msgstr ""
3315
+ "Steuert, ob die Verwendung der Batteriestatus-API zulässig ist. Wenn diese "
3316
+ "Richtlinie deaktiviert ist, wird das von Navigator.getBattery() "
3317
+ "zurückgegebene Promise mit einer NotAllowedError DOMException abgelehnt."
3318
+
3319
+ #. translators: 3 opneing HTML acronym tag, 4 closing HTML acronym tag.
3320
+ #: inc/options/pgcache.php:480
3321
+ msgid "Controls WordPress %1$sREST%2$s %3$sAPI%4$s functionality."
3322
+ msgstr "Steuert die Funktionalität von WordPress %1$sREST%2$s %3$sAPI%4$s."
3323
+
3324
+ #: Extension_ImageService_Plugin_Admin.php:543
3325
+ #: Extension_ImageService_Plugin_Admin.php:735
3326
+ #: Extension_ImageService_Plugin_Admin.php:739
3327
+ msgid "Convert"
3328
+ msgstr "Konvertieren"
3329
+
3330
+ #: Extension_ImageService_Page_View.php:125
3331
+ msgid "Convert all images in the media library."
3332
+ msgstr "Konvertieren Sie alle Bilder in der Medienbibliothek."
3333
+
3334
+ #: Extension_ImageService_Page_View.php:121
3335
+ msgid "Convert all images:"
3336
+ msgstr "Alle Bilder konvertieren:"
3337
+
3338
+ #: Extension_ImageService_Plugin_Admin.php:547
3339
+ #: Extension_ImageService_Plugin_Admin.php:729
3340
+ msgid "Converted"
3341
+ msgstr "Umgewandelt"
3342
+
3343
+ #: Extension_ImageService_Page_View.php:165
3344
+ msgid "Converted:"
3345
+ msgstr "Umgewandelt:"
3346
+
3347
+ #: DbCache_WpdbInjection_QueryCaching.php:849
3348
+ msgid "Cookie is rejected"
3349
+ msgstr "Cookie wird abgelehnt"
3350
+
3351
+ #: CacheGroups_Plugin_Admin_View.php:297
3352
+ msgid "Cookies:"
3353
+ msgstr "Kekse:"
3354
+
3355
+ #: Cdn_Plugin_Admin.php:186
3356
+ msgid "Cotendo (Akamai)"
3357
+ msgstr "Cotendo (Akamai)"
3358
+
3359
+ #: SetupGuide_Plugin_Admin.php:899
3360
+ msgid ""
3361
+ "Could not perform this test. Please reload the page to try again or click "
3362
+ "skip button to abort the setup guide."
3363
+ msgstr ""
3364
+ "Dieser Test konnte nicht durchgeführt werden. Bitte laden Sie die Seite neu, "
3365
+ "um es erneut zu versuchen, oder klicken Sie auf die Schaltfläche "
3366
+ "„Überspringen“, um die Einrichtungsanleitung abzubrechen."
3367
+
3368
+ #: SetupGuide_Plugin_Admin.php:903
3369
+ msgid ""
3370
+ "Could not update configuration. Please reload the page to try again or "
3371
+ "click skip button to abort the setup guide."
3372
+ msgstr ""
3373
+ "Konfiguration konnte nicht aktualisiert werden. Bitte laden Sie die Seite "
3374
+ "neu, um es erneut zu versuchen, oder klicken Sie auf die Schaltfläche "
3375
+ "„Überspringen“, um die Einrichtungsanleitung abzubrechen."
3376
+
3377
+ #: Extension_ImageService_Page_View.php:156
3378
+ msgid "Counts and filesizes by status:"
3379
+ msgstr "Anzahl und Dateigröße nach Status:"
3380
+
3381
+ #: UsageStatistics_Page_View.php:390
3382
+ msgid "CPU load"
3383
+ msgstr "CPU-Last"
3384
+
3385
+ #: UsageStatistics_Page_View.php:384
3386
+ msgid "CPU load:"
3387
+ msgstr "CPU-Last:"
3388
+
3389
+ #: UsageStatistics_Page_View.php:386
3390
+ msgid "CPU load: "
3391
+ msgstr "CPU-Last:"
3392
+
3393
+ #: CacheGroups_Plugin_Admin_View.php:39 CacheGroups_Plugin_Admin_View.php:164
3394
+ #: CacheGroups_Plugin_Admin_View.php:242
3395
+ msgid "Create a group"
3396
+ msgstr "Erstellen Sie eine Gruppe"
3397
+
3398
+ #: inc/popup/cdn_import_library.php:42
3399
+ msgid ""
3400
+ "Create a list of permanent (301) redirects for use in your site's .htaccess "
3401
+ "file"
3402
+ msgstr ""
3403
+ "Erstellen Sie eine Liste mit permanenten (301) Weiterleitungen zur "
3404
+ "Verwendung in der .htaccess-Datei Ihrer Website"
3405
+
3406
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
3407
+ #: inc/popup/cdn_import_library.php:53
3408
+ msgid ""
3409
+ "Create a list of redirects to %1$sCDN%2$s (hostname specified in hostname "
3410
+ "field #1.)"
3411
+ msgstr ""
3412
+ "Erstellen Sie eine Liste mit Umleitungen zu %1$sCDN%2$s (Hostname in "
3413
+ "Hostnamenfeld Nr. 1 angegeben.)"
3414
+
3415
+ #: Cdn_MaxCdn_Page_View.php:10 Cdn_StackPath2_Page_View.php:10
3416
+ #: Cdn_StackPath_Page_View.php:10
3417
+ msgid "Create account:"
3418
+ msgstr "Konto anlegen:"
3419
+
3420
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:31
3421
+ msgid "Create an Account"
3422
+ msgstr "Ein Konto erstellen"
3423
+
3424
+ #. translators: 7 opening HTML acronym tag, 8 closing HTML acronym tag.
3425
+ #: Cdnfsd_CloudFront_Popup_View_Distribution.php:34
3426
+ msgid ""
3427
+ "Create an apex %1$sDNS%2$s record pointing to your WordPress host %3$sIP%4$s."
3428
+ "%5$sCloudFront will use this host to mirror your site.%6$sTip: If your real "
3429
+ "domain name is domain.com, then the host for the apex record should be "
3430
+ "origin.domain.com with the host %7$sIP%8$s of domain.com, e.g.:"
3431
+ msgstr ""
3432
+ "Erstellen Sie einen %1$sDNS%2$s-Apex-Eintrag, der auf Ihren WordPress-Host "
3433
+ "%3$sIP%4$s verweist.%5$sCloudFront verwendet diesen Host, um Ihre Website zu "
3434
+ "spiegeln.%6$sTipp: Wenn Ihr echter Domainname lautet domain.com, dann sollte "
3435
+ "der Host für den Apex-Eintrag origin.domain.com mit dem Host %7$sIP%8$s von "
3436
+ "domain.com sein, z. B.:"
3437
+
3438
+ #: inc/options/cdn/s3.php:81
3439
+ msgid "Create as new bucket"
3440
+ msgstr "Als neuen Bucket erstellen"
3441
+
3442
+ #: inc/options/cdn/cf.php:75
3443
+ msgid "Create as new bucket with distribution"
3444
+ msgstr "Als neuen Bucket mit Verteilung erstellen"
3445
+
3446
+ #: inc/options/cdn/azure.php:27 inc/options/cdn/rscf.php:61
3447
+ msgid "Create container"
3448
+ msgstr "Behälter erstellen"
3449
+
3450
+ #: inc/options/cdn/cf2.php:66
3451
+ msgid "Create distribution"
3452
+ msgstr "Verteilung erstellen"
3453
+
3454
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Create.php:32
3455
+ msgid "Create new service"
3456
+ msgstr "Neuen Dienst erstellen"
3457
+
3458
+ #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:6
3459
+ #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:55
3460
+ msgid "Create Pull Zone"
3461
+ msgstr "Pull-Zone erstellen"
3462
+
3463
+ #: Util_Activation.php:140
3464
+ msgid ""
3465
+ "Create the <strong>%s</strong> file and paste the following text into it: "
3466
+ "<textarea>%s</textarea> <br />"
3467
+ msgstr ""
3468
+ "Erstellen Sie die <strong>%s</strong> -Datei und fügen Sie den folgenden "
3469
+ "Text ein:<textarea> %s</textarea><br />"
3470
+
3471
+ #: Cdn_AdminActions.php:478
3472
+ msgid "Created successfully."
3473
+ msgstr "Erfolgreich erstellt."
3474
+
3475
+ #: Generic_AdminNotes.php:427
3476
+ msgid "Creating and editing"
3477
+ msgstr "Erstellen und Bearbeiten"
3478
+
3479
+ #: Extension_CloudFlare_Page_View.php:12 Extension_CloudFlare_Page_View.php:49
3480
+ msgid "Credentials"
3481
+ msgstr "Referenzen"
3482
+
3483
+ #: CdnEngine_Mirror_LimeLight.php:43 Cdnfsd_LimeLight_Engine.php:26
3484
+ msgid "Credentials are not specified."
3485
+ msgstr "Anmeldeinformationen sind nicht angegeben."
3486
+
3487
+ #: BrowserCache_Page_View_SectionSecurity.php:328
3488
+ #: BrowserCache_Page_View_SectionSecurity.php:572
3489
+ msgid "Cross-Site Scripting"
3490
+ msgstr "Cross-Site-Scripting"
3491
+
3492
+ #. translators: 3 HTML acronym for Hypertext Markup Language (HTML).
3493
+ #: inc/options/general.php:201
3494
+ msgid "CSS"
3495
+ msgstr "CSS"
3496
+
3497
+ #: UsageStatistics_Page_View.php:226
3498
+ msgid "CSS compression in cache: "
3499
+ msgstr "CSS-Komprimierung im Cache:"
3500
+
3501
+ #: inc/options/general.php:309
3502
+ msgid "CSS Tidy"
3503
+ msgstr "CSS Tidy"
3504
+
3505
+ #: inc/lightbox/self_test.php:146
3506
+ msgid "cURL extension:"
3507
+ msgstr "cURL-Erweiterung:"
3508
+
3509
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:33
3510
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:50
3511
+ #: Cdn_StackPath_Widget_View_Unauthorized.php:25
3512
+ #: Extension_Swarmify_Widget_View_NotConfigured.php:14
3513
+ msgid "Current customers"
3514
+ msgstr "Derzeitige Kunden"
3515
+
3516
+ #. translators: 2 HTML strong tag containing new zone value followed by line break tag.
3517
+ #. translators: 2 HTML strong tag containing new zone boolean value followed by line break tag.
3518
+ #: Cdnfsd_MaxCdn_Popup.php:158 Cdnfsd_MaxCdn_Popup.php:197
3519
+ msgid "currently set to %1$s will be changed to %2$s"
3520
+ msgstr "derzeit auf %1$s gesetzt, wird in %2$s geändert"
3521
+
3522
+ #. translators: 4 opening HTML strong tag, 5 new setting value, 6 closing HTML strong tag followed by HTML line break.
3523
+ #: Cdn_RackSpaceCdn_Popup.php:517
3524
+ msgid "currently set to %1$s%2$s%3$s will be changed to %4$s%5$s%6$s"
3525
+ msgstr "derzeit auf %1$s%2$s%3$s gesetzt, wird in %4$s%5$s%6$s geändert"
3526
+
3527
+ #: Cdn_ConfigLabels.php:30
3528
+ msgid "Custom file list:"
3529
+ msgstr "Benutzerdefinierte Dateiliste:"
3530
+
3531
+ #: Cdn_AdminActions.php:257
3532
+ msgid "Custom files export"
3533
+ msgstr "Export benutzerdefinierter Dateien"
3534
+
3535
+ #: PgCache_ConfigLabels.php:33
3536
+ msgid "Daily archive pages"
3537
+ msgstr "Tägliche Archivseiten"
3538
+
3539
+ #: inc/wizard/template.php:169
3540
+ msgid "DASHBOARD"
3541
+ msgstr "ARMATURENBRETT"
3542
+
3543
+ #: inc/options/dashboard.php:95 Root_AdminMenu.php:43 Root_AdminMenu.php:44
3544
+ msgid "Dashboard"
3545
+ msgstr "Armaturenbrett"
3546
+
3547
+ #: Extension_NewRelic_Page_View_Apm.php:175
3548
+ msgid "Dashboard Settings"
3549
+ msgstr "Dashboard-Einstellungen"
3550
+
3551
+ #: DbCache_Plugin.php:183 UsageStatistics_Page_View.php:311
3552
+ msgid "Database"
3553
+ msgstr "Datenbank"
3554
+
3555
+ #: DbCache_ConfigLabels.php:9 DbCache_Plugin.php:231 DbCache_Plugin.php:238
3556
+ #: DbCache_Plugin.php:247 FeatureShowcase_Plugin_Admin.php:420
3557
+ #: inc/options/common/header.php:69 inc/options/general.php:335
3558
+ #: Root_AdminMenu.php:73 Root_AdminMenu.php:74
3559
+ #: SetupGuide_Plugin_Admin.php:1052 SetupGuide_Plugin_Admin.php:1158
3560
+ #: SetupGuide_Plugin_Admin.php:1169 UsageStatistics_Page_View.php:316
3561
+ msgid "Database Cache"
3562
+ msgstr "Datenbank-Cache"
3563
+
3564
+ #: DbCache_ConfigLabels.php:7
3565
+ msgid "Database Cache Method:"
3566
+ msgstr "Datenbank-Cache-Methode:"
3567
+
3568
+ #: inc/options/general.php:996
3569
+ msgid "Database Cache Purge Log"
3570
+ msgstr "Datenbank-Cache-Bereinigungsprotokoll"
3571
+
3572
+ #: Generic_Plugin_Admin.php:789
3573
+ msgid "Database cache successfully emptied."
3574
+ msgstr "Datenbankcache erfolgreich geleert."
3575
+
3576
+ #: DbCache_ConfigLabels.php:8
3577
+ msgid "Database Cache:"
3578
+ msgstr "Datenbank-Cache:"
3579
+
3580
+ #: DbCache_Plugin_Admin.php:61
3581
+ msgid "Database Cache: %s."
3582
+ msgstr "Datenbank-Cache: %s."
3583
+
3584
+ #. translators: 1: Query hits, 2: Total queries, 3: Total time, 4: Engine name, 5: Reject reason.
3585
+ #: DbCache_WpdbInjection_QueryCaching.php:883
3586
+ msgid "Database Caching %1$d/%2$d queries in %3$.3f seconds using %4$s%5$s"
3587
+ msgstr ""
3588
+ "Datenbank-Caching von %1$d/%2$d Abfragen in %3$.3f Sekunden mit %4$s%5$s"
3589
+
3590
+ #: DbCache_WpdbInjection_QueryCaching.php:841
3591
+ msgid "Database caching is disabled"
3592
+ msgstr "Datenbank-Caching ist deaktiviert"
3593
+
3594
+ #. translators: 1: Engine name, 2: Reject reason.
3595
+ #: DbCache_WpdbInjection_QueryCaching.php:893
3596
+ msgid "Database Caching using %1$s%2$s"
3597
+ msgstr "Datenbank-Caching mit %1$s%2$s"
3598
+
3599
+ #. translators: 1 Database cache engine name, 2 HTML span indicating DB cache enabled/disabled.
3600
+ #: inc/options/dbcache.php:16
3601
+ msgid "Database caching via %1$s is currently %2$s."
3602
+ msgstr "Das Datenbank-Caching über %1$s beträgt derzeit %2$s."
3603
+
3604
+ #: inc/options/enterprise/dbcluster-config.php:12
3605
+ msgid "Database Cluster Configuration File"
3606
+ msgstr "Datenbank-Cluster-Konfigurationsdatei"
3607
+
3608
+ #: Generic_AdminActions_Config.php:149
3609
+ msgid "Database Cluster configuration file has been successfully saved"
3610
+ msgstr ""
3611
+ "Die Datenbank-Cluster-Konfigurationsdatei wurde erfolgreich gespeichert"
3612
+
3613
+ #: inc/options/parts/redis.php:98 inc/options/parts/redis_extension.php:95
3614
+ msgid "Database ID to use"
3615
+ msgstr "Zu verwendende Datenbank-ID"
3616
+
3617
+ #: UsageStatistics_Page_DbRequests_View.php:14
3618
+ msgid "Database Queries"
3619
+ msgstr "Datenbankabfragen"
3620
+
3621
+ #: Extension_NewRelic_Widget_View_Apm.php:51
3622
+ msgid "Database times"
3623
+ msgstr "Datenbankzeiten"
3624
+
3625
+ #: UsageStatistics_Page_View.php:348
3626
+ msgid "Database:"
3627
+ msgstr "Datenbank:"
3628
+
3629
+ #: inc/popup/cdn_queue.php:24 inc/popup/cdn_queue.php:57
3630
+ #: inc/popup/cdn_queue.php:87
3631
+ msgid "Date"
3632
+ msgstr "Datum"
3633
+
3634
+ #: inc/email/support_request.php:11
3635
+ msgid "Date:"
3636
+ msgstr "Datum:"
3637
+
3638
+ #: DbCache_WpdbInjection_QueryCaching.php:901
3639
+ msgid "Db cache debug info:"
3640
+ msgstr "Db-Cache-Debug-Informationen:"
3641
+
3642
+ #: Generic_Plugin_AdminCompatibility.php:105
3643
+ #: inc/options/extensions/list.php:33 inc/options/extensions/list.php:236
3644
+ msgid "Deactivate"
3645
+ msgstr "Deaktivieren"
3646
+
3647
+ #: inc/options/extensions/list.php:130
3648
+ msgid "Deactivate this extension"
3649
+ msgstr "Deaktivieren Sie diese Erweiterung"
3650
+
3651
+ #: Generic_Plugin_AdminCompatibility.php:103
3652
+ msgid "Deactivate this plugin"
3653
+ msgstr "Deaktivieren Sie dieses Plugin"
3654
+
3655
+ #: inc/options/common/header.php:146 inc/options/general.php:915
3656
+ msgid "Debug"
3657
+ msgstr "Debuggen"
3658
+
3659
+ #: inc/options/general.php:939
3660
+ msgid "Debug mode:"
3661
+ msgstr "Debug-Modus:"
3662
+
3663
+ #: Generic_Plugin.php:336
3664
+ msgid "Debug: Overlays"
3665
+ msgstr "Fehlerbehebung: Überlagerungen"
3666
+
3667
+ #: Licensing_Plugin_Admin.php:272 SetupGuide_Plugin_Admin.php:1110
3668
+ msgid "Decline"
3669
+ msgstr "Abfall"
3670
+
3671
+ #: inc/options/pgcache.php:535
3672
+ msgid ""
3673
+ "Decreases performance by ~20% at scale in exchange for increasing "
3674
+ "interoperability with more hosting environments and WordPress idiosyncrasies."
3675
+ " This option should be enabled for most sites."
3676
+ msgstr ""
3677
+ "Verringert die Leistung im großen Maßstab um ~20 % im Austausch für eine "
3678
+ "verbesserte Interoperabilität mit mehr Hosting-Umgebungen und WordPress-"
3679
+ "Eigenheiten. Diese Option sollte für die meisten Websites aktiviert sein."
3680
+
3681
+ #: Cdn_MaxCdn_Popup_View_Zone.php:42
3682
+ msgid "Dedicated"
3683
+ msgstr "Gewidmet"
3684
+
3685
+ #: inc/options/general.php:170 Util_Ui.php:1054
3686
+ msgid "Dedicated / Virtual Server:"
3687
+ msgstr "Dedizierter / Virtueller Server:"
3688
+
3689
+ #: inc/options/minify.php:349 inc/options/minify.php:368
3690
+ #: inc/options/minify.php:387
3691
+ msgid "Default (blocking)"
3692
+ msgstr "Standard (blockieren)"
3693
+
3694
+ #: ObjectCache_ConfigLabels.php:10
3695
+ msgid "Default lifetime of cache objects:"
3696
+ msgstr "Standardlebensdauer von Cache-Objekten:"
3697
+
3698
+ #: Extension_FragmentCache_Page_View.php:99
3699
+ msgid "Default lifetime of cached fragments:"
3700
+ msgstr "Standardlebensdauer von zwischengespeicherten Fragmenten:"
3701
+
3702
+ #. translators: 1 W3TC config director path.
3703
+ #: Generic_Plugin_Admin.php:751
3704
+ msgid ""
3705
+ "Default settings could not be restored. Please run %1$s to make the "
3706
+ "configuration file write-able, then try again."
3707
+ msgstr ""
3708
+ "Standardeinstellungen konnten nicht wiederhergestellt werden. Bitte führen "
3709
+ "Sie %1$s aus, um die Konfigurationsdatei schreibbar zu machen, und versuchen "
3710
+ "Sie es dann erneut."
3711
+
3712
+ #: BrowserCache_ConfigLabels.php:74
3713
+ msgid "default-src:"
3714
+ msgstr "default-src:"
3715
+
3716
+ #: FeatureShowcase_Plugin_Admin.php:266
3717
+ msgid "Defer loading offscreen Google Maps, making pages load faster."
3718
+ msgstr ""
3719
+ "Verzögern Sie das Laden von Google Maps außerhalb des Bildschirms, um das "
3720
+ "Laden von Seiten zu beschleunigen."
3721
+
3722
+ #: FeatureShowcase_Plugin_Admin.php:386
3723
+ msgid "Defer loading offscreen images, making pages load faster."
3724
+ msgstr ""
3725
+ "Verzögern Sie das Laden von Offscreen-Bildern, um das Laden von Seiten zu "
3726
+ "beschleunigen."
3727
+
3728
+ #: UserExperience_GeneralPage_View.php:20
3729
+ msgid "Defer loading offscreen images."
3730
+ msgstr "Verzögern Sie das Laden von Offscreen-Bildern."
3731
+
3732
+ #: inc/lightbox/self_test.php:513
3733
+ msgid "Defined (false)"
3734
+ msgstr "Definiert (falsch)"
3735
+
3736
+ #: inc/lightbox/self_test.php:511
3737
+ msgid "Defined (true)"
3738
+ msgstr "Definiert (wahr)"
3739
+
3740
+ #: BrowserCache_Page_View_SectionSecurity.php:785
3741
+ msgid ""
3742
+ "Defines the defaults for directives you leave unspecified. Generally, this "
3743
+ "applies to any directive that ends with -src."
3744
+ msgstr ""
3745
+ "Definiert die Standardwerte für Anweisungen, die Sie nicht angeben. Im "
3746
+ "Allgemeinen gilt dies für alle Direktiven, die mit -src enden."
3747
+
3748
+ #: inc/options/cdn/common/cnames.php:58 inc/options/minify.php:519
3749
+ #: inc/options/minify.php:774 inc/popup/cdn_queue.php:25
3750
+ #: inc/popup/cdn_queue.php:34 inc/popup/cdn_queue.php:58
3751
+ #: inc/popup/cdn_queue.php:67 inc/popup/cdn_queue.php:88
3752
+ #: inc/popup/cdn_queue.php:97
3753
+ msgid "Delete"
3754
+ msgstr "Löschen"
3755
+
3756
+ #: CacheGroups_Plugin_Admin_View.php:59 CacheGroups_Plugin_Admin_View.php:181
3757
+ #: CacheGroups_Plugin_Admin_View.php:262
3758
+ msgid "Delete group"
3759
+ msgstr "Gruppe löschen"
3760
+
3761
+ #: inc/popup/cdn_queue.php:13
3762
+ msgid "Delete queue"
3763
+ msgstr "Warteschlange löschen"
3764
+
3765
+ #: inc/popup/cdn_queue.php:76
3766
+ msgid "Delete queue is empty"
3767
+ msgstr "Löschwarteschlange ist leer"
3768
+
3769
+ #: Cdnfsd_GeneralPage_View.php:75
3770
+ msgid ""
3771
+ "Deliver visitors the lowest possible response and load times for all site "
3772
+ "content including HTML, media (e.g. images or fonts), CSS, and JavaScript."
3773
+ msgstr ""
3774
+ "Bieten Sie Besuchern die geringstmöglichen Antwort- und Ladezeiten für alle "
3775
+ "Website-Inhalte, einschließlich HTML, Medien (z. B. Bilder oder Schriftarten)"
3776
+ ", CSS und JavaScript."
3777
+
3778
+ #: inc/options/general.php:54
3779
+ msgid "Deploy"
3780
+ msgstr "Einsetzen"
3781
+
3782
+ #: Generic_AdminNotes.php:179
3783
+ msgid "deploy"
3784
+ msgstr "einsetzen"
3785
+
3786
+ #: inc/options/extensions/list.php:64 inc/options/extensions/list.php:69
3787
+ msgid "Description"
3788
+ msgstr "Beschreibung"
3789
+
3790
+ #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:45
3791
+ msgid "Description:"
3792
+ msgstr "Beschreibung:"
3793
+
3794
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
3795
+ #: inc/options/general.php:921
3796
+ msgid ""
3797
+ "Detailed information about each cache will be appended in (publicly "
3798
+ "available) %1$sHTML%2$s comments in the page's source code. Performance in "
3799
+ "this mode will not be optimal, use sparingly and disable when not in use."
3800
+ msgstr ""
3801
+ "Detaillierte Informationen zu jedem Cache werden in (öffentlich verfügbaren) "
3802
+ "%1$sHTML%2$s-Kommentaren im Quellcode der Seite angehängt. Die Leistung in "
3803
+ "diesem Modus ist nicht optimal, verwenden Sie es sparsam und deaktivieren "
3804
+ "Sie es, wenn es nicht verwendet wird."
3805
+
3806
+ #: UsageStatistics_Page_View.php:281
3807
+ msgid "Detailed view (in debug mode only)"
3808
+ msgstr "Detailansicht (nur im Debug-Modus)"
3809
+
3810
+ #: inc/lightbox/self_test.php:407
3811
+ msgid ""
3812
+ "Detection of the below modules may not be possible on all environments. As "
3813
+ "such \"Not detected\" means that the environment disallowed detection for "
3814
+ "the given module which may still be installed/enabled whereas \"Not "
3815
+ "installed\" means the given module was detected but is not "
3816
+ "installed/detected."
3817
+ msgstr ""
3818
+ "Die Erkennung der folgenden Module ist möglicherweise nicht in allen "
3819
+ "Umgebungen möglich. Als solches bedeutet \"Nicht erkannt\", dass die "
3820
+ "Umgebung die Erkennung für das bestimmte Modul, das möglicherweise noch "
3821
+ "installiert/aktiviert ist, nicht zugelassen hat, während \"Nicht "
3822
+ "installiert\" bedeutet, dass das bestimmte Modul erkannt wurde, aber nicht "
3823
+ "installiert/erkannt ist."
3824
+
3825
+ #: Extension_FragmentCache_Page_View.php:102 inc/options/dbcache.php:82
3826
+ #: inc/options/objectcache.php:69 inc/options/pgcache.php:585
3827
+ msgid ""
3828
+ "Determines the natural expiration time of unchanged cache items. The higher "
3829
+ "the value, the larger the cache."
3830
+ msgstr ""
3831
+ "Bestimmt die natürliche Ablaufzeit unveränderter Cache-Elemente. Je höher "
3832
+ "der Wert, desto größer der Cache."
3833
+
3834
+ #: Extension_CloudFlare_Page_View.php:168
3835
+ msgid ""
3836
+ "Development Mode temporarily allows you to enter development mode for your "
3837
+ "websites if you need to make changes to your site. This will bypass "
3838
+ "CloudFlare's accelerated cache and slow down your site, but is useful if you "
3839
+ "are making changes to cacheable content (like images, css, or JavaScript) "
3840
+ "and would like to see those changes right away."
3841
+ msgstr ""
3842
+ "Im Entwicklungsmodus können Sie vorübergehend in den Entwicklungsmodus für "
3843
+ "Ihre Websites wechseln, wenn Sie Änderungen an Ihrer Website vornehmen "
3844
+ "müssen. Dies umgeht den beschleunigten Cache von CloudFlare und verlangsamt "
3845
+ "Ihre Website, ist jedoch nützlich, wenn Sie Änderungen an cachefähigen "
3846
+ "Inhalten (wie Bildern, CSS oder JavaScript) vornehmen und diese Änderungen "
3847
+ "sofort sehen möchten."
3848
+
3849
+ #: Extension_CloudFlare_Page_View.php:167
3850
+ msgid "Development mode:"
3851
+ msgstr "Entwicklungsmodus:"
3852
+
3853
+ #. Translators: 1 HTML line break, 2 opening HTML a tag to W3TC Support admin page, 3 closing HTML a tag.
3854
+ #: inc/options/parts/dashboard_banner.php:16
3855
+ msgid ""
3856
+ "Did you know that we offer premium support services?%1$s Our experts will "
3857
+ "configure W3 Total Cache for you! %2$sClick here for info%3$s."
3858
+ msgstr ""
3859
+ "Wussten Sie, dass wir Premium-Support-Services anbieten?%1$s Unsere Experten "
3860
+ "konfigurieren W3 Total Cache für Sie! %2$sKlicken Sie hier für "
3861
+ "Informationen%3$s."
3862
+
3863
+ #: BrowserCache_ConfigLabels.php:46 BrowserCache_ConfigLabels.php:48
3864
+ #: BrowserCache_ConfigLabels.php:50 BrowserCache_ConfigLabels.php:59
3865
+ msgid "Directive:"
3866
+ msgstr "Richtlinie:"
3867
+
3868
+ #: inc/options/general.php:50
3869
+ msgid "Disable"
3870
+ msgstr "Deaktivieren"
3871
+
3872
+ #: Generic_AdminNotes.php:183
3873
+ msgid "disable"
3874
+ msgstr "deaktivieren"
3875
+
3876
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
3877
+ #: inc/options/pgcache.php:459
3878
+ msgid "Disable %1$sREST%2$s %3$sAPI%4$s"
3879
+ msgstr "Deaktivieren Sie %1$sREST%2$s %3$sAPI%4$s"
3880
+
3881
+ #: Cdn_ConfigLabels.php:21
3882
+ msgid ""
3883
+ "Disable <acronym title=\"Content Delivery Network\">CDN</acronym> for the "
3884
+ "following roles"
3885
+ msgstr ""
3886
+ "Deaktivieren Sie <acronym title=\"Content-Delivery-Netzwerk\">CDN</acronym> "
3887
+ "für die folgenden Rollen"
3888
+
3889
+ #: Cdn_ConfigLabels.php:19
3890
+ msgid ""
3891
+ "Disable <acronym title=\"Content Delivery Network\">CDN</acronym> on "
3892
+ "<acronym title=\"Secure Sockets Layer\">SSL</acronym> pages"
3893
+ msgstr ""
3894
+ "Deaktivieren Sie <acronym title=\"Content-Delivery-Netzwerk\">CDN</acronym> "
3895
+ "auf <acronym title=\"Secure-Sockets-Layer\">SSL</acronym> -Seiten"
3896
+
3897
+ #: Cdn_ConfigLabels.php:22
3898
+ msgid ""
3899
+ "Disable <acronym title=\"Content Delivery Network\">CDN</acronym> on the "
3900
+ "following pages:"
3901
+ msgstr ""
3902
+ "Deaktivieren Sie <acronym title=\"Content-Delivery-Netzwerk\">CDN</acronym> "
3903
+ "auf den folgenden Seiten:"
3904
+
3905
+ #: PgCache_ConfigLabels.php:41
3906
+ msgid ""
3907
+ "Disable <acronym title=\"Unicode Transformation Format\">UTF</acronym>-8 "
3908
+ "blog charset support"
3909
+ msgstr ""
3910
+ "Deaktivieren Sie die Unterstützung für <acronym title=\"Unicode-"
3911
+ "Transformationsformat\">UTF</acronym> -8-Blog-Zeichensätze"
3912
+
3913
+ #: Minify_ConfigLabels.php:82
3914
+ msgid "Disable all the built-in micro optimizations"
3915
+ msgstr "Deaktivieren Sie alle integrierten Mikrooptimierungen"
3916
+
3917
+ #: inc/options/dbcache.php:147
3918
+ msgid "Disable caching once specified constants defined."
3919
+ msgstr "Caching deaktivieren, sobald bestimmte Konstanten definiert sind."
3920
+
3921
+ #: BrowserCache_ConfigLabels.php:21 BrowserCache_ConfigLabels.php:41
3922
+ msgid "Disable cookies for static files"
3923
+ msgstr "Deaktivieren Sie Cookies für statische Dateien"
3924
+
3925
+ #: UserExperience_GeneralPage_View.php:58
3926
+ msgid "Disable Emoji"
3927
+ msgstr "Emoticons deaktivieren"
3928
+
3929
+ #: Extension_Genesis_Page_View.php:203
3930
+ msgid "Disable fragment cache:"
3931
+ msgstr "Fragment-Cache deaktivieren:"
3932
+
3933
+ #: UserExperience_GeneralPage_View.php:76
3934
+ msgid "Disable jquery-migrate on the front-end"
3935
+ msgstr "Deaktivieren Sie jquery-migrate am Frontend"
3936
+
3937
+ #: Minify_ConfigLabels.php:15
3938
+ msgid "Disable minify for logged in users"
3939
+ msgstr "Minify für angemeldete Benutzer deaktivieren"
3940
+
3941
+ #: UsageStatistics_Plugin_Admin.php:64
3942
+ msgid "Disable statistics"
3943
+ msgstr "Statistiken deaktivieren"
3944
+
3945
+ #: UserExperience_GeneralPage_View.php:67
3946
+ msgid "Disable wp-embed script"
3947
+ msgstr "Deaktivieren Sie das wp-embed-Skript"
3948
+
3949
+ #: inc/lightbox/self_test.php:524 inc/options/minify.php:145
3950
+ msgid "Disabled"
3951
+ msgstr "Deaktiviert"
3952
+
3953
+ #: Cdnfsd_Page_View_Header.php:19 Cdn_Page_View_Header.php:20
3954
+ #: Extension_CloudFlare_Page_View.php:22 Extension_FeedBurner_Page_View.php:19
3955
+ #: Extension_FragmentCache_Page_View.php:31 Extension_Genesis_Page_View.php:23
3956
+ #: Extension_NewRelic_Page_View_Apm.php:20 Extension_Swarmify_Page_View.php:19
3957
+ #: inc/options/browsercache.php:27 inc/options/cdn.php:39
3958
+ #: inc/options/dashboard.php:27 inc/options/dbcache.php:21
3959
+ #: inc/options/general.php:20 inc/options/minify.php:31
3960
+ #: inc/options/objectcache.php:21 inc/options/pgcache.php:21
3961
+ msgid "disabled"
3962
+ msgstr "deaktiviert"
3963
+
3964
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
3965
+ #: Cdn_MaxCdn_Page_View.php:214 Cdn_StackPath2_Page_View.php:246
3966
+ #: Cdn_StackPath_Page_View.php:173
3967
+ msgid "Disabled (always use %1$sHTTP%2$s)"
3968
+ msgstr "Deaktiviert (immer %1$sHTTP%2$s verwenden)"
3969
+
3970
+ #: Cdn_Highwinds_Page_View.php:80 Cdn_LimeLight_Page_View.php:51
3971
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:98 inc/options/cdn/akamai.php:75
3972
+ #: inc/options/cdn/att.php:49 inc/options/cdn/azure.php:58
3973
+ #: inc/options/cdn/cf.php:105 inc/options/cdn/cf2.php:97
3974
+ #: inc/options/cdn/cotendo.php:56 inc/options/cdn/edgecast.php:49
3975
+ #: inc/options/cdn/ftp.php:202 inc/options/cdn/mirror.php:35
3976
+ #: inc/options/cdn/rscf.php:92 inc/options/cdn/s3.php:111
3977
+ #: inc/options/cdn/s3_compatible.php:87
3978
+ msgid "Disabled (always use HTTP)"
3979
+ msgstr "Deaktiviert (immer HTTP verwenden)"
3980
+
3981
+ #: inc/options/cdn/cf.php:178 inc/options/cdn/s3.php:188
3982
+ msgid "Disabled (don't apply an ACL)"
3983
+ msgstr "Deaktiviert (keine ACL anwenden)"
3984
+
3985
+ #: inc/options/extensions/list.php:147
3986
+ msgid "Disabled: see Requirements"
3987
+ msgstr "Deaktiviert: siehe Voraussetzungen"
3988
+
3989
+ #: Minify_ConfigLabels.php:57
3990
+ msgid "Discard invalid properties"
3991
+ msgstr "Ungültige Eigenschaften verwerfen"
3992
+
3993
+ #: Minify_ConfigLabels.php:56
3994
+ msgid "Discard invalid selectors"
3995
+ msgstr "Ungültige Selektoren verwerfen"
3996
+
3997
+ #: Generic_Plugin_WidgetForum.php:57
3998
+ msgid "Discussions"
3999
+ msgstr "Diskussionen"
4000
+
4001
+ #: SetupGuide_Plugin_Admin.php:909 Util_Ui.php:1011
4002
+ msgid "Disk"
4003
+ msgstr "Scheibe"
4004
+
4005
+ #: Generic_Plugin_Admin.php:787
4006
+ msgid "Disk cache(s) successfully emptied."
4007
+ msgstr "Festplatten-Cache(s) erfolgreich geleert."
4008
+
4009
+ #: inc/options/general.php:125 SetupGuide_Plugin_Admin.php:910
4010
+ msgid "Disk: Basic"
4011
+ msgstr "Festplatte: Einfach"
4012
+
4013
+ #: inc/options/general.php:129 SetupGuide_Plugin_Admin.php:911
4014
+ msgid "Disk: Enhanced"
4015
+ msgstr "Festplatte: Verbessert"
4016
+
4017
+ #: inc/options/general.php:731
4018
+ msgid "Display Google Page Speed results on the WordPress dashboard."
4019
+ msgstr ""
4020
+ "Zeigen Sie Google Page Speed-Ergebnisse auf dem WordPress-Dashboard an."
4021
+
4022
+ #: Extension_CloudFlare_Page_View.php:587
4023
+ msgid "Distributed Denial of Service"
4024
+ msgstr "Verteilter Denial-of-Service"
4025
+
4026
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
4027
+ #: inc/options/browsercache.php:225
4028
+ msgid ""
4029
+ "Do not add the prevent caching query string to the specified %1$sURI%2$ss. "
4030
+ "Supports regular expressions."
4031
+ msgstr ""
4032
+ "Fügen Sie dem angegebenen %1$sURI%2$ss nicht die Abfragezeichenfolge zum "
4033
+ "Verhindern des Cachings hinzu. Unterstützt reguläre Ausdrücke."
4034
+
4035
+ #: inc/options/dbcache.php:131
4036
+ msgid ""
4037
+ "Do not cache queries that contain these terms. Any entered prefix (set in wp-"
4038
+ "config.php) will be replaced with current database prefix (default: wp_). "
4039
+ "Query stems can be identified using debug mode."
4040
+ msgstr ""
4041
+ "Cachen Sie keine Abfragen, die diese Begriffe enthalten. Jedes eingegebene "
4042
+ "Präfix (eingestellt in wp-config.php) wird durch das aktuelle "
4043
+ "Datenbankpräfix (Standard: wp_) ersetzt. Abfragestämme können im Debug-Modus "
4044
+ "identifiziert werden."
4045
+
4046
+ #: inc/options/dbcache.php:139
4047
+ msgid "Do not cache queries that contain these words or regular expressions."
4048
+ msgstr ""
4049
+ "Cachen Sie keine Abfragen, die diese Wörter oder regulären Ausdrücke "
4050
+ "enthalten."
4051
+
4052
+ #: inc/options/minify/csstidy2.php:29
4053
+ msgid "Do not change anything"
4054
+ msgstr "Ändern Sie nichts"
4055
+
4056
+ #: BrowserCache_ConfigLabels.php:9
4057
+ msgid "Do not process 404 errors for static objects with WordPress"
4058
+ msgstr "Verarbeiten Sie keine 404-Fehler für statische Objekte mit WordPress"
4059
+
4060
+ #: inc/options/minify.php:233
4061
+ msgid "Do not remove comments that contain these terms."
4062
+ msgstr "Entfernen Sie keine Kommentare, die diese Begriffe enthalten."
4063
+
4064
+ #: DbCache_WpdbInjection_QueryCaching.php:845
4065
+ msgid "Doing AJAX"
4066
+ msgstr "AJAX machen"
4067
+
4068
+ #: DbCache_WpdbInjection_QueryCaching.php:851
4069
+ msgid "Doing cron"
4070
+ msgstr "Cron machen"
4071
+
4072
+ #: Extension_NewRelic_Plugin.php:138 Extension_Swarmify_Plugin.php:104
4073
+ msgid "DOING_AJAX constant is defined"
4074
+ msgstr "DOING_AJAX-Konstante ist definiert"
4075
+
4076
+ #: Cdnfsd_StackPath_Popup_View_Zone.php:49
4077
+ msgid "Domain "
4078
+ msgstr "Domain"
4079
+
4080
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
4081
+ #: Cdnfsd_MaxCdn_Popup_View_Zone.php:53
4082
+ msgid "Domain %1$sCDN%2$s will handle"
4083
+ msgstr "Domäne %1$sCDN%2$s wird verarbeitet"
4084
+
4085
+ #: Cdnfsd_CloudFront_Popup_View_Distribution.php:38 inc/options/about.php:52
4086
+ #: inc/options/cdn/cf.php:156 inc/options/cdn/cf2.php:148
4087
+ #: inc/options/cdn/s3.php:166 inc/options/cdn/s3_compatible.php:133
4088
+ #: inc/options/install.php:152
4089
+ msgid "Domain Name System"
4090
+ msgstr "Domain-Name-System"
4091
+
4092
+ #: inc/options/cdn/akamai.php:31
4093
+ msgid "Domain to purge:"
4094
+ msgstr "Zu löschende Domäne:"
4095
+
4096
+ #: Cdnfsd_MaxCdn_Popup_View_Zone.php:44
4097
+ msgid "Domain:"
4098
+ msgstr "Domain:"
4099
+
4100
+ #: inc/popup/cdn_rename_domain.php:59
4101
+ msgid "Domains to rename:"
4102
+ msgstr "Domains umzubenennen:"
4103
+
4104
+ #: inc/options/pgcache.php:445
4105
+ msgid "Don't cache"
4106
+ msgstr "Nicht cachen"
4107
+
4108
+ #: inc/options/browsercache.php:424
4109
+ msgid ""
4110
+ "don't cache (\"max-age=0, private, no-store, no-cache, must-revalidate\")"
4111
+ msgstr ""
4112
+ "nicht cachen (\"max-age=0, private, no-store, no-cache, must-revalidate\")"
4113
+
4114
+ #: PgCache_ConfigLabels.php:11
4115
+ msgid "Don't cache front page"
4116
+ msgstr "Titelseite nicht cachen"
4117
+
4118
+ #: PgCache_ConfigLabels.php:17
4119
+ msgid "Don't cache pages for following user roles"
4120
+ msgstr "Keine Seiten für folgende Benutzerrollen zwischenspeichern"
4121
+
4122
+ #: PgCache_ConfigLabels.php:16
4123
+ msgid "Don't cache pages for logged in users"
4124
+ msgstr "Keine Seiten für angemeldete Benutzer zwischenspeichern"
4125
+
4126
+ #: DbCache_ConfigLabels.php:10
4127
+ msgid "Don't cache queries for logged in users"
4128
+ msgstr "Keine Abfragen für angemeldete Benutzer zwischenspeichern"
4129
+
4130
+ #: Minify_ConfigLabels.php:20
4131
+ msgid "Don't minify feeds"
4132
+ msgstr "Minimieren Sie keine Feeds"
4133
+
4134
+ #: inc/options/minify/csstidy2.php:16
4135
+ msgid "Don't optimise"
4136
+ msgstr "Nicht optimieren"
4137
+
4138
+ #: Extension_Swarmify_Page_View.php:72
4139
+ msgid "Don't optimize videos for logged in users"
4140
+ msgstr "Optimieren Sie keine Videos für eingeloggte Benutzer"
4141
+
4142
+ #: Cdnfsd_CloudFront_Popup_View_Distribution.php:79
4143
+ #: Cdnfsd_MaxCdn_Popup_View_Zone.php:78 Cdnfsd_StackPath_Popup_View_Zone.php:64
4144
+ msgid "Don't reconfigure, I know what I'm doing"
4145
+ msgstr "Nicht neu konfigurieren, ich weiß, was ich tue"
4146
+
4147
+ #: inc/options/browsercache.php:246
4148
+ msgid "Don't set cookies for static files"
4149
+ msgstr "Setzen Sie keine Cookies für statische Dateien"
4150
+
4151
+ #: Cdnfsd_CloudFront_Popup_View_Success.php:21
4152
+ #: Cdnfsd_LimeLight_Popup_View_Success.php:18
4153
+ #: Cdnfsd_MaxCdn_Popup_View_Success.php:22
4154
+ #: Cdnfsd_StackPath2_Popup_View_Success.php:19
4155
+ #: Cdnfsd_StackPath_Popup_View_Success.php:22
4156
+ #: Cdn_LimeLight_Popup_View_Success.php:31
4157
+ #: Cdn_MaxCdn_Popup_View_Success.php:19
4158
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Created.php:59
4159
+ #: Cdn_StackPath2_Popup_View_Success.php:19
4160
+ #: Cdn_StackPath_Popup_View_Success.php:19
4161
+ msgid "Done"
4162
+ msgstr "Fertig"
4163
+
4164
+ #: Extension_NewRelic_Plugin.php:148
4165
+ msgid "DONOTAUTORUM constant is defined"
4166
+ msgstr "DONOTAUTORUM-Konstante ist definiert"
4167
+
4168
+ #: DbCache_WpdbInjection_QueryCaching.php:843
4169
+ msgid "DONOTCACHEDB constant is defined"
4170
+ msgstr "Die DONOTCACHEDB-Konstante ist definiert"
4171
+
4172
+ #: ObjectCache_WpObjectCache_Regular.php:913
4173
+ msgid "DONOTCACHEOBJECT constant is defined"
4174
+ msgstr "Die DONOTCACHEOBJECT-Konstante ist definiert"
4175
+
4176
+ #: Cdn_Plugin.php:582
4177
+ msgid "DONOTCDN constant is defined"
4178
+ msgstr "Die DONOTCDN-Konstante ist definiert"
4179
+
4180
+ #: inc/options/general.php:1058
4181
+ msgid "Download"
4182
+ msgstr "Download"
4183
+
4184
+ #: inc/options/general.php:1059
4185
+ msgid "Download the active settings file."
4186
+ msgstr "Laden Sie die aktive Einstellungsdatei herunter."
4187
+
4188
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
4189
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:14
4190
+ msgid ""
4191
+ "Dramatically increase website speeds in just a few clicks! Add the MaxCDN "
4192
+ "content delivery network (%1$sCDN%2$s) service to your site."
4193
+ msgstr ""
4194
+ "Erhöhen Sie die Website-Geschwindigkeit mit nur wenigen Klicks dramatisch! "
4195
+ "Fügen Sie Ihrer Website den Dienst MaxCDN Content Delivery Network "
4196
+ "(%1$sCDN%2$s) hinzu."
4197
+
4198
+ #. translators: 1 HTML acronym for Content Delivery Network (CDN).
4199
+ #: Cdn_StackPath_Widget_View_Unauthorized.php:15
4200
+ msgid ""
4201
+ "Dramatically increase website speeds in just a few clicks! Add the StackPath "
4202
+ "content delivery network (%1$s) service to your site."
4203
+ msgstr ""
4204
+ "Erhöhen Sie die Website-Geschwindigkeit mit nur wenigen Klicks dramatisch! "
4205
+ "Fügen Sie Ihrer Website den Dienst StackPath Content Delivery Network (%1$s) "
4206
+ "hinzu."
4207
+
4208
+ #: UsageStatistics_Page_View.php:184
4209
+ msgid "Dynamic Requests/period: "
4210
+ msgstr "Dynamische Anfragen/Zeitraum:"
4211
+
4212
+ #: UsageStatistics_Page_View.php:187
4213
+ msgid "Dynamic Requests/second: "
4214
+ msgstr "Dynamische Anfragen/Sekunde:"
4215
+
4216
+ #: UsageStatistics_Page_View.php:190
4217
+ msgid "Dynamic time to process (ms): "
4218
+ msgstr "Dynamische Verarbeitungszeit (ms):"
4219
+
4220
+ #: inc/email/support_request.php:45
4221
+ msgid "E-mail sent from IP: "
4222
+ msgstr "E-Mail gesendet von IP:"
4223
+
4224
+ #: inc/email/support_request.php:15
4225
+ msgid "E-Mail: "
4226
+ msgstr "Email:"
4227
+
4228
+ #: inc/popup/cdn_rename_domain.php:62
4229
+ msgid "e.g.: domain.com"
4230
+ msgstr "B.: domain.com"
4231
+
4232
+ #: Extension_CloudFlare_Page_View.php:319
4233
+ msgid "Edge cache TTL:"
4234
+ msgstr "Edge-Cache-TTL:"
4235
+
4236
+ #: Generic_Plugin_Admin.php:814
4237
+ msgid "Edge mode has been disabled."
4238
+ msgstr "Der Edge-Modus wurde deaktiviert."
4239
+
4240
+ #: Generic_Plugin_Admin.php:813
4241
+ msgid "Edge mode has been enabled."
4242
+ msgstr "Der Edge-Modus wurde aktiviert."
4243
+
4244
+ #: Util_Rule.php:312
4245
+ msgid ""
4246
+ "Edit file <strong>%s</strong> and add the following rules above the "
4247
+ "WordPress directives:"
4248
+ msgstr ""
4249
+ "Bearbeiten Sie die Datei <strong>%s</strong> und fügen Sie die folgenden "
4250
+ "Regeln über den WordPress-Anweisungen hinzu:"
4251
+
4252
+ #: Util_Rule.php:382
4253
+ msgid ""
4254
+ "Edit file <strong>%s</strong> and remove all lines between and including "
4255
+ "<strong>%s</strong>\n"
4256
+ "\t\t\t\tand <strong>%s</strong> markers."
4257
+ msgstr ""
4258
+ "Bearbeiten Sie die Datei <strong>%s</strong> und entfernen Sie alle Zeilen "
4259
+ "zwischen und einschließlich <strong>%s</strong>\n"
4260
+ "und <strong>%s</strong>-Markierungen."
4261
+
4262
+ #: Util_Rule.php:309
4263
+ msgid ""
4264
+ "Edit file <strong>%s</strong> and replace all lines between and including "
4265
+ "<strong>%s</strong> and <strong>%s</strong> markers with:"
4266
+ msgstr ""
4267
+ "Bearbeiten Sie die Datei <strong>%s</strong> und ersetzen Sie alle Zeilen "
4268
+ "zwischen und einschließlich der Markierungen <strong>%s</strong> und <strong>"
4269
+ "%s</strong> durch:"
4270
+
4271
+ #. translators: 1: opening HTML strong tag, 2: clsoing HTML strong tag, 3: HTML line break, 4: HTML input button to hide message.
4272
+ #: Generic_AdminNotes.php:107
4273
+ msgid ""
4274
+ "Either the PHP configuration, web server configuration or a script in the "
4275
+ "WordPress installation has %1$szlib.output_compression%2$s enabled."
4276
+ "%3$sPlease locate and disable this setting to ensure proper HTTP compression "
4277
+ "behavior. %4$s"
4278
+ msgstr ""
4279
+ "Entweder die PHP-Konfiguration, die Webserver-Konfiguration oder ein Skript "
4280
+ "in der WordPress-Installation hat %1$szlib.output_compression%2$s aktiviert."
4281
+ "%3$sBitte suchen und deaktivieren Sie diese Einstellung, um ein "
4282
+ "ordnungsgemäßes HTTP-Komprimierungsverhalten sicherzustellen. %4$s"
4283
+
4284
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
4285
+ #: inc/options/parts/memcached.php:46
4286
+ msgid "ElastiCache %1$sPHP%2$s module not found"
4287
+ msgstr "ElastiCache %1$sPHP%2$s-Modul nicht gefunden"
4288
+
4289
+ #: inc/options/parts/memcached_extension.php:49
4290
+ msgid ""
4291
+ "ElastiCache <acronym title=\"Hypertext Preprocessor\">PHP</acronym> module "
4292
+ "not found"
4293
+ msgstr ""
4294
+ "ElastiCache <acronym title=\"Hypertext Preprocessor\">PHP</acronym> -Modul "
4295
+ "nicht gefunden"
4296
+
4297
+ #: FeatureShowcase_Plugin_Admin.php:288
4298
+ msgid "Eliminate Render Blocking CSS"
4299
+ msgstr "Beseitigen Sie Renderblocking-CSS"
4300
+
4301
+ #: inc/options/minify/css.php:17
4302
+ msgid ""
4303
+ "Eliminate render-blocking <acronym title=\"Cascading Style Sheet\">"
4304
+ "CSS</acronym> by moving it to <acronym title=\"Hypertext Transfer Protocol\">"
4305
+ "HTTP</acronym> body"
4306
+ msgstr ""
4307
+ "Beseitigen Sie Render-Blocking- <acronym title=\"Cascading Stylesheet\">"
4308
+ "CSS</acronym> , indem Sie es in den <acronym title=\"Hypertext Transfer "
4309
+ "Protocol\">HTTP</acronym> -Body verschieben"
4310
+
4311
+ #: inc/options/minify.php:147
4312
+ msgid "Email Notification"
4313
+ msgstr "Email Benachrichtigung"
4314
+
4315
+ #: inc/options/cdn/akamai.php:23
4316
+ msgid "Email notification:"
4317
+ msgstr "Email Benachrichtigung:"
4318
+
4319
+ #: Extension_CloudFlare_Page_View.php:458
4320
+ msgid "Email obfuscation:"
4321
+ msgstr "E-Mail-Verschleierung:"
4322
+
4323
+ #: Extension_CloudFlare_Popup_View_Intro.php:19
4324
+ msgid "Email:"
4325
+ msgstr "Email:"
4326
+
4327
+ #: inc/lightbox/minify_recommendations.php:58 inc/options/minify.php:514
4328
+ msgid "Embed after &lt;body&gt;"
4329
+ msgstr "Einbetten nach &lt;body&gt;"
4330
+
4331
+ #: inc/lightbox/minify_recommendations.php:59 inc/options/minify.php:515
4332
+ msgid "Embed before &lt;/body&gt;"
4333
+ msgstr "Einbetten vor &lt;/body&gt;"
4334
+
4335
+ #: inc/lightbox/minify_recommendations.php:57 inc/options/minify.php:513
4336
+ msgid "Embed in &lt;head&gt;"
4337
+ msgstr "Einbetten in &lt;head&gt;"
4338
+
4339
+ #: inc/lightbox/minify_recommendations.php:37 inc/options/minify.php:492
4340
+ msgid "Embed Location:"
4341
+ msgstr "Speicherort einbetten:"
4342
+
4343
+ #: Minify_ConfigLabels.php:23
4344
+ msgid "Embed type:"
4345
+ msgstr "Einbettungstyp:"
4346
+
4347
+ #: CdnEngine_Mirror_Edgecast.php:38
4348
+ msgid "Empty account #."
4349
+ msgstr "Leeres Konto Nr."
4350
+
4351
+ #: inc/options/dashboard.php:64
4352
+ msgid "empty all caches"
4353
+ msgstr "alle Caches leeren"
4354
+
4355
+ #: Extension_CloudFlare_Plugin_Admin.php:301
4356
+ msgid "empty all caches except CloudFlare"
4357
+ msgstr "Leeren Sie alle Caches außer CloudFlare"
4358
+
4359
+ #: CdnEngine_Mirror_MaxCdn.php:35 CdnEngine_Mirror_MaxCdn.php:110
4360
+ #: CdnEngine_Mirror_StackPath.php:33 CdnEngine_Mirror_StackPath.php:82
4361
+ #: CdnEngine_Mirror_StackPath2.php:32 CdnEngine_Mirror_StackPath2.php:68
4362
+ msgid "Empty Authorization Key."
4363
+ msgstr "Leerer Autorisierungsschlüssel."
4364
+
4365
+ #: Cdn_GeneralPage_View.php:145 Extension_CloudFlare_GeneralPage_View.php:40
4366
+ #: Extension_FragmentCache_GeneralPage_View.php:27 inc/options/general.php:182
4367
+ #: inc/options/general.php:324 inc/options/general.php:363
4368
+ #: inc/options/general.php:418 SystemOpCache_GeneralPage_View.php:50
4369
+ msgid "Empty cache"
4370
+ msgstr "Cache leeren"
4371
+
4372
+ #: inc/options/dbcache.php:45 inc/options/minify.php:50
4373
+ #: inc/options/objectcache.php:46
4374
+ msgid "empty cache"
4375
+ msgstr "leerer Cache"
4376
+
4377
+ #: Generic_Plugin_Admin.php:604
4378
+ msgid "Empty Caches"
4379
+ msgstr "Leere Caches"
4380
+
4381
+ #: inc/popup/cdn_queue.php:73
4382
+ msgid "Empty delete queue"
4383
+ msgstr "Leere Löschwarteschlange"
4384
+
4385
+ #: Cdn_AdminActions.php:345
4386
+ msgid "Empty files list."
4387
+ msgstr "Leere Dateiliste."
4388
+
4389
+ #: Generic_AdminActions_Test.php:115
4390
+ msgid "Empty JAR file path."
4391
+ msgstr "Leerer JAR-Dateipfad."
4392
+
4393
+ #: Generic_AdminActions_Test.php:113
4394
+ msgid "Empty JAVA executable path."
4395
+ msgstr "Leerer ausführbarer JAVA-Pfad."
4396
+
4397
+ #: inc/options/dashboard.php:67
4398
+ msgid "empty only the disk cache(s)"
4399
+ msgstr "Nur den/die Disk-Cache(s) leeren"
4400
+
4401
+ #: inc/options/dashboard.php:65
4402
+ msgid "empty only the memcached cache(s)"
4403
+ msgstr "Nur den/die Memcache-Cache(s) leeren"
4404
+
4405
+ #: inc/options/dashboard.php:66
4406
+ msgid "empty only the opcode cache"
4407
+ msgstr "Leeren Sie nur den Opcode-Cache"
4408
+
4409
+ #: CdnEngine_Mirror_Akamai.php:40 CdnEngine_Mirror_Cotendo.php:42
4410
+ msgid "Empty password."
4411
+ msgstr "Leeres Passwort."
4412
+
4413
+ #: inc/popup/cdn_queue.php:103
4414
+ msgid "Empty purge queue"
4415
+ msgstr "Löschwarteschlange leeren"
4416
+
4417
+ #: Extension_FragmentCache_Page_View.php:58
4418
+ msgid "Empty the entire cache"
4419
+ msgstr "Leeren Sie den gesamten Cache"
4420
+
4421
+ #: Minify_Plugin_Admin.php:168
4422
+ msgid "Empty the minify cache"
4423
+ msgstr "Leeren Sie den Minify-Cache"
4424
+
4425
+ #: ObjectCache_Plugin_Admin.php:57
4426
+ msgid "Empty the object cache"
4427
+ msgstr "Leeren Sie den Objektcache"
4428
+
4429
+ #: Generic_AdminNotes.php:213
4430
+ msgid "empty the page cache"
4431
+ msgstr "leeren Sie den Seitencache"
4432
+
4433
+ #: CdnEngine_Mirror_Edgecast.php:44
4434
+ msgid "Empty token."
4435
+ msgstr "Leeres Token."
4436
+
4437
+ #: inc/popup/cdn_queue.php:40
4438
+ msgid "Empty upload queue"
4439
+ msgstr "Leere Upload-Warteschlange"
4440
+
4441
+ #: CdnEngine_Mirror_Akamai.php:34 CdnEngine_Mirror_Cotendo.php:36
4442
+ msgid "Empty username."
4443
+ msgstr "Leerer Benutzername."
4444
+
4445
+ #: CdnEngine_Mirror_Cotendo.php:48
4446
+ msgid "Empty zones list."
4447
+ msgstr "Leere Zonenliste."
4448
+
4449
+ #: Cdnfsd_GeneralPage_View.php:73 Cdn_GeneralPage_View.php:90
4450
+ #: extension-example/Extension_Example_Page_View.php:28
4451
+ #: Extension_Genesis_Page_View.php:38 Extension_Genesis_Page_View.php:47
4452
+ #: Extension_Genesis_Page_View.php:56 Extension_Genesis_Page_View.php:65
4453
+ #: Extension_Genesis_Page_View.php:81 Extension_Genesis_Page_View.php:90
4454
+ #: Extension_Genesis_Page_View.php:107 Extension_Genesis_Page_View.php:116
4455
+ #: Extension_Genesis_Page_View.php:133 Extension_Genesis_Page_View.php:142
4456
+ #: Extension_Genesis_Page_View.php:159 Extension_Genesis_Page_View.php:184
4457
+ #: Extension_Genesis_Page_View.php:193 Extension_Genesis_Page_View.php:202
4458
+ #: inc/options/general.php:92 inc/options/general.php:115
4459
+ #: inc/options/general.php:215 inc/options/general.php:347
4460
+ #: inc/options/general.php:384 inc/options/general.php:439
4461
+ #: inc/options/minify.php:285 inc/options/minify.php:564
4462
+ #: inc/options/minify.php:624 inc/options/minify.php:819
4463
+ #: inc/options/pgcache.php:181 inc/options/pgcache.php:509
4464
+ #: inc/options/pgcache.php:517 Minify_ConfigLabels.php:17
4465
+ #: Minify_ConfigLabels.php:22 Minify_ConfigLabels.php:29
4466
+ #: PgCache_ConfigLabels.php:40 SystemOpCache_GeneralPage_View.php:41
4467
+ #: UsageStatistics_GeneralPage_View.php:20
4468
+ msgid "Enable"
4469
+ msgstr "Ermöglichen"
4470
+
4471
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
4472
+ #: inc/options/browsercache.php:161
4473
+ msgid "Enable %1$sHTTP%2$s (brotli) compression"
4474
+ msgstr "Komprimierung von %1$sHTTP%2$s (Brotli) aktivieren"
4475
+
4476
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
4477
+ #: inc/options/browsercache.php:133
4478
+ msgid "Enable %1$sHTTP%2$s (gzip) compression"
4479
+ msgstr "Komprimierung %1$sHTTP%2$s (gzip) aktivieren"
4480
+
4481
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
4482
+ #: inc/options/general.php:443
4483
+ msgid ""
4484
+ "Enable %1$sHTTP%2$s compression and add headers to reduce server load and "
4485
+ "decrease file load time."
4486
+ msgstr ""
4487
+ "Aktivieren Sie die %1$sHTTP%2$s-Komprimierung und fügen Sie Header hinzu, um "
4488
+ "die Serverlast zu verringern und die Ladezeit der Datei zu verkürzen."
4489
+
4490
+ #. translators: 5 opening HTML a tag to W3TC BrowserCache admin page, 6 closing HTML a tag.
4491
+ #: inc/options/pgcache.php:845
4492
+ msgid ""
4493
+ "Enable %1$sHTTP%2$s compression in the \"%3$sHTML%4$s\" section on "
4494
+ "%5$sBrowser Cache</a> Settings tab."
4495
+ msgstr ""
4496
+ "Aktivieren Sie die %1$sHTTP%2$s-Komprimierung im Abschnitt \"%3$sHTML%4$s\" "
4497
+ "auf der Registerkarte \"%5$sBrowser-Cache\"</a>."
4498
+
4499
+ #. translators: 3 opening HTML a tag to W3TC Browsercache admin page, 4 closing HTML a tag.
4500
+ #: inc/options/minify.php:1000
4501
+ msgid ""
4502
+ "Enable %1$sHTTP%2$s compression in the \"Cascading Style Sheets &amp; "
4503
+ "JavaScript\" section on %3$sBrowser Cache%4$s Settings tab."
4504
+ msgstr ""
4505
+ "Aktivieren Sie die %1$sHTTP%2$s-Komprimierung im Abschnitt &quot;Cascading "
4506
+ "Style Sheets &amp; JavaScript&quot; auf der Registerkarte &quot;%3$sBrowser-"
4507
+ "Cache&quot;%4$s."
4508
+
4509
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
4510
+ #: Extension_CloudFlare_Page_View.php:655
4511
+ msgid ""
4512
+ "Enable %1$sIP%2$s Geolocation to have CloudFlare geolocate visitors to your "
4513
+ "website and pass the country code to you."
4514
+ msgstr ""
4515
+ "Aktivieren Sie die %1$sIP%2$s-Geolokalisierung, damit CloudFlare Besucher "
4516
+ "Ihrer Website geolokalisiert und Ihnen den Ländercode übermittelt."
4517
+
4518
+ #: BrowserCache_ConfigLabels.php:19 BrowserCache_ConfigLabels.php:30
4519
+ msgid ""
4520
+ "Enable <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> (brotli)"
4521
+ " compression"
4522
+ msgstr ""
4523
+ "Aktivieren Sie die <acronym title=\"Hypertext Transfer Protocol\">"
4524
+ "HTTP</acronym> (Brotli)-Komprimierung"
4525
+
4526
+ #: BrowserCache_ConfigLabels.php:39
4527
+ msgid ""
4528
+ "Enable <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> (brotli)"
4529
+ " compression</label>"
4530
+ msgstr ""
4531
+ "Aktivieren Sie die <acronym title=\"Hypertext Transfer Protocol\">"
4532
+ "HTTP</acronym> (Brotli)-Komprimierung"
4533
+
4534
+ #: BrowserCache_ConfigLabels.php:18 BrowserCache_ConfigLabels.php:29
4535
+ msgid ""
4536
+ "Enable <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> (gzip) "
4537
+ "compression"
4538
+ msgstr ""
4539
+ "Aktivieren Sie die <acronym title=\"Hypertext Transfer Protocol\">"
4540
+ "HTTP</acronym> (gzip)-Komprimierung"
4541
+
4542
+ #: BrowserCache_ConfigLabels.php:38
4543
+ msgid ""
4544
+ "Enable <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> (gzip) "
4545
+ "compression</label>"
4546
+ msgstr ""
4547
+ "Aktivieren Sie die <acronym title=\"Hypertext Transfer Protocol\">"
4548
+ "HTTP</acronym> (gzip)-Komprimierung"
4549
+
4550
+ #: Generic_ConfigLabels.php:7
4551
+ msgid ""
4552
+ "Enable cache purge via Amazon <acronym title=\"Simple Notification Service\">"
4553
+ "SNS</acronym>"
4554
+ msgstr ""
4555
+ "Cache-Bereinigung über Amazon <acronym title=\"Einfacher "
4556
+ "Benachrichtigungsdienst\">SNS aktivieren</acronym>"
4557
+
4558
+ #: inc/options/objectcache.php:99
4559
+ msgid "Enable caching for wp-admin requests"
4560
+ msgstr "Caching für wp-admin-Anfragen aktivieren"
4561
+
4562
+ #: UsageStatistics_GeneralPage_View.php:67
4563
+ msgid ""
4564
+ "Enable collecting statistics from an Access Log. This provides much more "
4565
+ "precise statistics."
4566
+ msgstr ""
4567
+ "Aktivieren Sie das Sammeln von Statistiken aus einem Zugriffsprotokoll. Dies "
4568
+ "liefert viel genauere Statistiken."
4569
+
4570
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
4571
+ #: Extension_CloudFlare_Page_View.php:817
4572
+ msgid ""
4573
+ "Enable Crypto %1$sTLS%2$s 1.2 feature for this zone and prevent use of "
4574
+ "previous versions."
4575
+ msgstr ""
4576
+ "Aktivieren Sie die Crypto %1$sTLS%2$s 1.2-Funktion für diese Zone und "
4577
+ "verhindern Sie die Verwendung früherer Versionen."
4578
+
4579
+ #: inc/options/general.php:339
4580
+ msgid "Enable database caching to reduce post, page and feed creation time."
4581
+ msgstr ""
4582
+ "Aktivieren Sie das Datenbank-Caching, um die Erstellungszeit für Posts, "
4583
+ "Seiten und Feeds zu verkürzen."
4584
+
4585
+ #: Extension_CloudFlare_Page_View.php:490
4586
+ msgid "Enable error pages:"
4587
+ msgstr "Fehlerseiten aktivieren:"
4588
+
4589
+ #: inc/options/general.php:835
4590
+ msgid "Enable file locking"
4591
+ msgstr "Dateisperre aktivieren"
4592
+
4593
+ #: Extension_FragmentCache_GeneralPage_View.php:10
4594
+ msgid "Enable fragment caching reduce execution time for common operations."
4595
+ msgstr ""
4596
+ "Aktivieren Sie Fragment-Caching, um die Ausführungszeit für allgemeine "
4597
+ "Vorgänge zu reduzieren."
4598
+
4599
+ #: inc/options/general.php:730
4600
+ msgid "Enable Google Page Speed dashboard widget"
4601
+ msgstr "Aktivieren Sie das Google Page Speed-Dashboard-Widget"
4602
+
4603
+ #: UsageStatistics_Page_View_Disabled.php:17
4604
+ msgid "Enable here"
4605
+ msgstr "Hier aktivieren"
4606
+
4607
+ #: Extension_CloudFlare_Page_View.php:675
4608
+ msgid "Enable IPv6."
4609
+ msgstr "Aktivieren Sie IPv6."
4610
+
4611
+ #: UsageStatistics_Page_View_NoDebugMode.php:17
4612
+ msgid "Enable it here"
4613
+ msgstr "Aktivieren Sie es hier"
4614
+
4615
+ #: inc/options/general.php:376
4616
+ msgid ""
4617
+ "Enable object caching to further reduce execution time for common operations."
4618
+ msgstr ""
4619
+ "Aktivieren Sie das Zwischenspeichern von Objekten, um die Ausführungszeit "
4620
+ "für allgemeine Vorgänge weiter zu verkürzen."
4621
+
4622
+ #: inc/options/general.php:107
4623
+ msgid "Enable page caching to decrease the response time of the site."
4624
+ msgstr ""
4625
+ "Aktivieren Sie das Seiten-Caching, um die Antwortzeit der Website zu "
4626
+ "verkürzen."
4627
+
4628
+ #: Generic_ConfigLabels.php:25
4629
+ msgid "Enable reverse proxy caching via varnish"
4630
+ msgstr "Reverse-Proxy-Caching über Lack aktivieren"
4631
+
4632
+ #: UsageStatistics_GeneralPage_View.php:22
4633
+ msgid ""
4634
+ "Enable statistics collection. Note that this consumes additional resources "
4635
+ "and is not recommended to be run continuously."
4636
+ msgstr ""
4637
+ "Statistikerfassung aktivieren. Beachten Sie, dass dies zusätzliche "
4638
+ "Ressourcen verbraucht und nicht empfohlen wird, es kontinuierlich "
4639
+ "auszuführen."
4640
+
4641
+ #. translators: 3 closing HTML a tag, 4 closing HTML em tag.
4642
+ #: Extension_NewRelic_Page_View_Apm.php:381
4643
+ msgid ""
4644
+ "Enable this if you want to record the metric and transaction data (until the "
4645
+ "name is changed using PHP function), specify a value of true for this "
4646
+ "argument to make the agent send the transaction to the daemon. There is a "
4647
+ "slight performance impact as it takes a few milliseconds for the agent to "
4648
+ "dump its data. %1$sFrom %2$sNew Relic PHP API doc%3$s%4$s"
4649
+ msgstr ""
4650
+ "Aktivieren Sie dies, wenn Sie die Metrik- und Transaktionsdaten aufzeichnen "
4651
+ "möchten (bis der Name mithilfe der PHP-Funktion geändert wird). Geben Sie "
4652
+ "für dieses Argument den Wert „true“ an, damit der Agent die Transaktion an "
4653
+ "den Daemon sendet. Die Leistung wird geringfügig beeinträchtigt, da es "
4654
+ "einige Millisekunden dauert, bis der Agent seine Daten ausgibt. %1$sAus "
4655
+ "%2$sNew Relic PHP API-Dokument%3$s%4$s"
4656
+
4657
+ #: inc/options/cdn/ftp.php:250
4658
+ msgid "Enable this option if you don't have special public/private key files."
4659
+ msgstr ""
4660
+ "Aktivieren Sie diese Option, wenn Sie keine speziellen öffentlichen/privaten "
4661
+ "Schlüsseldateien haben."
4662
+
4663
+ #: inc/options/cdn/ftp.php:29
4664
+ msgid ""
4665
+ "Enable this option only if there are connectivity issues, otherwise it's not "
4666
+ "recommended."
4667
+ msgstr ""
4668
+ "Aktivieren Sie diese Option nur bei Verbindungsproblemen, andernfalls wird "
4669
+ "sie nicht empfohlen."
4670
+
4671
+ #. translators: 1 opening HTML a tag to NewRelic per directory settings documentation, 2 closing HTML a tag.
4672
+ #: Extension_NewRelic_Page_View_Apm.php:347
4673
+ msgid ""
4674
+ "Enable this to dynamically set proper application name. (See New Relic "
4675
+ "%1$sPer-directory settings%2$s for other methods."
4676
+ msgstr ""
4677
+ "Aktivieren Sie dies, um den richtigen Anwendungsnamen dynamisch festzulegen. "
4678
+ "(Weitere Methoden finden Sie unter New Relic %1$sPro-Verzeichnis-"
4679
+ "Einstellungen%2$s."
4680
+
4681
+ #: Extension_CloudFlare_GeneralPage_View.php:31
4682
+ #: Extension_CloudFlare_Page_View.php:138
4683
+ msgid "Enable when you have html pages cached on CloudFlare level."
4684
+ msgstr ""
4685
+ "Aktivieren Sie diese Option, wenn Sie HTML-Seiten auf CloudFlare-Ebene "
4686
+ "zwischengespeichert haben."
4687
+
4688
+ #: Extension_NewRelic_Page_View_Apm.php:369
4689
+ msgid "Enable XMIT:"
4690
+ msgstr "XMIT aktivieren:"
4691
+
4692
+ #: inc/lightbox/self_test.php:522 SetupGuide_Plugin_Admin.php:912
4693
+ msgid "Enabled"
4694
+ msgstr "Ermöglicht"
4695
+
4696
+ #: Cdnfsd_Page_View_Header.php:19 Cdn_Page_View_Header.php:20
4697
+ #: extension-example/Extension_Example_Page_View.php:13
4698
+ #: Extension_CloudFlare_Page_View.php:20 Extension_FeedBurner_Page_View.php:17
4699
+ #: Extension_FragmentCache_Page_View.php:29 Extension_Genesis_Page_View.php:21
4700
+ #: Extension_NewRelic_Page_View_Apm.php:18 Extension_Swarmify_Page_View.php:17
4701
+ #: inc/options/browsercache.php:27 inc/options/cdn.php:39
4702
+ #: inc/options/dashboard.php:27 inc/options/dbcache.php:21
4703
+ #: inc/options/general.php:20 inc/options/minify.php:31
4704
+ #: inc/options/objectcache.php:21 inc/options/pgcache.php:21
4705
+ msgid "enabled"
4706
+ msgstr "aktiviert"
4707
+
4708
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
4709
+ #: Cdn_MaxCdn_Page_View.php:194 Cdn_StackPath2_Page_View.php:226
4710
+ #: Cdn_StackPath_Page_View.php:153
4711
+ msgid "Enabled (always use %1$sSSL%2$s)"
4712
+ msgstr "Aktiviert (immer %1$sSSL%2$s verwenden)"
4713
+
4714
+ #: Cdn_Highwinds_Page_View.php:79 Cdn_LimeLight_Page_View.php:50
4715
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:97 inc/options/cdn/akamai.php:74
4716
+ #: inc/options/cdn/att.php:48 inc/options/cdn/azure.php:57
4717
+ #: inc/options/cdn/cf.php:104 inc/options/cdn/cf2.php:96
4718
+ #: inc/options/cdn/cotendo.php:55 inc/options/cdn/edgecast.php:48
4719
+ #: inc/options/cdn/ftp.php:201 inc/options/cdn/mirror.php:34
4720
+ #: inc/options/cdn/rscf.php:91 inc/options/cdn/s3.php:110
4721
+ #: inc/options/cdn/s3_compatible.php:86
4722
+ msgid "Enabled (always use SSL)"
4723
+ msgstr "Aktiviert (immer SSL verwenden)"
4724
+
4725
+ #: inc/options/cdn/cf.php:177 inc/options/cdn/s3.php:187
4726
+ msgid "Enabled (apply the 'public-read' ACL)"
4727
+ msgstr "Aktiviert (wende die „Public-Read“-ACL an)"
4728
+
4729
+ #: CacheGroups_Plugin_Admin_View.php:65 CacheGroups_Plugin_Admin_View.php:186
4730
+ #: CacheGroups_Plugin_Admin_View.php:269
4731
+ msgid "Enabled:"
4732
+ msgstr "Ermöglicht:"
4733
+
4734
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
4735
+ #: Extension_CloudFlare_Page_View.php:779
4736
+ msgid "Enables or disables %1$sSSL%2$s header."
4737
+ msgstr "Aktiviert oder deaktiviert %1$sSSL%2$s-Header."
4738
+
4739
+ #: inc/options/pgcache.php:510
4740
+ msgid ""
4741
+ "Enables support for WordPress functionality in fragment caching for the page "
4742
+ "caching engine. Use of this feature may increase response times."
4743
+ msgstr ""
4744
+ "Aktiviert die Unterstützung der WordPress-Funktionalität beim Fragment-"
4745
+ "Caching für die Seiten-Caching-Engine. Die Verwendung dieser Funktion kann "
4746
+ "die Antwortzeiten verlängern."
4747
+
4748
+ #: CacheGroups_Plugin_Admin.php:42
4749
+ msgid ""
4750
+ "Enabling even a single user agent group will set a cookie called "
4751
+ "\"w3tc_referrer.\" It is used to ensure a consistent user experience across "
4752
+ "page views. Make sure any reverse proxy servers etc respect this cookie for "
4753
+ "proper operation."
4754
+ msgstr ""
4755
+ "Selbst das Aktivieren einer einzelnen Benutzeragentengruppe setzt ein Cookie "
4756
+ "namens „w3tc_referrer“. Es wird verwendet, um eine konsistente "
4757
+ "Benutzererfahrung über Seitenaufrufe hinweg sicherzustellen. Stellen Sie "
4758
+ "sicher, dass alle Reverse-Proxy-Server usw. dieses Cookie für einen "
4759
+ "ordnungsgemäßen Betrieb respektieren."
4760
+
4761
+ #: inc/options/dbcache.php:57
4762
+ msgid ""
4763
+ "Enabling this option is recommended to maintain default WordPress behavior."
4764
+ msgstr ""
4765
+ "Es wird empfohlen, diese Option zu aktivieren, um das standardmäßige "
4766
+ "WordPress-Verhalten beizubehalten."
4767
+
4768
+ #. translators: 1 opening HTML em tag, 2 closing HTML em tag.
4769
+ #: inc/options/objectcache.php:118
4770
+ msgid ""
4771
+ "Enabling this option will increase load on server on certain actions but "
4772
+ "will guarantee that the Object Cache is always clean and contains latest "
4773
+ "changes. %1$sEnable if you are experiencing issues with options displaying "
4774
+ "wrong value/state (checkboxes etc).%2$2"
4775
+ msgstr ""
4776
+ "Das Aktivieren dieser Option erhöht die Belastung des Servers bei bestimmten "
4777
+ "Aktionen, garantiert jedoch, dass der Objektcache immer sauber ist und die "
4778
+ "neuesten Änderungen enthält. %1$sAktivieren Sie diese Option, wenn Sie "
4779
+ "Probleme mit Optionen haben, die einen falschen Wert/Status anzeigen "
4780
+ "(Kontrollkästchen usw.).%2$2"
4781
+
4782
+ #: inc/options/objectcache.php:100
4783
+ msgid ""
4784
+ "Enabling this option will increase wp-admin performance, but may cause side-"
4785
+ "effects"
4786
+ msgstr ""
4787
+ "Das Aktivieren dieser Option erhöht die Leistung von wp-admin, kann jedoch "
4788
+ "Nebenwirkungen verursachen"
4789
+
4790
+ #: Cdn_AdminNotes.php:302
4791
+ msgid "Encountered issue with CDN: %s."
4792
+ msgstr "Aufgetretenes Problem mit CDN: %s."
4793
+
4794
+ #: Cdn_AdminNotes.php:297
4795
+ msgid ""
4796
+ "Encountered issue with CDN: %s. See %s for instructions of creating correct "
4797
+ "table."
4798
+ msgstr ""
4799
+ "Aufgetretenes Problem mit CDN: %s. Siehe %s für Anweisungen zum Erstellen "
4800
+ "der richtigen Tabelle."
4801
+
4802
+ #: Extension_CloudFlare_Page_View.php:459
4803
+ msgid ""
4804
+ "Encrypt email adresses on your web page from bots, while keeping them "
4805
+ "visible to humans. "
4806
+ msgstr ""
4807
+ "Verschlüsseln Sie E-Mail-Adressen auf Ihrer Webseite vor Bots, während sie "
4808
+ "für Menschen sichtbar bleiben."
4809
+
4810
+ #. translators: 1 HTML acronym for Content Delivery Network (CDN).
4811
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:30
4812
+ msgid ""
4813
+ "Enhance your website performance by adding StackPath's (%1$s) service to "
4814
+ "your site."
4815
+ msgstr ""
4816
+ "Verbessern Sie die Leistung Ihrer Website, indem Sie den Dienst von "
4817
+ "StackPath (%1$s) zu Ihrer Website hinzufügen."
4818
+
4819
+ #: Cdn_StackPath2_Page_View.php:25
4820
+ msgid ""
4821
+ "Enhance your website Performance with StackPath's CDN services. StackPath "
4822
+ "works magically with W3 Total Cache to speed up your site around the world "
4823
+ "for as little as $10 a month."
4824
+ msgstr ""
4825
+ "Verbessern Sie die Leistung Ihrer Website mit den CDN-Diensten von StackPath."
4826
+ " StackPath arbeitet auf magische Weise mit W3 Total Cache zusammen, um Ihre "
4827
+ "Website für nur 10 US-Dollar pro Monat weltweit zu beschleunigen."
4828
+
4829
+ #: Generic_WidgetSpreadTheWord_View.php:8
4830
+ msgid "Enjoying W3TC? Please support us!"
4831
+ msgstr "Gefällt dir W3TC? Bitte unterstützen Sie uns!"
4832
+
4833
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
4834
+ #: Cdn_Highwinds_Popup_View_ConfigureCnamesForm.php:45
4835
+ #: Cdn_RackSpaceCdn_Page_View.php:87
4836
+ #: Cdn_RackSpaceCdn_Popup_View_ConfigureDomains.php:45
4837
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:138
4838
+ msgid ""
4839
+ "Enter hostname mapped to %1$sCDN%2$s host, this value will replace your "
4840
+ "site's hostname in the %3$sHTML%4$s."
4841
+ msgstr ""
4842
+ "Geben Sie den Hostnamen ein, der dem Host %1$sCDN%2$s zugeordnet ist. Dieser "
4843
+ "Wert ersetzt den Hostnamen Ihrer Website im %3$sHTML%4$s."
4844
+
4845
+ #. translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
4846
+ #: inc/options/cdn/ftp.php:323
4847
+ msgid ""
4848
+ "Enter the hostname or %1$sCNAME%2$s(s) of your %3$sFTP%4$s server configured "
4849
+ "above, these values will replace your site's hostname in the %5$sHTML%6$s."
4850
+ msgstr ""
4851
+ "Geben Sie den Hostnamen oder %1$sCNAME%2$s(s) Ihres oben konfigurierten "
4852
+ "%3$sFTP%4$s-Servers ein. Diese Werte ersetzen den Hostnamen Ihrer Website in "
4853
+ "%5$sHTML%6$s."
4854
+
4855
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
4856
+ #: inc/options/cdn/rscf.php:131
4857
+ msgid ""
4858
+ "Enter the hostname provided by Rackspace Cloud Files, this value will "
4859
+ "replace your site's hostname in the %1$sHTML%2$s."
4860
+ msgstr ""
4861
+ "Geben Sie den von Rackspace Cloud Files bereitgestellten Hostnamen ein. "
4862
+ "Dieser Wert ersetzt den Hostnamen Ihrer Website in %1$sHTML%2$s."
4863
+
4864
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
4865
+ #: Cdn_MaxCdn_Page_View.php:268 Cdn_StackPath2_Page_View.php:300
4866
+ #: Cdn_StackPath_Page_View.php:227 inc/options/cdn/akamai.php:115
4867
+ #: inc/options/cdn/att.php:89 inc/options/cdn/cotendo.php:96
4868
+ #: inc/options/cdn/edgecast.php:89 inc/options/cdn/mirror.php:75
4869
+ msgid ""
4870
+ "Enter the hostname provided by your %1$sCDN%2$s provider, this value will "
4871
+ "replace your site's hostname in the %3$sHTML%4$s."
4872
+ msgstr ""
4873
+ "Geben Sie den von Ihrem %1$sCDN%2$s-Anbieter bereitgestellten Hostnamen ein. "
4874
+ "Dieser Wert ersetzt den Hostnamen Ihrer Website im %3$sHTML%4$s."
4875
+
4876
+ #: UsageStatistics_Page_View.php:36
4877
+ msgid "Entries: "
4878
+ msgstr "Einträge:"
4879
+
4880
+ #: Cli.php:40
4881
+ msgid "Environment adjusted."
4882
+ msgstr "Umgebung angepasst."
4883
+
4884
+ #: Cli.php:36
4885
+ msgid "Environment adjustment failed with error"
4886
+ msgstr "Umgebungsanpassung mit Fehler fehlgeschlagen"
4887
+
4888
+ #: Extension_ImageService_Plugin_Admin.php:552
4889
+ msgid "Error"
4890
+ msgstr "Fehler"
4891
+
4892
+ #: Root_AdminActivation.php:108
4893
+ msgid "error"
4894
+ msgstr "Error"
4895
+
4896
+ #: Cdnfsd_TransparentCDN_Page.php:35
4897
+ msgid "Error. Check your parameters and try again or contact with support."
4898
+ msgstr ""
4899
+ "Fehler. Überprüfen Sie Ihre Parameter und versuchen Sie es erneut oder "
4900
+ "wenden Sie sich an den Support."
4901
+
4902
+ #: inc/lightbox/self_test.php:491
4903
+ msgid "Error:"
4904
+ msgstr "Fehler:"
4905
+
4906
+ #: Cdn_AdminActions.php:433 Cdn_AdminActions.php:437 Cdn_AdminActions.php:480
4907
+ msgid "Error: %s"
4908
+ msgstr "Fehler: %s"
4909
+
4910
+ #: Extension_ImageService_Api.php:192
4911
+ msgid "Error: Received a non-200 response code: "
4912
+ msgstr "Fehler: Antwortcode ungleich 200 erhalten:"
4913
+
4914
+ #: CdnEngine_S3.php:38
4915
+ msgid "Europe (Frankfurt)"
4916
+ msgstr "Europa (Frankfurt)"
4917
+
4918
+ #: CdnEngine_S3.php:41
4919
+ msgid "Europe (Ireland)"
4920
+ msgstr "Europa (Irland)"
4921
+
4922
+ #: CdnEngine_S3.php:42
4923
+ msgid "Europe (London)"
4924
+ msgstr "Europa (London)"
4925
+
4926
+ #: CdnEngine_S3.php:40
4927
+ msgid "Europe (Milan)"
4928
+ msgstr "Europa (Mailand)"
4929
+
4930
+ #: CdnEngine_S3.php:43
4931
+ msgid "Europe (Paris)"
4932
+ msgstr "Europa (Paris)"
4933
+
4934
+ #: CdnEngine_S3.php:39
4935
+ msgid "Europe (Stockholm)"
4936
+ msgstr "Europa (Stockholm)"
4937
+
4938
+ #. translators: 1 opening HTML a tag to FeedBurner wiki, 2 closing HTML a tag.
4939
+ #: inc/options/pgcache.php:83
4940
+ msgid ""
4941
+ "Even if using a feed proxy service (like %1$sFeedBurner%2$s), enabling this "
4942
+ "option is still recommended."
4943
+ msgstr ""
4944
+ "Auch bei Verwendung eines Feed-Proxy-Dienstes (wie %1$sFeedBurner%2$s) wird "
4945
+ "die Aktivierung dieser Option dennoch empfohlen."
4946
+
4947
+ #: Extension_ImageService_Cron.php:41
4948
+ msgid "Every Ten Seconds"
4949
+ msgstr "Alle zehn Sekunden"
4950
+
4951
+ #: Cli.php:85
4952
+ msgid "Everything flushed successfully."
4953
+ msgstr "Alles erfolgreich gespült."
4954
+
4955
+ #: UsageStatistics_Page_View.php:411 UsageStatistics_Page_View.php:440
4956
+ msgid "Evictions/sec: "
4957
+ msgstr "Räumungen/Sek.:"
4958
+
4959
+ #: UsageStatistics_Page_View.php:466
4960
+ msgid "Evictions: "
4961
+ msgstr "Zwangsräumungen:"
4962
+
4963
+ #: UsageStatistics_Page_View_Ad.php:8
4964
+ msgid "Examine the overall performance of caching method backends"
4965
+ msgstr "Untersuchen Sie die Gesamtleistung von Caching-Methoden-Back-Ends"
4966
+
4967
+ #: extension-example/Extension_Example_Page_View.php:13
4968
+ msgid "Example extension is currently "
4969
+ msgstr "Beispielerweiterung ist derzeit"
4970
+
4971
+ #: Extension_CloudFlare_Page_View.php:146
4972
+ msgid "Exclude minified JS files from being processed by Rocket Loader:"
4973
+ msgstr ""
4974
+ "Minimierte JS-Dateien von der Verarbeitung durch Rocket Loader ausschließen:"
4975
+
4976
+ #: Extension_Genesis_Page_View.php:168
4977
+ msgid "Exclude pages:"
4978
+ msgstr "Seiten ausschließen:"
4979
+
4980
+ #: UserExperience_LazyLoad_Page_View.php:69
4981
+ msgid "Exclude tags containing words"
4982
+ msgstr "Schließen Sie Tags aus, die Wörter enthalten"
4983
+
4984
+ #: UserExperience_LazyLoad_Page_View.php:67
4985
+ msgid "Exclude words:"
4986
+ msgstr "Wörter ausschließen:"
4987
+
4988
+ #: Extension_Genesis_Page_View.php:125
4989
+ msgid "Excluded single pages / posts:"
4990
+ msgstr "Ausgeschlossene Einzelseiten / Beiträge:"
4991
+
4992
+ #: Extension_Genesis_Page_View.php:99
4993
+ msgid "Excluded terms pages / posts:"
4994
+ msgstr "Ausgeschlossene Begriffsseiten / Beiträge:"
4995
+
4996
+ #: Extension_CloudFlare_Page_View.php:148
4997
+ msgid "Exclusion achieved by adding data-cfasync=\"false\" to script tags."
4998
+ msgstr ""
4999
+ "Ausschluss durch Hinzufügen von data-cfasync=\"false\" zu Skript-Tags "
5000
+ "erreicht."
5001
+
5002
+ #: Extension_Genesis_Page_View.php:15 Extension_Genesis_Page_View.php:212
5003
+ msgid "Exclusions"
5004
+ msgstr "Ausschlüsse"
5005
+
5006
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:32
5007
+ #: Cdn_StackPath_Widget_View_Unauthorized.php:24
5008
+ msgid "Exclusive offers availabel for W3TC users!"
5009
+ msgstr "Exklusive Angebote für W3TC-Benutzer verfügbar!"
5010
+
5011
+ #: Util_Activation.php:185
5012
+ msgid "Execute next commands in a shell:"
5013
+ msgstr "Führen Sie die nächsten Befehle in einer Shell aus:"
5014
+
5015
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
5016
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:39
5017
+ msgid "Existing MaxCDN customers, enable %1$sCDN%2$s and:"
5018
+ msgstr "Bestehende MaxCDN-Kunden aktivieren %1$sCDN%2$s und:"
5019
+
5020
+ #: inc/popup/pagespeed_results.php:15
5021
+ msgid "Expand all"
5022
+ msgstr "Alle erweitern"
5023
+
5024
+ #: BrowserCache_ConfigLabels.php:13 BrowserCache_ConfigLabels.php:24
5025
+ #: BrowserCache_ConfigLabels.php:33
5026
+ msgid "Expires header lifetime:"
5027
+ msgstr "Läuft Header-Lebensdauer ab:"
5028
+
5029
+ #: Cdn_ConfigLabels.php:23
5030
+ msgid "Export changed files automatically"
5031
+ msgstr "Geänderte Dateien automatisch exportieren"
5032
+
5033
+ #: inc/options/general.php:1056
5034
+ msgid "Export configuration:"
5035
+ msgstr "Konfiguration exportieren:"
5036
+
5037
+ #: Cdn_AdminNotes.php:100
5038
+ msgid "export the media library"
5039
+ msgstr "Exportieren Sie die Medienbibliothek"
5040
+
5041
+ #: inc/options/browsercache.php:509 inc/options/pgcache.php:278
5042
+ #: inc/options/pgcache.php:814
5043
+ msgid "Extensible Markup Language"
5044
+ msgstr "Erweiterbare Auszeichnungssprache"
5045
+
5046
+ #: inc/options/common/header.php:212 inc/options/common/header.php:331
5047
+ #: inc/options/minify.php:171
5048
+ msgid "eXtensible Markup Language"
5049
+ msgstr "erweiterbare Auszeichnungssprache"
5050
+
5051
+ #: inc/options/extensions/list.php:64 inc/options/extensions/list.php:69
5052
+ msgid "Extension"
5053
+ msgstr "Verlängerung"
5054
+
5055
+ #: Extensions_AdminActions.php:17
5056
+ msgid "Extension <strong>%s</strong> has been successfully activated."
5057
+ msgstr "Erweiterung <strong>%s</strong> wurde erfolgreich aktiviert."
5058
+
5059
+ #: FeatureShowcase_Plugin_Admin.php:300
5060
+ msgid "Extension Framework"
5061
+ msgstr "Erweiterungsframework"
5062
+
5063
+ #: Generic_WidgetCommunity_View.php:23
5064
+ msgid "Extension Support"
5065
+ msgstr "Erweiterungsunterstützung"
5066
+
5067
+ #: extension-example/Extension_Example_Page_View.php:11
5068
+ #: Extensions_Plugin_Admin.php:76 Extensions_Plugin_Admin.php:77
5069
+ #: Extension_CloudFlare_Page_View.php:11 Extension_FeedBurner_Page_View.php:11
5070
+ #: Extension_FragmentCache_Page_View.php:14 Extension_Genesis_Page_View.php:11
5071
+ #: Extension_NewRelic_Page_View_Apm.php:12 Extension_Swarmify_Page_View.php:11
5072
+ #: FeatureShowcase_Plugin_Admin.php:456
5073
+ msgid "Extensions"
5074
+ msgstr "Erweiterungen"
5075
+
5076
+ #: BrowserCache_ConfigLabels.php:55
5077
+ msgid "Extra Parameters:"
5078
+ msgstr "Zusätzliche Parameter:"
5079
+
5080
+ #: ConfigDbStorage.php:243
5081
+ msgid "Failed to connect to mysql server"
5082
+ msgstr "Verbindung zum MySQL-Server konnte nicht hergestellt werden"
5083
+
5084
+ #: UsageStatistics_Plugin_Admin.php:127
5085
+ msgid "Failed to open file"
5086
+ msgstr "Datei konnte nicht geöffnet werden"
5087
+
5088
+ #: CdnEngine_Mirror_Highwinds.php:79 CdnEngine_Mirror_LimeLight.php:125
5089
+ msgid "Failed to purge all: "
5090
+ msgstr "Fehler beim Löschen aller:"
5091
+
5092
+ #: Extension_CloudFlare_AdminActions.php:24
5093
+ msgid "Failed to purge CloudFlare cache: "
5094
+ msgstr "Löschen des CloudFlare-Cache fehlgeschlagen:"
5095
+
5096
+ #: CdnEngine_Mirror_Highwinds.php:53 CdnEngine_Mirror_LimeLight.php:79
5097
+ #: CdnEngine_Mirror_RackSpaceCdn.php:122
5098
+ msgid "Failed to purge: "
5099
+ msgstr "Löschen fehlgeschlagen:"
5100
+
5101
+ #: Extension_ImageService_Plugin_Admin.php:553
5102
+ msgid "Failed to retrieve a response. Please reload the page to try again."
5103
+ msgstr ""
5104
+ "Antwort konnte nicht abgerufen werden. Bitte laden Sie die Seite neu, um es "
5105
+ "erneut zu versuchen."
5106
+
5107
+ #: ConfigDbStorage.php:259
5108
+ msgid "Failed to select database"
5109
+ msgstr "Datenbank konnte nicht ausgewählt werden"
5110
+
5111
+ #: Extension_CloudFlare_AdminActions.php:72
5112
+ msgid "Failed to update CloudFlare settings:"
5113
+ msgstr "Fehler beim Aktualisieren der CloudFlare-Einstellungen:"
5114
+
5115
+ #: CdnEngine_Mirror_MaxCdn.php:92 CdnEngine_Mirror_MaxCdn.php:161
5116
+ msgid "Failed with error code "
5117
+ msgstr "Fehlgeschlagen mit Fehlercode"
5118
+
5119
+ #: CdnEngine_Mirror_MaxCdn.php:90
5120
+ msgid ""
5121
+ "Failed with error code %s Please check your alias, consumer key, and private "
5122
+ "key."
5123
+ msgstr ""
5124
+ "Fehlgeschlagen mit Fehlercode %s Bitte überprüfen Sie Ihren Alias, "
5125
+ "Verbraucherschlüssel und privaten Schlüssel."
5126
+
5127
+ #: CdnEngine_Mirror_MaxCdn.php:159
5128
+ msgid ""
5129
+ "Failed with error code %s. Please check your alias, consumer key, and "
5130
+ "private key."
5131
+ msgstr ""
5132
+ "Fehlgeschlagen mit Fehlercode %s. Bitte überprüfen Sie Ihren Alias, "
5133
+ "Verbraucherschlüssel und privaten Schlüssel."
5134
+
5135
+ #: CdnEngine_Mirror_MaxCdn.php:96 CdnEngine_Mirror_MaxCdn.php:166
5136
+ #: CdnEngine_Mirror_StackPath.php:68 CdnEngine_Mirror_StackPath.php:108
5137
+ #: CdnEngine_Mirror_StackPath2.php:54 CdnEngine_Mirror_StackPath2.php:87
5138
+ msgid "Failure to pull zone: "
5139
+ msgstr "Fehler beim Ziehen der Zone:"
5140
+
5141
+ #. translators: 1 enable button link.
5142
+ #: Generic_Plugin_Admin.php:688
5143
+ msgid ""
5144
+ "Fancy permalinks are disabled. Please %1$s it first, then re-attempt to "
5145
+ "enabling enhanced disk mode."
5146
+ msgstr ""
5147
+ "Ausgefallene Permalinks sind deaktiviert. Bitte %1$s es zuerst und versuche "
5148
+ "dann erneut, den erweiterten Festplattenmodus zu aktivieren."
5149
+
5150
+ #. translators: 1 enable button link.
5151
+ #: Generic_Plugin_Admin.php:696
5152
+ msgid ""
5153
+ "Fancy permalinks are disabled. Please %1$s it first, then re-attempt to "
5154
+ "enabling the 'Do not process 404 errors for static objects with WordPress'."
5155
+ msgstr ""
5156
+ "Ausgefallene Permalinks sind deaktiviert. Bitte %1$s es zuerst und versuche "
5157
+ "dann erneut, die Option „404-Fehler für statische Objekte nicht mit "
5158
+ "WordPress verarbeiten“ zu aktivieren."
5159
+
5160
+ #: inc/lightbox/self_test.php:500
5161
+ msgid "Fancy permalinks:"
5162
+ msgstr "Ausgefallene Permalinks:"
5163
+
5164
+ #: Generic_Plugin.php:315 Root_AdminMenu.php:106 Root_AdminMenu.php:107
5165
+ msgid "FAQ"
5166
+ msgstr "FAQ"
5167
+
5168
+ #: inc/options/minify/css.php:22
5169
+ msgid ""
5170
+ "Faster paint time is a key last step in lowering bounce rates even for "
5171
+ "repeat page views. Enable this feature to significantly enhance your "
5172
+ "website’s user experience by reducing wait times and ensuring that users can "
5173
+ "interact with your website as quickly as possible."
5174
+ msgstr ""
5175
+ "Eine schnellere Lackierzeit ist ein entscheidender letzter Schritt zur "
5176
+ "Senkung der Absprungraten, selbst bei wiederholten Seitenaufrufen. "
5177
+ "Aktivieren Sie diese Funktion, um die Benutzererfahrung Ihrer Website "
5178
+ "erheblich zu verbessern, indem Sie Wartezeiten verkürzen und sicherstellen, "
5179
+ "dass Benutzer so schnell wie möglich mit Ihrer Website interagieren können."
5180
+
5181
+ #: Generic_Plugin.php:286 Root_AdminMenu.php:49 Root_AdminMenu.php:50
5182
+ msgid "Feature Showcase"
5183
+ msgstr "Feature-Showcase"
5184
+
5185
+ #: BrowserCache_Page_View_SectionSecurity.php:794
5186
+ msgid "Feature-Policy"
5187
+ msgstr "Feature-Richtlinie"
5188
+
5189
+ #: Extension_FeedBurner_Page_View.php:15
5190
+ msgid "FeedBurner extension is currently"
5191
+ msgstr "FeedBurner-Erweiterung ist derzeit"
5192
+
5193
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:74
5194
+ #: Cdn_StackPath_Widget_View_Authorized.php:63 SetupGuide_Plugin_Admin.php:1261
5195
+ msgid "File"
5196
+ msgstr "Datei"
5197
+
5198
+ #. translators: 1: Image filepath.
5199
+ #: Extension_ImageService_Plugin_Admin.php:1185
5200
+ msgid "File \"%1$s\" does not exist."
5201
+ msgstr "Datei „%1$s“ existiert nicht."
5202
+
5203
+ #: Cdn_AdminActions.php:40
5204
+ msgid "File successfully deleted from the queue."
5205
+ msgstr "Datei erfolgreich aus der Warteschlange gelöscht."
5206
+
5207
+ #: Generic_Plugin_Admin.php:725 Generic_Plugin_Admin.php:734
5208
+ #: Generic_Plugin_Admin.php:743 inc/lightbox/self_test.php:120
5209
+ #: inc/lightbox/self_test.php:336 inc/options/cdn/ftp.php:19
5210
+ #: inc/options/cdn/ftp.php:42 inc/options/cdn/ftp.php:70
5211
+ #: inc/options/cdn/ftp.php:101 inc/options/cdn/ftp.php:129
5212
+ #: inc/options/cdn/ftp.php:157 inc/options/cdn/ftp.php:329
5213
+ #: inc/options/install.php:154 inc/options/install.php:156
5214
+ msgid "File Transfer Protocol"
5215
+ msgstr "Dateiübertragungsprotokoll"
5216
+
5217
+ #: Cdn_ConfigLabels.php:29
5218
+ msgid "File types to import:"
5219
+ msgstr "Zu importierende Dateitypen:"
5220
+
5221
+ #: inc/lightbox/minify_recommendations.php:35
5222
+ #: inc/lightbox/minify_recommendations.php:93 inc/options/minify.php:490
5223
+ #: inc/options/minify.php:753
5224
+ msgid "File URI:"
5225
+ msgstr "Datei-URI:"
5226
+
5227
+ #: Generic_Plugin_Admin.php:893
5228
+ msgid ""
5229
+ "Files and directories could not be automatically created to complete the "
5230
+ "installation."
5231
+ msgstr ""
5232
+ "Dateien und Verzeichnisse konnten nicht automatisch erstellt werden, um die "
5233
+ "Installation abzuschließen."
5234
+
5235
+ #: inc/options/minify.php:473
5236
+ msgid ""
5237
+ "Files are minified by template. First select the theme to manage, then add "
5238
+ "scripts used in all templates to the \"All Templates\" group. Use the menu "
5239
+ "above to manage scripts unique to a specific template. If necessary drag "
5240
+ "&amp; drop to resolve dependency issues (due to incorrect order)."
5241
+ msgstr ""
5242
+ "Dateien werden nach Vorlage minimiert. Wählen Sie zuerst das zu verwaltende "
5243
+ "Thema aus und fügen Sie dann Skripte, die in allen Vorlagen verwendet werden,"
5244
+ " zur Gruppe „Alle Vorlagen“ hinzu. Verwenden Sie das obige Menü, um Skripte "
5245
+ "zu verwalten, die nur für eine bestimmte Vorlage gelten. Bei Bedarf Drag "
5246
+ "&amp; Drop, um Abhängigkeitsprobleme zu lösen (aufgrund falscher Reihenfolge)"
5247
+ "."
5248
+
5249
+ #: inc/options/minify.php:736
5250
+ msgid ""
5251
+ "Files are minified by template. First select the theme to manage, then add "
5252
+ "style sheets used in all templates to the \"All Templates\" group. Use the "
5253
+ "menu above to manage style sheets unique to a specific template. If "
5254
+ "necessary drag &amp; drop to resolve dependency issues (due to incorrect "
5255
+ "order)."
5256
+ msgstr ""
5257
+ "Dateien werden nach Vorlage minimiert. Wählen Sie zuerst das zu verwaltende "
5258
+ "Design aus und fügen Sie dann Stylesheets, die in allen Vorlagen verwendet "
5259
+ "werden, zur Gruppe „Alle Vorlagen“ hinzu. Verwenden Sie das obige Menü, um "
5260
+ "Stylesheets zu verwalten, die nur für eine bestimmte Vorlage gelten. Bei "
5261
+ "Bedarf Drag &amp; Drop, um Abhängigkeitsprobleme zu lösen (aufgrund falscher "
5262
+ "Reihenfolge)."
5263
+
5264
+ #: Cli.php:366
5265
+ msgid "Files did not successfully purge with error %s"
5266
+ msgstr "Dateien wurden mit Fehler %s nicht erfolgreich gelöscht"
5267
+
5268
+ #: Cli.php:368
5269
+ msgid "Files purged successfully."
5270
+ msgstr "Dateien erfolgreich gelöscht."
5271
+
5272
+ #: inc/popup/cdn_purge.php:58
5273
+ msgid "Files to purge:"
5274
+ msgstr "Zu löschende Dateien:"
5275
+
5276
+ #: UsageStatistics_Page_View.php:223
5277
+ msgid "Files: "
5278
+ msgstr "Dateien:"
5279
+
5280
+ #: inc/options/general.php:890
5281
+ msgid "Fix document root path"
5282
+ msgstr "Korrigieren Sie den Stammpfad des Dokuments"
5283
+
5284
+ #. translators: 1: WordPress ABSPATH value, 2: Server document root value.
5285
+ #: inc/options/general.php:894
5286
+ msgid ""
5287
+ "Fix incorrect server document root path. Uses the WordPress ABSPATH "
5288
+ "(\"%1$s\") in place of the current server document root (\"%2$s\")."
5289
+ msgstr ""
5290
+ "Korrigieren Sie den falschen Stammpfad des Serverdokuments. Verwendet den "
5291
+ "WordPress ABSPATH (\"%1$s\") anstelle des aktuellen Server-"
5292
+ "Dokumentstammverzeichnisses (\"%2$s\")."
5293
+
5294
+ #: Extension_CloudFlare_Page_View.php:734
5295
+ msgid "Flexible (HTTPS to end-user only)"
5296
+ msgstr "Flexibel (HTTPS nur für Endbenutzer)"
5297
+
5298
+ #: ObjectCache_ConfigLabels.php:14
5299
+ msgid "Flush all cache on post, comment etc changes."
5300
+ msgstr ""
5301
+ "Leeren Sie den gesamten Cache bei Änderungen an Beiträgen, Kommentaren usw."
5302
+
5303
+ #: Extension_CloudFlare_GeneralPage_View.php:30
5304
+ msgid "Flush CloudFlare on Post Modifications"
5305
+ msgstr "Löschen Sie CloudFlare bei Post-Modifikationen"
5306
+
5307
+ #: Extension_CloudFlare_Page_View.php:137
5308
+ msgid "Flush CloudFlare on Post Modifications:"
5309
+ msgstr "Löschen Sie CloudFlare bei Post-Modifikationen:"
5310
+
5311
+ #: Extension_Genesis_Page_View.php:108
5312
+ msgid "Flush posts loop:"
5313
+ msgstr "Flush-Posts-Schleife:"
5314
+
5315
+ #: Extension_Genesis_Page_View.php:109
5316
+ msgid ""
5317
+ "Flushes the posts loop cache on post updates. See setting above for affected "
5318
+ "loops."
5319
+ msgstr ""
5320
+ "Leert den Posts-Loop-Cache bei Post-Updates. Siehe Einstellung oben für "
5321
+ "betroffene Loops."
5322
+
5323
+ #: UsageStatistics_Page_View.php:271
5324
+ msgid "Flushes/period: "
5325
+ msgstr "Spülungen/Periode:"
5326
+
5327
+ #: Cli.php:83
5328
+ msgid "Flushing all failed."
5329
+ msgstr "Spülen alles fehlgeschlagen."
5330
+
5331
+ #: Cli.php:93
5332
+ msgid "Flushing posts/pages failed."
5333
+ msgstr "Löschen von Beiträgen/Seiten fehlgeschlagen."
5334
+
5335
+ #: Cli.php:105
5336
+ msgid "Flushing the DB cache failed."
5337
+ msgstr "Das Leeren des DB-Cache ist fehlgeschlagen."
5338
+
5339
+ #: Cli.php:116
5340
+ msgid "Flushing the minify cache failed."
5341
+ msgstr "Das Leeren des Minify-Cache ist fehlgeschlagen."
5342
+
5343
+ #: Cli.php:127
5344
+ msgid "Flushing the object cache failed."
5345
+ msgstr "Das Leeren des Objektcaches ist fehlgeschlagen."
5346
+
5347
+ #: Cli.php:162
5348
+ msgid "Flushing the page cache failed."
5349
+ msgstr "Das Leeren des Seitencaches ist fehlgeschlagen."
5350
+
5351
+ #: Cli.php:139 Cli.php:151
5352
+ msgid "Flushing the page from cache failed."
5353
+ msgstr "Das Leeren der Seite aus dem Cache ist fehlgeschlagen."
5354
+
5355
+ #: Cdn_GoogleDrive_Page_View.php:26
5356
+ #: Cdn_GoogleDrive_Popup_AuthReturn_View.php:29
5357
+ msgid "Folder:"
5358
+ msgstr "Mappe:"
5359
+
5360
+ #: BrowserCache_ConfigLabels.php:64
5361
+ msgid "font-src:"
5362
+ msgstr "font-src:"
5363
+
5364
+ #: Extension_Genesis_Page_View.php:177 Extension_Genesis_Page_View.php:222
5365
+ msgid "Footer"
5366
+ msgstr "Fusszeile"
5367
+
5368
+ #: inc/options/minify.php:822
5369
+ msgid ""
5370
+ "For better performance, send files to browser before they are requested when "
5371
+ "using the %1$sHTTP%2$s/2 protocol."
5372
+ msgstr ""
5373
+ "Senden Sie für eine bessere Leistung Dateien an den Browser, bevor sie "
5374
+ "angefordert werden, wenn Sie das %1$sHTTP%2$s/2-Protokoll verwenden."
5375
+
5376
+ #: inc/options/minify.php:565
5377
+ msgid ""
5378
+ "For better performance, send files to browser before they are requested when "
5379
+ "using the <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym>/2 "
5380
+ "protocol."
5381
+ msgstr ""
5382
+ "Senden Sie für eine bessere Leistung Dateien an den Browser, bevor sie "
5383
+ "angefordert werden, wenn Sie das <acronym title=\"Hypertext Transfer "
5384
+ "Protocol\">HTTP</acronym> /2-Protokoll verwenden."
5385
+
5386
+ #. translators: 1 opening HTML a tag to W3TC admin support page, 2 closing HTML a tag.
5387
+ #: Cdnfsd_GeneralPage_View.php:81
5388
+ msgid ""
5389
+ "For even better performance, combine FSD with other powerful features like "
5390
+ "Browser Cache, Minify, Fragment caching, or Lazy Load! Did you know that we "
5391
+ "offer premium support, customization and audit services? %1$sClick here for "
5392
+ "more information%2$s."
5393
+ msgstr ""
5394
+ "Kombinieren Sie für eine noch bessere Leistung FSD mit anderen "
5395
+ "leistungsstarken Funktionen wie Browser-Cache, Minify, Fragment-Caching oder "
5396
+ "Lazy Load! Wussten Sie, dass wir Premium-Support, Anpassungs- und Audit-"
5397
+ "Services anbieten? %1$sKlicken Sie hier für weitere Informationen%2$s."
5398
+
5399
+ #: inc/options/pgcache.php:64
5400
+ msgid ""
5401
+ "For many blogs this is your most visited page, it is recommended that you "
5402
+ "cache it."
5403
+ msgstr ""
5404
+ "Für viele Blogs ist dies Ihre meistbesuchte Seite, es wird empfohlen, sie "
5405
+ "zwischenzuspeichern."
5406
+
5407
+ #: Cdn_ConfigLabels.php:16
5408
+ msgid "Force over-writing of existing files"
5409
+ msgstr "Überschreiben vorhandener Dateien erzwingen"
5410
+
5411
+ #: BrowserCache_ConfigLabels.php:71
5412
+ msgid "form-action:"
5413
+ msgstr "Form-Aktion:"
5414
+
5415
+ #: UsageStatistics_GeneralPage_View.php:96
5416
+ msgid "Format of your access log from webserver configuration."
5417
+ msgstr "Format Ihres Zugriffsprotokolls aus der Webserver-Konfiguration."
5418
+
5419
+ #: inc/email/support_request.php:26
5420
+ msgid "Forum Topic URL: "
5421
+ msgstr "URL des Forumsthemas:"
5422
+
5423
+ #: Cdnfsd_CloudFront_Popup_View_Distribution.php:59
5424
+ msgid "Forward Cookies:"
5425
+ msgstr "Weiterleitungs-Cookies:"
5426
+
5427
+ #: Cdnfsd_CloudFront_Popup_View_Distribution.php:67
5428
+ msgid "Forward Host Header:"
5429
+ msgstr "Host-Header weiterleiten:"
5430
+
5431
+ #: Cdnfsd_CloudFront_Popup_View_Distribution.php:63
5432
+ msgid "Forward Query String:"
5433
+ msgstr "Abfragezeichenfolge weiterleiten:"
5434
+
5435
+ #: Extension_FragmentCache_Plugin_Admin.php:101
5436
+ #: Extension_FragmentCache_Plugin_Admin.php:103
5437
+ #: Extension_FragmentCache_Plugin_Admin.php:161
5438
+ #: Extension_FragmentCache_Plugin_Admin.php:169
5439
+ #: FeatureShowcase_Plugin_Admin.php:312 inc/options/common/header.php:80
5440
+ #: inc/options/general.php:946
5441
+ msgid "Fragment Cache"
5442
+ msgstr "Fragment-Cache"
5443
+
5444
+ #: Extension_FragmentCache_GeneralPage_View.php:17
5445
+ msgid "Fragment Cache Method:"
5446
+ msgstr "Fragment-Cache-Methode:"
5447
+
5448
+ #: Generic_Plugin_Admin.php:791
5449
+ msgid "Fragment cache successfully emptied."
5450
+ msgstr "Fragmentcache erfolgreich geleert."
5451
+
5452
+ #: UsageStatistics_Page_View.php:293
5453
+ msgid "Fragment Cache:"
5454
+ msgstr "Fragment-Cache:"
5455
+
5456
+ #: Extension_FragmentCache_Plugin_Admin.php:118
5457
+ msgid "Fragment Cache: All Fragments"
5458
+ msgstr "Fragment-Cache: Alle Fragmente"
5459
+
5460
+ #: Generic_WidgetCommunity_View.php:21
5461
+ msgid "Fragment Caching"
5462
+ msgstr "Fragment-Caching"
5463
+
5464
+ #: Extension_FragmentCache_Page_View.php:21
5465
+ msgid "Fragment caching"
5466
+ msgstr "Fragment-Caching"
5467
+
5468
+ #: Extension_FragmentCache_WpObjectCache.php:534
5469
+ msgid "Fragment Caching %d/%d fragments using %s%s"
5470
+ msgstr "Fragment Caching von %d/%d Fragmenten mit %s%s"
5471
+
5472
+ #: Extension_FragmentCache_Plugin_Admin.php:26
5473
+ msgid ""
5474
+ "Fragment caching extends the core functionality of WordPress by enabling "
5475
+ "caching policies to be set on groups of objects that are cached. This allows "
5476
+ "you to optimize various elements in themes and plugins to use caching to "
5477
+ "save resources and reduce response times. You can also use caching methods "
5478
+ "like Memcached or Redis (for example) to scale. Instructions for use are "
5479
+ "available in the FAQ available under the help menu. This feature also gives "
5480
+ "you control over the caching policies by the group as well as visibility "
5481
+ "into the configuration by extending the WordPress Object API with additional "
5482
+ "functionality."
5483
+ msgstr ""
5484
+ "Fragment-Caching erweitert die Kernfunktionalität von WordPress, indem "
5485
+ "Caching-Richtlinien für Gruppen von Objekten festgelegt werden können, die "
5486
+ "zwischengespeichert werden. Auf diese Weise können Sie verschiedene Elemente "
5487
+ "in Themes und Plugins optimieren, um mithilfe von Caching Ressourcen zu "
5488
+ "sparen und Antwortzeiten zu verkürzen. Sie können auch Caching-Methoden wie "
5489
+ "Memcached oder Redis (z. B.) zum Skalieren verwenden. Gebrauchsanweisungen "
5490
+ "finden Sie in den FAQ, die im Hilfemenü verfügbar sind. Diese Funktion gibt "
5491
+ "Ihnen auch die Kontrolle über die Caching-Richtlinien der Gruppe sowie "
5492
+ "Einblick in die Konfiguration, indem Sie die WordPress-Objekt-API um "
5493
+ "zusätzliche Funktionen erweitern."
5494
+
5495
+ #: Extension_FragmentCache_Plugin_Admin.php:27
5496
+ msgid ""
5497
+ "Fragment caching is a powerful, but advanced feature. If you need help, take "
5498
+ "a look at our premium support, customization and audit services."
5499
+ msgstr ""
5500
+ "Fragment-Caching ist eine leistungsstarke, aber erweiterte Funktion. Wenn "
5501
+ "Sie Hilfe benötigen, werfen Sie einen Blick auf unsere Premium-Support-, "
5502
+ "Anpassungs- und Audit-Services."
5503
+
5504
+ #: BrowserCache_ConfigLabels.php:72
5505
+ msgid "frame-ancestors:"
5506
+ msgstr "Frame-Vorfahren:"
5507
+
5508
+ #: BrowserCache_ConfigLabels.php:62
5509
+ msgid "frame-src:"
5510
+ msgstr "Frame-Quelle:"
5511
+
5512
+ #: Extension_Swarmify_Widget_View_NotConfigured.php:13
5513
+ msgid "Free 14 day limited trial"
5514
+ msgstr "Kostenlose 14-tägige eingeschränkte Testversion"
5515
+
5516
+ #: inc/options/cdn.php:567 inc/options/dbcache.php:109
5517
+ #: inc/options/install.php:83 inc/options/install.php:255
5518
+ #: inc/options/pgcache.php:691 inc/options/pgcache.php:762
5519
+ msgid "Frequently Asked Questions"
5520
+ msgstr "Häufig gestellte Fragen"
5521
+
5522
+ #: PgCache_ConfigLabels.php:23 PgCache_ConfigLabels.php:24
5523
+ msgid "Front page"
5524
+ msgstr "Titelseite"
5525
+
5526
+ #: Generic_Plugin_Admin.php:725 Generic_Plugin_Admin.php:734
5527
+ #: Generic_Plugin_Admin.php:743
5528
+ msgid "FTP"
5529
+ msgstr "FTP"
5530
+
5531
+ #: Util_WpFile.php:236
5532
+ msgid "FTP credentials don't allow to chmod "
5533
+ msgstr "FTP-Anmeldeinformationen erlauben kein chmod"
5534
+
5535
+ #: Util_WpFile.php:270
5536
+ msgid "FTP credentials don't allow to delete "
5537
+ msgstr "FTP-Anmeldeinformationen erlauben kein Löschen"
5538
+
5539
+ #: Util_WpFile.php:206
5540
+ msgid "FTP credentials don't allow to delete folder "
5541
+ msgstr "FTP-Anmeldeinformationen erlauben nicht, Ordner zu löschen"
5542
+
5543
+ #: inc/options/cdn/ftp.php:86
5544
+ msgid "FTP over SSH (SFTP)"
5545
+ msgstr "FTP über SSH (SFTP)"
5546
+
5547
+ #: Extension_CloudFlare_Page_View.php:735
5548
+ msgid "Full (https everywhere)"
5549
+ msgstr "Vollständig (https überall)"
5550
+
5551
+ #: Cdnfsd_GeneralPage_View.php:61 Cdnfsd_GeneralPage_View.php:109
5552
+ #: Generic_WidgetCommunity_View.php:22
5553
+ msgid "Full Site Delivery"
5554
+ msgstr "Vollständige Site-Bereitstellung"
5555
+
5556
+ #: FeatureShowcase_Plugin_Admin.php:276
5557
+ msgid "Full Site Delivery via CDN"
5558
+ msgstr "Vollständige Site-Bereitstellung über CDN"
5559
+
5560
+ #: DbCache_ConfigLabels.php:12 Extension_FragmentCache_Page_View.php:106
5561
+ #: Minify_ConfigLabels.php:32 ObjectCache_ConfigLabels.php:11
5562
+ #: PgCache_ConfigLabels.php:44
5563
+ msgid "Garbage collection interval:"
5564
+ msgstr "Garbage-Collection-Intervall:"
5565
+
5566
+ #: Extension_CloudFlare_Page_View.php:13 Extension_CloudFlare_Page_View.php:87
5567
+ #: inc/options/browsercache.php:79 inc/options/cdn.php:23
5568
+ #: inc/options/cdn.php:125 inc/options/common/header.php:53
5569
+ #: inc/options/common/header.php:184 inc/options/common/header.php:199
5570
+ #: inc/options/common/header.php:274 inc/options/common/header.php:295
5571
+ #: inc/options/dbcache.php:52 inc/options/general.php:32
5572
+ #: inc/options/minify.php:94 inc/options/pgcache.php:59
5573
+ msgid "General"
5574
+ msgstr "Allgemein"
5575
+
5576
+ #: Generic_Plugin.php:296 Root_AdminMenu.php:55 Root_AdminMenu.php:56
5577
+ msgid "General Settings"
5578
+ msgstr "Allgemeine Einstellungen"
5579
+
5580
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
5581
+ #: inc/options/browsercache.php:329
5582
+ msgid ""
5583
+ "Generate unique %1$sURI%2$s for each file protected from caching by browser."
5584
+ msgstr ""
5585
+ "Generieren Sie eindeutige %1$sURI%2$s für jede Datei, die vor dem Caching "
5586
+ "durch den Browser geschützt ist."
5587
+
5588
+ #: Cdn_Plugin_Admin.php:190
5589
+ msgid "Generic Mirror"
5590
+ msgstr "Generischer Spiegel"
5591
+
5592
+ #: Extension_Genesis_Page_View.php:18
5593
+ msgid "Genesis extension is currently "
5594
+ msgstr "Genesis-Erweiterung ist derzeit"
5595
+
5596
+ #: inc/options/minify.php:64
5597
+ msgid "Get minify hints using the"
5598
+ msgstr "Erhalten Sie Hinweise zum Minimieren mit der"
5599
+
5600
+ #: UsageStatistics_Page_View.php:259
5601
+ msgid "Gets/period: "
5602
+ msgstr "Gets/Periode:"
5603
+
5604
+ #: ObjectCache_ConfigLabels.php:12
5605
+ msgid "Global groups:"
5606
+ msgstr "Globale Gruppen:"
5607
+
5608
+ #: inc/lightbox/upgrade.php:23 inc/lightbox/upgrade.php:29
5609
+ msgid "Go Faster With Pro"
5610
+ msgstr "Gehen Sie schneller mit Pro"
5611
+
5612
+ #: inc/options/general.php:296
5613
+ msgid "Google Closure Compiler (Local Java)"
5614
+ msgstr "Google Closure Compiler (lokales Java)"
5615
+
5616
+ #: inc/options/general.php:295
5617
+ msgid "Google Closure Compiler (Web Service)"
5618
+ msgstr "Google Closure Compiler (Webdienst)"
5619
+
5620
+ #: Cdn_Plugin_Admin.php:237
5621
+ msgid "Google Drive"
5622
+ msgstr "Google Drive"
5623
+
5624
+ #: Extension_FeedBurner_Page_View.php:26
5625
+ msgid "Google FeedBurner"
5626
+ msgstr "Google-FeedBurner"
5627
+
5628
+ #: UserExperience_LazyLoad_Page_View.php:113
5629
+ msgid "Google Maps"
5630
+ msgstr "Google Maps"
5631
+
5632
+ #: CacheGroups_Plugin_Admin_View.php:54 CacheGroups_Plugin_Admin_View.php:178
5633
+ #: CacheGroups_Plugin_Admin_View.php:256
5634
+ msgid "Group name:"
5635
+ msgstr "Gruppenname:"
5636
+
5637
+ #: inc/options/objectcache.php:85
5638
+ msgid "Groups shared amongst sites in network mode."
5639
+ msgstr "Von Sites im Netzwerkmodus gemeinsam genutzte Gruppen."
5640
+
5641
+ #: inc/options/objectcache.php:93
5642
+ msgid "Groups that should not be cached."
5643
+ msgstr "Gruppen, die nicht zwischengespeichert werden sollen."
5644
+
5645
+ #: PgCache_ConfigLabels.php:57
5646
+ msgid ""
5647
+ "Handle <acronym title=\"Extensible Markup Language\">XML</acronym> mime type"
5648
+ msgstr ""
5649
+ "Behandeln Sie den <acronym title=\"Erweiterbare Auszeichnungssprache\">"
5650
+ "XML</acronym> -Mime-Typ"
5651
+
5652
+ #: Minify_HelpPopup_View.php:12
5653
+ msgid "Hang on!"
5654
+ msgstr "Abwarten!"
5655
+
5656
+ #: inc/lightbox/self_test.php:261
5657
+ msgid "Hash function:"
5658
+ msgstr "Hash-Funktion:"
5659
+
5660
+ #: Extension_Genesis_Page_View.php:12 Extension_Genesis_Page_View.php:30
5661
+ #: Extension_Genesis_Page_View.php:221
5662
+ msgid "Header"
5663
+ msgstr "Header"
5664
+
5665
+ #: inc/options/minify.php:65
5666
+ msgid "help"
5667
+ msgstr "Hilfe"
5668
+
5669
+ #: inc/options/edd/buy.php:40
5670
+ msgid "here"
5671
+ msgstr "hier"
5672
+
5673
+ #: Minify_ConfigLabels.php:69
5674
+ msgid "Hide comments"
5675
+ msgstr "Kommentare ausblenden"
5676
+
5677
+ #: Extension_Genesis_Plugin_Admin.php:130
5678
+ #: Extension_WordPressSeo_Plugin_Admin.php:93
5679
+ #: Extension_Wpml_Plugin_Admin.php:126 Util_Ui.php:103
5680
+ msgid "Hide this message"
5681
+ msgstr "Verberge diese Nachricht"
5682
+
5683
+ #: Extension_CloudFlare_Page_View.php:546
5684
+ msgid "High"
5685
+ msgstr "Hoch"
5686
+
5687
+ #: inc/options/minify/csstidy2.php:10
5688
+ msgid "High (moderate readability, smaller size)"
5689
+ msgstr "Hoch (mäßige Lesbarkeit, kleinere Größe)"
5690
+
5691
+ #: inc/options/minify/csstidy2.php:9
5692
+ msgid "Highest (no readability, smallest size)"
5693
+ msgstr "Höchste (keine Lesbarkeit, kleinste Größe)"
5694
+
5695
+ #: Cdn_Plugin_Admin.php:194
5696
+ msgid "Highwinds"
5697
+ msgstr "Starke Winde"
5698
+
5699
+ #: UsageStatistics_Page_View.php:426 UsageStatistics_Page_View.php:452
5700
+ #: UsageStatistics_Page_View.php:484 UsageStatistics_Widget_View.php:36
5701
+ msgid "Hit rate"
5702
+ msgstr "Trefferquote"
5703
+
5704
+ #: UsageStatistics_Page_View.php:265 UsageStatistics_Page_View.php:301
5705
+ #: UsageStatistics_Page_View.php:327 UsageStatistics_Page_View.php:420
5706
+ #: UsageStatistics_Page_View.php:446 UsageStatistics_Page_View.php:475
5707
+ msgid "Hit rate: "
5708
+ msgstr "Trefferquote:"
5709
+
5710
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:75
5711
+ #: Cdn_StackPath_Widget_View_Authorized.php:64
5712
+ msgid "Hits"
5713
+ msgstr "Treffer"
5714
+
5715
+ #: UsageStatistics_Page_View.php:262
5716
+ msgid "Hits/period: "
5717
+ msgstr "Treffer/Zeitraum:"
5718
+
5719
+ #: Cdn_ConfigLabels.php:11
5720
+ msgid "Host attachments"
5721
+ msgstr "Host-Anhänge"
5722
+
5723
+ #: Cdn_ConfigLabels.php:15
5724
+ msgid "Host custom files"
5725
+ msgstr "Benutzerdefinierte Dateien hosten"
5726
+
5727
+ #: Cdn_ConfigLabels.php:14
5728
+ msgid ""
5729
+ "Host minified <acronym title=\"Cascading Style Sheet\">CSS</acronym> and "
5730
+ "<acronym title=\"JavaScript\">JS</acronym> files"
5731
+ msgstr ""
5732
+ "Hosten Sie minimierte <acronym title=\"Cascading Stylesheet\">CSS-</acronym> "
5733
+ "und <acronym title=\"JavaScript\">JS</acronym> -Dateien"
5734
+
5735
+ #: inc/options/cdn/s3_compatible.php:14
5736
+ msgid "Host of API endpoint, comptabile with Amazon S3 API"
5737
+ msgstr "Host des API-Endpunkts, kompatibel mit der Amazon S3-API"
5738
+
5739
+ #: FeatureShowcase_Plugin_Admin.php:398
5740
+ msgid "Host static files with a CDN to reduce page load time."
5741
+ msgstr ""
5742
+ "Hosten Sie statische Dateien mit einem CDN, um die Ladezeit von Seiten zu "
5743
+ "verkürzen."
5744
+
5745
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
5746
+ #: Cdn_GeneralPage_View.php:41
5747
+ msgid "Host static files with your %1$sCDN%2$s to reduce page load time."
5748
+ msgstr ""
5749
+ "Hosten Sie statische Dateien mit Ihrem %1$sCDN%2$s, um die Ladezeit der "
5750
+ "Seite zu verkürzen."
5751
+
5752
+ #. translators: 1 HTML acronym for Content Delivery Network (CDN).
5753
+ #: Cdnfsd_GeneralPage_View.php:14
5754
+ msgid ""
5755
+ "Host the entire website with your compatible %1$s provider to reduce page "
5756
+ "load time."
5757
+ msgstr ""
5758
+ "Hosten Sie die gesamte Website bei Ihrem kompatiblen %1$s-Anbieter, um die "
5759
+ "Seitenladezeit zu verkürzen."
5760
+
5761
+ #: Cdn_ConfigLabels.php:13
5762
+ msgid "Host theme files"
5763
+ msgstr "Designdateien hosten"
5764
+
5765
+ #: Cdn_ConfigLabels.php:12
5766
+ msgid "Host wp-includes/ files"
5767
+ msgstr "Hosten Sie wp-includes/ Dateien"
5768
+
5769
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
5770
+ #: Cdn_Highwinds_Page_View.php:140 Cdn_LimeLight_Page_View.php:91
5771
+ msgid ""
5772
+ "Hostname provided by your %1$sCDN%2$s provider, this value will replace your "
5773
+ "site's hostname in the %3$sHTML%4$s."
5774
+ msgstr ""
5775
+ "Von Ihrem %1$sCDN%2$s-Anbieter bereitgestellter Hostname. Dieser Wert "
5776
+ "ersetzt den Hostnamen Ihrer Website im %3$sHTML%4$s."
5777
+
5778
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
5779
+ #: Cdn_RackSpaceCdn_Page_View.php:142
5780
+ msgid ""
5781
+ "Hostname(s) mapped to %1$sCDN%2$s host, this value will replace your site's "
5782
+ "hostname in the %3$sHTML%4$s. You can manage them from RackSpace management "
5783
+ "console and load here afterwards."
5784
+ msgstr ""
5785
+ "Hostname(n) dem Host %1$sCDN%2$s zugeordnet, dieser Wert ersetzt den "
5786
+ "Hostnamen Ihrer Website im %3$sHTML%4$s. Sie können sie über die RackSpace-"
5787
+ "Verwaltungskonsole verwalten und anschließend hier laden."
5788
+
5789
+ #: Extension_CloudFlare_Page_View.php:504
5790
+ msgid "Hotlink protection:"
5791
+ msgstr "Hotlink-Schutz:"
5792
+
5793
+ #: Extension_ImageService_Page_View.php:205
5794
+ msgid "Hourly limit:"
5795
+ msgstr "Stundenlimit:"
5796
+
5797
+ #: Extension_ImageService_Page_View.php:201
5798
+ msgid "Hourly requests:"
5799
+ msgstr "Stündliche Anfragen:"
5800
+
5801
+ #: Extension_CloudFlare_GeneralPage_View.php:21
5802
+ msgid ""
5803
+ "How many minutes data retrieved from CloudFlare should be stored. Minimum is "
5804
+ "1 minute."
5805
+ msgstr ""
5806
+ "Wie viele Minuten von CloudFlare abgerufene Daten gespeichert werden sollen. "
5807
+ "Minimum ist 1 Minute."
5808
+
5809
+ #: Extension_CloudFlare_Page_View.php:128
5810
+ msgid ""
5811
+ "How many minutes data retrieved from CloudFlare: should be stored. Minimum "
5812
+ "is 1 minute."
5813
+ msgstr ""
5814
+ "Wie viele Minuten von CloudFlare abgerufene Daten: sollten gespeichert "
5815
+ "werden. Minimum ist 1 Minute."
5816
+
5817
+ #: Extension_NewRelic_Page_View_Apm.php:187
5818
+ msgid ""
5819
+ "How many minutes data retrieved from New Relic should be stored. Minimum is "
5820
+ "1 minute."
5821
+ msgstr ""
5822
+ "Wie viele Minuten von New Relic abgerufene Daten gespeichert werden sollen. "
5823
+ "Minimum ist 1 Minute."
5824
+
5825
+ #: Extension_CloudFlare_Page_View.php:182
5826
+ msgid "How the content is cached by CloudFlare"
5827
+ msgstr "Wie der Inhalt von CloudFlare zwischengespeichert wird"
5828
+
5829
+ #: inc/options/general.php:258
5830
+ msgid "How to use manual minify"
5831
+ msgstr "So verwenden Sie die manuelle Minimierung"
5832
+
5833
+ #: inc/options/general.php:284
5834
+ msgid "How to use minify HTML"
5835
+ msgstr "Wie man HTML minimiert"
5836
+
5837
+ #: inc/options/general.php:203
5838
+ msgid "HTML"
5839
+ msgstr "HTML"
5840
+
5841
+ #: inc/options/general.php:280
5842
+ msgid "HTML Tidy"
5843
+ msgstr "HTML aufgeräumt"
5844
+
5845
+ #: inc/lightbox/self_test.php:220
5846
+ msgid "HTML Tidy extension:"
5847
+ msgstr "HTML Tidy-Erweiterung:"
5848
+
5849
+ #: BrowserCache_Page_View_SectionSecurity.php:381
5850
+ msgid "HTTP Public Key Pinning"
5851
+ msgstr "Anheften öffentlicher HTTP-Schlüssel"
5852
+
5853
+ #: BrowserCache_Page_View_SectionSecurity.php:252
5854
+ msgid "HTTP Strict Transport Security"
5855
+ msgstr "Strenge HTTP-Transportsicherheit"
5856
+
5857
+ #. Author URI of the plugin
5858
+ msgid "https://www.boldgrid.com/"
5859
+ msgstr "https://www.boldgrid.com/"
5860
+
5861
+ #. Plugin URI of the plugin
5862
+ msgid "https://www.boldgrid.com/totalcache/"
5863
+ msgstr "https://www.boldgrid.com/totalcache/"
5864
+
5865
+ #: Extension_CloudFlare_Page_View.php:419
5866
+ #: Extension_CloudFlare_Page_View.php:435
5867
+ msgid "HyperText Markup Language"
5868
+ msgstr "HyperText-Auszeichnungssprache"
5869
+
5870
+ #: Cdn_Highwinds_Page_View.php:146
5871
+ #: Cdn_Highwinds_Popup_View_ConfigureCnamesForm.php:51
5872
+ #: Cdn_LimeLight_Page_View.php:97 Cdn_MaxCdn_Page_View.php:274
5873
+ #: Cdn_RackSpaceCdn_Page_View.php:93 Cdn_RackSpaceCdn_Page_View.php:148
5874
+ #: Cdn_RackSpaceCdn_Popup_View_ConfigureDomains.php:51
5875
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:144 Cdn_StackPath2_Page_View.php:306
5876
+ #: Cdn_StackPath_Page_View.php:233 inc/options/about.php:76
5877
+ #: inc/options/browsercache.php:507 inc/options/cdn/akamai.php:121
5878
+ #: inc/options/cdn/att.php:95 inc/options/cdn/cotendo.php:102
5879
+ #: inc/options/cdn/edgecast.php:95 inc/options/cdn/ftp.php:331
5880
+ #: inc/options/cdn/mirror.php:81 inc/options/cdn/rscf.php:135
5881
+ #: inc/options/common/header.php:210 inc/options/common/header.php:329
5882
+ #: inc/options/general.php:203 inc/options/general.php:225
5883
+ #: inc/options/general.php:925 inc/options/general.php:964
5884
+ #: inc/options/minify.php:169 inc/options/minify.php:195
5885
+ #: inc/options/pgcache.php:851 inc/options/pgcache.php:880
5886
+ msgid "Hypertext Markup Language"
5887
+ msgstr "Hypertext-Auszeichnungssprache"
5888
+
5889
+ #: Extension_NewRelic_Page_View_Apm.php:321 inc/options/common/header.php:381
5890
+ #: inc/options/install.php:310 inc/options/parts/memcached.php:50
5891
+ msgid "Hypertext Preprocessor"
5892
+ msgstr "Hypertext Preprocessor"
5893
+
5894
+ #: Cdn_StackPath2_Page_View.php:85 Cdn_StackPath2_Page_View.php:116
5895
+ #: Cdn_StackPath2_Page_View.php:250 Cdn_StackPath_Page_View.php:56
5896
+ #: Cdn_StackPath_Page_View.php:177
5897
+ msgid "HyperText Transfer Protocol"
5898
+ msgstr "Hypertext Transfer Protocol"
5899
+
5900
+ #: BrowserCache_Page_View_SectionSecurity.php:174
5901
+ #: BrowserCache_Page_View_SectionSecurity.php:250
5902
+ #: BrowserCache_Page_View_SectionSecurity.php:254
5903
+ #: BrowserCache_Page_View_SectionSecurity.php:379
5904
+ #: BrowserCache_Page_View_SectionSecurity.php:383 Cdn_MaxCdn_Page_View.php:58
5905
+ #: Cdn_MaxCdn_Page_View.php:86 Cdn_MaxCdn_Page_View.php:116
5906
+ #: Cdn_MaxCdn_Page_View.php:218 inc/options/about.php:50
5907
+ #: inc/options/about.php:74 inc/options/browsercache.php:137
5908
+ #: inc/options/browsercache.php:165 inc/options/cdn.php:339
5909
+ #: inc/options/cdn.php:880 inc/options/general.php:447
5910
+ #: inc/options/install.php:114 inc/options/minify.php:826
5911
+ #: inc/options/minify.php:1004 inc/options/pgcache.php:849
5912
+ msgid "Hypertext Transfer Protocol"
5913
+ msgstr "Hypertext Transfer Protocol"
5914
+
5915
+ #: Cdn_MaxCdn_Page_View.php:146 Cdn_StackPath2_Page_View.php:147
5916
+ #: Cdn_StackPath2_Page_View.php:178 Cdn_StackPath_Page_View.php:96
5917
+ msgid "HyperText Transfer Protocol over SSL"
5918
+ msgstr "HyperText Transfer Protocol über SSL"
5919
+
5920
+ #: Minify_HelpPopup_View.php:129
5921
+ msgid "I Understand the Risks"
5922
+ msgstr "Ich verstehe die Risiken"
5923
+
5924
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
5925
+ #: inc/options/cdn.php:592
5926
+ msgid ""
5927
+ "If %1$sCDN%2$s is enabled (and not using the origin pull method), your "
5928
+ "minified files will be automatically uploaded."
5929
+ msgstr ""
5930
+ "Wenn %1$sCDN%2$s aktiviert ist (und nicht die Ursprungs-Pull-Methode "
5931
+ "verwendet), werden Ihre minimierten Dateien automatisch hochgeladen."
5932
+
5933
+ #: Extension_Amp_Page_View.php:22
5934
+ msgid ""
5935
+ "If AMP page URLs are tag based (/my-page/amp/) or query string based (/my-"
5936
+ "page?amp)"
5937
+ msgstr ""
5938
+ "Wenn AMP-Seiten-URLs auf Tags (/my-page/amp/) oder Abfragezeichenfolgen "
5939
+ "basieren (/my-page?amp)"
5940
+
5941
+ #: Extension_FragmentCache_Page_View.php:109 inc/options/dbcache.php:90
5942
+ #: inc/options/minify.php:894 inc/options/objectcache.php:77
5943
+ #: inc/options/pgcache.php:595
5944
+ msgid ""
5945
+ "If caching to disk, specify how frequently expired cache data is removed. "
5946
+ "For busy sites, a lower value is best."
5947
+ msgstr ""
5948
+ "Geben Sie beim Caching auf Datenträger an, wie häufig abgelaufene Cache-"
5949
+ "Daten entfernt werden. Für stark frequentierte Sites ist ein niedrigerer "
5950
+ "Wert am besten."
5951
+
5952
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
5953
+ #: inc/options/cdn.php:145
5954
+ msgid "If checked, all attachments will be hosted with the %1$sCDN%2$s."
5955
+ msgstr ""
5956
+ "Wenn diese Option aktiviert ist, werden alle Anhänge mit dem %1$sCDN%2$s "
5957
+ "gehostet."
5958
+
5959
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
5960
+ #: inc/options/cdn.php:223
5961
+ msgid ""
5962
+ "If checked, all theme file types specified in the \"theme file types to "
5963
+ "upload\" field below will be hosted with the %1$sCDN%2$s."
5964
+ msgstr ""
5965
+ "Wenn diese Option aktiviert ist, werden alle Designdateitypen, die unten im "
5966
+ "Feld \"Designdateitypen zum Hochladen\" angegeben sind, mit dem %1$sCDN%2$s "
5967
+ "gehostet."
5968
+
5969
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
5970
+ #: inc/options/cdn.php:293
5971
+ msgid ""
5972
+ "If checked, any file names or paths specified in the \"custom file list\" "
5973
+ "field below will be hosted with the %1$sCDN%2$s."
5974
+ msgstr ""
5975
+ "Wenn diese Option aktiviert ist, werden alle Dateinamen oder Pfade, die "
5976
+ "unten im Feld \"Benutzerdefinierte Dateiliste\" angegeben sind, mit dem "
5977
+ "%1$sCDN%2$s gehostet."
5978
+
5979
+ #. translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
5980
+ #: inc/options/cdn.php:257
5981
+ msgid ""
5982
+ "If checked, minified %1$sCSS%2$s and %3$sJS%4$s files will be hosted with "
5983
+ "the %5$sCDN%6$s."
5984
+ msgstr ""
5985
+ "Wenn diese Option aktiviert ist, werden die minimierten %1$sCSS%2$s- und "
5986
+ "%3$sJS%4$s-Dateien mit dem %5$sCDN%6$s gehostet."
5987
+
5988
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
5989
+ #: inc/options/cdn.php:192
5990
+ msgid ""
5991
+ "If checked, WordPress static core file types specified in the \"wp-includes "
5992
+ "file types to upload\" field below will be hosted with the %1$sCDN%2$s."
5993
+ msgstr ""
5994
+ "Wenn diese Option aktiviert ist, werden die statischen Kerndateitypen von "
5995
+ "WordPress, die unten im Feld „wp-includes file types to upload“ angegeben "
5996
+ "sind, mit dem %1$sCDN%2$s gehostet."
5997
+
5998
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
5999
+ #: inc/options/minify.php:114
6000
+ msgid ""
6001
+ "If disabled, %1$sCSS%2$s and %3$sJS%4$s embeddings will use GET variables "
6002
+ "instead of \"fancy\" links."
6003
+ msgstr ""
6004
+ "Wenn deaktiviert, verwenden %1$sCSS%2$s- und %3$sJS%4$s-Einbettungen GET-"
6005
+ "Variablen anstelle von \"ausgefallenen\" Links."
6006
+
6007
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
6008
+ #: inc/options/pgcache.php:560
6009
+ msgid ""
6010
+ "If disabled, HEAD requests can often be cached resulting in \"empty pages\" "
6011
+ "being returned for subsequent requests for a %1$sURL%2$s."
6012
+ msgstr ""
6013
+ "Wenn deaktiviert, können HEAD-Anforderungen häufig zwischengespeichert "
6014
+ "werden, was dazu führt, dass bei nachfolgenden Anforderungen für eine "
6015
+ "%1$sURL%2$s \"leere Seiten\" zurückgegeben werden."
6016
+
6017
+ #: inc/options/general.php:802
6018
+ msgid "If empty the default path will be used.."
6019
+ msgstr "Wenn leer, wird der Standardpfad verwendet."
6020
+
6021
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
6022
+ #: inc/options/browsercache.php:259
6023
+ msgid ""
6024
+ "If enabled - you may get 404 File Not Found response for some files "
6025
+ "generated on-the-fly by WordPress plugins. You may add those file "
6026
+ "%1$sURI%2$ss to 404 error exception list below to avoid that."
6027
+ msgstr ""
6028
+ "Wenn diese Option aktiviert ist, erhalten Sie möglicherweise die Antwort 404 "
6029
+ "Datei nicht gefunden für einige Dateien, die von WordPress-Plugins on-the-"
6030
+ "fly generiert werden. Sie können diese Datei %1$sURI%2$ss zur Ausnahmeliste "
6031
+ "für 404-Fehler unten hinzufügen, um dies zu vermeiden."
6032
+
6033
+ #: Extension_ImageService_Page_View.php:99
6034
+ msgid "If extension is active"
6035
+ msgstr "Wenn Nebenstelle aktiv ist"
6036
+
6037
+ #: inc/options/minify.php:980
6038
+ msgid ""
6039
+ "If external script file names vary, use regular expressions in the \"Include "
6040
+ "external files/libraries\" field to simplify matching."
6041
+ msgstr ""
6042
+ "Wenn externe Skriptdateinamen variieren, verwenden Sie reguläre Ausdrücke im "
6043
+ "Feld „Externe Dateien/Bibliotheken einbeziehen“, um den Abgleich zu "
6044
+ "vereinfachen."
6045
+
6046
+ #: inc/options/cdn.php:321
6047
+ msgid ""
6048
+ "If modified files are not always detected and replaced, use this option to "
6049
+ "over-write them."
6050
+ msgstr ""
6051
+ "Wenn geänderte Dateien nicht immer erkannt und ersetzt werden, verwenden Sie "
6052
+ "diese Option, um sie zu überschreiben."
6053
+
6054
+ #: Extension_CloudFlare_Page_View.php:43
6055
+ #: Extension_FragmentCache_Page_View.php:59
6056
+ msgid "if needed."
6057
+ msgstr "wenn benötigt."
6058
+
6059
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
6060
+ #: inc/options/general.php:960
6061
+ msgid ""
6062
+ "If selected, detailed caching information will appear at the end of each "
6063
+ "page in a %1$sHTML%2$s comment. View a page's source code to review."
6064
+ msgstr ""
6065
+ "Wenn ausgewählt, werden detaillierte Caching-Informationen am Ende jeder "
6066
+ "Seite in einem %1$sHTML%2$s-Kommentar angezeigt. Zeigen Sie den Quellcode "
6067
+ "einer Seite an, um ihn zu überprüfen."
6068
+
6069
+ #: inc/options/cdn.php:84
6070
+ msgid "if some objects appear to be missing."
6071
+ msgstr "wenn einige Gegenstände zu fehlen scheinen."
6072
+
6073
+ #: inc/options/cdn.php:106
6074
+ msgid "if the domain name of your site has ever changed."
6075
+ msgstr "wenn sich der Domainname Ihrer Website jemals geändert hat."
6076
+
6077
+ #: inc/options/pgcache.php:183
6078
+ msgid "If the same WordPress content is accessed from different domains"
6079
+ msgstr ""
6080
+ "Wenn von verschiedenen Domains auf denselben WordPress-Inhalt zugegriffen "
6081
+ "wird"
6082
+
6083
+ #: Extension_CloudFlare_Page_View.php:451
6084
+ msgid ""
6085
+ "If there is sensitive content on your website that you want visible to real "
6086
+ "visitors, but that you want to hide from suspicious visitors, all you have "
6087
+ "to do is wrap the content with CloudFlare SSE tags."
6088
+ msgstr ""
6089
+ "Wenn es auf Ihrer Website sensible Inhalte gibt, die für echte Besucher "
6090
+ "sichtbar sein sollen, die Sie aber vor verdächtigen Besuchern verbergen "
6091
+ "möchten, müssen Sie die Inhalte lediglich mit CloudFlare SSE-Tags "
6092
+ "umschließen."
6093
+
6094
+ #. translators: 5 opening HTML a tag to W3TC BrowserCache admin page, 6 closing HTML a tag.
6095
+ #: inc/options/cdn.php:874
6096
+ msgid ""
6097
+ "If using Amazon Web Services or Self-Hosted %1$sCDN%2$s types, enable "
6098
+ "%3$sHTTP%4$s compression in the \"Media &amp; Other Files\" section on "
6099
+ "%5$sBrowser Cache%6$s Settings tab."
6100
+ msgstr ""
6101
+ "Wenn Sie Amazon Web Services oder selbstgehostete %1$sCDN%2$s-Typen "
6102
+ "verwenden, aktivieren Sie die %3$sHTTP%4$s-Komprimierung im Abschnitt &quot;"
6103
+ "Medien und andere Dateien&quot; auf der Registerkarte %5$sBrowser-Cache%6$s ."
6104
+
6105
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
6106
+ #: inc/options/cdn.php:837
6107
+ msgid ""
6108
+ "If using subdomain for %1$sCDN%2$s functionality, this setting helps prevent "
6109
+ "new users from sending cookies in requests to the %3$sCDN%4$s subdomain."
6110
+ msgstr ""
6111
+ "Wenn Sie die Subdomain für %1$sCDN%2$s-Funktionalität verwenden, verhindert "
6112
+ "diese Einstellung, dass neue Benutzer Cookies in Anfragen an die %3$sCDN%4$s-"
6113
+ "Subdomain senden."
6114
+
6115
+ #: Extension_Swarmify_Widget_View_NotConfigured.php:15
6116
+ msgid ""
6117
+ "If you already have a Swarmify configuration key, or need to update your "
6118
+ "existing key, click here:"
6119
+ msgstr ""
6120
+ "Wenn Sie bereits einen Swarmify-Konfigurationsschlüssel haben oder Ihren "
6121
+ "vorhandenen Schlüssel aktualisieren müssen, klicken Sie hier:"
6122
+
6123
+ #. translators: 3 opening HTML a tag to W3TC MaxCDN Signup admin page, 4 closing HTML a tag.
6124
+ #. translators: 3 opening HTML a tag, 4 closing HTML a tag.
6125
+ #: Cdnfsd_GeneralPage_View.php:25 Cdn_GeneralPage_View.php:62
6126
+ msgid ""
6127
+ "If you do not have a %1$sCDN%2$s provider try StackPath. %3$sSign up now to "
6128
+ "enjoy a special offer!%4$s."
6129
+ msgstr ""
6130
+ "Wenn Sie keinen %1$sCDN%2$s-Anbieter haben, versuchen Sie es mit StackPath. "
6131
+ "%3$sMelden Sie sich jetzt an, um von einem Sonderangebot zu profitieren!%4$s."
6132
+
6133
+ #. translators: 6 closing HTML acronym tag.
6134
+ #. translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
6135
+ #: inc/options/cdn/cf.php:148 inc/options/cdn/cf2.php:140
6136
+ msgid ""
6137
+ "If you have already added a %1$s%2$sCNAME%3$s%4$s to your %5$sDNS%6$s Zone, "
6138
+ "enter it here."
6139
+ msgstr ""
6140
+ "Wenn Sie Ihrer Zone %5$sDNS%6$s bereits einen %1$s%2$sCNAME%3$s%4$s "
6141
+ "hinzugefügt haben, geben Sie ihn hier ein."
6142
+
6143
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
6144
+ #: inc/options/cdn/s3.php:160 inc/options/cdn/s3_compatible.php:127
6145
+ msgid ""
6146
+ "If you have already added a %1$sCNAME%2$s to your %3$sDNS%4$s Zone, enter it "
6147
+ "here."
6148
+ msgstr ""
6149
+ "Wenn Sie Ihrer Zone %3$sDNS%4$s bereits einen %1$sCNAME%2$s hinzugefügt "
6150
+ "haben, geben Sie ihn hier ein."
6151
+
6152
+ #. translators: 1: Anchor/link open tag, 2: Anchor/link close tag.
6153
+ #: SetupGuide_Plugin_Admin.php:1089
6154
+ msgid ""
6155
+ "If you prefer to configure the settings on your own, you can %1$sskip this "
6156
+ "setup guide%2$s."
6157
+ msgstr ""
6158
+ "Wenn Sie die Einstellungen lieber selbst konfigurieren möchten, können Sie "
6159
+ "diese Einrichtungsanleitung %1$süberspringen%2$s."
6160
+
6161
+ #: inc/options/pgcache.php:452
6162
+ msgid ""
6163
+ "If you use WordPress as a backend for integrations, API caching may be for "
6164
+ "you. Similar to page caching, repeat requests will benefit by having "
6165
+ "significantly lower response times and consume fewer resources to deliver. "
6166
+ "If WordPress is not used as a backend, for additional security, the API can "
6167
+ "be disabled completely."
6168
+ msgstr ""
6169
+ "Wenn Sie WordPress als Backend für Integrationen verwenden, ist API-Caching "
6170
+ "möglicherweise das Richtige für Sie. Ähnlich wie beim Seiten-Caching "
6171
+ "profitieren wiederholte Anfragen von deutlich kürzeren Antwortzeiten und "
6172
+ "einem geringeren Ressourcenverbrauch für die Übermittlung. Wenn WordPress "
6173
+ "nicht als Backend verwendet wird, kann die API für zusätzliche Sicherheit "
6174
+ "vollständig deaktiviert werden."
6175
+
6176
+ #. translators: 1 HTML acronym for Content Delivery Network (CDN).
6177
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:57
6178
+ msgid ""
6179
+ "If you're an existing StackPath customer, enable %1$s and Authorize. If you "
6180
+ "need help configuring \n"
6181
+ "\t\t\t\t\t\t\tyour %1$s, we also offer Premium Services to assist you."
6182
+ msgstr ""
6183
+ "Wenn Sie bereits StackPath-Kunde sind, aktivieren Sie %1$s und autorisieren "
6184
+ "Sie. Wenn Sie Hilfe bei der Konfiguration benötigen\n"
6185
+ "Ihr %1$s, wir bieten auch Premium-Services an, um Sie zu unterstützen."
6186
+
6187
+ #. translators: 1 HTML acronym for Content Delivery Network (CDN).
6188
+ #: Cdn_StackPath_Widget_View_Unauthorized.php:32
6189
+ msgid "If you're an existing StackPath customer, enable %1$s and:"
6190
+ msgstr "Wenn Sie bereits StackPath-Kunde sind, aktivieren Sie %1$s und:"
6191
+
6192
+ #: Cdn_StackPath2_Page_View.php:50
6193
+ msgid ""
6194
+ "If you're an existing StackPath customer, enable CDN and Authorize. If you "
6195
+ "need help configuring your CDN, we also offer Premium Services to assist you."
6196
+ msgstr ""
6197
+ "Wenn Sie bereits StackPath-Kunde sind, aktivieren Sie CDN und Autorisieren. "
6198
+ "Wenn Sie Hilfe bei der Konfiguration Ihres CDN benötigen, bieten wir auch "
6199
+ "Premium Services an, um Sie zu unterstützen."
6200
+
6201
+ #: inc/options/pgcache.php:450
6202
+ msgid ""
6203
+ "If you're using the WordPress API make sure to use caching to scale "
6204
+ "performance."
6205
+ msgstr ""
6206
+ "Wenn Sie die WordPress-API verwenden, stellen Sie sicher, dass Sie Caching "
6207
+ "verwenden, um die Leistung zu skalieren."
6208
+
6209
+ #: Cdnfsd_MaxCdn_Popup_View_Zone.php:37 Cdnfsd_StackPath_Popup_View_Zone.php:37
6210
+ msgid "Ignore Cache Control:"
6211
+ msgstr "Cache-Steuerung ignorieren:"
6212
+
6213
+ #: Minify_ConfigLabels.php:21
6214
+ msgid "Ignored comment stems:"
6215
+ msgstr "Ignorierte Kommentar stammt:"
6216
+
6217
+ #: DbCache_ConfigLabels.php:14
6218
+ msgid "Ignored query stems:"
6219
+ msgstr "Ignorierte Abfragestämme:"
6220
+
6221
+ #: Extension_ImageService_Page_View.php:67
6222
+ msgid "Image compression type."
6223
+ msgstr "Art der Bildkomprimierung."
6224
+
6225
+ #: Extension_ImageService_Plugin_Admin.php:608
6226
+ #: FeatureShowcase_Plugin_Admin.php:239
6227
+ msgid "Image Service"
6228
+ msgstr "Bilddienst"
6229
+
6230
+ #: Extension_ImageService_Page_View.php:197
6231
+ msgid "Image Service API usage:"
6232
+ msgstr "Nutzung der Image Service API:"
6233
+
6234
+ #: Extension_CloudFlare_Page_View.php:520
6235
+ msgid "Images polishing:"
6236
+ msgstr "Bilder polieren:"
6237
+
6238
+ #. translators: 1: HTML anchor open tag, 2: HTML anchor close tag.
6239
+ #: Extension_ImageService_Plugin_Admin.php:560
6240
+ msgid ""
6241
+ "Images queued for conversion. Progress can be seen in the %1$sMedia "
6242
+ "Library%2$s."
6243
+ msgstr ""
6244
+ "Bilder in der Warteschlange für die Konvertierung. Der Fortschritt kann in "
6245
+ "der %1$sMedienbibliothek%2$s eingesehen werden."
6246
+
6247
+ #: BrowserCache_ConfigLabels.php:67
6248
+ msgid "img-src:"
6249
+ msgstr "img-src:"
6250
+
6251
+ #: inc/options/common/header.php:150 inc/options/general.php:1033
6252
+ msgid "Import / Export Settings"
6253
+ msgstr "Einstellungen importieren/exportieren"
6254
+
6255
+ #: inc/options/general.php:1048
6256
+ msgid "Import configuration:"
6257
+ msgstr "Konfiguration importieren:"
6258
+
6259
+ #: Cdn_ConfigLabels.php:17
6260
+ msgid "Import external media library attachments"
6261
+ msgstr "Importieren Sie Anhänge externer Medienbibliotheken"
6262
+
6263
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
6264
+ #: inc/options/about.php:222
6265
+ msgid ""
6266
+ "Import post attachments directly into the Media Library (and %1$sCDN%2$s)"
6267
+ msgstr ""
6268
+ "Beitragsanhänge direkt in die Medienbibliothek (und %1$sCDN%2$s) importieren"
6269
+
6270
+ #: inc/options/cdn.php:83
6271
+ msgid "importing attachments into the Media Library"
6272
+ msgstr "Importieren von Anhängen in die Medienbibliothek"
6273
+
6274
+ #: Extension_Wpml_Plugin_Admin.php:56
6275
+ msgid "Improve the caching performance of websites localized by WPML."
6276
+ msgstr ""
6277
+ "Verbessern Sie die Caching-Leistung von Websites, die von WPML lokalisiert "
6278
+ "wurden."
6279
+
6280
+ #: FeatureShowcase_Plugin_Admin.php:302
6281
+ msgid ""
6282
+ "Improve the performance of your Genesis, WPML powered site, and much more. "
6283
+ "StudioPress' Genesis Framework is up to 60% faster with W3TC Pro."
6284
+ msgstr ""
6285
+ "Verbessern Sie die Leistung Ihrer Genesis, WPML-basierten Website und vieles "
6286
+ "mehr. Das Genesis Framework von StudioPress ist mit W3TC Pro bis zu 60 % "
6287
+ "schneller."
6288
+
6289
+ #: inc/options/about.php:37
6290
+ msgid "Improved Google search engine ranking"
6291
+ msgstr "Verbessertes Google-Suchmaschinenranking"
6292
+
6293
+ #: Extension_Wpml_Plugin_Admin.php:50
6294
+ msgid "Improves page caching interoperability with WPML."
6295
+ msgstr "Verbessert die Interoperabilität des Seiten-Cachings mit WPML."
6296
+
6297
+ #: FeatureShowcase_Plugin_Admin.php:410
6298
+ msgid ""
6299
+ "Improves PHP performance by storing precompiled script bytecode in shared "
6300
+ "memory."
6301
+ msgstr ""
6302
+ "Verbessert die PHP-Leistung, indem vorkompilierter Skript-Bytecode im "
6303
+ "gemeinsam genutzten Speicher gespeichert wird."
6304
+
6305
+ #. translators: 5 opening HTML a tag to W3TC User Experience page, 6 closing HTML a tag.
6306
+ #: UserExperience_GeneralPage_View.php:33
6307
+ msgid ""
6308
+ "In addition to lazy loading images, with %1$sW3 Total Cache Pro%2$s you can "
6309
+ "lazy load %3$sGoogle Maps%4$s! More information and settings can be found on "
6310
+ "the %5$sUser Experience page%6$s."
6311
+ msgstr ""
6312
+ "Zusätzlich zum faulen Laden von Bildern können Sie mit %1$sW3 Total Cache "
6313
+ "Pro%2$s %3$sGoogle Maps%4$s faul laden! Weitere Informationen und "
6314
+ "Einstellungen finden Sie auf der %5$sBenutzererfahrungsseite%6$s."
6315
+
6316
+ #: inc/options/parts/redis.php:71 inc/options/parts/redis_extension.php:73
6317
+ msgid "In miliseconds"
6318
+ msgstr "In Millisekunden"
6319
+
6320
+ #: inc/options/parts/redis.php:61 inc/options/parts/redis.php:85
6321
+ #: inc/options/parts/redis_extension.php:63
6322
+ #: inc/options/parts/redis_extension.php:85
6323
+ msgid "In seconds"
6324
+ msgstr "In Sekunden"
6325
+
6326
+ #: Minify_HelpPopup_View.php:14
6327
+ msgid ""
6328
+ "In the best case, the usage of minify optimization is a trial and error "
6329
+ "process, it's"
6330
+ msgstr ""
6331
+ "Im besten Fall ist die Verwendung der Minimierungsoptimierung ein Trial-and-"
6332
+ "Error-Prozess, das ist es"
6333
+
6334
+ #: inc/options/install.php:411
6335
+ msgid ""
6336
+ "In the case where Apache is not used, the .htaccess file located in the root "
6337
+ "directory of the WordPress installation, wp-content/w3tc/pgcache/.htaccess "
6338
+ "and wp-content/w3tc/min/.htaccess contain directives that must be manually "
6339
+ "created for your web server software."
6340
+ msgstr ""
6341
+ "Falls Apache nicht verwendet wird, enthält die .htaccess-Datei, die sich im "
6342
+ "Stammverzeichnis der WordPress-Installation befindet, wp-"
6343
+ "content/w3tc/pgcache/.htaccess und wp-content/w3tc/min/.htaccess Anweisungen,"
6344
+ " die manuell geändert werden müssen erstellt für Ihre Webserver-Software."
6345
+
6346
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
6347
+ #: Extension_NewRelic_Page_View_Apm.php:265
6348
+ msgid "Include %1$sRUM%2$s in compressed or cached pages:"
6349
+ msgstr ""
6350
+ "Fügen Sie %1$sRUM%2$s in komprimierte oder zwischengespeicherte Seiten ein:"
6351
+
6352
+ #: Minify_ConfigLabels.php:37
6353
+ msgid "Include external files/libraries:"
6354
+ msgstr "Externe Dateien/Bibliotheken einbinden:"
6355
+
6356
+ #: Cdn_AdminActions.php:241
6357
+ msgid "Includes files export"
6358
+ msgstr "Inklusive Dateiexport"
6359
+
6360
+ #: Cdn_AdminActions.php:402
6361
+ msgid "Incorrect engine "
6362
+ msgstr "Falscher Motor"
6363
+
6364
+ #: Cdn_AdminActions.php:487
6365
+ msgid "Incorrect type."
6366
+ msgstr "Falscher Typ."
6367
+
6368
+ #: Extension_FragmentCache_Plugin_Admin.php:24
6369
+ msgid ""
6370
+ "Increase the performance of dynamic sites that cannot benefit from the "
6371
+ "caching of entire pages."
6372
+ msgstr ""
6373
+ "Erhöhen Sie die Leistung dynamischer Websites, die nicht vom Caching ganzer "
6374
+ "Seiten profitieren können."
6375
+
6376
+ #: Extension_Genesis_Plugin_Admin.php:43
6377
+ msgid ""
6378
+ "Increase the performance of themes powered by the Genesis Theme Framework by "
6379
+ "up to 60%."
6380
+ msgstr ""
6381
+ "Steigern Sie die Leistung von Themes, die vom Genesis Theme Framework "
6382
+ "unterstützt werden, um bis zu 60 %."
6383
+
6384
+ #: inc/options/about.php:38
6385
+ msgid "Increased visitor time on site"
6386
+ msgstr "Erhöhte Besucherzeit vor Ort"
6387
+
6388
+ #: inc/options/about.php:89
6389
+ msgid ""
6390
+ "Increased web server concurrency and increased scale (easily sustain high "
6391
+ "traffic spikes)"
6392
+ msgstr ""
6393
+ "Erhöhte Webserver-Parallelität und erhöhte Skalierbarkeit (leichtes "
6394
+ "Aushalten hoher Verkehrsspitzen)"
6395
+
6396
+ #: Extension_CloudFlare_Page_View.php:14
6397
+ msgid "Information"
6398
+ msgstr "Information"
6399
+
6400
+ #: inc/options/common/header.php:364 inc/options/install.php:11
6401
+ msgid "Initial Installation"
6402
+ msgstr "Erstinstallation"
6403
+
6404
+ #: UserExperience_LazyLoad_Page_View.php:90
6405
+ msgid "inline"
6406
+ msgstr "in der Reihe"
6407
+
6408
+ #: Minify_ConfigLabels.php:18
6409
+ msgid ""
6410
+ "Inline <acronym title=\"Cascading Style Sheet\">CSS</acronym> minification"
6411
+ msgstr ""
6412
+ "Inline- <acronym title=\"Cascading Stylesheet\">CSS</acronym> -Minifizierung"
6413
+
6414
+ #: Minify_ConfigLabels.php:19
6415
+ msgid "Inline <acronym title=\"JavaScript\">JS</acronym> minification"
6416
+ msgstr "Inline- <acronym title=\"JavaScript\">JS</acronym> -Minifizierung"
6417
+
6418
+ #: Root_AdminMenu.php:119 Root_AdminMenu.php:120
6419
+ msgid "Install"
6420
+ msgstr "Installieren"
6421
+
6422
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
6423
+ #: inc/options/install.php:331
6424
+ msgid "Install %1$sAPC%2$s module"
6425
+ msgstr "Installieren Sie das Modul %1$sAPC%2$s"
6426
+
6427
+ #: inc/options/install.php:351
6428
+ msgid "Install eAccelerator Module"
6429
+ msgstr "Installieren Sie das eAccelerator-Modul"
6430
+
6431
+ #: Generic_WidgetBoldGrid_View.php:28
6432
+ msgid "Install Free Backup Plugin"
6433
+ msgstr "Installieren Sie das kostenlose Backup-Plugin"
6434
+
6435
+ #: inc/options/install.php:297
6436
+ msgid "Install Memcached Deamon"
6437
+ msgstr "Installieren Sie den Memcached-Daemon"
6438
+
6439
+ #: inc/options/install.php:323
6440
+ msgid "Install Memcached Module"
6441
+ msgstr "Installieren Sie das Memcached-Modul"
6442
+
6443
+ #: Cdn_AdminNotes.php:299
6444
+ msgid "Install page"
6445
+ msgstr "Seite installieren"
6446
+
6447
+ #: inc/options/install.php:348
6448
+ msgid "Install XCache Module"
6449
+ msgstr "Installieren Sie das XCache-Modul"
6450
+
6451
+ #: inc/lightbox/self_test.php:138 inc/lightbox/self_test.php:148
6452
+ #: inc/lightbox/self_test.php:158 inc/lightbox/self_test.php:168
6453
+ #: inc/lightbox/self_test.php:195 inc/lightbox/self_test.php:204
6454
+ #: inc/lightbox/self_test.php:213 inc/lightbox/self_test.php:222
6455
+ #: inc/lightbox/self_test.php:321 inc/lightbox/self_test.php:413
6456
+ msgid "Installed"
6457
+ msgstr "Eingerichtet"
6458
+
6459
+ #: inc/lightbox/self_test.php:180
6460
+ msgid "Installed (APC)"
6461
+ msgstr "Installiert (APC)"
6462
+
6463
+ #: inc/lightbox/self_test.php:182
6464
+ msgid "Installed (eAccelerator)"
6465
+ msgstr "Installiert (eAccelerator)"
6466
+
6467
+ #: inc/lightbox/self_test.php:232
6468
+ msgid "Installed (Fileinfo)"
6469
+ msgstr "Installiert (Dateiinfo)"
6470
+
6471
+ #: inc/lightbox/self_test.php:263
6472
+ msgid "Installed (hash)"
6473
+ msgstr "Installiert (Hash)"
6474
+
6475
+ #: inc/lightbox/self_test.php:265
6476
+ msgid "Installed (mhash)"
6477
+ msgstr "Installiert (mhash)"
6478
+
6479
+ #: inc/lightbox/self_test.php:234
6480
+ msgid "Installed (mime_content_type)"
6481
+ msgstr "Installiert (mime_content_type)"
6482
+
6483
+ #: inc/lightbox/self_test.php:178
6484
+ msgid "Installed (OPCache)"
6485
+ msgstr "Installiert (OPCache)"
6486
+
6487
+ #: inc/lightbox/self_test.php:184
6488
+ msgid "Installed (XCache)"
6489
+ msgstr "Installiert (XCache)"
6490
+
6491
+ #: Cdnfsd_CloudFront_Popup_View_Distribution.php:40
6492
+ #: Cdnfsd_CloudFront_Popup_View_Distribution.php:44
6493
+ #: Extension_CloudFlare_Page_View.php:619
6494
+ #: Extension_CloudFlare_Page_View.php:643
6495
+ #: Extension_CloudFlare_Page_View.php:659
6496
+ msgid "Internet Protocol"
6497
+ msgstr "Internetprotokoll"
6498
+
6499
+ #: Extension_NewRelic_Api.php:45
6500
+ msgid "Invalid API key"
6501
+ msgstr "Ungültiger API-Schlüssel"
6502
+
6503
+ #: Extension_ImageService_Plugin_Admin.php:1216
6504
+ msgid "Invalid API response."
6505
+ msgstr "Ungültige API-Antwort."
6506
+
6507
+ #: SetupGuide_Plugin_Admin.php:119
6508
+ msgid "Invalid choice"
6509
+ msgstr "Ungültige Auswahl"
6510
+
6511
+ #: Generic_AdminActions_Test.php:150
6512
+ msgid "Invalid engine."
6513
+ msgstr "Ungültiger Motor."
6514
+
6515
+ #: Extension_ImageService_Api.php:227
6516
+ msgid "Invalid input image MIME type."
6517
+ msgstr "Ungültiger Eingabebild-MIME-Typ."
6518
+
6519
+ #: Extension_ImageService_Api.php:221
6520
+ msgid "Invalid output image MIME type."
6521
+ msgstr "Ungültiger MIME-Typ des Ausgabebilds."
6522
+
6523
+ #: CdnEngine_Mirror_Edgecast.php:130
6524
+ msgid "Invalid Request"
6525
+ msgstr "ungültige Anfrage"
6526
+
6527
+ #: CdnEngine_Mirror_Edgecast.php:118 Cdnfsd_TransparentCDN_Engine.php:148
6528
+ msgid "Invalid Request Parameter"
6529
+ msgstr "Ungültiger Anforderungsparameter"
6530
+
6531
+ #: CdnEngine_Mirror_Edgecast.php:126 Cdnfsd_TransparentCDN_Engine.php:156
6532
+ msgid "Invalid Request URI"
6533
+ msgstr "Ungültiger Anforderungs-URI"
6534
+
6535
+ #: Cdnfsd_TransparentCDN_Engine.php:136
6536
+ msgid "Invalid Request URL"
6537
+ msgstr "Ungültige Anforderungs-URL"
6538
+
6539
+ #: CdnEngine_Mirror_Akamai.php:85 CdnEngine_Mirror_Cotendo.php:92
6540
+ msgid "Invalid response."
6541
+ msgstr "Ungültige Antwort."
6542
+
6543
+ #: UsageStatistics_Plugin_Admin.php:113
6544
+ msgid "Invalid WordPress nonce. Please reload the page and try again."
6545
+ msgstr ""
6546
+ "Ungültige WordPress-Nonce. Bitte laden Sie die Seite neu und versuchen Sie "
6547
+ "es erneut."
6548
+
6549
+ #: Cdnfsd_MaxCdn_Popup_View_Zone.php:29 Cdnfsd_StackPath_Popup_View_Zone.php:29
6550
+ msgid "IP of your WordPress host"
6551
+ msgstr "IP Ihres WordPress-Hosts"
6552
+
6553
+ #: Extension_CloudFlare_Page_View.php:674
6554
+ msgid "IPv6:"
6555
+ msgstr "IPv6:"
6556
+
6557
+ #: Extension_FragmentCache_Page_View.php:27
6558
+ msgid "is currently"
6559
+ msgstr "ist zurzeit"
6560
+
6561
+ #. translators: 1 HTML input button for renewing licence.
6562
+ #: Licensing_Plugin_Admin.php:169
6563
+ msgid ""
6564
+ "It looks like your W3 Total Cache Pro License has expired. %1$s to continue "
6565
+ "using the Pro Features"
6566
+ msgstr ""
6567
+ "Anscheinend ist Ihre W3 Total Cache Pro-Lizenz abgelaufen. %1$s, um die Pro-"
6568
+ "Funktionen weiterhin zu verwenden"
6569
+
6570
+ #: Generic_WidgetBoldGrid_View.php:24
6571
+ msgid ""
6572
+ "It's easy to set up and manage, backs up your entire WordPress site, has "
6573
+ "automated fault protection if an update fails, and provides easy site "
6574
+ "migration options."
6575
+ msgstr ""
6576
+ "Es ist einfach einzurichten und zu verwalten, sichert Ihre gesamte WordPress-"
6577
+ "Site, verfügt über einen automatisierten Fehlerschutz, wenn ein Update "
6578
+ "fehlschlägt, und bietet einfache Optionen für die Site-Migration."
6579
+
6580
+ #: inc/options/about.php:243
6581
+ msgid ""
6582
+ "It's quite difficult to recall all of the innovators that have shared their "
6583
+ "thoughts, code and experiences in the blogosphere over the years, but here "
6584
+ "are some names to get you started:"
6585
+ msgstr ""
6586
+ "Es ist ziemlich schwierig, sich an alle Innovatoren zu erinnern, die ihre "
6587
+ "Gedanken, ihren Code und ihre Erfahrungen im Laufe der Jahre in der "
6588
+ "Blogosphäre geteilt haben, aber hier sind einige Namen, um Ihnen den "
6589
+ "Einstieg zu erleichtern:"
6590
+
6591
+ #: UsageStatistics_Page_View.php:478
6592
+ msgid "Items: "
6593
+ msgstr "Artikel:"
6594
+
6595
+ #: Cdn_GeneralPage_View.php:101 Extension_CloudFlare_Page_View.php:373
6596
+ #: inc/options/browsercache.php:363 inc/options/cdn.php:263
6597
+ #: inc/options/cdn/s3_compatible.php:33 inc/options/common/header.php:232
6598
+ #: inc/options/common/header.php:308 inc/options/general.php:202
6599
+ #: inc/options/general.php:229 inc/options/install.php:78
6600
+ #: inc/options/install.php:80 inc/options/minify.php:120
6601
+ #: inc/options/minify.php:263 inc/options/minify.php:281
6602
+ #: inc/options/minify.php:444 inc/options/minify.php:543
6603
+ #: inc/options/minify.php:919 Minify_HelpPopup_View.php:56
6604
+ #: Minify_HelpPopup_View.php:112 Minify_HelpPopup_View.php:114
6605
+ msgid "JavaScript"
6606
+ msgstr "JavaScript"
6607
+
6608
+ #: inc/options/about.php:216
6609
+ msgid "JavaScript embedding group and location management"
6610
+ msgstr "JavaScript-Einbettungsgruppen- und Standortverwaltung"
6611
+
6612
+ #: inc/options/general.php:202
6613
+ msgid "JS"
6614
+ msgstr "JS"
6615
+
6616
+ #: UsageStatistics_Page_View.php:229
6617
+ msgid "JS compression in cache: "
6618
+ msgstr "JS-Komprimierung im Cache:"
6619
+
6620
+ #: inc/options/general.php:294
6621
+ msgid "JSMin (default)"
6622
+ msgstr "JSMin (Standard)"
6623
+
6624
+ #: extension-example/Extension_Example_Page_View.php:9
6625
+ #: Extension_CloudFlare_Page_View.php:9 Extension_FeedBurner_Page_View.php:9
6626
+ #: Extension_FragmentCache_Page_View.php:12 Extension_Genesis_Page_View.php:9
6627
+ #: Extension_NewRelic_Page_View_Apm.php:10 Extension_Swarmify_Page_View.php:9
6628
+ #: inc/options/cdn.php:21 inc/options/common/header.php:182
6629
+ #: inc/options/common/header.php:363
6630
+ msgid "Jump to:"
6631
+ msgstr "Springen zu:"
6632
+
6633
+ #: inc/options/common/header.php:197 inc/options/common/header.php:272
6634
+ #: inc/options/common/header.php:283 inc/options/common/header.php:293
6635
+ #: inc/options/common/header.php:351
6636
+ msgid "Jump to: "
6637
+ msgstr "Springen zu:"
6638
+
6639
+ #: Extension_Swarmify_Widget_View_NotConfigured.php:9
6640
+ msgid ""
6641
+ "Just as the load time and overall performance of your website impacts user "
6642
+ "satisfaction, so does the performance of your online videos. Optimize your "
6643
+ "video performance by enabling the Swarmify SmartVideo&#8482 solution."
6644
+ msgstr ""
6645
+ "So wie die Ladezeit und Gesamtleistung Ihrer Website die "
6646
+ "Benutzerzufriedenheit beeinflusst, wirkt sich dies auch auf die Leistung "
6647
+ "Ihrer Online-Videos aus. Optimieren Sie Ihre Videoleistung, indem Sie die "
6648
+ "Lösung Swarmify SmartVideo&#8482 aktivieren."
6649
+
6650
+ #: Extension_Swarmify_Page_View.php:60
6651
+ msgid "JWPlayer:"
6652
+ msgstr "JWPlayer:"
6653
+
6654
+ #: Generic_ConfigLabels.php:14
6655
+ msgid "Key Restriction (Referrer):"
6656
+ msgstr "Schlüsselbeschränkung (Referrer):"
6657
+
6658
+ #: Extension_CloudFlare_Page_View.php:115
6659
+ msgid "Last 12 hours"
6660
+ msgstr "Die letzten 12 Stunden"
6661
+
6662
+ #: Extension_CloudFlare_Page_View.php:116
6663
+ msgid "Last 24 hours"
6664
+ msgstr "Letzte 24 Stunden"
6665
+
6666
+ #: Extension_CloudFlare_Page_View.php:113
6667
+ msgid "Last 30 minutes"
6668
+ msgstr "Die letzten 30 Minuten"
6669
+
6670
+ #: Extension_CloudFlare_Page_View.php:114
6671
+ msgid "Last 6 hours"
6672
+ msgstr "Die letzten 6 Stunden"
6673
+
6674
+ #: inc/popup/cdn_queue.php:23 inc/popup/cdn_queue.php:56
6675
+ #: inc/popup/cdn_queue.php:86
6676
+ msgid "Last Error"
6677
+ msgstr "Letzter Fehler"
6678
+
6679
+ #: Extension_CloudFlare_Page_View.php:118
6680
+ msgid "Last month"
6681
+ msgstr "Im vergangenen Monat"
6682
+
6683
+ #: inc/popup/cdn_export_file.php:46 inc/popup/cdn_export_library.php:36
6684
+ #: inc/popup/cdn_import_library.php:37 inc/popup/cdn_rename_domain.php:55
6685
+ msgid "Last response:"
6686
+ msgstr "Letzte Antwort:"
6687
+
6688
+ #: Extension_CloudFlare_Page_View.php:117
6689
+ msgid "Last week"
6690
+ msgstr "Letzte Woche"
6691
+
6692
+ #: inc/options/pgcache.php:514
6693
+ msgid "Late caching:"
6694
+ msgstr "Late-Caching:"
6695
+
6696
+ #: inc/options/pgcache.php:506
6697
+ msgid "Late initialization:"
6698
+ msgstr "Späte Initialisierung:"
6699
+
6700
+ #: FeatureShowcase_Plugin_Admin.php:257
6701
+ msgid "Launch"
6702
+ msgstr "Start"
6703
+
6704
+ #: SetupGuide_Plugin_Admin.php:1064 SetupGuide_Plugin_Admin.php:1269
6705
+ msgid "Lazy Load"
6706
+ msgstr "Lazy-Load"
6707
+
6708
+ #: UserExperience_LazyLoad_Page_View.php:116
6709
+ msgid "Lazy load google map"
6710
+ msgstr "Lazy load google map"
6711
+
6712
+ #: FeatureShowcase_Plugin_Admin.php:264 UserExperience_GeneralPage_View.php:28
6713
+ msgid "Lazy Load Google Maps"
6714
+ msgstr "Lazy Load Google Maps"
6715
+
6716
+ #: FeatureShowcase_Plugin_Admin.php:384 SetupGuide_Plugin_Admin.php:1278
6717
+ #: UserExperience_GeneralPage_View.php:19
6718
+ msgid "Lazy Load Images"
6719
+ msgstr "Lazy Load-Bilder"
6720
+
6721
+ #: UserExperience_LazyLoad_Page_View.php:17
6722
+ #: UserExperience_LazyLoad_Plugin.php:123
6723
+ msgid "Lazy Loading"
6724
+ msgstr "Faules Laden"
6725
+
6726
+ #: inc/options/general.php:239 inc/options/general.php:258
6727
+ #: inc/options/general.php:267 inc/options/general.php:284
6728
+ msgid "Learn more"
6729
+ msgstr "Mehr erfahren"
6730
+
6731
+ #. translators: 3 closing HTML acronym tag, 4 closing HTML a tag.
6732
+ #: inc/options/general.php:746
6733
+ msgid "Learn more about obtaining a %1$s%2$sAPI%3$s key here%4$s."
6734
+ msgstr ""
6735
+ "Hier erfahren Sie mehr darüber, wie Sie einen %1$s%2$sAPI%3$s-Schlüssel "
6736
+ "erhalten%4$s."
6737
+
6738
+ #: Generic_WidgetCommunity_View.php:41
6739
+ #: inc/options/parts/dashboard_banner.php:59
6740
+ msgid "Learn more about Pro"
6741
+ msgstr "Erfahren Sie mehr über Pro"
6742
+
6743
+ #: Extension_NewRelic_Plugin_Admin.php:20
6744
+ msgid ""
6745
+ "Legacy: New Relic is software analytics platform offering app performance "
6746
+ "management and mobile monitoring solutions."
6747
+ msgstr ""
6748
+ "Legacy: New Relic ist eine Softwareanalyseplattform, die Lösungen für App-"
6749
+ "Performance-Management und mobile Überwachung bietet."
6750
+
6751
+ #: BrowserCache_Page_View_QuickReference.php:12 inc/lightbox/self_test.php:11
6752
+ msgid "Legend"
6753
+ msgstr "Legende"
6754
+
6755
+ #: inc/options/minify/csstidy2.php:18
6756
+ msgid "Level II optimisations"
6757
+ msgstr "Level-II-Optimierungen"
6758
+
6759
+ #: Extension_NewRelic_Service.php:172
6760
+ msgid "License key could not be detected in ini file."
6761
+ msgstr "Der Lizenzschlüssel konnte in der INI-Datei nicht gefunden werden."
6762
+
6763
+ #: Generic_ConfigLabels.php:18
6764
+ msgid "License:"
6765
+ msgstr "Lizenz:"
6766
+
6767
+ #: inc/options/common/header.php:132 inc/options/general.php:684
6768
+ msgid "Licensing"
6769
+ msgstr "Lizenzierung"
6770
+
6771
+ #: Cdn_Plugin_Admin.php:198
6772
+ msgid "LimeLight"
6773
+ msgstr "Rampenlicht"
6774
+
6775
+ #: Cdnfsd_Plugin_Admin.php:100
6776
+ msgid "Limelight"
6777
+ msgstr "Rampenlicht"
6778
+
6779
+ #: inc/options/pgcache.php:257
6780
+ msgid ""
6781
+ "Limit the number of pages to create per batch. Fewer pages may be better for "
6782
+ "under-powered servers."
6783
+ msgstr ""
6784
+ "Begrenzen Sie die Anzahl der pro Stapel zu erstellenden Seiten. Weniger "
6785
+ "Seiten sind möglicherweise besser für Server mit geringer Leistung."
6786
+
6787
+ #: BrowserCache_Page_View_SectionSecurity.php:623
6788
+ msgid ""
6789
+ "Limits the origins to which you can connect via XMLHttpRequest, WebSockets, "
6790
+ "and EventSource."
6791
+ msgstr ""
6792
+ "Schränkt die Ursprünge ein, zu denen Sie über XMLHttpRequest, WebSockets und "
6793
+ "EventSource eine Verbindung herstellen können."
6794
+
6795
+ #: Minify_ConfigLabels.php:78 Minify_ConfigLabels.php:83
6796
+ msgid "Line break after:"
6797
+ msgstr "Zeilenumbruch nach:"
6798
+
6799
+ #: Minify_ConfigLabels.php:66
6800
+ msgid "Line break removal"
6801
+ msgstr "Entfernung von Zeilenumbrüchen"
6802
+
6803
+ #: Minify_ConfigLabels.php:46
6804
+ msgid "Line break removal (not applied when combine only is active)"
6805
+ msgstr ""
6806
+ "Entfernung von Zeilenumbrüchen (wird nicht angewendet, wenn „Nur "
6807
+ "kombinieren“ aktiv ist)"
6808
+
6809
+ #: Minify_ConfigLabels.php:74
6810
+ msgid "Line break removal (not safe, not applied when combine only is active)"
6811
+ msgstr ""
6812
+ "Zeilenumbruchentfernung (nicht sicher, wird nicht angewendet, wenn nur "
6813
+ "Combine aktiv ist)"
6814
+
6815
+ #: Extension_Genesis_Page_View.php:126
6816
+ msgid ""
6817
+ "List of pages / posts that should not have the single post / post loop "
6818
+ "cached. Specify one page / post per line. This area supports regular "
6819
+ "expressions."
6820
+ msgstr ""
6821
+ "Liste von Seiten/Beiträgen, bei denen der einzelne Beitrag/Beitragsschleife "
6822
+ "nicht zwischengespeichert werden soll. Geben Sie eine Seite / einen Beitrag "
6823
+ "pro Zeile an. Dieser Bereich unterstützt reguläre Ausdrücke."
6824
+
6825
+ #: Extension_Genesis_Page_View.php:100
6826
+ msgid ""
6827
+ "List of pages / posts that should not have the terms loop cached. Specify "
6828
+ "one page / post per line. This area supports regular expressions."
6829
+ msgstr ""
6830
+ "Liste der Seiten/Beiträge, bei denen die Begriffsschleife nicht "
6831
+ "zwischengespeichert werden soll. Geben Sie eine Seite / einen Beitrag pro "
6832
+ "Zeile an. Dieser Bereich unterstützt reguläre Ausdrücke."
6833
+
6834
+ #: Extension_Genesis_Page_View.php:169
6835
+ msgid ""
6836
+ "List of pages that should not have sidebar cached. Specify one page / post "
6837
+ "per line. This area supports regular expressions."
6838
+ msgstr ""
6839
+ "Liste der Seiten, für die die Seitenleiste nicht zwischengespeichert werden "
6840
+ "soll. Geben Sie eine Seite / einen Beitrag pro Zeile an. Dieser Bereich "
6841
+ "unterstützt reguläre Ausdrücke."
6842
+
6843
+ #: inc/widget/latest.php:9
6844
+ msgid "Loading&#8230;"
6845
+ msgstr "Wird geladen…"
6846
+
6847
+ #: inc/widget/latest_news.php:9 UsageStatistics_Page_View.php:11
6848
+ msgid "Loading..."
6849
+ msgstr "Wird geladen..."
6850
+
6851
+ #: inc/popup/cdn_queue.php:21 inc/popup/cdn_queue.php:54
6852
+ #: inc/popup/cdn_queue.php:84
6853
+ msgid "Local Path"
6854
+ msgstr "Lokaler Pfad"
6855
+
6856
+ #: Extension_Wpml_Plugin_Admin.php:58
6857
+ msgid ""
6858
+ "Localization is a type of personalization that makes websites more difficult "
6859
+ "to scale. This extension reduces the response time of websites localized by "
6860
+ "WPML."
6861
+ msgstr ""
6862
+ "Lokalisierung ist eine Art der Personalisierung, die die Skalierbarkeit von "
6863
+ "Websites erschwert. Diese Erweiterung reduziert die Antwortzeit von Websites,"
6864
+ " die von WPML lokalisiert wurden."
6865
+
6866
+ #: Cdn_ConfigLabels.php:31
6867
+ msgid "Location:"
6868
+ msgstr "Ort:"
6869
+
6870
+ #: UsageStatistics_Page_View.php:133
6871
+ msgid "Logged In"
6872
+ msgstr "Eingeloggt"
6873
+
6874
+ #: Cdn_Plugin.php:589 Extension_NewRelic_Plugin.php:158
6875
+ msgid "logged in role is rejected"
6876
+ msgstr "angemeldete Rolle wird abgelehnt"
6877
+
6878
+ #: Extension_Swarmify_Plugin.php:118
6879
+ msgid "logged in user rejected"
6880
+ msgstr "Eingeloggter Benutzer abgelehnt"
6881
+
6882
+ #: Extension_Swarmify_Page_View.php:70
6883
+ msgid "Logged In:"
6884
+ msgstr "Eingeloggt:"
6885
+
6886
+ #: inc/lightbox/support_us.php:52
6887
+ msgid "Login & Rate Us"
6888
+ msgstr "Melden Sie sich an und bewerten Sie uns"
6889
+
6890
+ #: Extension_CloudFlare_Page_View.php:524
6891
+ msgid ""
6892
+ "Lossless (Reduce the size of PNG, JPEG, and GIF files - no impact on visual "
6893
+ "quality)"
6894
+ msgstr ""
6895
+ "Verlustfrei (Reduzieren Sie die Größe von PNG-, JPEG- und GIF-Dateien – "
6896
+ "keine Auswirkung auf die visuelle Qualität)"
6897
+
6898
+ #: Extension_CloudFlare_Page_View.php:525
6899
+ msgid "Lossy (Further reduce the size of JPEG files for faster image loading)"
6900
+ msgstr ""
6901
+ "Verlustbehaftet (Weitere Reduzierung der Größe von JPEG-Dateien für "
6902
+ "schnelleres Laden von Bildern)"
6903
+
6904
+ #: Extension_CloudFlare_Page_View.php:544
6905
+ msgid "Low"
6906
+ msgstr "Niedrig"
6907
+
6908
+ #: inc/options/minify/csstidy2.php:12
6909
+ msgid "Low (higher readability)"
6910
+ msgstr "Niedrig (höhere Lesbarkeit)"
6911
+
6912
+ #: inc/options/minify/csstidy2.php:24
6913
+ msgid "Lowercase"
6914
+ msgstr "Kleinbuchstaben"
6915
+
6916
+ #: Minify_ConfigLabels.php:51
6917
+ msgid "Lowercase selectors"
6918
+ msgstr "Selektoren für Kleinbuchstaben"
6919
+
6920
+ #: extension-example/Extension_Example_Page_View.php:10
6921
+ #: Extension_CloudFlare_Page_View.php:10 Extension_FeedBurner_Page_View.php:10
6922
+ #: Extension_FragmentCache_Page_View.php:13 Extension_Genesis_Page_View.php:10
6923
+ #: Extension_NewRelic_Page_View_Apm.php:11 Extension_Swarmify_Page_View.php:10
6924
+ #: inc/options/cdn.php:22 inc/options/common/header.php:183
6925
+ #: inc/options/common/header.php:198 inc/options/common/header.php:273
6926
+ #: inc/options/common/header.php:284 inc/options/common/header.php:294
6927
+ #: inc/options/common/header.php:352
6928
+ msgid "Main Menu"
6929
+ msgstr "Hauptmenü"
6930
+
6931
+ #: Generic_Plugin_Admin.php:902
6932
+ msgid "make it automatically."
6933
+ msgstr "automatisch machen."
6934
+
6935
+ #: Cdn_AdminNotes.php:84
6936
+ msgid ""
6937
+ "Make sure to %s and upload the %s, files to the <acronym title=\"Content "
6938
+ "Delivery Network\">CDN</acronym> to ensure proper operation. %s"
6939
+ msgstr ""
6940
+ "Stellen Sie sicher, dass %s und die %s-Dateien in das <acronym "
6941
+ "title=\"Content-Delivery-Netzwerk\">CDN</acronym> hochgeladen werden, um "
6942
+ "einen ordnungsgemäßen Betrieb sicherzustellen. %s"
6943
+
6944
+ #: Cdn_AdminNotes.php:116
6945
+ msgid ""
6946
+ "Make sure to whitelist your servers IPs. Follow the instructions on %s. The "
6947
+ "IP for this server is %s. %s"
6948
+ msgstr ""
6949
+ "Stellen Sie sicher, dass Sie die IPs Ihrer Server auf die Whitelist setzen. "
6950
+ "Folgen Sie den Anweisungen auf %s. Die IP für diesen Server ist %s. %s"
6951
+
6952
+ #: CdnEngine_Mirror_MaxCdn.php:41 CdnEngine_Mirror_MaxCdn.php:116
6953
+ #: CdnEngine_Mirror_StackPath.php:41 CdnEngine_Mirror_StackPath.php:88
6954
+ msgid "Malformed Authorization Key."
6955
+ msgstr "Fehlerhafter Autorisierungsschlüssel."
6956
+
6957
+ #: Cdn_Highwinds_Widget_View.php:12
6958
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:41
6959
+ #: Cdn_StackPath2_Widget_View_Authorized.php:18
6960
+ #: Cdn_StackPath_Widget_View_Authorized.php:30
6961
+ msgid "Manage"
6962
+ msgstr "Verwalten"
6963
+
6964
+ #: FeatureShowcase_Plugin_Admin.php:470
6965
+ msgid "Manage cache groups for user agents, referrers, and cookies."
6966
+ msgstr "Verwalten Sie Cache-Gruppen für Benutzeragenten, Referrer und Cookies."
6967
+
6968
+ #: CacheGroups_Plugin_Admin_View.php:238 inc/options/common/header.php:355
6969
+ msgid "Manage Cookie Groups"
6970
+ msgstr "Cookie-Gruppen verwalten"
6971
+
6972
+ #: Generic_Plugin.php:305
6973
+ msgid "Manage Extensions"
6974
+ msgstr "Erweiterungen verwalten"
6975
+
6976
+ #: CacheGroups_Plugin_Admin_View.php:162 inc/options/common/header.php:354
6977
+ msgid "Manage Referrer Groups"
6978
+ msgstr "Referrer-Gruppen verwalten"
6979
+
6980
+ #: CacheGroups_Plugin_Admin_View.php:35 inc/options/common/header.php:353
6981
+ msgid "Manage User Agent Groups"
6982
+ msgstr "Benutzeragentengruppen verwalten"
6983
+
6984
+ #: inc/options/general.php:251
6985
+ msgid "Manual"
6986
+ msgstr "Handbuch"
6987
+
6988
+ #: Extension_CloudFlare_Page_View.php:357
6989
+ msgid "Manual (run when attribute present only)"
6990
+ msgstr "Manuell (nur ausführen, wenn Attribut vorhanden)"
6991
+
6992
+ #: Extension_FragmentCache_Page_View.php:113
6993
+ msgid "Manual fragment groups:"
6994
+ msgstr "Manuelle Fragmentgruppen:"
6995
+
6996
+ #: SetupGuide_Plugin_Admin.php:1161
6997
+ msgid ""
6998
+ "Many database queries are made in every dynamic page request. A database "
6999
+ "cache may speed up the generation of dynamic pages. Database Cache serves "
7000
+ "query results directly from a storage engine."
7001
+ msgstr ""
7002
+ "Bei jeder dynamischen Seitenanforderung werden viele Datenbankabfragen "
7003
+ "durchgeführt. Ein Datenbank-Cache kann die Generierung dynamischer Seiten "
7004
+ "beschleunigen. Der Datenbank-Cache stellt Abfrageergebnisse direkt von einer "
7005
+ "Speicher-Engine bereit."
7006
+
7007
+ #: Extension_CloudFlare_Page_View.php:604
7008
+ msgid "Max size of file allowed for uploading"
7009
+ msgstr "Maximal zulässige Dateigröße zum Hochladen"
7010
+
7011
+ #: Extension_CloudFlare_Page_View.php:603
7012
+ msgid "Max upload:"
7013
+ msgstr "Maximaler Upload:"
7014
+
7015
+ #: Cdnfsd_Plugin_Admin.php:103 Cdn_Plugin_Admin.php:202
7016
+ msgid "MaxCDN"
7017
+ msgstr "MaxCDN"
7018
+
7019
+ #: Cdn_MaxCdn_Page_View.php:13
7020
+ msgid ""
7021
+ "MaxCDN is a service that lets you speed up your site even more with W3 Total "
7022
+ "Cache. Sign up now to recieve a special offer!"
7023
+ msgstr ""
7024
+ "MaxCDN ist ein Dienst, mit dem Sie Ihre Website mit W3 Total Cache noch mehr "
7025
+ "beschleunigen können. Melden Sie sich jetzt an, um ein Sonderangebot zu "
7026
+ "erhalten!"
7027
+
7028
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:30
7029
+ msgid "MaxCDN works magically with W3 Total Cache."
7030
+ msgstr "MaxCDN funktioniert auf magische Weise mit W3 Total Cache."
7031
+
7032
+ #: DbCache_ConfigLabels.php:11 PgCache_ConfigLabels.php:43
7033
+ msgid "Maximum lifetime of cache objects:"
7034
+ msgstr "Maximale Lebensdauer von Cache-Objekten:"
7035
+
7036
+ #: SetupGuide_Plugin_Admin.php:1139
7037
+ msgid "Measuring"
7038
+ msgstr "Messung"
7039
+
7040
+ #: inc/options/common/header.php:342
7041
+ msgid "Media"
7042
+ msgstr "Medien"
7043
+
7044
+ #: inc/options/browsercache.php:606
7045
+ msgid "Media &amp; Other Files"
7046
+ msgstr "Medien und andere Dateien"
7047
+
7048
+ #: Extension_ImageService_Plugin_Admin.php:133
7049
+ msgid "Media Library"
7050
+ msgstr "Medienbibliothek"
7051
+
7052
+ #: Cdn_AdminActions.php:75
7053
+ msgid "Media Library export"
7054
+ msgstr "Export der Medienbibliothek"
7055
+
7056
+ #: Cdn_AdminActions.php:148
7057
+ msgid "Media Library import"
7058
+ msgstr "Medienbibliothek importieren"
7059
+
7060
+ #: Generic_Plugin_Admin.php:793
7061
+ msgid "Media Query string has been successfully updated."
7062
+ msgstr "Die Medienabfragezeichenfolge wurde erfolgreich aktualisiert."
7063
+
7064
+ #: BrowserCache_ConfigLabels.php:68
7065
+ msgid "media-src:"
7066
+ msgstr "media-src:"
7067
+
7068
+ #: Extension_CloudFlare_Page_View.php:545
7069
+ msgid "Medium"
7070
+ msgstr "Mittel"
7071
+
7072
+ #: inc/lightbox/self_test.php:202
7073
+ msgid "Memcache extension:"
7074
+ msgstr "Memcache-Erweiterung:"
7075
+
7076
+ #: inc/options/general.php:154 UsageStatistics_Page_View.php:405
7077
+ #: Util_Ui.php:1036
7078
+ msgid "Memcached"
7079
+ msgstr "Zwischengespeichert"
7080
+
7081
+ #: Generic_Plugin_Admin.php:785
7082
+ msgid "Memcached cache(s) successfully emptied."
7083
+ msgstr "Memcache-Cache(s) erfolgreich geleert."
7084
+
7085
+ #: inc/lightbox/self_test.php:193
7086
+ msgid "Memcached extension:"
7087
+ msgstr "Memcache-Erweiterung:"
7088
+
7089
+ #: Util_ConfigLabel.php:23
7090
+ msgid ""
7091
+ "Memcached hostname:port / <acronym title=\"Internet Protocol\">IP</acronym>:"
7092
+ "port:"
7093
+ msgstr ""
7094
+ "Memcached-Hostname:Port / <acronym title=\"Internetprotokoll\">IP</acronym> :"
7095
+ "Port:"
7096
+
7097
+ #: Util_ConfigLabel.php:26
7098
+ msgid "Memcached password:"
7099
+ msgstr "Memcache-Passwort:"
7100
+
7101
+ #: UsageStatistics_Widget_View.php:44
7102
+ msgid "Memcached Usage"
7103
+ msgstr "Memcache-Nutzung"
7104
+
7105
+ #: Util_ConfigLabel.php:25
7106
+ msgid "Memcached username:"
7107
+ msgstr "Memcached-Benutzername:"
7108
+
7109
+ #: UsageStatistics_Page_View.php:377
7110
+ msgid "Memory per request (MB)"
7111
+ msgstr "Speicher pro Anfrage (MB)"
7112
+
7113
+ #: UsageStatistics_Page_View.php:373
7114
+ msgid "Memory used: "
7115
+ msgstr "Verwendeter Speicher:"
7116
+
7117
+ #: inc/options/minify/csstidy2.php:31
7118
+ msgid "Merge selectors with the same properties (fast)"
7119
+ msgstr "Selektoren mit denselben Eigenschaften zusammenführen (schnell)"
7120
+
7121
+ #: Generic_ConfigLabels.php:12 inc/options/common/header.php:120
7122
+ #: inc/options/general.php:545
7123
+ msgid "Message Bus"
7124
+ msgstr "Nachrichtenbus"
7125
+
7126
+ #: Extension_NewRelic_Widget_View_Browser.php:8
7127
+ msgid "Metrics are not available for browser applications"
7128
+ msgstr "Metriken sind für Browseranwendungen nicht verfügbar"
7129
+
7130
+ #: Cdn_Plugin_Admin.php:241
7131
+ msgid "Microsoft Azure Storage"
7132
+ msgstr "Microsoft Azure-Speicher"
7133
+
7134
+ #: CdnEngine_S3.php:44
7135
+ msgid "Middle East (Bahrain)"
7136
+ msgstr "Mittlerer Osten (Bahrain)"
7137
+
7138
+ #: inc/lightbox/self_test.php:230
7139
+ msgid "Mime type detection:"
7140
+ msgstr "Mime-Typ-Erkennung:"
7141
+
7142
+ #: Minify_Plugin_Admin.php:192 Minify_Plugin_Admin.php:200
7143
+ msgid "Minification"
7144
+ msgstr "Minimierung"
7145
+
7146
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
7147
+ #: inc/options/about.php:181
7148
+ msgid ""
7149
+ "Minification (concatenation and white space removal) of inline, external or "
7150
+ "3rd party JavaScript / %1$sCSS%2$s with automated updates"
7151
+ msgstr ""
7152
+ "Minimierung (Verkettung und Entfernung von Leerzeichen) von Inline-, "
7153
+ "externem oder Drittanbieter-JavaScript / %1$sCSS%2$s mit automatischen "
7154
+ "Updates"
7155
+
7156
+ #. translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
7157
+ #: inc/options/general.php:221
7158
+ msgid ""
7159
+ "Minification can decrease file size of %1$sHTML%2$s, %3$sCSS%4$s, %5$sJS%6$s "
7160
+ "and feeds respectively by ~10%% on average."
7161
+ msgstr ""
7162
+ "Die Minimierung kann die Dateigröße von %1$sHTML%2$s, %3$sCSS%4$s, "
7163
+ "%5$sJS%6$s bzw. Feeds um durchschnittlich ~10 %% verringern."
7164
+
7165
+ #: Minify_HelpPopup_View.php:33
7166
+ msgid ""
7167
+ "Minification is a process of reducing the file size to improve user "
7168
+ "experience and it requires\n"
7169
+ "\t\t\t\t\ttesting in order to get it right &mdash; as such it doesn't work "
7170
+ "for everyone."
7171
+ msgstr ""
7172
+ "Die Minimierung ist ein Prozess zur Reduzierung der Dateigröße, um die "
7173
+ "Benutzererfahrung zu verbessern, und erfordert Tests, um es richtig zu "
7174
+ "machen – daher funktioniert es nicht für alle."
7175
+
7176
+ #: inc/options/about.php:175
7177
+ msgid "Minification of posts / pages and feeds"
7178
+ msgstr "Minimierung von Beiträgen / Seiten und Feeds"
7179
+
7180
+ #: Extension_CloudFlare_Page_View.php:145
7181
+ msgid "Minified JS Rocket Loader Exclude:"
7182
+ msgstr "Minimierter JS Rocket Loader Ausschließen:"
7183
+
7184
+ #: Minify_Plugin.php:317
7185
+ msgid "Minified using %s%s"
7186
+ msgstr "Minifiziert mit %s%s"
7187
+
7188
+ #: Extension_NewRelic_AdminNotes.php:21 FeatureShowcase_Plugin_Admin.php:372
7189
+ #: inc/options/common/header.php:61 inc/options/general.php:190
7190
+ #: inc/options/minify.php:344 inc/options/minify.php:363
7191
+ #: inc/options/minify.php:383 Minify_ConfigLabels.php:9 Minify_Plugin.php:306
7192
+ #: Minify_Plugin_Admin.php:52 Root_AdminMenu.php:67 Root_AdminMenu.php:68
7193
+ #: UsageStatistics_Page_View.php:214
7194
+ msgid "Minify"
7195
+ msgstr "Minimieren"
7196
+
7197
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
7198
+ #: Extension_CloudFlare_Page_View.php:392
7199
+ msgid "Minify %1$sCSS%2$s:"
7200
+ msgstr "%1$sCSS%2$s verkleinern:"
7201
+
7202
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
7203
+ #: Extension_CloudFlare_Page_View.php:431
7204
+ msgid "Minify %1$sHTML%2$s content."
7205
+ msgstr "Minimiere %1$sHTML%2$s-Inhalt."
7206
+
7207
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
7208
+ #: Extension_CloudFlare_Page_View.php:415
7209
+ msgid "Minify %1$sHTML%2$s:"
7210
+ msgstr "%1$sHTML%2$s verkleinern:"
7211
+
7212
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
7213
+ #: Extension_CloudFlare_Page_View.php:369
7214
+ msgid "Minify %1$sJS%2$s:"
7215
+ msgstr "Minimiere %1$sJS%2$s:"
7216
+
7217
+ #: inc/options/general.php:277 inc/options/general.php:307
7218
+ msgid "Minify (default)"
7219
+ msgstr "Minimieren (Standard)"
7220
+
7221
+ #: Minify_ConfigLabels.php:7
7222
+ msgid "Minify Cache Method:"
7223
+ msgstr "Cache-Minify-Methode:"
7224
+
7225
+ #: Generic_Plugin_Admin.php:792
7226
+ msgid "Minify cache successfully emptied."
7227
+ msgstr "Minify-Cache erfolgreich geleert."
7228
+
7229
+ #: inc/options/minify.php:312 inc/options/minify.php:649
7230
+ msgid "Minify engine settings:"
7231
+ msgstr "Engine-Einstellungen minimieren:"
7232
+
7233
+ #: Minify_ConfigLabels.php:16
7234
+ msgid "Minify error notification:"
7235
+ msgstr "Fehlermeldung minimieren:"
7236
+
7237
+ #: Cdn_AdminActions.php:251
7238
+ msgid "Minify files export"
7239
+ msgstr "Exportieren von Dateien minimieren"
7240
+
7241
+ #: inc/options/general.php:239
7242
+ msgid "Minify frequently asked questions"
7243
+ msgstr "Minimieren Sie häufig gestellte Fragen"
7244
+
7245
+ #: Extension_CloudFlare_Page_View.php:382
7246
+ msgid "Minify JavaScript files."
7247
+ msgstr "Minimieren Sie JavaScript-Dateien."
7248
+
7249
+ #: inc/options/minify.php:294 inc/options/minify.php:632
7250
+ msgid "Minify method:"
7251
+ msgstr "Minify-Methode:"
7252
+
7253
+ #: Minify_ConfigLabels.php:13
7254
+ msgid "Minify mode:"
7255
+ msgstr "Minify-Modus:"
7256
+
7257
+ #: inc/options/minify.php:301 inc/options/minify.php:639
7258
+ msgid "Minify only"
7259
+ msgstr "Nur verkleinern"
7260
+
7261
+ #: Minify_ConfigLabels.php:80
7262
+ msgid "Minify only, do not obfuscate local symbols"
7263
+ msgstr "Nur verkleinern, lokale Symbole nicht verschleiern"
7264
+
7265
+ #: Generic_AdminNotes.php:227
7266
+ msgid "minify settings"
7267
+ msgstr "Einstellungen minimieren"
7268
+
7269
+ #. translators: 1 minify engine name, HTML span tag indicating engine enabled/disabled.
7270
+ #: inc/options/minify.php:26
7271
+ msgid "Minify via %1$s is currently %2$s."
7272
+ msgstr "Minimieren über %1$s ist derzeit %2$s."
7273
+
7274
+ #: Minify_ConfigLabels.php:8 UsageStatistics_Page_View.php:218
7275
+ msgid "Minify:"
7276
+ msgstr "Minimieren:"
7277
+
7278
+ #: Minify_Plugin_Admin.php:148
7279
+ msgid "Minify: %s."
7280
+ msgstr "Minimieren: %s."
7281
+
7282
+ #: Extension_CloudFlare_Page_View.php:512
7283
+ msgid "Mirage:"
7284
+ msgstr "Fata Morgana:"
7285
+
7286
+ #: inc/options/common/header.php:185
7287
+ msgid "Mirrors"
7288
+ msgstr "Spiegel"
7289
+
7290
+ #: inc/options/common/header.php:142 inc/options/general.php:723
7291
+ msgid "Miscellaneous"
7292
+ msgstr "Sonstig"
7293
+
7294
+ #: Extension_ImageService_Plugin_Admin.php:1283
7295
+ msgid "Missing converted attachment id."
7296
+ msgstr "Fehlende konvertierte Anhangs-ID."
7297
+
7298
+ #: Extension_ImageService_Plugin_Admin.php:1169
7299
+ #: Extension_ImageService_Plugin_Admin.php:1255
7300
+ #: Extension_ImageService_Plugin_Admin.php:1291
7301
+ msgid "Missing input post id."
7302
+ msgstr "Fehlende Eingabe-Post-ID."
7303
+
7304
+ #: Extension_CloudFlare_Page_View.php:482
7305
+ msgid "Mobile redirect:"
7306
+ msgstr "Mobile Weiterleitung:"
7307
+
7308
+ #: Cdn_AdminActions.php:195
7309
+ msgid "Modify attachment URLs"
7310
+ msgstr "Anhänge-URLs ändern"
7311
+
7312
+ #: Extension_NewRelic_GeneralPage_View.php:9
7313
+ #: Extension_NewRelic_Plugin_Admin.php:97
7314
+ #: Extension_NewRelic_Plugin_Admin.php:98 inc/options/common/header.php:126
7315
+ msgid "Monitoring"
7316
+ msgstr "Überwachung"
7317
+
7318
+ #: PgCache_ConfigLabels.php:34
7319
+ msgid "Monthly archive pages"
7320
+ msgstr "Monatliche Archivseiten"
7321
+
7322
+ #: Extension_ImageService_Page_View.php:213
7323
+ msgid "Monthly limit:"
7324
+ msgstr "Monatliches Limit:"
7325
+
7326
+ #: Extension_ImageService_Page_View.php:209
7327
+ msgid "Monthly requests:"
7328
+ msgstr "Monatliche Anfragen:"
7329
+
7330
+ #: SetupGuide_Plugin_Admin.php:1068
7331
+ msgid "More Caching Options"
7332
+ msgstr "Weitere Caching-Optionen"
7333
+
7334
+ #: FeatureShowcase_Plugin_Admin.php:247 FeatureShowcase_Plugin_Admin.php:259
7335
+ #: FeatureShowcase_Plugin_Admin.php:271 FeatureShowcase_Plugin_Admin.php:283
7336
+ #: FeatureShowcase_Plugin_Admin.php:295 FeatureShowcase_Plugin_Admin.php:307
7337
+ #: FeatureShowcase_Plugin_Admin.php:319 FeatureShowcase_Plugin_Admin.php:331
7338
+ #: FeatureShowcase_Plugin_Admin.php:343 FeatureShowcase_Plugin_Admin.php:355
7339
+ #: FeatureShowcase_Plugin_Admin.php:367 FeatureShowcase_Plugin_Admin.php:379
7340
+ #: FeatureShowcase_Plugin_Admin.php:391 FeatureShowcase_Plugin_Admin.php:403
7341
+ #: FeatureShowcase_Plugin_Admin.php:415 FeatureShowcase_Plugin_Admin.php:427
7342
+ #: FeatureShowcase_Plugin_Admin.php:439 FeatureShowcase_Plugin_Admin.php:451
7343
+ #: FeatureShowcase_Plugin_Admin.php:463 FeatureShowcase_Plugin_Admin.php:475
7344
+ msgid "More info"
7345
+ msgstr "Mehr Info"
7346
+
7347
+ #: inc/lightbox/self_test.php:136
7348
+ msgid "Multibyte String support:"
7349
+ msgstr "Unterstützung für Multibyte-Strings:"
7350
+
7351
+ #: inc/options/parts/memcached.php:23
7352
+ #: inc/options/parts/memcached_extension.php:25
7353
+ msgid ""
7354
+ "Multiple servers may be used and seperated by a comma; e.g. 192.168.1.100:"
7355
+ "11211, domain.com:22122"
7356
+ msgstr ""
7357
+ "Es können mehrere Server verwendet und durch ein Komma getrennt werden; z.B. "
7358
+ "192.168.1.100:11211, domain.com:22122"
7359
+
7360
+ #: inc/options/parts/redis.php:30 inc/options/parts/redis_extension.php:32
7361
+ msgid ""
7362
+ "Multiple servers may be used and seperated by a comma; e.g. 192.168.1.100:"
7363
+ "11211, domain.com:22122. To use TLS, prefix server with tls://"
7364
+ msgstr ""
7365
+ "Es können mehrere Server verwendet und durch ein Komma getrennt werden; z.B. "
7366
+ "192.168.1.100:11211, domain.com:22122. Um TLS zu verwenden, stellen Sie dem "
7367
+ "Server tls:// voran"
7368
+
7369
+ #: inc/options/general.php:171 Util_Ui.php:1055
7370
+ msgid "Multiple Servers:"
7371
+ msgstr "Mehrere Server:"
7372
+
7373
+ #: Extension_CloudFlare_Plugin.php:157
7374
+ msgid "My Websites"
7375
+ msgstr "Meine Webseiten"
7376
+
7377
+ #: Cdnfsd_MaxCdn_Popup_View_Zone.php:19
7378
+ #: Cdnfsd_StackPath_Popup_View_Zone.php:19
7379
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Actualize.php:37
7380
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Create.php:35
7381
+ #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:12
7382
+ msgid "Name:"
7383
+ msgstr "Name:"
7384
+
7385
+ #: inc/email/support_request.php:14
7386
+ msgid "Name: "
7387
+ msgstr "Name:"
7388
+
7389
+ #: inc/options/general.php:297
7390
+ msgid "Narcissus"
7391
+ msgstr "Narzisse"
7392
+
7393
+ #: SetupGuide_Plugin_Admin.php:1372
7394
+ msgid "Need help?"
7395
+ msgstr "Brauchen Sie Hilfe?"
7396
+
7397
+ #. translators: 1 The opening anchor tag linking to our support page, 2 its closing tag.
7398
+ #: inc/options/minify/css.php:26
7399
+ msgid ""
7400
+ "Need help? Take a look at our %1$spremium support, customization and audit "
7401
+ "services%2$s."
7402
+ msgstr ""
7403
+ "Brauchen Sie Hilfe? Werfen Sie einen Blick auf unseren %1$sPremium-Support, "
7404
+ "Anpassungs- und Prüfungsservices%2$s."
7405
+
7406
+ #: Extension_FeedBurner_Plugin_Admin.php:43
7407
+ msgid "Network Admin has no main URL."
7408
+ msgstr "Network Admin hat keine Haupt-URL."
7409
+
7410
+ #: inc/options/general.php:845 inc/options/general.php:871
7411
+ msgid "Network File System"
7412
+ msgstr "Netzwerkdateisystem"
7413
+
7414
+ #: inc/lightbox/self_test.php:529
7415
+ msgid "Network mode:"
7416
+ msgstr "Netzwerkmodus:"
7417
+
7418
+ #: Extension_CloudFlare_GeneralPage_View.php:8
7419
+ msgid "Network Performance &amp; Security powered by CloudFlare"
7420
+ msgstr "Netzwerkleistung und -sicherheit powered by CloudFlare"
7421
+
7422
+ #: Extension_ImageService_Page_View.php:98
7423
+ msgid "Never"
7424
+ msgstr "Niemals"
7425
+
7426
+ #: PgCache_ConfigLabels.php:50
7427
+ msgid "Never cache pages associated with these categories:"
7428
+ msgstr "Cachen Sie niemals Seiten, die diesen Kategorien zugeordnet sind:"
7429
+
7430
+ #: PgCache_ConfigLabels.php:52
7431
+ msgid "Never cache pages by these authors:"
7432
+ msgstr "Niemals Seiten dieser Autoren zwischenspeichern:"
7433
+
7434
+ #: inc/options/pgcache.php:670
7435
+ msgid "Never cache pages that use the specified cookies."
7436
+ msgstr "Cachen Sie niemals Seiten, die die angegebenen Cookies verwenden."
7437
+
7438
+ #: PgCache_ConfigLabels.php:53
7439
+ msgid "Never cache pages that use these custom fields:"
7440
+ msgstr ""
7441
+ "Cachen Sie niemals Seiten, die diese benutzerdefinierten Felder verwenden:"
7442
+
7443
+ #: PgCache_ConfigLabels.php:51
7444
+ msgid "Never cache pages that use these tags:"
7445
+ msgstr "Cachen Sie niemals Seiten, die diese Tags verwenden:"
7446
+
7447
+ #: DbCache_ConfigLabels.php:13 PgCache_ConfigLabels.php:49
7448
+ msgid "Never cache the following pages:"
7449
+ msgstr "Cachen Sie niemals die folgenden Seiten:"
7450
+
7451
+ #: Minify_ConfigLabels.php:35
7452
+ msgid ""
7453
+ "Never minify the following <acronym title=\"Cascading Style Sheet\">"
7454
+ "CSS</acronym> files:"
7455
+ msgstr ""
7456
+ "Minimieren Sie niemals die folgenden <acronym title=\"Cascading Stylesheet\">"
7457
+ "CSS</acronym> -Dateien:"
7458
+
7459
+ #: Minify_ConfigLabels.php:34
7460
+ msgid ""
7461
+ "Never minify the following <acronym title=\"JavaScript\">JS</acronym> files:"
7462
+ msgstr ""
7463
+ "Minimieren Sie niemals die folgenden <acronym title=\"JavaScript\">"
7464
+ "JS</acronym> -Dateien:"
7465
+
7466
+ #: Minify_ConfigLabels.php:33
7467
+ msgid "Never minify the following pages:"
7468
+ msgstr "Minimieren Sie niemals die folgenden Seiten:"
7469
+
7470
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
7471
+ #: inc/options/browsercache.php:287
7472
+ msgid "Never process 404 (not found) events for the specified %1$sURI%2$ss."
7473
+ msgstr ""
7474
+ "Niemals 404-Ereignisse (nicht gefunden) für den angegebenen %1$sURI%2$ss "
7475
+ "verarbeiten."
7476
+
7477
+ #: inc/options/pgcache.php:661
7478
+ msgid "Never send cache pages for these user agents."
7479
+ msgstr "Senden Sie niemals Cache-Seiten für diese Benutzeragenten."
7480
+
7481
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:36
7482
+ msgid "New customer? Sign up now to speed up your site!"
7483
+ msgstr "Neukunde? Melden Sie sich jetzt an, um Ihre Website zu beschleunigen!"
7484
+
7485
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:29
7486
+ #: Cdn_StackPath_Widget_View_Unauthorized.php:21
7487
+ #: Extension_Swarmify_Widget_View_NotConfigured.php:10
7488
+ msgid "New customers"
7489
+ msgstr "Neue Kunden"
7490
+
7491
+ #: Extension_NewRelic_Plugin_Admin.php:146
7492
+ msgid "New Relic is not running correctly. "
7493
+ msgstr "New Relic läuft nicht richtig."
7494
+
7495
+ #. translators: 3 opening HTML a tag to NewRelic documentation for PHP, 4 closing HTML a tag.
7496
+ #: Extension_NewRelic_GeneralPage_View.php:22
7497
+ msgid ""
7498
+ "New Relic may not be installed or not active on this server. %1$sSign up for "
7499
+ "a (free) account%2$s. Visit %3$sNew Relic%4$s for installation instructions."
7500
+ msgstr ""
7501
+ "Möglicherweise ist New Relic auf diesem Server nicht installiert oder nicht "
7502
+ "aktiv. %1$sRegistrieren Sie sich für ein (kostenloses) Konto%2$s. Besuchen "
7503
+ "Sie %3$sNew Relic%4$s für Installationsanweisungen."
7504
+
7505
+ #: inc/options/install.php:354
7506
+ msgid "New Relic Module"
7507
+ msgstr "Neues Relic-Modul"
7508
+
7509
+ #: Generic_Plugin_Admin.php:811
7510
+ msgid "New relic settings have been updated."
7511
+ msgstr "Neue Relikteinstellungen wurden aktualisiert."
7512
+
7513
+ #: Extension_NewRelic_Page_View_Apm.php:15
7514
+ msgid "NewRelic extension is currently"
7515
+ msgstr "NewRelic-Erweiterung ist derzeit"
7516
+
7517
+ #: Generic_Plugin_WidgetNews.php:50
7518
+ msgid "News"
7519
+ msgstr "Nachrichten"
7520
+
7521
+ #: inc/wizard/template.php:166
7522
+ msgid "NEXT"
7523
+ msgstr "NÄCHSTE"
7524
+
7525
+ #: Cdnfsd_CloudFront_Popup_View_Intro.php:57
7526
+ #: Cdnfsd_LimeLight_Popup_View_Intro.php:46
7527
+ #: Cdnfsd_MaxCdn_Popup_View_Intro.php:35
7528
+ #: Cdnfsd_StackPath2_Popup_View_Intro.php:41
7529
+ #: Cdnfsd_StackPath_Popup_View_Intro.php:35
7530
+ #: Cdn_Highwinds_Popup_View_Intro.php:29 Cdn_LimeLight_Popup_View_Intro.php:53
7531
+ #: Cdn_MaxCdn_Popup_View_Intro.php:35 Cdn_RackSpaceCdn_Popup_View_Intro.php:56
7532
+ #: Cdn_RackSpaceCdn_Popup_View_Regions.php:50
7533
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Create.php:137
7534
+ #: Cdn_RackSpaceCloudFiles_Popup_View_Intro.php:57
7535
+ #: Cdn_RackSpaceCloudFiles_Popup_View_Regions.php:52
7536
+ #: Cdn_StackPath2_Popup_View_Intro.php:43
7537
+ #: Cdn_StackPath_Popup_View_Intro.php:50
7538
+ #: Extension_CloudFlare_Popup_View_Intro.php:58
7539
+ #: Extension_CloudFlare_Popup_View_Zones.php:68
7540
+ msgid "Next"
7541
+ msgstr "Nächste"
7542
+
7543
+ #: inc/options/general.php:159
7544
+ msgid "Nginx + Memcached"
7545
+ msgstr "Nginx + Memcache"
7546
+
7547
+ #: Generic_ConfigLabels.php:16
7548
+ msgid "Nginx server configuration file path"
7549
+ msgstr "Pfad der Konfigurationsdatei des Nginx-Servers"
7550
+
7551
+ #. translators: 1: HTML input button to hide message.
7552
+ #: Generic_AdminNotes.php:142
7553
+ msgid ""
7554
+ "nginx.conf rules have been updated. Please restart nginx server to provide a "
7555
+ "consistent user experience. %1$s"
7556
+ msgstr ""
7557
+ "nginx.conf-Regeln wurden aktualisiert. Bitte starten Sie den Nginx-Server "
7558
+ "neu, um eine konsistente Benutzererfahrung zu bieten. %1$s"
7559
+
7560
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
7561
+ #: inc/options/minify.php:794
7562
+ msgid "No %1$sCSS%2$s files added"
7563
+ msgstr "Keine %1$sCSS%2$s-Dateien hinzugefügt"
7564
+
7565
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
7566
+ #: inc/options/minify.php:539
7567
+ msgid "No %1$sJS%2$s files added"
7568
+ msgstr "Keine %1$sJS%2$s-Dateien hinzugefügt"
7569
+
7570
+ #: BrowserCache_Page_View_SectionSecurity.php:521
7571
+ msgid "No = Enforce HPKP"
7572
+ msgstr "Nein = HPKP erzwingen"
7573
+
7574
+ #: UsageStatistics_Page_View.php:14
7575
+ msgid "No data collected yet"
7576
+ msgstr "Noch keine Daten gesammelt"
7577
+
7578
+ #: inc/lightbox/minify_recommendations.php:75
7579
+ msgid "No files found."
7580
+ msgstr "Keine Dateien gefunden."
7581
+
7582
+ #: CacheGroups_Plugin_Admin_View.php:313
7583
+ msgid ""
7584
+ "No groups added. All Cookies recieve the same page and minify cache results."
7585
+ msgstr ""
7586
+ "Keine Gruppen hinzugefügt. Alle Cookies erhalten die gleiche Seite und "
7587
+ "minimieren die Cache-Ergebnisse."
7588
+
7589
+ #: CacheGroups_Plugin_Admin_View.php:229
7590
+ msgid ""
7591
+ "No groups added. All referrers recieve the same page and minify cache "
7592
+ "results."
7593
+ msgstr ""
7594
+ "Keine Gruppen hinzugefügt. Alle Referrer erhalten die gleiche Seite und "
7595
+ "minimieren die Cache-Ergebnisse."
7596
+
7597
+ #: CacheGroups_Plugin_Admin_View.php:124
7598
+ msgid ""
7599
+ "No groups added. All user agents recieve the same page and minify cache "
7600
+ "results."
7601
+ msgstr ""
7602
+ "Keine Gruppen hinzugefügt. Alle Benutzeragenten erhalten die gleiche Seite "
7603
+ "und minimieren die Cache-Ergebnisse."
7604
+
7605
+ #: Extension_FragmentCache_Page_View.php:80
7606
+ msgid "No groups have been registered."
7607
+ msgstr "Es wurden keine Gruppen registriert."
7608
+
7609
+ #: CdnEngine_Mirror_StackPath.php:55 CdnEngine_Mirror_StackPath.php:102
7610
+ msgid "No zone defined"
7611
+ msgstr "Keine Zone definiert"
7612
+
7613
+ #: CdnEngine_Mirror_MaxCdn.php:73 CdnEngine_Mirror_MaxCdn.php:149
7614
+ msgid "No zones match site: %s or %s."
7615
+ msgstr "Keine Zonen stimmen mit Website überein: %s oder %s."
7616
+
7617
+ #: CdnEngine_Mirror_MaxCdn.php:71 CdnEngine_Mirror_MaxCdn.php:147
7618
+ msgid "No zones match site: %s."
7619
+ msgstr "Keine Zonen stimmen mit Website überein: %s."
7620
+
7621
+ #: inc/options/browsercache.php:570 inc/options/browsercache.php:653
7622
+ msgid "no-cache (\"max-age=0, private, no-store, no-cache, must-revalidate\")"
7623
+ msgstr "no-cache (\"max-age=0, private, no-store, no-cache, must-revalidate\")"
7624
+
7625
+ #: inc/options/parts/memcached.php:34
7626
+ #: inc/options/parts/memcached_extension.php:43
7627
+ msgid "Node Auto Discovery:"
7628
+ msgstr "Automatische Knotenerkennung:"
7629
+
7630
+ #: inc/options/minify.php:351 inc/options/minify.php:370
7631
+ #: inc/options/minify.php:389
7632
+ msgid "Non-blocking using \"async\""
7633
+ msgstr "Nicht blockierend mit \"async\""
7634
+
7635
+ #: inc/options/minify.php:355 inc/options/minify.php:374
7636
+ #: inc/options/minify.php:392
7637
+ msgid "Non-blocking using \"asyncsrc\""
7638
+ msgstr "Nicht blockierend mit \"asyncsrc\""
7639
+
7640
+ #: inc/options/minify.php:352 inc/options/minify.php:371
7641
+ #: inc/options/minify.php:390
7642
+ msgid "Non-blocking using \"defer\""
7643
+ msgstr "Nicht-blockieren mit \"defer\""
7644
+
7645
+ #: inc/options/minify.php:354 inc/options/minify.php:373
7646
+ #: inc/options/minify.php:391
7647
+ msgid "Non-blocking using \"extsrc\""
7648
+ msgstr "Nicht blockierend mit \"extsrc\""
7649
+
7650
+ #: inc/options/minify.php:350 inc/options/minify.php:369
7651
+ #: inc/options/minify.php:388
7652
+ msgid "Non-blocking using JS"
7653
+ msgstr "Nicht blockierend mit JS"
7654
+
7655
+ #: ObjectCache_ConfigLabels.php:13
7656
+ msgid "Non-persistent groups:"
7657
+ msgstr "Nicht persistente Gruppen:"
7658
+
7659
+ #: PgCache_ConfigLabels.php:55
7660
+ msgid "Non-trailing slash pages:"
7661
+ msgstr "Nicht abschließende Schrägstrichseiten:"
7662
+
7663
+ #: inc/options/minify/csstidy2.php:23 SetupGuide_Plugin_Admin.php:908
7664
+ msgid "None"
7665
+ msgstr "Keiner"
7666
+
7667
+ #: Cdn_MaxCdn_Popup_View_Zone.php:48
7668
+ msgid "Not active"
7669
+ msgstr "Nicht aktiv"
7670
+
7671
+ #: SystemOpCache_GeneralPage_View.php:21
7672
+ msgid "Not Available"
7673
+ msgstr "Nicht verfügbar"
7674
+
7675
+ #: inc/lightbox/self_test.php:197 inc/lightbox/self_test.php:206
7676
+ #: inc/lightbox/self_test.php:215 inc/lightbox/self_test.php:314
7677
+ msgid "Not available"
7678
+ msgstr "Nicht verfügbar"
7679
+
7680
+ #: UsageStatistics_Page_View.php:85
7681
+ msgid "Not cached"
7682
+ msgstr "Nicht zwischengespeichert"
7683
+
7684
+ #: Extension_ImageService_Plugin_Admin.php:548
7685
+ msgid "Not converted"
7686
+ msgstr "Nicht konvertiert"
7687
+
7688
+ #: Extension_ImageService_Page_View.php:180
7689
+ msgid "Not converted:"
7690
+ msgstr "Nicht konvertiert:"
7691
+
7692
+ #: inc/lightbox/self_test.php:515
7693
+ msgid "Not defined"
7694
+ msgstr "Nicht definiert"
7695
+
7696
+ #: inc/lightbox/self_test.php:170 inc/lightbox/self_test.php:323
7697
+ #: inc/lightbox/self_test.php:418
7698
+ msgid "Not detected"
7699
+ msgstr "Nicht erkannt"
7700
+
7701
+ #: SetupGuide_Plugin_Admin.php:913
7702
+ msgid "Not Enabled"
7703
+ msgstr "Nicht aktiviert"
7704
+
7705
+ #: inc/lightbox/self_test.php:140 inc/lightbox/self_test.php:150
7706
+ #: inc/lightbox/self_test.php:160 inc/lightbox/self_test.php:188
7707
+ #: inc/lightbox/self_test.php:224 inc/lightbox/self_test.php:236
7708
+ #: inc/lightbox/self_test.php:267 inc/lightbox/self_test.php:415
7709
+ msgid "Not installed"
7710
+ msgstr "Nicht installiert"
7711
+
7712
+ #: SetupGuide_Plugin_Admin.php:642
7713
+ msgid "Not present"
7714
+ msgstr "Nicht anwesend"
7715
+
7716
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
7717
+ #: inc/options/general.php:841
7718
+ msgid "Not recommended for %1$sNFS%2$s systems."
7719
+ msgstr "Nicht empfohlen für %1$sNFS%2$s-Systeme."
7720
+
7721
+ #: BrowserCache_Page_View_SectionSecurity.php:544
7722
+ msgid "Not Set"
7723
+ msgstr "Nicht festgelegt"
7724
+
7725
+ #: Cli.php:169
7726
+ msgid "Not specified what to flush"
7727
+ msgstr "Nicht angegeben, was zu spülen"
7728
+
7729
+ #: Extension_NewRelic_Service.php:97 Extension_NewRelic_Service.php:134
7730
+ msgid "Not Supported. (%s %s See %s page.)"
7731
+ msgstr "Nicht unterstützt. (%s %s Siehe Seite %s.)"
7732
+
7733
+ #: Extension_NewRelic_Service.php:50
7734
+ msgid "Not supported: %s."
7735
+ msgstr "Nicht unterstützt: %s."
7736
+
7737
+ #: inc/lightbox/self_test.php:463 inc/lightbox/self_test.php:469
7738
+ #: inc/lightbox/self_test.php:483 inc/lightbox/self_test.php:493
7739
+ msgid "Not write-able"
7740
+ msgstr "Nicht beschreibbar"
7741
+
7742
+ #: inc/options/cdn.php:26 inc/options/common/header.php:189
7743
+ #: inc/options/common/header.php:264 inc/options/pgcache.php:833
7744
+ msgid "Note(s)"
7745
+ msgstr "Anmerkungen)"
7746
+
7747
+ #: CacheGroups_Plugin_Admin_View.php:134 CacheGroups_Plugin_Admin_View.php:323
7748
+ #: inc/options/cdn.php:861 inc/options/install.php:361
7749
+ #: inc/options/minify.php:989
7750
+ msgid "Note(s):"
7751
+ msgstr "Anmerkungen):"
7752
+
7753
+ #. translators: 1 opening HTML strong tag, 2 closing HTML strong tag.
7754
+ #: inc/options/enterprise/dbcluster-config.php:24
7755
+ msgid ""
7756
+ "Note: Changes will have immediate effect on your database configuration. If "
7757
+ "the application stops working creating the settings file, edit or remove "
7758
+ "this configuration file manually at %1$s/wp-content/db-cluster-config."
7759
+ "php%2$s."
7760
+ msgstr ""
7761
+ "Hinweis: Änderungen wirken sich sofort auf Ihre Datenbankkonfiguration aus. "
7762
+ "Wenn die Anwendung beim Erstellen der Einstellungsdatei nicht mehr "
7763
+ "funktioniert, bearbeiten oder entfernen Sie diese Konfigurationsdatei "
7764
+ "manuell unter %1$s/wp-content/db-cluster-config.php%2$s."
7765
+
7766
+ #: inc/lightbox/minify_recommendations.php:134
7767
+ msgid "Notes"
7768
+ msgstr "Anmerkungen"
7769
+
7770
+ #. translators: 1 opening HTML a tag to W3TC install admin page.
7771
+ #: inc/options/general.php:815
7772
+ msgid ""
7773
+ "Notify of server configuration errors, if this option is disabled, the "
7774
+ "server configuration for active settings can be found on the %1$sinstall%2$s "
7775
+ "tab."
7776
+ msgstr ""
7777
+ "Bei Serverkonfigurationsfehlern benachrichtigen, wenn diese Option "
7778
+ "deaktiviert ist, kann die Serverkonfiguration für aktive Einstellungen auf "
7779
+ "der Registerkarte %1$sinstall%2$s gefunden werden."
7780
+
7781
+ #: inc/options/minify.php:150
7782
+ msgid "Notify when minify cache creation errors occur."
7783
+ msgstr "Benachrichtigen, wenn Fehler bei der Cache-Minifizierung auftreten."
7784
+
7785
+ #: inc/options/cdn.php:657
7786
+ msgid "Number of files processed per upload attempt."
7787
+ msgstr "Anzahl der pro Upload-Versuch verarbeiteten Dateien."
7788
+
7789
+ #: Cdn_AdminActions.php:55
7790
+ msgid "Number of processed queue items: %d"
7791
+ msgstr "Anzahl verarbeiteter Warteschlangenelemente: %d"
7792
+
7793
+ #: FeatureShowcase_Plugin_Admin.php:432 inc/options/common/header.php:73
7794
+ #: inc/options/general.php:372 ObjectCache_ConfigLabels.php:9
7795
+ #: ObjectCache_Plugin.php:249 ObjectCache_Plugin.php:309
7796
+ #: ObjectCache_Plugin.php:317 ObjectCache_Plugin.php:326 Root_AdminMenu.php:79
7797
+ #: Root_AdminMenu.php:80 SetupGuide_Plugin_Admin.php:1056
7798
+ #: SetupGuide_Plugin_Admin.php:1192 SetupGuide_Plugin_Admin.php:1206
7799
+ #: UsageStatistics_Page_View.php:250 UsageStatistics_Page_View.php:255
7800
+ msgid "Object Cache"
7801
+ msgstr "Objekt-Cache"
7802
+
7803
+ #: UsageStatistics_Page_ObjectCacheLog_View.php:14
7804
+ msgid "Object Cache Calls"
7805
+ msgstr "Objekt-Cache-Aufrufe"
7806
+
7807
+ #: ObjectCache_ConfigLabels.php:7
7808
+ msgid "Object Cache Method:"
7809
+ msgstr "Objekt-Cache-Methode:"
7810
+
7811
+ #: inc/options/general.php:1005
7812
+ msgid "Object Cache Purge Log"
7813
+ msgstr "Objekt-Cache-Bereinigungsprotokoll"
7814
+
7815
+ #: ObjectCache_Page_View_PurgeLog.php:14
7816
+ msgid "Object Cache Purges Log"
7817
+ msgstr "Objekt-Cache-Löschprotokoll"
7818
+
7819
+ #: Generic_Plugin_Admin.php:790
7820
+ msgid "Object cache successfully emptied."
7821
+ msgstr "Objektcache erfolgreich geleert."
7822
+
7823
+ #: ObjectCache_ConfigLabels.php:8
7824
+ msgid "Object Cache:"
7825
+ msgstr "Objekt-Cache:"
7826
+
7827
+ #: ObjectCache_Plugin_Admin.php:32
7828
+ msgid "Object Cache: %s."
7829
+ msgstr "Objekt-Cache: %s."
7830
+
7831
+ #. translators: 1: Cache hits, 2: Cache total cache objects, 3: Engine anme, 4: Reason.
7832
+ #: ObjectCache_WpObjectCache_Regular.php:859
7833
+ msgid "Object Caching %1$d/%2$d objects using %3$s%4$s"
7834
+ msgstr "Objekt-Caching von %1$d/%2$d Objekten mit %3$s%4$s"
7835
+
7836
+ #. translators: 3 closing HTML acronym tag, 4 closing HTML a tag.
7837
+ #: inc/options/general.php:389
7838
+ msgid ""
7839
+ "Object caching greatly increases performance for highly dynamic sites that "
7840
+ "use the %1$sObject Cache %2$sAPI%3$s%4$s."
7841
+ msgstr ""
7842
+ "Das Zwischenspeichern von Objekten erhöht die Leistung für hochdynamische "
7843
+ "Websites, die den %1$sObjekt-Cache %2$sAPI%3$s%4$s verwenden, erheblich."
7844
+
7845
+ #: ObjectCache_WpObjectCache_Regular.php:911
7846
+ msgid "Object caching is disabled"
7847
+ msgstr "Objekt-Caching ist deaktiviert"
7848
+
7849
+ #. translators: 1 HTML strong tag containing Objectcache Engine value, 2 HTML span tag containing Objectcache Engine enabled/disabled value.
7850
+ #: inc/options/objectcache.php:16
7851
+ msgid "Object caching via %1$s is currently %2$s"
7852
+ msgstr "Objekt-Caching über %1$s beträgt derzeit %2$s"
7853
+
7854
+ #: BrowserCache_ConfigLabels.php:69
7855
+ msgid "object-src:"
7856
+ msgstr "Objektquelle:"
7857
+
7858
+ #: inc/options/cdn/cf.php:180
7859
+ msgid ""
7860
+ "Objects in an S3 bucket served from CloudFront do not need to be publicly "
7861
+ "accessible. Set this value to disabled to ensure that objects are not "
7862
+ "publicly accessible and can only be accessed via CloudFront or with a "
7863
+ "suitable IAM role."
7864
+ msgstr ""
7865
+ "Objekte in einem S3-Bucket, der von CloudFront bereitgestellt wird, müssen "
7866
+ "nicht öffentlich zugänglich sein. Setzen Sie diesen Wert auf disabled, um "
7867
+ "sicherzustellen, dass Objekte nicht öffentlich zugänglich sind und nur über "
7868
+ "CloudFront oder mit einer geeigneten IAM-Rolle zugegriffen werden kann."
7869
+
7870
+ #: CacheGroups_Plugin_Admin_View.php:243
7871
+ msgid ""
7872
+ "of Cookies by specifying names in the Cookies field. Assign a set of Cookies "
7873
+ "to ensure that a unique cache is created for each Cookie group. Drag and "
7874
+ "drop groups into order (if needed) to determine their priority (top -&gt; "
7875
+ "down)."
7876
+ msgstr ""
7877
+ "von Cookies, indem Sie Namen im Feld Cookies angeben. Weisen Sie einen Satz "
7878
+ "Cookies zu, um sicherzustellen, dass für jede Cookie-Gruppe ein eindeutiger "
7879
+ "Cache erstellt wird. Ziehen Sie Gruppen per Drag-and-Drop in eine "
7880
+ "Reihenfolge (falls erforderlich), um ihre Priorität festzulegen (oben -&gt; "
7881
+ "unten)."
7882
+
7883
+ #: CacheGroups_Plugin_Admin_View.php:164
7884
+ msgid ""
7885
+ "of referrers by specifying names in the referrers field. Assign a set of "
7886
+ "referrers to use a specific theme, redirect them to another domain, create "
7887
+ "referrer groups to ensure that a unique cache is created for each referrer "
7888
+ "group. Drag and drop groups into order (if needed) to determine their "
7889
+ "priority (top -&gt; down)."
7890
+ msgstr ""
7891
+ "von Referrern durch Angabe von Namen im Referrer-Feld. Weisen Sie eine Reihe "
7892
+ "von Referrern zu, um ein bestimmtes Thema zu verwenden, leiten Sie sie auf "
7893
+ "eine andere Domain um, erstellen Sie Referrer-Gruppen, um sicherzustellen, "
7894
+ "dass für jede Referrer-Gruppe ein eindeutiger Cache erstellt wird. Ziehen "
7895
+ "Sie Gruppen per Drag-and-Drop in eine Reihenfolge (falls erforderlich), um "
7896
+ "ihre Priorität festzulegen (oben -&gt; unten)."
7897
+
7898
+ #: CacheGroups_Plugin_Admin_View.php:40
7899
+ msgid ""
7900
+ "of user agents by specifying names in the user agents field. Assign a set of "
7901
+ "user agents to use a specific theme, redirect them to another domain or if "
7902
+ "an existing mobile plugin is active, create user agent groups to ensure that "
7903
+ "a unique cache is created for each user agent group. Drag and drop groups "
7904
+ "into order (if needed) to determine their priority (top -&gt; down)."
7905
+ msgstr ""
7906
+ "von Benutzeragenten, indem Sie Namen im Feld Benutzeragenten angeben. Weisen "
7907
+ "Sie eine Reihe von Benutzeragenten zu, um ein bestimmtes Thema zu verwenden, "
7908
+ "leiten Sie sie auf eine andere Domäne um oder erstellen Sie "
7909
+ "Benutzeragentengruppen, wenn ein vorhandenes mobiles Plugin aktiv ist, um "
7910
+ "sicherzustellen, dass für jede Benutzeragentengruppe ein eindeutiger Cache "
7911
+ "erstellt wird. Ziehen Sie Gruppen per Drag-and-Drop in eine Reihenfolge "
7912
+ "(falls erforderlich), um ihre Priorität festzulegen (oben -&gt; unten)."
7913
+
7914
+ #: Extension_CloudFlare_Page_View.php:355
7915
+ #: Extension_CloudFlare_Page_View.php:523
7916
+ #: Extension_CloudFlare_Page_View.php:543
7917
+ #: Extension_CloudFlare_Page_View.php:733 inc/lightbox/self_test.php:296
7918
+ #: inc/lightbox/self_test.php:305 inc/lightbox/self_test.php:504
7919
+ #: inc/lightbox/self_test.php:533
7920
+ msgid "Off"
7921
+ msgstr "Aus"
7922
+
7923
+ #: CdnEngine_Mirror_Akamai.php:105 CdnEngine_Mirror_Cotendo.php:106
7924
+ #: CdnEngine_Mirror_Edgecast.php:59 CdnEngine_Mirror_MaxCdn.php:156
7925
+ #: inc/lightbox/self_test.php:461 inc/lightbox/self_test.php:481
7926
+ #: inc/lightbox/self_test.php:495
7927
+ msgid "OK"
7928
+ msgstr "OK"
7929
+
7930
+ #: Cdnfsd_TransparentCDN_Page.php:34
7931
+ msgid "Ok. Correct parameters"
7932
+ msgstr "OK. Richtige Parameter"
7933
+
7934
+ #: inc/lightbox/self_test.php:303 inc/lightbox/self_test.php:531
7935
+ msgid "On"
7936
+ msgstr "An"
7937
+
7938
+ #: Extension_CloudFlare_Page_View.php:356
7939
+ msgid "On (automatically run on the JavaScript resources on your site)"
7940
+ msgstr ""
7941
+ "Ein (wird automatisch auf den JavaScript-Ressourcen auf Ihrer Website "
7942
+ "ausgeführt)"
7943
+
7944
+ #. translators: 1 opening HTML a tag to W3TC General admin page, 2 closing HTML a tag.
7945
+ #: inc/options/install.php:22
7946
+ msgid ""
7947
+ "On the \"%1$sGeneral%2$s\" tab and select your caching methods for page, "
7948
+ "database and minify. In most cases, \"disk enhanced\" mode for page cache, "
7949
+ "\"disk\" mode for minify and \"disk\" mode for database caching are \"good\" "
7950
+ "settings."
7951
+ msgstr ""
7952
+ "Wählen Sie auf der Registerkarte \"%1$sAllgemein%2$s\" Ihre Caching-Methoden "
7953
+ "für Seite, Datenbank und Minimierung aus. In den meisten Fällen sind der "
7954
+ "„Disk Enhanced“-Modus für den Seitencache, der „Disk“-Modus für das "
7955
+ "Minimieren und der „Disk“-Modus für das Datenbank-Caching „gute“ "
7956
+ "Einstellungen."
7957
+
7958
+ #: inc/lightbox/self_test.php:294
7959
+ msgid "On:"
7960
+ msgstr "An:"
7961
+
7962
+ #. translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
7963
+ #: Minify_HelpPopup_View.php:100
7964
+ msgid ""
7965
+ "Once %1$sCSS%2$s is optimized, try %3$sJS%4$s minification. If auto mode "
7966
+ "doesn't work for\n"
7967
+ "\t\t\t\t\t\t\tyou, be sure to check the web browsers error console to "
7968
+ "quickly confirm that the optimization\n"
7969
+ "\t\t\t\t\t\t\tisn't working. If the JavaScript is working, you can either "
7970
+ "make additional optimizations for\n"
7971
+ "\t\t\t\t\t\t\tuser experience like experimenting with embed locations etc or "
7972
+ "further reducing file size etc.\n"
7973
+ "\t\t\t\t\t\t\tHowever, if you're having errors try the \"combine only\" "
7974
+ "option and if that still generates\n"
7975
+ "\t\t\t\t\t\t\terrors, there are bugs in the code of your theme or plugins or "
7976
+ "both that prevent minification\n"
7977
+ "\t\t\t\t\t\t\tof %5$sJS%6$s from working automatically."
7978
+ msgstr ""
7979
+ "Sobald %1$sCSS%2$s optimiert ist, versuchen Sie die %3$sJS%4$s-Minifizierung."
7980
+ " Wenn der Auto-Modus nicht funktioniert\n"
7981
+ "Überprüfen Sie unbedingt die Fehlerkonsole des Webbrowsers, um schnell zu "
7982
+ "bestätigen, dass die Optimierung erfolgt ist\n"
7983
+ "funktioniert nicht. Wenn das JavaScript funktioniert, können Sie entweder "
7984
+ "zusätzliche Optimierungen für vornehmen\n"
7985
+ "Benutzererfahrung wie das Experimentieren mit Einbettungspositionen usw. "
7986
+ "oder das weitere Reduzieren der Dateigröße usw.\n"
7987
+ "Wenn Sie jedoch Fehler haben, versuchen Sie die Option \"Nur kombinieren\" "
7988
+ "und wenn dies immer noch generiert wird\n"
7989
+ "Fehler, es gibt Fehler im Code Ihres Designs oder Plugins oder beides, die "
7990
+ "eine Minimierung verhindern\n"
7991
+ "von %5$sJS%6$s nicht mehr automatisch funktionieren."
7992
+
7993
+ #: SystemOpCache_GeneralPage_View.php:42
7994
+ msgid ""
7995
+ "Once enabled, each file request will update the cache with the latest "
7996
+ "version. When this setting is off, the Opcode Cache will not check, instead "
7997
+ "PHP must be restarted in order for setting changes to be reflected."
7998
+ msgstr ""
7999
+ "Nach der Aktivierung aktualisiert jede Dateianforderung den Cache mit der "
8000
+ "neuesten Version. Wenn diese Einstellung deaktiviert ist, wird der Opcode-"
8001
+ "Cache nicht überprüft, stattdessen muss PHP neu gestartet werden, damit die "
8002
+ "Einstellungsänderungen widergespiegelt werden."
8003
+
8004
+ #: BrowserCache_Page_View_SectionSecurity.php:811
8005
+ msgid "One of:"
8006
+ msgstr "Einer von:"
8007
+
8008
+ #. translators: 1: HTML input button to clear the cache, 2: HTML input button to hide message.
8009
+ #: Generic_AdminNotes.php:255
8010
+ msgid ""
8011
+ "One or more plugins have been activated or deactivated, please %1$s. %2$s"
8012
+ msgstr ""
8013
+ "Ein oder mehrere Plugins wurden aktiviert oder deaktiviert, bitte %1$s. %2$s"
8014
+
8015
+ #: inc/options/general.php:793
8016
+ msgid ""
8017
+ "Only one configuration file for whole network will be created and used. "
8018
+ "Recommended if all sites have the same configuration."
8019
+ msgstr ""
8020
+ "Es wird nur eine Konfigurationsdatei für das gesamte Netzwerk erstellt und "
8021
+ "verwendet. Empfohlen, wenn alle Sites die gleiche Konfiguration haben."
8022
+
8023
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
8024
+ #: inc/options/cdn.php:391
8025
+ msgid "Only purge %1$sCDN%2$s manually"
8026
+ msgstr "Löschen Sie %1$sCDN%2$s nur manuell"
8027
+
8028
+ #: inc/options/minify/csstidy2.php:30
8029
+ msgid "Only seperate selectors (split at ,)"
8030
+ msgstr "Nur separate Selektoren (geteilt bei ,)"
8031
+
8032
+ #: Extension_Swarmify_Page_View.php:73
8033
+ msgid "Only unauthenticated users will view optimized version of a given page."
8034
+ msgstr ""
8035
+ "Nur nicht authentifizierte Benutzer sehen die optimierte Version einer "
8036
+ "bestimmten Seite."
8037
+
8038
+ #: FeatureShowcase_Plugin_Admin.php:408 inc/options/common/header.php:65
8039
+ #: SystemOpCache_GeneralPage_View.php:8 SystemOpCache_GeneralPage_View.php:15
8040
+ #: SystemOpCache_Plugin_Admin.php:55
8041
+ msgid "Opcode Cache"
8042
+ msgstr "Opcode-Cache"
8043
+
8044
+ #: Generic_Plugin_Admin.php:786
8045
+ msgid "Opcode cache(s) successfully emptied."
8046
+ msgstr "Opcode-Cache(s) erfolgreich geleert."
8047
+
8048
+ #: inc/options/general.php:134 SystemOpCache_GeneralPage_View.php:29
8049
+ #: Util_Ui.php:1016
8050
+ msgid "Opcode: Alternative PHP Cache (APC / APCu)"
8051
+ msgstr "Opcode: Alternativer PHP-Cache (APC / APCu)"
8052
+
8053
+ #: inc/options/general.php:139 Util_Ui.php:1021
8054
+ msgid "Opcode: eAccelerator"
8055
+ msgstr "Opcode: eAccelerator"
8056
+
8057
+ #: inc/options/general.php:149 Util_Ui.php:1031
8058
+ msgid "Opcode: WinCache"
8059
+ msgstr "Operationscode: WinCache"
8060
+
8061
+ #: inc/options/general.php:144 Util_Ui.php:1026
8062
+ msgid "Opcode: XCache"
8063
+ msgstr "Opcode: XCache"
8064
+
8065
+ #: SystemOpCache_GeneralPage_View.php:25
8066
+ msgid "Opcode: Zend Opcache"
8067
+ msgstr "Opcode: Zend Opcache"
8068
+
8069
+ #: inc/lightbox/self_test.php:292
8070
+ msgid "Open basedir:"
8071
+ msgstr "Open basedir:"
8072
+
8073
+ #: Extension_NewRelic_Service.php:96
8074
+ msgid "Operating System"
8075
+ msgstr "Betriebssystem"
8076
+
8077
+ #: inc/options/dbcache.php:46
8078
+ msgid "operation."
8079
+ msgstr "Betrieb."
8080
+
8081
+ #: inc/options/minify.php:314
8082
+ msgid "Operations in areas:"
8083
+ msgstr "Einsätze in den Bereichen:"
8084
+
8085
+ #: Extension_Swarmify_Page_View.php:52
8086
+ msgid "Optimize &lt;video&gt; HTML tags"
8087
+ msgstr "&lt;video&gt; HTML-Tags optimieren"
8088
+
8089
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
8090
+ #: inc/options/general.php:867
8091
+ msgid "Optimize disk enhanced page and minify disk caching for %1$sNFS%2$s"
8092
+ msgstr ""
8093
+ "Optimieren Sie die datenträgeroptimierte Seite und minimieren Sie das "
8094
+ "Datenträger-Caching für %1$sNFS%2$s"
8095
+
8096
+ #: Extension_Swarmify_Page_View.php:62
8097
+ msgid "Optimize JWPlayer"
8098
+ msgstr "Optimieren Sie JWPlayer"
8099
+
8100
+ #: Minify_ConfigLabels.php:62
8101
+ msgid "Optimize shorthands:"
8102
+ msgstr "Kürzel optimieren:"
8103
+
8104
+ #: Extension_Swarmify_Page_View.php:53
8105
+ msgid "Optimize videos delivered using &lt;video&gt; HTML tag."
8106
+ msgstr ""
8107
+ "Optimieren Sie Videos, die mit dem HTML-Tag &lt;video&gt; bereitgestellt "
8108
+ "werden."
8109
+
8110
+ #: Extension_Swarmify_Page_View.php:63
8111
+ msgid "Optimize videos delivered using JWPlayer script."
8112
+ msgstr ""
8113
+ "Optimieren Sie Videos, die mit dem JWPlayer-Skript bereitgestellt werden."
8114
+
8115
+ #: Extension_Swarmify_Plugin_Admin.php:16
8116
+ msgid ""
8117
+ "Optimize your video performance by enabling the Swarmify SmartVideo™ "
8118
+ "solution."
8119
+ msgstr ""
8120
+ "Optimieren Sie Ihre Videoleistung, indem Sie die Swarmify SmartVideo™-Lösung "
8121
+ "aktivieren."
8122
+
8123
+ #: inc/options/about.php:39
8124
+ msgid "Optimized progressive render (pages start rendering immediately)"
8125
+ msgstr ""
8126
+ "Optimiertes progressives Rendern (Seiten beginnen sofort mit dem Rendern)"
8127
+
8128
+ #: Cli.php:289
8129
+ msgid "Option updated successfully."
8130
+ msgstr "Option erfolgreich aktualisiert."
8131
+
8132
+ #: Cli.php:291
8133
+ msgid "Option value update failed."
8134
+ msgstr "Aktualisierung des Optionswerts fehlgeschlagen."
8135
+
8136
+ #: inc/options/dashboard.php:65 inc/options/dashboard.php:66
8137
+ #: inc/options/dashboard.php:67 inc/options/dashboard.php:69
8138
+ #: inc/options/dashboard.php:73
8139
+ msgid "or"
8140
+ msgstr "oder"
8141
+
8142
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
8143
+ #: inc/options/cdn/azure.php:99
8144
+ msgid "or %1$sCNAME%2$s:"
8145
+ msgstr "oder %1$sCNAME%2$s:"
8146
+
8147
+ #: inc/options/cdn/s3.php:149
8148
+ msgid "or CNAME:"
8149
+ msgstr "oder CNAME:"
8150
+
8151
+ #: Generic_WidgetSpreadTheWord_View.php:17
8152
+ msgid "Or please share"
8153
+ msgstr "Oder bitte teilen"
8154
+
8155
+ #: Generic_Plugin_Admin.php:900
8156
+ msgid "or use FTP form to allow "
8157
+ msgstr "oder verwenden Sie das FTP-Formular, um dies zuzulassen"
8158
+
8159
+ #: Util_Activation.php:241
8160
+ msgid ""
8161
+ "or use FTP form to allow <strong>W3 Total Cache</strong> make it "
8162
+ "automatically."
8163
+ msgstr ""
8164
+ "oder verwenden Sie das FTP-Formular, damit <strong>W3 Total Cache</strong> "
8165
+ "es automatisch erstellt."
8166
+
8167
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
8168
+ #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:24
8169
+ msgid "Origin %1$sURL%2$s:"
8170
+ msgstr "Herkunft %1$sURL%2$s:"
8171
+
8172
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Actualize.php:41
8173
+ msgid "Origin host:"
8174
+ msgstr "Ursprungshost:"
8175
+
8176
+ #: Cdnfsd_MaxCdn_Popup_View_Zone.php:33 Cdnfsd_StackPath_Popup_View_Zone.php:33
8177
+ msgid "Origin IP Resolution:"
8178
+ msgstr "Ursprungs-IP-Auflösung:"
8179
+
8180
+ #: Cdnfsd_MaxCdn_Popup_View_Zone.php:27 Cdnfsd_StackPath_Popup_View_Zone.php:27
8181
+ msgid "Origin IP:"
8182
+ msgstr "Herkunfts-IP:"
8183
+
8184
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Actualize.php:45
8185
+ msgid "Origin protocol:"
8186
+ msgstr "Herkunftsprotokoll:"
8187
+
8188
+ #: Cdn_Plugin_Admin.php:166
8189
+ msgid "Origin Pull / Mirror:"
8190
+ msgstr "Ursprung ziehen / spiegeln:"
8191
+
8192
+ #: Cdn_Plugin_Admin.php:169
8193
+ msgid "Origin Push:"
8194
+ msgstr "Origin-Push:"
8195
+
8196
+ #: Cdnfsd_MaxCdn_Popup_View_Zone.php:23 Cdnfsd_StackPath_Popup_View_Zone.php:23
8197
+ msgid "Origin URL:"
8198
+ msgstr "Herkunfts-URL:"
8199
+
8200
+ #: Cdnfsd_CloudFront_Popup_View_Distribution.php:24
8201
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Create.php:63 inc/options/cdn/cf2.php:62
8202
+ msgid "Origin:"
8203
+ msgstr "Herkunft:"
8204
+
8205
+ #: inc/options/common/header.php:369 inc/options/install.php:282
8206
+ msgid "Other"
8207
+ msgstr "Sonstiges"
8208
+
8209
+ #. translators: 1 opening HTML a tag to W3TC Terms page, 2 closing HTML a tag.
8210
+ #: Licensing_Plugin_Admin.php:297
8211
+ msgid ""
8212
+ "Our terms of use and privacy policies have been updated. Please "
8213
+ "%1$sreview%2$s and accept them."
8214
+ msgstr ""
8215
+ "Unsere Nutzungsbedingungen und Datenschutzrichtlinien wurden aktualisiert. "
8216
+ "Bitte %1$süberprüfe%2$s und akzeptiere sie."
8217
+
8218
+ #: Extension_FragmentCache_Page_View.php:15
8219
+ #: Extension_FragmentCache_Page_View.php:65
8220
+ #: Extension_NewRelic_Widget_View_Apm.php:14
8221
+ msgid "Overview"
8222
+ msgstr "Überblick"
8223
+
8224
+ #: inc/options/pgcache.php:518
8225
+ msgid ""
8226
+ "Overwrites key of page caching via custom filters by postponing entry "
8227
+ "extraction during the init action."
8228
+ msgstr ""
8229
+ "Überschreibt den Schlüssel des Seiten-Cachings über benutzerdefinierte "
8230
+ "Filter, indem das Extrahieren von Einträgen während der Init-Aktion "
8231
+ "verschoben wird."
8232
+
8233
+ #: Extension_NewRelic_AdminNotes.php:19 FeatureShowcase_Plugin_Admin.php:360
8234
+ #: inc/options/common/header.php:57 inc/options/general.php:103
8235
+ #: PgCache_ConfigLabels.php:9 PgCache_Plugin.php:298 PgCache_Plugin.php:306
8236
+ #: PgCache_Plugin.php:314 Root_AdminMenu.php:61 Root_AdminMenu.php:62
8237
+ #: SetupGuide_Plugin_Admin.php:1048 SetupGuide_Plugin_Admin.php:1115
8238
+ #: UsageStatistics_Page_View.php:28
8239
+ msgid "Page Cache"
8240
+ msgstr "Seiten-Cache"
8241
+
8242
+ #: PgCache_ConfigLabels.php:7
8243
+ msgid "Page Cache Method:"
8244
+ msgstr "Seiten-Cache-Methode:"
8245
+
8246
+ #: inc/options/general.php:987
8247
+ msgid "Page Cache Purge Log"
8248
+ msgstr "Seiten-Cache-Löschprotokoll"
8249
+
8250
+ #: UsageStatistics_Page_PageCacheRequests_View.php:14
8251
+ msgid "Page Cache Reject Requests for "
8252
+ msgstr "Seiten-Cache-Ablehnungsanforderungen für"
8253
+
8254
+ #: Generic_Plugin_Admin.php:788
8255
+ msgid "Page cache successfully emptied."
8256
+ msgstr "Seitencache erfolgreich geleert."
8257
+
8258
+ #: PgCache_ConfigLabels.php:8
8259
+ msgid "Page Cache:"
8260
+ msgstr "Seiten-Cache:"
8261
+
8262
+ #: PgCache_Plugin_Admin.php:296
8263
+ msgid "Page Cache: %s."
8264
+ msgstr "Seiten-Cache: %s."
8265
+
8266
+ #: PgCache_Plugin.php:330
8267
+ msgid "Page Cache: All"
8268
+ msgstr "Seiten-Cache: Alle"
8269
+
8270
+ #: PgCache_Plugin.php:338
8271
+ msgid "Page Cache: Current Page"
8272
+ msgstr "Seiten-Cache: Aktuelle Seite"
8273
+
8274
+ #: FeatureShowcase_Plugin_Admin.php:362
8275
+ msgid ""
8276
+ "Page caching decreases the website response time, making pages load faster."
8277
+ msgstr ""
8278
+ "Seiten-Caching verkürzt die Reaktionszeit der Website, wodurch Seiten "
8279
+ "schneller geladen werden."
8280
+
8281
+ #. translators: 1: Engine name, 2: Reject reason placeholder, 3: Page key extension.
8282
+ #: PgCache_ContentGrabber.php:1590
8283
+ msgid "Page Caching using %1$s%2$s%3$s"
8284
+ msgstr "Seiten-Caching mit %1$s%2$s%3$s"
8285
+
8286
+ #. translators: 1 HTML strong tag containing PageCache Engine name, 2 HTML span tag containing PageCache Engine enabled/disabled.
8287
+ #: inc/options/pgcache.php:16
8288
+ msgid "Page caching via %1$s is currently %2$s"
8289
+ msgstr "Das Seiten-Caching über %1$s beträgt derzeit %2$s"
8290
+
8291
+ #: Extension_CloudFlare_GeneralPage_View.php:28
8292
+ msgid "Page Caching:"
8293
+ msgstr "Seiten-Caching:"
8294
+
8295
+ #: Extension_CloudFlare_Page_View.php:135
8296
+ msgid "Page caching:"
8297
+ msgstr "Seiten-Caching:"
8298
+
8299
+ #: Extension_NewRelic_Widget_View_Apm.php:39
8300
+ msgid "Page load times"
8301
+ msgstr "Seitenladezeiten"
8302
+
8303
+ #: Generic_ConfigLabels.php:13
8304
+ msgid ""
8305
+ "Page Speed <acronym title=\"Application Programming Interface\">API</acronym>"
8306
+ " Key:"
8307
+ msgstr ""
8308
+ "<acronym title=\"Programmierschnittstelle\">API-</acronym> Schlüssel für "
8309
+ "Seitengeschwindigkeit:"
8310
+
8311
+ #: PageSpeed_Plugin_Widget.php:55
8312
+ msgid "Page Speed Report"
8313
+ msgstr "Seitengeschwindigkeitsbericht"
8314
+
8315
+ #: inc/popup/pagespeed_results.php:11
8316
+ msgid "Page Speed Score:"
8317
+ msgstr "Pagespeed-Score:"
8318
+
8319
+ #: Cli.php:380
8320
+ msgid "PageCache Garbage cleanup failed: %s"
8321
+ msgstr "PageCache-Garbage-Bereinigung fehlgeschlagen: %s"
8322
+
8323
+ #: Cli.php:384
8324
+ msgid "PageCache Garbage cleanup triggered successfully."
8325
+ msgstr "PageCache-Garbage-Bereinigung erfolgreich ausgelöst."
8326
+
8327
+ #: Cli.php:412
8328
+ msgid "PageCache Priming did failed: %s"
8329
+ msgstr "PageCache-Priming ist fehlgeschlagen: %s"
8330
+
8331
+ #: Cli.php:416
8332
+ msgid "PageCache Priming triggered successfully."
8333
+ msgstr "PageCache-Priming erfolgreich ausgelöst."
8334
+
8335
+ #: SetupGuide_Plugin_Admin.php:1272
8336
+ msgid ""
8337
+ "Pages containing images and other objects can have their load time reduced "
8338
+ "by deferring them until they are needed. For example, images can be loaded "
8339
+ "when a visitor scrolls down the page to make them visible."
8340
+ msgstr ""
8341
+ "Die Ladezeit von Seiten, die Bilder und andere Objekte enthalten, kann "
8342
+ "verkürzt werden, indem sie verschoben werden, bis sie benötigt werden. "
8343
+ "Beispielsweise können Bilder geladen werden, wenn ein Besucher die Seite "
8344
+ "nach unten scrollt, um sie sichtbar zu machen."
8345
+
8346
+ #: PgCache_ConfigLabels.php:20
8347
+ msgid "Pages per interval:"
8348
+ msgstr "Seiten pro Intervall:"
8349
+
8350
+ #: UsageStatistics_GeneralPage_View.php:65
8351
+ msgid "Parse server access log"
8352
+ msgstr "Analysieren Sie das Serverzugriffsprotokoll"
8353
+
8354
+ #: inc/options/cdn/akamai.php:16 inc/options/cdn/cotendo.php:16
8355
+ msgid "Password:"
8356
+ msgstr "Passwort:"
8357
+
8358
+ #: inc/options/minify/yuijs2.php:18 Minify_ConfigLabels.php:42
8359
+ #: Minify_ConfigLabels.php:77
8360
+ msgid "Path to JAR file:"
8361
+ msgstr "Pfad zur JAR-Datei:"
8362
+
8363
+ #: inc/options/minify/yuijs2.php:9 Minify_ConfigLabels.php:41
8364
+ #: Minify_ConfigLabels.php:76
8365
+ msgid "Path to JAVA executable:"
8366
+ msgstr "Pfad zur ausführbaren JAVA-Datei:"
8367
+
8368
+ #: CacheGroups_Plugin_Admin.php:48 CacheGroups_Plugin_Admin_View.php:336
8369
+ msgid ""
8370
+ "Per the above, make sure that visitors are notified about the cookie as per "
8371
+ "any regulations in your market."
8372
+ msgstr ""
8373
+ "Stellen Sie gemäß dem oben Gesagten sicher, dass Besucher gemäß den "
8374
+ "Vorschriften in Ihrem Markt über das Cookie benachrichtigt werden."
8375
+
8376
+ #: inc/options/dashboard.php:50
8377
+ msgid "Perform a"
8378
+ msgstr "Führen Sie ein"
8379
+
8380
+ #: Generic_Plugin.php:245 Root_AdminMenu.php:160 Root_AdminMenu.php:161
8381
+ msgid "Performance"
8382
+ msgstr "Leistung"
8383
+
8384
+ #: Cdnfsd_Plugin_Admin.php:12 Cdnfsd_Plugin_Admin.php:23
8385
+ #: Cdnfsd_Plugin_Admin.php:34 Cdnfsd_Plugin_Admin.php:45
8386
+ #: Cdnfsd_Plugin_Admin.php:56 Cdn_Plugin_Admin.php:32 Cdn_Plugin_Admin.php:41
8387
+ #: Cdn_Plugin_Admin.php:58 Cdn_Plugin_Admin.php:70 Cdn_Plugin_Admin.php:85
8388
+ #: Cdn_Plugin_Admin.php:96 Cdn_Plugin_Admin.php:107 Cdn_Plugin_Admin.php:125
8389
+ #: Extension_CloudFlare_Plugin_Admin.php:106
8390
+ #: Extension_CloudFlare_Plugin_Admin.php:114 Generic_Plugin_Admin.php:108
8391
+ #: Minify_Plugin_Admin.php:35 PgCache_Plugin_Admin.php:40
8392
+ #: UsageStatistics_Plugin_Admin.php:32
8393
+ msgid "performance"
8394
+ msgstr "Leistung"
8395
+
8396
+ #: UsageStatistics_Page_DbRequests_View.php:16
8397
+ #: UsageStatistics_Page_ObjectCacheLog_View.php:16
8398
+ #: UsageStatistics_Page_PageCacheRequests_View.php:16
8399
+ msgid "Period"
8400
+ msgstr "Zeitraum"
8401
+
8402
+ #: Util_ConfigLabel.php:24 Util_ConfigLabel.php:30
8403
+ msgid "Persistent connection"
8404
+ msgstr "Dauernde Verbindung"
8405
+
8406
+ #: FeatureShowcase_Plugin_Admin.php:422
8407
+ msgid "Persistently store data to reduce post, page and feed creation time."
8408
+ msgstr ""
8409
+ "Speichern Sie Daten dauerhaft, um die Erstellungszeit von Beiträgen, Seiten "
8410
+ "und Feeds zu verkürzen."
8411
+
8412
+ #: FeatureShowcase_Plugin_Admin.php:434
8413
+ msgid ""
8414
+ "Persistently store objects to reduce execution time for common operations."
8415
+ msgstr ""
8416
+ "Speichern Sie Objekte dauerhaft, um die Ausführungszeit für allgemeine "
8417
+ "Vorgänge zu verkürzen."
8418
+
8419
+ #: inc/email/support_request.php:22
8420
+ msgid "Phone: "
8421
+ msgstr "Telefon:"
8422
+
8423
+ #: Extension_NewRelic_Service.php:164
8424
+ msgid "PHP agent is not enabled."
8425
+ msgstr "Der PHP-Agent ist nicht aktiviert."
8426
+
8427
+ #: Extension_NewRelic_Widget_View_Apm.php:60
8428
+ msgid "PHP agent:"
8429
+ msgstr "PHP-Agent:"
8430
+
8431
+ #: UsageStatistics_Page_View.php:371
8432
+ msgid "PHP Memory:"
8433
+ msgstr "PHP-Speicher:"
8434
+
8435
+ #: Extension_NewRelic_Service.php:162
8436
+ msgid "PHP module is not enabled."
8437
+ msgstr "PHP-Modul ist nicht aktiviert."
8438
+
8439
+ #: UsageStatistics_Page_View.php:67
8440
+ msgid "PHP Requests:"
8441
+ msgstr "PHP-Anfragen:"
8442
+
8443
+ #: Extension_NewRelic_Service.php:48
8444
+ msgid "PHP version"
8445
+ msgstr "PHP-Version"
8446
+
8447
+ #: inc/lightbox/self_test.php:82
8448
+ msgid "PHP Version:"
8449
+ msgstr "PHP-Version:"
8450
+
8451
+ #: inc/lightbox/self_test.php:186
8452
+ msgid "PHP6"
8453
+ msgstr "PHP6"
8454
+
8455
+ #: Extension_Genesis_Page_View.php:228
8456
+ msgid "Pings"
8457
+ msgstr "Pings"
8458
+
8459
+ #: inc/options/cdn/ftp.php:84
8460
+ msgid "Plain FTP"
8461
+ msgstr "Einfaches FTP"
8462
+
8463
+ #. translators: 1 opening HTML a tag to plugin admin page, 2 closing HTML a tag.
8464
+ #: Root_AdminActivation.php:30
8465
+ msgid ""
8466
+ "Please %1$snetwork activate%2$s W3 Total Cache when using WordPress "
8467
+ "Multisite."
8468
+ msgstr ""
8469
+ "Bitte %1$snetwork aktivieren%2$s W3 Total Cache, wenn Sie WordPress "
8470
+ "Multisite verwenden."
8471
+
8472
+ #: Generic_Plugin_Admin.php:715
8473
+ msgid "Please describe the issue in the issue description field."
8474
+ msgstr "Bitte beschreiben Sie das Problem im Feld „Problembeschreibung“."
8475
+
8476
+ #: Extension_Genesis_Plugin_Admin.php:65
8477
+ msgid ""
8478
+ "Please enable <strong>Fragment Cache</strong> module to make sure <strong>"
8479
+ "Genesis extension</strong> works properly."
8480
+ msgstr ""
8481
+ "Bitte aktivieren Sie das Modul <strong>Fragment Cache</strong>, um "
8482
+ "sicherzustellen, dass die <strong>Genesis-Erweiterung</strong> richtig "
8483
+ "funktioniert."
8484
+
8485
+ #. translators: 1 HTML acronym SSH (secure shell), 2 HTML acronym FTP (file transfer protocol).
8486
+ #: Generic_Plugin_Admin.php:720
8487
+ msgid "Please enter %1$s or %2$s host for the site."
8488
+ msgstr "Bitte geben Sie %1$s oder %2$s Host für die Site ein."
8489
+
8490
+ #. translators: 1 HTML acronym SSH (secure shell), 2 HTML acronym FTP (file transfer protocol).
8491
+ #: Generic_Plugin_Admin.php:729
8492
+ msgid ""
8493
+ "Please enter %1$s or %2$s login for the server. Create a temporary one just "
8494
+ "for this support case if needed."
8495
+ msgstr ""
8496
+ "Bitte geben Sie %1$s oder %2$s Login für den Server ein. Erstellen Sie bei "
8497
+ "Bedarf ein temporäres nur für diesen Support-Fall."
8498
+
8499
+ #. translators: 1 HTML acronym SSH (secure shell), 2 HTML acronym FTP (file transfer protocol).
8500
+ #: Generic_Plugin_Admin.php:738
8501
+ msgid "Please enter %1$s or %2$s password for the %2$s account."
8502
+ msgstr "Bitte geben Sie das Passwort %1$s oder %2$s für das Konto %2$s ein."
8503
+
8504
+ #: Generic_Plugin_Admin.php:716
8505
+ msgid ""
8506
+ "Please enter an administrator login. Create a temporary one just for this "
8507
+ "support case if needed."
8508
+ msgstr ""
8509
+ "Bitte geben Sie einen Administrator-Login ein. Erstellen Sie bei Bedarf ein "
8510
+ "temporäres nur für diesen Support-Fall."
8511
+
8512
+ #: Licensing_Plugin_Admin.php:191
8513
+ msgid "Please enter it again."
8514
+ msgstr "Bitte geben Sie es erneut ein."
8515
+
8516
+ #: Generic_Plugin_Admin.php:714
8517
+ msgid "Please enter subject in the subject field."
8518
+ msgstr "Bitte geben Sie den Betreff in das Betrefffeld ein."
8519
+
8520
+ #. translators: 1 HTML acronym URL (uniform resource locator).
8521
+ #: Generic_Plugin_Admin.php:705
8522
+ msgid "Please enter the address of the site in the site %1$s field."
8523
+ msgstr "Bitte geben Sie die Adresse der Website in das Feld Website %1$s ein."
8524
+
8525
+ #. translators: 1 HTML a tag to trigger W3TC licence upgrade.
8526
+ #: inc/options/general.php:699
8527
+ msgid "Please enter the license key provided after %1$s."
8528
+ msgstr "Bitte geben Sie den bereitgestellten Lizenzschlüssel nach %1$s ein."
8529
+
8530
+ #. translators: 1 HTML a tag to W3TC licencing page.
8531
+ #: inc/options/edd/buy.php:36
8532
+ msgid ""
8533
+ "Please enter the license key you received after successful checkout %1$s."
8534
+ msgstr ""
8535
+ "Bitte geben Sie den Lizenzschlüssel ein, den Sie nach erfolgreicher "
8536
+ "Kaufabwicklung erhalten haben %1$s."
8537
+
8538
+ #: Generic_Plugin_Admin.php:712
8539
+ msgid "Please enter valid email address in the E-Mail field."
8540
+ msgstr "Bitte geben Sie im Feld E-Mail eine gültige E-Mail-Adresse ein."
8541
+
8542
+ #: Generic_Plugin_Admin.php:717
8543
+ msgid "Please enter WP Admin password, be sure it's spelled correctly."
8544
+ msgstr ""
8545
+ "Bitte geben Sie das WP-Admin-Passwort ein und stellen Sie sicher, dass es "
8546
+ "richtig geschrieben ist."
8547
+
8548
+ #: Generic_Plugin_Admin.php:711
8549
+ msgid "Please enter your name in the Name field"
8550
+ msgstr "Bitte geben Sie Ihren Namen in das Feld Name ein"
8551
+
8552
+ #: Generic_Plugin_Admin.php:713
8553
+ msgid "Please enter your phone in the phone field."
8554
+ msgstr "Bitte geben Sie Ihre Telefonnummer in das Telefonfeld ein."
8555
+
8556
+ #: Generic_Plugin_Admin.php:896 Util_Activation.php:240
8557
+ msgid "Please execute commands manually"
8558
+ msgstr "Bitte führen Sie Befehle manuell aus"
8559
+
8560
+ #: inc/options/about.php:260
8561
+ msgid ""
8562
+ "Please reach out to all of these people and support their projects if you're "
8563
+ "so inclined."
8564
+ msgstr ""
8565
+ "Bitte wenden Sie sich an all diese Menschen und unterstützen Sie ihre "
8566
+ "Projekte, wenn Sie dazu neigen."
8567
+
8568
+ #: Extension_NewRelic_Plugin_Admin.php:158
8569
+ msgid "Please review the <a href=\"%s\">settings</a>."
8570
+ msgstr "Bitte überprüfen Sie die <a href=\"%s\">Einstellungen</a> ."
8571
+
8572
+ #. translators: 1 opening HTML a tag to W3TC Terms page, 2 closing HTML a tag.
8573
+ #: inc/lightbox/support_us.php:125
8574
+ msgid ""
8575
+ "Please review the latest %1$sterms of use and privacy policy%2$s, and accept "
8576
+ "them."
8577
+ msgstr ""
8578
+ "Bitte lesen Sie die aktuellen %1$sNutzungsbedingungen und "
8579
+ "Datenschutzrichtlinien%2$s und akzeptieren Sie diese."
8580
+
8581
+ #. translators: 4: HTML line break tag, 5: HTML opening a tag to purge CDN manually, 6: HTML closing a tag.
8582
+ #: Generic_Plugin_Admin.php:446
8583
+ msgid ""
8584
+ "Please see %1$sAmazon's CloudFront documentation -- Paying for file "
8585
+ "invalidation%2$sThe first 1,000 invalidation paths that you submit per month "
8586
+ "are free; you pay for each invalidation path over 1,000 in a month.%3$sYou "
8587
+ "can disable automatic purging by enabling %4$sOnly purge CDN manually%5$s."
8588
+ msgstr ""
8589
+ "Weitere Informationen finden Sie in der CloudFront-Dokumentation von "
8590
+ "%1$sAmazon – Bezahlen für die Ungültigkeitserklärung von Dateien%2$sDie "
8591
+ "ersten 1.000 Ungültigkeitspfade, die Sie pro Monat übermitteln, sind "
8592
+ "kostenlos; Sie zahlen für jeden Invalidierungspfad über 1.000 in einem Monat."
8593
+ "%3$sSie können die automatische Bereinigung deaktivieren, indem Sie "
8594
+ "%4$sAktiviere nur CDN manuell bereinigen%5$s."
8595
+
8596
+ #. translators: 1: HTML break, 2: HTML anchor open tag, 3: HTML anchor close tag.
8597
+ #: inc/options/cdn.php:430
8598
+ msgid ""
8599
+ "Please see %2$sAmazon's CloudFront documentation -- Paying for file "
8600
+ "invalidation%3$s:%1$sThe first 1,000 invalidation paths that you submit per "
8601
+ "month are free; you pay for each invalidation path over 1,000 in a month."
8602
+ "%1$sYou can disable automatic purging by enabling \"Only purge CDN "
8603
+ "manually\"."
8604
+ msgstr ""
8605
+ "Weitere Informationen finden Sie in der CloudFront-Dokumentation von "
8606
+ "%2$sAmazon – Bezahlen für Dateiaufhebung%3$s:%1$sDie ersten 1.000 "
8607
+ "Aufhebungspfade, die Sie pro Monat einreichen, sind kostenlos; Sie zahlen "
8608
+ "für jeden Invalidierungspfad über 1.000 in einem Monat.%1$sSie können die "
8609
+ "automatische Bereinigung deaktivieren, indem Sie \"Nur CDN manuell "
8610
+ "bereinigen\" aktivieren."
8611
+
8612
+ #: Generic_Plugin_Admin.php:746
8613
+ msgid "Please select config file."
8614
+ msgstr "Bitte Konfigurationsdatei auswählen."
8615
+
8616
+ #: Generic_Plugin_Admin.php:702
8617
+ msgid "Please select request type."
8618
+ msgstr "Bitte wählen Sie den Anfragetyp aus."
8619
+
8620
+ #: w3-total-cache-old-php.php:8
8621
+ msgid ""
8622
+ "Please update your PHP. <strong>W3 Total Cache</strong> requires PHP version "
8623
+ "5.6 or above"
8624
+ msgstr ""
8625
+ "Bitte aktualisieren Sie Ihr PHP. <strong>W3 Total Cache</strong> erfordert "
8626
+ "PHP-Version 5.6 oder höher"
8627
+
8628
+ #. translators: 1: HTML anchor open tag, 2: HTML anchor close tag.
8629
+ #: Extension_ImageService_Api.php:231
8630
+ msgid "Please verify your license key in %1$sGeneral Settings%2$s."
8631
+ msgstr ""
8632
+ "Bitte überprüfen Sie Ihren Lizenzschlüssel in den %1$sAllgemeinen "
8633
+ "Einstellungen%2$s."
8634
+
8635
+ #. translators: 1: Anchor/link open tag, 2: Anchor/link close tag.
8636
+ #: SetupGuide_Plugin_Admin.php:1362
8637
+ msgid ""
8638
+ "Please visit %1$sGeneral Settings%2$s to learn more about these features."
8639
+ msgstr ""
8640
+ "Bitte besuchen Sie %1$sAllgemeine Einstellungen%2$s, um mehr über diese "
8641
+ "Funktionen zu erfahren."
8642
+
8643
+ #: Generic_Plugin_Admin.php:783
8644
+ msgid "Plugin configuration successfully updated."
8645
+ msgstr "Plugin-Konfiguration erfolgreich aktualisiert."
8646
+
8647
+ #: inc/lightbox/self_test.php:78
8648
+ msgid "Plugin Version:"
8649
+ msgstr "Plugin-Version:"
8650
+
8651
+ #. translators: 1 HTML line break tag.
8652
+ #: Cdn_LimeLight_Popup_View_Success.php:17
8653
+ msgid ""
8654
+ "Plugin was successfully configured to use this service.%1$sMake sure you "
8655
+ "have updated domain DNS records."
8656
+ msgstr ""
8657
+ "Das Plugin wurde erfolgreich konfiguriert, um diesen Dienst zu verwenden."
8658
+ "%1$sVergewissern Sie sich, dass Sie über aktualisierte Domain-DNS-Einträge "
8659
+ "verfügen."
8660
+
8661
+ #: BrowserCache_ConfigLabels.php:70
8662
+ msgid "plugin-types:"
8663
+ msgstr "Plugin-Typen:"
8664
+
8665
+ #: Generic_WidgetCommunity_View.php:29
8666
+ msgid ""
8667
+ "Plus, there's even more that allow you to completely fine tune your "
8668
+ "website's performance."
8669
+ msgstr ""
8670
+ "Außerdem gibt es noch mehr, mit denen Sie die Leistung Ihrer Website "
8671
+ "vollständig optimieren können."
8672
+
8673
+ #: PgCache_ConfigLabels.php:31
8674
+ msgid "Post author feed"
8675
+ msgstr "Post-Autoren-Feed"
8676
+
8677
+ #: PgCache_ConfigLabels.php:28
8678
+ msgid "Post author pages"
8679
+ msgstr "Autorenseiten posten"
8680
+
8681
+ #: PgCache_ConfigLabels.php:30
8682
+ msgid "Post comments feed"
8683
+ msgstr "Kommentare-Feed posten"
8684
+
8685
+ #: PgCache_ConfigLabels.php:27
8686
+ msgid "Post comments pages"
8687
+ msgstr "Kommentarseiten posten"
8688
+
8689
+ #: PgCache_ConfigLabels.php:25
8690
+ msgid "Post page"
8691
+ msgstr "Seite posten"
8692
+
8693
+ #: Generic_Plugin_Admin.php:810
8694
+ msgid "Post successfully purged."
8695
+ msgstr "Beitrag erfolgreich gelöscht."
8696
+
8697
+ #: PgCache_ConfigLabels.php:32
8698
+ msgid "Post terms feeds"
8699
+ msgstr "Veröffentlichen Sie Begriffs-Feeds"
8700
+
8701
+ #: PgCache_ConfigLabels.php:29
8702
+ msgid "Post terms pages"
8703
+ msgstr "Bedingungenseiten posten"
8704
+
8705
+ #: Cdnfsd_CacheFlush.php:85
8706
+ msgid "Post was modified before wp_rewrite initialization. Cant flush cache."
8707
+ msgstr ""
8708
+ "Beitrag wurde vor der Initialisierung von wp_rewrite geändert. Cache kann "
8709
+ "nicht geleert werden."
8710
+
8711
+ #: extension-example/Extension_Example_Page_View.php:36
8712
+ msgid "Postfix to page titles"
8713
+ msgstr "Postfix an Seitentitel"
8714
+
8715
+ #: PgCache_ConfigLabels.php:24
8716
+ msgid "Posts page"
8717
+ msgstr "Seite Beiträge"
8718
+
8719
+ #: Cli.php:95
8720
+ msgid "Posts/pages flushed successfully."
8721
+ msgstr "Beiträge/Seiten erfolgreich geleert."
8722
+
8723
+ #: Extension_CloudFlare_Page_View.php:474
8724
+ msgid "Prefetch preload:"
8725
+ msgstr "Prefetch-Vorladung:"
8726
+
8727
+ #: PgCache_ConfigLabels.php:22
8728
+ msgid "Preload the post cache upon publish events"
8729
+ msgstr "Laden Sie den Post-Cache bei Veröffentlichungsereignissen vorab"
8730
+
8731
+ #: Cdn_StackPath2_Page_View.php:63
8732
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:71 Generic_WidgetServices.php:33
8733
+ msgid "Premium Services"
8734
+ msgstr "Premium service"
8735
+
8736
+ #: Generic_Plugin_Admin.php:583
8737
+ msgid "Premium Support"
8738
+ msgstr "Premium-Support"
8739
+
8740
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
8741
+ #: inc/options/cdn.php:69
8742
+ msgid "Prepare the %1$sCDN%2$s by:"
8743
+ msgstr "Bereiten Sie das %1$sCDN%2$s vor, indem Sie:"
8744
+
8745
+ #: Minify_ConfigLabels.php:58
8746
+ msgid "Preserve CSS"
8747
+ msgstr "CSS beibehalten"
8748
+
8749
+ #: Minify_ConfigLabels.php:81
8750
+ msgid "Preserve unnecessary semicolons"
8751
+ msgstr "Behalten Sie unnötige Semikolons bei"
8752
+
8753
+ #: Minify_ConfigLabels.php:45 Minify_ConfigLabels.php:73
8754
+ msgid "Preserved comment removal (not applied when combine only is active)"
8755
+ msgstr ""
8756
+ "Beibehaltene Kommentarentfernung (wird nicht angewendet, wenn „Nur "
8757
+ "kombinieren“ aktiv ist)"
8758
+
8759
+ #: Minify_ConfigLabels.php:39
8760
+ msgid "Pretty print"
8761
+ msgstr "Hübscher Druck"
8762
+
8763
+ #: BrowserCache_ConfigLabels.php:8
8764
+ msgid "Prevent caching exception list:"
8765
+ msgstr "Caching-Ausnahmeliste verhindern:"
8766
+
8767
+ #: BrowserCache_ConfigLabels.php:20 BrowserCache_ConfigLabels.php:40
8768
+ #: inc/options/browsercache.php:183
8769
+ msgid "Prevent caching of objects after settings change"
8770
+ msgstr ""
8771
+ "Zwischenspeichern von Objekten nach Änderung der Einstellungen verhindern"
8772
+
8773
+ #: Util_Ui.php:1178
8774
+ msgid "Preview"
8775
+ msgstr "Vorschau"
8776
+
8777
+ #. translators: 3: opening HTML p tag, 4: HTML inptu button to preview changes, 5: closing HTML p tag.
8778
+ #: Generic_AdminNotes.php:174
8779
+ msgid ""
8780
+ "Preview mode is active: Changed settings will not take effect until preview "
8781
+ "mode is %1$s or %2$s. %3$sTo preview any changed settings (without deploying)"
8782
+ ": %4$s"
8783
+ msgstr ""
8784
+ "Vorschaumodus ist aktiv: Geänderte Einstellungen werden erst wirksam, wenn "
8785
+ "der Vorschaumodus %1$s oder %2$s ist. %3$sSo zeigen Sie geänderte "
8786
+ "Einstellungen in der Vorschau an (ohne Bereitstellung): %4$s"
8787
+
8788
+ #: Generic_Plugin_Admin.php:807
8789
+ msgid "Preview mode was successfully disabled"
8790
+ msgstr "Der Vorschaumodus wurde erfolgreich deaktiviert"
8791
+
8792
+ #: Generic_Plugin_Admin.php:806
8793
+ msgid "Preview mode was successfully enabled"
8794
+ msgstr "Der Vorschaumodus wurde erfolgreich aktiviert"
8795
+
8796
+ #: inc/options/general.php:35
8797
+ msgid "Preview mode:"
8798
+ msgstr "Vorschau Modus:"
8799
+
8800
+ #: Generic_Plugin_Admin.php:808
8801
+ msgid ""
8802
+ "Preview settings successfully deployed. Preview mode remains enabled until "
8803
+ "it's disabled. Continue testing new settings or disable preview mode if done."
8804
+ msgstr ""
8805
+ "Vorschaueinstellungen erfolgreich bereitgestellt. Der Vorschaumodus bleibt "
8806
+ "aktiviert, bis er deaktiviert wird. Testen Sie weiterhin neue Einstellungen "
8807
+ "oder deaktivieren Sie den Vorschaumodus, wenn Sie fertig sind."
8808
+
8809
+ #: inc/wizard/template.php:163
8810
+ msgid "PREVIOUS"
8811
+ msgstr "FRÜHER"
8812
+
8813
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
8814
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Create.php:75
8815
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Create.php:106
8816
+ msgid "Primary %1$sCNAME%2$s:"
8817
+ msgstr "Primärer %1$sCNAME%2$s:"
8818
+
8819
+ #: Extension_Genesis_Page_View.php:229
8820
+ msgid "Primary navigation"
8821
+ msgstr "Primärnavigation"
8822
+
8823
+ #: FeatureShowcase_Plugin_Admin_View.php:74
8824
+ msgid "PRO FEATURE"
8825
+ msgstr "PRO-FUNKTION"
8826
+
8827
+ #: Cdnfsd_TransparentCDN_Engine.php:259
8828
+ msgid "Problem purging"
8829
+ msgstr "Problem beim Spülen"
8830
+
8831
+ #. translators: 1 opening HTML code tag, 2 closing HTML code tag.
8832
+ #: UserExperience_LazyLoad_Page_View.php:50
8833
+ msgid "Process %1$sbackground%2$s styles"
8834
+ msgstr "Verarbeite %1$sbackground%2$s Stile"
8835
+
8836
+ #. translators: 1 opening HTML code tag, 2 closing HTML code tag.
8837
+ #: UserExperience_LazyLoad_Page_View.php:28
8838
+ msgid "Process %1$simg%2$s tags"
8839
+ msgstr "%1$simg%2$s Tags verarbeiten"
8840
+
8841
+ #: UserExperience_LazyLoad_Page_View.php:46
8842
+ msgid "Process background images"
8843
+ msgstr "Hintergrundbilder verarbeiten"
8844
+
8845
+ #: inc/popup/cdn_queue.php:43
8846
+ msgid "Process CDN queue now"
8847
+ msgstr "CDN-Warteschlange jetzt verarbeiten"
8848
+
8849
+ #: UserExperience_LazyLoad_Page_View.php:24
8850
+ msgid "Process HTML image tags"
8851
+ msgstr "HTML-Bild-Tags verarbeiten"
8852
+
8853
+ #: inc/popup/cdn_export_file.php:34 inc/popup/cdn_export_library.php:24
8854
+ #: inc/popup/cdn_import_library.php:25 inc/popup/cdn_rename_domain.php:43
8855
+ msgid "Processed:"
8856
+ msgstr "Verarbeitet:"
8857
+
8858
+ #: Extension_ImageService_Plugin_Admin.php:546
8859
+ #: Extension_ImageService_Plugin_Admin.php:726
8860
+ msgid "Processing..."
8861
+ msgstr "Wird bearbeitet..."
8862
+
8863
+ #: Extension_ImageService_Page_View.php:175
8864
+ msgid "Processing:"
8865
+ msgstr "Wird bearbeitet:"
8866
+
8867
+ #: Generic_WidgetBoldGrid_View.php:19
8868
+ msgid ""
8869
+ "Protect your WordPress site from data loss by installing the FREE Total "
8870
+ "Upkeep plugin."
8871
+ msgstr ""
8872
+ "Schützen Sie Ihre WordPress-Site vor Datenverlust, indem Sie das KOSTENLOSE "
8873
+ "Total-Upkeep-Plugin installieren."
8874
+
8875
+ #: FeatureShowcase_Plugin_Admin.php:278
8876
+ msgid ""
8877
+ "Provide the best user experience possible by enhancing by hosting HTML pages "
8878
+ "and RSS feeds with (supported) CDN's high speed global networks."
8879
+ msgstr ""
8880
+ "Bieten Sie die bestmögliche Benutzererfahrung, indem Sie HTML-Seiten und RSS-"
8881
+ "Feeds mit den (unterstützten) globalen Hochgeschwindigkeitsnetzwerken von "
8882
+ "CDN hosten."
8883
+
8884
+ #: SetupGuide_Plugin_Admin.php:1082
8885
+ msgid ""
8886
+ "provides many options to help your website perform faster. While the ideal "
8887
+ "settings vary for every website, there are a few settings we recommend that "
8888
+ "you enable now."
8889
+ msgstr ""
8890
+ "bietet viele Optionen, mit denen Ihre Website schneller ausgeführt werden "
8891
+ "kann. Während die idealen Einstellungen für jede Website unterschiedlich "
8892
+ "sind, gibt es einige Einstellungen, die Sie jetzt aktivieren sollten."
8893
+
8894
+ #: BrowserCache_ConfigLabels.php:54
8895
+ msgid "Public Key (Backup):"
8896
+ msgstr "Öffentlicher Schlüssel (Backup):"
8897
+
8898
+ #: BrowserCache_ConfigLabels.php:53
8899
+ msgid "Public Key:"
8900
+ msgstr "Öffentlicher Schlüssel:"
8901
+
8902
+ #: Generic_Plugin_Admin.php:779
8903
+ msgid "Pull Zone could not be automatically created."
8904
+ msgstr "Pull-Zone konnte nicht automatisch erstellt werden."
8905
+
8906
+ #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:14
8907
+ msgid ""
8908
+ "Pull Zone Name. Length: 3-32 chars; only letters, digits, and dash (-) "
8909
+ "accepted"
8910
+ msgstr ""
8911
+ "Zonenname ziehen. Länge: 3-32 Zeichen; Es werden nur Buchstaben, Ziffern und "
8912
+ "Bindestriche (-) akzeptiert"
8913
+
8914
+ #: Generic_Plugin_Admin.php:815
8915
+ msgid "Pull Zone was automatically created."
8916
+ msgstr "Pull-Zone wurde automatisch erstellt."
8917
+
8918
+ #: Cdn_Highwinds_Widget_View.php:18
8919
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:43
8920
+ #: Cdn_StackPath2_Widget_View_Authorized.php:20
8921
+ #: Cdn_StackPath_Widget_View_Authorized.php:32 inc/options/cdn.php:86
8922
+ #: inc/popup/cdn_purge.php:75
8923
+ msgid "Purge"
8924
+ msgstr "Säubern"
8925
+
8926
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
8927
+ #: Cdn_Page_View_Fsd_HeaderActions.php:14
8928
+ msgid "Purge %1$sCDN%2$s completely"
8929
+ msgstr "Löschen Sie %1$sCDN%2$s vollständig"
8930
+
8931
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
8932
+ #: inc/options/cdn.php:410
8933
+ msgid "Purge %1$sCDN%2$s only if explicit purge button is clicked."
8934
+ msgstr ""
8935
+ "%1$sCDN%2$s nur löschen, wenn explizit auf die Schaltfläche \"Löschen\" "
8936
+ "geklickt wird."
8937
+
8938
+ #: inc/options/cdn/akamai.php:40
8939
+ msgid "Purge action:"
8940
+ msgstr "Löschaktion:"
8941
+
8942
+ #: Generic_Plugin.php:257
8943
+ msgid "Purge All Caches"
8944
+ msgstr "Alle Caches löschen"
8945
+
8946
+ #: inc/options/general.php:536
8947
+ msgid "Purge cache"
8948
+ msgstr "Cache leeren"
8949
+
8950
+ #: inc/options/dashboard.php:69
8951
+ msgid "purge CDN completely"
8952
+ msgstr "CDN komplett löschen"
8953
+
8954
+ #: Extension_CloudFlare_Page_View.php:42
8955
+ msgid "Purge CloudFlare cache"
8956
+ msgstr "Löschen Sie den CloudFlare-Cache"
8957
+
8958
+ #: Generic_Plugin.php:268
8959
+ msgid "Purge Current Page"
8960
+ msgstr "Aktuelle Seite löschen"
8961
+
8962
+ #: Generic_Plugin_AdminRowActions.php:36 Generic_Plugin_AdminRowActions.php:55
8963
+ #: Generic_Plugin_AdminRowActions.php:75
8964
+ msgid "Purge from cache"
8965
+ msgstr "Aus dem Cache löschen"
8966
+
8967
+ #: Cdn_Core_Admin.php:701
8968
+ msgid "Purge from CDN"
8969
+ msgstr "Vom CDN löschen"
8970
+
8971
+ #: PgCache_ConfigLabels.php:37
8972
+ msgid "Purge limit:"
8973
+ msgstr "Löschlimit:"
8974
+
8975
+ #: FeatureShowcase_Plugin_Admin.php:348
8976
+ msgid "Purge Logs"
8977
+ msgstr "Protokolle löschen"
8978
+
8979
+ #: inc/options/general.php:1013
8980
+ msgid ""
8981
+ "Purge Logs provide information on when your cache has been purged and what "
8982
+ "triggered it."
8983
+ msgstr ""
8984
+ "Bereinigungsprotokolle enthalten Informationen darüber, wann Ihr Cache "
8985
+ "geleert wurde und was dies ausgelöst hat."
8986
+
8987
+ #: FeatureShowcase_Plugin_Admin.php:350
8988
+ msgid ""
8989
+ "Purge Logs provide information on when your cache has been purged and what "
8990
+ "triggered it. If you are troubleshooting an issue with your cache being "
8991
+ "cleared, Purge Logs can tell you why."
8992
+ msgstr ""
8993
+ "Bereinigungsprotokolle enthalten Informationen darüber, wann Ihr Cache "
8994
+ "geleert wurde und was dies ausgelöst hat. Wenn Sie ein Problem beheben, bei "
8995
+ "dem Ihr Cache geleert wird, kann Purge Logs Ihnen sagen, warum."
8996
+
8997
+ #: inc/options/general.php:980
8998
+ msgid "Purge Logs:"
8999
+ msgstr "Protokolle löschen:"
9000
+
9001
+ #: Generic_Plugin.php:279
9002
+ msgid "Purge Modules"
9003
+ msgstr "Module bereinigen"
9004
+
9005
+ #: inc/options/common/header.php:188
9006
+ msgid "Purge Policy"
9007
+ msgstr "Bereinigungsrichtlinie"
9008
+
9009
+ #: inc/options/pgcache.php:315
9010
+ msgid "Purge Policy: "
9011
+ msgstr "Löschrichtlinie:"
9012
+
9013
+ #: inc/popup/cdn_queue.php:14
9014
+ msgid "Purge queue"
9015
+ msgstr "Warteschlange löschen"
9016
+
9017
+ #: inc/popup/cdn_queue.php:106
9018
+ msgid "Purge queue is empty"
9019
+ msgstr "Löschwarteschlange ist leer"
9020
+
9021
+ #: PgCache_ConfigLabels.php:39
9022
+ msgid "Purge sitemaps:"
9023
+ msgstr "Sitemaps löschen:"
9024
+
9025
+ #: ObjectCache_Page_View_PurgeLog.php:16
9026
+ msgid "Purges Log"
9027
+ msgstr "Löscht das Protokoll"
9028
+
9029
+ #: DbCache_WpdbInjection_QueryCaching.php:861
9030
+ msgid "Query is rejected"
9031
+ msgstr "Anfrage wird abgelehnt"
9032
+
9033
+ #: UsageStatistics_Page_View.php:149
9034
+ msgid "Query String"
9035
+ msgstr "Abfragezeichenfolge"
9036
+
9037
+ #: Extension_CloudFlare_Page_View.php:189
9038
+ msgid "Query string sorting:"
9039
+ msgstr "Sortierung der Abfragezeichenfolge:"
9040
+
9041
+ #: Cdn_AdminActions.php:48
9042
+ msgid "Queue successfully emptied."
9043
+ msgstr "Warteschlange erfolgreich geleert."
9044
+
9045
+ #: BrowserCache_Page_View_SectionSecurity.php:185
9046
+ msgid "Quick Reference Chart"
9047
+ msgstr "Schnellreferenztabelle"
9048
+
9049
+ #: Cdn_Plugin_Admin.php:206
9050
+ msgid "RackSpace CDN"
9051
+ msgstr "RackSpace-CDN"
9052
+
9053
+ #: Cdn_Plugin_Admin.php:246
9054
+ msgid "Rackspace Cloud Files"
9055
+ msgstr "Rackspace Cloud-Dateien"
9056
+
9057
+ #: Cdn_ConfigLabels.php:25
9058
+ msgid "Re-transfer cycle interval:"
9059
+ msgstr "Zyklusintervall für erneute Übertragung:"
9060
+
9061
+ #: Cdn_ConfigLabels.php:26
9062
+ msgid "Re-transfer cycle limit:"
9063
+ msgstr "Zykluslimit für erneute Übertragung:"
9064
+
9065
+ #: Extension_NewRelic_Page_View_Apm.php:78
9066
+ #: Extension_NewRelic_Page_View_Apm.php:107
9067
+ #: Extension_NewRelic_Page_View_Apm.php:213
9068
+ #: Extension_NewRelic_Page_View_Apm.php:233
9069
+ #: Extension_NewRelic_Page_View_Apm.php:269
9070
+ #: Extension_NewRelic_Page_View_Apm.php:297
9071
+ msgid "Real User Monitoring"
9072
+ msgstr "Echte Benutzerüberwachung"
9073
+
9074
+ #: Cdnfsd_CloudFront_Page_View.php:25 Cdnfsd_LimeLight_Page_View.php:25
9075
+ #: Cdnfsd_MaxCdn_Page_View.php:25 Cdnfsd_StackPath2_Page_View.php:32
9076
+ #: Cdnfsd_StackPath_Page_View.php:26 Cdn_GoogleDrive_Page_View.php:19
9077
+ #: Cdn_Highwinds_Page_View.php:17 Cdn_LimeLight_Page_View.php:18
9078
+ #: Cdn_MaxCdn_Page_View.php:30 Cdn_RackSpaceCdn_Page_View.php:14
9079
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:16 Cdn_StackPath2_Page_View.php:57
9080
+ #: Cdn_StackPath_Page_View.php:28 Extension_CloudFlare_Page_View.php:63
9081
+ msgid "Reauthorize"
9082
+ msgstr "Erneut autorisieren"
9083
+
9084
+ #: Minify_Plugin_Admin.php:131
9085
+ msgid ""
9086
+ "Recently an error occurred while creating the CSS / JS minify cache: %s. %s"
9087
+ msgstr ""
9088
+ "Kürzlich ist ein Fehler beim Erstellen des CSS/JS-Minify-Cache aufgetreten: "
9089
+ "%s. %s"
9090
+
9091
+ #: CacheGroups_Plugin_Admin_View.php:96 CacheGroups_Plugin_Admin_View.php:209
9092
+ msgid "Redirect users to:"
9093
+ msgstr "Benutzer umleiten zu:"
9094
+
9095
+ #: inc/options/general.php:164 UsageStatistics_Page_View.php:434
9096
+ #: Util_Ui.php:1041
9097
+ msgid "Redis"
9098
+ msgstr "Redis"
9099
+
9100
+ #: Util_ConfigLabel.php:34
9101
+ msgid "Redis Database ID:"
9102
+ msgstr "Redis-Datenbank-ID:"
9103
+
9104
+ #: inc/lightbox/self_test.php:211
9105
+ msgid "Redis extension:"
9106
+ msgstr "Redis-Erweiterung:"
9107
+
9108
+ #: Util_ConfigLabel.php:28
9109
+ msgid ""
9110
+ "Redis hostname:port / <acronym title=\"Internet Protocol\">IP</acronym>:port:"
9111
+ msgstr ""
9112
+ "Redis-Hostname:Port / <acronym title=\"Internetprotokoll\">IP</acronym> :"
9113
+ "Port:"
9114
+
9115
+ #: Util_ConfigLabel.php:35
9116
+ msgid "Redis password:"
9117
+ msgstr "Redis-Passwort:"
9118
+
9119
+ #: UsageStatistics_Widget_View.php:48
9120
+ msgid "Redis Usage"
9121
+ msgstr "Redis-Nutzung"
9122
+
9123
+ #. translators: 3 HTML acronym for Hypertext Markup Language (HTML).
9124
+ #: inc/options/general.php:200
9125
+ msgid ""
9126
+ "Reduce load time by decreasing the size and number of %1$s and %2$s files. "
9127
+ "Automatically remove unnecessary data from %1$s, %2$s, feed, page and post "
9128
+ "%3$s."
9129
+ msgstr ""
9130
+ "Reduzieren Sie die Ladezeit, indem Sie die Größe und Anzahl der %1$s- und "
9131
+ "%2$s-Dateien verringern. Entfernen Sie automatisch unnötige Daten aus %1$s, "
9132
+ "%2$s, Feed, Seite und Beitrag %3$s."
9133
+
9134
+ #: FeatureShowcase_Plugin_Admin.php:374
9135
+ msgid "Reduce load time by decreasing the size and number of CSS and JS files."
9136
+ msgstr ""
9137
+ "Reduzieren Sie die Ladezeit, indem Sie die Größe und Anzahl der CSS- und JS-"
9138
+ "Dateien verringern."
9139
+
9140
+ #: FeatureShowcase_Plugin_Admin.php:446 inc/options/general.php:431
9141
+ msgid ""
9142
+ "Reduce server load and decrease response time by using the cache available "
9143
+ "in site visitor's web browser."
9144
+ msgstr ""
9145
+ "Reduzieren Sie die Serverlast und die Reaktionszeit, indem Sie den Cache "
9146
+ "verwenden, der im Webbrowser des Website-Besuchers verfügbar ist."
9147
+
9148
+ #: inc/options/browsercache.php:253
9149
+ msgid ""
9150
+ "Reduce server load by allowing the web server to handle 404 (not found) "
9151
+ "errors for static files (images etc)."
9152
+ msgstr ""
9153
+ "Reduzieren Sie die Serverlast, indem Sie dem Webserver erlauben, 404-Fehler "
9154
+ "(nicht gefunden) für statische Dateien (Bilder usw.) zu verarbeiten."
9155
+
9156
+ #: inc/options/pgcache.php:144
9157
+ msgid ""
9158
+ "Reduce server load by caching 404 pages. If the disk enhanced method of disk "
9159
+ "caching is used, 404 pages will be returned with a 200 response code. Use at "
9160
+ "your own risk."
9161
+ msgstr ""
9162
+ "Reduzieren Sie die Serverlast, indem Sie 404-Seiten zwischenspeichern. Wenn "
9163
+ "die Datenträger-erweiterte Methode des Datenträger-Caching verwendet wird, "
9164
+ "werden 404-Seiten mit einem 200-Antwortcode zurückgegeben. Benutzung auf "
9165
+ "eigene Gefahr."
9166
+
9167
+ #: inc/options/browsercache.php:148 inc/options/browsercache.php:176
9168
+ #: inc/options/browsercache.php:446 inc/options/browsercache.php:452
9169
+ #: inc/options/browsercache.php:592 inc/options/browsercache.php:598
9170
+ #: inc/options/browsercache.php:675 inc/options/browsercache.php:681
9171
+ msgid "Reduce the download time for text-based files."
9172
+ msgstr "Reduzieren Sie die Downloadzeit für textbasierte Dateien."
9173
+
9174
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
9175
+ #: inc/options/about.php:46
9176
+ msgid ""
9177
+ "Reduced %1$sHTTP%2$s Transactions, %3$sDNS%4$s lookups and reduced document "
9178
+ "load time"
9179
+ msgstr ""
9180
+ "Reduzierte %1$sHTTP%2$s-Transaktionen, %3$sDNS%4$s-Lookups und reduzierte "
9181
+ "Dokumentladezeit"
9182
+
9183
+ #: Generic_ConfigLabels.php:21
9184
+ msgid "Referrer groups"
9185
+ msgstr "Referrer-Gruppen"
9186
+
9187
+ #: BrowserCache_ConfigLabels.php:58
9188
+ msgid "Referrer Policy"
9189
+ msgstr "Referrer-Richtlinie"
9190
+
9191
+ #: CacheGroups_Plugin_Admin_View.php:218 Generic_ConfigLabels.php:20
9192
+ msgid "Referrers:"
9193
+ msgstr "Referrer:"
9194
+
9195
+ #: Extension_ImageService_Page_View.php:191
9196
+ #: Extension_ImageService_Page_View.php:218
9197
+ #: Extension_ImageService_Plugin_Admin.php:555 UsageStatistics_Page_View.php:15
9198
+ msgid "Refresh"
9199
+ msgstr "Aktualisierung"
9200
+
9201
+ #: inc/popup/pagespeed_results.php:58
9202
+ msgid "Refresh Analysis"
9203
+ msgstr "Analyse aktualisieren"
9204
+
9205
+ #: inc/popup/pagespeed_results.php:17
9206
+ msgid "Refresh analysis"
9207
+ msgstr "Analyse aktualisieren"
9208
+
9209
+ #: Extension_ImageService_Plugin_Admin.php:556
9210
+ msgid "Refreshing..."
9211
+ msgstr "Erfrischend..."
9212
+
9213
+ #: Cdn_RackSpaceCdn_Page_View.php:30 Cdn_RackSpaceCloudFiles_Page_View.php:29
9214
+ msgid "Region:"
9215
+ msgstr "Region:"
9216
+
9217
+ #: Extension_FragmentCache_Page_View.php:68
9218
+ msgid "Registered fragment groups:"
9219
+ msgstr "Registrierte Fragmentgruppen:"
9220
+
9221
+ #: Minify_ConfigLabels.php:64
9222
+ msgid "Regroup selectors:"
9223
+ msgstr "Selektoren neu gruppieren:"
9224
+
9225
+ #: inc/options/pgcache.php:548
9226
+ msgid "Reject HEAD requests:"
9227
+ msgstr "HEAD-Anfragen ablehnen:"
9228
+
9229
+ #: DbCache_ConfigLabels.php:15
9230
+ msgid "Reject query words:"
9231
+ msgstr "Abfragewörter ablehnen:"
9232
+
9233
+ #: UsageStatistics_Page_DbRequests_View.php:33
9234
+ #: UsageStatistics_Page_PageCacheRequests_View.php:32
9235
+ msgid "Reject reasons: "
9236
+ msgstr "Ablehnungsgründe:"
9237
+
9238
+ #: Extension_NewRelic_Plugin.php:129 Extension_Swarmify_Plugin.php:95
9239
+ msgid "rejected by filter: "
9240
+ msgstr "vom Filter abgelehnt:"
9241
+
9242
+ #: PgCache_ConfigLabels.php:48
9243
+ msgid "Rejected cookies:"
9244
+ msgstr "Abgelehnte Cookies:"
9245
+
9246
+ #: Cdn_ConfigLabels.php:33
9247
+ msgid "Rejected files:"
9248
+ msgstr "Abgelehnte Dateien:"
9249
+
9250
+ #: Cdn_ConfigLabels.php:32 Minify_ConfigLabels.php:36
9251
+ #: PgCache_ConfigLabels.php:47
9252
+ msgid "Rejected user agents:"
9253
+ msgstr "Abgelehnte Benutzeragenten:"
9254
+
9255
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
9256
+ #: Cdn_RackSpaceCdn_Page_View.php:121
9257
+ msgid "Reload %1$sCNAME%2$ss from RackSpace"
9258
+ msgstr "Laden Sie %1$sCNAME%2$ss von RackSpace neu"
9259
+
9260
+ #: inc/popup/cdn_queue.php:22 inc/popup/cdn_queue.php:55
9261
+ #: inc/popup/cdn_queue.php:85
9262
+ msgid "Remote Path"
9263
+ msgstr "Remote-Pfad"
9264
+
9265
+ #: UserExperience_GeneralPage_View.php:59
9266
+ msgid "Remove emojis support from your website."
9267
+ msgstr "Entfernen Sie die Emojis-Unterstützung von Ihrer Website."
9268
+
9269
+ #: DbCache_Environment.php:124
9270
+ msgid "Remove it for me"
9271
+ msgstr "Entfernen Sie es für mich"
9272
+
9273
+ #: UserExperience_GeneralPage_View.php:77
9274
+ msgid "Remove jquery-migrate support from your website front-end."
9275
+ msgstr ""
9276
+ "Entfernen Sie die jquery-migrate-Unterstützung vom Front-End Ihrer Website."
9277
+
9278
+ #: Minify_ConfigLabels.php:52
9279
+ msgid "Remove last ;"
9280
+ msgstr "Zuletzt entfernen ;"
9281
+
9282
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
9283
+ #: inc/popup/cdn_purge.php:15
9284
+ msgid ""
9285
+ "Remove objects from the %1$sCDN%2$s by specifying the relative path on "
9286
+ "individual lines below and clicking the \"Purge\" button when done. For "
9287
+ "example:"
9288
+ msgstr ""
9289
+ "Entfernen Sie Objekte aus dem %1$sCDN%2$s, indem Sie den relativen Pfad in "
9290
+ "den einzelnen Zeilen unten angeben und anschließend auf die Schaltfläche "
9291
+ "\"Löschen\" klicken. Zum Beispiel:"
9292
+
9293
+ #: inc/options/browsercache.php:191 inc/options/browsercache.php:463
9294
+ #: inc/options/browsercache.php:692
9295
+ msgid "Remove query strings from static resources"
9296
+ msgstr "Entfernen Sie Abfragezeichenfolgen aus statischen Ressourcen"
9297
+
9298
+ #: Minify_ConfigLabels.php:53
9299
+ msgid "Remove space before !important"
9300
+ msgstr "Leerzeichen vor !wichtig entfernen"
9301
+
9302
+ #: Minify_ConfigLabels.php:48
9303
+ msgid "Remove unnecessary backslashes"
9304
+ msgstr "Entfernen Sie unnötige Backslashes"
9305
+
9306
+ #: UserExperience_GeneralPage_View.php:68
9307
+ msgid ""
9308
+ "Remove wp-embed.js script from your website. oEmbed functionality still "
9309
+ "works but you will not be able to embed other WordPress posts on your pages."
9310
+ msgstr ""
9311
+ "Entfernen Sie das wp-embed.js-Skript von Ihrer Website. Die oEmbed-Funktion "
9312
+ "funktioniert weiterhin, aber Sie können keine anderen WordPress-Posts auf "
9313
+ "Ihren Seiten einbetten."
9314
+
9315
+ #: inc/options/browsercache.php:247 inc/options/browsercache.php:489
9316
+ #: inc/options/browsercache.php:718
9317
+ msgid "Removes Set-Cookie header for responses."
9318
+ msgstr "Entfernt den Set-Cookie-Header für Antworten."
9319
+
9320
+ #: FeatureShowcase_Plugin_Admin.php:290
9321
+ msgid ""
9322
+ "Render blocking CSS delays a webpage from being visible in a timely manner. "
9323
+ "Eliminate this easily with the click of a button in W3 Total Cache Pro."
9324
+ msgstr ""
9325
+ "Renderblocking-CSS verzögert die rechtzeitige Sichtbarkeit einer Webseite. "
9326
+ "Beseitigen Sie dies einfach mit einem Klick auf eine Schaltfläche in W3 "
9327
+ "Total Cache Pro."
9328
+
9329
+ #: Licensing_Plugin_Admin.php:175
9330
+ msgid "Renew Now"
9331
+ msgstr "Jetzt erneuern"
9332
+
9333
+ #: Cdn_AdminNotes.php:242
9334
+ msgid "Replace default hostname with"
9335
+ msgstr "Ersetzen Sie den Standard-Hostnamen durch"
9336
+
9337
+ #: Cdn_Highwinds_Page_View.php:108 Cdn_LimeLight_Page_View.php:79
9338
+ #: Cdn_MaxCdn_Page_View.php:256 Cdn_RackSpaceCdn_Page_View.php:73
9339
+ #: Cdn_RackSpaceCdn_Page_View.php:108
9340
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:126 Cdn_StackPath2_Page_View.php:288
9341
+ #: Cdn_StackPath_Page_View.php:215 inc/options/cdn/akamai.php:103
9342
+ #: inc/options/cdn/att.php:77 inc/options/cdn/azure.php:86
9343
+ #: inc/options/cdn/cf.php:133 inc/options/cdn/cf2.php:125
9344
+ #: inc/options/cdn/cotendo.php:84 inc/options/cdn/edgecast.php:77
9345
+ #: inc/options/cdn/ftp.php:310 inc/options/cdn/mirror.php:63
9346
+ #: inc/options/cdn/rscf.php:120 inc/options/cdn/s3.php:139
9347
+ #: inc/options/cdn/s3_compatible.php:115
9348
+ msgid "Replace site's hostname with:"
9349
+ msgstr "Ersetzen Sie den Hostnamen der Website durch:"
9350
+
9351
+ #: Cdn_Plugin.php:849
9352
+ msgid "Replaced URLs for CDN:"
9353
+ msgstr "Ersetzte URLs für CDN:"
9354
+
9355
+ #: Cdn_Highwinds_Widget_View.php:30
9356
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:47
9357
+ #: Cdn_StackPath_Widget_View_Authorized.php:36
9358
+ msgid "Report - 30 days"
9359
+ msgstr "Bericht - 30 Tage"
9360
+
9361
+ #: Cdn_StackPath2_Widget_View_Authorized.php:24
9362
+ msgid "Report - 7 days"
9363
+ msgstr "Bericht - 7 Tage"
9364
+
9365
+ #: BrowserCache_ConfigLabels.php:56
9366
+ msgid "Report <acronym title=\"Uniform Resource Locator\">URL</acronym>:"
9367
+ msgstr "Berichts <acronym title=\"Uniform Resource Locator\">-URL</acronym> :"
9368
+
9369
+ #: BrowserCache_ConfigLabels.php:57
9370
+ msgid "Report Mode Only:"
9371
+ msgstr "Nur Berichtsmodus:"
9372
+
9373
+ #: Cdn_Highwinds_Widget_View.php:15
9374
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:42
9375
+ #: Cdn_StackPath2_Widget_View_Authorized.php:19
9376
+ #: Cdn_StackPath_Widget_View_Authorized.php:31
9377
+ msgid "Reports"
9378
+ msgstr "Berichte"
9379
+
9380
+ #: inc/options/pgcache.php:422 inc/options/pgcache.php:463
9381
+ msgid "REpresentational State Transfer"
9382
+ msgstr "Vertretungsstaatliche Übertragung"
9383
+
9384
+ #: inc/email/support_request.php:30
9385
+ msgid "Request data: "
9386
+ msgstr "Daten anfordern:"
9387
+
9388
+ #: inc/options/support.php:15
9389
+ msgid ""
9390
+ "Request premium services, suggest a feature or submit a bug using the form "
9391
+ "below:"
9392
+ msgstr ""
9393
+ "Fordern Sie Premium-Dienste an, schlagen Sie eine Funktion vor oder melden "
9394
+ "Sie einen Fehler mit dem folgenden Formular:"
9395
+
9396
+ #. translators: 2 closing HTML strong tag followed by closing HTML a tag.
9397
+ #: Generic_Plugin_Admin_View_Faq.php:15
9398
+ msgid ""
9399
+ "Request professional %1$ssupport%2$s or troubleshoot issues using the common "
9400
+ "questions below:"
9401
+ msgstr ""
9402
+ "Fordern Sie den professionellen %1$sSupport%2$s an oder beheben Sie Probleme "
9403
+ "mithilfe der folgenden häufig gestellten Fragen:"
9404
+
9405
+ #: UsageStatistics_Page_View.php:60
9406
+ msgid "Request time"
9407
+ msgstr "Zeit anfordern"
9408
+
9409
+ #: DbCache_WpdbInjection_QueryCaching.php:847
9410
+ msgid "Request URI is rejected"
9411
+ msgstr "Anforderungs-URI wird abgelehnt"
9412
+
9413
+ #: Cdn_Plugin.php:557
9414
+ msgid "request URI is rejected"
9415
+ msgstr "Anforderungs-URI wird abgelehnt"
9416
+
9417
+ #: DbCache_WpdbInjection_QueryCaching.php:822
9418
+ msgid "Request-wide "
9419
+ msgstr "Anfrageweit"
9420
+
9421
+ #: SetupGuide_Plugin_Admin.php:275 SetupGuide_Plugin_Admin.php:459
9422
+ #: SetupGuide_Plugin_Admin.php:602
9423
+ msgid "Requested cache storage engine is invalid"
9424
+ msgstr "Angeforderte Cache-Speicher-Engine ist ungültig"
9425
+
9426
+ #: SetupGuide_Plugin_Admin.php:272 SetupGuide_Plugin_Admin.php:456
9427
+ #: SetupGuide_Plugin_Admin.php:599
9428
+ msgid "Requested cache storage engine is not available"
9429
+ msgstr "Angeforderte Cache-Speicher-Engine ist nicht verfügbar"
9430
+
9431
+ #: Cdn_Highwinds_Widget_View.php:38
9432
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:70
9433
+ #: Cdn_StackPath2_Widget_View_Authorized.php:32
9434
+ #: Cdn_StackPath2_Widget_View_Authorized.php:37
9435
+ #: Cdn_StackPath_Widget_View_Authorized.php:59
9436
+ #: UsageStatistics_Page_View.php:203 UsageStatistics_Page_View.php:341
9437
+ #: UsageStatistics_Page_View.php:357
9438
+ msgid "Requests"
9439
+ msgstr "Anfragen"
9440
+
9441
+ #: UsageStatistics_Page_View.php:175
9442
+ msgid "Requests handled by PHP"
9443
+ msgstr "Anfragen, die von PHP verarbeitet werden"
9444
+
9445
+ #: UsageStatistics_Page_View.php:74
9446
+ msgid "Requests/period"
9447
+ msgstr "Anfragen/Zeitraum"
9448
+
9449
+ #: UsageStatistics_Page_View.php:232
9450
+ msgid "Requests/period: "
9451
+ msgstr "Anfragen/Zeitraum:"
9452
+
9453
+ #: UsageStatistics_Page_View.php:43 UsageStatistics_Page_View.php:69
9454
+ #: UsageStatistics_Page_View.php:235
9455
+ msgid "Requests/sec: "
9456
+ msgstr "Anfragen/Sek.:"
9457
+
9458
+ #: UsageStatistics_Page_View.php:40
9459
+ msgid "Requests: "
9460
+ msgstr "Anfragen:"
9461
+
9462
+ #: Generic_Plugin_Admin.php:865
9463
+ msgid "Required files and directories have been automatically created"
9464
+ msgstr "Erforderliche Dateien und Verzeichnisse wurden automatisch erstellt"
9465
+
9466
+ #. translators: 1 plugin requirements.
9467
+ #: inc/options/extensions/list.php:171
9468
+ msgid "Requirements: %s"
9469
+ msgstr "Voraussetzungen: %s"
9470
+
9471
+ #: inc/options/general.php:1063
9472
+ msgid "Reset configuration:"
9473
+ msgstr "Konfiguration zurücksetzen:"
9474
+
9475
+ #: inc/popup/pagespeed_results.php:48
9476
+ msgid "Resolution:"
9477
+ msgstr "Auflösung:"
9478
+
9479
+ #: inc/options/pgcache.php:543
9480
+ msgid ""
9481
+ "Resolve issues incorrect odd character encoding that may appear in cached "
9482
+ "pages."
9483
+ msgstr ""
9484
+ "Beheben Sie Probleme mit falscher Codierung ungerader Zeichen, die auf "
9485
+ "zwischengespeicherten Seiten auftreten können."
9486
+
9487
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
9488
+ #: inc/options/browsercache.php:197 inc/options/browsercache.php:469
9489
+ #: inc/options/browsercache.php:698
9490
+ msgid ""
9491
+ "Resources with a \"?\" in the %1$sURL%2$s are not cached by some proxy "
9492
+ "caching servers."
9493
+ msgstr ""
9494
+ "Ressourcen mit einem \"?\" in %1$sURL%2$s werden von einigen Proxy-Caching-"
9495
+ "Servern nicht zwischengespeichert."
9496
+
9497
+ #: UsageStatistics_Page_View.php:238
9498
+ msgid "Responded CSS compression: "
9499
+ msgstr "Reagierte CSS-Komprimierung:"
9500
+
9501
+ #: UsageStatistics_Page_View.php:241
9502
+ msgid "Responded JS compression: "
9503
+ msgstr "Reagierte JS-Komprimierung:"
9504
+
9505
+ #: Extension_CloudFlare_Page_View.php:466
9506
+ msgid "Response buffering\""
9507
+ msgstr "Antwortpufferung\""
9508
+
9509
+ #: FeatureShowcase_Plugin_Admin.php:324
9510
+ msgid "Rest API Caching"
9511
+ msgstr "Rest-API-Caching"
9512
+
9513
+ #: PgCache_Plugin.php:109
9514
+ msgid "REST API disabled."
9515
+ msgstr "REST-API deaktiviert."
9516
+
9517
+ #: inc/options/install.php:412
9518
+ msgid ""
9519
+ "Restarting the web server will empty the opcode cache, which means it will "
9520
+ "have to be rebuilt over time and your site's performance will suffer during "
9521
+ "this period. Still, an opcode cache should be installed in any case to "
9522
+ "maximize WordPress performance."
9523
+ msgstr ""
9524
+ "Durch einen Neustart des Webservers wird der Opcode-Cache geleert, was "
9525
+ "bedeutet, dass er im Laufe der Zeit neu erstellt werden muss und die "
9526
+ "Leistung Ihrer Website während dieser Zeit leidet. Dennoch sollte in jedem "
9527
+ "Fall ein Opcode-Cache installiert werden, um die Leistung von WordPress zu "
9528
+ "maximieren."
9529
+
9530
+ #: inc/options/general.php:1065
9531
+ msgid "Restore Default Settings"
9532
+ msgstr "Standardeinstellungen wiederherstellen"
9533
+
9534
+ #: BrowserCache_Page_View_SectionSecurity.php:643
9535
+ msgid "Restricts from where the protected resource can embed frames."
9536
+ msgstr "Schränkt ein, wo die geschützte Ressource Frames einbetten kann."
9537
+
9538
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
9539
+ #: BrowserCache_Page_View_SectionSecurity.php:730
9540
+ msgid ""
9541
+ "Restricts the %1$sURL%2$ss which can be used as the target of form "
9542
+ "submissions from a given context."
9543
+ msgstr ""
9544
+ "Schränkt die %1$sURL%2$ss ein, die als Ziel für Formularübermittlungen aus "
9545
+ "einem bestimmten Kontext verwendet werden kann."
9546
+
9547
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
9548
+ #: BrowserCache_Page_View_SectionSecurity.php:598
9549
+ msgid ""
9550
+ "Restricts the %1$sURL%2$ss which can be used in a document's &lt;base&gt; "
9551
+ "element."
9552
+ msgstr ""
9553
+ "Schränkt die %1$sURL%2$ss ein, die im &lt;base&gt;-Element eines Dokuments "
9554
+ "verwendet werden kann."
9555
+
9556
+ #: BrowserCache_Page_View_SectionSecurity.php:765
9557
+ msgid ""
9558
+ "Restricts the set of plugins that can be embedded into a document by "
9559
+ "limiting the types of resources which can be loaded."
9560
+ msgstr ""
9561
+ "Schränkt den Satz von Plugins ein, die in ein Dokument eingebettet werden "
9562
+ "können, indem die Arten von Ressourcen begrenzt werden, die geladen werden "
9563
+ "können."
9564
+
9565
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
9566
+ #: inc/options/pgcache.php:810
9567
+ msgid ""
9568
+ "Return correct Content-Type header for %1$sXML%2$s files (e.g., feeds and "
9569
+ "sitemaps). Slows down cache engine."
9570
+ msgstr ""
9571
+ "Geben Sie den korrekten Content-Type-Header für %1$sXML%2$s-Dateien zurück "
9572
+ "(z. B. Feeds und Sitemaps). Verlangsamt die Cache-Engine."
9573
+
9574
+ #: Generic_ConfigLabels.php:26 inc/options/common/header.php:112
9575
+ #: inc/options/general.php:467 Varnish_Plugin.php:79
9576
+ msgid "Reverse Proxy"
9577
+ msgstr "Reverse-Proxy"
9578
+
9579
+ #: Extension_ImageService_Plugin_Admin.php:551
9580
+ #: Extension_ImageService_Plugin_Admin.php:751
9581
+ msgid "Revert"
9582
+ msgstr "Zurückkehren"
9583
+
9584
+ #: Extension_ImageService_Page_View.php:136
9585
+ msgid "Revert all converted images in the media library."
9586
+ msgstr ""
9587
+ "Stellen Sie alle konvertierten Bilder in der Medienbibliothek wieder her."
9588
+
9589
+ #: Extension_ImageService_Page_View.php:132
9590
+ msgid "Revert all images:"
9591
+ msgstr "Alle Bilder zurücksetzen:"
9592
+
9593
+ #: inc/options/general.php:1066
9594
+ msgid ""
9595
+ "Revert all settings to the defaults. Any settings staged in preview mode "
9596
+ "will not be modified."
9597
+ msgstr ""
9598
+ "Setzen Sie alle Einstellungen auf die Standardeinstellungen zurück. Alle im "
9599
+ "Vorschaumodus bereitgestellten Einstellungen werden nicht geändert."
9600
+
9601
+ #: Extension_ImageService_Plugin_Admin.php:550
9602
+ msgid "Reverted"
9603
+ msgstr "Zurückgesetzt"
9604
+
9605
+ #: Extension_ImageService_Plugin_Admin.php:549
9606
+ msgid "Reverting..."
9607
+ msgstr "Zurücksetzen..."
9608
+
9609
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
9610
+ #: inc/options/browsercache.php:313
9611
+ msgid "Rewrite %1$sURL%2$s structure of objects"
9612
+ msgstr "Schreiben Sie die Objektstruktur von %1$sURL%2$s neu"
9613
+
9614
+ #: Minify_ConfigLabels.php:14
9615
+ msgid ""
9616
+ "Rewrite <acronym title=\"Uniform Resource Locator\">URL</acronym> structure"
9617
+ msgstr ""
9618
+ "<acronym title=\"Uniform Resource Locator\">URL</acronym> -Struktur "
9619
+ "umschreiben"
9620
+
9621
+ #: inc/options/common/header.php:366
9622
+ msgid "Rewrite Rules"
9623
+ msgstr "Regeln neu schreiben"
9624
+
9625
+ #: inc/options/install.php:274
9626
+ msgid "Rewrite Rules (based on active settings)"
9627
+ msgstr "Regeln umschreiben (basierend auf aktiven Einstellungen)"
9628
+
9629
+ #: Extension_CloudFlare_Page_View.php:359
9630
+ msgid ""
9631
+ "Rocket Loader is a general-purpose asynchronous JavaScript loader coupled "
9632
+ "with a lightweight virtual browser which can safely run any JavaScript code "
9633
+ "after window.onload."
9634
+ msgstr ""
9635
+ "Rocket Loader ist ein asynchroner Allzweck-JavaScript-Loader, der mit einem "
9636
+ "schlanken virtuellen Browser gekoppelt ist, der jeden JavaScript-Code nach "
9637
+ "window.onload sicher ausführen kann."
9638
+
9639
+ #: Extension_CloudFlare_Page_View.php:352
9640
+ msgid "Rocket Loader:"
9641
+ msgstr "Raketenlader:"
9642
+
9643
+ #: inc/options/minify/csstidy2.php:17
9644
+ msgid "Safe optimisations"
9645
+ msgstr "Sichere Optimierungen"
9646
+
9647
+ #: BrowserCache_ConfigLabels.php:73
9648
+ msgid "sandbox:"
9649
+ msgstr "Sandkasten:"
9650
+
9651
+ #: Util_Ui.php:217
9652
+ msgid "Save all settings"
9653
+ msgstr "Speichern Sie alle Einstellungen"
9654
+
9655
+ #: Extension_CloudFlare_Page.php:136
9656
+ msgid "Save CloudFlare settings"
9657
+ msgstr "Speichern Sie die CloudFlare-Einstellungen"
9658
+
9659
+ #: inc/options/enterprise/dbcluster-config.php:54
9660
+ msgid "Save configuration file"
9661
+ msgstr "Konfigurationsdatei speichern"
9662
+
9663
+ #: Extension_NewRelic_Page_View_Apm.php:145
9664
+ msgid "Save New Relic settings"
9665
+ msgstr "Speichern Sie die New Relic-Einstellungen"
9666
+
9667
+ #: FeatureShowcase_Plugin_Admin.php:326
9668
+ msgid ""
9669
+ "Save server resources or add scale and performance by caching the WordPress "
9670
+ "Rest API with W3TC Pro."
9671
+ msgstr ""
9672
+ "Sparen Sie Serverressourcen oder erhöhen Sie Skalierbarkeit und Leistung, "
9673
+ "indem Sie die WordPress-Rest-API mit W3TC Pro zwischenspeichern."
9674
+
9675
+ #: Util_Ui.php:228
9676
+ msgid "Save Settings & Purge Caches"
9677
+ msgstr "Einstellungen speichern und Caches löschen"
9678
+
9679
+ #: UserExperience_LazyLoad_Page_View.php:85
9680
+ msgid "Script Embed method:"
9681
+ msgstr "Skripteinbettungsmethode:"
9682
+
9683
+ #: BrowserCache_ConfigLabels.php:65
9684
+ msgid "script-src:"
9685
+ msgstr "script-src:"
9686
+
9687
+ #. translators: 1 opening HTML a tag to W3TC plugin config support page, 2 closing HTML a tag.
9688
+ #: inc/lightbox/minify_recommendations.php:143
9689
+ msgid ""
9690
+ "Scripts that were not already detected above may require %1$sprofessional "
9691
+ "consultation%2$s to implement."
9692
+ msgstr ""
9693
+ "Skripte, die oben noch nicht erkannt wurden, erfordern möglicherweise eine "
9694
+ "%1$sprofessionelle Beratung%2$s zur Implementierung."
9695
+
9696
+ #: inc/options/pgcache.php:138
9697
+ msgid "Search result (and similar) pages will be cached if enabled."
9698
+ msgstr ""
9699
+ "Suchergebnisse (und ähnliche) Seiten werden zwischengespeichert, falls "
9700
+ "aktiviert."
9701
+
9702
+ #: Extension_Genesis_Page_View.php:230
9703
+ msgid "Secondary navigation"
9704
+ msgstr "Sekundärnavigation"
9705
+
9706
+ #: Extension_FragmentCache_Page_View.php:101
9707
+ #: Extension_FragmentCache_Page_View.php:108 inc/options/browsercache.php:398
9708
+ #: inc/options/browsercache.php:545 inc/options/browsercache.php:627
9709
+ #: inc/options/cdn.php:638 inc/options/cdn.php:647 inc/options/dbcache.php:81
9710
+ #: inc/options/dbcache.php:89 inc/options/minify.php:878
9711
+ #: inc/options/minify.php:893 inc/options/objectcache.php:68
9712
+ #: inc/options/objectcache.php:76 inc/options/pgcache.php:247
9713
+ #: inc/options/pgcache.php:584 inc/options/pgcache.php:594
9714
+ #: inc/options/pgcache.php:601
9715
+ msgid "seconds"
9716
+ msgstr "Sekunden"
9717
+
9718
+ #: Cdnfsd_CloudFront_Engine.php:87
9719
+ msgid "Secret key not specified."
9720
+ msgstr "Geheimer Schlüssel nicht angegeben."
9721
+
9722
+ #: inc/options/cdn/cf.php:55 inc/options/cdn/cf2.php:55
9723
+ #: inc/options/cdn/s3.php:61 inc/options/cdn/s3_compatible.php:47
9724
+ msgid "Secret key:"
9725
+ msgstr "Geheimer Schlüssel:"
9726
+
9727
+ #: inc/lightbox/self_test.php:340 inc/options/cdn/ftp.php:264
9728
+ #: inc/options/cdn/ftp.php:292
9729
+ msgid "Secure File Transfer Protocol"
9730
+ msgstr "Sicheres Dateiübertragungsprotokoll"
9731
+
9732
+ #: Generic_Plugin_Admin.php:724 Generic_Plugin_Admin.php:733
9733
+ #: Generic_Plugin_Admin.php:742 inc/options/cdn/ftp.php:240
9734
+ msgid "Secure Shell"
9735
+ msgstr "Sichere Schale"
9736
+
9737
+ #: inc/options/pgcache.php:113
9738
+ msgid "Secure Socket Layer"
9739
+ msgstr "Secure Socket Layer"
9740
+
9741
+ #: BrowserCache_Page_View_SectionSecurity.php:256
9742
+ #: BrowserCache_Page_View_SectionSecurity.php:260
9743
+ #: Cdn_Highwinds_Page_View.php:64 Cdn_Highwinds_Page_View.php:94
9744
+ #: Cdn_LimeLight_Page_View.php:35 Cdn_LimeLight_Page_View.php:65
9745
+ #: Cdn_MaxCdn_Page_View.php:172 Cdn_MaxCdn_Page_View.php:198
9746
+ #: Cdn_MaxCdn_Page_View.php:242 Cdn_RackSpaceCloudFiles_Page_View.php:82
9747
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:112 Cdn_StackPath2_Page_View.php:204
9748
+ #: Cdn_StackPath2_Page_View.php:230 Cdn_StackPath2_Page_View.php:274
9749
+ #: Cdn_StackPath_Page_View.php:131 Cdn_StackPath_Page_View.php:157
9750
+ #: Cdn_StackPath_Page_View.php:201 Extension_CloudFlare_Page_View.php:698
9751
+ #: Extension_CloudFlare_Page_View.php:745
9752
+ #: Extension_CloudFlare_Page_View.php:767
9753
+ #: Extension_CloudFlare_Page_View.php:783 inc/options/cdn.php:467
9754
+ #: inc/options/cdn/akamai.php:59 inc/options/cdn/akamai.php:89
9755
+ #: inc/options/cdn/att.php:33 inc/options/cdn/att.php:63
9756
+ #: inc/options/cdn/azure.php:42 inc/options/cdn/azure.php:72
9757
+ #: inc/options/cdn/cf.php:89 inc/options/cdn/cf.php:119
9758
+ #: inc/options/cdn/cf2.php:81 inc/options/cdn/cf2.php:111
9759
+ #: inc/options/cdn/cotendo.php:70 inc/options/cdn/edgecast.php:33
9760
+ #: inc/options/cdn/edgecast.php:63 inc/options/cdn/ftp.php:186
9761
+ #: inc/options/cdn/ftp.php:216 inc/options/cdn/mirror.php:19
9762
+ #: inc/options/cdn/mirror.php:49 inc/options/cdn/rscf.php:76
9763
+ #: inc/options/cdn/rscf.php:106 inc/options/cdn/s3.php:95
9764
+ #: inc/options/cdn/s3.php:125 inc/options/cdn/s3_compatible.php:71
9765
+ #: inc/options/cdn/s3_compatible.php:101
9766
+ msgid "Secure Sockets Layer"
9767
+ msgstr "Secure-Sockets-Layer"
9768
+
9769
+ #: Extension_CloudFlare_Page_View.php:722
9770
+ msgid "Secure Sockets Layer\">"
9771
+ msgstr "Secure Sockets Layer\">"
9772
+
9773
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
9774
+ #: Extension_CloudFlare_Page_View.php:763
9775
+ msgid "Security header (%1$sSSL%2$s):"
9776
+ msgstr "Sicherheitsheader (%1$sSSL%2$s):"
9777
+
9778
+ #: BrowserCache_Page_View_SectionSecurity.php:164
9779
+ #: inc/options/common/header.php:343
9780
+ msgid "Security Headers"
9781
+ msgstr "Sicherheits-Header"
9782
+
9783
+ #: BrowserCache_Page_View_QuickReference.php:9
9784
+ msgid "Security Headers: Quick Reference"
9785
+ msgstr "Sicherheitskopfzeilen: Kurzübersicht"
9786
+
9787
+ #: Extension_CloudFlare_Page_View.php:540
9788
+ msgid "Security level:"
9789
+ msgstr "Sicherheitsstufe:"
9790
+
9791
+ #: Extension_CloudFlare_Page_View.php:549
9792
+ msgid ""
9793
+ "security profile for your website, which will automatically adjust each of "
9794
+ "the security settings."
9795
+ msgstr ""
9796
+ "Sicherheitsprofil für Ihre Website, das automatisch alle "
9797
+ "Sicherheitseinstellungen anpasst."
9798
+
9799
+ #: SetupGuide_Plugin_Admin.php:86 SetupGuide_Plugin_Admin.php:122
9800
+ #: SetupGuide_Plugin_Admin.php:180 SetupGuide_Plugin_Admin.php:203
9801
+ #: SetupGuide_Plugin_Admin.php:291 SetupGuide_Plugin_Admin.php:369
9802
+ #: SetupGuide_Plugin_Admin.php:392 SetupGuide_Plugin_Admin.php:475
9803
+ #: SetupGuide_Plugin_Admin.php:512 SetupGuide_Plugin_Admin.php:535
9804
+ #: SetupGuide_Plugin_Admin.php:618 SetupGuide_Plugin_Admin.php:657
9805
+ #: SetupGuide_Plugin_Admin.php:685 SetupGuide_Plugin_Admin.php:737
9806
+ #: SetupGuide_Plugin_Admin.php:764 SetupGuide_Plugin_Admin.php:813
9807
+ msgid "Security violation"
9808
+ msgstr "Sicherheitsverletzung"
9809
+
9810
+ #: SetupGuide_Plugin_Admin.php:1149 SetupGuide_Plugin_Admin.php:1175
9811
+ #: SetupGuide_Plugin_Admin.php:1212
9812
+ msgid "Select"
9813
+ msgstr "Auswählen"
9814
+
9815
+ #. translators: 1 label for Extension select/deselect checkobox
9816
+ #: inc/options/extensions/list.php:89
9817
+ msgid "Select %1$s"
9818
+ msgstr "Wählen Sie %1$s aus"
9819
+
9820
+ #: inc/options/extensions/list.php:64 inc/options/extensions/list.php:69
9821
+ msgid "Select All"
9822
+ msgstr "Wählen Sie Alle"
9823
+
9824
+ #: Extension_NewRelic_Popup_View_ListApplications.php:14
9825
+ msgid "Select Application"
9826
+ msgstr "Anwendung auswählen"
9827
+
9828
+ #: Cdn_RackSpaceCloudFiles_Popup_View_Containers.php:32
9829
+ msgid "Select container to use"
9830
+ msgstr "Wählen Sie den zu verwendenden Behälter aus"
9831
+
9832
+ #: Cdnfsd_CloudFront_Popup_View_Distributions.php:14
9833
+ msgid "Select distribution to use"
9834
+ msgstr "Wählen Sie die zu verwendende Verteilung aus"
9835
+
9836
+ #: Cdn_GoogleDrive_Popup_AuthReturn_View.php:26
9837
+ msgid "Select folder"
9838
+ msgstr "Ordner auswählen"
9839
+
9840
+ #: Extension_Genesis_Page_View.php:215
9841
+ msgid "Select hooks"
9842
+ msgstr "Haken auswählen"
9843
+
9844
+ #: Extension_Genesis_Page_View.php:247
9845
+ msgid ""
9846
+ "Select hooks from the list that should not be cached if user belongs to any "
9847
+ "of the roles selected below."
9848
+ msgstr ""
9849
+ "Wählen Sie Hooks aus der Liste aus, die nicht zwischengespeichert werden "
9850
+ "sollen, wenn der Benutzer einer der unten ausgewählten Rollen angehört."
9851
+
9852
+ #: Cdn_Highwinds_Popup_View_SelectHost.php:30
9853
+ msgid "Select host to use"
9854
+ msgstr "Wählen Sie den zu verwendenden Host aus"
9855
+
9856
+ #: inc/options/general.php:253
9857
+ msgid ""
9858
+ "Select manual mode to use fields on the minify settings tab to specify files "
9859
+ "to be minified, otherwise files will be minified automatically."
9860
+ msgstr ""
9861
+ "Wählen Sie den manuellen Modus, um Felder auf der Registerkarte "
9862
+ "Minimierungseinstellungen zu verwenden, um Dateien anzugeben, die minimiert "
9863
+ "werden sollen, andernfalls werden Dateien automatisch minimiert."
9864
+
9865
+ #: Cdn_RackSpaceCdn_Popup_View_Regions.php:31
9866
+ #: Cdn_RackSpaceCloudFiles_Popup_View_Regions.php:33
9867
+ msgid "Select region"
9868
+ msgstr "Region wählen"
9869
+
9870
+ #: Extension_Genesis_Page_View.php:252
9871
+ msgid "Select roles:"
9872
+ msgstr "Rollen auswählen:"
9873
+
9874
+ #: Cdn_RackSpaceCdn_Popup_View_Services.php:33
9875
+ msgid "Select service to use"
9876
+ msgstr "Wählen Sie den zu verwendenden Dienst aus"
9877
+
9878
+ #: Cdnfsd_StackPath2_Popup_View_Sites.php:13
9879
+ #: Cdn_StackPath2_Popup_View_Sites.php:12
9880
+ msgid "Select site to use"
9881
+ msgstr "Wählen Sie die zu verwendende Website aus"
9882
+
9883
+ #: Cdnfsd_StackPath2_Popup_View_Stacks.php:11
9884
+ #: Cdn_StackPath2_Popup_View_Stacks.php:13
9885
+ msgid "Select stack to use"
9886
+ msgstr "Zu verwendenden Stapel auswählen"
9887
+
9888
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
9889
+ #: Cdn_GeneralPage_View.php:122
9890
+ msgid "Select the %1$sCDN%2$s type you wish to use."
9891
+ msgstr "Wählen Sie den %1$sCDN%2$s-Typ aus, den Sie verwenden möchten."
9892
+
9893
+ #. translators: 3 CDNFSD engine extra description.
9894
+ #: Cdnfsd_GeneralPage_View.php:128
9895
+ msgid "Select the %1$sCDN%2$s type you wish to use. %3$s"
9896
+ msgstr "Wählen Sie den %1$sCDN%2$s-Typ aus, den Sie verwenden möchten. %3$s"
9897
+
9898
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
9899
+ #: Extension_NewRelic_Page_View_Apm.php:229
9900
+ msgid "Select user roles that %1$sRUM%2$s should be enabled for:"
9901
+ msgstr ""
9902
+ "Wählen Sie Benutzerrollen aus, für die %1$sRUM%2$s aktiviert werden soll:"
9903
+
9904
+ #: inc/options/pgcache.php:156
9905
+ msgid "Select user roles that should not receive cached pages:"
9906
+ msgstr ""
9907
+ "Wählen Sie Benutzerrollen aus, die keine zwischengespeicherten Seiten "
9908
+ "erhalten sollen:"
9909
+
9910
+ #: Extension_Genesis_Page_View.php:270
9911
+ msgid "Select user roles that should not use the fragment cache."
9912
+ msgstr ""
9913
+ "Wählen Sie Benutzerrollen aus, die den Fragment-Cache nicht verwenden sollen."
9914
+
9915
+ #: inc/options/cdn.php:538
9916
+ msgid "Select user roles that will use the origin server exclusively:"
9917
+ msgstr ""
9918
+ "Wählen Sie Benutzerrollen aus, die ausschließlich den Ursprungsserver "
9919
+ "verwenden:"
9920
+
9921
+ #: Extension_CloudFlare_Popup_View_Zones.php:32
9922
+ msgid "Select zone"
9923
+ msgstr "Bereich auswählen"
9924
+
9925
+ #: Cdnfsd_MaxCdn_Popup_View_Zones.php:13
9926
+ #: Cdnfsd_StackPath_Popup_View_Zones.php:11 Cdn_MaxCdn_Popup_View_Zones.php:13
9927
+ #: Cdn_StackPath_Popup_View_Zones.php:13
9928
+ msgid "Select zone to use"
9929
+ msgstr "Zu verwendende Zone auswählen"
9930
+
9931
+ #: Cdn_Plugin_Admin.php:251
9932
+ msgid "Self-hosted / File Transfer Protocol Upload"
9933
+ msgstr "Selbst gehostet / File Transfer Protocol-Upload"
9934
+
9935
+ #: BrowserCache_ConfigLabels.php:43
9936
+ msgid "Send session cookies only to secure connections:"
9937
+ msgstr "Session-Cookies nur an sichere Verbindungen senden:"
9938
+
9939
+ #: Extension_ImageService_Plugin_Admin.php:544
9940
+ #: Extension_ImageService_Plugin_Admin.php:723
9941
+ msgid "Sending..."
9942
+ msgstr "Senden..."
9943
+
9944
+ #: Extension_ImageService_Page_View.php:170
9945
+ msgid "Sending:"
9946
+ msgstr "Senden:"
9947
+
9948
+ #: CdnEngine_Mirror_Edgecast.php:134 Cdnfsd_TransparentCDN_Engine.php:160
9949
+ msgid "Server Error"
9950
+ msgstr "Serverfehler"
9951
+
9952
+ #: inc/lightbox/self_test.php:74
9953
+ msgid "Server Modules &amp; Resources:"
9954
+ msgstr "Servermodule &amp; Ressourcen:"
9955
+
9956
+ #: inc/options/install.php:294
9957
+ msgid "Server Preparation"
9958
+ msgstr "Servervorbereitung"
9959
+
9960
+ #: Extension_CloudFlare_Page_View.php:450
9961
+ msgid "Server side exclude:"
9962
+ msgstr "Serverseitig ausschließen:"
9963
+
9964
+ #: Cdn_RackSpaceCdn_Page_View.php:36
9965
+ msgid "Service:"
9966
+ msgstr "Service:"
9967
+
9968
+ #: inc/options/common/header.php:371 inc/options/install.php:291
9969
+ msgid "Services"
9970
+ msgstr "Dienstleistungen"
9971
+
9972
+ #: BrowserCache_ConfigLabels.php:14 BrowserCache_ConfigLabels.php:25
9973
+ #: BrowserCache_ConfigLabels.php:34 inc/options/browsercache.php:105
9974
+ msgid "Set cache control header"
9975
+ msgstr "Setzt den Header für die Cache-Steuerung"
9976
+
9977
+ #. translators: 1 Cookie Domain.
9978
+ #: inc/options/cdn.php:822
9979
+ msgid "Set cookie domain to \"%1$s\""
9980
+ msgstr "Cookie-Domain auf \"%1$s\" setzen"
9981
+
9982
+ #: BrowserCache_ConfigLabels.php:27 BrowserCache_ConfigLabels.php:36
9983
+ #: inc/options/browsercache.php:113
9984
+ msgid "Set entity tag (ETag)"
9985
+ msgstr "Entity-Tag setzen (ETag)"
9986
+
9987
+ #: BrowserCache_ConfigLabels.php:16
9988
+ msgid "Set entity tag (eTag)"
9989
+ msgstr "Entity-Tag setzen (eTag)"
9990
+
9991
+ #: BrowserCache_ConfigLabels.php:12 BrowserCache_ConfigLabels.php:23
9992
+ #: BrowserCache_ConfigLabels.php:32 inc/options/browsercache.php:98
9993
+ msgid "Set expires header"
9994
+ msgstr "Setze den Ablauf-Header"
9995
+
9996
+ #: BrowserCache_ConfigLabels.php:11 BrowserCache_ConfigLabels.php:22
9997
+ #: BrowserCache_ConfigLabels.php:31 inc/options/browsercache.php:88
9998
+ msgid "Set Last-Modified header"
9999
+ msgstr "Legen Sie den Last-Modified-Header fest"
10000
+
10001
+ #: inc/options/cdn/cf.php:174 inc/options/cdn/s3.php:184
10002
+ msgid "Set objects to publicly accessible on upload:"
10003
+ msgstr "Legen Sie Objekte beim Hochladen auf öffentlich zugänglich fest:"
10004
+
10005
+ #: inc/options/browsercache.php:106 inc/options/browsercache.php:404
10006
+ #: inc/options/browsercache.php:551 inc/options/browsercache.php:633
10007
+ msgid ""
10008
+ "Set pragma and cache-control headers to encourage browser caching of files."
10009
+ msgstr ""
10010
+ "Legen Sie Pragma- und Cache-Control-Header fest, um das Browser-Caching von "
10011
+ "Dateien zu fördern."
10012
+
10013
+ #: inc/options/browsercache.php:114 inc/options/browsercache.php:434
10014
+ #: inc/options/browsercache.php:580 inc/options/browsercache.php:663
10015
+ msgid "Set the ETag header to encourage browser caching of files."
10016
+ msgstr ""
10017
+ "Legen Sie den ETag-Header fest, um das Browser-Caching von Dateien zu "
10018
+ "fördern."
10019
+
10020
+ #: inc/options/browsercache.php:99 inc/options/browsercache.php:388
10021
+ #: inc/options/browsercache.php:534 inc/options/browsercache.php:617
10022
+ msgid "Set the expires header to encourage browser caching of files."
10023
+ msgstr ""
10024
+ "Legen Sie den Expires-Header fest, um das Browser-Caching von Dateien zu "
10025
+ "fördern."
10026
+
10027
+ #: inc/options/browsercache.php:90 inc/options/browsercache.php:382
10028
+ #: inc/options/browsercache.php:528 inc/options/browsercache.php:611
10029
+ msgid "Set the Last-Modified header to enable 304 Not Modified response."
10030
+ msgstr ""
10031
+ "Legen Sie den Last-Modified-Header fest, um die 304 Not Modified-Antwort zu "
10032
+ "aktivieren."
10033
+
10034
+ #: inc/options/install.php:14
10035
+ msgid "Set the permissions of wp-content/ back to 755, e.g.:"
10036
+ msgstr "Setze die Berechtigungen von wp-content/ zurück auf 755, z.B.:"
10037
+
10038
+ #: inc/options/browsercache.php:121 inc/options/browsercache.php:440
10039
+ #: inc/options/browsercache.php:586 inc/options/browsercache.php:669
10040
+ msgid "Set this header to assist in identifying optimized files."
10041
+ msgstr ""
10042
+ "Legen Sie diesen Header fest, um die Identifizierung optimierter Dateien zu "
10043
+ "unterstützen."
10044
+
10045
+ #: BrowserCache_ConfigLabels.php:17 BrowserCache_ConfigLabels.php:28
10046
+ #: BrowserCache_ConfigLabels.php:37 inc/options/browsercache.php:120
10047
+ msgid "Set W3 Total Cache header"
10048
+ msgstr "Legen Sie den W3-Gesamt-Cache-Header fest"
10049
+
10050
+ #: inc/lightbox/self_test.php:310
10051
+ msgid "set_time_limit:"
10052
+ msgstr "Zeitlimit setzen:"
10053
+
10054
+ #: UsageStatistics_Page_View.php:268
10055
+ msgid "Sets/period: "
10056
+ msgstr "Sätze/Periode:"
10057
+
10058
+ #: SetupGuide_Plugin_Admin.php:1260
10059
+ msgid "Setting"
10060
+ msgstr "Einstellung"
10061
+
10062
+ #: Extension_ImageService_Plugin_Admin.php:132
10063
+ #: Extension_ImageService_Plugin_Admin.php:557
10064
+ #: Extension_ImageService_Plugin_Admin.php:733
10065
+ #: FeatureShowcase_Plugin_Admin.php:209 FeatureShowcase_Plugin_Admin.php:269
10066
+ #: FeatureShowcase_Plugin_Admin.php:281 FeatureShowcase_Plugin_Admin.php:293
10067
+ #: FeatureShowcase_Plugin_Admin.php:305 FeatureShowcase_Plugin_Admin.php:317
10068
+ #: FeatureShowcase_Plugin_Admin.php:329 FeatureShowcase_Plugin_Admin.php:341
10069
+ #: FeatureShowcase_Plugin_Admin.php:353 FeatureShowcase_Plugin_Admin.php:365
10070
+ #: FeatureShowcase_Plugin_Admin.php:377 FeatureShowcase_Plugin_Admin.php:389
10071
+ #: FeatureShowcase_Plugin_Admin.php:401 FeatureShowcase_Plugin_Admin.php:413
10072
+ #: FeatureShowcase_Plugin_Admin.php:425 FeatureShowcase_Plugin_Admin.php:437
10073
+ #: FeatureShowcase_Plugin_Admin.php:449 FeatureShowcase_Plugin_Admin.php:461
10074
+ #: FeatureShowcase_Plugin_Admin.php:473 Generic_Plugin_Admin.php:582
10075
+ #: inc/options/extensions/list.php:102
10076
+ msgid "Settings"
10077
+ msgstr "Einstellungen"
10078
+
10079
+ #: SetupGuide_Plugin_Admin.php:269 SetupGuide_Plugin_Admin.php:453
10080
+ #: SetupGuide_Plugin_Admin.php:596
10081
+ msgid "Settings not updated"
10082
+ msgstr "Einstellungen nicht aktualisiert"
10083
+
10084
+ #: Extension_ImageService_Plugin_Admin.php:467
10085
+ msgid "Settings saved."
10086
+ msgstr "Einstellungen gespeichert."
10087
+
10088
+ #: Generic_Plugin_Admin.php:804
10089
+ msgid "Settings successfully imported."
10090
+ msgstr "Einstellungen erfolgreich importiert."
10091
+
10092
+ #: Generic_Plugin_Admin.php:805
10093
+ msgid "Settings successfully restored."
10094
+ msgstr "Einstellungen erfolgreich wiederhergestellt."
10095
+
10096
+ #: Cdn_AdminNotes.php:97
10097
+ msgid ""
10098
+ "Settings that affect Browser Cache settings for files hosted by the CDN have "
10099
+ "been changed. To apply the new settings %s and %s. %s"
10100
+ msgstr ""
10101
+ "Einstellungen, die sich auf die Browser-Cache-Einstellungen für vom CDN "
10102
+ "gehostete Dateien auswirken, wurden geändert. Um die neuen Einstellungen %s "
10103
+ "und %s anzuwenden. %s"
10104
+
10105
+ #: SetupGuide_Plugin_Admin.php:267 SetupGuide_Plugin_Admin.php:451
10106
+ #: SetupGuide_Plugin_Admin.php:594
10107
+ msgid "Settings updated"
10108
+ msgstr "Einstellungen aktualisiert"
10109
+
10110
+ #: SetupGuide_Plugin_Admin.php:1281
10111
+ msgid "Setup Complete!"
10112
+ msgstr "Einrichtung abgeschlossen!"
10113
+
10114
+ #: Root_AdminMenu.php:125 Root_AdminMenu.php:126
10115
+ #: SetupGuide_Plugin_Admin.php:870
10116
+ msgid "Setup Guide"
10117
+ msgstr "Einrichtungsanleitung"
10118
+
10119
+ #: FeatureShowcase_Plugin_Admin.php:252
10120
+ msgid "Setup Guide Wizard"
10121
+ msgstr "Assistent für die Einrichtungsanleitung"
10122
+
10123
+ #: Cdn_MaxCdn_Popup_View_Zone.php:46
10124
+ msgid "Shared"
10125
+ msgstr "Geteilt"
10126
+
10127
+ #: inc/options/general.php:169
10128
+ msgid "Shared Server (disk enhanced is best):"
10129
+ msgstr "Gemeinsam genutzter Server (festplattenerweitert ist am besten):"
10130
+
10131
+ #: Util_Ui.php:1053
10132
+ msgid "Shared Server:"
10133
+ msgstr "Geteilter Server:"
10134
+
10135
+ #: Cdn_Plugin.php:543 DbCache_WpdbInjection_QueryCaching.php:859
10136
+ msgid "Short init"
10137
+ msgstr "Kurze Init"
10138
+
10139
+ #: Extension_ImageService_Page_View.php:102
10140
+ msgid "Show converted image attachments in the Media Library."
10141
+ msgstr "Konvertierte Bildanhänge in der Medienbibliothek anzeigen."
10142
+
10143
+ #: Util_Ui.php:1087
10144
+ msgid "Show More"
10145
+ msgstr "Zeig mehr"
10146
+
10147
+ #: inc/options/general.php:783
10148
+ msgid "Show page rating in admin bar"
10149
+ msgstr "Seitenbewertung in der Adminleiste anzeigen"
10150
+
10151
+ #: Extension_Genesis_Page_View.php:14 Extension_Genesis_Page_View.php:152
10152
+ #: Extension_Genesis_Page_View.php:223
10153
+ msgid "Sidebar"
10154
+ msgstr "Seitenleiste"
10155
+
10156
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:47
10157
+ #: Cdn_StackPath_Widget_View_Unauthorized.php:23
10158
+ msgid "Sign Up Now "
10159
+ msgstr "Jetzt registrieren"
10160
+
10161
+ #: Extension_Swarmify_Widget_View_NotConfigured.php:12
10162
+ msgid "Sign Up Now and Save 25%"
10163
+ msgstr "Melden Sie sich jetzt an und sparen Sie 25 %"
10164
+
10165
+ #: Cdn_MaxCdn_Page_View.php:12 Cdn_StackPath2_Page_View.php:28
10166
+ #: Cdn_StackPath_Page_View.php:12
10167
+ msgid "Sign Up Now and save!"
10168
+ msgstr "Jetzt anmelden und sparen!"
10169
+
10170
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
10171
+ #: inc/options/pgcache.php:608
10172
+ msgid ""
10173
+ "Significantly reduce the default %1$sTTL%2$s for comment cookies to reduce "
10174
+ "the number of authenticated user traffic. Enter -1 to revert to default "
10175
+ "%3$sTTL%4$s."
10176
+ msgstr ""
10177
+ "Reduzieren Sie die standardmäßige %1$sTTL%2$s für Kommentar-Cookies "
10178
+ "erheblich, um die Anzahl des authentifizierten Benutzerverkehrs zu "
10179
+ "reduzieren. Geben Sie -1 ein, um zum Standard %3$sTTL%4$s zurückzukehren."
10180
+
10181
+ #: inc/options/parts/memcached.php:89 inc/options/parts/memcached.php:107
10182
+ #: inc/options/parts/memcached.php:137 inc/options/parts/redis.php:116
10183
+ msgid "Simple Authentication and Security Layer"
10184
+ msgstr "Einfache Authentifizierungs- und Sicherheitsschicht"
10185
+
10186
+ #: inc/options/general.php:572 inc/options/general.php:659
10187
+ msgid "Simple Notification Service"
10188
+ msgstr "Einfacher Benachrichtigungsdienst"
10189
+
10190
+ #: inc/options/minify/ccjs2.php:10 inc/options/minify/googleccjs2.php:10
10191
+ msgid "Simple optimizations"
10192
+ msgstr "Einfache Optimierungen"
10193
+
10194
+ #: Extension_CloudFlare_Page_View.php:180
10195
+ msgid "Simplified (ignore the query string when delivering a cached resource)"
10196
+ msgstr ""
10197
+ "Vereinfacht (ignorieren Sie die Abfragezeichenfolge bei der Bereitstellung "
10198
+ "einer zwischengespeicherten Ressource)"
10199
+
10200
+ #: Cdn_StackPath2_Popup_View_Success.php:13
10201
+ msgid "Site was successfully configured."
10202
+ msgstr "Site wurde erfolgreich konfiguriert."
10203
+
10204
+ #: Cdnfsd_StackPath2_Popup_View_Sites.php:16
10205
+ #: Cdnfsd_StackPath2_Popup_View_Stacks.php:14
10206
+ #: Cdn_StackPath2_Popup_View_Sites.php:15
10207
+ msgid "Site:"
10208
+ msgstr "Seite? ˅:"
10209
+
10210
+ #: PgCache_ConfigLabels.php:21
10211
+ msgid "Sitemap <acronym title=\"Uniform Resource Indicator\">URL</acronym>:"
10212
+ msgstr ""
10213
+ "Sitemap- <acronym title=\"Einheitlicher Ressourcenindikator\">URL</acronym> :"
10214
+
10215
+ #: UsageStatistics_Page_View.php:424 UsageStatistics_Page_View.php:450
10216
+ #: UsageStatistics_Page_View.php:482
10217
+ msgid "Size used (MB)"
10218
+ msgstr "Verwendete Größe (MB)"
10219
+
10220
+ #: UsageStatistics_Page_View.php:56
10221
+ msgid "Size used: "
10222
+ msgstr "Verwendete Größe:"
10223
+
10224
+ #: inc/wizard/template.php:160
10225
+ msgid "SKIP"
10226
+ msgstr "ÜBERSPRINGEN"
10227
+
10228
+ #: UsageStatistics_GeneralPage_View.php:40
10229
+ msgid "Slot time (seconds):"
10230
+ msgstr "Slot-Zeit (Sekunden):"
10231
+
10232
+ #: UsageStatistics_GeneralPage_View.php:48
10233
+ msgid "Slots collected:"
10234
+ msgstr "Gesammelte Slots:"
10235
+
10236
+ #: UsageStatistics_Page_View.php:336
10237
+ msgid "Slowest requests (in debug mode only)"
10238
+ msgstr "Langsamste Anfragen (nur im Debug-Modus)"
10239
+
10240
+ #: Cdn_MaxCdn_Popup_View_Zone.php:44
10241
+ msgid "SNI"
10242
+ msgstr "SNI"
10243
+
10244
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
10245
+ #: Cdn_Highwinds_Page_View.php:88 Cdn_LimeLight_Page_View.php:59
10246
+ #: Cdn_MaxCdn_Page_View.php:236 Cdn_RackSpaceCloudFiles_Page_View.php:106
10247
+ #: Cdn_StackPath2_Page_View.php:268 Cdn_StackPath_Page_View.php:195
10248
+ #: inc/options/cdn/akamai.php:83 inc/options/cdn/att.php:57
10249
+ #: inc/options/cdn/azure.php:66 inc/options/cdn/cf.php:113
10250
+ #: inc/options/cdn/cf2.php:105 inc/options/cdn/cotendo.php:64
10251
+ #: inc/options/cdn/edgecast.php:57 inc/options/cdn/ftp.php:210
10252
+ #: inc/options/cdn/mirror.php:43 inc/options/cdn/rscf.php:100
10253
+ #: inc/options/cdn/s3.php:119 inc/options/cdn/s3_compatible.php:95
10254
+ msgid ""
10255
+ "Some %1$sCDN%2$s providers may or may not support %3$sSSL%4$s, contact your "
10256
+ "vendor for more information."
10257
+ msgstr ""
10258
+ "Einige %1$sCDN%2$s-Anbieter unterstützen möglicherweise %3$sSSL%4$s oder "
10259
+ "auch nicht. Wenden Sie sich für weitere Informationen an Ihren Anbieter."
10260
+
10261
+ #: UsageStatistics_GeneralPage_View.php:26
10262
+ msgid ""
10263
+ "Some statistics are available directly on your Performance Dashboard, "
10264
+ "however, the comprehensive suite of statistics are available on the "
10265
+ "Statistics screen. Web server logs created by Nginx or Apache can be "
10266
+ "analyzed if accessible."
10267
+ msgstr ""
10268
+ "Einige Statistiken sind direkt auf Ihrem Leistungs-Dashboard verfügbar, die "
10269
+ "umfassende Suite von Statistiken ist jedoch auf dem Statistikbildschirm "
10270
+ "verfügbar. Von Nginx oder Apache erstellte Webserverprotokolle können "
10271
+ "analysiert werden, sofern zugänglich."
10272
+
10273
+ #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:47
10274
+ msgid "Something that describes your zone. Length: 1-255 chars"
10275
+ msgstr "Etwas, das Ihre Zone beschreibt. Länge: 1-255 Zeichen"
10276
+
10277
+ #: inc/options/general.php:1015
10278
+ msgid ""
10279
+ "Sometimes, you'll encounter a complex issue involving your cache being "
10280
+ "purged for an unknown reason. The Purge Logs functionality can help you "
10281
+ "easily resolve those issues."
10282
+ msgstr ""
10283
+ "Manchmal stoßen Sie auf ein komplexes Problem, bei dem Ihr Cache aus einem "
10284
+ "unbekannten Grund geleert wird. Die Funktion „Protokolle bereinigen“ kann "
10285
+ "Ihnen dabei helfen, diese Probleme einfach zu lösen."
10286
+
10287
+ #: Minify_ConfigLabels.php:54
10288
+ msgid "Sort Properties"
10289
+ msgstr "Eigenschaften sortieren"
10290
+
10291
+ #: Minify_ConfigLabels.php:55
10292
+ msgid "Sort Selectors (caution)"
10293
+ msgstr "Selektoren sortieren (Vorsicht)"
10294
+
10295
+ #: CdnEngine_S3.php:45
10296
+ msgid "South America (São Paulo)"
10297
+ msgstr "Südamerika (São Paulo)"
10298
+
10299
+ #: BrowserCache_Page_View_SectionSecurity.php:633
10300
+ msgid "Specifies the origins that can serve web fonts."
10301
+ msgstr "Gibt die Ursprünge an, die Webfonts bereitstellen können."
10302
+
10303
+ #: BrowserCache_Page_View_SectionSecurity.php:755
10304
+ msgid ""
10305
+ "Specifies valid parents that may embed a page using &lt;frame&gt;, &lt;"
10306
+ "iframe&gt;, &lt;object&gt;, &lt;embed&gt;, or &lt;applet&gt;."
10307
+ msgstr ""
10308
+ "Gibt gültige Eltern an, die eine Seite mit &lt;frame&gt;, &lt;iframe&gt;, "
10309
+ "&lt;object&gt;, &lt;embed&gt; oder &lt;applet&gt; einbetten können."
10310
+
10311
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
10312
+ #: BrowserCache_Page_View_SectionSecurity.php:699
10313
+ msgid "Specifies valid sources for %1$sCSS%2$s stylesheets."
10314
+ msgstr "Gibt gültige Quellen für %1$sCSS%2$s Stylesheets an."
10315
+
10316
+ #: BrowserCache_Page_View_SectionSecurity.php:653
10317
+ msgid "Specifies valid sources for images and favicons."
10318
+ msgstr "Gibt gültige Quellen für Bilder und Favicons an."
10319
+
10320
+ #: BrowserCache_Page_View_SectionSecurity.php:683
10321
+ msgid "Specifies valid sources for JavaScript."
10322
+ msgstr "Gibt gültige Quellen für JavaScript an."
10323
+
10324
+ #: BrowserCache_Page_View_SectionSecurity.php:663
10325
+ msgid ""
10326
+ "Specifies valid sources for loading media using the &lt;audio&gt; and &lt;"
10327
+ "video&gt; elements."
10328
+ msgstr ""
10329
+ "Gibt gültige Quellen zum Laden von Medien mithilfe der Elemente &lt;audio&gt;"
10330
+ " und &lt;video&gt; an."
10331
+
10332
+ #: inc/options/pgcache.php:404
10333
+ msgid "Specify a regular expression that matches your sitemaps."
10334
+ msgstr "Geben Sie einen regulären Ausdruck an, der zu Ihren Sitemaps passt."
10335
+
10336
+ #: Cdnfsd_CloudFront_Page_View.php:19 Cdnfsd_LimeLight_Page_View.php:19
10337
+ #: Cdnfsd_MaxCdn_Page_View.php:18 Cdnfsd_StackPath2_Page_View.php:25
10338
+ #: Cdnfsd_StackPath_Page_View.php:19 Cdn_MaxCdn_Page_View.php:23
10339
+ #: Cdn_StackPath2_Page_View.php:45 Cdn_StackPath_Page_View.php:21
10340
+ #: Extension_CloudFlare_Page_View.php:55
10341
+ msgid "Specify account credentials:"
10342
+ msgstr "Kontoanmeldeinformationen angeben:"
10343
+
10344
+ #: inc/options/pgcache.php:797
10345
+ msgid "Specify additional page headers to cache."
10346
+ msgstr ""
10347
+ "Geben Sie zusätzliche Seitenkopfzeilen an, die zwischengespeichert werden "
10348
+ "sollen."
10349
+
10350
+ #: inc/options/pgcache.php:397
10351
+ msgid ""
10352
+ "Specify additional pages to purge. Including parent page in path. Ex: "
10353
+ "parent/posts."
10354
+ msgstr ""
10355
+ "Geben Sie zusätzliche zu löschende Seiten an. Einschließen der "
10356
+ "übergeordneten Seite in den Pfad. Bsp.: Eltern/Beiträge."
10357
+
10358
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
10359
+ #: Extension_FeedBurner_Page_View.php:52
10360
+ msgid "Specify any additional feed %1$sURL%2$ss to ping on FeedBurner."
10361
+ msgstr ""
10362
+ "Geben Sie einen beliebigen zusätzlichen Feed %1$sURL%2$ss an, um FeedBurner "
10363
+ "zu pingen."
10364
+
10365
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
10366
+ #: inc/options/cdn.php:737
10367
+ msgid ""
10368
+ "Specify any files outside of theme or other common directories to host with "
10369
+ "the %1$sCDN%2$s."
10370
+ msgstr ""
10371
+ "Geben Sie alle Dateien außerhalb des Designs oder anderer allgemeiner "
10372
+ "Verzeichnisse an, die mit dem %1$sCDN%2$s gehostet werden sollen."
10373
+
10374
+ #: Extension_NewRelic_Popup_View_Intro.php:16
10375
+ msgid "Specify API Key"
10376
+ msgstr "Geben Sie den API-Schlüssel an"
10377
+
10378
+ #: inc/options/browsercache.php:376
10379
+ msgid ""
10380
+ "Specify browser cache policy for Cascading Style Sheets and JavaScript files."
10381
+ msgstr ""
10382
+ "Geben Sie die Browser-Cache-Richtlinie für Cascading Style Sheets und "
10383
+ "JavaScript-Dateien an."
10384
+
10385
+ #: inc/options/browsercache.php:522
10386
+ msgid ""
10387
+ "Specify browser cache policy for posts, pages, feeds and text-based files."
10388
+ msgstr ""
10389
+ "Geben Sie die Browser-Cache-Richtlinie für Posts, Seiten, Feeds und "
10390
+ "textbasierte Dateien an."
10391
+
10392
+ #: inc/options/cdn/akamai.php:27
10393
+ msgid ""
10394
+ "Specify email addresses for completed removal notifications. One email per "
10395
+ "line."
10396
+ msgstr ""
10397
+ "Geben Sie E-Mail-Adressen für Benachrichtigungen über abgeschlossene "
10398
+ "Entfernungen an. Eine E-Mail pro Zeile."
10399
+
10400
+ #: inc/options/minify.php:973
10401
+ msgid "Specify external files/libraries that should be combined."
10402
+ msgstr ""
10403
+ "Geben Sie externe Dateien/Bibliotheken an, die kombiniert werden sollen."
10404
+
10405
+ #: Extension_FragmentCache_Page_View.php:118
10406
+ msgid ""
10407
+ "Specify fragment groups that should be managed by W3 Total Cache. Enter one "
10408
+ "action per line comma delimited, e.g. (group, action1, action2). Include the "
10409
+ "prefix used for a transient by a theme or plugin."
10410
+ msgstr ""
10411
+ "Geben Sie Fragmentgruppen an, die von W3 Total Cache verwaltet werden sollen."
10412
+ " Geben Sie eine Aktion pro Zeile kommagetrennt ein, z. (Gruppe, Aktion1, "
10413
+ "Aktion2). Fügen Sie das Präfix hinzu, das von einem Design oder Plugin für "
10414
+ "einen Transienten verwendet wird."
10415
+
10416
+ #. translators: 4 HTML line break tag, 5 HTML line break tag.
10417
+ #: inc/options/pgcache.php:211
10418
+ msgid ""
10419
+ "Specify full home %1$sURL%2$ss of your mirrors so that plugin will flush "
10420
+ "it's cache when content is changed. For example:%3$s http://my-site."
10421
+ "com%4$shttp://www.my-site.com%5$shttps://my-site.com"
10422
+ msgstr ""
10423
+ "Geben Sie die vollständige Startseite %1$sURL%2$ss Ihrer Spiegelserver an, "
10424
+ "damit das Plug-in seinen Cache leert, wenn Inhalte geändert werden. Beispiel:"
10425
+ " %3$s http://meine-site.com%4$shttp://www.meine-site.com%5$shttps://meine-"
10426
+ "site.com"
10427
+
10428
+ #: inc/options/browsercache.php:80
10429
+ msgid "Specify global browser cache policy."
10430
+ msgstr "Geben Sie die globale Browser-Cache-Richtlinie an."
10431
+
10432
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
10433
+ #: Extension_CloudFlare_Page_View.php:300
10434
+ msgid ""
10435
+ "Specify how long a visitor is allowed access to your site after successfully "
10436
+ "completing a challenge (such as a CAPTCHA). After the %1$sTTL%2$s has "
10437
+ "expired the visitor will have to complete a new challenge."
10438
+ msgstr ""
10439
+ "Geben Sie an, wie lange ein Besucher auf Ihre Website zugreifen darf, "
10440
+ "nachdem er eine Herausforderung (z. B. ein CAPTCHA) erfolgreich "
10441
+ "abgeschlossen hat. Nachdem die %1$sTTL%2$s abgelaufen ist, muss der Besucher "
10442
+ "eine neue Herausforderung absolvieren."
10443
+
10444
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
10445
+ #: inc/options/parts/memcached.php:133
10446
+ msgid "Specify memcached password, when %1$sSASL%2$s authentication used"
10447
+ msgstr ""
10448
+ "Geben Sie das Memcache-Passwort an, wenn die %1$sSASL%2$s-Authentifizierung "
10449
+ "verwendet wird"
10450
+
10451
+ #: inc/options/parts/memcached_extension.php:75
10452
+ msgid ""
10453
+ "Specify memcached password, when <acronym title=\"Simple Authentication and "
10454
+ "Security Layer\">SASL</acronym> authentication used"
10455
+ msgstr ""
10456
+ "Geben Sie das Memcache-Passwort an, wenn die <acronym title=\"Einfache "
10457
+ "Authentifizierungs- und Sicherheitsschicht\">SASL-</acronym> "
10458
+ "Authentifizierung verwendet wird"
10459
+
10460
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
10461
+ #: inc/options/parts/memcached.php:85
10462
+ msgid "Specify memcached username, when %1$sSASL%2$s authentication used"
10463
+ msgstr ""
10464
+ "Geben Sie den Memcache-Benutzernamen an, wenn die %1$sSASL%2$s-"
10465
+ "Authentifizierung verwendet wird"
10466
+
10467
+ #: inc/options/parts/memcached_extension.php:62
10468
+ msgid ""
10469
+ "Specify memcached username, when <acronym title=\"Simple Authentication and "
10470
+ "Security Layer\">SASL</acronym> authentication used"
10471
+ msgstr ""
10472
+ "Geben Sie den Memcached-Benutzernamen an, wenn die <acronym title=\"Einfache "
10473
+ "Authentifizierungs- und Sicherheitsschicht\">SASL-</acronym> "
10474
+ "Authentifizierung verwendet wird"
10475
+
10476
+ #. translators: 1 HTML line break tag.
10477
+ #: inc/options/pgcache.php:377
10478
+ msgid ""
10479
+ "Specify number of pages that lists posts (archive etc) that should be purged "
10480
+ "on post updates etc, i.e example.com/ ... example.com/page/5. %1$s0 means "
10481
+ "all pages that lists posts are purged, i.e example.com/page/2 ... ."
10482
+ msgstr ""
10483
+ "Geben Sie die Anzahl der Seiten an, die Posts (Archiv usw.) auflisten, die "
10484
+ "bei Post-Updates usw. gelöscht werden sollen, z. B. example.com/ ... example."
10485
+ "com/page/5. %1$s0 bedeutet, dass alle Seiten, die Beiträge auflisten, "
10486
+ "gelöscht werden, z. B. example.com/page/2 ... ."
10487
+
10488
+ #: PgCache_ConfigLabels.php:56
10489
+ msgid "Specify page headers:"
10490
+ msgstr "Seitenkopfzeilen angeben:"
10491
+
10492
+ #: inc/options/parts/redis_extension.php:104
10493
+ msgid "Specify redis password"
10494
+ msgstr "Geben Sie das Redis-Passwort an"
10495
+
10496
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
10497
+ #: inc/options/parts/redis.php:112
10498
+ msgid "Specify redis password, when %1$sSASL%2$s authentication used"
10499
+ msgstr ""
10500
+ "Geben Sie das Redis-Passwort an, wenn die %1$sSASL%2$s-Authentifizierung "
10501
+ "verwendet wird"
10502
+
10503
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
10504
+ #: inc/options/general.php:597
10505
+ msgid "Specify the %1$sAPI%2$s Key."
10506
+ msgstr "Geben Sie den %1$sAPI%2$s-Schlüssel an."
10507
+
10508
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
10509
+ #: inc/options/general.php:626
10510
+ msgid "Specify the %1$sAPI%2$s secret."
10511
+ msgstr "Geben Sie das %1$sAPI%2$s-Geheimnis an."
10512
+
10513
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
10514
+ #: inc/options/general.php:655
10515
+ msgid "Specify the %1$sSNS%2$s topic."
10516
+ msgstr "Geben Sie das %1$sSNS%2$s-Thema an."
10517
+
10518
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
10519
+ #: inc/options/general.php:568
10520
+ msgid ""
10521
+ "Specify the Amazon %1$sSNS%2$s service endpoint hostname. If empty, then "
10522
+ "default \"sns.us-east-1.amazonaws.com\" will be used."
10523
+ msgstr ""
10524
+ "Geben Sie den Hostnamen des Amazon %1$sSNS%2$s-Dienstendpunkts an. Wenn leer,"
10525
+ " wird standardmäßig „sns.us-east-1.amazonaws.com“ verwendet."
10526
+
10527
+ #: CacheGroups_Plugin_Admin_View.php:305
10528
+ msgid ""
10529
+ "Specify the cookies for this group. Values like 'cookie', 'cookie=value', "
10530
+ "and cookie[a-z]+=value[a-z]+ are supported. Remember to escape special "
10531
+ "characters like spaces, dots or dashes with a backslash. Regular expressions "
10532
+ "are also supported."
10533
+ msgstr ""
10534
+ "Geben Sie die Cookies für diese Gruppe an. Werte wie „Cookie“, „Cookie=Wert“ "
10535
+ "und „Cookie[a-z]+=Wert[a-z]+“ werden unterstützt. Denken Sie daran, "
10536
+ "Sonderzeichen wie Leerzeichen, Punkte oder Bindestriche mit einem Backslash "
10537
+ "zu maskieren. Reguläre Ausdrücke werden ebenfalls unterstützt."
10538
+
10539
+ #: inc/options/cdn/ftp.php:172
10540
+ msgid ""
10541
+ "Specify the directory where files must be uploaded to be accessible in a web "
10542
+ "browser (the document root)."
10543
+ msgstr ""
10544
+ "Geben Sie das Verzeichnis an, in das Dateien hochgeladen werden müssen, "
10545
+ "damit sie in einem Webbrowser zugänglich sind (das Dokumentstammverzeichnis)."
10546
+
10547
+ #: PgCache_ConfigLabels.php:36
10548
+ msgid "Specify the feed types to purge:"
10549
+ msgstr "Geben Sie die zu löschenden Feedtypen an:"
10550
+
10551
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
10552
+ #: inc/options/cdn.php:700
10553
+ msgid ""
10554
+ "Specify the file types in the active theme to host with the %1$sCDN%2$s."
10555
+ msgstr ""
10556
+ "Geben Sie die Dateitypen im aktiven Design an, die mit dem %1$sCDN%2$s "
10557
+ "gehostet werden sollen."
10558
+
10559
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
10560
+ #: inc/options/cdn.php:672
10561
+ msgid ""
10562
+ "Specify the file types within the WordPress core to host with the "
10563
+ "%1$sCDN%2$s."
10564
+ msgstr ""
10565
+ "Geben Sie die Dateitypen im WordPress-Kern an, die mit dem %1$sCDN%2$s "
10566
+ "gehostet werden sollen."
10567
+
10568
+ #: inc/options/minify.php:879
10569
+ msgid ""
10570
+ "Specify the interval between download and update of external files in the "
10571
+ "minify cache. Hint: 6 hours is 21600 seconds. 12 hours is 43200 seconds. 24 "
10572
+ "hours is 86400 seconds."
10573
+ msgstr ""
10574
+ "Geben Sie das Intervall zwischen Download und Aktualisierung externer "
10575
+ "Dateien im Minify-Cache an. Hinweis: 6 Stunden sind 21600 Sekunden. 12 "
10576
+ "Stunden sind 43200 Sekunden. 24 Stunden sind 86400 Sekunden."
10577
+
10578
+ #: inc/options/cdn.php:639
10579
+ msgid "Specify the interval between upload of changed files."
10580
+ msgstr "Geben Sie das Intervall zwischen dem Hochladen geänderter Dateien an."
10581
+
10582
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
10583
+ #: inc/options/general.php:511
10584
+ msgid ""
10585
+ "Specify the IP addresses of your varnish instances above. The %1$sVCL%2$s's "
10586
+ "%3$sACL%4$s must allow this request."
10587
+ msgstr ""
10588
+ "Geben Sie oben die IP-Adressen Ihrer Lackinstanzen an. Die %3$sACL%4$s der "
10589
+ "%1$sVCL%2$s muss diese Anfrage zulassen."
10590
+
10591
+ #: inc/options/pgcache.php:320
10592
+ msgid ""
10593
+ "Specify the pages and feeds to purge when posts are created, edited, or "
10594
+ "comments posted. The defaults are recommended because additional options may "
10595
+ "reduce server performance:"
10596
+ msgstr ""
10597
+ "Geben Sie die Seiten und Feeds an, die gelöscht werden sollen, wenn Beiträge "
10598
+ "erstellt, bearbeitet oder Kommentare gepostet werden. Die "
10599
+ "Standardeinstellungen werden empfohlen, da zusätzliche Optionen die "
10600
+ "Serverleistung beeinträchtigen können:"
10601
+
10602
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
10603
+ #: inc/options/cdn.php:795
10604
+ msgid "Specify the path of files that should not use the %1$sCDN%2$s."
10605
+ msgstr ""
10606
+ "Geben Sie den Pfad der Dateien an, die das %1$sCDN%2$s nicht verwenden "
10607
+ "sollen."
10608
+
10609
+ #: CacheGroups_Plugin_Admin_View.php:222
10610
+ msgid ""
10611
+ "Specify the referrers for this group. Remember to escape special characters "
10612
+ "like spaces, dots or dashes with a backslash. Regular expressions are also "
10613
+ "supported."
10614
+ msgstr ""
10615
+ "Geben Sie die Referrer für diese Gruppe an. Denken Sie daran, Sonderzeichen "
10616
+ "wie Leerzeichen, Punkte oder Bindestriche mit einem Backslash zu maskieren. "
10617
+ "Reguläre Ausdrücke werden ebenfalls unterstützt."
10618
+
10619
+ #: inc/options/cdn/ftp.php:56
10620
+ msgid ""
10621
+ "Specify the server's address, e.g.: \"ftp.domain.com\". Try \"127.0.0.1\" if "
10622
+ "using a sub-domain on the same server as your site."
10623
+ msgstr ""
10624
+ "Geben Sie die Adresse des Servers an, z. B.: \"ftp.domain.com\". Versuchen "
10625
+ "Sie „127.0.0.1“, wenn Sie eine Subdomain auf demselben Server wie Ihre "
10626
+ "Website verwenden."
10627
+
10628
+ #: CacheGroups_Plugin_Admin_View.php:116
10629
+ msgid ""
10630
+ "Specify the user agents for this group. Remember to escape special "
10631
+ "characters like spaces, dots or dashes with a backslash. Regular expressions "
10632
+ "are also supported."
10633
+ msgstr ""
10634
+ "Geben Sie die Benutzeragenten für diese Gruppe an. Denken Sie daran, "
10635
+ "Sonderzeichen wie Leerzeichen, Punkte oder Bindestriche mit einem Backslash "
10636
+ "zu maskieren. Reguläre Ausdrücke werden ebenfalls unterstützt."
10637
+
10638
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
10639
+ #: inc/options/cdn.php:768
10640
+ msgid ""
10641
+ "Specify user agents that should not access files hosted with the %1$sCDN%2$s."
10642
+ msgstr ""
10643
+ "Geben Sie Benutzeragenten an, die nicht auf Dateien zugreifen sollen, die "
10644
+ "mit dem %1$sCDN%2$s gehostet werden."
10645
+
10646
+ #: inc/options/minify.php:965
10647
+ msgid "Specify user agents that will never receive minified content."
10648
+ msgstr "Geben Sie Benutzeragenten an, die niemals minimierte Inhalte erhalten."
10649
+
10650
+ #: Generic_WidgetSpreadTheWord_Plugin.php:44
10651
+ msgid "Spread the Word"
10652
+ msgstr "Verbreiten Sie das Wort"
10653
+
10654
+ #: Generic_Plugin_Admin.php:724 Generic_Plugin_Admin.php:733
10655
+ #: Generic_Plugin_Admin.php:742
10656
+ msgid "SSH"
10657
+ msgstr "SSH"
10658
+
10659
+ #: Cdn_Plugin.php:564
10660
+ msgid "SSL is rejected"
10661
+ msgstr "SSL wird abgelehnt"
10662
+
10663
+ #: inc/options/cdn/ftp.php:85
10664
+ msgid "SSL-FTP connection (FTPS)"
10665
+ msgstr "SSL-FTP-Verbindung (FTPS)"
10666
+
10667
+ #: Cdnfsd_Plugin_Admin.php:109 Cdn_Plugin_Admin.php:210
10668
+ msgid "StackPath (recommended)"
10669
+ msgstr "StackPath (empfohlen)"
10670
+
10671
+ #: Cdn_StackPath_Page_View.php:13
10672
+ msgid ""
10673
+ "StackPath is a service that lets you speed up your site even more with W3 "
10674
+ "Total Cache. Sign up now and save!"
10675
+ msgstr ""
10676
+ "StackPath ist ein Dienst, mit dem Sie Ihre Website mit W3 Total Cache noch "
10677
+ "weiter beschleunigen können. Jetzt anmelden und sparen!"
10678
+
10679
+ #: Cdn_StackPath2_Page_View.php:34
10680
+ msgid ""
10681
+ "StackPath is a service that lets you speed up your site even more with W3 "
10682
+ "Total Cache. Sign up now to recieve a special offer!"
10683
+ msgstr ""
10684
+ "StackPath ist ein Dienst, mit dem Sie Ihre Website mit W3 Total Cache noch "
10685
+ "weiter beschleunigen können. Melden Sie sich jetzt an, um ein Sonderangebot "
10686
+ "zu erhalten!"
10687
+
10688
+ #: Cdnfsd_Plugin_Admin.php:106 Cdn_Plugin_Admin.php:214
10689
+ msgid "StackPath SecureCDN (Legacy)"
10690
+ msgstr "StackPath SecureCDN (Legacy)"
10691
+
10692
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:42
10693
+ msgid ""
10694
+ "StackPath works magically with W3 Total Cache to speed up your site around "
10695
+ "the world for as little as $10 per month."
10696
+ msgstr ""
10697
+ "StackPath arbeitet auf magische Weise mit W3 Total Cache zusammen, um Ihre "
10698
+ "Website für nur 10 US-Dollar pro Monat weltweit zu beschleunigen."
10699
+
10700
+ #: Cdn_StackPath_Widget_View_Unauthorized.php:22
10701
+ msgid "StackPath works magically with W3 Total Cache."
10702
+ msgstr "StackPath funktioniert auf magische Weise mit W3 Total Cache."
10703
+
10704
+ #: inc/options/minify/csstidy2.php:11
10705
+ msgid "Standard (balance between readability and size)"
10706
+ msgstr "Standard (Ausgewogenheit zwischen Lesbarkeit und Größe)"
10707
+
10708
+ #: inc/popup/cdn_export_file.php:52 inc/popup/cdn_export_library.php:42
10709
+ #: inc/popup/cdn_import_library.php:79 inc/popup/cdn_rename_domain.php:68
10710
+ msgid "Start"
10711
+ msgstr "Anfang"
10712
+
10713
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
10714
+ #: Minify_HelpPopup_View.php:76
10715
+ msgid ""
10716
+ "Start with minify for your %1$sCSS%2$s using auto mode first. If you have "
10717
+ "any issues at that step,\n"
10718
+ "\t\t\t\t\t\t\tcontact your developer(s) and report a bug. They should be "
10719
+ "able to point you in the right\n"
10720
+ "\t\t\t\t\t\t\tdirection or correct the issue in a future update."
10721
+ msgstr ""
10722
+ "Beginnen Sie mit der Minimierung für Ihre %1$sCSS%2$s, indem Sie zuerst den "
10723
+ "automatischen Modus verwenden. Wenn Sie bei diesem Schritt Probleme haben,\n"
10724
+ "Wenden Sie sich an Ihren/Ihre Entwickler und melden Sie einen Fehler. Sie "
10725
+ "sollten in der Lage sein, Ihnen den richtigen Weg zu weisen\n"
10726
+ "Richtung oder beheben Sie das Problem in einem zukünftigen Update."
10727
+
10728
+ #: Generic_AdminActions_Flush.php:100
10729
+ msgid "Static files cache successfully emptied."
10730
+ msgstr "Der Cache für statische Dateien wurde erfolgreich geleert."
10731
+
10732
+ #: UsageStatistics_Page_View.php:193
10733
+ msgid "Static Requests/period: "
10734
+ msgstr "Statische Anfragen/Zeitraum:"
10735
+
10736
+ #: UsageStatistics_Page_View.php:196
10737
+ msgid "Static Requests/second: "
10738
+ msgstr "Statische Anfragen/Sekunde:"
10739
+
10740
+ #: UsageStatistics_Page_View.php:199
10741
+ msgid "Static time to process (ms): "
10742
+ msgstr "Statische Verarbeitungszeit (ms):"
10743
+
10744
+ #: Extension_ImageService_Page_View.php:147 UsageStatistics_GeneralPage.php:25
10745
+ #: UsageStatistics_Plugin_Admin.php:81 UsageStatistics_Plugin_Admin.php:82
10746
+ msgid "Statistics"
10747
+ msgstr "Statistiken"
10748
+
10749
+ #: UsageStatistics_GeneralPage_View.php:25
10750
+ msgid ""
10751
+ "Statistics provides near-complete transparency into the behavior of your "
10752
+ "caching performance, allowing you to identify opportunities to further "
10753
+ "improve your website speed and ensure operations are working as expected. "
10754
+ "Includes metrics like cache sizes, object lifetimes, hit vs miss ratio, etc "
10755
+ "across every caching method configured in your settings."
10756
+ msgstr ""
10757
+ "Statistiken bieten nahezu vollständige Transparenz über das Verhalten Ihrer "
10758
+ "Caching-Leistung, sodass Sie Möglichkeiten zur weiteren Verbesserung Ihrer "
10759
+ "Website-Geschwindigkeit erkennen und sicherstellen können, dass der Betrieb "
10760
+ "wie erwartet funktioniert. Umfasst Metriken wie Cache-Größen, "
10761
+ "Objektlebensdauern, Hit-vs-Miss-Ratio usw. für alle Caching-Methoden, die in "
10762
+ "Ihren Einstellungen konfiguriert sind."
10763
+
10764
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:29
10765
+ #: Cdn_StackPath_Widget_View_Authorized.php:19
10766
+ msgid "Status"
10767
+ msgstr "Status"
10768
+
10769
+ #: inc/popup/cdn_export_file.php:38 inc/popup/cdn_export_library.php:28
10770
+ #: inc/popup/cdn_import_library.php:29 inc/popup/cdn_rename_domain.php:47
10771
+ msgid "Status:"
10772
+ msgstr "Status:"
10773
+
10774
+ #: Minify_HelpPopup_View.php:69
10775
+ msgid "Still want to get started? Now for the Pro' tips:"
10776
+ msgstr "Du willst trotzdem loslegen? Nun zu den Profi-Tipps:"
10777
+
10778
+ #: SetupGuide_Plugin_Admin.php:1150 SetupGuide_Plugin_Admin.php:1176
10779
+ #: SetupGuide_Plugin_Admin.php:1213
10780
+ msgid "Storage Engine"
10781
+ msgstr "Speicher-Engine"
10782
+
10783
+ #: inc/options/objectcache.php:105
10784
+ msgid "Store transients in database"
10785
+ msgstr "Speichern Sie Transienten in der Datenbank"
10786
+
10787
+ #: Extension_CloudFlare_Page_View.php:736
10788
+ msgid "Strict"
10789
+ msgstr "Strikt"
10790
+
10791
+ #: Extension_CloudFlare_Page_View.php:527
10792
+ msgid "Strips metadata and compresses your images for faster page load times."
10793
+ msgstr ""
10794
+ "Entfernt Metadaten und komprimiert Ihre Bilder für schnellere "
10795
+ "Seitenladezeiten."
10796
+
10797
+ #: BrowserCache_ConfigLabels.php:66
10798
+ msgid "style-src:"
10799
+ msgstr "style-src:"
10800
+
10801
+ #: BrowserCache_Page_View_SectionSecurity.php:416
10802
+ #: BrowserCache_Page_View_SectionSecurity.php:451
10803
+ msgid "Subject Public Key Information"
10804
+ msgstr "Informationen zum öffentlichen Schlüssel des Subjekts"
10805
+
10806
+ #: inc/email/support_request.php:33
10807
+ msgid "Subject: "
10808
+ msgstr "Thema:"
10809
+
10810
+ #: Extension_ImageService_Plugin_Admin.php:545
10811
+ msgid "Submitted"
10812
+ msgstr "Eingereicht"
10813
+
10814
+ #. translators: 1: Submissions.
10815
+ #: Extension_ImageService_Plugin_Admin.php:865
10816
+ msgid "Submitted %1$u image for processing."
10817
+ msgid_plural "Submitted %1$u images for processing."
10818
+ msgstr[0] "%1$u-Bild zur Verarbeitung übermittelt."
10819
+ msgstr[1] "%1$u Bilder zur Verarbeitung übermittelt."
10820
+
10821
+ #: Extension_NewRelic_Widget_View_Apm.php:64
10822
+ msgid "Subscription level:"
10823
+ msgstr "Abonnementstufe:"
10824
+
10825
+ #: Cdnfsd_CloudFront_Popup_View_Success.php:10
10826
+ #: Cdnfsd_LimeLight_Popup_View_Success.php:10
10827
+ #: Cdnfsd_MaxCdn_Popup_View_Success.php:10
10828
+ #: Cdnfsd_StackPath2_Popup_View_Success.php:10
10829
+ #: Cdnfsd_StackPath_Popup_View_Success.php:10
10830
+ #: Cdn_LimeLight_Popup_View_Success.php:10
10831
+ #: Cdn_MaxCdn_Popup_View_Success.php:10
10832
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Created.php:29
10833
+ #: Cdn_StackPath2_Popup_View_Success.php:10
10834
+ #: Cdn_StackPath_Popup_View_Success.php:10
10835
+ msgid "Succeeded"
10836
+ msgstr "Erfolgreich"
10837
+
10838
+ #: UsageStatistics_Plugin_Admin.php:125
10839
+ msgid "Success"
10840
+ msgstr "Erfolg"
10841
+
10842
+ #. translators: 1: Successes, 2: Skipped, 3: Errored, 4: Invalid.
10843
+ #: Extension_ImageService_Plugin_Admin.php:883
10844
+ msgid "Successful: %1$u | Skipped: %2$u | Errored: %3$u | Invalid: %4$u"
10845
+ msgstr ""
10846
+ "Erfolgreich: %1$u | Übersprungen: %2$u | Fehlerhaft: %3$u | Ungültig: %4$u"
10847
+
10848
+ #: Generic_Plugin.php:325 Root_AdminMenu.php:113 Root_AdminMenu.php:114
10849
+ msgid "Support"
10850
+ msgstr "Die Unterstützung"
10851
+
10852
+ #: Generic_Plugin.php:341
10853
+ msgid "Support Us"
10854
+ msgstr "Unterstütze uns"
10855
+
10856
+ #: Extension_NewRelic_Service.php:46
10857
+ msgid "Supported"
10858
+ msgstr "Unterstützt"
10859
+
10860
+ #: Extension_Swarmify_Page_View.php:36
10861
+ msgid ""
10862
+ "Swarmify API Key required in order to start optimizing your videos experience"
10863
+ msgstr ""
10864
+ "Swarmify-API-Schlüssel erforderlich, um mit der Optimierung Ihres "
10865
+ "Videoerlebnisses zu beginnen"
10866
+
10867
+ #: Extension_Swarmify_Page_View.php:14
10868
+ msgid "Swarmify extension is currently"
10869
+ msgstr "Swarmify-Erweiterung ist derzeit"
10870
+
10871
+ #: Extension_Swarmify_Widget_View_NotConfigured.php:11
10872
+ msgid ""
10873
+ "Swarmify is a service that lets you speed up your site even more with W3 "
10874
+ "Total Cache."
10875
+ msgstr ""
10876
+ "Swarmify ist ein Dienst, mit dem Sie Ihre Website mit W3 Total Cache noch "
10877
+ "schneller machen können."
10878
+
10879
+ #: Extension_Swarmify_Plugin.php:131
10880
+ msgid "Swarmify%s"
10881
+ msgstr "Swarmify%s"
10882
+
10883
+ #. translators: 1: HTML anchor open tag, 2: HTML anchor close tag.
10884
+ #: Extension_ImageService_Plugin_Admin.php:919
10885
+ msgid "Switch to %1$slist mode%2$s for WebP conversions."
10886
+ msgstr "Wechseln Sie für WebP-Conversions in den %1$slist-Modus%2$s."
10887
+
10888
+ #: inc/options/minify/yuijs2.php:40
10889
+ msgid "symbols (set to 0 to disable)"
10890
+ msgstr "Symbole (zum Deaktivieren auf 0 setzen)"
10891
+
10892
+ #: UserExperience_LazyLoad_Page_View.php:89
10893
+ msgid "sync (to head)"
10894
+ msgstr "synchronisieren (zum Kopf)"
10895
+
10896
+ #: UsageStatistics_Page_View.php:367
10897
+ msgid "System Info"
10898
+ msgstr "Systeminformationen"
10899
+
10900
+ #: Generic_Plugin_Admin.php:651
10901
+ msgid "Take a minute to update, here's why:"
10902
+ msgstr ""
10903
+ "Nehmen Sie sich eine Minute Zeit, um zu aktualisieren. Hier ist der Grund:"
10904
+
10905
+ #: Util_Activation.php:172
10906
+ msgid "Technical info"
10907
+ msgstr "Technische Information"
10908
+
10909
+ #: inc/lightbox/support_us.php:76
10910
+ msgid "Tell Your Friends"
10911
+ msgstr "Sag deinen Freunden"
10912
+
10913
+ #: inc/lightbox/minify_recommendations.php:36
10914
+ #: inc/lightbox/minify_recommendations.php:94 inc/options/minify.php:491
10915
+ #: inc/options/minify.php:754
10916
+ msgid "Template:"
10917
+ msgstr "Schablone:"
10918
+
10919
+ #: Cdn_Highwinds_Page_View.php:164 Cdn_LimeLight_Page_View.php:114
10920
+ #: Cdn_RackSpaceCdn_Page_View.php:167
10921
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:162
10922
+ #: inc/options/parts/memcached.php:21
10923
+ #: inc/options/parts/memcached_extension.php:23 inc/options/parts/redis.php:28
10924
+ #: inc/options/parts/redis_extension.php:30
10925
+ msgid "Test"
10926
+ msgstr "Prüfen"
10927
+
10928
+ #: inc/options/cdn/akamai.php:136
10929
+ msgid "Test akamai"
10930
+ msgstr "Testen Sie akamai"
10931
+
10932
+ #: SetupGuide_Plugin_Admin.php:1252
10933
+ msgid "Test Browser Cache"
10934
+ msgstr "Browser-Cache testen"
10935
+
10936
+ #: inc/options/minify/ccjs2.php:51 inc/options/minify/googleccjs2.php:20
10937
+ msgid "Test Closure Compiler"
10938
+ msgstr "Test-Closure-Compiler"
10939
+
10940
+ #: inc/options/cdn/rscf.php:150
10941
+ msgid "Test Cloud Files upload"
10942
+ msgstr "Testen Sie das Hochladen von Cloud-Dateien"
10943
+
10944
+ #: inc/options/cdn/cf2.php:167
10945
+ msgid "Test CloudFront distribution"
10946
+ msgstr "Testen Sie die CloudFront-Verteilung"
10947
+
10948
+ #: inc/options/cdn/cotendo.php:117
10949
+ msgid "Test Cotendo"
10950
+ msgstr "Cotendo testen"
10951
+
10952
+ #: SetupGuide_Plugin_Admin.php:1167
10953
+ msgid "Test Database Cache"
10954
+ msgstr "Datenbank-Cache testen"
10955
+
10956
+ #: inc/options/cdn/edgecast.php:110
10957
+ msgid "Test EdgeCast"
10958
+ msgstr "Testen Sie EdgeCast"
10959
+
10960
+ #: Generic_AdminActions_Test.php:90
10961
+ msgid "Test failed."
10962
+ msgstr "Im Test durchgefallen."
10963
+
10964
+ #: inc/options/cdn/ftp.php:346
10965
+ msgid "Test FTP server"
10966
+ msgstr "FTP-Server testen"
10967
+
10968
+ #: Cdn_MaxCdn_Page_View.php:289
10969
+ msgid "Test MaxCDN"
10970
+ msgstr "Testen Sie MaxCDN"
10971
+
10972
+ #: inc/options/cdn/azure.php:120
10973
+ msgid "Test Microsoft Azure Storage upload"
10974
+ msgstr "Testen Sie den Microsoft Azure Storage-Upload"
10975
+
10976
+ #: inc/options/cdn/mirror.php:96
10977
+ msgid "Test Mirror"
10978
+ msgstr "Spiegel testen"
10979
+
10980
+ #: SetupGuide_Plugin_Admin.php:1204
10981
+ msgid "Test Object Cache"
10982
+ msgstr "Testobjekt-Cache"
10983
+
10984
+ #: SetupGuide_Plugin_Admin.php:1138
10985
+ msgid "Test Page Cache"
10986
+ msgstr "Testseiten-Cache"
10987
+
10988
+ #: Cdn_AdminActions.php:430
10989
+ msgid "Test passed"
10990
+ msgstr "Test bestanden"
10991
+
10992
+ #: Generic_AdminActions_Test.php:85
10993
+ msgid "Test passed."
10994
+ msgstr "Test bestanden."
10995
+
10996
+ #: inc/options/cdn/s3.php:194 inc/options/cdn/s3_compatible.php:152
10997
+ msgid "Test S3 upload"
10998
+ msgstr "S3-Upload testen"
10999
+
11000
+ #: inc/options/cdn/cf.php:185
11001
+ msgid "Test S3 upload &amp; CloudFront distribution"
11002
+ msgstr "Testen Sie den S3-Upload und die CloudFront-Verteilung"
11003
+
11004
+ #: Cdn_StackPath2_Page_View.php:321 Cdn_StackPath_Page_View.php:248
11005
+ msgid "Test StackPath"
11006
+ msgstr "StackPath testen"
11007
+
11008
+ #: Cdnfsd_TransparentCDN_Page.php:33
11009
+ msgid "Test the API parameters offered for you site"
11010
+ msgstr "Testen Sie die für Ihre Website angebotenen API-Parameter"
11011
+
11012
+ #: Cdnfsd_TransparentCDN_Page_View.php:60
11013
+ msgid "Test TransparentCDN"
11014
+ msgstr "Testen Sie TransparentCDN"
11015
+
11016
+ #: Cdn_GoogleDrive_Page_View.php:36
11017
+ msgid "Test upload"
11018
+ msgstr "Test-Upload"
11019
+
11020
+ #: SetupGuide_Plugin_Admin.php:1144
11021
+ msgid "Test URL:"
11022
+ msgstr "Test-URL:"
11023
+
11024
+ #: inc/options/minify/yuicss2.php:38 inc/options/minify/yuijs2.php:30
11025
+ msgid "Test YUI Compressor"
11026
+ msgstr "Testen Sie den YUI-Kompressor"
11027
+
11028
+ #: SetupGuide_Plugin_Admin.php:1168 SetupGuide_Plugin_Admin.php:1205
11029
+ #: SetupGuide_Plugin_Admin.php:1253
11030
+ msgid "Testing"
11031
+ msgstr "Testen"
11032
+
11033
+ #: SetupGuide_Plugin_Admin.php:895
11034
+ msgid ""
11035
+ "Testing complete. Click Next to advance to the section and see the results."
11036
+ msgstr ""
11037
+ "Prüfung abgeschlossen. Klicken Sie auf Weiter, um zum Abschnitt zu gelangen "
11038
+ "und die Ergebnisse anzuzeigen."
11039
+
11040
+ #: inc/lightbox/support_us.php:43
11041
+ msgid ""
11042
+ "Thank you! You've been using W3 Total Cache for seven days or so! Please "
11043
+ "support us:"
11044
+ msgstr ""
11045
+ "Vielen Dank! Sie verwenden W3 Total Cache seit ungefähr sieben Tagen! Bitte "
11046
+ "unterstützen Sie uns:"
11047
+
11048
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
11049
+ #: inc/options/dashboard.php:101
11050
+ msgid ""
11051
+ "Thanks for choosing W3TC as your Web Performance Optimization (%1$sWPO%2$s) "
11052
+ "framework!"
11053
+ msgstr ""
11054
+ "Vielen Dank, dass Sie sich für W3TC als Framework zur Optimierung der "
11055
+ "Webleistung (%1$sWPO%2$s) entschieden haben!"
11056
+
11057
+ #. translators: 1: HTML emphesis open tag, 2: HTML emphesis close tag.
11058
+ #: SetupGuide_Plugin_Admin.php:1235
11059
+ msgid ""
11060
+ "The %1$sCache-Control%2$s header tells your browser how it should cache "
11061
+ "specific files. The %1$smax-age%2$s setting tells your browser how long, in "
11062
+ "seconds, it should use its cached version of a file before requesting an "
11063
+ "updated one."
11064
+ msgstr ""
11065
+ "Der Header %1$sCache-Control%2$s teilt Ihrem Browser mit, wie er bestimmte "
11066
+ "Dateien zwischenspeichern soll. Die Einstellung %1$smax-age%2$s teilt Ihrem "
11067
+ "Browser mit, wie lange (in Sekunden) er seine zwischengespeicherte Version "
11068
+ "einer Datei verwenden soll, bevor er eine aktualisierte anfordert."
11069
+
11070
+ #. translators: 5 opening HTML a tag to W3TC BrowserCache admin page, 6 closing HTML a tag.
11071
+ #: inc/options/pgcache.php:874
11072
+ msgid ""
11073
+ "The %1$sTTL%2$s of page cache files is set via the \"Expires header "
11074
+ "lifetime\" field in the \"%3$sHTML%4$s\" section on %5$sBrowser Cache%6$s "
11075
+ "Settings tab."
11076
+ msgstr ""
11077
+ "Die %1$sTTL%2$s der Seiten-Cache-Dateien werden über das Feld \"Header-"
11078
+ "Lebensdauer läuft ab\" im Abschnitt \"%3$sHTML%4$s\" auf der Registerkarte "
11079
+ "\"%5$sBrowser-Cache%6$s\" festgelegt."
11080
+
11081
+ #. translators: 3 opening HTML a tag to W3TC Browsercache admin, 4 closing HTML a tag.
11082
+ #: inc/options/minify.php:1026
11083
+ msgid ""
11084
+ "The %1$sTTL%2$s of page cache files is set via the \"Expires header "
11085
+ "lifetime\" field in the \"Cascading Style Sheets &amp; JavaScript\" section "
11086
+ "on %3$sBrowser Cache%4$s Settings tab."
11087
+ msgstr ""
11088
+ "Die %1$sTTL%2$s der Seiten-Cache-Dateien werden über das Feld &quot;Header-"
11089
+ "Lebensdauer läuft ab&quot; im Abschnitt &quot;Cascading Style Sheets &amp; "
11090
+ "JavaScript&quot; auf der Registerkarte &quot;%3$sBrowser-Cache%4$s&quot; "
11091
+ "festgelegt."
11092
+
11093
+ #: Cdn_AdminNotes.php:155
11094
+ msgid ""
11095
+ "The %s has unresolved errors. Empty the queue to restore normal operation."
11096
+ msgstr ""
11097
+ "%s hat ungelöste Fehler. Leeren Sie die Warteschlange, um den normalen "
11098
+ "Betrieb wiederherzustellen."
11099
+
11100
+ #: Cdn_AdminNotes.php:213
11101
+ msgid ""
11102
+ "The <strong>\"Access key\", \"Secret key\" and \"Bucket\"</strong> fields "
11103
+ "cannot be empty."
11104
+ msgstr ""
11105
+ "Die Felder <strong>\"Zugriffsschlüssel\", \"Geheimer Schlüssel\" und "
11106
+ "\"Bucket\"</strong> dürfen nicht leer sein."
11107
+
11108
+ #: Cdn_AdminNotes.php:221
11109
+ msgid ""
11110
+ "The <strong>\"Access key\", \"Secret key\" and \"Replace default hostname "
11111
+ "with\"</strong> fields cannot be empty."
11112
+ msgstr ""
11113
+ "Die Felder <strong>\"Zugriffsschlüssel\", \"Geheimer Schlüssel\" und "
11114
+ "\"Standard-Hostnamen ersetzen durch\"</strong> dürfen nicht leer sein."
11115
+
11116
+ #: Cdn_AdminNotes.php:217
11117
+ msgid ""
11118
+ "The <strong>\"Access key\", \"Secret key\", \"Bucket\" and \"Replace default "
11119
+ "hostname with\"</strong> fields cannot be empty."
11120
+ msgstr ""
11121
+ "Die Felder <strong>\"Zugriffsschlüssel\", \"Geheimer Schlüssel\", \"Bucket\" "
11122
+ "und \"Standard-Hostnamen ersetzen durch\"</strong> dürfen nicht leer sein."
11123
+
11124
+ #: Cdn_AdminNotes.php:229
11125
+ msgid ""
11126
+ "The <strong>\"Account name\", \"Account key\" and \"Container\"</strong> "
11127
+ "fields cannot be empty."
11128
+ msgstr ""
11129
+ "Die Felder <strong>\"Kontoname\", \"Kontoschlüssel\" und "
11130
+ "\"Container\"</strong> dürfen nicht leer sein."
11131
+
11132
+ #: Cdn_AdminNotes.php:251
11133
+ msgid "The <strong>\"Authorization key\"</strong> is not correct."
11134
+ msgstr "Der <strong>\"Autorisierungsschlüssel\"</strong> ist nicht korrekt."
11135
+
11136
+ #: Cdn_AdminNotes.php:233 Cdn_AdminNotes.php:258 Cdn_AdminNotes.php:262
11137
+ #: Cdn_AdminNotes.php:266
11138
+ msgid ""
11139
+ "The <strong>\"Replace default hostname with\"</strong> field cannot be empty."
11140
+ msgstr ""
11141
+ "Das Feld <strong>\"Standard-Hostnamen ersetzen durch\"</strong> darf nicht "
11142
+ "leer sein."
11143
+
11144
+ #: Cdn_AdminNotes.php:225
11145
+ msgid ""
11146
+ "The <strong>\"Username\", \"API key\", \"Container\" and \"Replace default "
11147
+ "hostname with\"</strong> fields cannot be empty."
11148
+ msgstr ""
11149
+ "Die Felder <strong>\"Benutzername\", \"API-Schlüssel\", \"Container\" und "
11150
+ "\"Standard-Hostnamen ersetzen durch\"</strong> dürfen nicht leer sein."
11151
+
11152
+ #: Cdn_AdminNotes.php:245
11153
+ msgid "The <strong>%s</strong> field(s) cannot be empty."
11154
+ msgstr "Die <strong>%s</strong>-Felder dürfen nicht leer sein."
11155
+
11156
+ #: Cdn_AdminNotes.php:131
11157
+ msgid ""
11158
+ "The <strong>CURL PHP</strong> extension is not available. Please install it "
11159
+ "to enable S3 or CloudFront functionality. %s"
11160
+ msgstr ""
11161
+ "Die Erweiterung <strong>CURL PHP</strong> ist nicht verfügbar. Bitte "
11162
+ "installieren Sie es, um die S3- oder CloudFront-Funktionalität zu aktivieren."
11163
+ " %s"
11164
+
11165
+ #: Cdn_AdminNotes.php:25
11166
+ msgid ""
11167
+ "The active theme has changed, please %s now to ensure proper operation. %s"
11168
+ msgstr ""
11169
+ "Das aktive Thema hat sich geändert, bitte %s jetzt, um einen ordnungsgemäßen "
11170
+ "Betrieb zu gewährleisten. %s"
11171
+
11172
+ #: Generic_Plugin_Admin.php:812
11173
+ msgid "The add-in has been removed."
11174
+ msgstr "Das Add-in wurde entfernt."
11175
+
11176
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
11177
+ #: BrowserCache_Page_View_SectionSecurity.php:566
11178
+ msgid ""
11179
+ "The Content Security Policy (%1$sCSP%2$s) header reduces the risk of "
11180
+ "%3$sXSS%4$s attacks by allowing you to define where resources can be "
11181
+ "retrieved from, preventing browsers from loading data from any other "
11182
+ "locations. This makes it harder for an attacker to inject malicious code "
11183
+ "into your site."
11184
+ msgstr ""
11185
+ "Der Header der Inhaltssicherheitsrichtlinie (%1$sCSP%2$s) verringert das "
11186
+ "Risiko von %3$sXSS%4$s-Angriffen, indem Sie festlegen können, woher "
11187
+ "Ressourcen abgerufen werden können, wodurch verhindert wird, dass Browser "
11188
+ "Daten von anderen Orten laden. Dies erschwert es einem Angreifer, bösartigen "
11189
+ "Code in Ihre Website einzuschleusen."
11190
+
11191
+ #. translators: 1: HTML anchor open tag, 2: HTML anchor close tag.
11192
+ #: Extension_ImageService_Plugin_Admin.php:566
11193
+ #: Extension_ImageService_Plugin_Admin.php:684
11194
+ msgid ""
11195
+ "The converted image would be larger than the original; conversion canceled. "
11196
+ "%1$sLearn more%2$s."
11197
+ msgstr ""
11198
+ "Das konvertierte Bild wäre größer als das Original; Konvertierung "
11199
+ "abgebrochen. %1$sWeitere Informationen%2$s."
11200
+
11201
+ #: DbCache_Environment.php:122
11202
+ msgid ""
11203
+ "The Database add-in file db.php is not a W3 Total Cache drop-in.\n"
11204
+ " Remove it or disable Database Caching. %s"
11205
+ msgstr ""
11206
+ "Die Datenbank-Add-In-Datei db.php ist kein W3 Total Cache-Drop-In.\n"
11207
+ " Entfernen Sie es oder deaktivieren Sie das Datenbank-Caching."
11208
+ " %s"
11209
+
11210
+ #: Cli.php:107
11211
+ msgid "The DB cache is flushed successfully."
11212
+ msgstr "Der DB-Cache wurde erfolgreich geleert."
11213
+
11214
+ #: inc/popup/cdn_purge.php:36
11215
+ msgid "the directory itself (only when accessed directly without any file)."
11216
+ msgstr "das Verzeichnis selbst (nur bei direktem Zugriff ohne Datei)."
11217
+
11218
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Create.php:95
11219
+ msgid ""
11220
+ "The domain name through which visitors retrieve content. You will be "
11221
+ "provided with a target domain to use as an alias for this CNAME"
11222
+ msgstr ""
11223
+ "Der Domänenname, über den Besucher Inhalte abrufen. Sie erhalten eine "
11224
+ "Zieldomäne, die Sie als Alias für diesen CNAME verwenden können"
11225
+
11226
+ #: UsageStatistics_GeneralPage_View.php:43
11227
+ msgid "The duration of time in seconds to collect statistics per interval."
11228
+ msgstr "Die Zeitdauer in Sekunden zum Sammeln von Statistiken pro Intervall."
11229
+
11230
+ #: inc/options/browsercache.php:427 inc/options/browsercache.php:573
11231
+ #: inc/options/browsercache.php:656
11232
+ msgid "The Expires header already sets the max-age."
11233
+ msgstr "Der Expires-Header legt bereits das maximale Alter fest."
11234
+
11235
+ #: Generic_Plugin_AdminCompatibility.php:97
11236
+ msgid ""
11237
+ "The following plugins are not compatible with W3 Total Cache and will cause "
11238
+ "unintended results:"
11239
+ msgstr ""
11240
+ "Die folgenden Plugins sind nicht mit W3 Total Cache kompatibel und führen zu "
11241
+ "unbeabsichtigten Ergebnissen:"
11242
+
11243
+ #: Extension_FragmentCache_Page_View.php:78
11244
+ msgid "The groups above will be flushed upon setting changes."
11245
+ msgstr "Die obigen Gruppen werden bei Einstellungsänderungen geleert."
11246
+
11247
+ #. Description of the plugin
11248
+ msgid ""
11249
+ "The highest rated and most complete WordPress performance plugin. "
11250
+ "Dramatically improve the speed and user experience of your site. Add browser,"
11251
+ " page, object and database caching as well as minify and content delivery "
11252
+ "network (CDN) to WordPress."
11253
+ msgstr ""
11254
+ "Das am höchsten bewertete und vollständigste WordPress-Performance-Plugin. "
11255
+ "Verbessern Sie die Geschwindigkeit und das Benutzererlebnis Ihrer Website "
11256
+ "erheblich. Fügen Sie Browser-, Seiten-, Objekt- und Datenbank-Caching sowie "
11257
+ "Minify und Content Delivery Network (CDN) zu WordPress hinzu."
11258
+
11259
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
11260
+ #: Minify_HelpPopup_View.php:46
11261
+ msgid ""
11262
+ "The interactions and dependencies of %1$sCSS%2$s or %3$sJS%4$s on each other "
11263
+ "can be complex.\n"
11264
+ "\t\t\t\t\t\t\tThemes and plugins are typically created by various developers "
11265
+ "and can be combined in\n"
11266
+ "\t\t\t\t\t\t\tmillions of combinations. As a result, W3 Total Cache cannot "
11267
+ "take all of those nuances into\n"
11268
+ "\t\t\t\t\t\t\taccount, it just does the operation and let's you tune to what "
11269
+ "degree it does it, it\n"
11270
+ "\t\t\t\t\t\t\tdoesn't \"validate\" the result or know if it's good or bad; a "
11271
+ "human must do that."
11272
+ msgstr ""
11273
+ "Die Interaktionen und Abhängigkeiten von %1$sCSS%2$s oder %3$sJS%4$s "
11274
+ "voneinander können komplex sein.\n"
11275
+ "Themes und Plugins werden typischerweise von verschiedenen Entwicklern "
11276
+ "erstellt und können miteinander kombiniert werden\n"
11277
+ "Millionen Kombinationen. Infolgedessen kann W3 Total Cache nicht alle diese "
11278
+ "Nuancen berücksichtigen\n"
11279
+ "Konto, es macht einfach die Operation und lassen Sie uns abstimmen, in "
11280
+ "welchem Grad es es tut, es\n"
11281
+ "„validiert“ das Ergebnis nicht oder weiß nicht, ob es gut oder schlecht ist; "
11282
+ "ein Mensch muss das tun."
11283
+
11284
+ #: Extension_Genesis_Page_View.php:224
11285
+ msgid "The Loop"
11286
+ msgstr "Die Schleife"
11287
+
11288
+ #: Cli.php:118
11289
+ msgid "The minify cache is flushed successfully."
11290
+ msgstr "Der Minify-Cache wurde erfolgreich geleert."
11291
+
11292
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Create.php:128
11293
+ msgid "The name should be a single word, and cannot contain any dots (.)."
11294
+ msgstr ""
11295
+ "Der Name sollte aus einem einzelnen Wort bestehen und darf keine Punkte (.) "
11296
+ "enthalten."
11297
+
11298
+ #: UsageStatistics_GeneralPage_View.php:51
11299
+ msgid "The number of intervals that are represented in the graph."
11300
+ msgstr "Die Anzahl der Intervalle, die im Diagramm dargestellt werden."
11301
+
11302
+ #: inc/options/pgcache.php:248
11303
+ msgid ""
11304
+ "The number of seconds to wait before creating another set of cached pages."
11305
+ msgstr ""
11306
+ "Die Anzahl der Sekunden, die gewartet werden soll, bevor ein weiterer Satz "
11307
+ "zwischengespeicherter Seiten erstellt wird."
11308
+
11309
+ #: inc/options/cdn.php:648
11310
+ msgid "The number of seconds to wait before upload attempt."
11311
+ msgstr ""
11312
+ "Die Anzahl der Sekunden, die vor dem Upload-Versuch gewartet werden soll."
11313
+
11314
+ #. translators: 1 HTML button link to remove object-cache.php file.
11315
+ #: ObjectCache_Environment.php:132
11316
+ msgid ""
11317
+ "The Object Cache add-in file object-cache.php is not a W3 Total Cache drop-"
11318
+ "in. Remove it or disable Object Caching. %1$s"
11319
+ msgstr ""
11320
+ "Die Objekt-Cache-Add-In-Datei object-cache.php ist kein W3 Total Cache-Drop-"
11321
+ "In. Entfernen Sie es oder deaktivieren Sie das Objekt-Caching. %1$s"
11322
+
11323
+ #: Cli.php:129
11324
+ msgid "The object cache is flushed successfully."
11325
+ msgstr "Der Objektcache wird erfolgreich geleert."
11326
+
11327
+ #: UserExperience_LazyLoad_Page_View.php:78
11328
+ msgid ""
11329
+ "The outer distance off the scrolling area from which to start loading the "
11330
+ "elements (example: 100px, 10%)."
11331
+ msgstr ""
11332
+ "Der äußere Abstand vom Bildlaufbereich, ab dem mit dem Laden der Elemente "
11333
+ "begonnen werden soll (Beispiel: 100 Pixel, 10 %)."
11334
+
11335
+ #: Generic_Environment.php:99
11336
+ msgid ""
11337
+ "The Page Cache add-in file advanced-cache.php is not a W3 Total Cache drop-"
11338
+ "in.\n"
11339
+ " It should be removed. %s"
11340
+ msgstr ""
11341
+ "Die Page Cache Add-In-Datei advanced-cache.php ist kein W3 Total Cache Drop-"
11342
+ "In.\n"
11343
+ " Es sollte entfernt werden. %s"
11344
+
11345
+ #: Cli.php:164
11346
+ msgid "The page cache is flushed successfully."
11347
+ msgstr "Der Seitencache wird erfolgreich geleert."
11348
+
11349
+ #: Cli.php:141 Cli.php:153
11350
+ msgid "The page is flushed from cache successfully."
11351
+ msgstr "Die Seite wurde erfolgreich aus dem Cache geleert."
11352
+
11353
+ #: Extension_NewRelic_Plugin_Admin.php:150
11354
+ msgid "The plugin has detected the following issues:. "
11355
+ msgstr "Das Plugin hat die folgenden Probleme erkannt:."
11356
+
11357
+ #. translators: 1 HTML span tag indicating plugin enabled/disabled.
11358
+ #: inc/options/general.php:16
11359
+ msgid ""
11360
+ "The plugin is currently %1$s If an option is disabled it means that either "
11361
+ "your current installation is not compatible or software installation is "
11362
+ "required."
11363
+ msgstr ""
11364
+ "Das Plugin ist derzeit %1$s Wenn eine Option deaktiviert ist, bedeutet dies, "
11365
+ "dass entweder Ihre aktuelle Installation nicht kompatibel ist oder eine "
11366
+ "Softwareinstallation erforderlich ist."
11367
+
11368
+ #: Cli.php:339
11369
+ msgid "The query string was updated successfully."
11370
+ msgstr "Die Abfragezeichenfolge wurde erfolgreich aktualisiert."
11371
+
11372
+ #. translators: 1: HTML a tag to WordPress codex for using htaccess for permalinks, 2: HTML input button to hide message.
11373
+ #: Generic_AdminNotes.php:422
11374
+ msgid ""
11375
+ "The required directives for fancy permalinks could not be detected, please "
11376
+ "confirm they are available: %1$s %2$s"
11377
+ msgstr ""
11378
+ "Die erforderlichen Anweisungen für ausgefallene Permalinks konnten nicht "
11379
+ "erkannt werden. Bitte bestätigen Sie, dass sie verfügbar sind: %1$s %2$s"
11380
+
11381
+ #. translators: 1: HTML input button to empty static files cache, 2: HTML input button to hide message.
11382
+ #. translators: 1: HTML input button to empty page cache, 2: HTML input button to hide message.
11383
+ #: Generic_AdminNotes.php:292 Generic_AdminNotes.php:329
11384
+ msgid ""
11385
+ "The setting change(s) made either invalidate the cached data or modify the "
11386
+ "behavior of the site. %1$s now to provide a consistent user experience. %2$s"
11387
+ msgstr ""
11388
+ "Die vorgenommenen Einstellungsänderungen machen entweder die "
11389
+ "zwischengespeicherten Daten ungültig oder ändern das Verhalten der Website. "
11390
+ "%1$s jetzt, um eine konsistente Benutzererfahrung zu bieten. %2$s"
11391
+
11392
+ #: Minify_Plugin_Admin.php:165 ObjectCache_Plugin_Admin.php:54
11393
+ msgid ""
11394
+ "The setting change(s) made either invalidate the cached data or modify the "
11395
+ "behavior of the site. %s now to provide a consistent user experience."
11396
+ msgstr ""
11397
+ "Die vorgenommenen Einstellungsänderungen machen entweder die "
11398
+ "zwischengespeicherten Daten ungültig oder ändern das Verhalten der Website. "
11399
+ "%s jetzt, um eine konsistente Benutzererfahrung zu bieten."
11400
+
11401
+ #: FeatureShowcase_Plugin_Admin.php:254
11402
+ msgid ""
11403
+ "The Setup Guide wizard quickly walks you through configuring W3 Total Cache."
11404
+ msgstr ""
11405
+ "Der Einrichtungsassistent führt Sie schnell durch die Konfiguration von W3 "
11406
+ "Total Cache."
11407
+
11408
+ #: inc/popup/cdn_purge.php:39
11409
+ msgid ""
11410
+ "the specific file (when the file does not have an extension), and without "
11411
+ "parameters."
11412
+ msgstr ""
11413
+ "die spezifische Datei (wenn die Datei keine Erweiterung hat) und ohne "
11414
+ "Parameter."
11415
+
11416
+ #: inc/popup/cdn_purge.php:40
11417
+ msgid "the specific file with its extension, and without parameters."
11418
+ msgstr "die spezifische Datei mit ihrer Erweiterung und ohne Parameter."
11419
+
11420
+ #: inc/popup/cdn_purge.php:41
11421
+ msgid "the specific file with its extension, with all variation of parameters."
11422
+ msgstr ""
11423
+ "die spezifische Datei mit ihrer Erweiterung, mit allen Variationen von "
11424
+ "Parametern."
11425
+
11426
+ #: inc/popup/cdn_purge.php:42
11427
+ msgid "the specific file with its extension, with the specific parameters."
11428
+ msgstr ""
11429
+ "die spezifische Datei mit ihrer Erweiterung, mit den spezifischen Parametern."
11430
+
11431
+ #: Generic_Plugin_Admin.php:803
11432
+ msgid "The support request has been successfully sent."
11433
+ msgstr "Die Support-Anfrage wurde erfolgreich versendet."
11434
+
11435
+ #. translators: 1: HTML emphesis open tag, 2: HTML emphesis close tag.
11436
+ #: SetupGuide_Plugin_Admin.php:1119
11437
+ msgid ""
11438
+ "The time it takes between a visitor's browser page request and receiving the "
11439
+ "first byte of a response is referred to as %1$sTime to First Byte%2$s."
11440
+ msgstr ""
11441
+ "Die Zeit, die zwischen der Browserseitenanforderung eines Besuchers und dem "
11442
+ "Empfang des ersten Bytes einer Antwort vergeht, wird als %1$sTime to First "
11443
+ "Byte%2$s bezeichnet."
11444
+
11445
+ #: Cdn_AdminNotes.php:180
11446
+ msgid ""
11447
+ "The uploads directory is not available. Default WordPress directories will "
11448
+ "be created: <strong>%s</strong>."
11449
+ msgstr ""
11450
+ "Das Upload-Verzeichnis ist nicht verfügbar. Es werden standardmäßige "
11451
+ "WordPress-Verzeichnisse erstellt: <strong>%s</strong>."
11452
+
11453
+ #: Cdn_AdminNotes.php:187
11454
+ msgid ""
11455
+ "The uploads path found in the database (%s) is inconsistent with the actual "
11456
+ "path. Please manually adjust the upload path either in miscellaneous "
11457
+ "settings or if not using a custom path %s automatically to resolve the issue."
11458
+ msgstr ""
11459
+ "Der in der Datenbank gefundene Upload-Pfad (%s) stimmt nicht mit dem "
11460
+ "tatsächlichen Pfad überein. Bitte passen Sie den Upload-Pfad manuell an, "
11461
+ "entweder in den verschiedenen Einstellungen oder wenn Sie keinen "
11462
+ "benutzerdefinierten Pfad %s automatisch verwenden, um das Problem zu lösen."
11463
+
11464
+ #: Licensing_Plugin_Admin.php:221
11465
+ msgid "The W3 Total Cache license key can't be verified."
11466
+ msgstr "Der W3 Total Cache-Lizenzschlüssel kann nicht verifiziert werden."
11467
+
11468
+ #: Licensing_Plugin_Admin.php:252
11469
+ msgid "The W3 Total Cache license key is activated for this site."
11470
+ msgstr "Der W3 Total Cache-Lizenzschlüssel ist für diese Site aktiviert."
11471
+
11472
+ #: Licensing_Plugin_Admin.php:248
11473
+ msgid "The W3 Total Cache license key is deactivated for this site."
11474
+ msgstr "Der W3 Total Cache Lizenzschlüssel ist für diese Seite deaktiviert."
11475
+
11476
+ #: Licensing_Plugin_Admin.php:193
11477
+ msgid "The W3 Total Cache license key is not active for this site."
11478
+ msgstr "Der W3 Total Cache-Lizenzschlüssel ist für diese Site nicht aktiv."
11479
+
11480
+ #. translators: HTML a tag to W3TC Licence Reset.
11481
+ #: Licensing_Plugin_Admin.php:198
11482
+ msgid ""
11483
+ "The W3 Total Cache license key is not active for this site. You can switch "
11484
+ "your license to this website following %1$sthis link%2$s"
11485
+ msgstr ""
11486
+ "Der W3 Total Cache-Lizenzschlüssel ist für diese Site nicht aktiv. Unter "
11487
+ "%1$sdiesem Link%2$s können Sie Ihre Lizenz auf diese Website umstellen"
11488
+
11489
+ #: Licensing_Plugin_Admin.php:218
11490
+ msgid "The W3 Total Cache license key is not active."
11491
+ msgstr "Der W3 Total Cache-Lizenzschlüssel ist nicht aktiv."
11492
+
11493
+ #: Licensing_Plugin_Admin.php:189
11494
+ msgid "The W3 Total Cache license key you entered is not valid."
11495
+ msgstr "Der von Ihnen eingegebene W3 Total Cache-Lizenzschlüssel ist ungültig."
11496
+
11497
+ #: Extension_CloudFlare_Page_View.php:573
11498
+ msgid ""
11499
+ "The Web Application Firewall (WAF) examines HTTP requests to your website. "
11500
+ "It inspects both GET and POST requests and applies rules to help filter out "
11501
+ "illegitimate traffic from legitimate website visitors."
11502
+ msgstr ""
11503
+ "Die Web Application Firewall (WAF) untersucht HTTP-Anfragen an Ihre Website. "
11504
+ "Es prüft sowohl GET- als auch POST-Anforderungen und wendet Regeln an, um "
11505
+ "unzulässigen Datenverkehr von legitimen Website-Besuchern herauszufiltern."
11506
+
11507
+ #: Cdn_ConfigLabels.php:28
11508
+ msgid "Theme file types to upload:"
11509
+ msgstr "Hochzuladende Themendateitypen:"
11510
+
11511
+ #: Cdn_AdminActions.php:246
11512
+ msgid "Theme files export"
11513
+ msgstr "Designdateien exportieren"
11514
+
11515
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
11516
+ #: inc/options/cdn/s3_compatible.php:27
11517
+ msgid ""
11518
+ "Theme files, media library attachments, %1$sCSS%2$s, %3$sJS%4$s files etc "
11519
+ "will appear to load instantly for site visitors."
11520
+ msgstr ""
11521
+ "Themendateien, Medienbibliotheksanhänge, %1$sCSS%2$s-, %3$sJS%4$s-Dateien "
11522
+ "usw. scheinen für Website-Besucher sofort geladen zu werden."
11523
+
11524
+ #. translators: 3 opening HTML acronym tag, 4 closing acronym tag.
11525
+ #: Cdn_GeneralPage_View.php:95
11526
+ msgid ""
11527
+ "Theme files, media library attachments, %1$sCSS%2$s, %3$sJS%4$s files etc "
11528
+ "will quickly for site visitors."
11529
+ msgstr ""
11530
+ "Themendateien, Medienbibliotheksanhänge, %1$sCSS%2$s-, %3$sJS%4$s-Dateien "
11531
+ "usw. werden den Website-Besuchern schnell angezeigt."
11532
+
11533
+ #: inc/lightbox/minify_recommendations.php:17
11534
+ msgid ""
11535
+ "theme. Select \"add\" the files you wish to minify, then click \"apply &amp; "
11536
+ "close\" to save the settings."
11537
+ msgstr ""
11538
+ "Thema. Wählen Sie „Hinzufügen“ der Dateien, die Sie minimieren möchten, und "
11539
+ "klicken Sie dann auf „Übernehmen und schließen“, um die Einstellungen zu "
11540
+ "speichern."
11541
+
11542
+ #: CacheGroups_Plugin_Admin_View.php:78 CacheGroups_Plugin_Admin_View.php:195
11543
+ #: inc/options/minify.php:458 inc/options/minify.php:721
11544
+ msgid "Theme:"
11545
+ msgstr "Thema:"
11546
+
11547
+ #: Minify_HelpPopup_View.php:20
11548
+ msgid ""
11549
+ "There are lots of reasons why minify cannot work for all sites under all "
11550
+ "circumstances and they\n"
11551
+ "\t\t\t\thave nothing to do with W3 Total Cache: Your site's content, your "
11552
+ "server(s), your plugins and\n"
11553
+ "\t\t\t\tyour theme are all unique, that means that minify cannot "
11554
+ "automatically work for everyone."
11555
+ msgstr ""
11556
+ "Es gibt viele Gründe, warum minify nicht unter allen Umständen für alle "
11557
+ "Websites funktionieren kann, und sie\n"
11558
+ "haben nichts mit W3 Total Cache zu tun: Der Inhalt Ihrer Website, Ihre "
11559
+ "Server, Ihre Plugins und\n"
11560
+ "Ihre Themen sind alle einzigartig, das bedeutet, dass minify nicht "
11561
+ "automatisch für alle funktionieren kann."
11562
+
11563
+ #: UsageStatistics_Page_View.php:157
11564
+ msgid "Third Party"
11565
+ msgstr "Dritte Seite"
11566
+
11567
+ #: BrowserCache_Page_View_SectionSecurity.php:775
11568
+ msgid ""
11569
+ "This directive operates similarly to the &lt;iframe&gt; sandbox attribute by "
11570
+ "applying restrictions to a page's actions, including preventing popups, "
11571
+ "preventing the execution of plugins and scripts, and enforcing a same-origin "
11572
+ "policy."
11573
+ msgstr ""
11574
+ "Diese Anweisung funktioniert ähnlich wie das Sandbox-Attribut &lt;iframe&gt;,"
11575
+ " indem sie Einschränkungen auf die Aktionen einer Seite anwendet, "
11576
+ "einschließlich des Verhinderns von Popups, des Verhinderns der Ausführung "
11577
+ "von Plugins und Skripts und des Erzwingens einer Same-Origin-Richtlinie."
11578
+
11579
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
11580
+ #: Extension_NewRelic_Page_View_Apm.php:293
11581
+ msgid ""
11582
+ "This enables inclusion of %1$sRUM%2$s when using Page Cache together with "
11583
+ "Browser Cache gzip or when using Page Cache with Disc: Enhanced"
11584
+ msgstr ""
11585
+ "Dies ermöglicht die Einbeziehung von %1$sRUM%2$s, wenn Seiten-Cache zusammen "
11586
+ "mit Browser-Cache gzip verwendet wird oder wenn Seiten-Cache mit Disc: "
11587
+ "Enhanced verwendet wird"
11588
+
11589
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
11590
+ #: BrowserCache_Page_View_SectionSecurity.php:445
11591
+ msgid ""
11592
+ "This field is %1$salso required%2$s and represents your backup %3$sSPKI%4$s "
11593
+ "fingerprint. This pin is any public key not in your current certificate "
11594
+ "chain and serves as a backup in case your certificate expires or has to be "
11595
+ "revoked."
11596
+ msgstr ""
11597
+ "Dieses Feld ist %1$sebenfalls erforderlich%2$s und repräsentiert den "
11598
+ "Fingerabdruck Ihres Sicherungs-%3$sSPKI%4$s. Diese PIN ist ein beliebiger "
11599
+ "öffentlicher Schlüssel, der sich nicht in Ihrer aktuellen Zertifikatskette "
11600
+ "befindet, und dient als Backup, falls Ihr Zertifikat abläuft oder widerrufen "
11601
+ "werden muss."
11602
+
11603
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acornym tag.
11604
+ #: BrowserCache_Page_View_SectionSecurity.php:410
11605
+ msgid ""
11606
+ "This field is %1$srequired%2$s and represents a %3$sSPKI%4$s fingerprint. "
11607
+ "This pin is any public key within your current certificate chain."
11608
+ msgstr ""
11609
+ "Dieses Feld ist %1$serforderlich%2$s und stellt einen %3$sSPKI%4$s-"
11610
+ "Fingerabdruck dar. Diese PIN ist ein beliebiger öffentlicher Schlüssel in "
11611
+ "Ihrer aktuellen Zertifikatskette."
11612
+
11613
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acornym tag.
11614
+ #: BrowserCache_Page_View_SectionSecurity.php:324
11615
+ msgid ""
11616
+ "This header enables the %1$sXSS%2$s filter. It helps to stop malicious "
11617
+ "scripts from being injected into your website. Although this is already "
11618
+ "built into and enabled by default in most browsers today it is made "
11619
+ "available here to enforce its reactivation if it was disabled within the "
11620
+ "user's browser."
11621
+ msgstr ""
11622
+ "Dieser Header aktiviert den %1$sXSS%2$s-Filter. Es hilft zu verhindern, dass "
11623
+ "schädliche Skripte in Ihre Website eingeschleust werden. Obwohl dies heute "
11624
+ "in den meisten Browsern bereits integriert und standardmäßig aktiviert ist, "
11625
+ "wird es hier zur Verfügung gestellt, um seine Reaktivierung zu erzwingen, "
11626
+ "wenn es im Browser des Benutzers deaktiviert wurde."
11627
+
11628
+ #: BrowserCache_Page_View_SectionSecurity.php:531
11629
+ msgid ""
11630
+ "This header restricts the values of the referer header in outbound links."
11631
+ msgstr ""
11632
+ "Dieser Header schränkt die Werte des Referrer-Headers in ausgehenden Links "
11633
+ "ein."
11634
+
11635
+ #: BrowserCache_Page_View_SectionSecurity.php:361
11636
+ msgid ""
11637
+ "This instructs the browser to not MIME-sniff a response outside its declared "
11638
+ "content-type. It helps to reduce drive-by download attacks and stops sites "
11639
+ "from serving malevolent content that could masquerade as an executable or "
11640
+ "dynamic HTML file."
11641
+ msgstr ""
11642
+ "Dies weist den Browser an, eine Antwort außerhalb seines deklarierten "
11643
+ "Inhaltstyps nicht MIME-schnüffeln. Es trägt dazu bei, Drive-by-Download-"
11644
+ "Angriffe zu reduzieren und hält Websites davon ab, böswillige Inhalte "
11645
+ "bereitzustellen, die sich als ausführbare oder dynamische HTML-Datei tarnen "
11646
+ "könnten."
11647
+
11648
+ #: Cli.php:143
11649
+ msgid "This is not a valid post id."
11650
+ msgstr "Dies ist keine gültige Beitrags-ID."
11651
+
11652
+ #: Extension_NewRelic_Page_View_Apm.php:337
11653
+ msgid ""
11654
+ "This is required when using New Relic on a network install to set the proper "
11655
+ "names for sites."
11656
+ msgstr ""
11657
+ "Dies ist erforderlich, wenn Sie New Relic in einer Netzwerkinstallation "
11658
+ "verwenden, um die richtigen Namen für Sites festzulegen."
11659
+
11660
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
11661
+ #: BrowserCache_Page_View_SectionSecurity.php:494
11662
+ msgid ""
11663
+ "This optional field can be used to specify a %1$sURL%2$s that clients will "
11664
+ "send reports to if pin validation failures occur. The report is sent as a "
11665
+ "POST request with a JSON body."
11666
+ msgstr ""
11667
+ "Dieses optionale Feld kann verwendet werden, um eine %1$sURL%2$s anzugeben, "
11668
+ "an die Clients Berichte senden, wenn Pin-Validierungsfehler auftreten. Der "
11669
+ "Bericht wird als POST-Anforderung mit einem JSON-Text gesendet."
11670
+
11671
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
11672
+ #: BrowserCache_Page_View_SectionSecurity.php:197
11673
+ msgid ""
11674
+ "This setting prevents attacks that are caused by passing session IDs in "
11675
+ "%1$sURL%2$ss."
11676
+ msgstr ""
11677
+ "Diese Einstellung verhindert Angriffe, die durch die Weitergabe von Sitzungs-"
11678
+ "IDs in %1$sURL%2$ss verursacht werden."
11679
+
11680
+ #: BrowserCache_Page_View_SectionSecurity.php:294
11681
+ msgid ""
11682
+ "This tells the browser if it is permitted to render a page within a frame-"
11683
+ "like tag (i.e., &lt;frame&gt;, &lt;iframe&gt; or &lt;object&gt;). This is "
11684
+ "useful for preventing clickjacking attacks."
11685
+ msgstr ""
11686
+ "Dies teilt dem Browser mit, ob es erlaubt ist, eine Seite innerhalb eines "
11687
+ "Frame-ähnlichen Tags (dh &lt;frame&gt;, &lt;iframe&gt; oder &lt;object&gt;) "
11688
+ "darzustellen. Dies ist nützlich, um Clickjacking-Angriffe zu verhindern."
11689
+
11690
+ #: BrowserCache_Page_View_SectionSecurity.php:219
11691
+ msgid ""
11692
+ "This tells the user's browser not to make the session cookie accessible to "
11693
+ "client side scripting such as JavaScript. This makes it harder for an "
11694
+ "attacker to hijack the session ID and masquerade as the effected user."
11695
+ msgstr ""
11696
+ "Dies weist den Browser des Benutzers an, das Sitzungscookie nicht für "
11697
+ "clientseitiges Skripting wie JavaScript zugänglich zu machen. Dies erschwert "
11698
+ "es einem Angreifer, die Sitzungs-ID zu kapern und sich als betroffener "
11699
+ "Benutzer auszugeben."
11700
+
11701
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
11702
+ #: inc/popup/cdn_rename_domain.php:22
11703
+ msgid ""
11704
+ "This tool allows you to modify the URL of Media Library attachments. Use it "
11705
+ "if the \"WordPress address (%1$sURL%2$s)\" value has been changed in the "
11706
+ "past."
11707
+ msgstr ""
11708
+ "Mit diesem Tool können Sie die URL von Medienbibliotheksanhängen ändern. "
11709
+ "Verwenden Sie es, wenn der Wert „WordPress-Adresse (%1$sURL%2$s)“ in der "
11710
+ "Vergangenheit geändert wurde."
11711
+
11712
+ #: inc/popup/cdn_queue.php:10
11713
+ msgid "This tool lists the pending file uploads and deletions."
11714
+ msgstr "Dieses Tool listet die ausstehenden Datei-Uploads und -Löschungen auf."
11715
+
11716
+ #: inc/popup/cdn_import_library.php:18
11717
+ msgid ""
11718
+ "This tool will copy post or page attachments into the Media Library allowing "
11719
+ "WordPress to work as intended."
11720
+ msgstr ""
11721
+ "Dieses Tool kopiert Post- oder Seitenanhänge in die Medienbibliothek, sodass "
11722
+ "WordPress wie vorgesehen funktioniert."
11723
+
11724
+ #: inc/popup/cdn_export_file.php:27 inc/popup/cdn_export_library.php:17
11725
+ msgid ""
11726
+ "This tool will upload files of the selected type to content delivery network "
11727
+ "provider."
11728
+ msgstr ""
11729
+ "Dieses Tool lädt Dateien des ausgewählten Typs zum Content-Delivery-Network-"
11730
+ "Anbieter hoch."
11731
+
11732
+ #. translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
11733
+ #: Cdn_StackPath2_Page_View.php:108
11734
+ msgid ""
11735
+ "This website domain has to be %1$sCNAME%2$s pointing to this %3$sCDN%4$s "
11736
+ "domain for %5$sHTTP%6$s requests"
11737
+ msgstr ""
11738
+ "Diese Website-Domain muss %1$sCNAME%2$s sein und auf diese %3$sCDN%4$s-"
11739
+ "Domain für %5$sHTTP%6$s-Anfragen verweisen"
11740
+
11741
+ #. translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
11742
+ #: Cdn_StackPath2_Page_View.php:170
11743
+ msgid ""
11744
+ "This website domain has to be %1$sCNAME%2$s pointing to this %3$sCDN%4$s "
11745
+ "domain for %5$sHTTPS%6$s requests"
11746
+ msgstr ""
11747
+ "Diese Website-Domain muss %1$sCNAME%2$s sein und auf diese %3$sCDN%4$s-"
11748
+ "Domain für %5$sHTTPS%6$s-Anfragen verweisen"
11749
+
11750
+ #. translators: 3 opening HMTL acornym tag, 4 closing HTML acronym tag.
11751
+ #: Cdn_MaxCdn_Page_View.php:80
11752
+ msgid ""
11753
+ "This website domain has to be CNAME pointing to this %1$sCDN%2$s domain for "
11754
+ "%3$sHTTP%4$s requests"
11755
+ msgstr ""
11756
+ "Diese Website-Domain muss ein CNAME sein, der für %3$sHTTP%4$s-Anfragen auf "
11757
+ "diese %1$sCDN%2$s-Domain verweist"
11758
+
11759
+ #: inc/widget/latest.php:12 inc/widget/latest_news.php:12
11760
+ msgid "This widget requires JavaScript."
11761
+ msgstr "Dieses Widget erfordert JavaScript."
11762
+
11763
+ #: BrowserCache_Page_View_SectionSecurity.php:229
11764
+ msgid ""
11765
+ "This will prevent the user's session ID from being transmitted in plain text,"
11766
+ " making it much harder to hijack the user's session."
11767
+ msgstr ""
11768
+ "Dadurch wird verhindert, dass die Sitzungs-ID des Benutzers im Klartext "
11769
+ "übertragen wird, wodurch es viel schwieriger wird, die Sitzung des Benutzers "
11770
+ "zu kapern."
11771
+
11772
+ #: UserExperience_LazyLoad_Page_View.php:77
11773
+ msgid "Threshold"
11774
+ msgstr "Schwelle"
11775
+
11776
+ #: SetupGuide_Plugin_Admin.php:1151 SetupGuide_Plugin_Admin.php:1177
11777
+ #: SetupGuide_Plugin_Admin.php:1214
11778
+ msgid "Time (ms)"
11779
+ msgstr "Zeit (ms)"
11780
+
11781
+ #: inc/popup/cdn_export_file.php:42 inc/popup/cdn_export_library.php:32
11782
+ #: inc/popup/cdn_import_library.php:33 inc/popup/cdn_rename_domain.php:51
11783
+ msgid "Time elapsed:"
11784
+ msgstr "Verstrichene Zeit:"
11785
+
11786
+ #: UsageStatistics_Page_View.php:205
11787
+ msgid "Time per request (ms)"
11788
+ msgstr "Zeit pro Anfrage (ms)"
11789
+
11790
+ #: UsageStatistics_Page_View.php:339
11791
+ msgid "Time taken for database activity"
11792
+ msgstr "Dauer der Datenbankaktivität"
11793
+
11794
+ #: UsageStatistics_Page_View.php:284
11795
+ msgid "Time taken for ObjectCache activity"
11796
+ msgstr "Dauer der ObjectCache-Aktivität"
11797
+
11798
+ #: UsageStatistics_Page_View.php:274 UsageStatistics_Page_View.php:333
11799
+ msgid "Time taken: "
11800
+ msgstr "Zeit genommen:"
11801
+
11802
+ #: SetupGuide_Plugin_Admin.php:1129 SetupGuide_Plugin_Admin.php:1140
11803
+ msgid "Time to First Byte"
11804
+ msgstr "Zeit bis zum ersten Byte"
11805
+
11806
+ #: inc/options/minify.php:1030 inc/options/pgcache.php:612
11807
+ #: inc/options/pgcache.php:614 inc/options/pgcache.php:878
11808
+ msgid "Time to Live"
11809
+ msgstr "Zeit zu leben"
11810
+
11811
+ #: Extension_CloudFlare_Page_View.php:204
11812
+ #: Extension_CloudFlare_Page_View.php:249
11813
+ #: Extension_CloudFlare_Page_View.php:271
11814
+ #: Extension_CloudFlare_Page_View.php:304
11815
+ msgid "Time-to-Live"
11816
+ msgstr "Zeit zu leben"
11817
+
11818
+ #: inc/lightbox/minify_recommendations.php:11
11819
+ msgid ""
11820
+ "To get started with minify, we've identified the following external CSS and "
11821
+ "JS objects in the"
11822
+ msgstr ""
11823
+ "Um mit minify zu beginnen, haben wir die folgenden externen CSS- und JS-"
11824
+ "Objekte in der identifiziert"
11825
+
11826
+ #. translators: 1: HTML emphesis open tag, 2: HTML emphesis close tag.
11827
+ #: SetupGuide_Plugin_Admin.php:1244
11828
+ msgid ""
11829
+ "To improve %1$sBrowser Cache%2$s, we recommend enabling %1$sBrowser "
11830
+ "Cache%2$s."
11831
+ msgstr ""
11832
+ "Um den %1$sBrowser-Cache%2$s zu verbessern, empfehlen wir, %1$sBrowser-"
11833
+ "Cache%2$s zu aktivieren."
11834
+
11835
+ #: inc/options/cdn.php:120
11836
+ msgid ""
11837
+ "to make existing file modifications visible to visitors with a primed cache."
11838
+ msgstr ""
11839
+ "vorhandene Dateiänderungen für Besucher mit einem vorbereiteten Cache "
11840
+ "sichtbar zu machen."
11841
+
11842
+ #. translators: 1 HTML a tag to Stackpath API key page.
11843
+ #: Cdn_StackPath_Popup_View_Intro.php:28
11844
+ msgid ""
11845
+ "To obtain API key you can %1$s, log in, and paste the key in above field."
11846
+ msgstr ""
11847
+ "Um den API-Schlüssel zu erhalten, können Sie sich %1$s anmelden und den "
11848
+ "Schlüssel in das obige Feld einfügen."
11849
+
11850
+ #. translators: 1 HTML input submit to preview changes.
11851
+ #: inc/options/general.php:73
11852
+ msgid "To preview any changed settings (without deploying): %1$s"
11853
+ msgstr ""
11854
+ "So zeigen Sie geänderte Einstellungen in der Vorschau an (ohne "
11855
+ "Bereitstellung): %1$s"
11856
+
11857
+ #: inc/options/dbcache.php:32
11858
+ msgid "To rebuild the database cache use the"
11859
+ msgstr "Um den Datenbank-Cache neu zu erstellen, verwenden Sie die"
11860
+
11861
+ #. translators: 1 HTML submit button to rebuild minify cache.
11862
+ #: inc/options/minify.php:46
11863
+ msgid "To rebuild the minify cache use the %1$s operation."
11864
+ msgstr ""
11865
+ "Um den Minify-Cache neu zu erstellen, verwenden Sie die %1$s-Operation."
11866
+
11867
+ #: inc/options/objectcache.php:33
11868
+ msgid "To rebuild the object cache use the"
11869
+ msgstr "Um den Objekt-Cache neu zu erstellen, verwenden Sie die"
11870
+
11871
+ #. translators: 1 Nonce Field followed by submit HTML input to flush PageCache.
11872
+ #: inc/options/pgcache.php:37
11873
+ msgid "To rebuild the page cache use the %1$s operation"
11874
+ msgstr "Um den Seitencache neu zu erstellen, verwenden Sie die Operation %1$s"
11875
+
11876
+ #: SetupGuide_Plugin_Admin.php:1224
11877
+ msgid ""
11878
+ "To render your website, browsers must download many different types of "
11879
+ "assets, including javascript files, CSS stylesheets, images, and more. For "
11880
+ "most assets, once a browser has downloaded them, they shouldn't have to "
11881
+ "download them again."
11882
+ msgstr ""
11883
+ "Um Ihre Website zu rendern, müssen Browser viele verschiedene Arten von "
11884
+ "Assets herunterladen, einschließlich Javascript-Dateien, CSS-Stylesheets, "
11885
+ "Bilder und mehr. Bei den meisten Assets sollte ein Browser, der sie einmal "
11886
+ "heruntergeladen hat, sie nicht erneut herunterladen müssen."
11887
+
11888
+ #: inc/options/cdn.php:753
11889
+ msgid ""
11890
+ "To upload files in blogs.dir for current blog write wp-content/&lt;"
11891
+ "currentblog&gt;/."
11892
+ msgstr ""
11893
+ "Um Dateien für den aktuellen Blog in blogs.dir hochzuladen, schreiben Sie wp-"
11894
+ "content/&lt;aktueller Blog&gt;/."
11895
+
11896
+ #: inc/options/cdn/att.php:16 inc/options/cdn/edgecast.php:16
11897
+ msgid "Token:"
11898
+ msgstr "Zeichen:"
11899
+
11900
+ #: Extension_ImageService_Page_View.php:113
11901
+ msgid "Tools"
11902
+ msgstr "Werkzeug"
11903
+
11904
+ #: Extension_NewRelic_Widget_View_Apm.php:37
11905
+ msgid "Top 5 slowest times"
11906
+ msgstr "Top 5 der langsamsten Zeiten"
11907
+
11908
+ #: Generic_ConfigLabels.php:11
11909
+ msgid "Topic <acronym title=\"Identification\">ID</acronym>:"
11910
+ msgstr "Themen- <acronym title=\"Identifikation\">ID</acronym> :"
11911
+
11912
+ #: Extension_ImageService_Plugin_Admin.php:492
11913
+ #: Extension_ImageService_Plugin_Admin.php:493
11914
+ msgid "Total Cache Image Service"
11915
+ msgstr "Total Cache Image Service"
11916
+
11917
+ #. translators: 1: HTML anchor open tag, 2: HTML anchor close tag, 3: HTML anchor open tag, 4: HTML anchor open tag.
11918
+ #: Extension_ImageService_Plugin_Admin.php:116
11919
+ msgid ""
11920
+ "Total Cache Image Service has been activated. Now, you can %1$sadjust the "
11921
+ "settings%2$s or go to the %3$sMedia Library%2$s to convert images to WebP. "
11922
+ "%4$sLearn more%2$s."
11923
+ msgstr ""
11924
+ "Total Cache Image Service wurde aktiviert. Jetzt können Sie %1$sdie "
11925
+ "Einstellungen anpassen%2$s oder zur %3$sMedienbibliothek%2$s gehen, um "
11926
+ "Bilder in WebP zu konvertieren. %4$sErfahren Sie mehr%2$s."
11927
+
11928
+ #: inc/popup/cdn_export_file.php:30
11929
+ msgid "Total files:"
11930
+ msgstr "Dateien insgesamt:"
11931
+
11932
+ #: inc/popup/cdn_export_library.php:20
11933
+ msgid "Total media library attachments:"
11934
+ msgstr "Gesamtzahl der Anhänge der Medienbibliothek:"
11935
+
11936
+ #: inc/popup/cdn_import_library.php:21 inc/popup/cdn_rename_domain.php:39
11937
+ msgid "Total posts:"
11938
+ msgstr "Beiträge insgesamt:"
11939
+
11940
+ #: DbCache_WpdbInjection_QueryCaching.php:902
11941
+ msgid "Total queries: "
11942
+ msgstr "Abfragen insgesamt:"
11943
+
11944
+ #: DbCache_WpdbInjection_QueryCaching.php:904
11945
+ msgid "Total query time: "
11946
+ msgstr "Gesamte Abfragezeit:"
11947
+
11948
+ #: Extension_ImageService_Page_View.php:160
11949
+ msgid "Total:"
11950
+ msgstr "Gesamt:"
11951
+
11952
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Create.php:43
11953
+ msgid "Traffic Type:"
11954
+ msgstr "Verkehrstyp:"
11955
+
11956
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:51
11957
+ #: Cdn_StackPath2_Widget_View_Authorized.php:28
11958
+ #: Cdn_StackPath_Widget_View_Authorized.php:40
11959
+ msgid "Transferred"
11960
+ msgstr "Übertragen"
11961
+
11962
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
11963
+ #: inc/options/about.php:95
11964
+ msgid ""
11965
+ "Transparent content delivery network (%1$sCDN%2$s) integration with Media "
11966
+ "Library, theme files and WordPress core"
11967
+ msgstr ""
11968
+ "Transparente Content-Delivery-Network-Integration (%1$sCDN%2$s) mit "
11969
+ "Medienbibliothek, Designdateien und WordPress-Core"
11970
+
11971
+ #: Cdnfsd_Plugin_Admin.php:112
11972
+ msgid "TransparentCDN"
11973
+ msgstr "Transparentes CDN"
11974
+
11975
+ #: BrowserCache_Page_View_SectionSecurity.php:258
11976
+ #: Extension_CloudFlare_Page_View.php:805
11977
+ #: Extension_CloudFlare_Page_View.php:821
11978
+ #: Extension_CloudFlare_Page_View.php:844
11979
+ msgid "Transport Layer Security"
11980
+ msgstr "Sicherheit der Transportschicht"
11981
+
11982
+ #: Extension_CloudFlare_Page_View.php:682
11983
+ msgid "True client IP:"
11984
+ msgstr "Wahre Client-IP:"
11985
+
11986
+ #: inc/options/general.php:882
11987
+ msgid ""
11988
+ "Try this option if your hosting environment uses a network based file system "
11989
+ "for a possible performance improvement."
11990
+ msgstr ""
11991
+ "Probieren Sie diese Option aus, wenn Ihre Hosting-Umgebung ein "
11992
+ "netzwerkbasiertes Dateisystem für eine mögliche Leistungsverbesserung "
11993
+ "verwendet."
11994
+
11995
+ #: inc/email/support_request.php:18
11996
+ msgid "Twitter: "
11997
+ msgstr "Twitter:"
11998
+
11999
+ #: inc/lightbox/minify_recommendations.php:137
12000
+ msgid ""
12001
+ "Typically minification of advertiser code, analytics/statistics or any other "
12002
+ "types of tracking code is not recommended."
12003
+ msgstr ""
12004
+ "In der Regel wird die Minimierung von Werbetreibendencode, "
12005
+ "Analysen/Statistiken oder anderen Arten von Tracking-Code nicht empfohlen."
12006
+
12007
+ #. translators: 1: Filesystem access method: "direct", "ssh2", "ftpext" or "ftpsockets".
12008
+ #: Util_WpFile.php:35
12009
+ msgid ""
12010
+ "Unable to connect to the filesystem (using %1$s). Please confirm your "
12011
+ "credentials. %2$s"
12012
+ msgstr ""
12013
+ "Es kann keine Verbindung zum Dateisystem hergestellt werden (mit %1$s). "
12014
+ "Bitte bestätigen Sie Ihre Zugangsdaten. %2$s"
12015
+
12016
+ #: inc/popup/pagespeed_results.php:56
12017
+ msgid "Unable to fetch Page Speed results."
12018
+ msgstr "Page Speed-Ergebnisse können nicht abgerufen werden."
12019
+
12020
+ #: CdnEngine_Mirror_Akamai.php:95 CdnEngine_Mirror_Akamai.php:100
12021
+ #: CdnEngine_Mirror_Cotendo.php:100 CdnEngine_Mirror_Edgecast.php:63
12022
+ msgid "Unable to purge (%s)."
12023
+ msgstr "Löschen nicht möglich (%s)."
12024
+
12025
+ #: Generic_Plugin_Admin.php:757
12026
+ msgid "Unable to purge attachment."
12027
+ msgstr "Anhang kann nicht gelöscht werden."
12028
+
12029
+ #: Generic_Plugin_Admin.php:758
12030
+ msgid "Unable to purge post."
12031
+ msgstr "Beitrag kann nicht gelöscht werden."
12032
+
12033
+ #: Generic_Plugin_Admin.php:745
12034
+ msgid "Unable to send the support request."
12035
+ msgstr "Die Support-Anfrage kann nicht gesendet werden."
12036
+
12037
+ #: Generic_Plugin_Admin.php:747
12038
+ msgid "Unable to upload config file."
12039
+ msgstr "Konfigurationsdatei kann nicht hochgeladen werden."
12040
+
12041
+ #: inc/options/pgcache.php:150
12042
+ msgid ""
12043
+ "Unauthenticated users may view a cached version of the last authenticated "
12044
+ "user's view of a given page. Disabling this option is not recommended."
12045
+ msgstr ""
12046
+ "Nicht authentifizierte Benutzer können eine zwischengespeicherte Version der "
12047
+ "Ansicht einer bestimmten Seite des letzten authentifizierten Benutzers "
12048
+ "anzeigen. Es wird nicht empfohlen, diese Option zu deaktivieren."
12049
+
12050
+ #: SetupGuide_Plugin_Admin.php:907
12051
+ msgid "Unavailable"
12052
+ msgstr "Nicht verfügbar"
12053
+
12054
+ #: Extension_ImageService_Page_View.php:185
12055
+ msgid "Unconverted:"
12056
+ msgstr "Unkonvertiert:"
12057
+
12058
+ #: Extension_CloudFlare_Page_View.php:547
12059
+ msgid "Under Attack"
12060
+ msgstr "Unter Beschuss"
12061
+
12062
+ #. translators: 1: opening HTML strong tag, 2: closing HTML strong tag, 3: HTML input button for hiding message.
12063
+ #: Generic_AdminNotes.php:73
12064
+ msgid ""
12065
+ "Unfortunately the PHP installation is incomplete, the %1$szlib module is "
12066
+ "missing%2$s. This is a core PHP module. Notify the server administrator. %3$s"
12067
+ msgstr ""
12068
+ "Leider ist die PHP-Installation unvollständig, das %1$szlib-Modul fehlt%2$s. "
12069
+ "Dies ist ein zentrales PHP-Modul. Benachrichtigen Sie den "
12070
+ "Serveradministrator. %3$s"
12071
+
12072
+ #: inc/options/about.php:164 inc/options/browsercache.php:229
12073
+ #: inc/options/browsercache.php:263 inc/options/browsercache.php:291
12074
+ msgid "Uniform Resource Identifier"
12075
+ msgstr "Uniform Resource Identifier"
12076
+
12077
+ #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:28 inc/options/cdn.php:471
12078
+ #: inc/popup/cdn_rename_domain.php:26
12079
+ msgid "Uniform Resource Indicator"
12080
+ msgstr "Einheitlicher Ressourcenindikator"
12081
+
12082
+ #: BrowserCache_Page_View_SectionSecurity.php:201
12083
+ #: BrowserCache_Page_View_SectionSecurity.php:498
12084
+ #: BrowserCache_Page_View_SectionSecurity.php:602
12085
+ #: BrowserCache_Page_View_SectionSecurity.php:734
12086
+ #: Extension_FeedBurner_Page_View.php:40 Extension_FeedBurner_Page_View.php:56
12087
+ #: Generic_Plugin_Admin.php:709 inc/options/browsercache.php:201
12088
+ #: inc/options/browsercache.php:473 inc/options/browsercache.php:702
12089
+ #: inc/options/pgcache.php:197 inc/options/pgcache.php:564
12090
+ #: inc/options/pgcache.php:642
12091
+ msgid "Uniform Resource Locator"
12092
+ msgstr "Uniform Resource Locator"
12093
+
12094
+ #: inc/options/browsercache.php:333
12095
+ msgid "Universal Resource Indicator"
12096
+ msgstr "Indikator für universelle Ressourcen"
12097
+
12098
+ #: inc/options/browsercache.php:317
12099
+ msgid "Universal Resource Locator"
12100
+ msgstr "Universal Resource Locator"
12101
+
12102
+ #: SetupGuide_Plugin_Admin.php:1292 SetupGuide_Plugin_Admin.php:1314
12103
+ #: SetupGuide_Plugin_Admin.php:1325 SetupGuide_Plugin_Admin.php:1336
12104
+ #: SetupGuide_Plugin_Admin.php:1346
12105
+ msgid "UNKNOWN"
12106
+ msgstr "UNBEKANNT"
12107
+
12108
+ #: Extension_ImageService_Api.php:336
12109
+ msgid "Unknown"
12110
+ msgstr "Unbekannt"
12111
+
12112
+ #: Cdnfsd_TransparentCDN_Engine.php:163
12113
+ msgid "Unknown error"
12114
+ msgstr "Unbekannter Fehler"
12115
+
12116
+ #: Cli.php:251 Cli.php:282
12117
+ msgid "Unknown type "
12118
+ msgstr "Unbekannter Typ"
12119
+
12120
+ #: Extension_ImageService_Api.php:386
12121
+ #: Extension_ImageService_Plugin_Admin.php:478
12122
+ msgid "Unlimited"
12123
+ msgstr "Unbegrenzt"
12124
+
12125
+ #: inc/lightbox/upgrade.php:15
12126
+ msgid "Unlock more performance options"
12127
+ msgstr "Schalten Sie weitere Leistungsoptionen frei"
12128
+
12129
+ #. translators: 1 HTML input button to buy plugin.
12130
+ #: inc/options/edd/buy.php:14
12131
+ msgid "Unlock more speed, %1$s now!"
12132
+ msgstr "Schalte jetzt mehr Geschwindigkeit frei, %1$s!"
12133
+
12134
+ #: FeatureShowcase_Plugin_Admin.php:314
12135
+ msgid ""
12136
+ "Unlocking the fragment caching module delivers enhanced performance for "
12137
+ "plugins and themes that use the WordPress Transient API."
12138
+ msgstr ""
12139
+ "Das Entsperren des Fragment-Caching-Moduls bietet eine verbesserte Leistung "
12140
+ "für Plugins und Themes, die die WordPress Transient API verwenden."
12141
+
12142
+ #: Cdn_AdminActions.php:61
12143
+ msgid "Unsuccessful file transfer queue."
12144
+ msgstr "Fehlerhafte Dateiübertragungswarteschlange."
12145
+
12146
+ #: inc/options/cdn.php:84
12147
+ msgid "unsuccessful file transfers"
12148
+ msgstr "erfolglose Dateiübertragungen"
12149
+
12150
+ #: Cdn_AdminNotes.php:158
12151
+ msgid "unsuccessful transfer queue"
12152
+ msgstr "Warteschlange für erfolglose Übertragung"
12153
+
12154
+ #: Minify_ConfigLabels.php:31
12155
+ msgid "Update external files every:"
12156
+ msgstr "Externe Dateien aktualisieren alle:"
12157
+
12158
+ #: PgCache_ConfigLabels.php:19
12159
+ msgid "Update interval:"
12160
+ msgstr "Updateintervall:"
12161
+
12162
+ #: inc/options/browsercache.php:60 inc/options/cdn.php:120
12163
+ #: inc/options/minify.php:76
12164
+ msgid "Update media query string"
12165
+ msgstr "Medienabfragezeichenfolge aktualisieren"
12166
+
12167
+ #: inc/options/dashboard.php:71
12168
+ msgid "update Media Query String"
12169
+ msgstr "Aktualisierung der Medienabfragezeichenfolge"
12170
+
12171
+ #: Cdn_AdminNotes.php:190
12172
+ msgid "update the path"
12173
+ msgstr "aktualisieren Sie den Pfad"
12174
+
12175
+ #: Util_Activation.php:249
12176
+ msgid "Update via FTP"
12177
+ msgstr "Aktualisierung per FTP"
12178
+
12179
+ #: Cli.php:335
12180
+ msgid "updating the query string failed. with error %s"
12181
+ msgstr "Aktualisieren der Abfragezeichenfolge fehlgeschlagen. mit Fehler %s"
12182
+
12183
+ #: Licensing_Plugin_Admin.php:61
12184
+ msgid "Upgrade"
12185
+ msgstr "Aktualisierung"
12186
+
12187
+ #: inc/options/edd/buy.php:18 UsageStatistics_Page_View_Free.php:18
12188
+ msgid "upgrade"
12189
+ msgstr "Aktualisierung"
12190
+
12191
+ #: UsageStatistics_Widget_View_Disabled.php:33
12192
+ msgid "Upgrade to Pro"
12193
+ msgstr "Auf Pro upgraden"
12194
+
12195
+ #: Extension_NewRelic_Widget_View_Browser.php:11
12196
+ msgid "Upgrade your New Relic account to enable more metrics."
12197
+ msgstr "Aktualisieren Sie Ihr New Relic-Konto, um mehr Metriken zu aktivieren."
12198
+
12199
+ #: Cdn_AdminNotes.php:42
12200
+ msgid "Upgraded WordPress? Please %s files now to ensure proper operation. %s"
12201
+ msgstr ""
12202
+ "Aktualisiertes WordPress? Bitte %s Dateien jetzt, um einen ordnungsgemäßen "
12203
+ "Betrieb zu gewährleisten. %s"
12204
+
12205
+ #: inc/options/general.php:703
12206
+ msgid "upgrading"
12207
+ msgstr "Upgrade durchführen"
12208
+
12209
+ #: inc/options/general.php:1051
12210
+ msgid "Upload"
12211
+ msgstr "Hochladen"
12212
+
12213
+ #: Cdn_AdminNotes.php:28
12214
+ msgid "upload active theme files"
12215
+ msgstr "aktive Themendateien hochladen"
12216
+
12217
+ #: inc/options/general.php:1052
12218
+ msgid "Upload and replace the active settings file."
12219
+ msgstr "Laden Sie die aktive Einstellungsdatei hoch und ersetzen Sie sie."
12220
+
12221
+ #: inc/options/cdn.php:179
12222
+ msgid "Upload attachments"
12223
+ msgstr "Anhänge hochladen"
12224
+
12225
+ #: inc/options/cdn.php:312
12226
+ msgid "Upload custom files"
12227
+ msgstr "Laden Sie benutzerdefinierte Dateien hoch"
12228
+
12229
+ #: inc/options/cdn.php:211
12230
+ msgid "Upload includes files"
12231
+ msgstr "Der Upload umfasst Dateien"
12232
+
12233
+ #: inc/options/cdn.php:280
12234
+ msgid "Upload minify files"
12235
+ msgstr "Minify-Dateien hochladen"
12236
+
12237
+ #: inc/popup/cdn_queue.php:12
12238
+ msgid "Upload queue"
12239
+ msgstr "Warteschlange hochladen"
12240
+
12241
+ #: inc/popup/cdn_queue.php:46
12242
+ msgid "Upload queue is empty"
12243
+ msgstr "Upload-Warteschlange ist leer"
12244
+
12245
+ #: inc/options/cdn.php:242
12246
+ msgid "Upload theme files"
12247
+ msgstr "Designdateien hochladen"
12248
+
12249
+ #: inc/options/minify/csstidy2.php:25
12250
+ msgid "Uppercase"
12251
+ msgstr "Großbuchstaben"
12252
+
12253
+ #: Generic_Plugin_Admin.php:709
12254
+ msgid "URL"
12255
+ msgstr "URL"
12256
+
12257
+ #: inc/lightbox/self_test.php:520
12258
+ msgid "URL rewrite:"
12259
+ msgstr "URL umschreiben:"
12260
+
12261
+ #: inc/email/support_request.php:13
12262
+ msgid "URL: "
12263
+ msgstr "URL:"
12264
+
12265
+ #: CdnEngine_S3.php:23
12266
+ msgid "US East (N. Virginia)"
12267
+ msgstr "USA Ost (Nord-Virginia)"
12268
+
12269
+ #: CdnEngine_S3.php:24
12270
+ msgid "US East (Ohio)"
12271
+ msgstr "USA Ost (Ohio)"
12272
+
12273
+ #: CdnEngine_S3.php:25
12274
+ msgid "US West (N. California)"
12275
+ msgstr "USA West (Nordkalifornien)"
12276
+
12277
+ #: CdnEngine_S3.php:26
12278
+ msgid "US West (Oregon)"
12279
+ msgstr "USA West (Oregon)"
12280
+
12281
+ #: UsageStatistics_Page_DbRequests_View.php:11
12282
+ #: UsageStatistics_Page_ObjectCacheLog_View.php:11
12283
+ #: UsageStatistics_Page_PageCacheRequests_View.php:11
12284
+ #: UsageStatistics_Page_View_Disabled.php:11
12285
+ #: UsageStatistics_Page_View_Free.php:11
12286
+ #: UsageStatistics_Page_View_NoDebugMode.php:11
12287
+ msgid "Usage Statistics"
12288
+ msgstr "Nutzungsstatistiken"
12289
+
12290
+ #: UsageStatistics_Page_View_NoDebugMode.php:14
12291
+ msgid "Usage Statistics is collected only when Debug Mode is enabled."
12292
+ msgstr ""
12293
+ "Nutzungsstatistiken werden nur erfasst, wenn der Debug-Modus aktiviert ist."
12294
+
12295
+ #. translators: 1 opening HTML code tag, 2 closing HTML code tag.
12296
+ #: UserExperience_LazyLoad_Page_View.php:95
12297
+ msgid "Use %1$sinline%2$s method only when your website has just a few pages"
12298
+ msgstr ""
12299
+ "Verwenden Sie die %1$sinline%2$s-Methode nur, wenn Ihre Website nur wenige "
12300
+ "Seiten hat"
12301
+
12302
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
12303
+ #: Extension_NewRelic_Page_View_Apm.php:317
12304
+ msgid "Use %1$sPHP%2$s function to set application name:"
12305
+ msgstr ""
12306
+ "Verwenden Sie die Funktion %1$sPHP%2$s, um den Anwendungsnamen festzulegen:"
12307
+
12308
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
12309
+ #: Extension_NewRelic_Page_View_Apm.php:209
12310
+ msgid "Use %1$sRUM%2$s only for following user roles"
12311
+ msgstr "Verwenden Sie %1$sRUM%2$s nur für folgende Benutzerrollen"
12312
+
12313
+ #: Cdn_ConfigLabels.php:20
12314
+ msgid ""
12315
+ "Use <acronym title=\"Content Delivery Network\">CDN</acronym> links for the "
12316
+ "Media Library on admin pages"
12317
+ msgstr ""
12318
+ "Verwenden Sie <acronym title=\"Content-Delivery-Netzwerk\">CDN-</acronym> "
12319
+ "Links für die Medienbibliothek auf Admin-Seiten"
12320
+
12321
+ #: inc/options/parts/memcached.php:67
12322
+ msgid "Use binary protocol:"
12323
+ msgstr "Binäres Protokoll verwenden:"
12324
+
12325
+ #: Util_Ui.php:1148
12326
+ msgid "Use common settings"
12327
+ msgstr "Verwenden Sie allgemeine Einstellungen"
12328
+
12329
+ #: BrowserCache_ConfigLabels.php:44
12330
+ msgid "Use cookies to store session IDs:"
12331
+ msgstr "Verwenden Sie Cookies, um Sitzungs-IDs zu speichern:"
12332
+
12333
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
12334
+ #: inc/options/cdn/ftp.php:236
12335
+ msgid "Use default %1$sSSH%2$s public/private key files"
12336
+ msgstr ""
12337
+ "Verwenden Sie standardmäßig %1$sSSH%2$s öffentliche/private Schlüsseldateien"
12338
+
12339
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
12340
+ #: inc/options/cdn/ftp.php:15
12341
+ msgid "Use passive %1$sFTP%2$s mode"
12342
+ msgstr "Verwenden Sie den passiven %1$sFTP%2$s-Modus"
12343
+
12344
+ #: inc/options/parts/memcached.php:27
12345
+ #: inc/options/parts/memcached_extension.php:33 inc/options/parts/redis.php:48
12346
+ #: inc/options/parts/redis_extension.php:50
12347
+ msgid "Use persistent connection:"
12348
+ msgstr "Persistente Verbindung verwenden:"
12349
+
12350
+ #: inc/options/general.php:94
12351
+ msgid ""
12352
+ "Use preview mode to test configuration scenarios prior to releasing them "
12353
+ "(deploy) on the actual site. Preview mode remains active even after "
12354
+ "deploying settings until the feature is disabled."
12355
+ msgstr ""
12356
+ "Verwenden Sie den Vorschaumodus, um Konfigurationsszenarien zu testen, bevor "
12357
+ "Sie sie auf der tatsächlichen Site freigeben (bereitstellen). Der "
12358
+ "Vorschaumodus bleibt auch nach dem Bereitstellen von Einstellungen aktiv, "
12359
+ "bis die Funktion deaktiviert wird."
12360
+
12361
+ #: inc/options/minify.php:979
12362
+ msgid "Use Regular Expressions for file name matching"
12363
+ msgstr "Verwenden Sie reguläre Ausdrücke für den Dateinamenabgleich"
12364
+
12365
+ #: Generic_ConfigLabels.php:15
12366
+ msgid "Use single network configuration file for all sites."
12367
+ msgstr ""
12368
+ "Verwenden Sie eine einzige Netzwerkkonfigurationsdatei für alle Standorte."
12369
+
12370
+ #: Util_Ui.php:1151
12371
+ msgid "Use specific settings"
12372
+ msgstr "Verwenden Sie bestimmte Einstellungen"
12373
+
12374
+ #: inc/options/objectcache.php:106
12375
+ msgid ""
12376
+ "Use that to store transients in database even when external cache is used. "
12377
+ "That allows transient values to survive object cache cleaning / expiration"
12378
+ msgstr ""
12379
+ "Verwenden Sie dies, um Transienten in der Datenbank zu speichern, auch wenn "
12380
+ "ein externer Cache verwendet wird. Dadurch können transiente Werte die "
12381
+ "Reinigung / den Ablauf des Objekt-Cache überstehen"
12382
+
12383
+ #. translators: 1 The opening anchor tag linking to our support page, 2 its closing tag.
12384
+ #: UsageStatistics_GeneralPage_View.php:30
12385
+ msgid ""
12386
+ "Use the caching statistics to compare the performance of different "
12387
+ "configurations like caching methods, object lifetimes and so on. Did you "
12388
+ "know that we offer premium support, customization and audit services? "
12389
+ "%1$sClick here for more information%2$s."
12390
+ msgstr ""
12391
+ "Verwenden Sie die Caching-Statistiken, um die Leistung verschiedener "
12392
+ "Konfigurationen wie Caching-Methoden, Objektlebensdauer usw. zu vergleichen. "
12393
+ "Wussten Sie, dass wir Premium-Support, Anpassungs- und Audit-Services "
12394
+ "anbieten? %1$sKlicken Sie hier für weitere Informationen%2$s."
12395
+
12396
+ #: UsageStatistics_GeneralPage_View.php:58
12397
+ msgid "Use the system reported averages of CPU resource usage."
12398
+ msgstr ""
12399
+ "Verwenden Sie die vom System gemeldeten Durchschnittswerte der CPU-"
12400
+ "Ressourcennutzung."
12401
+
12402
+ #: UsageStatistics_Page_View.php:417 UsageStatistics_Page_View.php:472
12403
+ msgid "Used (%): "
12404
+ msgstr "Gebraucht (%):"
12405
+
12406
+ #: UsageStatistics_Page_View.php:408 UsageStatistics_Page_View.php:437
12407
+ #: UsageStatistics_Page_View.php:463
12408
+ msgid "Used by "
12409
+ msgstr "Benutzt von"
12410
+
12411
+ #: UsageStatistics_Page_View.php:220 UsageStatistics_Page_View.php:414
12412
+ #: UsageStatistics_Page_View.php:443 UsageStatistics_Page_View.php:469
12413
+ msgid "Used: "
12414
+ msgstr "Gebraucht:"
12415
+
12416
+ #: Generic_ConfigLabels.php:23
12417
+ msgid "User Agent groups"
12418
+ msgstr "Benutzer-Agent-Gruppen"
12419
+
12420
+ #: Cdn_Plugin.php:550
12421
+ msgid "user agent is rejected"
12422
+ msgstr "Benutzeragent wird abgelehnt"
12423
+
12424
+ #: inc/email/support_request.php:46
12425
+ msgid "User Agent: "
12426
+ msgstr "User-Agent:"
12427
+
12428
+ #: Generic_ConfigLabels.php:22
12429
+ msgid "User Agents:"
12430
+ msgstr "Benutzeragenten:"
12431
+
12432
+ #: CacheGroups_Plugin_Admin_View.php:109
12433
+ msgid "User agents:"
12434
+ msgstr "Benutzeragenten:"
12435
+
12436
+ #: UserExperience_GeneralPage_View.php:9 UserExperience_Plugin_Admin.php:24
12437
+ #: UserExperience_Plugin_Admin.php:25
12438
+ msgid "User Experience"
12439
+ msgstr "Benutzererfahrung"
12440
+
12441
+ #. translators: 1 HTML a tag to memcached.org, 2 HTML acronym open tag, 3 HTML acronym and close tag.
12442
+ #: inc/options/about.php:16
12443
+ msgid ""
12444
+ "User experience is an important aspect of every web site and all web sites "
12445
+ "can benefit from effective caching and file size reduction. We have applied "
12446
+ "web site optimization methods typically used with high traffic sites and "
12447
+ "simplified their implementation. Coupling these methods either %1$s and/or "
12448
+ "opcode caching and the %2$sCDN%3$s of your choosing to provide the following "
12449
+ "features and benefits:"
12450
+ msgstr ""
12451
+ "Die Benutzererfahrung ist ein wichtiger Aspekt jeder Website, und alle "
12452
+ "Websites können von effektivem Caching und reduzierter Dateigröße "
12453
+ "profitieren. Wir haben Website-Optimierungsmethoden angewendet, die "
12454
+ "typischerweise bei stark frequentierten Websites verwendet werden, und ihre "
12455
+ "Implementierung vereinfacht. Koppeln Sie diese Methoden entweder %1$s "
12456
+ "und/oder Opcode-Caching und das %2$sCDN%3$s Ihrer Wahl, um die folgenden "
12457
+ "Funktionen und Vorteile bereitzustellen:"
12458
+
12459
+ #: DbCache_WpdbInjection_QueryCaching.php:863
12460
+ msgid "User is logged in"
12461
+ msgstr "Benutzer ist angemeldet"
12462
+
12463
+ #: Cdn_LimeLight_Popup_View_Intro.php:26 Cdn_RackSpaceCdn_Page_View.php:24
12464
+ #: Cdn_RackSpaceCdn_Popup_View_Intro.php:19
12465
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:23
12466
+ #: Cdn_RackSpaceCloudFiles_Popup_View_Intro.php:20
12467
+ #: inc/options/cdn/akamai.php:9 inc/options/cdn/cotendo.php:9
12468
+ #: inc/options/cdn/rscf.php:9
12469
+ msgid "Username:"
12470
+ msgstr "Nutzername:"
12471
+
12472
+ #: UsageStatistics_Page_View_Ad.php:2
12473
+ msgid ""
12474
+ "Users who upgrade to W3 Total Cache Pro will have access to the new "
12475
+ "Statistics page, which provides an in-depth view of the performance of your "
12476
+ "site."
12477
+ msgstr ""
12478
+ "Benutzer, die auf W3 Total Cache Pro upgraden, haben Zugriff auf die neue "
12479
+ "Statistikseite, die einen detaillierten Überblick über die Leistung Ihrer "
12480
+ "Website bietet."
12481
+
12482
+ #: inc/options/parts/memcached.php:70
12483
+ msgid "Using binary protocol can increase throughput."
12484
+ msgstr "Die Verwendung des Binärprotokolls kann den Durchsatz erhöhen."
12485
+
12486
+ #: inc/options/parts/memcached.php:30
12487
+ #: inc/options/parts/memcached_extension.php:36
12488
+ #: inc/options/parts/redis_extension.php:53
12489
+ msgid ""
12490
+ "Using persistent connection doesn't reinitialize memcached driver on each "
12491
+ "request"
12492
+ msgstr ""
12493
+ "Durch die Verwendung einer dauerhaften Verbindung wird der Memcache-Treiber "
12494
+ "nicht bei jeder Anforderung neu initialisiert"
12495
+
12496
+ #: inc/options/parts/redis.php:51
12497
+ msgid ""
12498
+ "Using persistent connection doesn't reinitialize redis driver on each request"
12499
+ msgstr ""
12500
+ "Durch die Verwendung einer dauerhaften Verbindung wird der Redis-Treiber "
12501
+ "nicht bei jeder Anforderung neu initialisiert"
12502
+
12503
+ #: Extension_ImageService_Api.php:225
12504
+ msgid "Valid image data is required."
12505
+ msgstr "Gültige Bilddaten sind erforderlich."
12506
+
12507
+ #: inc/options/general.php:515
12508
+ msgid "Varnish Configuration Language"
12509
+ msgstr "Varnish-Konfigurationssprache"
12510
+
12511
+ #: Generic_Plugin_Admin.php:794
12512
+ msgid "Varnish servers successfully purged."
12513
+ msgstr "Varnish-Server erfolgreich gelöscht."
12514
+
12515
+ #: Generic_ConfigLabels.php:27
12516
+ msgid "Varnish servers:"
12517
+ msgstr "Varnish-Server:"
12518
+
12519
+ #: inc/options/general.php:692
12520
+ msgid "Verify license key"
12521
+ msgstr "Lizenzschlüssel überprüfen"
12522
+
12523
+ #: Generic_ConfigLabels.php:17
12524
+ msgid "Verify rewrite rules"
12525
+ msgstr "Überprüfen Sie die Umschreibungsregeln"
12526
+
12527
+ #: inc/options/parts/redis.php:41 inc/options/parts/redis_extension.php:43
12528
+ msgid "Verify the server's certificate when connecting via TLS."
12529
+ msgstr ""
12530
+ "Überprüfen Sie das Zertifikat des Servers, wenn Sie sich über TLS verbinden."
12531
+
12532
+ #: Util_ConfigLabel.php:29
12533
+ msgid "Verify TLS Certificates"
12534
+ msgstr "Überprüfen Sie TLS-Zertifikate"
12535
+
12536
+ #: inc/options/parts/redis.php:38
12537
+ msgid "Verify TLS Certificates:"
12538
+ msgstr "Verifizieren Sie TLS-Zertifikate:"
12539
+
12540
+ #: inc/lightbox/minify_recommendations.php:63
12541
+ #: inc/lightbox/minify_recommendations.php:112 inc/options/minify.php:520
12542
+ #: inc/options/minify.php:775
12543
+ msgid "Verify URI"
12544
+ msgstr "URI überprüfen"
12545
+
12546
+ #: Cdn_Plugin_Admin.php:218
12547
+ msgid "Verizon Digital Media Services (EdgeCast) / Media Temple ProCDN"
12548
+ msgstr "Verizon Digital Media Services (EdgeCast) / Medientempel ProCDN"
12549
+
12550
+ #. translators: 1 extension version number.
12551
+ #: inc/options/extensions/list.php:190
12552
+ msgid "Version %s"
12553
+ msgstr "Version %s"
12554
+
12555
+ #: inc/email/support_request.php:12
12556
+ msgid "Version: "
12557
+ msgstr "Ausführung:"
12558
+
12559
+ #: Extension_FragmentCache_Page_View.php:23
12560
+ msgid "via"
12561
+ msgstr "über"
12562
+
12563
+ #: Util_Widget.php:54
12564
+ msgid "View all"
12565
+ msgstr "Alle ansehen"
12566
+
12567
+ #: UsageStatistics_Page_View_Ad.php:6
12568
+ msgid "View detailed information about your site’s performance"
12569
+ msgstr "Zeigen Sie detaillierte Informationen zur Leistung Ihrer Website an"
12570
+
12571
+ #: inc/options/general.php:988 inc/options/general.php:997
12572
+ #: inc/options/general.php:1006
12573
+ msgid "view log"
12574
+ msgstr "Protokoll ansehen"
12575
+
12576
+ #: Generic_Plugin_Admin.php:897 Util_Activation.php:244
12577
+ msgid "View required changes"
12578
+ msgstr "Erforderliche Änderungen anzeigen"
12579
+
12580
+ #: Extension_NewRelic_Widget.php:77
12581
+ msgid "view visualizations"
12582
+ msgstr "Visualisierungen ansehen"
12583
+
12584
+ #: Extension_ImageService_Page_View.php:95
12585
+ msgid "Visibility:"
12586
+ msgstr "Sichtweite:"
12587
+
12588
+ #: inc/options/extensions/list.php:207
12589
+ msgid "Visit author homepage"
12590
+ msgstr "Besuchen Sie die Homepage des Autors"
12591
+
12592
+ #: inc/options/extensions/list.php:219 inc/options/extensions/list.php:220
12593
+ msgid "Visit extension site"
12594
+ msgstr "Besuchen Sie die Erweiterungsseite"
12595
+
12596
+ #: UsageStatistics_Page_View_Ad.php:7
12597
+ msgid "Visualize your performance over time with graphs"
12598
+ msgstr "Visualisieren Sie Ihre Leistung im Laufe der Zeit mit Diagrammen"
12599
+
12600
+ #: Generic_WidgetSpreadTheWord_View.php:11
12601
+ msgid "Vote:"
12602
+ msgstr "Abstimmung:"
12603
+
12604
+ #. Plugin Name of the plugin
12605
+ #: Generic_Plugin_Admin.php:901 SetupGuide_Plugin_Admin.php:1081
12606
+ #: SetupGuide_Plugin_Admin.php:1127 SetupGuide_Plugin_Admin.php:1199
12607
+ #: SetupGuide_Plugin_Admin.php:1228
12608
+ msgid "W3 Total Cache"
12609
+ msgstr "W3 Gesamtcache"
12610
+
12611
+ #. translators: 1 opening HTML span tag, 2 opening HTML sup tag, 3 closing HTML sup tag, 4 closing HTML span tag.
12612
+ #: inc/options/common/header.php:25
12613
+ msgid "W3 Total Cache %1$sby W3 EDGE %2$s&reg;%3$s%4$s"
12614
+ msgstr "W3-Gesamtcache %1$svon W3 EDGE %2$s®%3$s%4$s"
12615
+
12616
+ #: Generic_Plugin_Admin.php:892
12617
+ msgid "W3 Total Cache Error:"
12618
+ msgstr "W3 Gesamt-Cache-Fehler:"
12619
+
12620
+ #. translators: 1 HTML acronym for Content Delivery Network (CDN).
12621
+ #: Cdn_StackPath2_Page_View.php:18
12622
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:16
12623
+ msgid "W3 Total Cache has detected that you do not have a %1$s configured"
12624
+ msgstr "W3 Total Cache hat festgestellt, dass Sie kein %1$s konfiguriert haben"
12625
+
12626
+ #: Generic_WidgetBoldGrid_View.php:16
12627
+ msgid ""
12628
+ "W3 Total Cache has detected that you do not have a Backup Plugin installed."
12629
+ msgstr ""
12630
+ "W3 Total Cache hat festgestellt, dass Sie kein Backup-Plugin installiert "
12631
+ "haben."
12632
+
12633
+ #: Extension_Wpml_Plugin_Admin.php:22
12634
+ msgid ""
12635
+ "W3 Total Cache's Page caching cannot work effectively when WPML Language URL "
12636
+ "formatis \"Language name added as a parameter\" used. Please consider "
12637
+ "another URL format. Visit the WPML -&gt; Languages settings. %s"
12638
+ msgstr ""
12639
+ "Das Seiten-Caching von W3 Total Cache kann nicht effektiv funktionieren, "
12640
+ "wenn das WPML-Sprach-URL-Format &quot;Sprachname als Parameter "
12641
+ "hinzugefügt&quot; verwendet wird. Bitte ziehen Sie ein anderes URL-Format in "
12642
+ "Betracht. Besuchen Sie die WPML -&gt; Spracheinstellungen. %s"
12643
+
12644
+ #: UsageStatistics_Plugin_Admin.php:61
12645
+ msgid ""
12646
+ "W3 Total Cache: Statistics collection is currently enabled. This consumes "
12647
+ "additional resources, and is not recommended to be run continuously. %s %s"
12648
+ msgstr ""
12649
+ "W3 Total Cache: Statistikerfassung ist derzeit aktiviert. Dies verbraucht "
12650
+ "zusätzliche Ressourcen und sollte nicht kontinuierlich ausgeführt werden. %s "
12651
+ "%s"
12652
+
12653
+ #: Generic_WidgetCommunity.php:37
12654
+ msgid "W3TC Community Edition"
12655
+ msgstr "W3TC-Community-Edition"
12656
+
12657
+ #: UsageStatistics_Page_View.php:117
12658
+ msgid "W3TC Configuration"
12659
+ msgstr "W3TC-Konfiguration"
12660
+
12661
+ #: Cdnfsd_GeneralPage_View.php:77
12662
+ msgid ""
12663
+ "Want even faster speeds? The full site delivery Content Delivery Network "
12664
+ "will speed up your website by over 60% to increase conversions, revenue and "
12665
+ "reach your website visitors globally. With a Full Site Content Delivery "
12666
+ "Network (CDN), your website and all its assets will be available instantly "
12667
+ "to your visitors all over the world at blazing fast speeds."
12668
+ msgstr ""
12669
+ "Willst du noch schnellere Geschwindigkeiten? Das Full-Site-Delivery-Content-"
12670
+ "Delivery-Network wird Ihre Website um über 60 % beschleunigen, um "
12671
+ "Conversions und Einnahmen zu steigern und Ihre Website-Besucher weltweit zu "
12672
+ "erreichen. Mit einem Full Site Content Delivery Network (CDN) sind Ihre "
12673
+ "Website und alle ihre Assets sofort für Ihre Besucher auf der ganzen Welt "
12674
+ "mit blitzschnellen Geschwindigkeiten verfügbar."
12675
+
12676
+ #. translators: 9 closing HTML acronym tag, 10 closing HTML a tag.
12677
+ #. translators: 8 opening HTML acronym tag, 9 closing HTML acronym tag, 10 closing HTML a tag.
12678
+ #: inc/options/cdn/cf.php:18 inc/options/cdn/cf2.php:18
12679
+ #: inc/options/cdn/s3.php:24
12680
+ msgid ""
12681
+ "We recommend that you use %1$s%2$sIAM%3$s%4$s to create a new policy for "
12682
+ "%5$sAWS%6$s services that have limited permissions. A helpful tool: "
12683
+ "%7$s%8$sAWS%9$s Policy Generator%10$s"
12684
+ msgstr ""
12685
+ "Wir empfehlen Ihnen, %1$s%2$sIAM%3$s%4$s zu verwenden, um eine neue "
12686
+ "Richtlinie für %5$sAWS%6$s-Dienste mit eingeschränkten Berechtigungen zu "
12687
+ "erstellen. Ein hilfreiches Tool: %7$s%8$sAWS%9$s Policy Generator%10$s"
12688
+
12689
+ #: SetupGuide_Plugin_Admin.php:1132
12690
+ msgid ""
12691
+ "We'll test your homepage with Page Cache disabled and then with several "
12692
+ "storage engines. You should review the test results and choose the best for "
12693
+ "your website."
12694
+ msgstr ""
12695
+ "Wir testen Ihre Homepage mit deaktiviertem Seiten-Cache und dann mit "
12696
+ "mehreren Speicher-Engines. Sie sollten die Testergebnisse überprüfen und das "
12697
+ "Beste für Ihre Website auswählen."
12698
+
12699
+ #. translators: 1: Anchor/link open tag, 2: Anchor/link close tag.
12700
+ #: SetupGuide_Plugin_Admin.php:1376
12701
+ msgid ""
12702
+ "We're here to help you! Visit our %1$sSupport Center%2$s for helpful "
12703
+ "information and to ask questions."
12704
+ msgstr ""
12705
+ "Wir sind hier, um Ihnen zu helfen! Besuchen Sie unser %1$sSupport-Center%2$s,"
12706
+ " um hilfreiche Informationen zu erhalten und Fragen zu stellen."
12707
+
12708
+ #: Extension_CloudFlare_Page_View.php:572
12709
+ msgid "Web application firewall:"
12710
+ msgstr "Firewall für Webanwendungen:"
12711
+
12712
+ #: inc/options/dashboard.php:105
12713
+ msgid "Web Performance Optimization"
12714
+ msgstr "Optimierung der Webleistung"
12715
+
12716
+ #: UsageStatistics_Page_View.php:23
12717
+ msgid "Web Requests"
12718
+ msgstr "Webanfragen"
12719
+
12720
+ #: Extension_NewRelic_Service.php:133
12721
+ msgid "Web Server"
12722
+ msgstr "Webserver"
12723
+
12724
+ #: Extension_NewRelic_Widget_View_Apm.php:45
12725
+ msgid "Web Transaction times"
12726
+ msgstr "Web-Transaktionszeiten"
12727
+
12728
+ #: UsageStatistics_GeneralPage_View.php:78
12729
+ msgid "Webserver type generating access logs."
12730
+ msgstr "Webservertyp, der Zugriffsprotokolle generiert."
12731
+
12732
+ #: UsageStatistics_GeneralPage_View.php:72
12733
+ msgid "Webserver:"
12734
+ msgstr "Webserver:"
12735
+
12736
+ #: inc/options/minify/css.php:20
12737
+ msgid ""
12738
+ "Website visitors cannot navigate your website until a given page is ready - "
12739
+ "reduce the wait time with this feature."
12740
+ msgstr ""
12741
+ "Website-Besucher können nicht auf Ihrer Website navigieren, bis eine "
12742
+ "bestimmte Seite fertig ist – reduzieren Sie die Wartezeit mit dieser "
12743
+ "Funktion."
12744
+
12745
+ #: SetupGuide_Plugin_Admin.php:1044
12746
+ msgid "Welcome"
12747
+ msgstr "Herzlich willkommen"
12748
+
12749
+ #: SetupGuide_Plugin_Admin.php:1073
12750
+ msgid "Welcome to the W3 Total Cache Setup Guide!"
12751
+ msgstr "Willkommen beim W3 Total Cache Setup Guide!"
12752
+
12753
+ #: Minify_HelpPopup_View.php:29
12754
+ msgid "What is minification exactly?"
12755
+ msgstr "Was genau ist Minifizierung?"
12756
+
12757
+ #: SetupGuide_Plugin_Admin.php:1348
12758
+ msgid "What's Next?"
12759
+ msgstr "Was kommt als nächstes?"
12760
+
12761
+ #. translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
12762
+ #: inc/options/cdn.php:463
12763
+ msgid ""
12764
+ "When %1$sSSL%2$s pages are returned no %3$sCDN%4$s %5$sURL%6$ss will appear "
12765
+ "in HTML pages."
12766
+ msgstr ""
12767
+ "Wenn %1$sSSL%2$s Seiten zurückgegeben werden, erscheinen keine %3$sCDN%4$s "
12768
+ "%5$sURL%6$ss in HTML-Seiten."
12769
+
12770
+ #: inc/options/parts/memcached.php:60
12771
+ msgid ""
12772
+ "When Amazon ElastiCache used, specify configuration endpoint as Memcached "
12773
+ "host"
12774
+ msgstr ""
12775
+ "Geben Sie bei Verwendung von Amazon ElastiCache den Konfigurationsendpunkt "
12776
+ "als Memcached-Host an"
12777
+
12778
+ #: inc/options/parts/memcached_extension.php:50
12779
+ msgid ""
12780
+ "When Amazon ElastiCache used, specify configuration endpoint as Memecached "
12781
+ "host"
12782
+ msgstr ""
12783
+ "Geben Sie bei Verwendung von Amazon ElastiCache den Konfigurationsendpunkt "
12784
+ "als Memecached-Host an"
12785
+
12786
+ #: Extension_CloudFlare_Page_View.php:565
12787
+ msgid ""
12788
+ "When enabled, Always Online will serve pages from our cache if your server "
12789
+ "is offline"
12790
+ msgstr ""
12791
+ "Wenn aktiviert, stellt Always Online Seiten aus unserem Cache bereit, wenn "
12792
+ "Ihr Server offline ist"
12793
+
12794
+ #: Extension_CloudFlare_Page_View.php:505
12795
+ msgid ""
12796
+ "When enabled, the Hotlink Protection option ensures that other sites cannot "
12797
+ "suck up your bandwidth by building pages that use images hosted on your site."
12798
+ msgstr ""
12799
+ "Wenn diese Option aktiviert ist, stellt die Option Hotlink-Schutz sicher, "
12800
+ "dass andere Websites Ihre Bandbreite nicht aufsaugen können, indem Seiten "
12801
+ "erstellt werden, die auf Ihrer Website gehostete Bilder verwenden."
12802
+
12803
+ #: inc/options/browsercache.php:184 inc/options/browsercache.php:458
12804
+ #: inc/options/browsercache.php:687
12805
+ msgid ""
12806
+ "Whenever settings are changed, a new query string will be generated and "
12807
+ "appended to objects allowing the new policy to be applied."
12808
+ msgstr ""
12809
+ "Immer wenn Einstellungen geändert werden, wird eine neue Abfragezeichenfolge "
12810
+ "generiert und an Objekte angehängt, sodass die neue Richtlinie angewendet "
12811
+ "werden kann."
12812
+
12813
+ #: UsageStatistics_GeneralPage_View.php:86
12814
+ msgid "Where your access log is located."
12815
+ msgstr "Wo sich Ihr Zugriffsprotokoll befindet."
12816
+
12817
+ #: inc/options/minify/ccjs2.php:9 inc/options/minify/googleccjs2.php:9
12818
+ msgid "Whitespace only"
12819
+ msgstr "Nur Leerzeichen"
12820
+
12821
+ #: inc/options/about.php:241
12822
+ msgid "Who do I thank for all of this?"
12823
+ msgstr "Wem danke ich für all das?"
12824
+
12825
+ #: Extension_CloudFlare_Page_View.php:110
12826
+ msgid "Widget statistics interval:"
12827
+ msgstr "Widget-Statistikintervall:"
12828
+
12829
+ #. translators: 1 HTML strong tag containing new zone boolean value.
12830
+ #: Cdnfsd_MaxCdn_Popup.php:180
12831
+ msgid "will be set to %1$s"
12832
+ msgstr "wird auf %1$s gesetzt"
12833
+
12834
+ #: inc/options/minify.php:66
12835
+ msgid "wizard."
12836
+ msgstr "Magier."
12837
+
12838
+ #: SetupGuide_Plugin_Admin.php:1195
12839
+ msgid ""
12840
+ "WordPress caches objects used to build pages, but does not reuse them for "
12841
+ "future page requests."
12842
+ msgstr ""
12843
+ "WordPress speichert Objekte, die zum Erstellen von Seiten verwendet werden, "
12844
+ "verwendet sie jedoch nicht für zukünftige Seitenanforderungen."
12845
+
12846
+ #: inc/lightbox/self_test.php:441
12847
+ msgid "WordPress Resources"
12848
+ msgstr "WordPress-Ressourcen"
12849
+
12850
+ #: Extension_ImageService_Api.php:166 Extension_ImageService_Api.php:270
12851
+ #: Extension_ImageService_Api.php:308
12852
+ msgid "WP Error: "
12853
+ msgstr "WP-Fehler:"
12854
+
12855
+ #: Cdn_Plugin.php:536 DbCache_WpdbInjection_QueryCaching.php:857
12856
+ msgid "wp-admin"
12857
+ msgstr "wp-admin"
12858
+
12859
+ #: Cdn_ConfigLabels.php:27
12860
+ msgid "wp-includes file types to upload:"
12861
+ msgstr "wp-includes Dateitypen zum Hochladen:"
12862
+
12863
+ #: Extension_Swarmify_Plugin.php:109
12864
+ msgid "WP_ADMIN page"
12865
+ msgstr "WP_ADMIN-Seite"
12866
+
12867
+ #: inc/lightbox/self_test.php:509
12868
+ msgid "WP_CACHE define:"
12869
+ msgstr "WP_CACHE definieren:"
12870
+
12871
+ #: Minify_ConfigLabels.php:71
12872
+ msgid "Wrap after:"
12873
+ msgstr "Wickeln nach:"
12874
+
12875
+ #: inc/lightbox/self_test.php:467
12876
+ msgid "Write-able"
12877
+ msgstr "Beschreibbar"
12878
+
12879
+ #: BrowserCache_ConfigLabels.php:49
12880
+ msgid "X-<acronym title=\"Cross-Site Scripting\">XSS</acronym>-Protection"
12881
+ msgstr "X- <acronym title=\"Cross-Site-Scripting\">XSS</acronym> -Schutz"
12882
+
12883
+ #: BrowserCache_ConfigLabels.php:51
12884
+ msgid "X-Content-Type-Options"
12885
+ msgstr "X-Content-Type-Optionen"
12886
+
12887
+ #: BrowserCache_ConfigLabels.php:47
12888
+ msgid "X-Frame-Options"
12889
+ msgstr "X-Frame-Optionen"
12890
+
12891
+ #: DbCache_WpdbInjection_QueryCaching.php:855
12892
+ msgid "XMLRPC request"
12893
+ msgstr "XMLRPC-Anfrage"
12894
+
12895
+ #: Extension_NewRelic_Plugin.php:122
12896
+ msgid "XSL not tracked"
12897
+ msgstr "XSL nicht verfolgt"
12898
+
12899
+ #: PgCache_ConfigLabels.php:35
12900
+ msgid "Yearly archive pages"
12901
+ msgstr "Jahresarchivseiten"
12902
+
12903
+ #: BrowserCache_Page_View_SectionSecurity.php:522
12904
+ msgid "Yes = Don't Enforce HPKP"
12905
+ msgstr "Ja = HPKP nicht erzwingen"
12906
+
12907
+ #: Generic_Environment.php:101 ObjectCache_Environment.php:137
12908
+ msgid "Yes, remove it for me"
12909
+ msgstr "Ja, entferne es für mich"
12910
+
12911
+ #: inc/lightbox/support_us.php:115
12912
+ msgid "Yes, sign me up."
12913
+ msgstr "Ja, melde mich an."
12914
+
12915
+ #: inc/options/cdn.php:866
12916
+ msgid ""
12917
+ "You can use placeholders {wp_content_dir}, {plugins_dir}, {uploads_dir} "
12918
+ "instead of writing folder paths (wp-content, wp-content/plugins, wp-"
12919
+ "content/uploads)."
12920
+ msgstr ""
12921
+ "Du kannst die Platzhalter {wp_content_dir}, {plugins_dir}, {uploads_dir} "
12922
+ "verwenden, anstatt Ordnerpfade zu schreiben (wp-content, wp-content/plugins, "
12923
+ "wp-content/uploads)."
12924
+
12925
+ #: Generic_AdminActions_Default.php:228
12926
+ msgid "You do not have the rights to perform this action."
12927
+ msgstr "Sie sind nicht berechtigt, diese Aktion auszuführen."
12928
+
12929
+ #: Extension_NewRelic_Widget_View_NotConfigured.php:8
12930
+ msgid "You have not configured API key and Account Id."
12931
+ msgstr "Sie haben den API-Schlüssel und die Konto-ID nicht konfiguriert."
12932
+
12933
+ #: Extension_CloudFlare_Widget_View.php:9
12934
+ msgid "You have not configured well email, API token / global key or domain"
12935
+ msgstr ""
12936
+ "Sie haben E-Mail, API-Token / globalen Schlüssel oder Domäne nicht richtig "
12937
+ "konfiguriert"
12938
+
12939
+ #: SetupGuide_Plugin_Admin.php:1077
12940
+ msgid ""
12941
+ "You have selected the Performance Suite that professionals have consistently "
12942
+ "ranked #1 for options and speed improvements."
12943
+ msgstr ""
12944
+ "Sie haben sich für die Performance Suite entschieden, die Profis immer "
12945
+ "wieder auf Platz 1 für Optionen und Geschwindigkeitsverbesserungen rangieren."
12946
+
12947
+ #: Cdn_AdminNotes.php:253
12948
+ msgid "You need to select / create a pull zone."
12949
+ msgstr "Sie müssen eine Pull-Zone auswählen/erstellen."
12950
+
12951
+ #. translators: 1: Hourly request limit.
12952
+ #: Extension_ImageService_Api.php:200
12953
+ msgid "You reached your hourly limit of %1$d; try again later%2$s."
12954
+ msgstr ""
12955
+ "Sie haben Ihr Stundenlimit von %1$d erreicht; versuche es später noch "
12956
+ "einmal%2$s."
12957
+
12958
+ #. translators: 1: Monthly request limit, 2: HTML anchor open tag, 3: HTML anchor close tag.
12959
+ #: Extension_ImageService_Api.php:214
12960
+ msgid ""
12961
+ "You reached your monthly limit of %1$d; try again later or %2$supgrade to "
12962
+ "Pro%3$s for unlimited."
12963
+ msgstr ""
12964
+ "Sie haben Ihr monatliches Limit von %1$d erreicht; Versuchen Sie es später "
12965
+ "noch einmal oder %2$steigen Sie unbegrenzt auf Pro%3$s um."
12966
+
12967
+ #. translators: 1: HTML input button to hide message.
12968
+ #: Generic_AdminNotes.php:371
12969
+ msgid ""
12970
+ "You're running debug mode, it's using Resources and not recommend to run "
12971
+ "continuously. %1$s"
12972
+ msgstr ""
12973
+ "Sie führen den Debug-Modus aus, er verwendet Ressourcen und empfiehlt nicht, "
12974
+ "ihn kontinuierlich auszuführen. %1$s"
12975
+
12976
+ #. Translators: 1 opening HTML strong tag, 2 closing HTML strong tag.
12977
+ #: inc/options/parts/dashboard_banner.php:42
12978
+ msgid ""
12979
+ "You're using the Community Edition of W3 Total Cache. Maximize your "
12980
+ "website's speed even more by upgrading to %1$sW3 Total Cache Pro%2$s to "
12981
+ "unlock advanced anaytics, fragment caching, full site delivery, extension "
12982
+ "support and other tools that will allow you to completely fine tune your "
12983
+ "website's performance."
12984
+ msgstr ""
12985
+ "Sie verwenden die Community Edition von W3 Total Cache. Maximieren Sie die "
12986
+ "Geschwindigkeit Ihrer Website noch mehr, indem Sie auf %1$sW3 Total Cache "
12987
+ "Pro%2$s upgraden, um erweiterte Analysen, Fragment-Caching, vollständige "
12988
+ "Site-Bereitstellung, Erweiterungsunterstützung und andere Tools "
12989
+ "freizuschalten, mit denen Sie die Leistung Ihrer Website vollständig "
12990
+ "optimieren können."
12991
+
12992
+ #: Generic_WidgetCommunity_View.php:11
12993
+ msgid ""
12994
+ "You're using the Community Edition of W3 Total Cache. Maximize your "
12995
+ "website's speed even more by upgrading to %1$sW3 Total Cache Pro%2$s to "
12996
+ "unlock:"
12997
+ msgstr ""
12998
+ "Sie verwenden die Community Edition von W3 Total Cache. Maximieren Sie die "
12999
+ "Geschwindigkeit Ihrer Website noch mehr, indem Sie auf %1$sW3 Total Cache "
13000
+ "Pro%2$s upgraden, um Folgendes freizuschalten:"
13001
+
13002
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
13003
+ #: Cdnfsd_CloudFront_Popup_View_Intro.php:20
13004
+ msgid "Your %1$sAWS%2$s CloudFront Account Credentials"
13005
+ msgstr "Ihre %1$sAWS%2$s CloudFront-Konto-Anmeldeinformationen"
13006
+
13007
+ #: Extension_CloudFlare_Popup_View_Intro.php:16
13008
+ msgid "Your CloudFlare API token / global key"
13009
+ msgstr "Ihr CloudFlare-API-Token/globaler Schlüssel"
13010
+
13011
+ #: Cdn_Highwinds_Popup_View_Intro.php:15
13012
+ msgid "Your Highwinds API Token"
13013
+ msgstr "Ihr Highwinds-API-Token"
13014
+
13015
+ #: Cdnfsd_LimeLight_Popup_View_Intro.php:15
13016
+ #: Cdn_LimeLight_Popup_View_Intro.php:15
13017
+ msgid "Your LimeLight Account credentials"
13018
+ msgstr "Ihre Zugangsdaten für Ihr LimeLight-Konto"
13019
+
13020
+ #: Cdnfsd_MaxCdn_Popup_View_Intro.php:15 Cdn_MaxCdn_Popup_View_Intro.php:15
13021
+ msgid "Your MaxCDN Account credentials"
13022
+ msgstr "Ihre Anmeldeinformationen für das MaxCDN-Konto"
13023
+
13024
+ #: Cdn_RackSpaceCdn_Popup_View_Intro.php:16
13025
+ #: Cdn_RackSpaceCloudFiles_Popup_View_Intro.php:17
13026
+ msgid "Your RackSpace API key"
13027
+ msgstr "Ihr RackSpace-API-Schlüssel"
13028
+
13029
+ #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:41
13030
+ msgid "Your server's hostname or domain"
13031
+ msgstr "Der Hostname oder die Domäne Ihres Servers"
13032
+
13033
+ #: Cdnfsd_StackPath2_Popup_View_Intro.php:15
13034
+ #: Cdnfsd_StackPath_Popup_View_Intro.php:15
13035
+ #: Cdn_StackPath2_Popup_View_Intro.php:15 Cdn_StackPath_Popup_View_Intro.php:15
13036
+ msgid "Your StackPath Account credentials"
13037
+ msgstr "Ihre Anmeldeinformationen für das StackPath-Konto"
13038
+
13039
+ #: inc/options/about.php:239
13040
+ msgid ""
13041
+ "Your users have less data to download, you can now serve more visitors at "
13042
+ "once without upgrading your hardware and you don't have to change how you do "
13043
+ "anything; just set it and forget it."
13044
+ msgstr ""
13045
+ "Ihre Benutzer müssen weniger Daten herunterladen, Sie können jetzt mehr "
13046
+ "Besucher gleichzeitig bedienen, ohne Ihre Hardware zu aktualisieren, und Sie "
13047
+ "müssen Ihre Vorgehensweise nicht ändern. einfach einstellen und vergessen."
13048
+
13049
+ #. translators: 1: HTML emphesis open tag, 2: HTML emphesis close tag.
13050
+ #: SetupGuide_Plugin_Admin.php:1352
13051
+ msgid ""
13052
+ "Your website's performance can still be improved by configuring "
13053
+ "%1$sminify%2$s settings, setting up a %1$sCDN%2$s, and more!"
13054
+ msgstr ""
13055
+ "Die Leistung Ihrer Website kann noch verbessert werden, indem Sie "
13056
+ "%1$sminify%2$s-Einstellungen konfigurieren, ein %1$sCDN%2$s einrichten und "
13057
+ "vieles mehr!"
13058
+
13059
+ #: inc/options/general.php:298 inc/options/general.php:313
13060
+ msgid "YUI Compressor"
13061
+ msgstr "YUI-Kompressor"
13062
+
13063
+ #: inc/options/general.php:312
13064
+ msgid "YUI Compressor (PHP)"
13065
+ msgstr "YUI-Kompressor (PHP)"
13066
+
13067
+ #: inc/lightbox/self_test.php:301
13068
+ msgid "zlib output compression:"
13069
+ msgstr "Komprimierung der zlib-Ausgabe:"
13070
+
13071
+ #: Extension_CloudFlare_Page_View.php:77
13072
+ #: Extension_CloudFlare_Popup_View_Zones.php:35
13073
+ msgid "Zone:"
13074
+ msgstr "Zone:"
13075
+
13076
+ #: inc/options/cdn/cotendo.php:23
13077
+ msgid "Zones to purge:"
13078
+ msgstr "Zu löschende Zonen:"
languages/w3-total-cache-en_US.mo ADDED
Binary file
languages/w3-total-cache-en_US.po ADDED
@@ -0,0 +1,18156 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # This file was generated by WPML
2
+ # WPML is a WordPress plugin that can turn any WordPress or WordPressMU site into a full featured multilingual content management system.
3
+ # https://wpml.org
4
+ msgid ""
5
+ msgstr ""
6
+ "Content-Type: text/plain; charset=utf-8\n"
7
+ "Content-Transfer-Encoding: 8bit\n"
8
+ "Project-Id-Version: WPML_EXPORT\n"
9
+ "POT-Creation-Date: \n"
10
+ "PO-Revision-Date: 2022-11-14 17:37+0000\n"
11
+ "Last-Translator: \n"
12
+ "Language-Team: English (United States)\n"
13
+ "Language: en-US\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
16
+ "X-Generator: Loco https://localise.biz/"
17
+
18
+ # translators: 1 HTML line break tag, 2 opening HTML b tag, 3 closing HTML b tag.
19
+ # __(
20
+ # ' %1$s%2$sNot supported by "Disk: Enhanced" page cache method for Nginx%3$s',
21
+ #. translators: 1 HTML line break tag, 2 opening HTML b tag, 3 closing HTML b tag.
22
+ #: inc/options/minify.php:840
23
+ msgid ""
24
+ " %1$s%2$sNot supported by \"Disk: Enhanced\" page cache method for Nginx%3$s"
25
+ msgstr ""
26
+
27
+ # translators: 1 HTML line break tag followed by opening HTML b tag, 2 closing HTML b tag.
28
+ # __(
29
+ # ' %1$sNot supported by "Disk: Enhanced" page cache method for Nginx%2$s',
30
+ #. translators: 1 HTML line break tag followed by opening HTML b tag, 2 closing HTML b tag.
31
+ #: inc/options/minify.php:571
32
+ msgid ""
33
+ " %1$sNot supported by \"Disk: Enhanced\" page cache method for Nginx%2$s"
34
+ msgstr ""
35
+
36
+ # 'disabled' => ! Util_Installed::memcached_memcached() || ! $is_pro,
37
+ # 'label' => esc_html__( 'Nginx + Memcached', 'w3-total-cache' ) . ( $is_pro ? '' : esc_html__( ' (available after upgrade)', 'w3-total-cache' ) ),
38
+ # 'optgroup' => 2,
39
+ #: inc/options/general.php:159
40
+ msgid " (available after upgrade)"
41
+ msgstr ""
42
+
43
+ # if ( $error ) {
44
+ # $errors['cdn_not_configured'] = __( 'A configuration issue prevents <acronym title="Content Delivery Network">CDN</acronym> from working: ', 'w3-total-cache' ) . $error . __( ' <a href="?page=w3tc_cdn#configuration">Specify it here</a>.', 'w3-total-cache' );
45
+ # }
46
+ #: Cdn_AdminNotes.php:275
47
+ msgid " <a href=\"?page=w3tc_cdn#configuration\">Specify it here</a>."
48
+ msgstr ""
49
+
50
+ # $error = sprintf( __( 'The <strong>%s</strong> field(s) cannot be empty.', 'w3-total-cache' ),
51
+ # implode( __( ' and ', 'w3-total-cache' ), $fields ) );
52
+ # }
53
+ #: Cdn_AdminNotes.php:246 Generic_AdminNotes.php:259
54
+ msgid " and "
55
+ msgstr ""
56
+
57
+ # 'pgcache.remove_charset' => __( 'Disable <acronym title="Unicode Transformation Format">UTF</acronym>-8 blog charset support' , 'w3-total-cache' ),
58
+ # 'pgcache.reject.request_head' => __( ' Disable caching of HEAD <acronym title="Hypertext Transfer Protocol">HTTP</acronym> requests', 'w3-total-cache' ),
59
+ # 'pgcache.lifetime' => __( 'Maximum lifetime of cache objects:', 'w3-total-cache' ),
60
+ #: PgCache_ConfigLabels.php:42
61
+ msgid ""
62
+ " Disable caching of HEAD <acronym title=\"Hypertext Transfer Protocol\">"
63
+ "HTTP</acronym> requests"
64
+ msgstr ""
65
+
66
+ # <?php esc_html_e( 'CDN', 'w3-total-cache' ); ?>
67
+ # </acronym><?php esc_html_e( ' Domain:', 'w3-total-cache' ); ?>
68
+ # </th>
69
+ #: Cdnfsd_StackPath_Popup_View_Zone.php:44
70
+ msgid " Domain:"
71
+ msgstr ""
72
+
73
+ # <div class="ustats_pagecache_request_time_ms">
74
+ # <?php esc_html_e( 'Avg processing time: ', 'w3-total-cache' ); ?><span></span><?php esc_html_e( ' ms', 'w3-total-cache' ); ?>
75
+ # </div>
76
+ #: UsageStatistics_Page_View.php:53 UsageStatistics_Page_View.php:274
77
+ #: UsageStatistics_Page_View.php:333
78
+ msgid " ms"
79
+ msgstr ""
80
+
81
+ # <?php esc_html_e( 'In the best case, the usage of minify optimization is a trial and error process, it\'s', 'w3-total-cache' ); ?>
82
+ # <em><?php esc_html_e( ' not ', 'w3-total-cache' ); ?></em>
83
+ # <?php esc_html_e( 'an "instant on" or "set it and forget it" optimization technique.', 'w3-total-cache' ); ?>
84
+ #: Minify_HelpPopup_View.php:15
85
+ msgid " not "
86
+ msgstr ""
87
+
88
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
89
+ # __(
90
+ # ' objects from the %1$sCDN%2$s if needed.',
91
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
92
+ #: inc/options/cdn.php:91
93
+ msgid " objects from the %1$sCDN%2$s if needed."
94
+ msgstr ""
95
+
96
+ # <input type="submit" name="w3tc_flush_objectcache" value="<?php esc_attr_e( 'empty cache', 'w3-total-cache' ); ?>"
97
+ # <?php echo ! $objectcache_enabled ? ' disabled="disabled"' : ''; ?> class="button" /><?php esc_html_e( ' operation.', 'w3-total-cache' ); ?>
98
+ # </p>
99
+ #: inc/options/objectcache.php:47
100
+ msgid " operation."
101
+ msgstr ""
102
+
103
+ #
104
+ # $actions[] = __( ' or ', 'w3-total-cache' ) . '<input id="flush_all_except_cf" class="button" type="submit"
105
+ # name="w3tc_cloudflare_flush_all_except_cf" value="' . __( 'empty all caches except CloudFlare', 'w3-total-cache' ) . '"' .
106
+ #: Extension_CloudFlare_Plugin_Admin.php:300
107
+ msgid " or "
108
+ msgstr ""
109
+
110
+ # translators: 1: Hourly request limit, 2: HTML anchor open tag, 3: HTML anchor close tag.
111
+ # esc_html__( ' or %1$supgrade to Pro%2$s for higher limits', 'w3-total-cache' ),
112
+ # '<a href="#" class="button-buy-plugin" data-src="imageservice_api_limit">',
113
+ #. translators: 1: Hourly request limit, 2: HTML anchor open tag, 3: HTML anchor close tag.
114
+ #: Extension_ImageService_Api.php:205
115
+ msgid " or %1$supgrade to Pro%2$s for higher limits"
116
+ msgstr ""
117
+
118
+ # <?php esc_html_e( 'CDN', 'w3-total-cache' ); ?>
119
+ # </acronym><?php esc_html_e( ' will handle', 'w3-total-cache' ); ?>
120
+ # </p>
121
+ #: Cdnfsd_StackPath_Popup_View_Zone.php:52
122
+ msgid " will handle"
123
+ msgstr ""
124
+
125
+ # translators: 1 absolute path to wp-config.php, 2 cookie domain definition, 3 require once wp-setting.php definition.
126
+ # __(
127
+ # '%1$s could not be written, please edit config and add: %2$s before %3$s.',
128
+ #. translators: 1 absolute path to wp-config.php, 2 cookie domain definition, 3 require once wp-setting.php definition.
129
+ #: Generic_Plugin_Admin.php:761
130
+ msgid ""
131
+ "%1$s could not be written, please edit config and add: %2$s before %3$s."
132
+ msgstr ""
133
+
134
+ # translators: 1 absolute path to wp-config.php, 2 cooke domain definition, 3 require once wp-setting.php definition.
135
+ # __(
136
+ # '%1$s could not be written, please edit config and add:%2$s before %3$s.',
137
+ #. translators: 1 absolute path to wp-config.php, 2 cooke domain definition, 3 require once wp-setting.php definition.
138
+ #: Generic_Plugin_Admin.php:771
139
+ msgid "%1$s could not be written, please edit config and add:%2$s before %3$s."
140
+ msgstr ""
141
+
142
+ # translators: 3: conversion of file permissions from base 10 to 8, 4: HTML input button for hiding message.
143
+ # __(
144
+ # '%1$s is write-able. When finished installing the plugin, change the permissions back to the default: %2$s. Permissions are currently %3$s. %4$s',
145
+ #. translators: 3: conversion of file permissions from base 10 to 8, 4: HTML input button for hiding message.
146
+ #: Generic_AdminNotes.php:37
147
+ msgid ""
148
+ "%1$s is write-able. When finished installing the plugin, change the "
149
+ "permissions back to the default: %2$s. Permissions are currently %3$s. %4$s"
150
+ msgstr ""
151
+
152
+ # translators: HTML input submit for updating media query string.
153
+ # __(
154
+ # '%1$s to make existing file modifications visible to visitors with a primed cache',
155
+ #. translators: HTML input submit for updating media query string.
156
+ #: inc/options/browsercache.php:55
157
+ msgid ""
158
+ "%1$s to make existing file modifications visible to visitors with a primed "
159
+ "cache"
160
+ msgstr ""
161
+
162
+ # translators: %1 HTML input submit.
163
+ # __(
164
+ # '%1$s to make existing file modifications visible to visitors with a primed cache.',
165
+ #. translators: %1 HTML input submit.
166
+ #: inc/options/minify.php:72
167
+ msgid ""
168
+ "%1$s to make existing file modifications visible to visitors with a primed "
169
+ "cache."
170
+ msgstr ""
171
+
172
+ # translators: 1 HTML acronym for CDN (content delivery network).
173
+ # __(
174
+ # '%1$s was successfully purged.',
175
+ #. translators: 1 HTML acronym for CDN (content delivery network).
176
+ #: Generic_Plugin_Admin.php:797
177
+ msgid "%1$s was successfully purged."
178
+ msgstr ""
179
+
180
+ # translators: 8 closing HTML p tag followed by closing HTML div tag.
181
+ # __(
182
+ # '%1$s%2$sW3 Total Cache Error:%3$s Files and directories could not be automatically removed to complete the deactivation. %4$sPlease execute commands manually:%5$s%6$s%7$s%8$s',
183
+ #. translators: 8 closing HTML p tag followed by closing HTML div tag.
184
+ #: Root_AdminActivation.php:104
185
+ msgid ""
186
+ "%1$s%2$sW3 Total Cache Error:%3$s Files and directories could not be "
187
+ "automatically removed to complete the deactivation. %4$sPlease execute "
188
+ "commands manually:%5$s%6$s%7$s%8$s"
189
+ msgstr ""
190
+
191
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
192
+ # __(
193
+ # '%1$sAPI%2$s key:',
194
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
195
+ #: Cdn_RackSpaceCdn_Popup_View_Intro.php:31
196
+ #: Cdn_RackSpaceCloudFiles_Popup_View_Intro.php:32
197
+ #: Extension_NewRelic_GeneralPage_View.php:51
198
+ #: Extension_NewRelic_Popup_View_Intro.php:25 inc/options/cdn/rscf.php:22
199
+ msgid "%1$sAPI%2$s key:"
200
+ msgstr ""
201
+
202
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
203
+ # __(
204
+ # '%1$sAPI%2$s token / global key:',
205
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
206
+ #: Extension_CloudFlare_Popup_View_Intro.php:32
207
+ msgid "%1$sAPI%2$s token / global key:"
208
+ msgstr ""
209
+
210
+ # translators: 1 HTML line break, 2 opening HTML acronym tag, 3 closing HTML acronym tag.
211
+ # __(
212
+ # '%1$sAvailable when memcached extension installed, built with %2$sSASL%3$s',
213
+ #. translators: 1 HTML line break, 2 opening HTML acronym tag, 3 closing HTML acronym tag.
214
+ #: inc/options/parts/memcached.php:102
215
+ msgid ""
216
+ "%1$sAvailable when memcached extension installed, built with %2$sSASL%3$s"
217
+ msgstr ""
218
+
219
+ # translators: 1: HTML strong open tag, 2: HTML strong close tag, 3: Label.
220
+ # esc_html__(
221
+ # '%1$sBrowser Cache%2$s headers set for JavaScript, CSS, and images? %1$s%3$s%2$s',
222
+ #. translators: 1: HTML strong open tag, 2: HTML strong close tag, 3: Label.
223
+ #: SetupGuide_Plugin_Admin.php:1330
224
+ msgid ""
225
+ "%1$sBrowser Cache%2$s headers set for JavaScript, CSS, and images? "
226
+ "%1$s%3$s%2$s"
227
+ msgstr ""
228
+
229
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
230
+ # __(
231
+ # '%1$sCDN%2$s',
232
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
233
+ #. translators: 1 opening HTML abbr tag, 2 closing HTML abbr tag.
234
+ #: Cdn_GeneralPage_View.php:12 inc/options/common/header.php:96
235
+ msgid "%1$sCDN%2$s"
236
+ msgstr ""
237
+
238
+ # translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
239
+ # __(
240
+ # '%1$sCDN%2$s %3$sCNAME%4$s:',
241
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
242
+ #: Cdnfsd_CloudFront_Page_View.php:42 Cdnfsd_MaxCdn_Page_View.php:45
243
+ #: Cdnfsd_StackPath2_Page_View.php:52 Cdnfsd_StackPath_Page_View.php:46
244
+ msgid "%1$sCDN%2$s %3$sCNAME%4$s:"
245
+ msgstr ""
246
+
247
+ # translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
248
+ # __(
249
+ # '%1$sCDN%2$s %3$sHTTP%4$s %5$sCNAME%6$s:',
250
+ #. translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
251
+ #: Cdn_MaxCdn_Page_View.php:52 Cdn_StackPath2_Page_View.php:79
252
+ #: Cdn_StackPath_Page_View.php:50
253
+ msgid "%1$sCDN%2$s %3$sHTTP%4$s %5$sCNAME%6$s:"
254
+ msgstr ""
255
+
256
+ # translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
257
+ # __(
258
+ # '%1$sCDN%2$s %3$sHTTP%4$sS %5$sCNAME%6$s:',
259
+ #. translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
260
+ #: Cdn_MaxCdn_Page_View.php:110
261
+ msgid "%1$sCDN%2$s %3$sHTTP%4$sS %5$sCNAME%6$s:"
262
+ msgstr ""
263
+
264
+ # translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
265
+ # __(
266
+ # '%1$sCDN%2$s %3$sHTTPS%4$s %5$sCNAME%6$s:',
267
+ #. translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
268
+ #: Cdn_StackPath2_Page_View.php:141 Cdn_StackPath_Page_View.php:90
269
+ msgid "%1$sCDN%2$s %3$sHTTPS%4$s %5$sCNAME%6$s:"
270
+ msgstr ""
271
+
272
+ # translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
273
+ # __(
274
+ # '%1$sCDN%2$s host (%3$sCNAME%4$s target):',
275
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
276
+ #: Cdn_RackSpaceCdn_Page_View.php:49 Cdn_RackSpaceCloudFiles_Page_View.php:48
277
+ msgid "%1$sCDN%2$s host (%3$sCNAME%4$s target):"
278
+ msgstr ""
279
+
280
+ # translators: 3 closing HTML p tag followed by closing HTML div tag.
281
+ # __(
282
+ # '%1$sCloudFlare plugin detected. We recommend removing the plugin as it offers no additional capabilities when W3 Total Cache is installed. This message will disappear when CloudFlare is removed. %2$s%3$s',
283
+ #. translators: 3 closing HTML p tag followed by closing HTML div tag.
284
+ #: Extension_CloudFlare_Plugin_Admin.php:137
285
+ msgid ""
286
+ "%1$sCloudFlare plugin detected. We recommend removing the plugin as it "
287
+ "offers no additional capabilities when W3 Total Cache is installed. This "
288
+ "message will disappear when CloudFlare is removed. %2$s%3$s"
289
+ msgstr ""
290
+
291
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
292
+ # __(
293
+ # '%1$sCNAME%2$ss to use',
294
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
295
+ #: Cdn_Highwinds_Popup_View_ConfigureCnamesForm.php:20
296
+ #: Cdn_RackSpaceCdn_Popup_View_ConfigureDomains.php:20
297
+ msgid "%1$sCNAME%2$ss to use"
298
+ msgstr ""
299
+
300
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
301
+ # __(
302
+ # '%1$sCSS%2$s',
303
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
304
+ #: inc/options/common/header.php:248 inc/options/minify.php:591
305
+ msgid "%1$sCSS%2$s"
306
+ msgstr ""
307
+
308
+ # translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
309
+ # __(
310
+ # '%1$sCSS%2$s &amp; %3$sJS%4$s',
311
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
312
+ #: inc/options/browsercache.php:357 inc/options/common/header.php:302
313
+ msgid "%1$sCSS%2$s &amp; %3$sJS%4$s"
314
+ msgstr ""
315
+
316
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
317
+ # __(
318
+ # '%1$sCSS%2$s file management:',
319
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
320
+ #: inc/options/minify.php:703
321
+ msgid "%1$sCSS%2$s file management:"
322
+ msgstr ""
323
+
324
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
325
+ # __(
326
+ # '%1$sCSS%2$s minify settings:',
327
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
328
+ #: inc/options/minify.php:610
329
+ msgid "%1$sCSS%2$s minify settings:"
330
+ msgstr ""
331
+
332
+ # translators: 3 closing HTML p tag.
333
+ # __(
334
+ # '%1$scurrently set to %2$s%3$s',
335
+ #. translators: 3 closing HTML p tag.
336
+ #: Cdnfsd_MaxCdn_Popup.php:228
337
+ msgid "%1$scurrently set to %2$s%3$s"
338
+ msgstr ""
339
+
340
+ # translators: 1: HTML strong open tag, 2: HTML strong close tag, 3: Label.
341
+ # esc_html__(
342
+ # '%1$sDatabase Cache%2$s engine set to %1$s%3$s%2$s',
343
+ #. translators: 1: HTML strong open tag, 2: HTML strong close tag, 3: Label.
344
+ #: SetupGuide_Plugin_Admin.php:1308
345
+ msgid "%1$sDatabase Cache%2$s engine set to %1$s%3$s%2$s"
346
+ msgstr ""
347
+
348
+ # translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
349
+ # __(
350
+ # '%1$sFSD%2$s %3$sCDN%4$s Type:',
351
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
352
+ #: Cdnfsd_GeneralPage_View.php:105
353
+ msgid "%1$sFSD%2$s %3$sCDN%4$s Type:"
354
+ msgstr ""
355
+
356
+ # translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
357
+ # __(
358
+ # '%1$sFSD%2$s %3$sCDN%4$s:',
359
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
360
+ #: Cdnfsd_GeneralPage_View.php:57
361
+ msgid "%1$sFSD%2$s %3$sCDN%4$s:"
362
+ msgstr ""
363
+
364
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
365
+ # __(
366
+ # '%1$sFTP%2$s connection:',
367
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
368
+ #: inc/options/cdn/ftp.php:66
369
+ msgid "%1$sFTP%2$s connection:"
370
+ msgstr ""
371
+
372
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
373
+ # __(
374
+ # '%1$sFTP%2$s hostname:',
375
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
376
+ #: inc/options/cdn/ftp.php:38
377
+ msgid "%1$sFTP%2$s hostname:"
378
+ msgstr ""
379
+
380
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
381
+ # __(
382
+ # '%1$sFTP%2$s password:',
383
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
384
+ #: inc/options/cdn/ftp.php:125
385
+ msgid "%1$sFTP%2$s password:"
386
+ msgstr ""
387
+
388
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
389
+ # __(
390
+ # '%1$sFTP%2$s path:',
391
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
392
+ #: inc/options/cdn/ftp.php:153
393
+ msgid "%1$sFTP%2$s path:"
394
+ msgstr ""
395
+
396
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
397
+ # __(
398
+ # '%1$sFTP%2$s username:',
399
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
400
+ #: inc/options/cdn/ftp.php:97
401
+ msgid "%1$sFTP%2$s username:"
402
+ msgstr ""
403
+
404
+ # translators: 1 opening HTML a tag to Google Maps Easy plugin, 2 closing HTML a tag.
405
+ # __(
406
+ # '%1$sGoogle Maps Easy%2$s plugin',
407
+ #. translators: 1 opening HTML a tag to Google Maps Easy plugin, 2 closing HTML a tag.
408
+ #: UserExperience_LazyLoad_Page_View.php:159
409
+ msgid "%1$sGoogle Maps Easy%2$s plugin"
410
+ msgstr ""
411
+
412
+ # translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
413
+ # __(
414
+ # '%1$sHTML%2$s &amp; %3$sXML%4$s',
415
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
416
+ #: inc/options/browsercache.php:503 inc/options/common/header.php:206
417
+ #: inc/options/common/header.php:325 inc/options/minify.php:165
418
+ msgid "%1$sHTML%2$s &amp; %3$sXML%4$s"
419
+ msgstr ""
420
+
421
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
422
+ # __(
423
+ # '%1$sHTML%2$s minify settings:',
424
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
425
+ #: inc/options/minify.php:191
426
+ msgid "%1$sHTML%2$s minify settings:"
427
+ msgstr ""
428
+
429
+ # translators: 5 opening HTML acronym tag, 6 closing HTML acornym tag.
430
+ # __(
431
+ # '%1$sHTTP%2$s Public Key Pinning (%3$sHPKP%4$s) is a security feature for %5$sHTTP%6$sS websites that can prevent fraudulently issued certificates from being used to impersonate existing secure websites.',
432
+ #. translators: 5 opening HTML acronym tag, 6 closing HTML acornym tag.
433
+ #: BrowserCache_Page_View_SectionSecurity.php:375
434
+ msgid ""
435
+ "%1$sHTTP%2$s Public Key Pinning (%3$sHPKP%4$s) is a security feature for "
436
+ "%5$sHTTP%6$sS websites that can prevent fraudulently issued certificates "
437
+ "from being used to impersonate existing secure websites."
438
+ msgstr ""
439
+
440
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
441
+ # __(
442
+ # '%1$sHTTP%2$s security headers provide another layer of protection for your website by helping to mitigate attacks and security vulnerabilities.',
443
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
444
+ #: BrowserCache_Page_View_SectionSecurity.php:170
445
+ msgid ""
446
+ "%1$sHTTP%2$s security headers provide another layer of protection for your "
447
+ "website by helping to mitigate attacks and security vulnerabilities."
448
+ msgstr ""
449
+
450
+ # translators: 11 opening HTML acronym tag, 12 closing HTML acornym tag.
451
+ # __(
452
+ # '%1$sHTTP%2$s Strict-Transport-Security (%3$sHSTS%4$s) enforces secure (%5$sHTTP%6$s over %7$sSSL%8$s/%9$sTLS%10$s) connections to the server. This can help mitigate adverse effects caused by bugs and session leaks through cookies and links. It also helps defend against man-in-the-middle attacks. If there are %11$sSSL%12$s negotiation warnings then users will not be permitted to ignore them.',
453
+ #. translators: 11 opening HTML acronym tag, 12 closing HTML acornym tag.
454
+ #: BrowserCache_Page_View_SectionSecurity.php:246
455
+ msgid ""
456
+ "%1$sHTTP%2$s Strict-Transport-Security (%3$sHSTS%4$s) enforces secure "
457
+ "(%5$sHTTP%6$s over %7$sSSL%8$s/%9$sTLS%10$s) connections to the server. This "
458
+ "can help mitigate adverse effects caused by bugs and session leaks through "
459
+ "cookies and links. It also helps defend against man-in-the-middle attacks. "
460
+ "If there are %11$sSSL%12$s negotiation warnings then users will not be "
461
+ "permitted to ignore them."
462
+ msgstr ""
463
+
464
+ # translators: 1 opening HTML span with background, 2 closing HTML span tag, 3 HTML line break tag.
465
+ # __(
466
+ # '%1$sInstalled/Ok/Yes/True/On%2$s: Functionality will work properly.%3$s',
467
+ #. translators: 1 opening HTML span with background, 2 closing HTML span tag, 3 HTML line break tag.
468
+ #: inc/lightbox/self_test.php:18
469
+ msgid "%1$sInstalled/Ok/Yes/True/On%2$s: Functionality will work properly.%3$s"
470
+ msgstr ""
471
+
472
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
473
+ # __(
474
+ # '%1$sIP%2$s geolocation:',
475
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
476
+ #: Extension_CloudFlare_Page_View.php:639
477
+ msgid "%1$sIP%2$s geolocation:"
478
+ msgstr ""
479
+
480
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
481
+ # __(
482
+ # '%1$sJS%2$s',
483
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
484
+ #: inc/options/common/header.php:228 inc/options/minify.php:259
485
+ msgid "%1$sJS%2$s"
486
+ msgstr ""
487
+
488
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
489
+ # __(
490
+ # '%1$sJS%2$s file management:',
491
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
492
+ #: inc/options/minify.php:440
493
+ msgid "%1$sJS%2$s file management:"
494
+ msgstr ""
495
+
496
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
497
+ # __(
498
+ # '%1$sJS%2$s minify settings:',
499
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
500
+ #: inc/options/minify.php:277
501
+ msgid "%1$sJS%2$s minify settings:"
502
+ msgstr ""
503
+
504
+ # translators: 1: HTML strong open tag, 2: HTML strong close tag, 3: Label.
505
+ # esc_html__(
506
+ # '%1$sLazy Load%2$s images? %1$s%3$s%2$s',
507
+ #. translators: 1: HTML strong open tag, 2: HTML strong close tag, 3: Label.
508
+ #: SetupGuide_Plugin_Admin.php:1340
509
+ msgid "%1$sLazy Load%2$s images? %1$s%3$s%2$s"
510
+ msgstr ""
511
+
512
+ # translators: 1: HTML achor open tag, 2: HTML anchor close tag.
513
+ # __( '%1$sLearn more%2$s.', 'w3-total-cache' ),
514
+ # '<a target="_blank" href="' . esc_url(
515
+ #. translators: 1: HTML achor open tag, 2: HTML anchor close tag.
516
+ #: Extension_ImageService_Plugin_Admin.php:948
517
+ #: Extension_ImageService_Plugin_Admin.php:1154
518
+ msgid "%1$sLearn more%2$s."
519
+ msgstr ""
520
+
521
+ # translators: 1 opening HTML span with background, 2 closing HTML span tag, 3 HTML line break tag.
522
+ # __(
523
+ # '%1$sNot detected/Not available/Off%2$s: May be installed, but cannot be automatically confirmed. Functionality may be limited.%3$s',
524
+ #. translators: 1 opening HTML span with background, 2 closing HTML span tag, 3 HTML line break tag.
525
+ #: inc/lightbox/self_test.php:36
526
+ msgid ""
527
+ "%1$sNot detected/Not available/Off%2$s: May be installed, but cannot be "
528
+ "automatically confirmed. Functionality may be limited.%3$s"
529
+ msgstr ""
530
+
531
+ # translators: 1 opening HTML span with background, 2 closing HTML span tag, 3 HTML line break tag.
532
+ # __(
533
+ # '%1$sNot installed/Error/No/False%2$s: Plugin or some functions may not work.%3$s',
534
+ #. translators: 1 opening HTML span with background, 2 closing HTML span tag, 3 HTML line break tag.
535
+ #: inc/lightbox/self_test.php:54
536
+ msgid ""
537
+ "%1$sNot installed/Error/No/False%2$s: Plugin or some functions may not work."
538
+ "%3$s"
539
+ msgstr ""
540
+
541
+ # translators: 1: HTML strong open tag, 2: HTML strong close tag, 3: Label.
542
+ # esc_html__(
543
+ # '%1$sObject Cache%2$s engine set to %1$s%3$s%2$s',
544
+ #. translators: 1: HTML strong open tag, 2: HTML strong close tag, 3: Label.
545
+ #: SetupGuide_Plugin_Admin.php:1319
546
+ msgid "%1$sObject Cache%2$s engine set to %1$s%3$s%2$s"
547
+ msgstr ""
548
+
549
+ # translators: 3 opening HTML a tag to W3TC DatabaseCache admin page, 4 closing HTML a tag.
550
+ # __(
551
+ # '%1$sOptional:%2$s On the "%3$sDatabase Cache%4$s" tab the recommended settings are preset. If using a shared hosting account use the "disk" method with caution; in either of these cases the response time of the disk may not be fast enough, so this option is disabled by default.',
552
+ #. translators: 3 opening HTML a tag to W3TC DatabaseCache admin page, 4 closing HTML a tag.
553
+ #: inc/options/install.php:177
554
+ msgid ""
555
+ "%1$sOptional:%2$s On the \"%3$sDatabase Cache%4$s\" tab the recommended "
556
+ "settings are preset. If using a shared hosting account use the \"disk\" "
557
+ "method with caution; in either of these cases the response time of the disk "
558
+ "may not be fast enough, so this option is disabled by default."
559
+ msgstr ""
560
+
561
+ # translators: 3 opening HTML a tag to W3TC ObjectCache admin page, 4 closing HTML a tag.
562
+ # __(
563
+ # '%1$sOptional:%2$s On the "%3$sObject Cache%4$s" tab the recommended settings are preset. If using a shared hosting account use the "disk" method with caution, the response time of the disk may not be fast enough, so this option is disabled by default. Test this option with and without database cache to ensure that it provides a performance increase.',
564
+ #. translators: 3 opening HTML a tag to W3TC ObjectCache admin page, 4 closing HTML a tag.
565
+ #: inc/options/install.php:201
566
+ msgid ""
567
+ "%1$sOptional:%2$s On the \"%3$sObject Cache%4$s\" tab the recommended "
568
+ "settings are preset. If using a shared hosting account use the \"disk\" "
569
+ "method with caution, the response time of the disk may not be fast enough, "
570
+ "so this option is disabled by default. Test this option with and without "
571
+ "database cache to ensure that it provides a performance increase."
572
+ msgstr ""
573
+
574
+ # translators: 3 opening HTML a tag to W3TC Cache Groups admin page, 4 closing HTML a tag.
575
+ # __(
576
+ # '%1$sOptional:%2$s On the "%3$sUser Agent Groups%4$s" tab, specify any user agents, like mobile phones if a mobile theme is used.',
577
+ #. translators: 3 opening HTML a tag to W3TC Cache Groups admin page, 4 closing HTML a tag.
578
+ #: inc/options/install.php:225
579
+ msgid ""
580
+ "%1$sOptional:%2$s On the \"%3$sUser Agent Groups%4$s\" tab, specify any user "
581
+ "agents, like mobile phones if a mobile theme is used."
582
+ msgstr ""
583
+
584
+ # translators: 1: HTML strong open tag, 2: HTML strong close tag, 3: Label.
585
+ # esc_html__(
586
+ # '%1$sPage Cache%2$s engine set to %1$s%3$s%2$s',
587
+ #. translators: 1: HTML strong open tag, 2: HTML strong close tag, 3: Label.
588
+ #: SetupGuide_Plugin_Admin.php:1286
589
+ msgid "%1$sPage Cache%2$s engine set to %1$s%3$s%2$s"
590
+ msgstr ""
591
+
592
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
593
+ # __(
594
+ # '%1$sPHP%2$s Modules',
595
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
596
+ #: inc/options/common/header.php:377 inc/options/install.php:306
597
+ msgid "%1$sPHP%2$s Modules"
598
+ msgstr ""
599
+
600
+ # translators: 13 opening HTML acronym tag, 14 closing HTML acronym tag.
601
+ # __(
602
+ # '%1$sRecommended:%2$s If you already have a content delivery network (%3$sCDN%4$s) provider, proceed to the "%5$sContent Delivery Network%6$s" tab and populate the fields and set your preferences. If you do not use the Media Library, you will need to import your images etc into the default locations. Use the Media Library Import Tool on the "Content Delivery Network" tab to perform this task. If you do not have a %7$sCDN%8$s provider, you can still improve your site\'s performance using the "Self-hosted" method. On your own server, create a subdomain and matching %9$sDNS%10$s Zone record; e.g. static.domain.com and configure %11$sFTP%12$s options on the "Content Delivery Network" tab accordingly. Be sure to %13$sFTP%14$s upload the appropriate files, using the available upload buttons.',
603
+ #. translators: 13 opening HTML acronym tag, 14 closing HTML acronym tag.
604
+ #: inc/options/install.php:140
605
+ msgid ""
606
+ "%1$sRecommended:%2$s If you already have a content delivery network "
607
+ "(%3$sCDN%4$s) provider, proceed to the \"%5$sContent Delivery Network%6$s\" "
608
+ "tab and populate the fields and set your preferences. If you do not use the "
609
+ "Media Library, you will need to import your images etc into the default "
610
+ "locations. Use the Media Library Import Tool on the \"Content Delivery "
611
+ "Network\" tab to perform this task. If you do not have a %7$sCDN%8$s "
612
+ "provider, you can still improve your site's performance using the \"Self-"
613
+ "hosted\" method. On your own server, create a subdomain and matching "
614
+ "%9$sDNS%10$s Zone record; e.g. static.domain.com and configure %11$sFTP%12$s "
615
+ "options on the \"Content Delivery Network\" tab accordingly. Be sure to "
616
+ "%13$sFTP%14$s upload the appropriate files, using the available upload "
617
+ "buttons."
618
+ msgstr ""
619
+
620
+ # translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
621
+ # __(
622
+ # '%1$sRecommended:%2$s On the "%3$sBrowser Cache%4$s" tab, %5$sHTTP%6$s compression is enabled by default. Make sure to enable other options to suit your goals.',
623
+ #. translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
624
+ #: inc/options/install.php:106
625
+ msgid ""
626
+ "%1$sRecommended:%2$s On the \"%3$sBrowser Cache%4$s\" tab, %5$sHTTP%6$s "
627
+ "compression is enabled by default. Make sure to enable other options to suit "
628
+ "your goals."
629
+ msgstr ""
630
+
631
+ # translators: 13 closing HTML acronym tag, 14 closing HTML a tag.
632
+ # __(
633
+ # '%1$sRecommended:%2$s On the "%3$sMinify%4$s" tab all of the recommended settings are preset. Use the help button to simplify discovery of your %5$sCSS%6$s and %7$sJS%8$s files and groups. Pay close attention to the method and location of your %9$sJS%10$s group embeddings. See the plugin\'s %11$s%12$sFAQ%13$s%14$s for more information on usage.',
634
+ #. translators: 13 closing HTML acronym tag, 14 closing HTML a tag.
635
+ #: inc/options/install.php:68
636
+ msgid ""
637
+ "%1$sRecommended:%2$s On the \"%3$sMinify%4$s\" tab all of the recommended "
638
+ "settings are preset. Use the help button to simplify discovery of your "
639
+ "%5$sCSS%6$s and %7$sJS%8$s files and groups. Pay close attention to the "
640
+ "method and location of your %9$sJS%10$s group embeddings. See the plugin's "
641
+ "%11$s%12$sFAQ%13$s%14$s for more information on usage."
642
+ msgstr ""
643
+
644
+ # translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
645
+ # __(
646
+ # '%1$sREST%2$s %3$sAPI%4$s',
647
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
648
+ #: inc/options/pgcache.php:418
649
+ msgid "%1$sREST%2$s %3$sAPI%4$s"
650
+ msgstr ""
651
+
652
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
653
+ # __(
654
+ # '%1$sRUM%2$s ApDex Threshold:',
655
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
656
+ #: Extension_NewRelic_Page_View_Apm.php:74
657
+ msgid "%1$sRUM%2$s ApDex Threshold:"
658
+ msgstr ""
659
+
660
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
661
+ # __(
662
+ # '%1$sRUM%2$s enabled:',
663
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
664
+ #: Extension_NewRelic_Page_View_Apm.php:103
665
+ msgid "%1$sRUM%2$s enabled:"
666
+ msgstr ""
667
+
668
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
669
+ # __(
670
+ # '%1$sSFTP%2$s private key:',
671
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
672
+ #: inc/options/cdn/ftp.php:288
673
+ msgid "%1$sSFTP%2$s private key:"
674
+ msgstr ""
675
+
676
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
677
+ # __(
678
+ # '%1$sSFTP%2$s public key:',
679
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
680
+ #: inc/options/cdn/ftp.php:260
681
+ msgid "%1$sSFTP%2$s public key:"
682
+ msgstr ""
683
+
684
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
685
+ # __(
686
+ # '%1$sSSL%2$s encrypts your visitor\'s connection and safeguards credit card numbers and other personal data to and from your website.',
687
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
688
+ #: Extension_CloudFlare_Page_View.php:741
689
+ msgid ""
690
+ "%1$sSSL%2$s encrypts your visitor's connection and safeguards credit card "
691
+ "numbers and other personal data to and from your website."
692
+ msgstr ""
693
+
694
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
695
+ # __(
696
+ # '%1$sSSL%2$s support:',
697
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
698
+ #: Cdn_Highwinds_Page_View.php:60 Cdn_LimeLight_Page_View.php:31
699
+ #: Cdn_MaxCdn_Page_View.php:168 Cdn_RackSpaceCloudFiles_Page_View.php:78
700
+ #: Cdn_StackPath2_Page_View.php:200 Cdn_StackPath_Page_View.php:127
701
+ #: inc/options/cdn/akamai.php:55 inc/options/cdn/att.php:29
702
+ #: inc/options/cdn/azure.php:38 inc/options/cdn/cf.php:85
703
+ #: inc/options/cdn/cf2.php:77 inc/options/cdn/cotendo.php:36
704
+ #: inc/options/cdn/edgecast.php:29 inc/options/cdn/ftp.php:182
705
+ #: inc/options/cdn/mirror.php:15 inc/options/cdn/rscf.php:72
706
+ #: inc/options/cdn/s3.php:91 inc/options/cdn/s3_compatible.php:67
707
+ msgid "%1$sSSL%2$s support:"
708
+ msgstr ""
709
+
710
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
711
+ # __(
712
+ # '%1$sSSL%2$s:',
713
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
714
+ #: Extension_CloudFlare_Page_View.php:718
715
+ msgid "%1$sSSL%2$s:"
716
+ msgstr ""
717
+
718
+ # translators: 3: closing HTML p tag.
719
+ # __(
720
+ # '%1$sThe following memcached servers are not responding or not running:%2$sThis message will automatically disappear once the issue is resolved.%3$s',
721
+ #. translators: 3: closing HTML p tag.
722
+ #: Generic_AdminNotes.php:464
723
+ msgid ""
724
+ "%1$sThe following memcached servers are not responding or not running:"
725
+ "%2$sThis message will automatically disappear once the issue is resolved.%3$s"
726
+ msgstr ""
727
+
728
+ # translators: 3 HTML strong tag indicating W3TC version, 4 closing HTML p tag.
729
+ # __(
730
+ # '%1$sThe plugin is currently %2$s in %3$s mode.%4$s',
731
+ #. translators: 3 HTML strong tag indicating W3TC version, 4 closing HTML p tag.
732
+ #: inc/options/dashboard.php:22
733
+ msgid "%1$sThe plugin is currently %2$s in %3$s mode.%4$s"
734
+ msgstr ""
735
+
736
+ # translators: 1: HTML break, 2: WordPress version string, 3: HTML archor open tag, 4: HTML archor close tag.
737
+ # __(
738
+ # '%1$sThis extension works best in WordPress version 5.8 and higher. You are running WordPress version %2$s. Please %3$supdate now%4$s to benefit from this feature.',
739
+ #. translators: 1: HTML break, 2: WordPress version string, 3: HTML archor open tag, 4: HTML archor close tag.
740
+ #: Extension_ImageService_Plugin_Admin.php:87
741
+ msgid ""
742
+ "%1$sThis extension works best in WordPress version 5.8 and higher. You are "
743
+ "running WordPress version %2$s. Please %3$supdate now%4$s to benefit from "
744
+ "this feature."
745
+ msgstr ""
746
+
747
+ # translators: 1: HTML p open tag, 2: WordPress version string, 3: HTML anchor open tag, 4: HTML anchor close tag, 5: HTML p close tag.
748
+ # __(
749
+ # '%1$sThis feature works best in WordPress version 5.8 and higher. You are running WordPress version %2$s. Please %3$supdate now%4$s to benefit from this feature.%5$s',
750
+ #. translators: 1: HTML p open tag, 2: WordPress version string, 3: HTML anchor open tag, 4: HTML anchor close tag, 5: HTML p close tag.
751
+ #: FeatureShowcase_Plugin_Admin.php:225
752
+ msgid ""
753
+ "%1$sThis feature works best in WordPress version 5.8 and higher. You are "
754
+ "running WordPress version %2$s. Please %3$supdate now%4$s to benefit from "
755
+ "this feature.%5$s"
756
+ msgstr ""
757
+
758
+ # translators: 1: HTML strong open tag, 2: HTML strong close tag.
759
+ # esc_html__(
760
+ # '%1$sTime to First Byte%2$s has changed by %1$s%3$s%2$s',
761
+ #. translators: 1: HTML strong open tag, 2: HTML strong close tag.
762
+ #: SetupGuide_Plugin_Admin.php:1297
763
+ msgid "%1$sTime to First Byte%2$s has changed by %1$s%3$s%2$s"
764
+ msgstr ""
765
+
766
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
767
+ # __(
768
+ # '%1$sTLS%2$s 1.2 only:',
769
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
770
+ #: Extension_CloudFlare_Page_View.php:801
771
+ msgid "%1$sTLS%2$s 1.2 only:"
772
+ msgstr ""
773
+
774
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
775
+ # __(
776
+ # '%1$sTLS%2$s Client authentication requires CloudFlare to connect to your origin server using a client certificate',
777
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
778
+ #: Extension_CloudFlare_Page_View.php:840
779
+ msgid ""
780
+ "%1$sTLS%2$s Client authentication requires CloudFlare to connect to your "
781
+ "origin server using a client certificate"
782
+ msgstr ""
783
+
784
+ # translators: 1 HTML line break.
785
+ # __(
786
+ # '%1$sTo enable that, switch off "Use single network configuration file for all sites" option at General settings page and use specific settings for each blog.',
787
+ #. translators: 1 HTML line break.
788
+ #: inc/options/cdn.php:162
789
+ msgid ""
790
+ "%1$sTo enable that, switch off \"Use single network configuration file for "
791
+ "all sites\" option at General settings page and use specific settings for "
792
+ "each blog."
793
+ msgstr ""
794
+
795
+ # translators: 1 opening HTML span tag, 2 closing HTML span tag.
796
+ # __(
797
+ # '%1$sUpgrade Performance%2$s',
798
+ #. translators: 1 opening HTML span tag, 2 closing HTML span tag.
799
+ #: Licensing_Plugin_Admin.php:37
800
+ msgid "%1$sUpgrade Performance%2$s"
801
+ msgstr ""
802
+
803
+ # translators: 1 opening HTML strong tag, 2 closing HTML strong tag, 3 database driver file path.
804
+ # __(
805
+ # '%1$sW3 Total Cache Error:%2$s database driver doesn\'t exist: %3$s.',
806
+ #. translators: 1 opening HTML strong tag, 2 closing HTML strong tag, 3 database driver file path.
807
+ #: wp-content/db.php:67
808
+ msgid "%1$sW3 Total Cache Error:%2$s database driver doesn't exist: %3$s."
809
+ msgstr ""
810
+
811
+ # translators: 4 file path, 5 closing HTML strong tag, 6 HTML line break.
812
+ # __(
813
+ # '%1$sW3 Total Cache Error:%2$s some files appear to be missing or out of place. Please re-install plugin or remove %3$s%4$s%5$s. %6$s',
814
+ #. translators: 4 file path, 5 closing HTML strong tag, 6 HTML line break.
815
+ #: wp-content/db.php:32
816
+ msgid ""
817
+ "%1$sW3 Total Cache Error:%2$s some files appear to be missing or out of "
818
+ "place. Please re-install plugin or remove %3$s%4$s%5$s. %6$s"
819
+ msgstr ""
820
+
821
+ # translators: 1 opening HTML a tag to WordPress Google Map Plugin, 2 closing HTML a tag.
822
+ # __(
823
+ # '%1$sWP Google Map Plugin%2$s plugin',
824
+ #. translators: 1 opening HTML a tag to WordPress Google Map Plugin, 2 closing HTML a tag.
825
+ #: UserExperience_LazyLoad_Page_View.php:128
826
+ msgid "%1$sWP Google Map Plugin%2$s plugin"
827
+ msgstr ""
828
+
829
+ # translators: 1 opening HTML a tag to WordPress Google Maps, 2 closing HTML a tag.
830
+ # __(
831
+ # '%1$sWP Google Maps%2$s plugin',
832
+ #. translators: 1 opening HTML a tag to WordPress Google Maps, 2 closing HTML a tag.
833
+ #: UserExperience_LazyLoad_Page_View.php:190
834
+ msgid "%1$sWP Google Maps%2$s plugin"
835
+ msgstr ""
836
+
837
+ # translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
838
+ # __(
839
+ # '%1CDN%2 host (%3$sCNAME%4$s target):',
840
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
841
+ #: Cdn_Highwinds_Page_View.php:31
842
+ msgid "%1CDN%2 host (%3$sCNAME%4$s target):"
843
+ msgstr ""
844
+
845
+ #
846
+ # self::_error( sprintf( __( '%s<br />then %s.', 'w3-total-cache' ), $e->getMessage(), $reactivate_button ) );
847
+ # }
848
+ #: Util_Activation.php:57
849
+ msgid "%s<br />then %s."
850
+ msgstr ""
851
+
852
+ #
853
+ # <div style="float: right"><a href="admin.php?page=w3tc_stats"><?php esc_html_e( '&lt; Back To Statistics', 'w3-total-cache' ); ?></a></div>
854
+ # <h1><?php esc_html_e( 'Database Queries', 'w3-total-cache' ); ?></h1>
855
+ #: UsageStatistics_Page_DbRequests_View.php:13
856
+ #: UsageStatistics_Page_ObjectCacheLog_View.php:13
857
+ #: UsageStatistics_Page_PageCacheRequests_View.php:13
858
+ msgid "&lt; Back To Statistics"
859
+ msgstr ""
860
+
861
+ # 'key' => array( 'swarmify', 'handle.htmlvideo' ),
862
+ # 'label' => esc_html__( '&lt;video&gt;:', 'w3-total-cache' ),
863
+ # 'control' => 'checkbox',
864
+ #: Extension_Swarmify_Page_View.php:50
865
+ msgid "&lt;video&gt;:"
866
+ msgstr ""
867
+
868
+ # translators: 1 opening HTML acornym tag, 2 closing HTML acronym tag.
869
+ # __(
870
+ # '(required for %1$sCDN%2$s support)',
871
+ #. translators: 1 opening HTML acornym tag, 2 closing HTML acronym tag.
872
+ #: inc/lightbox/self_test.php:243
873
+ msgid "(required for %1$sCDN%2$s support)"
874
+ msgstr ""
875
+
876
+ # <?php endif; ?>
877
+ # <span class="w3tc-self-test-hint"><?php esc_html_e( '(required for Amazon S3, Amazon CloudFront, Rackspace CloudFiles support)', 'w3-total-cache' ); ?></span>
878
+ # </li>
879
+ #: inc/lightbox/self_test.php:152
880
+ msgid ""
881
+ "(required for Amazon S3, Amazon CloudFront, Rackspace CloudFiles support)"
882
+ msgstr ""
883
+
884
+ # <?php endif; ?>
885
+ # <span class="w3tc-self-test-hint"><?php esc_html_e( '(required for brotli compression support)', 'w3-total-cache' ); ?></span>
886
+ # </li>
887
+ #: inc/lightbox/self_test.php:172
888
+ msgid "(required for brotli compression support)"
889
+ msgstr ""
890
+
891
+ # <?php endif; ?>
892
+ # <span class="w3tc-self-test-hint"><?php esc_html_e( '(required for disk enhanced Page Cache and Browser Cache)', 'w3-total-cache' ); ?></span>
893
+ # </li>
894
+ #: inc/lightbox/self_test.php:420
895
+ msgid "(required for disk enhanced Page Cache and Browser Cache)"
896
+ msgstr ""
897
+
898
+ # <?php endif; ?>
899
+ # <span class="w3tc-self-test-hint"><?php esc_html_e( '(required for gzip compression support)', 'w3-total-cache' ); ?></span>
900
+ # </li>
901
+ #: inc/lightbox/self_test.php:162
902
+ msgid "(required for gzip compression support)"
903
+ msgstr ""
904
+
905
+ # <?php endif; ?>
906
+ # <span class="w3tc-self-test-hint"><?php esc_html_e( '(required for HTML Tidy minifier support)', 'w3-total-cache' ); ?></span>
907
+ # </li>
908
+ #: inc/lightbox/self_test.php:226
909
+ msgid "(required for HTML Tidy minifier support)"
910
+ msgstr ""
911
+
912
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
913
+ # __(
914
+ # '(required for NetDNA / MaxCDN %1$sCDN%2$s purge support)',
915
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
916
+ #: inc/lightbox/self_test.php:274
917
+ msgid "(required for NetDNA / MaxCDN %1$sCDN%2$s purge support)"
918
+ msgstr ""
919
+
920
+ # <?php endif; ?>
921
+ # <span class="w3tc-self-test-hint"><?php esc_html_e( '(required for Rackspace Cloud Files support)', 'w3-total-cache' ); ?></span>
922
+ # </li>
923
+ #: inc/lightbox/self_test.php:142
924
+ msgid "(required for Rackspace Cloud Files support)"
925
+ msgstr ""
926
+
927
+ # translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
928
+ # __(
929
+ # '(required for Self-hosted (%1$sFTP%2$s) %3$sCDN%4$s %5$sSFTP%6$s support)',
930
+ #. translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
931
+ #: inc/lightbox/self_test.php:332
932
+ msgid ""
933
+ "(required for Self-hosted (%1$sFTP%2$s) %3$sCDN%4$s %5$sSFTP%6$s support)"
934
+ msgstr ""
935
+
936
+ # translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
937
+ # __(
938
+ # '(required for Self-hosted (%1$sFTP%2$s) %3$sCDN%4$s support)',
939
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
940
+ #: inc/lightbox/self_test.php:116
941
+ msgid "(required for Self-hosted (%1$sFTP%2$s) %3$sCDN%4$s support)"
942
+ msgstr ""
943
+
944
+ # if ( 0 === $index ) {
945
+ # $label = __( '(reserved for CSS)', 'w3-total-cache' );
946
+ # } elseif ( 1 === $index ) {
947
+ #: inc/options/cdn/common/cnames-readonly.php:18
948
+ #: inc/options/cdn/common/cnames.php:33
949
+ msgid "(reserved for CSS)"
950
+ msgstr ""
951
+
952
+ # } elseif ( 2 === $index ) {
953
+ # $label = __( '(reserved for JS after <body>)', 'w3-total-cache' );
954
+ # } elseif ( 3 === $index ) {
955
+ #: inc/options/cdn/common/cnames-readonly.php:22
956
+ #: inc/options/cdn/common/cnames.php:41
957
+ msgid "(reserved for JS after <body>)"
958
+ msgstr ""
959
+
960
+ # } elseif ( 3 === $index ) {
961
+ # $label = __( '(reserved for JS before </body>)', 'w3-total-cache' );
962
+ # } else {
963
+ #: inc/options/cdn/common/cnames-readonly.php:24
964
+ #: inc/options/cdn/common/cnames.php:45
965
+ msgid "(reserved for JS before </body>)"
966
+ msgstr ""
967
+
968
+ # } elseif ( 1 === $index ) {
969
+ # $label = __( '(reserved for JS in <head>)', 'w3-total-cache' );
970
+ # } elseif ( 2 === $index ) {
971
+ #: inc/options/cdn/common/cnames-readonly.php:20
972
+ #: inc/options/cdn/common/cnames.php:37
973
+ msgid "(reserved for JS in <head>)"
974
+ msgstr ""
975
+
976
+ # <?php disabled( $useragent_groups['disabled'] ); ?> >
977
+ # <option value=""><?php esc_html_e( '-- Pass-through --', 'w3-total-cache' ); ?></option>
978
+ # <?php foreach ( $useragent_themes as $theme_key => $theme_name ) : ?>
979
+ #: CacheGroups_Plugin_Admin_View.php:84 CacheGroups_Plugin_Admin_View.php:199
980
+ msgid "-- Pass-through --"
981
+ msgstr ""
982
+
983
+ # translators: 1 opening HTML a tag to W3TC PageCache admin page, 2 closing HTML a tag.
984
+ # __(
985
+ # '1. The "Compatibility Mode" option found in the advanced section of the %1$s"Page Cache Settings"%2$s tab will enable functionality that optimizes the interoperablity of caching with WordPress, is disabled by default, but highly recommended. Years of testing in hundreds of thousands of installations have helped us learn how to make caching behave well with WordPress. The tradeoff is that disk enhanced page cache performance under load tests will be decreased by ~20%% at scale.',
986
+ #. translators: 1 opening HTML a tag to W3TC PageCache admin page, 2 closing HTML a tag.
987
+ #: inc/options/install.php:42
988
+ msgid ""
989
+ "1. The \"Compatibility Mode\" option found in the advanced section of the "
990
+ "%1$s\"Page Cache Settings\"%2$s tab will enable functionality that optimizes "
991
+ "the interoperablity of caching with WordPress, is disabled by default, but "
992
+ "highly recommended. Years of testing in hundreds of thousands of "
993
+ "installations have helped us learn how to make caching behave well with "
994
+ "WordPress. The tradeoff is that disk enhanced page cache performance under "
995
+ "load tests will be decreased by ~20%% at scale."
996
+ msgstr ""
997
+
998
+ # 'browsercache.no404wp' => __( 'Do not process 404 errors for static objects with WordPress', 'w3-total-cache' ),
999
+ # 'browsercache.no404wp.exceptions' => __( '404 error exception list:', 'w3-total-cache' ),
1000
+ # 'browsercache.cssjs.last_modified' => __( 'Set Last-Modified header', 'w3-total-cache' ),
1001
+ #: BrowserCache_ConfigLabels.php:10
1002
+ msgid "404 error exception list:"
1003
+ msgstr ""
1004
+
1005
+ # 'cluster.messagebus.sns.region' => __( 'Amazon <acronym title="Simple Notification Service">SNS</acronym> region:', 'w3-total-cache' ),
1006
+ # 'cluster.messagebus.sns.api_key' => __( '<acronym title="Application Programming Interface">API</acronym> key:', 'w3-total-cache' ),
1007
+ # 'cluster.messagebus.sns.api_secret' => __( '<acronym title="Application Programming Interface">API</acronym> secret:', 'w3-total-cache' ),
1008
+ #: Generic_ConfigLabels.php:9
1009
+ msgid "<acronym title=\"Application Programming Interface\">API</acronym> key:"
1010
+ msgstr ""
1011
+
1012
+ # 'cluster.messagebus.sns.api_key' => __( '<acronym title="Application Programming Interface">API</acronym> key:', 'w3-total-cache' ),
1013
+ # 'cluster.messagebus.sns.api_secret' => __( '<acronym title="Application Programming Interface">API</acronym> secret:', 'w3-total-cache' ),
1014
+ # 'cluster.messagebus.sns.topic_arn' => __( 'Topic <acronym title="Identification">ID</acronym>:', 'w3-total-cache' ),
1015
+ #: Generic_ConfigLabels.php:10
1016
+ msgid ""
1017
+ "<acronym title=\"Application Programming Interface\">API</acronym> secret:"
1018
+ msgstr ""
1019
+
1020
+ # 'minify.js.engine' => __( '<acronym title="JavaScript">JS</acronym> minifier:', 'w3-total-cache' ),
1021
+ # 'minify.css.engine'=> __( '<acronym title="Cascading Style Sheets">CSS</acronym> minifier:', 'w3-total-cache' ),
1022
+ # 'minify.auto' => __( 'Minify mode:', 'w3-total-cache' ),
1023
+ #: Minify_ConfigLabels.php:12
1024
+ msgid "<acronym title=\"Cascading Style Sheets\">CSS</acronym> minifier:"
1025
+ msgstr ""
1026
+
1027
+ # 'cdn.engine' => __( '<acronym title="Content Delivery Network">CDN</acronym> Type:', 'w3-total-cache' ),
1028
+ # 'cdn.debug' => __( '<acronym title="Content Delivery Network">CDN</acronym>', 'w3-total-cache' ),
1029
+ # 'cdnfsd.debug' => __( '<acronym title="Full Site Delivery">FSD</acronym> <acronym title="Content Delivery Network">CDN</acronym>', 'w3-total-cache' ),
1030
+ #: Cdn_ConfigLabels.php:9
1031
+ msgid "<acronym title=\"Content Delivery Network\">CDN</acronym>"
1032
+ msgstr ""
1033
+
1034
+ # 'cdn.enabled' => __( '<acronym title="Content Delivery Network">CDN</acronym>:', 'w3-total-cache' ),
1035
+ # 'cdn.engine' => __( '<acronym title="Content Delivery Network">CDN</acronym> Type:', 'w3-total-cache' ),
1036
+ # 'cdn.debug' => __( '<acronym title="Content Delivery Network">CDN</acronym>', 'w3-total-cache' ),
1037
+ #: Cdn_ConfigLabels.php:8
1038
+ msgid "<acronym title=\"Content Delivery Network\">CDN</acronym> Type:"
1039
+ msgstr ""
1040
+
1041
+ # return array_merge( $config_labels, array(
1042
+ # 'cdn.enabled' => __( '<acronym title="Content Delivery Network">CDN</acronym>:', 'w3-total-cache' ),
1043
+ # 'cdn.engine' => __( '<acronym title="Content Delivery Network">CDN</acronym> Type:', 'w3-total-cache' ),
1044
+ #: Cdn_ConfigLabels.php:7
1045
+ msgid "<acronym title=\"Content Delivery Network\">CDN</acronym>:"
1046
+ msgstr ""
1047
+
1048
+ # 'cdn.debug' => __( '<acronym title="Content Delivery Network">CDN</acronym>', 'w3-total-cache' ),
1049
+ # 'cdnfsd.debug' => __( '<acronym title="Full Site Delivery">FSD</acronym> <acronym title="Content Delivery Network">CDN</acronym>', 'w3-total-cache' ),
1050
+ # 'cdn.uploads.enable' => __( 'Host attachments', 'w3-total-cache' ),
1051
+ #: Cdn_ConfigLabels.php:10
1052
+ msgid ""
1053
+ "<acronym title=\"Full Site Delivery\">FSD</acronym> <acronym title=\"Content "
1054
+ "Delivery Network\">CDN</acronym>"
1055
+ msgstr ""
1056
+
1057
+ # 'minify.debug' => __( 'Minify', 'w3-total-cache' ),
1058
+ # 'minify.html.engine' => __( '<acronym title="Hypertext Markup Language">HTML</acronym> minifier:', 'w3-total-cache' ),
1059
+ # 'minify.js.engine' => __( '<acronym title="JavaScript">JS</acronym> minifier:', 'w3-total-cache' ),
1060
+ #: Minify_ConfigLabels.php:10
1061
+ msgid "<acronym title=\"Hypertext Markup Language\">HTML</acronym> minifier:"
1062
+ msgstr ""
1063
+
1064
+ # 'browsercache.security.xcto' => __( 'X-Content-Type-Options', 'w3-total-cache' ),
1065
+ # 'browsercache.security.pkp' => __( '<acronym title="Hypertext Transfer Protocol">HTTP</acronym> Public Key Pinning', 'w3-total-cache' ),
1066
+ # 'browsercache.security.pkp.pin' => __( 'Public Key:', 'w3-total-cache' ),
1067
+ #: BrowserCache_ConfigLabels.php:52
1068
+ msgid ""
1069
+ "<acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> Public Key "
1070
+ "Pinning"
1071
+ msgstr ""
1072
+
1073
+ # 'browsercache.security.session.use_only_cookies' => __( 'Use cookies to store session IDs:', 'w3-total-cache' ),
1074
+ # 'browsercache.hsts' => __( '<acronym title="Hypertext Transfer Protocol">HTTP</acronym> Strict Transport Security policy', 'w3-total-cache' ),
1075
+ # 'browsercache.security.hsts.directive' => __( 'Directive:', 'w3-total-cache' ),
1076
+ #: BrowserCache_ConfigLabels.php:45
1077
+ msgid ""
1078
+ "<acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> Strict "
1079
+ "Transport Security policy"
1080
+ msgstr ""
1081
+
1082
+ # 'minify.html.engine' => __( '<acronym title="Hypertext Markup Language">HTML</acronym> minifier:', 'w3-total-cache' ),
1083
+ # 'minify.js.engine' => __( '<acronym title="JavaScript">JS</acronym> minifier:', 'w3-total-cache' ),
1084
+ # 'minify.css.engine'=> __( '<acronym title="Cascading Style Sheets">CSS</acronym> minifier:', 'w3-total-cache' ),
1085
+ #: Minify_ConfigLabels.php:11
1086
+ msgid "<acronym title=\"JavaScript\">JS</acronym> minifier:"
1087
+ msgstr ""
1088
+
1089
+ # ( Util_Installed::memcache_auth() ? '' :
1090
+ # __( '<br>Available when memcached extension installed, built with <acronym title="Simple Authentication and Security Layer">SASL</acronym>', 'w3-total-cache' )
1091
+ # ),
1092
+ #: inc/options/parts/memcached_extension.php:64
1093
+ msgid ""
1094
+ "<br>Available when memcached extension installed, built with <acronym "
1095
+ "title=\"Simple Authentication and Security Layer\">SASL</acronym>"
1096
+ msgstr ""
1097
+
1098
+ # foreach ( $chmod_dirs as $dir ) {
1099
+ # $chmods .= sprintf( __( '<li><strong style="color: #f00;">chmod 777 %s</strong></li>', 'w3-total-cache' ), $dir );
1100
+ # }
1101
+ #: Util_Activation.php:72
1102
+ msgid "<li><strong style=\"color: #f00;\">chmod 777 %s</strong></li>"
1103
+ msgstr ""
1104
+
1105
+ # if ( empty( $name ) ) {
1106
+ # \WP_CLI::error( __( '<name> parameter is not specified', 'w3-total-cache' ) );
1107
+ # return;
1108
+ #: Cli.php:219
1109
+ msgid "<name> parameter is not specified"
1110
+ msgstr ""
1111
+
1112
+ # } else {
1113
+ # \WP_CLI::error( __( '<operation> parameter is not specified', 'w3-total-cache' ) );
1114
+ # }
1115
+ #: Cli.php:295
1116
+ msgid "<operation> parameter is not specified"
1117
+ msgstr ""
1118
+
1119
+ # $error = sprintf(
1120
+ # __( '<strong>%s</strong> could not be created, <strong>open_basedir</strong> restriction in effect, please check your php.ini settings:<br /><strong style="color: #f00;">open_basedir = "%s"</strong>',
1121
+ # 'w3-total-cache' ),
1122
+ #: Util_Activation.php:85
1123
+ msgid ""
1124
+ "<strong>%s</strong> could not be created, <strong>open_basedir</strong> "
1125
+ "restriction in effect, please check your php.ini settings:<br /><strong "
1126
+ "style=\"color: #f00;\">open_basedir = \"%s\"</strong>"
1127
+ msgstr ""
1128
+
1129
+ # $error = sprintf(
1130
+ # __( '<strong>%s</strong> could not be created, please run following command:<br />%s',
1131
+ # 'w3-total-cache' ),
1132
+ #: Util_Activation.php:80
1133
+ msgid ""
1134
+ "<strong>%s</strong> could not be created, please run following command:<br />"
1135
+ "%s"
1136
+ msgstr ""
1137
+
1138
+ # </tr></table>',
1139
+ # __( '<strong>W3 Total Cache Error:</strong> Files and directories could not be automatically deleted.' , 'w3-total-cache' ),
1140
+ # __( 'Please execute commands manually' , 'w3-total-cache' ),
1141
+ #: Util_Activation.php:239
1142
+ msgid ""
1143
+ "<strong>W3 Total Cache Error:</strong> Files and directories could not be "
1144
+ "automatically deleted."
1145
+ msgstr ""
1146
+
1147
+ #: Cli.php:271
1148
+ msgid "<value> parameter "
1149
+ msgstr ""
1150
+
1151
+ # if ( count( $args ) <= 0 ) {
1152
+ # \WP_CLI::error( __( '<value> parameter is not specified', 'w3-total-cache' ) );
1153
+ # return;
1154
+ #: Cli.php:260
1155
+ msgid "<value> parameter is not specified"
1156
+ msgstr ""
1157
+
1158
+ # 'minify.css.enable' => __( 'Enable', 'w3-total-cache' ),
1159
+ # 'minify.css.imports' => __( '@import handling:', 'w3-total-cache' ),
1160
+ # 'minify.lifetime' => __( 'Update external files every:', 'w3-total-cache' ),
1161
+ #: Minify_ConfigLabels.php:30
1162
+ msgid "@import handling:"
1163
+ msgstr ""
1164
+
1165
+ # translators: 1 queue interval value.
1166
+ # __(
1167
+ # '[W3TC] CDN auto upload (every %1$d seconds)',
1168
+ #. translators: 1 queue interval value.
1169
+ #: Cdn_Plugin.php:287
1170
+ msgid "[W3TC] CDN auto upload (every %1$d seconds)"
1171
+ msgstr ""
1172
+
1173
+ # translators: 1 queue interval value.
1174
+ # __(
1175
+ # '[W3TC] CDN queue process (every %1$d seconds)',
1176
+ #. translators: 1 queue interval value.
1177
+ #: Cdn_Plugin.php:269
1178
+ msgid "[W3TC] CDN queue process (every %1$d seconds)"
1179
+ msgstr ""
1180
+
1181
+ # translators: 1 interval in seconds.
1182
+ # __( '[W3TC] Database Cache file GC (every %d seconds)', 'w3-total-cache' ),
1183
+ # $gc
1184
+ #. translators: 1 interval in seconds.
1185
+ #: DbCache_Plugin.php:99
1186
+ msgid "[W3TC] Database Cache file GC (every %d seconds)"
1187
+ msgstr ""
1188
+
1189
+ # translators: 1 interval in seconds.
1190
+ # __( '[W3TC] Object Cache file GC (every %d seconds)', 'w3-total-cache' ),
1191
+ # $gc
1192
+ #. translators: 1 interval in seconds.
1193
+ #: ObjectCache_Plugin.php:112
1194
+ msgid "[W3TC] Object Cache file GC (every %d seconds)"
1195
+ msgstr ""
1196
+
1197
+ # translators: 1 interval in seconds.
1198
+ # __( '[W3TC] Page Cache file GC (every %d seconds)', 'w3-total-cache' ),
1199
+ # $v
1200
+ #. translators: 1 interval in seconds.
1201
+ #: PgCache_Plugin.php:157
1202
+ msgid "[W3TC] Page Cache file GC (every %d seconds)"
1203
+ msgstr ""
1204
+
1205
+ # translators: 1 interval in seconds.
1206
+ # __( '[W3TC] Page Cache prime (every %d seconds)', 'w3-total-cache' ),
1207
+ # $v
1208
+ #. translators: 1 interval in seconds.
1209
+ #: PgCache_Plugin.php:170
1210
+ msgid "[W3TC] Page Cache prime (every %d seconds)"
1211
+ msgstr ""
1212
+
1213
+ # translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
1214
+ # __(
1215
+ # 'A %1$scompliant%2$s sitemap can be used to specify the pages to maintain in the primed cache. Pages will be cached according to the priorities specified in the %3$sXML%4$s file.',
1216
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
1217
+ #: inc/options/pgcache.php:272
1218
+ msgid ""
1219
+ "A %1$scompliant%2$s sitemap can be used to specify the pages to maintain in "
1220
+ "the primed cache. Pages will be cached according to the priorities specified "
1221
+ "in the %3$sXML%4$s file."
1222
+ msgstr ""
1223
+
1224
+ # <input id="referrer_groups_<?php echo esc_attr( $group ); ?>_redirect" type="text" name="referrer_groups[<?php echo esc_attr( $group ); ?>][redirect]" value="<?php echo esc_attr( $group_config['redirect'] ); ?>" size="60" />
1225
+ # <p class="description"><?php esc_html_e( 'A 302 redirect is used to send this group of referrers to another hostname (domain).', 'w3-total-cache' ); ?></p>
1226
+ # </td>
1227
+ #: CacheGroups_Plugin_Admin_View.php:213
1228
+ msgid ""
1229
+ "A 302 redirect is used to send this group of referrers to another hostname "
1230
+ "(domain)."
1231
+ msgstr ""
1232
+
1233
+ # size="60" />
1234
+ # <p class="description"><?php esc_html_e( 'A 302 redirect is used to send this group of users to another hostname (domain); recommended if a 3rd party service provides a mobile version of your site.', 'w3-total-cache' ); ?></p>
1235
+ # </td>
1236
+ #: CacheGroups_Plugin_Admin_View.php:104
1237
+ msgid ""
1238
+ "A 302 redirect is used to send this group of users to another hostname "
1239
+ "(domain); recommended if a 3rd party service provides a mobile version of "
1240
+ "your site."
1241
+ msgstr ""
1242
+
1243
+ # case ( $cdn_engine == 'ftp' && !count( $c->get_array( 'cdn.ftp.domain' ) ) ):
1244
+ # $errors['cdn_ftp_empty'] = __( 'A configuration issue prevents <acronym title="Content Delivery Network">CDN</acronym> from working:
1245
+ # The <strong>"Replace default hostname with"</strong>
1246
+ #: Cdn_AdminNotes.php:203
1247
+ msgid ""
1248
+ "A configuration issue prevents <acronym title=\"Content Delivery Network\">"
1249
+ "CDN</acronym> from working:\n"
1250
+ " The <strong>\"Replace default "
1251
+ "hostname with\"</strong>\n"
1252
+ " field cannot be empty. Enter "
1253
+ "<acronym\n"
1254
+ " title=\"Content Delivery Network\">"
1255
+ "CDN</acronym>\n"
1256
+ " provider hostname <a href=\"?"
1257
+ "page=w3tc_cdn#configuration\">here</a>.\n"
1258
+ " <em>(This is the hostname used in "
1259
+ "order to view objects\n"
1260
+ " in a browser.)</em>"
1261
+ msgstr ""
1262
+
1263
+ # if ( $error ) {
1264
+ # $errors['cdn_not_configured'] = __( 'A configuration issue prevents <acronym title="Content Delivery Network">CDN</acronym> from working: ', 'w3-total-cache' ) . $error . __( ' <a href="?page=w3tc_cdn#configuration">Specify it here</a>.', 'w3-total-cache' );
1265
+ # }
1266
+ #: Cdn_AdminNotes.php:275
1267
+ msgid ""
1268
+ "A configuration issue prevents <acronym title=\"Content Delivery Network\">"
1269
+ "CDN</acronym> from working: "
1270
+ msgstr ""
1271
+
1272
+ # translators: 3 opening HTML a tag to W3TC Browsercache admin page, 4 closing HTML a tag.
1273
+ # __(
1274
+ # 'A reverse proxy adds scale to an server by handling requests before WordPress does. Purge settings are set on the %1$sPage Cache settings%2$s page and %3$sBrowser Cache settings%4$s are set on the browser cache settings page.',
1275
+ #. translators: 3 opening HTML a tag to W3TC Browsercache admin page, 4 closing HTML a tag.
1276
+ #: inc/options/general.php:477
1277
+ msgid ""
1278
+ "A reverse proxy adds scale to an server by handling requests before "
1279
+ "WordPress does. Purge settings are set on the %1$sPage Cache settings%2$s "
1280
+ "page and %3$sBrowser Cache settings%4$s are set on the browser cache "
1281
+ "settings page."
1282
+ msgstr ""
1283
+
1284
+ # 'w3tc_about' => array(
1285
+ # 'page_title' => __( 'About', 'w3-total-cache' ),
1286
+ # 'menu_text' => __( 'About', 'w3-total-cache' ),
1287
+ #: Root_AdminMenu.php:131 Root_AdminMenu.php:132
1288
+ msgid "About"
1289
+ msgstr ""
1290
+
1291
+ # <p>
1292
+ # <input type="button" class="button" data-choice="accept" value="' . esc_html__( 'Accept', 'w3-total-cache' ) . '" /> &nbsp;
1293
+ # <input type="button" class="button" data-choice="decline" value="' . esc_html__( 'Decline', 'w3-total-cache' ) . '" />
1294
+ #: Licensing_Plugin_Admin.php:268 SetupGuide_Plugin_Admin.php:1109
1295
+ msgid "Accept"
1296
+ msgstr ""
1297
+
1298
+ # 'pgcache.comment_cookie_ttl' => __( 'Comment cookie lifetime:', 'w3-total-cache' ),
1299
+ # 'pgcache.accept.qs' => __( 'Accepted query strings:', 'w3-total-cache' ),
1300
+ # 'pgcache.reject.ua' => __( 'Rejected user agents:', 'w3-total-cache' ),
1301
+ #: PgCache_ConfigLabels.php:46
1302
+ msgid "Accepted query strings:"
1303
+ msgstr ""
1304
+
1305
+ # '</acronym>',
1306
+ # '<acronym title="' . esc_attr__( 'Access Control List', 'w3-total-cache' ) . '">',
1307
+ # '</acronym>'
1308
+ #: inc/options/general.php:517
1309
+ msgid "Access Control List"
1310
+ msgstr ""
1311
+
1312
+ # <tr>
1313
+ # <th style="width: 300px;"><label for="cdn_cf2_key"><?php esc_html_e( 'Access key ID:', 'w3-total-cache' ); ?></label></th>
1314
+ # <td>
1315
+ #: inc/options/cdn/cf.php:48 inc/options/cdn/cf2.php:48
1316
+ #: inc/options/cdn/s3.php:54 inc/options/cdn/s3_compatible.php:20
1317
+ msgid "Access key ID:"
1318
+ msgstr ""
1319
+
1320
+ # if ( empty( $this->access_key ) ) {
1321
+ # throw new \Exception( __( 'Access key not specified.', 'w3-total-cache' ) );
1322
+ # }
1323
+ #: CdnEngine_Mirror_LimeLight.php:94 Cdnfsd_CloudFront_Engine.php:83
1324
+ #: Cdnfsd_LimeLight_Engine.php:65
1325
+ msgid "Access key not specified."
1326
+ msgstr ""
1327
+
1328
+ # <tr>
1329
+ # <td><?php esc_html_e( 'Access Key:', 'w3-total-cache' ); ?></td>
1330
+ # <td>
1331
+ #: Cdnfsd_CloudFront_Popup_View_Intro.php:37
1332
+ msgid "Access Key:"
1333
+ msgstr ""
1334
+
1335
+ # 'key' => 'stats.access_log.filename',
1336
+ # 'label' => __( 'Access Log Filename:', 'w3-total-cache' ),
1337
+ # 'control' => 'textbox',
1338
+ #: UsageStatistics_GeneralPage_View.php:83
1339
+ msgid "Access Log Filename:"
1340
+ msgstr ""
1341
+
1342
+ # 'key' => 'stats.access_log.format',
1343
+ # 'label' => __( 'Access Log Format:', 'w3-total-cache' ),
1344
+ # 'control' => 'textbox',
1345
+ #: UsageStatistics_GeneralPage_View.php:93
1346
+ msgid "Access Log Format:"
1347
+ msgstr ""
1348
+
1349
+ # <div class="ustats_block_data">
1350
+ # <div class="ustats_header"><?php esc_html_e( 'Access Log:', 'w3-total-cache' ); ?></div>
1351
+ # <div class="ustats_access_log_dynamic_requests_total">
1352
+ #: UsageStatistics_Page_View.php:182
1353
+ msgid "Access Log:"
1354
+ msgstr ""
1355
+
1356
+ # <tr>
1357
+ # <td><?php esc_html_e( 'Access Secret:', 'w3-total-cache' ); ?></td>
1358
+ # <td>
1359
+ #: Cdnfsd_CloudFront_Popup_View_Intro.php:45
1360
+ msgid "Access Secret:"
1361
+ msgstr ""
1362
+
1363
+ # 'browsercache.other.nocookies' => __( 'Disable cookies for static files', 'w3-total-cache' ),
1364
+ # 'browsercache.security.session.cookie_httponly' => __( 'Access session cookies through the <acronym title="Hypertext Transfer Protocol">HTTP</acronym> only:', 'w3-total-cache' ),
1365
+ # 'browsercache.security.session.cookie_secure' => __( 'Send session cookies only to secure connections:', 'w3-total-cache' ),
1366
+ #: BrowserCache_ConfigLabels.php:42
1367
+ msgid ""
1368
+ "Access session cookies through the <acronym title=\"Hypertext Transfer "
1369
+ "Protocol\">HTTP</acronym> only:"
1370
+ msgstr ""
1371
+
1372
+ # ),
1373
+ # '<acronym title="' . esc_attr__( 'Access-Control-Allow-Origin', 'w3-total-cache' ) . '">',
1374
+ # '</acronym>'
1375
+ #: inc/options/cdn.php:521
1376
+ msgid "Access-Control-Allow-Origin"
1377
+ msgstr ""
1378
+
1379
+ # 'parent' => 'cloudflare',
1380
+ # 'title' => __( 'Account', 'w3-total-cache' ),
1381
+ # 'href' => 'https://www.cloudflare.com/my-account.html'
1382
+ #: Extension_CloudFlare_Plugin.php:169
1383
+ msgid "Account"
1384
+ msgstr ""
1385
+
1386
+ # <tr>
1387
+ # <th style="width: 300px;"><label for="cdn_edgecast_account"><?php esc_html_e( 'Account #:', 'w3-total-cache' ); ?></label></th>
1388
+ # <td>
1389
+ #: inc/options/cdn/att.php:9 inc/options/cdn/edgecast.php:9
1390
+ msgid "Account #:"
1391
+ msgstr ""
1392
+
1393
+ # if ( !$this->get_account_id() )
1394
+ # $error['account_id'] = __( 'Account ID is not configured.', 'w3-total-cache' );
1395
+ # if ( $this->get_effective_application_id() == 0 )
1396
+ #: Extension_NewRelic_Service.php:167
1397
+ msgid "Account ID is not configured."
1398
+ msgstr ""
1399
+
1400
+ # <tr>
1401
+ # <th><label for="cdn_azure_key"><?php esc_html_e( 'Account key:', 'w3-total-cache' ); ?></label></th>
1402
+ # <td>
1403
+ #: inc/options/cdn/azure.php:16
1404
+ msgid "Account key:"
1405
+ msgstr ""
1406
+
1407
+ # <tr>
1408
+ # <th style="width: 300px;"><label for="cdn_azure_user"><?php esc_html_e( 'Account name:', 'w3-total-cache' ); ?></label></th>
1409
+ # <td>
1410
+ #: inc/options/cdn/azure.php:9
1411
+ msgid "Account name:"
1412
+ msgstr ""
1413
+
1414
+ # <tr>
1415
+ # <td><?php esc_html_e( 'Account Short Name:', 'w3-total-cache' ); ?></td>
1416
+ # <td>
1417
+ #: Cdn_LimeLight_Popup_View_Intro.php:18
1418
+ msgid "Account Short Name:"
1419
+ msgstr ""
1420
+
1421
+ # ( is_network_admin() ? __( 'Available in sites', 'w3-total-cache' ) : __( 'Settings', 'w3-total-cache' ) ) :
1422
+ # ( is_network_admin() || ! is_multisite() ? __( 'Activate', 'w3-total-cache' ) : '' );
1423
+ # $imageservice_button_link = $is_imageservice_active ?
1424
+ #: FeatureShowcase_Plugin_Admin.php:210 inc/options/extensions/list.php:32
1425
+ #: inc/options/extensions/list.php:235
1426
+ msgid "Activate"
1427
+ msgstr ""
1428
+
1429
+ # <?php if ( ! $config->is_sealed( 'extensions.active' ) ) : ?>
1430
+ # <a href="<?php echo esc_url( wp_nonce_url( Util_Ui::admin_url( sprintf( 'admin.php?page=w3tc_extensions&action=activate&extension=%s&amp;extension_status=%s&amp;paged=%d', $extension, $extension_status, $page ) ), 'w3tc' ) ); ?>" title="<?php esc_attr_e( 'Activate this extension', 'w3-total-cache' ); ?> ">
1431
+ # <?php esc_html_e( 'Activate' ); ?>
1432
+ #: inc/options/extensions/list.php:139
1433
+ msgid "Activate this extension"
1434
+ msgstr ""
1435
+
1436
+ # $notes[$extension_id] = sprintf(
1437
+ # __( 'Activating the <a href="%s">Genesis Theme</a> extension for W3 Total Cache may be helpful for your site. <a href="%s">Click here</a> to try it. %s',
1438
+ # 'w3-total-cache' ),
1439
+ #: Extension_Genesis_Plugin_Admin.php:125
1440
+ msgid ""
1441
+ "Activating the <a href=\"%s\">Genesis Theme</a> extension for W3 Total Cache "
1442
+ "may be helpful for your site. <a href=\"%s\">Click here</a> to try it. %s"
1443
+ msgstr ""
1444
+
1445
+ # $notes[$extension_id] = sprintf(
1446
+ # __( 'Activating the <a href="%s">WPML</a> extension for W3 Total Cache may be helpful for your site. %s%s',
1447
+ # 'w3-total-cache' ),
1448
+ #: Extension_Wpml_Plugin_Admin.php:121
1449
+ msgid ""
1450
+ "Activating the <a href=\"%s\">WPML</a> extension for W3 Total Cache may be "
1451
+ "helpful for your site. %s%s"
1452
+ msgstr ""
1453
+
1454
+ # $notes[$extension_id] = sprintf(
1455
+ # __( 'Activating the <a href="%s">Yoast SEO</a> extension for W3 Total Cache may be helpful for your site. <a class="button" href="%s">Click here</a> to try it. %s',
1456
+ # 'w3-total-cache' ),
1457
+ #: Extension_WordPressSeo_Plugin_Admin.php:88
1458
+ msgid ""
1459
+ "Activating the <a href=\"%s\">Yoast SEO</a> extension for W3 Total Cache may "
1460
+ "be helpful for your site. <a class=\"button\" href=\"%s\">Click here</a> to "
1461
+ "try it. %s"
1462
+ msgstr ""
1463
+
1464
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1465
+ # __(
1466
+ # 'Add %1$sCORS%2$s headers to allow cross-domain assets usage.',
1467
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1468
+ #: inc/options/cdn.php:517
1469
+ msgid "Add %1$sCORS%2$s headers to allow cross-domain assets usage."
1470
+ msgstr ""
1471
+
1472
+ # </div>
1473
+ # <input id="js_file_add" class="js_enabled button" type="button" value="<?php esc_html_e( 'Add a script', 'w3-total-cache' ); ?>" />
1474
+ # </td>
1475
+ #: inc/options/minify.php:554
1476
+ msgid "Add a script"
1477
+ msgstr ""
1478
+
1479
+ # </div>
1480
+ # <input id="css_file_add" class="css_enabled button" type="button" value="<?php esc_html_e( 'Add a style sheet', 'w3-total-cache' ); ?>" />
1481
+ # </td>
1482
+ #: inc/options/minify.php:809
1483
+ msgid "Add a style sheet"
1484
+ msgstr ""
1485
+
1486
+ # 'cdn.import.external' => __( 'Import external media library attachments', 'w3-total-cache' ),
1487
+ # 'cdn.canonical_header' => __( 'Add canonical header', 'w3-total-cache' ),
1488
+ # 'cdn.reject.ssl' => __( 'Disable <acronym title="Content Delivery Network">CDN</acronym> on <acronym title="Secure Sockets Layer">SSL</acronym> pages', 'w3-total-cache' ),
1489
+ #: Cdn_ConfigLabels.php:18
1490
+ msgid "Add canonical header"
1491
+ msgstr ""
1492
+
1493
+ # </ol>
1494
+ # <input id="cdn_cname_add" class="button" type="button" value="<?php esc_attr_e( 'Add CNAME', 'w3-total-cache' ); ?>"
1495
+ # <?php Util_Ui::sealing_disabled( 'cdn.' ); ?> />
1496
+ #: inc/options/cdn/common/cnames.php:66
1497
+ msgid "Add CNAME"
1498
+ msgstr ""
1499
+
1500
+ # <input name="folder" type="radio" class="w3tc-ignore-change" value="" />
1501
+ # <?php esc_html_e( 'Add new folder:', 'w3-total-cache' ); ?>
1502
+ # </label>
1503
+ #: Cdn_GoogleDrive_Popup_AuthReturn_View.php:40
1504
+ msgid "Add new folder:"
1505
+ msgstr ""
1506
+
1507
+ # <input name="site_id" type="radio" class="w3tc-ignore-change" value="" />
1508
+ # <?php echo esc_html__( 'Add new site: ', 'w3-total-cache' ) . esc_html( $details['new_hostname'] ); ?>
1509
+ # </label>
1510
+ #: Cdnfsd_StackPath2_Popup_View_Sites.php:35
1511
+ #: Cdn_StackPath2_Popup_View_Sites.php:33
1512
+ msgid "Add new site: "
1513
+ msgstr ""
1514
+
1515
+ # 'control' => 'checkbox',
1516
+ # 'label' => __( 'Add postfix to page titles', 'w3-total-cache' ),
1517
+ # 'checkbox_label' => __( 'Enable', 'w3-total-cache' ),
1518
+ #: extension-example/Extension_Example_Page_View.php:27
1519
+ msgid "Add postfix to page titles"
1520
+ msgstr ""
1521
+
1522
+ # <p>
1523
+ # <?php esc_html_e( 'Add the following directives to your .htaccess file or if there are several hundred they should be added directly to your configuration file:', 'w3-total-cache' ); ?>
1524
+ # </p>
1525
+ #: inc/popup/cdn_import_library.php:90
1526
+ msgid ""
1527
+ "Add the following directives to your .htaccess file or if there are several "
1528
+ "hundred they should be added directly to your configuration file:"
1529
+ msgstr ""
1530
+
1531
+ # 'minify.csstidy.options.preserve_css' => __( 'Preserve CSS', 'w3-total-cache' ),
1532
+ # 'minify.csstidy.options.timestamp' => __( 'Add timestamp', 'w3-total-cache' ),
1533
+ # options->minify->csstidy2
1534
+ #: Minify_ConfigLabels.php:59
1535
+ msgid "Add timestamp"
1536
+ msgstr ""
1537
+
1538
+ # <tr>
1539
+ # <th class="minify-files-add"><?php esc_html_e( 'Add:', 'w3-total-cache' ); ?></th>
1540
+ # <th>&nbsp;</th>
1541
+ #: inc/lightbox/minify_recommendations.php:33
1542
+ #: inc/lightbox/minify_recommendations.php:91
1543
+ msgid "Add:"
1544
+ msgstr ""
1545
+
1546
+ # "\\0\r\ndefine('COOKIE_DOMAIN', '" . addslashes( $cookie_domain ) .
1547
+ # "'); // " . __( 'Added by W3 Total Cache', 'w3-total-cache' ) . "\r\n",
1548
+ # $config_data,
1549
+ #: Generic_AdminActions_Default.php:625
1550
+ msgid "Added by W3 Total Cache"
1551
+ msgstr ""
1552
+
1553
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1554
+ # __(
1555
+ # 'Additional %1$sURL%2$ss:',
1556
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1557
+ #: Extension_FeedBurner_Page_View.php:36
1558
+ msgid "Additional %1$sURL%2$ss:"
1559
+ msgstr ""
1560
+
1561
+ # 'icon' => 'dashicons-editor-kitchensink',
1562
+ # 'text' => esc_html__( 'Additional features to extend the functionality of W3 Total Cache, such as Accelerated Mobile Pages (AMP) for Minify and support for New Relic.', 'w3-total-cache' ),
1563
+ # 'button' => '<button class="button" onclick="window.location=\'' .
1564
+ #: FeatureShowcase_Plugin_Admin.php:458
1565
+ msgid ""
1566
+ "Additional features to extend the functionality of W3 Total Cache, such as "
1567
+ "Accelerated Mobile Pages (AMP) for Minify and support for New Relic."
1568
+ msgstr ""
1569
+
1570
+ # translators: 1 opneing HTML acronym tag, 2 closing HTML acronym tag.
1571
+ # __(
1572
+ # 'Additional home %1$sURL%2$ss:',
1573
+ #. translators: 1 opneing HTML acronym tag, 2 closing HTML acronym tag.
1574
+ #: inc/options/pgcache.php:193
1575
+ msgid "Additional home %1$sURL%2$ss:"
1576
+ msgstr ""
1577
+
1578
+ # translators: 1 opening HTML a tag to W3TC plugin installation FAQs, 2 closing HTML a tag.
1579
+ # __(
1580
+ # 'Additional installation guides can be found in the %1$swiki%2$s.',
1581
+ #. translators: 1 opening HTML a tag to W3TC plugin installation FAQs, 2 closing HTML a tag.
1582
+ #: inc/options/install.php:371
1583
+ msgid "Additional installation guides can be found in the %1$swiki%2$s."
1584
+ msgstr ""
1585
+
1586
+ # 'pgcache.purge.postpages_limit' => __( 'Purge limit:', 'w3-total-cache' ),
1587
+ # 'pgcache.purge.pages' => __( 'Additional pages:', 'w3-total-cache' ),
1588
+ # 'pgcache.purge.sitemap_regex' => __( 'Purge sitemaps:', 'w3-total-cache' ),
1589
+ #: PgCache_ConfigLabels.php:38
1590
+ msgid "Additional pages:"
1591
+ msgstr ""
1592
+
1593
+ # ?>
1594
+ # <h4><?php esc_html_e( 'Additional Server Modules', 'w3-total-cache' ); ?></h4>
1595
+ # <ul>
1596
+ #: inc/lightbox/self_test.php:429
1597
+ msgid "Additional Server Modules"
1598
+ msgstr ""
1599
+
1600
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1601
+ # __(
1602
+ # 'Adds canonical %1$sHTTP%2$s header to assets files.',
1603
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1604
+ #: inc/options/cdn.php:335
1605
+ msgid "Adds canonical %1$sHTTP%2$s header to assets files."
1606
+ msgstr ""
1607
+
1608
+ # 'author' => 'W3 EDGE',
1609
+ # 'description' => __( 'Adds compatibility for accelerated mobile pages (AMP) to minify.',
1610
+ # 'w3-total-cache' ),
1611
+ #: Extension_Amp_Plugin_Admin.php:14
1612
+ msgid "Adds compatibility for accelerated mobile pages (AMP) to minify."
1613
+ msgstr ""
1614
+
1615
+ #
1616
+ # $description = __(
1617
+ # 'Adds the ability to convert images in the Media Library to the modern WebP format for better performance.',
1618
+ #: Extension_ImageService_Plugin_Admin.php:79
1619
+ msgid ""
1620
+ "Adds the ability to convert images in the Media Library to the modern WebP "
1621
+ "format for better performance."
1622
+ msgstr ""
1623
+
1624
+ #
1625
+ # $imageservice_description = __(
1626
+ # 'Adds the ability to convert images into the modern WebP format for better performance using our remote API service.',
1627
+ #: FeatureShowcase_Plugin_Admin.php:217
1628
+ msgid ""
1629
+ "Adds the ability to convert images into the modern WebP format for better "
1630
+ "performance using our remote API service."
1631
+ msgstr ""
1632
+
1633
+ # '' => esc_html__( 'Disabled', 'w3-total-cache' ),
1634
+ # 'admin' => esc_html__( 'Admin Notification', 'w3-total-cache' ),
1635
+ # 'email' => esc_html__( 'Email Notification', 'w3-total-cache' ),
1636
+ #: inc/options/minify.php:146
1637
+ msgid "Admin Notification"
1638
+ msgstr ""
1639
+
1640
+ #
1641
+ # <?php Util_Ui::postbox_header( esc_html__( 'Advanced', 'w3-total-cache' ), '', 'advanced' ); ?>
1642
+ # <table class="form-table">
1643
+ #: Extension_FragmentCache_Page_View.php:16
1644
+ #: Extension_FragmentCache_Page_View.php:87 inc/options/cdn.php:25
1645
+ #: inc/options/cdn.php:381 inc/options/common/header.php:186
1646
+ #: inc/options/common/header.php:263 inc/options/common/header.php:275
1647
+ #: inc/options/common/header.php:285 inc/options/dbcache.php:65
1648
+ #: inc/options/minify.php:862 inc/options/objectcache.php:53
1649
+ #: inc/options/pgcache.php:503
1650
+ msgid "Advanced"
1651
+ msgstr ""
1652
+
1653
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1654
+ # __(
1655
+ # 'Advanced %1$sDDoS%2$s protection:',
1656
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1657
+ #: Extension_CloudFlare_Page_View.php:583
1658
+ msgid "Advanced %1$sDDoS%2$s protection:"
1659
+ msgstr ""
1660
+
1661
+ # <ul class="w3tc-visible-ul">
1662
+ # <li><?php esc_html_e( 'Advanced Analytics', 'w3-total-cache' ); ?></li>
1663
+ # <li><?php esc_html_e( 'Fragment Caching', 'w3-total-cache' ); ?></li>
1664
+ #: Generic_WidgetCommunity_View.php:20
1665
+ msgid "Advanced Analytics"
1666
+ msgstr ""
1667
+
1668
+ # 'SIMPLE_OPTIMIZATIONS' => __( 'Simple optimizations', 'w3-total-cache' ),
1669
+ # 'ADVANCED_OPTIMIZATIONS' => __( 'Advanced optimizations', 'w3-total-cache' ),
1670
+ # );
1671
+ #: inc/options/minify/ccjs2.php:11 inc/options/minify/googleccjs2.php:11
1672
+ msgid "Advanced optimizations"
1673
+ msgstr ""
1674
+
1675
+ # ),
1676
+ # 'description' => esc_html__( 'Advanced protection from Distributed Denial of Service (DDoS) attacks on your website.', 'w3-total-cache' ),
1677
+ # )
1678
+ #: Extension_CloudFlare_Page_View.php:596
1679
+ msgid ""
1680
+ "Advanced protection from Distributed Denial of Service (DDoS) attacks on "
1681
+ "your website."
1682
+ msgstr ""
1683
+
1684
+ # 'us-west-2' => __( 'US West (Oregon)', 'w3-total-cache' ),
1685
+ # 'af-south-1' => __( 'Africa (Cape Town)', 'w3-total-cache' ),
1686
+ # 'ap-east-1' => __( 'Asia Pacific (Hong Kong)', 'w3-total-cache' ),
1687
+ #: CdnEngine_S3.php:27
1688
+ msgid "Africa (Cape Town)"
1689
+ msgstr ""
1690
+
1691
+ # 'minify.js.combine.header' => __( 'Combine only', 'w3-total-cache' ),
1692
+ # 'minify.js.body.embed_type' => __( 'After <span class="html-tag">&lt;body&gt;</span>', 'w3-total-cache' ),
1693
+ # 'minify.js.combine.body' => __( 'Combine only', 'w3-total-cache' ),
1694
+ #: Minify_ConfigLabels.php:25
1695
+ msgid "After <span class=\"html-tag\">&lt;body&gt;</span>"
1696
+ msgstr ""
1697
+
1698
+ # '' => '',
1699
+ # 'aggressive' => esc_html__( 'Aggressive (cache all static resources, including ones with a query string)', 'w3-total-cache' ),
1700
+ # 'basic' => esc_html__( 'Basic (cache most static resources (i.e., css, images, and JavaScript)', 'w3-total-cache' ),
1701
+ #: Extension_CloudFlare_Page_View.php:178
1702
+ msgid ""
1703
+ "Aggressive (cache all static resources, including ones with a query string)"
1704
+ msgstr ""
1705
+
1706
+ # $engine_values['akamai'] = array(
1707
+ # 'label' => __( 'Akamai', 'w3-total-cache' ),
1708
+ # 'optgroup' => $optgroup_pull
1709
+ #: Cdn_Plugin_Admin.php:173
1710
+ msgid "Akamai"
1711
+ msgstr ""
1712
+
1713
+ # <th>
1714
+ # <label for="alerts-enabled"><?php esc_html_e( 'Alerts enabled:', 'w3-total-cache' ); ?></label>
1715
+ # </th>
1716
+ #: Extension_NewRelic_Page_View_Apm.php:49
1717
+ msgid "Alerts enabled:"
1718
+ msgstr ""
1719
+
1720
+ #
1721
+ # <?php Util_Ui::postbox_header( esc_html__( 'Aliases', 'w3-total-cache' ), '', 'mirrors' ); ?>
1722
+ # <table class="form-table">
1723
+ #: inc/options/pgcache.php:173
1724
+ msgid "Aliases"
1725
+ msgstr ""
1726
+
1727
+ # 'config_save' => __( 'Plugin configuration successfully updated.', 'w3-total-cache' ),
1728
+ # 'flush_all' => __( 'All caches successfully emptied.', 'w3-total-cache' ),
1729
+ # 'flush_memcached' => __( 'Memcached cache(s) successfully emptied.', 'w3-total-cache' ),
1730
+ #: Generic_Plugin_Admin.php:784
1731
+ msgid "All caches successfully emptied."
1732
+ msgstr ""
1733
+
1734
+ # <li><em><?php echo esc_url( $path ); ?>/images/headers/*.</em> &mdash; <?php esc_html_e( 'all files in the directory with no extension, with all parameter variations.', 'w3-total-cache' ); ?></li>
1735
+ # <li><em><?php echo esc_url( $path ); ?>/images/headers/*.jpg</em> &mdash; <?php esc_html_e( 'all files in the directory whose extension is "jpg".', 'w3-total-cache' ); ?></li>
1736
+ # <li><em><?php echo esc_url( $path ); ?>/images/headers/path</em> &mdash; <?php esc_html_e( 'the specific file (when the file does not have an extension), and without parameters.', 'w3-total-cache' ); ?></li>
1737
+ #: inc/popup/cdn_purge.php:38
1738
+ msgid "all files in the directory whose extension is \"jpg\"."
1739
+ msgstr ""
1740
+
1741
+ # <li><em><?php echo esc_url( $path ); ?>/images/headers/</em> &mdash; <?php esc_html_e( 'the directory itself (only when accessed directly without any file).', 'w3-total-cache' ); ?></li>
1742
+ # <li><em><?php echo esc_url( $path ); ?>/images/headers/*.</em> &mdash; <?php esc_html_e( 'all files in the directory with no extension, with all parameter variations.', 'w3-total-cache' ); ?></li>
1743
+ # <li><em><?php echo esc_url( $path ); ?>/images/headers/*.jpg</em> &mdash; <?php esc_html_e( 'all files in the directory whose extension is "jpg".', 'w3-total-cache' ); ?></li>
1744
+ #: inc/popup/cdn_purge.php:37
1745
+ msgid ""
1746
+ "all files in the directory with no extension, with all parameter variations."
1747
+ msgstr ""
1748
+
1749
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1750
+ # __(
1751
+ # 'All Media Library content will use %1$sCDN%2$s links on administration pages.',
1752
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1753
+ #: inc/options/cdn.php:492
1754
+ msgid ""
1755
+ "All Media Library content will use %1$sCDN%2$s links on administration pages."
1756
+ msgstr ""
1757
+
1758
+ # 2 => __( 'Level II optimisations', 'w3-total-cache' ),
1759
+ # 3 => __( 'All optimisations', 'w3-total-cache' ),
1760
+ # );
1761
+ #: inc/options/minify/csstidy2.php:19
1762
+ msgid "All optimisations"
1763
+ msgstr ""
1764
+
1765
+ # <div class="updated notice notice-success is-dismissible"><p>Total Cache Image Service</p>
1766
+ # <p><?php esc_html_e( 'All selected optimizations have been reverted.', 'w3-total-cache' ); ?></p>
1767
+ # </div>
1768
+ #: Extension_ImageService_Plugin_Admin.php:904
1769
+ msgid "All selected optimizations have been reverted."
1770
+ msgstr ""
1771
+
1772
+ # $groups = array(
1773
+ # 'default' => __( 'All Templates', 'w3-total-cache' )
1774
+ # );
1775
+ #: Util_Theme.php:80
1776
+ msgid "All Templates"
1777
+ msgstr ""
1778
+
1779
+ # <?php Util_Ui::sealing_disabled( 'browsercache.' ); ?> value="<?php echo esc_attr( $this->_config->get_string( 'browsercache.security.csp.object' ) ); ?>" size="50" placeholder="Example: 'self' 'unsafe-inline' *.domain.com" />
1780
+ # <div><i><?php esc_html_e( 'Allows control over the &lt;object&gt;, &lt;embed&gt;, and &lt;applet&gt; elements used by Flash and other plugins.', 'w3-total-cache' ); ?></i></div>
1781
+ # </td>
1782
+ #: BrowserCache_Page_View_SectionSecurity.php:673
1783
+ msgid ""
1784
+ "Allows control over the &lt;object&gt;, &lt;embed&gt;, and &lt;applet&gt; "
1785
+ "elements used by Flash and other plugins."
1786
+ msgstr ""
1787
+
1788
+ # 'label' => esc_html__( 'True client IP:', 'w3-total-cache' ),
1789
+ # 'description' => esc_html__( 'Allows customer to continue to use True Client IP (Akamai feature) in the headers we send to the origin.', 'w3-total-cache' ),
1790
+ # )
1791
+ #: Extension_CloudFlare_Page_View.php:683
1792
+ msgid ""
1793
+ "Allows customer to continue to use True Client IP (Akamai feature) in the "
1794
+ "headers we send to the origin."
1795
+ msgstr ""
1796
+
1797
+ # <p>
1798
+ # <?php esc_html_e( 'Allows policy management to be shared between a dynamic pool of servers. For example, each server in a pool to use opcode caching (which is not a shared resource) and purging is then syncronized between any number of servers in real-time; each server therefore behaves identically even though resources are not shared.', 'w3-total-cache' ); ?>
1799
+ # </p>
1800
+ #: inc/options/general.php:547
1801
+ msgid ""
1802
+ "Allows policy management to be shared between a dynamic pool of servers. For "
1803
+ "example, each server in a pool to use opcode caching (which is not a shared "
1804
+ "resource) and purging is then syncronized between any number of servers in "
1805
+ "real-time; each server therefore behaves identically even though resources "
1806
+ "are not shared."
1807
+ msgstr ""
1808
+
1809
+ # 'checkbox_label' => esc_html__( 'Feature-Policy', 'w3-total-cache' ),
1810
+ # 'description' => esc_html__( 'Allows you to control which origins can use which features.', 'w3-total-cache' ),
1811
+ # 'label_class' => 'w3tc_single_column',
1812
+ #: BrowserCache_Page_View_SectionSecurity.php:795
1813
+ msgid "Allows you to control which origins can use which features."
1814
+ msgstr ""
1815
+
1816
+ # ),
1817
+ # '<acronym title="' . esc_attr__( 'Alternative PHP Cache', 'w3-total-cache' ) . '">',
1818
+ # '</acronym>'
1819
+ #: inc/options/install.php:335
1820
+ msgid "Alternative PHP Cache"
1821
+ msgstr ""
1822
+
1823
+ # <p class="description">
1824
+ # <?php esc_html__( 'Although not required, to prevent unauthorized use and quota theft, you have the option to restrict your key using a designated HTTP referrer. If you decide to use it, you will need to set this referrer within the API Console\'s "Http Referrers (web sites)" key restriction area (under Credentials).', 'w3-total-cache' ); ?>
1825
+ # </p>
1826
+ #: inc/options/general.php:774
1827
+ msgid ""
1828
+ "Although not required, to prevent unauthorized use and quota theft, you have "
1829
+ "the option to restrict your key using a designated HTTP referrer. If you "
1830
+ "decide to use it, you will need to set this referrer within the API "
1831
+ "Console's \"Http Referrers (web sites)\" key restriction area (under "
1832
+ "Credentials)."
1833
+ msgstr ""
1834
+
1835
+ # 'extension' => array( 'label' => __( 'If extension is active', 'w3-total-cache' ) ),
1836
+ # 'always' => array( 'label' => __( 'Always', 'w3-total-cache' ) ),
1837
+ # ),
1838
+ #: Extension_ImageService_Page_View.php:100
1839
+ msgid "Always"
1840
+ msgstr ""
1841
+
1842
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1843
+ # __(
1844
+ # 'Always cache %1$sURL%2$ss that use these query string name-value pairs. The value part is not required. But if used, separate name-value pairs with an equals sign (i.e., name=value). Each pair should be on their own line.',
1845
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1846
+ #: inc/options/pgcache.php:638
1847
+ msgid ""
1848
+ "Always cache %1$sURL%2$ss that use these query string name-value pairs. The "
1849
+ "value part is not required. But if used, separate name-value pairs with an "
1850
+ "equals sign (i.e., name=value). Each pair should be on their own line."
1851
+ msgstr ""
1852
+
1853
+ # cols="40" rows="5"><?php echo esc_textarea( implode( "\r\n", $this->_config->get_array( 'pgcache.reject.authors' ) ) ); ?></textarea>
1854
+ # <p class="description"><?php esc_html_e( 'Always ignore all pages filed under the specified author usernames.', 'w3-total-cache' ); ?></p>
1855
+ # </td>
1856
+ #: inc/options/pgcache.php:732
1857
+ msgid "Always ignore all pages filed under the specified author usernames."
1858
+ msgstr ""
1859
+
1860
+ # cols="40" rows="5"><?php echo esc_textarea( implode( "\r\n", $this->_config->get_array( 'pgcache.reject.categories' ) ) ); ?></textarea>
1861
+ # <p class="description"><?php esc_html_e( 'Always ignore all pages filed under the specified category slugs.', 'w3-total-cache' ); ?></p>
1862
+ # </td>
1863
+ #: inc/options/pgcache.php:714
1864
+ msgid "Always ignore all pages filed under the specified category slugs."
1865
+ msgstr ""
1866
+
1867
+ # cols="40" rows="5"><?php echo esc_textarea( implode( "\r\n", $this->_config->get_array( 'pgcache.reject.custom' ) ) ); ?></textarea>
1868
+ # <p class="description"><?php esc_html_e( 'Always ignore all pages filed under the specified custom fields. Separate name-value pairs with an equals sign (i.e., name=value).', 'w3-total-cache' ); ?></p>
1869
+ # </td>
1870
+ #: inc/options/pgcache.php:741
1871
+ msgid ""
1872
+ "Always ignore all pages filed under the specified custom fields. Separate "
1873
+ "name-value pairs with an equals sign (i.e., name=value)."
1874
+ msgstr ""
1875
+
1876
+ # cols="40" rows="5"><?php echo esc_textarea( implode( "\r\n", $this->_config->get_array( 'pgcache.reject.tags' ) ) ); ?></textarea>
1877
+ # <p class="description"><?php esc_html_e( 'Always ignore all pages filed under the specified tag slugs.', 'w3-total-cache' ); ?></p>
1878
+ # </td>
1879
+ #: inc/options/pgcache.php:723
1880
+ msgid "Always ignore all pages filed under the specified tag slugs."
1881
+ msgstr ""
1882
+
1883
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1884
+ # __(
1885
+ # 'Always ignore the specified %1$sCSS%2$s files. Use relative paths. Omit: protocol, hostname, leading forward slash and query strings.',
1886
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1887
+ #: inc/options/minify.php:942
1888
+ msgid ""
1889
+ "Always ignore the specified %1$sCSS%2$s files. Use relative paths. Omit: "
1890
+ "protocol, hostname, leading forward slash and query strings."
1891
+ msgstr ""
1892
+
1893
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1894
+ # __(
1895
+ # 'Always ignore the specified %1$sJS%2$s files. Use relative paths. Omit: protocol, hostname, leading forward slash and query strings.',
1896
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
1897
+ #: inc/options/minify.php:915
1898
+ msgid ""
1899
+ "Always ignore the specified %1$sJS%2$s files. Use relative paths. Omit: "
1900
+ "protocol, hostname, leading forward slash and query strings."
1901
+ msgstr ""
1902
+
1903
+ # translators: 2 opening HTML acronym tag, 3 closing HTML acronym tag, 4 closing HTML acronym tag.
1904
+ # __(
1905
+ # 'Always ignore the specified pages / directories. Supports regular expressions (See %1$s%2$sFAQ%3$s%4$s)',
1906
+ #. translators: 2 opening HTML acronym tag, 3 closing HTML acronym tag, 4 closing HTML acronym tag.
1907
+ #: inc/options/pgcache.php:686
1908
+ msgid ""
1909
+ "Always ignore the specified pages / directories. Supports regular "
1910
+ "expressions (See %1$s%2$sFAQ%3$s%4$s)"
1911
+ msgstr ""
1912
+
1913
+ # translators: 3 closing HTML acronym tag, 4 closing HTML a tag.
1914
+ # __(
1915
+ # 'Always ignore the specified pages / directories. Supports regular expressions (See %1$s%2$sFAQ%3$s%4$s).',
1916
+ #. translators: 3 closing HTML acronym tag, 4 closing HTML a tag.
1917
+ #: inc/options/dbcache.php:104
1918
+ msgid ""
1919
+ "Always ignore the specified pages / directories. Supports regular "
1920
+ "expressions (See %1$s%2$sFAQ%3$s%4$s)."
1921
+ msgstr ""
1922
+
1923
+ # <?php Util_Ui::sealing_disabled( 'minify.' ); ?> cols="40" rows="5"><?php echo esc_textarea( implode( "\r\n", $this->_config->get_array( 'minify.reject.uri' ) ) ); ?></textarea>
1924
+ # <p class="description"><?php esc_html_e( 'Always ignore the specified pages / directories. Use relative paths. Omit: protocol, hostname, leading forward slash and query strings.', 'w3-total-cache' ); ?></p>
1925
+ # </td>
1926
+ #: inc/options/minify.php:902
1927
+ msgid ""
1928
+ "Always ignore the specified pages / directories. Use relative paths. Omit: "
1929
+ "protocol, hostname, leading forward slash and query strings."
1930
+ msgstr ""
1931
+
1932
+ # 'key' => 'always_online',
1933
+ # 'label' => esc_html__( 'Always online:', 'w3-total-cache' ),
1934
+ # 'description' => esc_html__( 'When enabled, Always Online will serve pages from our cache if your server is offline', 'w3-total-cache' ),
1935
+ #: Extension_CloudFlare_Page_View.php:564
1936
+ msgid "Always online:"
1937
+ msgstr ""
1938
+
1939
+ # 'cluster.messagebus.enabled' => __( 'Enable cache purge via Amazon <acronym title="Simple Notification Service">SNS</acronym>', 'w3-total-cache' ),
1940
+ # 'cluster.messagebus.sns.region' => __( 'Amazon <acronym title="Simple Notification Service">SNS</acronym> region:', 'w3-total-cache' ),
1941
+ # 'cluster.messagebus.sns.api_key' => __( '<acronym title="Application Programming Interface">API</acronym> key:', 'w3-total-cache' ),
1942
+ #: Generic_ConfigLabels.php:8
1943
+ msgid ""
1944
+ "Amazon <acronym title=\"Simple Notification Service\">SNS</acronym> region:"
1945
+ msgstr ""
1946
+
1947
+ # $cdnfsd_engine_values['cloudfront'] = array(
1948
+ # 'label' => __( 'Amazon CloudFront', 'w3-total-cache' ),
1949
+ # );
1950
+ #: Cdnfsd_Plugin_Admin.php:93 Cdn_Plugin_Admin.php:177
1951
+ msgid "Amazon CloudFront"
1952
+ msgstr ""
1953
+
1954
+ # 'disabled' => ( !Util_Installed::curl() ? true : null ),
1955
+ # 'label' => __( 'Amazon CloudFront Over S3', 'w3-total-cache' ),
1956
+ # 'optgroup' => $optgroup_push
1957
+ #: Cdn_Plugin_Admin.php:223
1958
+ msgid "Amazon CloudFront Over S3"
1959
+ msgstr ""
1960
+
1961
+ # 'disabled' => ( !Util_Installed::curl() ? true : null ),
1962
+ # 'label' => __( 'Amazon Simple Storage Service (S3)', 'w3-total-cache' ),
1963
+ # 'optgroup' => $optgroup_push
1964
+ #: Cdn_Plugin_Admin.php:228
1965
+ msgid "Amazon Simple Storage Service (S3)"
1966
+ msgstr ""
1967
+
1968
+ # 'disabled' => ( !Util_Installed::curl() ? true : null ),
1969
+ # 'label' => __( 'Amazon Simple Storage Service (S3) Compatible', 'w3-total-cache' ),
1970
+ # 'optgroup' => $optgroup_push
1971
+ #: Cdn_Plugin_Admin.php:233
1972
+ msgid "Amazon Simple Storage Service (S3) Compatible"
1973
+ msgstr ""
1974
+
1975
+ # ),
1976
+ # '<acronym title="' . esc_attr__( 'Amazon Web Services', 'w3-total-cache' ) . '">',
1977
+ # '</acronym>'
1978
+ #: Cdnfsd_CloudFront_Popup_View_Intro.php:24 inc/options/cdn/cf.php:26
1979
+ #: inc/options/cdn/cf.php:29 inc/options/cdn/s3.php:32
1980
+ #: inc/options/cdn/s3.php:35
1981
+ msgid "Amazon Web Services"
1982
+ msgstr ""
1983
+
1984
+ # 'key' => array( 'amp', 'url_postfix' ),
1985
+ # 'label' => esc_html__( 'AMP URL Postfix:', 'w3-total-cache' ),
1986
+ # 'control' => 'textbox',
1987
+ #: Extension_Amp_Page_View.php:31
1988
+ msgid "AMP URL Postfix:"
1989
+ msgstr ""
1990
+
1991
+ # 'key' => array( 'amp', 'url_type' ),
1992
+ # 'label' => esc_html__( 'AMP URL Type:', 'w3-total-cache' ),
1993
+ # 'control' => 'radiogroup',
1994
+ #: Extension_Amp_Page_View.php:16
1995
+ msgid "AMP URL Type:"
1996
+ msgstr ""
1997
+
1998
+ # <em><?php esc_html_e( ' not ', 'w3-total-cache' ); ?></em>
1999
+ # <?php esc_html_e( 'an "instant on" or "set it and forget it" optimization technique.', 'w3-total-cache' ); ?>
2000
+ # </p>
2001
+ #: Minify_HelpPopup_View.php:16
2002
+ msgid "an \"instant on\" or \"set it and forget it\" optimization technique."
2003
+ msgstr ""
2004
+
2005
+ # <div class="ustats_loading w3tc_loading"><?php esc_html_e( 'Loading...', 'w3-total-cache' ); ?></div>
2006
+ # <div class="ustats_error w3tc_none"><?php esc_html_e( 'An error occurred', 'w3-total-cache' ); ?></div>
2007
+ # <div class="ustats_nodata w3tc_none">
2008
+ #: UsageStatistics_Page_View.php:12
2009
+ msgid "An error occurred"
2010
+ msgstr ""
2011
+
2012
+ # } elseif ( isset( $response_body['error']['id'] ) && 'missing-image' === $response_body['error']['id'] ) {
2013
+ # $result['message'] = esc_html__( 'An image file is required.', 'w3-total-cache' );
2014
+ # } elseif ( isset( $response_body['error']['id'] ) && 'invalid-image' === $response_body['error']['id'] ) {
2015
+ #: Extension_ImageService_Api.php:223
2016
+ msgid "An image file is required."
2017
+ msgstr ""
2018
+
2019
+ # 'parent' => 'cloudflare',
2020
+ # 'title' => __( 'Analytics', 'w3-total-cache' ),
2021
+ # 'href' => 'https://www.cloudflare.com/analytics.html'
2022
+ #: Extension_CloudFlare_Plugin.php:163
2023
+ msgid "Analytics"
2024
+ msgstr ""
2025
+
2026
+ # 'icon' => 'dashicons-chart-line',
2027
+ # 'text' => esc_html__( 'Analytics for your WordPress and Server cache that allow you to track the size, time and hit/miss ratio of each type of cache, giving you the information needed to gain maximum performance.', 'w3-total-cache' ),
2028
+ # 'button' => '<button class="button" onclick="window.location=\'' .
2029
+ #: FeatureShowcase_Plugin_Admin.php:338
2030
+ msgid ""
2031
+ "Analytics for your WordPress and Server cache that allow you to track the "
2032
+ "size, time and hit/miss ratio of each type of cache, giving you the "
2033
+ "information needed to gain maximum performance."
2034
+ msgstr ""
2035
+
2036
+ # 'control' => 'checkbox',
2037
+ # 'checkbox_label' => esc_html__( 'Anonymously track usage to improve product quality', 'w3-total-cache' ),
2038
+ # 'label_class' => 'w3tc_single_column',
2039
+ #: inc/options/general.php:905
2040
+ msgid "Anonymously track usage to improve product quality"
2041
+ msgstr ""
2042
+
2043
+ # <div class="ustats_header">
2044
+ # <?php esc_html_e( 'APC', 'w3-total-cache' ); ?>
2045
+ # </div>
2046
+ #: UsageStatistics_Page_View.php:460
2047
+ msgid "APC"
2048
+ msgstr ""
2049
+
2050
+ #: UsageStatistics_Widget_View.php:52
2051
+ msgid "APC Usage"
2052
+ msgstr ""
2053
+
2054
+ # 'php_php_requests_pagecache_miss_api_call',
2055
+ # esc_html__( 'API call', 'w3-total-cache' ),
2056
+ # false,
2057
+ #: UsageStatistics_Page_View.php:109
2058
+ msgid "API call"
2059
+ msgstr ""
2060
+
2061
+ #: Extension_ImageService_Plugin_Admin.php:554
2062
+ msgid "API error. Please reload the page to try again,"
2063
+ msgstr ""
2064
+
2065
+ # 'key' => 'cdn.s3_compatible.api_host',
2066
+ # 'label' => esc_html__( 'API host:', 'w3-total-cache' ),
2067
+ # 'control' => 'textbox',
2068
+ #: inc/options/cdn/s3_compatible.php:11
2069
+ msgid "API host:"
2070
+ msgstr ""
2071
+
2072
+ # } catch ( \Exception $ex ) {
2073
+ # $error['api_key'] = __( 'API Key is invalid.', 'w3-total-cache' );
2074
+ # }
2075
+ #: Extension_NewRelic_Service.php:182
2076
+ msgid "API Key is invalid."
2077
+ msgstr ""
2078
+
2079
+ # if ( !$this->get_api_key() )
2080
+ # $error['api_key'] = __( 'API Key is not configured.', 'w3-total-cache' );
2081
+ #
2082
+ #: Extension_NewRelic_Service.php:153
2083
+ msgid "API Key is not configured."
2084
+ msgstr ""
2085
+
2086
+ # if ( empty( $this->config['client_id'] ) ) {
2087
+ # throw new \Exception( __( 'API key not specified.', 'w3-total-cache' ) );
2088
+ # }
2089
+ #: Cdnfsd_MaxCdn_Engine.php:21 Cdnfsd_MaxCdn_Engine.php:46
2090
+ #: Cdnfsd_StackPath2_Engine.php:19 Cdnfsd_StackPath2_Engine.php:49
2091
+ #: Cdnfsd_StackPath_Engine.php:21 Cdnfsd_StackPath_Engine.php:43
2092
+ #: Cdnfsd_TransparentCDN_Engine.php:252 Cdnfsd_TransparentCDN_Engine.php:280
2093
+ msgid "API key not specified."
2094
+ msgstr ""
2095
+
2096
+ # <tr>
2097
+ # <td><?php esc_html_e( 'API Key:', 'w3-total-cache' ); ?></td>
2098
+ # <td>
2099
+ #: Cdn_LimeLight_Popup_View_Intro.php:34 Extension_Swarmify_Page_View.php:33
2100
+ msgid "API Key:"
2101
+ msgstr ""
2102
+
2103
+ # <tr>
2104
+ # <td><?php esc_html_e( 'API Token:', 'w3-total-cache' ); ?></td>
2105
+ # <td>
2106
+ #: Cdn_Highwinds_Popup_View_Intro.php:18
2107
+ msgid "API Token:"
2108
+ msgstr ""
2109
+
2110
+ # <th>
2111
+ # <label for="app-apdex-t"><?php esc_html_e( 'Application ApDex Threshold:', 'w3-total-cache' ); ?></label>
2112
+ # </th>
2113
+ #: Extension_NewRelic_Page_View_Apm.php:59
2114
+ msgid "Application ApDex Threshold:"
2115
+ msgstr ""
2116
+
2117
+ # if ( empty( $name ) )
2118
+ # $error['application_id'] = __( 'Application ID is not configured. Enter/Select application name.', 'w3-total-cache' );
2119
+ # } else {
2120
+ #: Extension_NewRelic_Service.php:159 Extension_NewRelic_Service.php:169
2121
+ msgid "Application ID is not configured. Enter/Select application name."
2122
+ msgstr ""
2123
+
2124
+ # <th>
2125
+ # <label><?php esc_html_e( 'Application ID:', 'w3-total-cache' ); ?></label>
2126
+ # </th>
2127
+ #: Extension_NewRelic_Page_View_Apm.php:33
2128
+ msgid "Application ID:"
2129
+ msgstr ""
2130
+
2131
+ # $message = sprintf(
2132
+ # __( 'Application monitoring has detected that your page load time is higher than 300ms. It is recommended that you enable the following features: %s %s',
2133
+ # 'w3-total-cache' ),
2134
+ #: Extension_NewRelic_AdminNotes.php:29
2135
+ msgid ""
2136
+ "Application monitoring has detected that your page load time is higher than "
2137
+ "300ms. It is recommended that you enable the following features: %s %s"
2138
+ msgstr ""
2139
+
2140
+ # $strings[] = sprintf(
2141
+ # __( "Application Monitoring using New Relic%s", 'w3-total-cache' ),
2142
+ # '{w3tc_newrelic_reject_reason}' );
2143
+ #: Extension_NewRelic_Plugin.php:206
2144
+ msgid "Application Monitoring using New Relic%s"
2145
+ msgstr ""
2146
+
2147
+ # <th>
2148
+ # <label><?php esc_html_e( 'Application name:', 'w3-total-cache' ); ?></label>
2149
+ # </th>
2150
+ #: Extension_NewRelic_GeneralPage_View.php:75
2151
+ #: Extension_NewRelic_Page_View_Apm.php:41
2152
+ msgid "Application name:"
2153
+ msgstr ""
2154
+
2155
+ # ),
2156
+ # '<acronym title="' . esc_attr__( 'Application Programming Interface', 'w3-total-cache' ) . '">',
2157
+ # '</acronym>'
2158
+ #: Cdn_RackSpaceCdn_Popup_View_Intro.php:35
2159
+ #: Cdn_RackSpaceCloudFiles_Popup_View_Intro.php:36
2160
+ #: Extension_CloudFlare_Plugin_Admin.php:40
2161
+ #: Extension_CloudFlare_Popup_View_Intro.php:36
2162
+ #: Extension_NewRelic_GeneralPage_View.php:55
2163
+ #: Extension_NewRelic_Popup_View_Intro.php:29 inc/options/cdn/cotendo.php:40
2164
+ #: inc/options/cdn/rscf.php:26 inc/options/general.php:394
2165
+ #: inc/options/general.php:601 inc/options/general.php:630
2166
+ #: inc/options/general.php:751 inc/options/pgcache.php:424
2167
+ #: inc/options/pgcache.php:465
2168
+ msgid "Application Programming Interface"
2169
+ msgstr ""
2170
+
2171
+ # case 'APP_REQUEST':
2172
+ # return __( 'Application request', 'w3-total-cache' );
2173
+ # case 'XMLRPC_REQUEST':
2174
+ #: DbCache_WpdbInjection_QueryCaching.php:853
2175
+ msgid "Application request"
2176
+ msgstr ""
2177
+
2178
+ # <div class="metabox-holder">
2179
+ # <?php Util_Ui::postbox_header( esc_html__( 'Application Settings', 'w3-total-cache' ), '', 'application' ); ?>
2180
+ # <?php if ( $application_settings ) : ?>
2181
+ #: Extension_NewRelic_Page_View_Apm.php:28
2182
+ msgid "Application Settings"
2183
+ msgstr ""
2184
+
2185
+ # <?php else : ?>
2186
+ # <p><?php esc_html_e( 'Application settings are only visible when New Relic is enabled', 'w3-total-cache' ); ?></p>
2187
+ # <?php endif; ?>
2188
+ #: Extension_NewRelic_Page_View_Apm.php:169
2189
+ msgid "Application settings are only visible when New Relic is enabled"
2190
+ msgstr ""
2191
+
2192
+ # translators: 1 opening HTML a tag to W3TC monitoring settings page, 2 closing HTML a tag.
2193
+ # __(
2194
+ # 'Application settings could not be retrieved. New Relic may not be properly configured, %1$sreview the settings%2$s.',
2195
+ #. translators: 1 opening HTML a tag to W3TC monitoring settings page, 2 closing HTML a tag.
2196
+ #: Extension_NewRelic_Page_View_Apm.php:153
2197
+ msgid ""
2198
+ "Application settings could not be retrieved. New Relic may not be properly "
2199
+ "configured, %1$sreview the settings%2$s."
2200
+ msgstr ""
2201
+
2202
+ # class="w3tc_cdn_maxcdn_fsd_view_zone w3tc-button-save button-primary"
2203
+ # value="<?php esc_attr_e( 'Apply', 'w3-total-cache' ); ?>" />
2204
+ # </p>
2205
+ #: Cdnfsd_CloudFront_Popup_View_Distribution.php:75
2206
+ #: Cdnfsd_CloudFront_Popup_View_Distributions.php:52
2207
+ #: Cdnfsd_MaxCdn_Popup_View_Zone.php:75 Cdnfsd_MaxCdn_Popup_View_Zones.php:47
2208
+ #: Cdnfsd_StackPath2_Popup_View_Sites.php:50
2209
+ #: Cdnfsd_StackPath2_Popup_View_Stacks.php:45
2210
+ #: Cdnfsd_StackPath_Popup_View_Zone.php:61
2211
+ #: Cdnfsd_StackPath_Popup_View_Zones.php:45
2212
+ #: Cdn_GoogleDrive_Popup_AuthReturn_View.php:50
2213
+ #: Cdn_Highwinds_Popup_View_ConfigureCnamesForm.php:66
2214
+ #: Cdn_Highwinds_Popup_View_SelectHost.php:56
2215
+ #: Cdn_MaxCdn_Popup_View_Zone.php:72 Cdn_MaxCdn_Popup_View_Zones.php:51
2216
+ #: Cdn_RackSpaceCdn_Popup_View_ConfigureDomains.php:66
2217
+ #: Cdn_RackSpaceCdn_Popup_View_Services.php:59
2218
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Actualize.php:54
2219
+ #: Cdn_RackSpaceCloudFiles_Popup_View_Containers.php:55
2220
+ #: Cdn_StackPath2_Popup_View_Sites.php:48
2221
+ #: Cdn_StackPath2_Popup_View_Stacks.php:47
2222
+ #: Cdn_StackPath_Popup_View_Zone.php:39 Cdn_StackPath_Popup_View_Zones.php:51
2223
+ #: Extension_NewRelic_Popup_View_Intro.php:51
2224
+ #: Extension_NewRelic_Popup_View_ListApplications.php:63
2225
+ #: inc/options/extensions/list.php:238
2226
+ msgid "Apply"
2227
+ msgstr ""
2228
+
2229
+ # <p>
2230
+ # <input class="recom_apply button-primary" type="button" value="<?php esc_attr_e( 'Apply &amp; close', 'w3-total-cache' ); ?>" />
2231
+ # </p>
2232
+ #: inc/lightbox/minify_recommendations.php:130
2233
+ msgid "Apply &amp; close"
2234
+ msgstr ""
2235
+
2236
+ # array(
2237
+ # 'beforeunloadText' => __( 'Are you sure that you want to leave this page?', 'w3-total-cache' ),
2238
+ # )
2239
+ #: inc/wizard/template.php:248
2240
+ msgid "Are you sure that you want to leave this page?"
2241
+ msgstr ""
2242
+
2243
+ # 'af-south-1' => __( 'Africa (Cape Town)', 'w3-total-cache' ),
2244
+ # 'ap-east-1' => __( 'Asia Pacific (Hong Kong)', 'w3-total-cache' ),
2245
+ # 'ap-northeast-1' => __( 'Asia Pacific (Tokyo)', 'w3-total-cache' ),
2246
+ #: CdnEngine_S3.php:28
2247
+ msgid "Asia Pacific (Hong Kong)"
2248
+ msgstr ""
2249
+
2250
+ # 'ap-northeast-3' => __( 'Asia Pacific (Osaka-Local)', 'w3-total-cache' ),
2251
+ # 'ap-south-1' => __( 'Asia Pacific (Mumbai)', 'w3-total-cache' ),
2252
+ # 'ap-southeast-1' => __( 'Asia Pacific (Singapore)', 'w3-total-cache' ),
2253
+ #: CdnEngine_S3.php:32
2254
+ msgid "Asia Pacific (Mumbai)"
2255
+ msgstr ""
2256
+
2257
+ # 'ap-northeast-2' => __( 'Asia Pacific (Seoul)', 'w3-total-cache' ),
2258
+ # 'ap-northeast-3' => __( 'Asia Pacific (Osaka-Local)', 'w3-total-cache' ),
2259
+ # 'ap-south-1' => __( 'Asia Pacific (Mumbai)', 'w3-total-cache' ),
2260
+ #: CdnEngine_S3.php:31
2261
+ msgid "Asia Pacific (Osaka-Local)"
2262
+ msgstr ""
2263
+
2264
+ # 'ap-northeast-1' => __( 'Asia Pacific (Tokyo)', 'w3-total-cache' ),
2265
+ # 'ap-northeast-2' => __( 'Asia Pacific (Seoul)', 'w3-total-cache' ),
2266
+ # 'ap-northeast-3' => __( 'Asia Pacific (Osaka-Local)', 'w3-total-cache' ),
2267
+ #: CdnEngine_S3.php:30
2268
+ msgid "Asia Pacific (Seoul)"
2269
+ msgstr ""
2270
+
2271
+ # 'ap-south-1' => __( 'Asia Pacific (Mumbai)', 'w3-total-cache' ),
2272
+ # 'ap-southeast-1' => __( 'Asia Pacific (Singapore)', 'w3-total-cache' ),
2273
+ # 'ap-southeast-2' => __( 'Asia Pacific (Sydney)', 'w3-total-cache' ),
2274
+ #: CdnEngine_S3.php:33
2275
+ msgid "Asia Pacific (Singapore)"
2276
+ msgstr ""
2277
+
2278
+ # 'ap-southeast-1' => __( 'Asia Pacific (Singapore)', 'w3-total-cache' ),
2279
+ # 'ap-southeast-2' => __( 'Asia Pacific (Sydney)', 'w3-total-cache' ),
2280
+ # 'ca-central-1' => __( 'Canada (Central)', 'w3-total-cache' ),
2281
+ #: CdnEngine_S3.php:34
2282
+ msgid "Asia Pacific (Sydney)"
2283
+ msgstr ""
2284
+
2285
+ # 'ap-east-1' => __( 'Asia Pacific (Hong Kong)', 'w3-total-cache' ),
2286
+ # 'ap-northeast-1' => __( 'Asia Pacific (Tokyo)', 'w3-total-cache' ),
2287
+ # 'ap-northeast-2' => __( 'Asia Pacific (Seoul)', 'w3-total-cache' ),
2288
+ #: CdnEngine_S3.php:29
2289
+ msgid "Asia Pacific (Tokyo)"
2290
+ msgstr ""
2291
+
2292
+ # </select>
2293
+ # <p class="description"><?php esc_html_e( 'Assign this group of referrers to a specific theme. Selecting "Pass-through" allows any plugin(s) (e.g. referrer plugins) to properly handle requests for these referrers. If the "redirect users to" field is not empty, this setting is ignored.', 'w3-total-cache' ); ?></p>
2294
+ # </td>
2295
+ #: CacheGroups_Plugin_Admin_View.php:204
2296
+ msgid ""
2297
+ "Assign this group of referrers to a specific theme. Selecting \"Pass-"
2298
+ "through\" allows any plugin(s) (e.g. referrer plugins) to properly handle "
2299
+ "requests for these referrers. If the \"redirect users to\" field is not "
2300
+ "empty, this setting is ignored."
2301
+ msgstr ""
2302
+
2303
+ # <p class="description">
2304
+ # <?php esc_html_e( 'Assign this group of user agents to a specific theme. Selecting "Pass-through" allows any plugin(s) (e.g. mobile plugins) to properly handle requests for these user agents. If the "redirect users to" field is not empty, this setting is ignored.', 'w3-total-cache' ); ?>
2305
+ # </p>
2306
+ #: CacheGroups_Plugin_Admin_View.php:90
2307
+ msgid ""
2308
+ "Assign this group of user agents to a specific theme. Selecting \"Pass-"
2309
+ "through\" allows any plugin(s) (e.g. mobile plugins) to properly handle "
2310
+ "requests for these user agents. If the \"redirect users to\" field is not "
2311
+ "empty, this setting is ignored."
2312
+ msgstr ""
2313
+
2314
+ # 'selectbox_values' => array(
2315
+ # 'async_head' => esc_attr__( 'async', 'w3-total-cache' ),
2316
+ # 'sync_head' => esc_attr__( 'sync (to head)', 'w3-total-cache' ),
2317
+ #: UserExperience_LazyLoad_Page_View.php:88
2318
+ msgid "async"
2319
+ msgstr ""
2320
+
2321
+ # ?>
2322
+ # <input id="flush_all" class="button" type="submit" name="w3tc_flush_all" value="<?php esc_html_e( 'empty all caches', 'w3-total-cache' ); ?>"<?php echo ! $enabled ? ' disabled="disabled"' : ''; ?> /> <?php esc_html_e( 'at once or', 'w3-total-cache' ); ?>
2323
+ # <input class="button" type="submit" name="w3tc_flush_memcached" value="<?php esc_html_e( 'empty only the memcached cache(s)', 'w3-total-cache' ); ?>"<?php echo ! $can_empty_memcache ? ' disabled="disabled"' : ''; ?> /> <?php esc_html_e( 'or', 'w3-total-cache' ); ?>
2324
+ #: inc/options/dashboard.php:64
2325
+ msgid "at once or"
2326
+ msgstr ""
2327
+
2328
+ # $engine_values['att'] = array(
2329
+ # 'label' => __( 'AT&amp;T', 'w3-total-cache' ),
2330
+ # 'optgroup' => $optgroup_pull
2331
+ #: Cdn_Plugin_Admin.php:182
2332
+ msgid "AT&amp;T"
2333
+ msgstr ""
2334
+
2335
+ # W3TC converted image.
2336
+ # echo esc_html__( 'Attachment id: ', 'w3-total-cache' ) . esc_html( $post->post_parent );
2337
+ # }
2338
+ #: Extension_ImageService_Plugin_Admin.php:756
2339
+ msgid "Attachment id: "
2340
+ msgstr ""
2341
+
2342
+ # 'preview_deploy' => __( 'Preview settings successfully deployed. Preview mode remains enabled until it\'s disabled. Continue testing new settings or disable preview mode if done.', 'w3-total-cache' ),
2343
+ # 'cdn_purge_attachment' => __( 'Attachment successfully purged.', 'w3-total-cache' ),
2344
+ # 'pgcache_purge_post' => __( 'Post successfully purged.', 'w3-total-cache' ),
2345
+ #: Generic_Plugin_Admin.php:809
2346
+ msgid "Attachment successfully purged."
2347
+ msgstr ""
2348
+
2349
+ # translators: 1 class name, 2 file name.
2350
+ # __(
2351
+ # 'Attempt to create object of class %1$s has been made, but file %2$s doesnt exists',
2352
+ #. translators: 1 class name, 2 file name.
2353
+ #: w3-total-cache-api.php:185
2354
+ msgid ""
2355
+ "Attempt to create object of class %1$s has been made, but file %2$s doesnt "
2356
+ "exists"
2357
+ msgstr ""
2358
+
2359
+ # <td colspan="2">
2360
+ # <?php esc_html_e( 'Authenticate your account in order to access settings.', 'w3-total-cache' ); ?>
2361
+ # </td>
2362
+ #: Extension_CloudFlare_Page_View.php:92
2363
+ msgid "Authenticate your account in order to access settings."
2364
+ msgstr ""
2365
+
2366
+ # <?php $this->checkbox( 'minify.reject.logged' ); ?> <?php Util_Ui::e_config_label( 'minify.reject.logged' ); ?></label>
2367
+ # <p class="description"><?php esc_html_e( 'Authenticated users will not receive minified pages if this option is enabled.', 'w3-total-cache' ); ?></p>
2368
+ # </th>
2369
+ #: inc/options/minify.php:136
2370
+ msgid ""
2371
+ "Authenticated users will not receive minified pages if this option is "
2372
+ "enabled."
2373
+ msgstr ""
2374
+
2375
+ # case 403:
2376
+ # $error = __( 'Authentication Failure or Insufficient Access Rights', 'w3-total-cache' );
2377
+ # break;
2378
+ #: CdnEngine_Mirror_Edgecast.php:122 Cdnfsd_TransparentCDN_Engine.php:152
2379
+ msgid "Authentication Failure or Insufficient Access Rights"
2380
+ msgstr ""
2381
+
2382
+ # if ( $c->get_string( 'cdn.maxcdn.authorization_key' ) == '' )
2383
+ # $fields[] = '"' . __( 'Authorization key', 'w3-total-cache' ) . '"';
2384
+ #
2385
+ #: Cdn_AdminNotes.php:239
2386
+ msgid "Authorization key"
2387
+ msgstr ""
2388
+
2389
+ # type="button"
2390
+ # value="<?php esc_attr_e( 'Authorize', 'w3-total-cache' ); ?>"
2391
+ # >
2392
+ #: Cdnfsd_CloudFront_Page_View.php:28 Cdnfsd_LimeLight_Page_View.php:28
2393
+ #: Cdnfsd_MaxCdn_Page_View.php:30 Cdnfsd_StackPath2_Page_View.php:37
2394
+ #: Cdnfsd_StackPath_Page_View.php:31 Cdn_GoogleDrive_Page_View.php:16
2395
+ #: Cdn_Highwinds_Page_View.php:14 Cdn_LimeLight_Page_View.php:15
2396
+ #: Cdn_MaxCdn_Page_View.php:35
2397
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:54
2398
+ #: Cdn_RackSpaceCdn_Page_View.php:17 Cdn_RackSpaceCloudFiles_Page_View.php:13
2399
+ #: Cdn_StackPath2_Page_View.php:61
2400
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:68
2401
+ #: Cdn_StackPath_Page_View.php:33
2402
+ #: Cdn_StackPath_Widget_View_Unauthorized.php:38
2403
+ #: Extension_CloudFlare_Page_View.php:68
2404
+ msgid "Authorize"
2405
+ msgstr ""
2406
+
2407
+ # <tr>
2408
+ # <th style="width: 300px;"><label><?php esc_html_e( 'Authorize:', 'w3-total-cache' ); ?></label></th>
2409
+ # <td>
2410
+ #: Cdn_GoogleDrive_Page_View.php:12 Cdn_Highwinds_Page_View.php:10
2411
+ #: Cdn_LimeLight_Page_View.php:11 Cdn_RackSpaceCdn_Page_View.php:10
2412
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:9
2413
+ msgid "Authorize:"
2414
+ msgstr ""
2415
+
2416
+ # 'radiogroup_values' => array(
2417
+ # '1' => esc_html__( 'Auto', 'w3-total-cache' ),
2418
+ # '0' => esc_html__( 'Manual', 'w3-total-cache' ),
2419
+ #: inc/options/general.php:250
2420
+ msgid "Auto"
2421
+ msgstr ""
2422
+
2423
+ # <option value="auto"<?php selected( $config->get_string( 'cdn.stackpath.ssl' ), 'auto' ); ?>>
2424
+ # <?php esc_html_e( 'Auto (determine connection type automatically)', 'w3-total-cache' ); ?>
2425
+ # </option>
2426
+ #: Cdn_Highwinds_Page_View.php:78 Cdn_LimeLight_Page_View.php:49
2427
+ #: Cdn_MaxCdn_Page_View.php:187 Cdn_RackSpaceCloudFiles_Page_View.php:96
2428
+ #: Cdn_StackPath2_Page_View.php:219 Cdn_StackPath_Page_View.php:146
2429
+ #: inc/options/cdn/akamai.php:73 inc/options/cdn/att.php:47
2430
+ #: inc/options/cdn/azure.php:56 inc/options/cdn/cf.php:103
2431
+ #: inc/options/cdn/cf2.php:95 inc/options/cdn/cotendo.php:54
2432
+ #: inc/options/cdn/edgecast.php:47 inc/options/cdn/ftp.php:200
2433
+ #: inc/options/cdn/mirror.php:33 inc/options/cdn/rscf.php:90
2434
+ #: inc/options/cdn/s3.php:109 inc/options/cdn/s3_compatible.php:85
2435
+ msgid "Auto (determine connection type automatically)"
2436
+ msgstr ""
2437
+
2438
+ # 'cdn.autoupload.enabled' => __( 'Export changed files automatically', 'w3-total-cache' ),
2439
+ # 'cdn.autoupload.interval' => __( 'Auto upload interval:', 'w3-total-cache' ),
2440
+ # 'cdn.queue.interval' => __( 'Re-transfer cycle interval:', 'w3-total-cache' ),
2441
+ #: Cdn_ConfigLabels.php:24
2442
+ msgid "Auto upload interval:"
2443
+ msgstr ""
2444
+
2445
+ # ),
2446
+ # 'description' => esc_html__( 'Auto-convert images on upload.', 'w3-total-cache' ),
2447
+ # 'disabled' => false,
2448
+ #: Extension_ImageService_Page_View.php:84
2449
+ msgid "Auto-convert images on upload."
2450
+ msgstr ""
2451
+
2452
+ # ),
2453
+ # 'label' => esc_html__( 'Auto-convert:', 'w3-total-cache' ),
2454
+ # 'control' => 'radiogroup',
2455
+ #: Extension_ImageService_Page_View.php:78
2456
+ msgid "Auto-convert:"
2457
+ msgstr ""
2458
+
2459
+ # <?php Util_Ui::e_config_label( 'cdn.autoupload.enabled' ); ?></label>
2460
+ # <p class="description"><?php esc_html_e( 'Automatically attempt to find and upload changed files.', 'w3-total-cache' ); ?></p>
2461
+ # </th>
2462
+ #: inc/options/cdn.php:629
2463
+ msgid "Automatically attempt to find and upload changed files."
2464
+ msgstr ""
2465
+
2466
+ # value="<?php echo esc_attr( $this->_config->get_string( 'cdn.import.files' ) ); ?>" size="100" />
2467
+ # <p class="description"><?php esc_html_e( 'Automatically import files hosted with 3rd parties of these types (if used in your posts / pages) to your media library.', 'w3-total-cache' ); ?></p>
2468
+ # </td>
2469
+ #: inc/options/cdn.php:723
2470
+ msgid ""
2471
+ "Automatically import files hosted with 3rd parties of these types (if used "
2472
+ "in your posts / pages) to your media library."
2473
+ msgstr ""
2474
+
2475
+ # 'label' => esc_html__( 'Mirage:', 'w3-total-cache' ),
2476
+ # 'description' => esc_html__( 'Automatically optimize image loading for website visitors on mobile devices', 'w3-total-cache' ),
2477
+ # )
2478
+ #: Extension_CloudFlare_Page_View.php:513
2479
+ msgid ""
2480
+ "Automatically optimize image loading for website visitors on mobile devices"
2481
+ msgstr ""
2482
+
2483
+ # 'author' => 'W3 EDGE',
2484
+ # 'description' => sprintf( __( 'Automatically ping (purge) FeedBurner feeds when pages / posts are modified. Default URL: %s', 'w3-total-cache' ),
2485
+ # !is_network_admin() ? home_url() : __( 'Network Admin has no main URL.', 'w3-total-cache' ) ),
2486
+ #: Extension_FeedBurner_Plugin_Admin.php:42
2487
+ msgid ""
2488
+ "Automatically ping (purge) FeedBurner feeds when pages / posts are modified. "
2489
+ "Default URL: %s"
2490
+ msgstr ""
2491
+
2492
+ # 'pgcache.reject.logged_roles' => __( 'Don\'t cache pages for following user roles', 'w3-total-cache' ),
2493
+ # 'pgcache.prime.enabled' => __( 'Automatically prime the page cache', 'w3-total-cache' ),
2494
+ # 'pgcache.prime.interval' => __( 'Update interval:', 'w3-total-cache' ),
2495
+ #: PgCache_ConfigLabels.php:18
2496
+ msgid "Automatically prime the page cache"
2497
+ msgstr ""
2498
+
2499
+ # 'label' => esc_html__( 'Mobile redirect:', 'w3-total-cache' ),
2500
+ # 'description' => esc_html__( 'Automatically redirect visitors on mobile devices to a mobile-optimized subdomain', 'w3-total-cache' ),
2501
+ # )
2502
+ #: Extension_CloudFlare_Page_View.php:483
2503
+ msgid ""
2504
+ "Automatically redirect visitors on mobile devices to a mobile-optimized "
2505
+ "subdomain"
2506
+ msgstr ""
2507
+
2508
+ # <th colspan="2">
2509
+ # <?php $this->checkbox( 'minify.upload', $this->_config->get_boolean( 'minify.auto' ) ); ?> <?php esc_html_e( 'Automatically upload minify files', 'w3-total-cache' ); ?></label>
2510
+ # <p class="description">
2511
+ #: inc/options/cdn.php:586
2512
+ msgid "Automatically upload minify files"
2513
+ msgstr ""
2514
+
2515
+ # <?php if ( function_exists( 'set_time_limit' ) ) : ?>
2516
+ # <span style="background-color: #33cc33"><?php esc_html_e( 'Available', 'w3-total-cache' ); ?></span>
2517
+ # <?php else : ?>
2518
+ #: inc/lightbox/self_test.php:312
2519
+ msgid "Available"
2520
+ msgstr ""
2521
+
2522
+ # $imageservice_button_text = $is_imageservice_active ?
2523
+ # ( is_network_admin() ? __( 'Available in sites', 'w3-total-cache' ) : __( 'Settings', 'w3-total-cache' ) ) :
2524
+ # ( is_network_admin() || ! is_multisite() ? __( 'Activate', 'w3-total-cache' ) : '' );
2525
+ #: FeatureShowcase_Plugin_Admin.php:209
2526
+ msgid "Available in sites"
2527
+ msgstr ""
2528
+
2529
+ # <div id="new-relic-extra-metrics">
2530
+ # <h4><?php esc_html_e( 'Average times', 'w3-total-cache' ); ?></h4>
2531
+ # <ul>
2532
+ #: Extension_NewRelic_Widget_View_Apm.php:28
2533
+ msgid "Average times"
2534
+ msgstr ""
2535
+
2536
+ # <div class="ustats_pagecache_request_time_ms">
2537
+ # <?php esc_html_e( 'Avg processing time: ', 'w3-total-cache' ); ?><span></span><?php esc_html_e( ' ms', 'w3-total-cache' ); ?>
2538
+ # </div>
2539
+ #: UsageStatistics_Page_View.php:53
2540
+ msgid "Avg processing time: "
2541
+ msgstr ""
2542
+
2543
+ # '<a href="' . esc_url( 'http://docs.amazonwebservices.com/IAM/latest/UserGuide/AccessPolicyLanguage_KeyConcepts.html' ) . '" target="_blank">',
2544
+ # '<acronym title="' . esc_attr__( 'AWS Identity and Access Management', 'w3-total-cache' ) . '">',
2545
+ # '</acronym>',
2546
+ #: inc/options/cdn/cf.php:23 inc/options/cdn/s3.php:29
2547
+ msgid "AWS Identity and Access Management"
2548
+ msgstr ""
2549
+
2550
+ # translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
2551
+ # __(
2552
+ # 'Bandwidth savings via Minify and %1$sHTTP%2$s compression of %3$sHTML%4$s, %5$sCSS%6$s, JavaScript and feeds',
2553
+ #. translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
2554
+ #: inc/options/about.php:70
2555
+ msgid ""
2556
+ "Bandwidth savings via Minify and %1$sHTTP%2$s compression of %3$sHTML%4$s, "
2557
+ "%5$sCSS%6$s, JavaScript and feeds"
2558
+ msgstr ""
2559
+
2560
+ # 'browsercache.security.csp' => __( 'Content Security Policy', 'w3-total-cache' ),
2561
+ # 'browsercache.security.csp.base' => __( 'base-uri:', 'w3-total-cache' ),
2562
+ # 'browsercache.security.csp.frame' => __( 'frame-src:', 'w3-total-cache' ),
2563
+ #: BrowserCache_ConfigLabels.php:61
2564
+ msgid "base-uri:"
2565
+ msgstr ""
2566
+
2567
+ # 'aggressive' => esc_html__( 'Aggressive (cache all static resources, including ones with a query string)', 'w3-total-cache' ),
2568
+ # 'basic' => esc_html__( 'Basic (cache most static resources (i.e., css, images, and JavaScript)', 'w3-total-cache' ),
2569
+ # 'simplified' => esc_html__( 'Simplified (ignore the query string when delivering a cached resource)', 'w3-total-cache' ),
2570
+ #: Extension_CloudFlare_Page_View.php:179
2571
+ msgid "Basic (cache most static resources (i.e., css, images, and JavaScript)"
2572
+ msgstr ""
2573
+
2574
+ # translators: 1 opening HTML span tag, 2 closing HTML span tag.
2575
+ # __(
2576
+ # 'Before %1$s&lt;/head&gt;%2$s',
2577
+ #. translators: 1 opening HTML span tag, 2 closing HTML span tag.
2578
+ #: inc/options/minify.php:327
2579
+ msgid "Before %1$s&lt;/head&gt;%2$s"
2580
+ msgstr ""
2581
+
2582
+ # 'minify.js.combine.body' => __( 'Combine only', 'w3-total-cache' ),
2583
+ # 'minify.js.footer.embed_type' => __( 'Before <span class="html-tag">&lt;/body&gt;</span>', 'w3-total-cache' ),
2584
+ # 'minify.js.combine.footer' => __( 'Combine only', 'w3-total-cache' ),
2585
+ #: Minify_ConfigLabels.php:27
2586
+ msgid "Before <span class=\"html-tag\">&lt;/body&gt;</span>"
2587
+ msgstr ""
2588
+
2589
+ #
2590
+ # <?php Util_Ui::postbox_header( esc_html__( 'Behavior Settings', 'w3-total-cache' ), '', 'behavior' ); ?>
2591
+ # <table class="form-table">
2592
+ #: Extension_NewRelic_Page_View_Apm.php:195 Extension_Swarmify_Page_View.php:44
2593
+ msgid "Behavior Settings"
2594
+ msgstr ""
2595
+
2596
+ # translators: 3 opening HTML a tag to iis.net WinCache for PHP download page, 4 closing HTML a tag.
2597
+ # __(
2598
+ # 'Best compatibility with %1$sIIS%2$s is realized via %3$sWinCache%4$s opcode cache.',
2599
+ #. translators: 3 opening HTML a tag to iis.net WinCache for PHP download page, 4 closing HTML a tag.
2600
+ #: inc/options/install.php:393
2601
+ msgid ""
2602
+ "Best compatibility with %1$sIIS%2$s is realized via %3$sWinCache%4$s opcode "
2603
+ "cache."
2604
+ msgstr ""
2605
+
2606
+ # 'memcached.password' => __( 'Memcached password:', 'w3-total-cache' ),
2607
+ # 'memcached.binary_protocol' => __( 'Binary protocol', 'w3-total-cache' ),
2608
+ # 'redis.servers' => __( 'Redis hostname:port / <acronym title="Internet Protocol">IP</acronym>:port:', 'w3-total-cache' ),
2609
+ #: Util_ConfigLabel.php:27
2610
+ msgid "Binary protocol"
2611
+ msgstr ""
2612
+
2613
+ # 'pgcache.purge.post' => __( 'Post page', 'w3-total-cache' ),
2614
+ # 'pgcache.purge.feed.blog' => __( 'Blog feed', 'w3-total-cache' ),
2615
+ # 'pgcache.purge.comments' => __( 'Post comments pages', 'w3-total-cache' ),
2616
+ #: PgCache_ConfigLabels.php:26
2617
+ msgid "Blog feed"
2618
+ msgstr ""
2619
+
2620
+ #. Author of the plugin
2621
+ msgid "BoldGrid"
2622
+ msgstr ""
2623
+
2624
+ # 'email' => esc_html__( 'Email Notification', 'w3-total-cache' ),
2625
+ # 'admin,email' => esc_html__( 'Both Admin &amp; Email Notification', 'w3-total-cache' ),
2626
+ # ),
2627
+ #: inc/options/minify.php:148
2628
+ msgid "Both Admin &amp; Email Notification"
2629
+ msgstr ""
2630
+
2631
+ # 'browser_cache' => array(
2632
+ # 'title' => esc_html__( 'Browser Cache', 'w3-total-cache' ),
2633
+ # 'icon' => 'dashicons-welcome-widgets-menus',
2634
+ #: FeatureShowcase_Plugin_Admin.php:444 inc/options/common/header.php:89
2635
+ #: inc/options/general.php:427 Root_AdminMenu.php:85 Root_AdminMenu.php:86
2636
+ #: SetupGuide_Plugin_Admin.php:1060 SetupGuide_Plugin_Admin.php:1221
2637
+ #: SetupGuide_Plugin_Admin.php:1254
2638
+ msgid "Browser Cache"
2639
+ msgstr ""
2640
+
2641
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
2642
+ # __(
2643
+ # 'Browser cache %1$sTTL%2$s (in seconds) specifies how long CloudFlare-cached resources will remain on your visitors\' computers.',
2644
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
2645
+ #: Extension_CloudFlare_Page_View.php:245
2646
+ msgid ""
2647
+ "Browser cache %1$sTTL%2$s (in seconds) specifies how long CloudFlare-cached "
2648
+ "resources will remain on your visitors' computers."
2649
+ msgstr ""
2650
+
2651
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
2652
+ # __(
2653
+ # 'Browser cache %1$sTTL%2$s:',
2654
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
2655
+ #: Extension_CloudFlare_Page_View.php:200
2656
+ msgid "Browser cache %1$sTTL%2$s:"
2657
+ msgstr ""
2658
+
2659
+ # if ( !$config->get_boolean( 'browsercache.enabled' ) )
2660
+ # $nr_recommends[] = __( 'Browser Cache and use compression', 'w3-total-cache' );
2661
+ #
2662
+ #: Extension_NewRelic_AdminNotes.php:25
2663
+ msgid "Browser Cache and use compression"
2664
+ msgstr ""
2665
+
2666
+ # return array_merge( $config_labels, array(
2667
+ # 'browsercache.enabled' => __( 'Browser Cache:', 'w3-total-cache' ),
2668
+ # 'browsercache.replace.exceptions' => __( 'Prevent caching exception list:', 'w3-total-cache' ),
2669
+ #: BrowserCache_ConfigLabels.php:7
2670
+ msgid "Browser Cache:"
2671
+ msgstr ""
2672
+
2673
+ # 'parent' => 'w3tc_flush',
2674
+ # 'title' => __( 'Browser Cache: Update Media Query String', 'w3-total-cache' ),
2675
+ # 'href' => wp_nonce_url( admin_url(
2676
+ #: BrowserCache_Plugin.php:376
2677
+ msgid "Browser Cache: Update Media Query String"
2678
+ msgstr ""
2679
+
2680
+ # translators: 1 HTML span tag indicating Browsercache enabled/disabled.
2681
+ # __(
2682
+ # 'Browser caching is currently %1$s.',
2683
+ #. translators: 1 HTML span tag indicating Browsercache enabled/disabled.
2684
+ #: inc/options/browsercache.php:23
2685
+ msgid "Browser caching is currently %1$s."
2686
+ msgstr ""
2687
+
2688
+ # 'label' => esc_html__( 'Browser integrity check:', 'w3-total-cache' ),
2689
+ # 'description' => esc_html__( 'Browser Integrity Check is similar to Bad Behavior and looks for common HTTP headers abused most commonly by spammers and denies access to your page. It will also challenge visitors that do not have a user agent or a non standard user agent (also commonly used by abuse bots, crawlers or visitors).', 'w3-total-cache' ),
2690
+ # )
2691
+ #: Extension_CloudFlare_Page_View.php:557
2692
+ msgid ""
2693
+ "Browser Integrity Check is similar to Bad Behavior and looks for common HTTP "
2694
+ "headers abused most commonly by spammers and denies access to your page. It "
2695
+ "will also challenge visitors that do not have a user agent or a non standard "
2696
+ "user agent (also commonly used by abuse bots, crawlers or visitors)."
2697
+ msgstr ""
2698
+
2699
+ # 'key' => 'browser_check',
2700
+ # 'label' => esc_html__( 'Browser integrity check:', 'w3-total-cache' ),
2701
+ # 'description' => esc_html__( 'Browser Integrity Check is similar to Bad Behavior and looks for common HTTP headers abused most commonly by spammers and denies access to your page. It will also challenge visitors that do not have a user agent or a non standard user agent (also commonly used by abuse bots, crawlers or visitors).', 'w3-total-cache' ),
2702
+ #: Extension_CloudFlare_Page_View.php:556
2703
+ msgid "Browser integrity check:"
2704
+ msgstr ""
2705
+
2706
+ # translators: 1: AWS S3 bucket name.
2707
+ # esc_html__( 'Bucket doesn\'t exist: %1$s.', 'w3-total-cache' ),
2708
+ # $this->_config['bucket']
2709
+ #. translators: 1: AWS S3 bucket name.
2710
+ #: CdnEngine_S3.php:394
2711
+ msgid "Bucket doesn't exist: %1$s."
2712
+ msgstr ""
2713
+
2714
+ # <tr>
2715
+ # <th><label for="cdn_s3_bucket"><?php esc_html_e( 'Bucket:', 'w3-total-cache' ); ?></label></th>
2716
+ # <td>
2717
+ #: inc/options/cdn/cf.php:62 inc/options/cdn/s3.php:68
2718
+ #: inc/options/cdn/s3_compatible.php:54
2719
+ msgid "Bucket:"
2720
+ msgstr ""
2721
+
2722
+ # <select name="action">
2723
+ # <option value="-1" selected="selected"><?php esc_html_e( 'Bulk Actions', 'w3-total-cache' ); ?></option>
2724
+ # <option value="activate-selected"><?php esc_html_e( 'Activate', 'w3-total-cache' ); ?></option>
2725
+ #: inc/options/extensions/list.php:31 inc/options/extensions/list.php:234
2726
+ msgid "Bulk Actions"
2727
+ msgstr ""
2728
+
2729
+ # class="button button-primary button-large"
2730
+ # value="<?php esc_attr_e( 'Buy now', 'w3-total-cache' ); ?>" />
2731
+ # </p>
2732
+ #: Generic_WidgetServices_View.php:35
2733
+ msgid "Buy now"
2734
+ msgstr ""
2735
+
2736
+ # translators: 1 HTML a tag to extension author page.
2737
+ # __(
2738
+ # 'By %s',
2739
+ #. translators: 1 HTML a tag to extension author page.
2740
+ #: inc/options/extensions/list.php:203
2741
+ msgid "By %s"
2742
+ msgstr ""
2743
+
2744
+ # translators: 1: Anchor/link open tag, 2: Anchor/link close tag.
2745
+ # esc_html__(
2746
+ # 'By allowing us to collect data about how W3 Total Cache is used, we can improve our features and experience for everyone. This data will not include any personally identifiable information. Feel free to review our %1$sterms of use and privacy policy%2$s.',
2747
+ #. translators: 1: Anchor/link open tag, 2: Anchor/link close tag.
2748
+ #: SetupGuide_Plugin_Admin.php:1101
2749
+ msgid ""
2750
+ "By allowing us to collect data about how W3 Total Cache is used, we can "
2751
+ "improve our features and experience for everyone. This data will not include "
2752
+ "any personally identifiable information. Feel free to review our %1$sterms "
2753
+ "of use and privacy policy%2$s."
2754
+ msgstr ""
2755
+
2756
+ # translators: 1: HTML break tag, 2: Anchor/link open tag, 3: Anchor/link close tag.
2757
+ # esc_html__(
2758
+ # 'By allowing us to collect data about how W3 Total Cache is used, we can improve our features and experience for everyone. This data will not include any personally identifiable information.%1$sFeel free to review our %2$sterms of use and privacy policy%3$s.',
2759
+ #. translators: 1: HTML break tag, 2: Anchor/link open tag, 3: Anchor/link close tag.
2760
+ #: Licensing_Plugin_Admin.php:307
2761
+ msgid ""
2762
+ "By allowing us to collect data about how W3 Total Cache is used, we can "
2763
+ "improve our features and experience for everyone. This data will not include "
2764
+ "any personally identifiable information.%1$sFeel free to review our "
2765
+ "%2$sterms of use and privacy policy%3$s."
2766
+ msgstr ""
2767
+
2768
+ # <?php $this->checkbox( 'pgcache.reject.front_page' ); ?> <?php Util_Ui::e_config_label( 'pgcache.reject.front_page' ); ?></label>
2769
+ # <p class="description"><?php esc_html_e( 'By default the front page is cached when using static front page in reading settings.', 'w3-total-cache' ); ?></p>
2770
+ # </th>
2771
+ #: inc/options/pgcache.php:71
2772
+ msgid ""
2773
+ "By default the front page is cached when using static front page in reading "
2774
+ "settings."
2775
+ msgstr ""
2776
+
2777
+ # <div><p>' .
2778
+ # esc_html__(
2779
+ # 'By default, this feature is disabled. We recommend using Redis or Memcached, otherwise leave this feature disabled as the server database engine may be faster than using disk caching.',
2780
+ #: SetupGuide_Plugin_Admin.php:1185
2781
+ msgid ""
2782
+ "By default, this feature is disabled. We recommend using Redis or Memcached,"
2783
+ " otherwise leave this feature disabled as the server database engine may be "
2784
+ "faster than using disk caching."
2785
+ msgstr ""
2786
+
2787
+ #: inc/options/pgcache.php:447
2788
+ msgid "Cache"
2789
+ msgstr ""
2790
+
2791
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
2792
+ # __(
2793
+ # 'Cache %1$sSSL%2$s requests (uniquely) for improved performance.',
2794
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
2795
+ #: inc/options/pgcache.php:109
2796
+ msgid "Cache %1$sSSL%2$s requests (uniquely) for improved performance."
2797
+ msgstr ""
2798
+
2799
+ # 'pgcache.cache.query' => __( 'Cache <acronym title="Uniform Resource Identifier">URI</acronym>s with query string variables', 'w3-total-cache' ),
2800
+ # 'pgcache.cache.404' => __( 'Cache 404 (not found) pages', 'w3-total-cache' ),
2801
+ # 'pgcache.reject.logged' => __( 'Don\'t cache pages for logged in users', 'w3-total-cache' ),
2802
+ #: PgCache_ConfigLabels.php:15
2803
+ msgid "Cache 404 (not found) pages"
2804
+ msgstr ""
2805
+
2806
+ # 'pgcache.cache.feed' => __( 'Cache feeds: site, categories, tags, comments', 'w3-total-cache' ),
2807
+ # 'pgcache.cache.ssl' => __( 'Cache <acronym title="Secure Socket Layer">SSL</acronym> (<acronym title="HyperText Transfer Protocol over SSL">HTTPS</acronym>) requests', 'w3-total-cache' ),
2808
+ # 'pgcache.cache.query' => __( 'Cache <acronym title="Uniform Resource Identifier">URI</acronym>s with query string variables', 'w3-total-cache' ),
2809
+ #: PgCache_ConfigLabels.php:13
2810
+ msgid ""
2811
+ "Cache <acronym title=\"Secure Socket Layer\">SSL</acronym> (<acronym "
2812
+ "title=\"HyperText Transfer Protocol over SSL\">HTTPS</acronym>) requests"
2813
+ msgstr ""
2814
+
2815
+ # 'pgcache.cache.ssl' => __( 'Cache <acronym title="Secure Socket Layer">SSL</acronym> (<acronym title="HyperText Transfer Protocol over SSL">HTTPS</acronym>) requests', 'w3-total-cache' ),
2816
+ # 'pgcache.cache.query' => __( 'Cache <acronym title="Uniform Resource Identifier">URI</acronym>s with query string variables', 'w3-total-cache' ),
2817
+ # 'pgcache.cache.404' => __( 'Cache 404 (not found) pages', 'w3-total-cache' ),
2818
+ #: PgCache_ConfigLabels.php:14
2819
+ msgid ""
2820
+ "Cache <acronym title=\"Uniform Resource Identifier\">URI</acronym>s with "
2821
+ "query string variables"
2822
+ msgstr ""
2823
+
2824
+ # 'control' => 'checkbox',
2825
+ # 'label' => esc_html__( 'Cache alias hostnames:', 'w3-total-cache' ),
2826
+ # 'checkbox_label' => esc_html__( 'Enable', 'w3-total-cache' ),
2827
+ #: inc/options/pgcache.php:180
2828
+ msgid "Cache alias hostnames:"
2829
+ msgstr ""
2830
+
2831
+ # 'checkbox_label' => esc_html__( 'Enable', 'w3-total-cache' ),
2832
+ # 'label' => esc_html__( 'Cache author/tag/categories/term post loop:', 'w3-total-cache' ),
2833
+ # 'description' => esc_html__( 'Caches the posts listed on tag, categories, author and other term pages, pagination is supported.', 'w3-total-cache' ),
2834
+ #: Extension_Genesis_Page_View.php:91
2835
+ msgid "Cache author/tag/categories/term post loop:"
2836
+ msgstr ""
2837
+
2838
+ # 'checkbox_label' => esc_html__( 'Enable', 'w3-total-cache' ),
2839
+ # 'label' => esc_html__( 'Cache comments:', 'w3-total-cache' ),
2840
+ # 'description' => esc_html__( 'Caches the comments loop, pagination is supported.', 'w3-total-cache' ),
2841
+ #: Extension_Genesis_Page_View.php:134
2842
+ msgid "Cache comments:"
2843
+ msgstr ""
2844
+
2845
+ # 'browsercache.cssjs.cache.control' => __( 'Set cache control header', 'w3-total-cache' ),
2846
+ # 'browsercache.cssjs.cache.policy' => __( 'Cache Control policy:', 'w3-total-cache' ),
2847
+ # 'browsercache.cssjs.etag' => __( 'Set entity tag (eTag)', 'w3-total-cache' ),
2848
+ #: BrowserCache_ConfigLabels.php:15 BrowserCache_ConfigLabels.php:26
2849
+ #: BrowserCache_ConfigLabels.php:35
2850
+ msgid "Cache Control policy:"
2851
+ msgstr ""
2852
+
2853
+ # 'pgcache.reject.custom' => __( 'Never cache pages that use these custom fields:', 'w3-total-cache' ),
2854
+ # 'pgcache.accept.files' => __( 'Cache exception list:', 'w3-total-cache' ),
2855
+ # 'pgcache.accept.uri' => __( 'Non-trailing slash pages:', 'w3-total-cache' ),
2856
+ #: PgCache_ConfigLabels.php:54
2857
+ msgid "Cache exception list:"
2858
+ msgstr ""
2859
+
2860
+ # 'pgcache.reject.front_page' => __( 'Don\'t cache front page', 'w3-total-cache' ),
2861
+ # 'pgcache.cache.feed' => __( 'Cache feeds: site, categories, tags, comments', 'w3-total-cache' ),
2862
+ # 'pgcache.cache.ssl' => __( 'Cache <acronym title="Secure Socket Layer">SSL</acronym> (<acronym title="HyperText Transfer Protocol over SSL">HTTPS</acronym>) requests', 'w3-total-cache' ),
2863
+ #: PgCache_ConfigLabels.php:12
2864
+ msgid "Cache feeds: site, categories, tags, comments"
2865
+ msgstr ""
2866
+
2867
+ # 'php_php_requests_pagecache_miss_fill',
2868
+ # esc_html__( 'Cache Fill', 'w3-total-cache' ),
2869
+ # false,
2870
+ #: UsageStatistics_Page_View.php:125
2871
+ msgid "Cache Fill"
2872
+ msgstr ""
2873
+
2874
+ # <div class="ustats_dbcache_flushes">
2875
+ # <?php esc_html_e( 'Cache flushes: ', 'w3-total-cache' ); ?><span></span>
2876
+ # </div>
2877
+ #: UsageStatistics_Page_View.php:330
2878
+ msgid "Cache flushes: "
2879
+ msgstr ""
2880
+
2881
+ # 'checkbox_label' => esc_html__( 'Enable', 'w3-total-cache' ),
2882
+ # 'label' => esc_html__( 'Cache footer:', 'w3-total-cache' ),
2883
+ # 'description' => esc_html__( 'Caches wp_footer loop.', 'w3-total-cache' ),
2884
+ #: Extension_Genesis_Page_View.php:194
2885
+ msgid "Cache footer:"
2886
+ msgstr ""
2887
+
2888
+ # 'pgcache.debug' => __( 'Page Cache', 'w3-total-cache' ),
2889
+ # 'pgcache.cache.home' => get_option( 'show_on_front' ) == 'posts' ? __( 'Cache front page', 'w3-total-cache' ): __( 'Cache posts page', 'w3-total-cache' ),
2890
+ # 'pgcache.reject.front_page' => __( 'Don\'t cache front page', 'w3-total-cache' ),
2891
+ #: PgCache_ConfigLabels.php:10
2892
+ msgid "Cache front page"
2893
+ msgstr ""
2894
+
2895
+ # 'checkbox_label' => esc_html__( 'Enable', 'w3-total-cache' ),
2896
+ # 'label' => esc_html__( 'Cache front page post loop:', 'w3-total-cache' ),
2897
+ # 'description' => esc_html__( 'Caches the front page post loop, pagination is supported.', 'w3-total-cache' ),
2898
+ #: Extension_Genesis_Page_View.php:82
2899
+ msgid "Cache front page post loop:"
2900
+ msgstr ""
2901
+
2902
+ # 'checkbox_label' => esc_html__( 'Enable', 'w3-total-cache' ),
2903
+ # 'label' => esc_html__( 'Cache genesis footer:', 'w3-total-cache' ),
2904
+ # 'description' => esc_html__( 'Caches footer loop.', 'w3-total-cache' ),
2905
+ #: Extension_Genesis_Page_View.php:185
2906
+ msgid "Cache genesis footer:"
2907
+ msgstr ""
2908
+
2909
+ # 'cache_groups' => array(
2910
+ # 'title' => esc_html__( 'Cache Groups', 'w3-total-cache' ),
2911
+ # 'icon' => 'dashicons-image-filter',
2912
+ #: FeatureShowcase_Plugin_Admin.php:468 Root_AdminMenu.php:91
2913
+ #: Root_AdminMenu.php:92
2914
+ msgid "Cache Groups"
2915
+ msgstr ""
2916
+
2917
+ # 'checkbox_label' => esc_html__( 'Enable', 'w3-total-cache' ),
2918
+ # 'description' => esc_html__( 'Cache header loop. This is the area where the logo is located.', 'w3-total-cache' ),
2919
+ # )
2920
+ #: Extension_Genesis_Page_View.php:48
2921
+ msgid "Cache header loop. This is the area where the logo is located."
2922
+ msgstr ""
2923
+
2924
+ # 'control' => 'checkbox',
2925
+ # 'label' => esc_html__( 'Cache header:', 'w3-total-cache' ),
2926
+ # 'checkbox_label' => esc_html__( 'Enable', 'w3-total-cache' ),
2927
+ #: Extension_Genesis_Page_View.php:46
2928
+ msgid "Cache header:"
2929
+ msgstr ""
2930
+
2931
+ # <div class="ustats_pagecache_requests_hit_rate">
2932
+ # <?php esc_html_e( 'Cache hit rate: ', 'w3-total-cache' ); ?><span></span>
2933
+ # </div>
2934
+ #: UsageStatistics_Page_View.php:49
2935
+ msgid "Cache hit rate: "
2936
+ msgstr ""
2937
+
2938
+ # <li>
2939
+ # <span class="w3tcstackpath_summary_col1"><?php esc_html_e( 'Cache Hits', 'w3-total-cache' ); ?>:</span>
2940
+ # <span class="w3tcstackpath_summary_col2">
2941
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:55
2942
+ #: Cdn_StackPath_Widget_View_Authorized.php:44
2943
+ msgid "Cache Hits"
2944
+ msgstr ""
2945
+
2946
+ # <div class="ustats_pagecache_requests_hit">
2947
+ # <?php esc_html_e( 'Cache hits: ', 'w3-total-cache' ); ?><span></span>
2948
+ # </div>
2949
+ #: UsageStatistics_Page_View.php:46
2950
+ msgid "Cache hits: "
2951
+ msgstr ""
2952
+
2953
+ # 'key' => 'cache_level',
2954
+ # 'label' => esc_html__( 'Cache level:', 'w3-total-cache' ),
2955
+ # 'values' => array(
2956
+ #: Extension_CloudFlare_Page_View.php:175
2957
+ msgid "Cache level:"
2958
+ msgstr ""
2959
+
2960
+ # <li>
2961
+ # <span class="w3tcstackpath_summary_col1"><?php esc_html_e( 'Cache Misses', 'w3-total-cache' ); ?>:</span>
2962
+ # <span class="w3tcstackpath_summary_col2">
2963
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:62
2964
+ #: Cdn_StackPath_Widget_View_Authorized.php:51
2965
+ msgid "Cache Misses"
2966
+ msgstr ""
2967
+
2968
+ # 'checkbox_label' => esc_html__( 'Enable', 'w3-total-cache' ),
2969
+ # 'label' => esc_html__( 'Cache pings:', 'w3-total-cache' ),
2970
+ # 'description' => esc_html__( 'Caches the ping loop, pagination is supported. One per line.', 'w3-total-cache' ),
2971
+ #: Extension_Genesis_Page_View.php:143
2972
+ msgid "Cache pings:"
2973
+ msgstr ""
2974
+
2975
+ # 'pgcache.debug' => __( 'Page Cache', 'w3-total-cache' ),
2976
+ # 'pgcache.cache.home' => get_option( 'show_on_front' ) == 'posts' ? __( 'Cache front page', 'w3-total-cache' ): __( 'Cache posts page', 'w3-total-cache' ),
2977
+ # 'pgcache.reject.front_page' => __( 'Don\'t cache front page', 'w3-total-cache' ),
2978
+ #: PgCache_ConfigLabels.php:10
2979
+ msgid "Cache posts page"
2980
+ msgstr ""
2981
+
2982
+ #
2983
+ # <?php Util_Ui::postbox_header( esc_html__( 'Cache Preload', 'w3-total-cache' ), '', 'cache_preload' ); ?>
2984
+ # <table class="form-table">
2985
+ #: inc/options/common/header.php:187 inc/options/pgcache.php:235
2986
+ msgid "Cache Preload"
2987
+ msgstr ""
2988
+
2989
+ # 'control' => 'checkbox',
2990
+ # 'label' => esc_html__( 'Cache primary navigation:', 'w3-total-cache' ),
2991
+ # 'checkbox_label' => esc_html__( 'Enable', 'w3-total-cache' ),
2992
+ #: Extension_Genesis_Page_View.php:55
2993
+ msgid "Cache primary navigation:"
2994
+ msgstr ""
2995
+
2996
+ # 'control' => 'checkbox',
2997
+ # 'label' => esc_html__( 'Cache secondary navigation:', 'w3-total-cache' ),
2998
+ # 'checkbox_label' => esc_html__( 'Enable', 'w3-total-cache' ),
2999
+ #: Extension_Genesis_Page_View.php:64
3000
+ msgid "Cache secondary navigation:"
3001
+ msgstr ""
3002
+
3003
+ # 'checkbox_label' => esc_html__( 'Enable', 'w3-total-cache' ),
3004
+ # 'label' => esc_html__( 'Cache sidebar:', 'w3-total-cache' ),
3005
+ # 'description' => esc_html__( 'Caches sidebar loop, the widget area.', 'w3-total-cache' ),
3006
+ #: Extension_Genesis_Page_View.php:160
3007
+ msgid "Cache sidebar:"
3008
+ msgstr ""
3009
+
3010
+ # 'checkbox_label' => esc_html__( 'Enable', 'w3-total-cache' ),
3011
+ # 'label' => esc_html__( 'Cache single post / page:', 'w3-total-cache' ),
3012
+ # 'description' => esc_html__( 'Caches the single post / page loop, pagination is supported.', 'w3-total-cache' ),
3013
+ #: Extension_Genesis_Page_View.php:117
3014
+ msgid "Cache single post / page:"
3015
+ msgstr ""
3016
+
3017
+ # <div class="ustats_pagecache_size_used">
3018
+ # <?php esc_html_e( 'Cache size: ', 'w3-total-cache' ); ?><span></span>
3019
+ # </div>
3020
+ #: UsageStatistics_Page_View.php:33
3021
+ msgid "Cache size: "
3022
+ msgstr ""
3023
+
3024
+ # <div class="metabox-holder" style="display: none">
3025
+ # <?php Util_Ui::postbox_header( esc_html__( 'Cache Storage', 'w3-total-cache' ) ); ?>
3026
+ #
3027
+ #: UsageStatistics_Page_View.php:400
3028
+ msgid "Cache Storage"
3029
+ msgstr ""
3030
+
3031
+ # translators: 3 closing HTML acronym tag, 4 closing HTML acronym tag.
3032
+ # __(
3033
+ # 'Cache the specified pages / directories even if listed in the "never cache the following pages" field. Supports regular expression (See %1$s%2$sFAQ%3$s%4$s)',
3034
+ #. translators: 3 closing HTML acronym tag, 4 closing HTML acronym tag.
3035
+ #: inc/options/pgcache.php:757
3036
+ msgid ""
3037
+ "Cache the specified pages / directories even if listed in the \"never cache "
3038
+ "the following pages\" field. Supports regular expression (See "
3039
+ "%1$s%2$sFAQ%3$s%4$s)"
3040
+ msgstr ""
3041
+
3042
+ # cols="40" rows="5"><?php echo esc_textarea( implode( "\r\n", $this->_config->get_array( 'pgcache.accept.uri' ) ) ); ?></textarea>
3043
+ # <p class="description"><?php esc_html_e( 'Cache the specified pages even if they don\'t have trailing slash.', 'w3-total-cache' ); ?></p>
3044
+ # </td>
3045
+ #: inc/options/pgcache.php:787
3046
+ msgid "Cache the specified pages even if they don't have trailing slash."
3047
+ msgstr ""
3048
+
3049
+ # <label for="newrelic_cache_time">
3050
+ # <?php esc_html_e( 'Cache time:', 'w3-total-cache' ); ?>
3051
+ # </label>
3052
+ #: Extension_CloudFlare_GeneralPage_View.php:19
3053
+ #: Extension_CloudFlare_Page_View.php:126
3054
+ #: Extension_NewRelic_Page_View_Apm.php:180
3055
+ msgid "Cache time:"
3056
+ msgstr ""
3057
+
3058
+ # 'key' => 'stats.enabled',
3059
+ # 'label' => esc_html__( 'Cache usage statistics', 'w3-total-cache' ),
3060
+ # 'control' => 'checkbox',
3061
+ #: UsageStatistics_GeneralPage_View.php:18
3062
+ msgid "Cache usage statistics"
3063
+ msgstr ""
3064
+
3065
+ # <option value="cache"<?php selected( $value, 'cache' ); ?>>cache ("public")</option>
3066
+ # <option value="cache_public_maxage"<?php selected( $value, 'cache_public_maxage' ); ?><?php disabled( $is_nginx && $cssjs_expires ); ?>><?php esc_html_e( 'cache with max-age ("public, max-age=EXPIRES_SECONDS")', 'w3-total-cache' ); ?></option>
3067
+ # <option value="cache_validation"<?php selected( $value, 'cache_validation' ); ?>><?php esc_html_e( 'cache with validation ("public, must-revalidate, proxy-revalidate")', 'w3-total-cache' ); ?></option>
3068
+ #: inc/options/browsercache.php:420 inc/options/browsercache.php:566
3069
+ #: inc/options/browsercache.php:649
3070
+ msgid "cache with max-age (\"public, max-age=EXPIRES_SECONDS\")"
3071
+ msgstr ""
3072
+
3073
+ # <option value="cache_validation"<?php selected( $value, 'cache_validation' ); ?>><?php esc_html_e( 'cache with validation ("public, must-revalidate, proxy-revalidate")', 'w3-total-cache' ); ?></option>
3074
+ # <option value="cache_maxage"<?php selected( $value, 'cache_maxage' ); ?><?php disabled( $is_nginx && $cssjs_expires ); ?>><?php esc_html_e( 'cache with max-age and validation ("max-age=EXPIRES_SECONDS, public, must-revalidate, proxy-revalidate")', 'w3-total-cache' ); ?></option>
3075
+ # <option value="cache_noproxy"<?php selected( $value, 'cache_noproxy' ); ?>><?php esc_html_e( 'cache without proxy ("private, must-revalidate")', 'w3-total-cache' ); ?></option>
3076
+ #: inc/options/browsercache.php:422 inc/options/browsercache.php:568
3077
+ #: inc/options/browsercache.php:651
3078
+ msgid ""
3079
+ "cache with max-age and validation (\"max-age=EXPIRES_SECONDS, public, must-"
3080
+ "revalidate, proxy-revalidate\")"
3081
+ msgstr ""
3082
+
3083
+ # <option value="cache_public_maxage"<?php selected( $value, 'cache_public_maxage' ); ?><?php disabled( $is_nginx && $cssjs_expires ); ?>><?php esc_html_e( 'cache with max-age ("public, max-age=EXPIRES_SECONDS")', 'w3-total-cache' ); ?></option>
3084
+ # <option value="cache_validation"<?php selected( $value, 'cache_validation' ); ?>><?php esc_html_e( 'cache with validation ("public, must-revalidate, proxy-revalidate")', 'w3-total-cache' ); ?></option>
3085
+ # <option value="cache_maxage"<?php selected( $value, 'cache_maxage' ); ?><?php disabled( $is_nginx && $cssjs_expires ); ?>><?php esc_html_e( 'cache with max-age and validation ("max-age=EXPIRES_SECONDS, public, must-revalidate, proxy-revalidate")', 'w3-total-cache' ); ?></option>
3086
+ #: inc/options/browsercache.php:421 inc/options/browsercache.php:567
3087
+ #: inc/options/browsercache.php:650
3088
+ msgid "cache with validation (\"public, must-revalidate, proxy-revalidate\")"
3089
+ msgstr ""
3090
+
3091
+ # <option value="cache_maxage"<?php selected( $value, 'cache_maxage' ); ?><?php disabled( $is_nginx && $cssjs_expires ); ?>><?php esc_html_e( 'cache with max-age and validation ("max-age=EXPIRES_SECONDS, public, must-revalidate, proxy-revalidate")', 'w3-total-cache' ); ?></option>
3092
+ # <option value="cache_noproxy"<?php selected( $value, 'cache_noproxy' ); ?>><?php esc_html_e( 'cache without proxy ("private, must-revalidate")', 'w3-total-cache' ); ?></option>
3093
+ # <option value="no_cache"<?php selected( $value, 'no_cache' ); ?>><?php esc_html_e( 'don\'t cache ("max-age=0, private, no-store, no-cache, must-revalidate")', 'w3-total-cache' ); ?></option>
3094
+ #: inc/options/browsercache.php:423 inc/options/browsercache.php:569
3095
+ #: inc/options/browsercache.php:652
3096
+ msgid "cache without proxy (\"private, must-revalidate\")"
3097
+ msgstr ""
3098
+
3099
+ # 'control' => 'checkbox',
3100
+ # 'label' => esc_html__( 'Cache wp_head loop:', 'w3-total-cache' ),
3101
+ # 'checkbox_label' => esc_html__( 'Enable', 'w3-total-cache' ),
3102
+ #: Extension_Genesis_Page_View.php:37
3103
+ msgid "Cache wp_head loop:"
3104
+ msgstr ""
3105
+
3106
+ # 'checkbox_label' => esc_html__( 'Enable', 'w3-total-cache' ),
3107
+ # 'description' => esc_html__( 'Cache wp_head. This includes the embedded CSS, JS etc.', 'w3-total-cache' ),
3108
+ # )
3109
+ #: Extension_Genesis_Page_View.php:39
3110
+ msgid "Cache wp_head. This includes the embedded CSS, JS etc."
3111
+ msgstr ""
3112
+
3113
+ # <th>' . esc_html__( 'File', 'w3-total-cache' ) . '</th>
3114
+ # <th>' . esc_html__( 'Cache-Control Header', 'w3-total-cache' ) . '</th>
3115
+ # </tr>
3116
+ #: SetupGuide_Plugin_Admin.php:1262
3117
+ msgid "Cache-Control Header"
3118
+ msgstr ""
3119
+
3120
+ # <label for="cookiegroup_<?php echo esc_attr( $group ); ?>_cache">
3121
+ # <?php esc_html_e( 'Cache:', 'w3-total-cache' ); ?>
3122
+ # </label>
3123
+ #: CacheGroups_Plugin_Admin_View.php:283
3124
+ msgid "Cache:"
3125
+ msgstr ""
3126
+
3127
+ # $strings[] = sprintf( '%1$s%2$d', str_pad( __( 'Total queries: ', 'w3-total-cache' ), 20 ), $this->query_total );
3128
+ # $strings[] = sprintf( '%1$s%2$d', str_pad( __( 'Cached queries: ', 'w3-total-cache' ), 20 ), $this->query_hits );
3129
+ # $strings[] = sprintf( '%1$s%2$.4f', str_pad( __( 'Total query time: ', 'w3-total-cache' ), 20 ), $this->time_total );
3130
+ #: DbCache_WpdbInjection_QueryCaching.php:903
3131
+ msgid "Cached queries: "
3132
+ msgstr ""
3133
+
3134
+ # 'label' => esc_html__( 'Cache genesis footer:', 'w3-total-cache' ),
3135
+ # 'description' => esc_html__( 'Caches footer loop.', 'w3-total-cache' ),
3136
+ # )
3137
+ #: Extension_Genesis_Page_View.php:186
3138
+ msgid "Caches footer loop."
3139
+ msgstr ""
3140
+
3141
+ # 'checkbox_label' => esc_html__( 'Enable', 'w3-total-cache' ),
3142
+ # 'description' => esc_html__( 'Caches secondary navigation filter; per page.', 'w3-total-cache' ),
3143
+ # )
3144
+ #: Extension_Genesis_Page_View.php:66
3145
+ msgid "Caches secondary navigation filter; per page."
3146
+ msgstr ""
3147
+
3148
+ # 'label' => esc_html__( 'Cache sidebar:', 'w3-total-cache' ),
3149
+ # 'description' => esc_html__( 'Caches sidebar loop, the widget area.', 'w3-total-cache' ),
3150
+ # )
3151
+ #: Extension_Genesis_Page_View.php:161
3152
+ msgid "Caches sidebar loop, the widget area."
3153
+ msgstr ""
3154
+
3155
+ # 'label' => esc_html__( 'Cache comments:', 'w3-total-cache' ),
3156
+ # 'description' => esc_html__( 'Caches the comments loop, pagination is supported.', 'w3-total-cache' ),
3157
+ # )
3158
+ #: Extension_Genesis_Page_View.php:135
3159
+ msgid "Caches the comments loop, pagination is supported."
3160
+ msgstr ""
3161
+
3162
+ # 'label' => esc_html__( 'Cache front page post loop:', 'w3-total-cache' ),
3163
+ # 'description' => esc_html__( 'Caches the front page post loop, pagination is supported.', 'w3-total-cache' ),
3164
+ # )
3165
+ #: Extension_Genesis_Page_View.php:83
3166
+ msgid "Caches the front page post loop, pagination is supported."
3167
+ msgstr ""
3168
+
3169
+ # 'checkbox_label' => esc_html__( 'Enable', 'w3-total-cache' ),
3170
+ # 'description' => esc_html__( 'Caches the navigation filter; per page.', 'w3-total-cache' ),
3171
+ # )
3172
+ #: Extension_Genesis_Page_View.php:57
3173
+ msgid "Caches the navigation filter; per page."
3174
+ msgstr ""
3175
+
3176
+ # 'label' => esc_html__( 'Cache pings:', 'w3-total-cache' ),
3177
+ # 'description' => esc_html__( 'Caches the ping loop, pagination is supported. One per line.', 'w3-total-cache' ),
3178
+ # )
3179
+ #: Extension_Genesis_Page_View.php:144
3180
+ msgid "Caches the ping loop, pagination is supported. One per line."
3181
+ msgstr ""
3182
+
3183
+ # 'label' => esc_html__( 'Cache author/tag/categories/term post loop:', 'w3-total-cache' ),
3184
+ # 'description' => esc_html__( 'Caches the posts listed on tag, categories, author and other term pages, pagination is supported.', 'w3-total-cache' ),
3185
+ # )
3186
+ #: Extension_Genesis_Page_View.php:92
3187
+ msgid ""
3188
+ "Caches the posts listed on tag, categories, author and other term pages, "
3189
+ "pagination is supported."
3190
+ msgstr ""
3191
+
3192
+ # 'label' => esc_html__( 'Cache single post / page:', 'w3-total-cache' ),
3193
+ # 'description' => esc_html__( 'Caches the single post / page loop, pagination is supported.', 'w3-total-cache' ),
3194
+ # )
3195
+ #: Extension_Genesis_Page_View.php:118
3196
+ msgid "Caches the single post / page loop, pagination is supported."
3197
+ msgstr ""
3198
+
3199
+ # 'label' => esc_html__( 'Cache footer:', 'w3-total-cache' ),
3200
+ # 'description' => esc_html__( 'Caches wp_footer loop.', 'w3-total-cache' ),
3201
+ # )
3202
+ #: Extension_Genesis_Page_View.php:195
3203
+ msgid "Caches wp_footer loop."
3204
+ msgstr ""
3205
+
3206
+ # 'checkbox_label' => esc_html__( 'Enable', 'w3-total-cache' ),
3207
+ # 'description' => esc_html__( 'Caching database objects decreases the response time of your site. Best used if object caching is not possible.', 'w3-total-cache' ),
3208
+ # )
3209
+ #: inc/options/general.php:348
3210
+ msgid ""
3211
+ "Caching database objects decreases the response time of your site. Best used "
3212
+ "if object caching is not possible."
3213
+ msgstr ""
3214
+
3215
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
3216
+ # __(
3217
+ # 'Caching of (minified) %1$sCSS%2$s and JavaScript in memory, on disk or on %3$sCDN%4$s',
3218
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
3219
+ #: inc/options/about.php:135
3220
+ msgid ""
3221
+ "Caching of (minified) %1$sCSS%2$s and JavaScript in memory, on disk or on "
3222
+ "%3$sCDN%4$s"
3223
+ msgstr ""
3224
+
3225
+ # </li>
3226
+ # <li><?php esc_html_e( 'Caching of database objects in memory or on disk', 'w3-total-cache' ); ?></li>
3227
+ # <li><?php esc_html_e( 'Caching of objects in memory or on disk', 'w3-total-cache' ); ?></li>
3228
+ #: inc/options/about.php:152
3229
+ msgid "Caching of database objects in memory or on disk"
3230
+ msgstr ""
3231
+
3232
+ # <li><?php esc_html_e( 'Caching of objects in memory or on disk', 'w3-total-cache' ); ?></li>
3233
+ # <li><?php esc_html_e( 'Caching of feeds (site, categories, tags, comments, search results) in memory or on disk', 'w3-total-cache' ); ?></li>
3234
+ # <li>
3235
+ #: inc/options/about.php:154
3236
+ msgid ""
3237
+ "Caching of feeds (site, categories, tags, comments, search results) in "
3238
+ "memory or on disk"
3239
+ msgstr ""
3240
+
3241
+ # <li><?php esc_html_e( 'Caching of database objects in memory or on disk', 'w3-total-cache' ); ?></li>
3242
+ # <li><?php esc_html_e( 'Caching of objects in memory or on disk', 'w3-total-cache' ); ?></li>
3243
+ # <li><?php esc_html_e( 'Caching of feeds (site, categories, tags, comments, search results) in memory or on disk', 'w3-total-cache' ); ?></li>
3244
+ #: inc/options/about.php:153
3245
+ msgid "Caching of objects in memory or on disk"
3246
+ msgstr ""
3247
+
3248
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
3249
+ # __(
3250
+ # 'Caching of pages / posts in memory or on disk or on %1$sCDN%2$s (mirror only)',
3251
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
3252
+ #: inc/options/about.php:115
3253
+ msgid ""
3254
+ "Caching of pages / posts in memory or on disk or on %1$sCDN%2$s (mirror only)"
3255
+ msgstr ""
3256
+
3257
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
3258
+ # __(
3259
+ # 'Caching of search results pages (i.e. %1$sURI%2$ss with query string variables) in memory or on disk',
3260
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
3261
+ #: inc/options/about.php:160
3262
+ msgid ""
3263
+ "Caching of search results pages (i.e. %1$sURI%2$ss with query string "
3264
+ "variables) in memory or on disk"
3265
+ msgstr ""
3266
+
3267
+ # 'checkbox_label' => esc_html__( 'Enable', 'w3-total-cache' ),
3268
+ # 'description' => esc_html__( 'Caching pages will reduce the response time of your site and increase the scale of your web server.', 'w3-total-cache' ),
3269
+ # )
3270
+ #: inc/options/general.php:116
3271
+ msgid ""
3272
+ "Caching pages will reduce the response time of your site and increase the "
3273
+ "scale of your web server."
3274
+ msgstr ""
3275
+
3276
+ # 'caching_stats' => array(
3277
+ # 'title' => esc_html__( 'Caching Statistics', 'w3-total-cache' ),
3278
+ # 'icon' => 'dashicons-chart-line',
3279
+ #: FeatureShowcase_Plugin_Admin.php:336 UsageStatistics_Widget.php:25
3280
+ msgid "Caching Statistics"
3281
+ msgstr ""
3282
+
3283
+ # <canvas id="w3tcus_objectcache_time_chart"></canvas>
3284
+ # <?php esc_html_e( 'Calls', 'w3-total-cache' ); ?>
3285
+ # <canvas id="w3tcus_objectcache_chart"></canvas>
3286
+ #: UsageStatistics_Page_View.php:286
3287
+ msgid "Calls"
3288
+ msgstr ""
3289
+
3290
+ # <div class="ustats_fragmentcache_calls_total">
3291
+ # <?php esc_html_e( 'Calls/period: ', 'w3-total-cache' ); ?><span></span>
3292
+ # </div>
3293
+ #: UsageStatistics_Page_View.php:295 UsageStatistics_Page_View.php:321
3294
+ #: UsageStatistics_Page_View.php:350
3295
+ msgid "Calls/period: "
3296
+ msgstr ""
3297
+
3298
+ # <div class="ustats_objectcache_calls_per_second">
3299
+ # <?php esc_html_e( 'Calls/sec: ', 'w3-total-cache' ); ?><span></span>
3300
+ # </div>
3301
+ #: UsageStatistics_Page_View.php:278 UsageStatistics_Page_View.php:298
3302
+ #: UsageStatistics_Page_View.php:324 UsageStatistics_Page_View.php:353
3303
+ msgid "Calls/sec: "
3304
+ msgstr ""
3305
+
3306
+ # <p><strong>' . esc_html__( 'W3 Total Cache', 'w3-total-cache' ) . '</strong> ' .
3307
+ # esc_html__(
3308
+ # 'can help ensure browsers are properly caching your assets.',
3309
+ #: SetupGuide_Plugin_Admin.php:1229
3310
+ msgid "can help ensure browsers are properly caching your assets."
3311
+ msgstr ""
3312
+
3313
+ # <strong>' . esc_html__( 'W3 Total Cache', 'w3-total-cache' ) . '</strong> ' .
3314
+ # esc_html__( 'can help you speed up', 'w3-total-cache' ) .
3315
+ # ' <em>' . esc_html__( 'Time to First Byte', 'w3-total-cache' ) . '</em> by using Page Cache.
3316
+ #: SetupGuide_Plugin_Admin.php:1128
3317
+ msgid "can help you speed up"
3318
+ msgstr ""
3319
+
3320
+ # <p><strong>' . esc_html__( 'W3 Total Cache', 'w3-total-cache' ) . '</strong> ' .
3321
+ # esc_html__( 'can help you speed up dynamic pages by persistently storing objects.', 'w3-total-cache' ) .
3322
+ # '</p>
3323
+ #: SetupGuide_Plugin_Admin.php:1200
3324
+ msgid "can help you speed up dynamic pages by persistently storing objects."
3325
+ msgstr ""
3326
+
3327
+ # 'ap-southeast-2' => __( 'Asia Pacific (Sydney)', 'w3-total-cache' ),
3328
+ # 'ca-central-1' => __( 'Canada (Central)', 'w3-total-cache' ),
3329
+ # 'cn-north-1' => __( 'China (Beijing)', 'w3-total-cache' ),
3330
+ #: CdnEngine_S3.php:35
3331
+ msgid "Canada (Central)"
3332
+ msgstr ""
3333
+
3334
+ # $widget_name .= ' <span class="postbox-title-action"><a href="' . esc_url( $url ) .
3335
+ # '">' . __( 'Cancel', 'w3-total-cache' ) . '</a></span>';
3336
+ #
3337
+ #: Util_Widget.php:160
3338
+ msgid "Cancel"
3339
+ msgstr ""
3340
+
3341
+ # '</acronym>',
3342
+ # '<acronym title="' . esc_attr__( 'Canonical Name', 'w3-total-cache' ) . '">',
3343
+ # '</acronym>'
3344
+ #: Cdnfsd_CloudFront_Page_View.php:48 Cdnfsd_MaxCdn_Page_View.php:51
3345
+ #: Cdnfsd_StackPath2_Page_View.php:58 Cdnfsd_StackPath_Page_View.php:52
3346
+ #: Cdn_Highwinds_Page_View.php:37 Cdn_Highwinds_Page_View.php:123
3347
+ #: Cdn_Highwinds_Popup_View_ConfigureCnamesForm.php:24
3348
+ #: Cdn_MaxCdn_Page_View.php:60 Cdn_MaxCdn_Page_View.php:118
3349
+ #: Cdn_MaxCdn_Page_View.php:142 Cdn_RackSpaceCdn_Page_View.php:55
3350
+ #: Cdn_RackSpaceCdn_Page_View.php:125
3351
+ #: Cdn_RackSpaceCdn_Popup_View_ConfigureDomains.php:24
3352
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Create.php:79
3353
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Create.php:110
3354
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:54 Cdn_StackPath2_Page_View.php:87
3355
+ #: Cdn_StackPath2_Page_View.php:112 Cdn_StackPath2_Page_View.php:149
3356
+ #: Cdn_StackPath2_Page_View.php:174 Cdn_StackPath_Page_View.php:58
3357
+ #: Cdn_StackPath_Page_View.php:98 inc/options/cdn/azure.php:103
3358
+ #: inc/options/cdn/cf.php:153 inc/options/cdn/cf2.php:145
3359
+ #: inc/options/cdn/ftp.php:327
3360
+ msgid "Canonical Name"
3361
+ msgstr ""
3362
+
3363
+ # error_log( // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log
3364
+ # __(
3365
+ # 'Cant find minification base url, make sure minification folder sits inside WP_CONTENT_DIR and DOCUMENT_ROOT is set correctly',
3366
+ #: Cdn_Plugin.php:1062
3367
+ msgid ""
3368
+ "Cant find minification base url, make sure minification folder sits inside "
3369
+ "WP_CONTENT_DIR and DOCUMENT_ROOT is set correctly"
3370
+ msgstr ""
3371
+
3372
+ # ),
3373
+ # '<acronym title="' . __( 'Cascading Style Sheet', 'w3-total-cache' ) . '">',
3374
+ # '</acronym>',
3375
+ #. translators: 3 HTML acronym for Hypertext Markup Language (HTML).
3376
+ #: BrowserCache_Page_View_SectionSecurity.php:703 Cdn_GeneralPage_View.php:99
3377
+ #: Extension_CloudFlare_Page_View.php:396 inc/options/about.php:78
3378
+ #: inc/options/about.php:139 inc/options/about.php:185
3379
+ #: inc/options/browsercache.php:361 inc/options/cdn.php:261
3380
+ #: inc/options/cdn/s3_compatible.php:31 inc/options/common/header.php:252
3381
+ #: inc/options/common/header.php:306 inc/options/general.php:201
3382
+ #: inc/options/general.php:227 inc/options/install.php:76
3383
+ #: inc/options/minify.php:118 inc/options/minify.php:595
3384
+ #: inc/options/minify.php:614 inc/options/minify.php:707
3385
+ #: inc/options/minify.php:798 inc/options/minify.php:946
3386
+ #: Minify_HelpPopup_View.php:54 Minify_HelpPopup_View.php:82
3387
+ #: Minify_HelpPopup_View.php:110
3388
+ msgid "Cascading Style Sheet"
3389
+ msgstr ""
3390
+
3391
+ #
3392
+ # <h4><?php esc_html_e( 'Cascading Style Sheets:', 'w3-total-cache' ); ?></h4>
3393
+ #
3394
+ #: inc/lightbox/minify_recommendations.php:78
3395
+ msgid "Cascading Style Sheets:"
3396
+ msgstr ""
3397
+
3398
+ # 'minify.csstidy.options.optimise_shorthands' => __( 'Optimize shorthands:', 'w3-total-cache' ),
3399
+ # 'minify.csstidy.options.case_properties' => __( 'Case for properties:', 'w3-total-cache' ),
3400
+ # 'minify.csstidy.options.merge_selectors' => __( 'Regroup selectors:', 'w3-total-cache' ),
3401
+ #: Minify_ConfigLabels.php:63
3402
+ msgid "Case for properties:"
3403
+ msgstr ""
3404
+
3405
+ # if ( !$config->get_boolean( 'cdn.enabled' ) )
3406
+ # $nr_recommends[] = __( 'CDN', 'w3-total-cache' );
3407
+ # if ( !$config->get_boolean( 'browsercache.enabled' ) )
3408
+ #. translators: 1 HTML acronym for Content Delivery Network (CDN).
3409
+ #: Cdnfsd_GeneralPage_View.php:15 Cdnfsd_MaxCdn_Popup_View_Zone.php:43
3410
+ #: Cdnfsd_StackPath_Popup_View_Zone.php:43
3411
+ #: Cdnfsd_StackPath_Popup_View_Zone.php:51 Cdn_StackPath2_Page_View.php:19
3412
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:17
3413
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:31
3414
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:62
3415
+ #: Cdn_StackPath_Widget_View_Unauthorized.php:16
3416
+ #: Cdn_StackPath_Widget_View_Unauthorized.php:33
3417
+ #: Extension_NewRelic_AdminNotes.php:23 Generic_Plugin_Admin.php:801
3418
+ msgid "CDN"
3419
+ msgstr ""
3420
+
3421
+ # <tr>
3422
+ # <td><?php esc_html_e( 'CDN hostname:', 'w3-total-cache' ); ?></td>
3423
+ # <td>
3424
+ #: Cdn_LimeLight_Popup_View_Intro.php:42
3425
+ msgid "CDN hostname:"
3426
+ msgstr ""
3427
+
3428
+ # $instructions = array();
3429
+ # $instructions[] = array( 'title'=>__( 'CDN module: Required Database SQL', 'w3-total-cache' ),
3430
+ # 'content' => $this->generate_table_sql(), 'area' => 'database' );
3431
+ #: Cdn_Environment.php:152
3432
+ msgid "CDN module: Required Database SQL"
3433
+ msgstr ""
3434
+
3435
+ # if ( $ex->getMessage() === 'Validation Failure: Purge url must contain one of your hostnames' ) {
3436
+ # throw new \Exception( __(
3437
+ # 'CDN site is not configured correctly: Delivery Domain must match your site domain',
3438
+ #: Cdnfsd_TransparentCDN_Engine.php:263 Cdnfsd_TransparentCDN_Engine.php:295
3439
+ msgid ""
3440
+ "CDN site is not configured correctly: Delivery Domain must match your site "
3441
+ "domain"
3442
+ msgstr ""
3443
+
3444
+ # 'parent' => 'w3tc_flush',
3445
+ # 'title' => __( 'CDN: All', 'w3-total-cache' ),
3446
+ # 'href' => wp_nonce_url( admin_url( 'admin.php?page=w3tc_cdn&amp;w3tc_flush_cdn' ), 'w3tc' ),
3447
+ #: Cdn_Plugin.php:794
3448
+ msgid "CDN: All"
3449
+ msgstr ""
3450
+
3451
+ # 'parent' => 'w3tc_flush',
3452
+ # 'title' => __( 'CDN: Manual Purge', 'w3-total-cache' ),
3453
+ # 'href' => wp_nonce_url( admin_url( 'admin.php?page=w3tc_cdn&amp;w3tc_cdn_purge' ), 'w3tc' ),
3454
+ #: Cdn_Plugin.php:803
3455
+ msgid "CDN: Manual Purge"
3456
+ msgstr ""
3457
+
3458
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
3459
+ # __(
3460
+ # 'Challenge %1$sTTL%2$s:',
3461
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
3462
+ #: Extension_CloudFlare_Page_View.php:267
3463
+ msgid "Challenge %1$sTTL%2$s:"
3464
+ msgstr ""
3465
+
3466
+ # <tr>
3467
+ # <th><label><?php esc_html_e( 'Charset:', 'w3-total-cache' ); ?></label></th>
3468
+ # <td>
3469
+ #: inc/options/pgcache.php:540
3470
+ msgid "Charset:"
3471
+ msgstr ""
3472
+
3473
+ # <p>
3474
+ # <a href="#" id="recom_js_check"><?php esc_html_e( 'Check / Uncheck All', 'w3-total-cache' ); ?></a>
3475
+ # </p>
3476
+ #: inc/lightbox/minify_recommendations.php:72
3477
+ #: inc/lightbox/minify_recommendations.php:121
3478
+ msgid "Check / Uncheck All"
3479
+ msgstr ""
3480
+
3481
+ # 'checkbox_label' => __( 'Enable', 'w3-total-cache' ),
3482
+ # 'description' => __( 'Check if you want to add postfix to each post title.', 'w3-total-cache' ),
3483
+ # )
3484
+ #: extension-example/Extension_Example_Page_View.php:29
3485
+ msgid "Check if you want to add postfix to each post title."
3486
+ msgstr ""
3487
+
3488
+ # translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
3489
+ # __(
3490
+ # 'Check out the %1$sFAQ%2$s for more details on %3$susage</a>.',
3491
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
3492
+ #: inc/options/install.php:251
3493
+ msgid "Check out the %1$sFAQ%2$s for more details on %3$susage</a>."
3494
+ msgstr ""
3495
+
3496
+ # translators: 1: HTML input button to view minify settings.
3497
+ # __(
3498
+ # 'check the %1$s to maintain the desired user experience',
3499
+ #. translators: 1: HTML input button to view minify settings.
3500
+ #: Generic_AdminNotes.php:222
3501
+ msgid "check the %1$s to maintain the desired user experience"
3502
+ msgstr ""
3503
+
3504
+ # 'ca-central-1' => __( 'Canada (Central)', 'w3-total-cache' ),
3505
+ # 'cn-north-1' => __( 'China (Beijing)', 'w3-total-cache' ),
3506
+ # 'cn-northwest-1' => __( 'China (Ningxia)', 'w3-total-cache' ),
3507
+ #: CdnEngine_S3.php:36
3508
+ msgid "China (Beijing)"
3509
+ msgstr ""
3510
+
3511
+ # 'cn-north-1' => __( 'China (Beijing)', 'w3-total-cache' ),
3512
+ # 'cn-northwest-1' => __( 'China (Ningxia)', 'w3-total-cache' ),
3513
+ # 'eu-central-1' => __( 'Europe (Frankfurt)', 'w3-total-cache' ),
3514
+ #: CdnEngine_S3.php:37
3515
+ msgid "China (Ningxia)"
3516
+ msgstr ""
3517
+
3518
+ # 'control_after' => ' <a class="w3tc-control-after" target="_blank" href="' . esc_url( 'https://www.boldgrid.com/support/w3-total-cache/choosing-a-minification-method-for-w3-total-cache/?utm_source=w3tc&utm_medium=learn_more_links&utm_campaign=minify_engine' ) . '" title="' .
3519
+ # esc_attr__( 'Choosing a minification method', 'w3-total-cache' ) . '">' . esc_html__( 'Learn more', 'w3-total-cache' ) .
3520
+ # '<span class="dashicons dashicons-external"></span></a>',
3521
+ #: inc/options/general.php:267
3522
+ msgid "Choosing a minification method"
3523
+ msgstr ""
3524
+
3525
+ # options->minify_>htmltidy
3526
+ # 'minify.htmltidy.options.clean' => __( 'Clean', 'w3-total-cache' ),
3527
+ # 'minify.htmltidy.options.hide-comments' => __( 'Hide comments', 'w3-total-cache' ),
3528
+ #: Minify_ConfigLabels.php:68
3529
+ msgid "Clean"
3530
+ msgstr ""
3531
+
3532
+ # Util_Ui::button_link(
3533
+ # __( 'Clear Log', 'w3-total-cache' ),
3534
+ # Util_Ui::url(
3535
+ #: Generic_Page_PurgeLog_View.php:61
3536
+ msgid "Clear Log"
3537
+ msgstr ""
3538
+
3539
+ # ),
3540
+ # '<a target="_blank" href="' . esc_url( $url_obtain_key ) . '">' . esc_html__( 'click here', 'w3-total-cache' ) . '</a>'
3541
+ # ),
3542
+ #: Cdn_StackPath_Popup_View_Intro.php:32
3543
+ msgid "click here"
3544
+ msgstr ""
3545
+
3546
+ # echo '<div' . $id . ' class="postbox ' . esc_attr( $class ) . '">
3547
+ # <div class="handlediv" title="' . esc_attr__( 'Click to toggle', 'w3-total-cache' ) . '"><br /></div>
3548
+ # <h3 class="hndle"><span>' . wp_kses( $title, self::get_allowed_html_for_wp_kses_from_content( $title ) ) . '</span></h3>
3549
+ #: Util_Ui.php:187
3550
+ msgid "Click to toggle"
3551
+ msgstr ""
3552
+
3553
+ # <tr>
3554
+ # <th style="width: 300px;"><label for="cdnfsd_transparentcdn_clientid"><?php esc_html_e( 'Client id:', 'w3-total-cache' ); ?></label></th>
3555
+ # <td>
3556
+ #: Cdnfsd_TransparentCDN_Page_View.php:40
3557
+ msgid "Client id:"
3558
+ msgstr ""
3559
+
3560
+ # <tr>
3561
+ # <th style="width: 300px;"><label for="cdnfsd_transparentcdn_clientsecret"><?php esc_html_e( 'Client secret:', 'w3-total-cache' ); ?></label></th>
3562
+ # <td>
3563
+ #: Cdnfsd_TransparentCDN_Page_View.php:49
3564
+ msgid "Client secret:"
3565
+ msgstr ""
3566
+
3567
+ # <div id="w3tc-self-test-bottom">
3568
+ # <input class="button-primary" type="button" value="<?php esc_attr_e( 'Close', 'w3-total-cache' ); ?>" />
3569
+ # </div>
3570
+ #: inc/lightbox/self_test.php:540
3571
+ msgid "Close"
3572
+ msgstr ""
3573
+
3574
+ # 'id' => 'cloudflare',
3575
+ # 'title' => __( 'CloudFlare', 'w3-total-cache' ),
3576
+ # 'href' => 'https://www.cloudflare.com'
3577
+ #: Extension_CloudFlare_Plugin.php:151
3578
+ msgid "CloudFlare"
3579
+ msgstr ""
3580
+
3581
+ # $cdnfsd_engine_values['cloudflare'] = array(
3582
+ # 'label' => __( 'CloudFlare (extension not activated)', 'w3-total-cache' ),
3583
+ # 'disabled' => true,
3584
+ #: Cdnfsd_Plugin_Admin.php:96
3585
+ msgid "CloudFlare (extension not activated)"
3586
+ msgstr ""
3587
+
3588
+ # 'notes' => array(
3589
+ # 'cloudflare_flush' => __( 'CloudFlare cache successfully emptied.', 'w3-total-cache' )
3590
+ # )
3591
+ #: Extension_CloudFlare_AdminActions.php:33
3592
+ msgid "CloudFlare cache successfully emptied."
3593
+ msgstr ""
3594
+
3595
+ # <p>
3596
+ # <?php esc_html_e( 'CloudFlare extension is currently ', 'w3-total-cache' ); ?>
3597
+ # <?php
3598
+ #: Extension_CloudFlare_Page_View.php:17
3599
+ msgid "CloudFlare extension is currently "
3600
+ msgstr ""
3601
+
3602
+ # 'label' => esc_html__( 'Response buffering"', 'w3-total-cache' ),
3603
+ # 'description' => esc_html__( 'CloudFlare may buffer the whole payload to deliver it at once to the client versus allowing it to be delivered in chunks.', 'w3-total-cache' ),
3604
+ # )
3605
+ #: Extension_CloudFlare_Page_View.php:467
3606
+ msgid ""
3607
+ "CloudFlare may buffer the whole payload to deliver it at once to the client "
3608
+ "versus allowing it to be delivered in chunks."
3609
+ msgstr ""
3610
+
3611
+ # <td colspan="2">
3612
+ # <?php esc_html__( 'CloudFlare not available: ', 'w3-total-cache' ) . esc_html( $error_message ); ?>
3613
+ # </td>
3614
+ #: Extension_CloudFlare_Page_View.php:100
3615
+ msgid "CloudFlare not available: "
3616
+ msgstr ""
3617
+
3618
+ # <p>
3619
+ # <?php esc_html_e( 'CloudFlare protects and accelerates websites.', 'w3-total-cache' ); ?>
3620
+ # </p>
3621
+ #: Extension_CloudFlare_GeneralPage_View.php:11
3622
+ msgid "CloudFlare protects and accelerates websites."
3623
+ msgstr ""
3624
+
3625
+ # translators: 7 opening HTML a tag to CloudFlare help page, 8 closing HTML a tag.
3626
+ # __(
3627
+ # 'CloudFlare protects and accelerates websites. %1$sSign up now for free%2$s to get started, or if you have an account simply log in to obtain your %3$sAPI%4$s token / global key from the %5$saccount page%6$s to enter it on the General Settings box that appears after plugin activation. Contact the CloudFlare %7$ssupport team%8$s with any questions.',
3628
+ #. translators: 7 opening HTML a tag to CloudFlare help page, 8 closing HTML a tag.
3629
+ #: Extension_CloudFlare_Plugin_Admin.php:34
3630
+ msgid ""
3631
+ "CloudFlare protects and accelerates websites. %1$sSign up now for free%2$s "
3632
+ "to get started, or if you have an account simply log in to obtain your "
3633
+ "%3$sAPI%4$s token / global key from the %5$saccount page%6$s to enter it on "
3634
+ "the General Settings box that appears after plugin activation. Contact the "
3635
+ "CloudFlare %7$ssupport team%8$s with any questions."
3636
+ msgstr ""
3637
+
3638
+ # 'cloudflare_save_done' =>
3639
+ # __( 'CloudFlare settings are successfully updated.',
3640
+ # 'w3-total-cache' )
3641
+ #: Extension_CloudFlare_AdminActions.php:64
3642
+ msgid "CloudFlare settings are successfully updated."
3643
+ msgstr ""
3644
+
3645
+ # 'label' => esc_html__( 'Prefetch preload:', 'w3-total-cache' ),
3646
+ # 'description' => esc_html__( 'CloudFlare will prefetch any URLs that are included in the response headers.', 'w3-total-cache' ),
3647
+ # )
3648
+ #: Extension_CloudFlare_Page_View.php:475
3649
+ msgid ""
3650
+ "CloudFlare will prefetch any URLs that are included in the response headers."
3651
+ msgstr ""
3652
+
3653
+ # 'label' => esc_html__( 'Enable error pages:', 'w3-total-cache' ),
3654
+ # 'description' => esc_html__( 'CloudFlare will proxy customer error pages on any 502,504 errors on origin server instead of showing a default CloudFlare error page. This does not apply to 522 errors and is limited to Enterprise Zones.', 'w3-total-cache' ),
3655
+ # )
3656
+ #: Extension_CloudFlare_Page_View.php:491
3657
+ msgid ""
3658
+ "CloudFlare will proxy customer error pages on any 502,504 errors on origin "
3659
+ "server instead of showing a default CloudFlare error page. This does not "
3660
+ "apply to 522 errors and is limited to Enterprise Zones."
3661
+ msgstr ""
3662
+
3663
+ # 'label' => esc_html__( 'Query string sorting:', 'w3-total-cache' ),
3664
+ # 'description' => esc_html__( 'CloudFlare will treat files with the same query strings as the same file in cache, regardless of the order of the query strings.', 'w3-total-cache' ),
3665
+ # )
3666
+ #: Extension_CloudFlare_Page_View.php:190
3667
+ msgid ""
3668
+ "CloudFlare will treat files with the same query strings as the same file in "
3669
+ "cache, regardless of the order of the query strings."
3670
+ msgstr ""
3671
+
3672
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
3673
+ # __(
3674
+ # 'CloudFlare: %1$sIP%2$s',
3675
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
3676
+ #: Extension_CloudFlare_Page_View.php:615
3677
+ msgid "CloudFlare: %1$sIP%2$s"
3678
+ msgstr ""
3679
+
3680
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
3681
+ # __(
3682
+ # 'CloudFlare: %1$sSSL%2$s',
3683
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
3684
+ #: Extension_CloudFlare_Page_View.php:694
3685
+ msgid "CloudFlare: %1$sSSL%2$s"
3686
+ msgstr ""
3687
+
3688
+ # 'parent' => 'w3tc_flush',
3689
+ # 'title' => __( 'CloudFlare: All', 'w3-total-cache' ),
3690
+ # 'href' => wp_nonce_url( admin_url( 'admin.php?page=w3tc_dashboard&amp;w3tc_cloudflare_flush' ), 'w3tc' ),
3691
+ #: Extension_CloudFlare_Plugin_Admin.php:165
3692
+ msgid "CloudFlare: All"
3693
+ msgstr ""
3694
+
3695
+ # <?php if ( 'available' === $state ) : ?>
3696
+ # <?php Util_Ui::postbox_header( esc_html__( 'CloudFlare: Caching', 'w3-total-cache' ), '', 'general' ); ?>
3697
+ # <table class="form-table">
3698
+ #: Extension_CloudFlare_Page_View.php:160
3699
+ msgid "CloudFlare: Caching"
3700
+ msgstr ""
3701
+
3702
+ #
3703
+ # Util_Ui::postbox_header( esc_html__( 'CloudFlare: Content Processing', 'w3-total-cache' ), '', 'general' );
3704
+ # echo '<table class="form-table">';
3705
+ #: Extension_CloudFlare_Page_View.php:346
3706
+ msgid "CloudFlare: Content Processing"
3707
+ msgstr ""
3708
+
3709
+ #
3710
+ # Util_Ui::postbox_header( esc_html__( 'CloudFlare: Image Processing', 'w3-total-cache' ), '', 'general' );
3711
+ # echo '<table class="form-table">';
3712
+ #: Extension_CloudFlare_Page_View.php:498
3713
+ msgid "CloudFlare: Image Processing"
3714
+ msgstr ""
3715
+
3716
+ #
3717
+ # Util_Ui::postbox_header( esc_html__( 'CloudFlare: Protection', 'w3-total-cache' ), '', 'general' );
3718
+ # echo '<table class="form-table">';
3719
+ #: Extension_CloudFlare_Page_View.php:534
3720
+ msgid "CloudFlare: Protection"
3721
+ msgstr ""
3722
+
3723
+ # if ( empty( $this->distribution_id ) ) {
3724
+ # throw new \Exception( __('CloudFront distribution not specified.', 'w3-total-cache' ) );
3725
+ # }
3726
+ #: Cdnfsd_CloudFront_Engine.php:76
3727
+ msgid "CloudFront distribution not specified."
3728
+ msgstr ""
3729
+
3730
+ # <input class="button ps-expand-all" type="button" value="<?php esc_attr_e( 'Expand all', 'w3-total-cache' ); ?>" />
3731
+ # <input class="button ps-collapse-all" type="button" value="<?php esc_attr_e( 'Collapse all', 'w3-total-cache' ); ?>" />
3732
+ # <input class="button ps-refresh" type="button" value="<?php esc_attr_e( 'Refresh analysis', 'w3-total-cache' ); ?>" />
3733
+ #: inc/popup/pagespeed_results.php:16
3734
+ msgid "Collapse all"
3735
+ msgstr ""
3736
+
3737
+ # 'checkbox_label' => __( 'Use the system reported averages of CPU resource usage.', 'w3-total-cache' ),
3738
+ # 'description' => __( 'Collect CPU usage', 'w3-total-cache' ),
3739
+ # 'show_in_free' => false,
3740
+ #: UsageStatistics_GeneralPage_View.php:59
3741
+ msgid "Collect CPU usage"
3742
+ msgstr ""
3743
+
3744
+ # 'both' => array(
3745
+ # 'label' => esc_html__( 'Combine & Minify', 'w3-total-cache' ),
3746
+ # ),
3747
+ #: inc/options/minify.php:298 inc/options/minify.php:636
3748
+ msgid "Combine & Minify"
3749
+ msgstr ""
3750
+
3751
+ # 'minify.js.header.embed_type' => __( 'Embed type:', 'w3-total-cache' ),
3752
+ # 'minify.js.combine.header' => __( 'Combine only', 'w3-total-cache' ),
3753
+ # 'minify.js.body.embed_type' => __( 'After <span class="html-tag">&lt;body&gt;</span>', 'w3-total-cache' ),
3754
+ #: inc/options/minify.php:304 inc/options/minify.php:642
3755
+ #: Minify_ConfigLabels.php:24 Minify_ConfigLabels.php:26
3756
+ #: Minify_ConfigLabels.php:28
3757
+ msgid "Combine only"
3758
+ msgstr ""
3759
+
3760
+ # 'pgcache.file.gc' => __( 'Garbage collection interval:', 'w3-total-cache' ),
3761
+ # 'pgcache.comment_cookie_ttl' => __( 'Comment cookie lifetime:', 'w3-total-cache' ),
3762
+ # 'pgcache.accept.qs' => __( 'Accepted query strings:', 'w3-total-cache' ),
3763
+ #: PgCache_ConfigLabels.php:45
3764
+ msgid "Comment cookie lifetime:"
3765
+ msgstr ""
3766
+
3767
+ # 'wp_footer' => 'wp_footer',
3768
+ # 'genesis_comments' => esc_html__( 'Comments', 'w3-total-cache' ),
3769
+ # 'genesis_pings' => esc_html__( 'Pings', 'w3-total-cache' ),
3770
+ #: Extension_Genesis_Page_View.php:227
3771
+ msgid "Comments"
3772
+ msgstr ""
3773
+
3774
+ # <th style="width: 300px;">
3775
+ # <label for="cdnfsd_transparentcdn_company_id"> <?php esc_html_e( 'Company id:', 'w3-total-cache' ); ?> </label>
3776
+ # </th>
3777
+ #: Cdnfsd_TransparentCDN_Page_View.php:30
3778
+ msgid "Company id:"
3779
+ msgstr ""
3780
+
3781
+ # ?>
3782
+ # <h3><?php esc_html_e( 'Compatibility Check', 'w3-total-cache' ); ?></h3>
3783
+ #
3784
+ #: inc/lightbox/self_test.php:8
3785
+ msgid "Compatibility Check"
3786
+ msgstr ""
3787
+
3788
+ # <?php esc_html_e( 'Perform a', 'w3-total-cache' ); ?>
3789
+ # <input type="button" class="button button-self-test {nonce: '<?php echo esc_attr( wp_create_nonce( 'w3tc' ) ); ?>'}" value="<?php esc_html_e( 'compatibility check', 'w3-total-cache' ); ?>" />,
3790
+ # <?php
3791
+ #: inc/options/dashboard.php:51
3792
+ msgid "compatibility check"
3793
+ msgstr ""
3794
+
3795
+ # <tr>
3796
+ # <th><label><?php esc_html_e( 'Compatibility mode:', 'w3-total-cache' ); ?></label></th>
3797
+ # <td>
3798
+ #: inc/options/pgcache.php:532
3799
+ msgid "Compatibility mode:"
3800
+ msgstr ""
3801
+
3802
+ # 'minify.ccjs.path.jar' => __( 'Path to JAR file:', 'w3-total-cache' ),
3803
+ # 'minify.ccjs.options.compilation_level' => __( 'Compilation level:', 'w3-total-cache' ),
3804
+ # options->minify->css
3805
+ #: Minify_ConfigLabels.php:43
3806
+ msgid "Compilation level:"
3807
+ msgstr ""
3808
+
3809
+ # translators: 1 opening HTML a tag to HTTP ETag Wiki page, 2 closing HTML a tag.
3810
+ # __(
3811
+ # 'Complete header management including %1$sETags%2$s',
3812
+ #. translators: 1 opening HTML a tag to HTTP ETag Wiki page, 2 closing HTML a tag.
3813
+ #: inc/options/about.php:201
3814
+ msgid "Complete header management including %1$sETags%2$s"
3815
+ msgstr ""
3816
+
3817
+ # 'minify.csstidy.options.remove_bslash' => __( 'Remove unnecessary backslashes', 'w3-total-cache' ),
3818
+ # 'minify.csstidy.options.compress_colors' => __( 'Compress colors', 'w3-total-cache' ),
3819
+ # 'minify.csstidy.options.compress_font-weight' => __( 'Compress font-weight', 'w3-total-cache' ),
3820
+ #: Minify_ConfigLabels.php:49
3821
+ msgid "Compress colors"
3822
+ msgstr ""
3823
+
3824
+ # 'minify.csstidy.options.compress_colors' => __( 'Compress colors', 'w3-total-cache' ),
3825
+ # 'minify.csstidy.options.compress_font-weight' => __( 'Compress font-weight', 'w3-total-cache' ),
3826
+ # 'minify.csstidy.options.lowercase_s' => __( 'Lowercase selectors', 'w3-total-cache' ),
3827
+ #: Minify_ConfigLabels.php:50
3828
+ msgid "Compress font-weight"
3829
+ msgstr ""
3830
+
3831
+ # ),
3832
+ # 'label' => esc_html__( 'Compression type:', 'w3-total-cache' ),
3833
+ # 'control' => 'radiogroup',
3834
+ #: Extension_ImageService_Page_View.php:61
3835
+ msgid "Compression type:"
3836
+ msgstr ""
3837
+
3838
+ # options->minify->csstidy2
3839
+ # 'minify.csstidy.options.template' => __( 'Compression:', 'w3-total-cache' ),
3840
+ # 'minify.csstidy.options.optimise_shorthands' => __( 'Optimize shorthands:', 'w3-total-cache' ),
3841
+ #: Minify_ConfigLabels.php:61
3842
+ msgid "Compression:"
3843
+ msgstr ""
3844
+
3845
+ #: Cli.php:319
3846
+ msgid "Config import failed: "
3847
+ msgstr ""
3848
+
3849
+ # <div class="metabox-holder">
3850
+ # <?php Util_Ui::postbox_header( esc_html__( 'Configuration', 'w3-total-cache' ), '', '' ); ?>
3851
+ # <table class="form-table">
3852
+ #: Extension_Amp_Page_View.php:10 Extension_ImageService_Page_View.php:51
3853
+ #: Extension_Swarmify_Page_View.php:27 inc/options/cdn.php:24
3854
+ msgid "Configuration"
3855
+ msgstr ""
3856
+
3857
+ # 'config_import_upload' => __( 'Unable to upload config file.', 'w3-total-cache' ),
3858
+ # 'config_import_import' => __( 'Configuration file could not be imported.', 'w3-total-cache' ),
3859
+ # 'config_reset' => sprintf(
3860
+ #: Generic_Plugin_Admin.php:748
3861
+ msgid "Configuration file could not be imported."
3862
+ msgstr ""
3863
+
3864
+ #
3865
+ # \WP_CLI::success( __( 'Configuration successfully imported.', 'w3-total-cache' ) );
3866
+ # }
3867
+ #: Cli.php:322
3868
+ msgid "Configuration successfully imported."
3869
+ msgstr ""
3870
+
3871
+ # <label>
3872
+ # <?php esc_html_e( 'Configuration:', 'w3-total-cache' ); ?>
3873
+ # </label>
3874
+ #: Extension_CloudFlare_Cdn_Page_View.php:15
3875
+ msgid "Configuration:"
3876
+ msgstr ""
3877
+
3878
+ # Util_Ui::postbox_header(
3879
+ # esc_html__( 'Configuration: Full-Site Delivery', 'w3-total-cache' ),
3880
+ # '',
3881
+ #: Cdnfsd_CloudFront_Page_View.php:14 Cdnfsd_LimeLight_Page_View.php:14
3882
+ #: Cdnfsd_MaxCdn_Page_View.php:13 Cdnfsd_StackPath2_Page_View.php:16
3883
+ #: Cdnfsd_StackPath_Page_View.php:14 Cdnfsd_TransparentCDN_Page_View.php:22
3884
+ #: Extension_CloudFlare_Cdn_Page_View.php:10
3885
+ msgid "Configuration: Full-Site Delivery"
3886
+ msgstr ""
3887
+
3888
+ #
3889
+ # <?php Util_Ui::postbox_header( esc_html__( 'Configuration: Objects', 'w3-total-cache' ), '', 'configuration' ); ?>
3890
+ # <table class="form-table">
3891
+ #: inc/options/cdn.php:358
3892
+ msgid "Configuration: Objects"
3893
+ msgstr ""
3894
+
3895
+ # <p><?php esc_html_e( 'If you already have a Swarmify configuration key, or need to update your existing key, click here:', 'w3-total-cache' ); ?></p>
3896
+ # <a class="button-primary" href="admin.php?page=w3tc_extensions&amp;extension=swarmify&amp;action=view"><?php esc_html_e( 'Configure', 'w3-total-cache' ); ?></a>
3897
+ # </div>
3898
+ #: Extension_Swarmify_Widget_View_NotConfigured.php:16
3899
+ msgid "Configure"
3900
+ msgstr ""
3901
+
3902
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
3903
+ # __(
3904
+ # 'Configure %1$sCNAME%2$ss',
3905
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
3906
+ #: Cdn_Highwinds_Page_View.php:119
3907
+ msgid "Configure %1$sCNAME%2$ss"
3908
+ msgstr ""
3909
+
3910
+ # <input class="w3tc_cdn_rackspace_configure_domains button" type="button"
3911
+ # value="<?php esc_attr_e( 'Configure CNAMEs', 'w3-total-cache' ); ?>" />
3912
+ # <p class="description">
3913
+ #: Cdn_RackSpaceCdn_Page_View.php:80
3914
+ msgid "Configure CNAMEs"
3915
+ msgstr ""
3916
+
3917
+ # <div class="metabox-holder">
3918
+ # <?php Util_Ui::postbox_header( esc_html__( 'Configure distribution', 'w3-total-cache' ) ); ?>
3919
+ # <table class="form-table">
3920
+ #: Cdnfsd_CloudFront_Popup_View_Distribution.php:17
3921
+ msgid "Configure distribution"
3922
+ msgstr ""
3923
+
3924
+ # <div class="metabox-holder">
3925
+ # <?php Util_Ui::postbox_header( esc_html__( 'Configure service', 'w3-total-cache' ) ); ?>
3926
+ # <table class="form-table">
3927
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Actualize.php:34
3928
+ msgid "Configure service"
3929
+ msgstr ""
3930
+
3931
+ # <div class="metabox-holder">
3932
+ # <?php Util_Ui::postbox_header( esc_html__( 'Configure zone', 'w3-total-cache' ) ); ?>
3933
+ # <table class="form-table">
3934
+ #: Cdnfsd_MaxCdn_Popup_View_Zone.php:16
3935
+ #: Cdnfsd_StackPath_Popup_View_Zone.php:16 Cdn_MaxCdn_Popup_View_Zone.php:16
3936
+ #: Cdn_StackPath_Popup_View_Zone.php:16
3937
+ msgid "Configure zone"
3938
+ msgstr ""
3939
+
3940
+ # && !in_array( trim( $this->get_license_key_from_account() ), $licences ) )
3941
+ # $error['license'] = sprintf( __( 'Configured license key does not match license key(s) in account: <br />%s <br />%s', 'w3-total-cache' )
3942
+ # , $this->get_license_key_from_ini()
3943
+ #: Extension_NewRelic_Service.php:177
3944
+ msgid ""
3945
+ "Configured license key does not match license key(s) in account: <br />%s "
3946
+ "<br />%s"
3947
+ msgstr ""
3948
+
3949
+ # 'author' => 'W3 EDGE',
3950
+ # 'description' => __( 'Configures W3 Total Cache to comply with Yoast SEO requirements automatically.', 'w3-total-cache' ),
3951
+ #
3952
+ #: Extension_WordPressSeo_Plugin_Admin.php:37
3953
+ msgid ""
3954
+ "Configures W3 Total Cache to comply with Yoast SEO requirements "
3955
+ "automatically."
3956
+ msgstr ""
3957
+
3958
+ # 'browsercache.security.csp.frame' => __( 'frame-src:', 'w3-total-cache' ),
3959
+ # 'browsercache.security.csp.connect' => __( 'connect-src:', 'w3-total-cache' ),
3960
+ # 'browsercache.security.csp.font' => __( 'font-src:', 'w3-total-cache' ),
3961
+ #: BrowserCache_ConfigLabels.php:63
3962
+ msgid "connect-src:"
3963
+ msgstr ""
3964
+
3965
+ # 'redis.retry_interval' => __( 'Connection retry interval', 'w3-total-cache' ),
3966
+ # 'redis.read_timeout' => __( 'Connection read timeout', 'w3-total-cache' ),
3967
+ # 'redis.dbid' => __( 'Redis Database ID:', 'w3-total-cache' ),
3968
+ #: Util_ConfigLabel.php:33
3969
+ msgid "Connection read timeout"
3970
+ msgstr ""
3971
+
3972
+ # 'redis.timeout' => __( 'Connection timeout', 'w3-total-cache' ),
3973
+ # 'redis.retry_interval' => __( 'Connection retry interval', 'w3-total-cache' ),
3974
+ # 'redis.read_timeout' => __( 'Connection read timeout', 'w3-total-cache' ),
3975
+ #: Util_ConfigLabel.php:32
3976
+ msgid "Connection retry interval"
3977
+ msgstr ""
3978
+
3979
+ # 'redis.persistent' => __( 'Persistent connection', 'w3-total-cache' ),
3980
+ # 'redis.timeout' => __( 'Connection timeout', 'w3-total-cache' ),
3981
+ # 'redis.retry_interval' => __( 'Connection retry interval', 'w3-total-cache' ),
3982
+ #: Util_ConfigLabel.php:31
3983
+ msgid "Connection timeout"
3984
+ msgstr ""
3985
+
3986
+ # <li><?php esc_html_e( 'Restarting the web server will empty the opcode cache, which means it will have to be rebuilt over time and your site\'s performance will suffer during this period. Still, an opcode cache should be installed in any case to maximize WordPress performance.', 'w3-total-cache' ); ?></li>
3987
+ # <li><?php esc_html_e( 'Consider using memcached for objects that must persist across web server restarts or that you wish to share amongst your server pool, e.g.: database objects or page cache.', 'w3-total-cache' ); ?></li>
3988
+ # </ul>
3989
+ #: inc/options/install.php:413
3990
+ msgid ""
3991
+ "Consider using memcached for objects that must persist across web server "
3992
+ "restarts or that you wish to share amongst your server pool, e.g.: database "
3993
+ "objects or page cache."
3994
+ msgstr ""
3995
+
3996
+ # if ( $error ) {
3997
+ # $results = $this->_get_results( $files, W3TC_CDN_RESULT_HALT, sprintf( __( 'Constructor error (%s).', 'w3-total-cache' ), $error ) );
3998
+ #
3999
+ #: CdnEngine_Mirror_Akamai.php:55 CdnEngine_Mirror_Cotendo.php:63
4000
+ msgid "Constructor error (%s)."
4001
+ msgstr ""
4002
+
4003
+ # <tr>
4004
+ # <th><?php esc_html_e( 'Container:', 'w3-total-cache' ); ?></th>
4005
+ # <td class="w3tc_config_value_text">
4006
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:35 inc/options/cdn/azure.php:23
4007
+ #: inc/options/cdn/rscf.php:56
4008
+ msgid "Container:"
4009
+ msgstr ""
4010
+
4011
+ #
4012
+ # <?php Util_Ui::postbox_header( esc_html__( 'Content', 'w3-total-cache' ), '', 'content' ); ?>
4013
+ # <table class="form-table">
4014
+ #: Extension_Genesis_Page_View.php:13 Extension_Genesis_Page_View.php:74
4015
+ msgid "Content"
4016
+ msgstr ""
4017
+
4018
+ # <div id="chart_div" style="width: 320px; height: 220px;margin-left: auto ; margin-right: auto ;"></div>
4019
+ # <h4 class="w3tcstackpath_h4"><?php esc_html_e( 'Content Breakdown', 'w3-total-cache' ); ?></h4>
4020
+ # <p>
4021
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:72
4022
+ #: Cdn_StackPath_Widget_View_Authorized.php:61
4023
+ msgid "Content Breakdown"
4024
+ msgstr ""
4025
+
4026
+ # ),
4027
+ # '<acronym title="' . esc_attr__( 'Content Delivery Network', 'w3-total-cache' ) . '">',
4028
+ # '</acronym>',
4029
+ #. translators: 1 HTML acronym for Content Delivery Network (CDN).
4030
+ #: Cdnfsd_CloudFront_Page_View.php:46 Cdnfsd_GeneralPage_View.php:15
4031
+ #: Cdnfsd_GeneralPage_View.php:29 Cdnfsd_GeneralPage_View.php:63
4032
+ #: Cdnfsd_GeneralPage_View.php:111 Cdnfsd_GeneralPage_View.php:132
4033
+ #: Cdnfsd_MaxCdn_Page_View.php:49 Cdnfsd_MaxCdn_Popup_View_Zone.php:42
4034
+ #: Cdnfsd_MaxCdn_Popup_View_Zone.php:57 Cdnfsd_StackPath2_Page_View.php:56
4035
+ #: Cdnfsd_StackPath_Page_View.php:50 Cdnfsd_StackPath_Popup_View_Zone.php:42
4036
+ #: Cdnfsd_StackPath_Popup_View_Zone.php:50 Cdn_GeneralPage_View.php:16
4037
+ #: Cdn_GeneralPage_View.php:45 Cdn_GeneralPage_View.php:66
4038
+ #: Cdn_GeneralPage_View.php:126 Cdn_Highwinds_Page_View.php:35
4039
+ #: Cdn_Highwinds_Page_View.php:92 Cdn_Highwinds_Page_View.php:144
4040
+ #: Cdn_Highwinds_Popup_View_ConfigureCnamesForm.php:49
4041
+ #: Cdn_LimeLight_Page_View.php:63 Cdn_LimeLight_Page_View.php:95
4042
+ #: Cdn_MaxCdn_Page_View.php:56 Cdn_MaxCdn_Page_View.php:84
4043
+ #: Cdn_MaxCdn_Page_View.php:114 Cdn_MaxCdn_Page_View.php:144
4044
+ #: Cdn_MaxCdn_Page_View.php:240 Cdn_MaxCdn_Page_View.php:272
4045
+ #: Cdn_Page_View_Fsd_HeaderActions.php:20
4046
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:18
4047
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:43
4048
+ #: Cdn_RackSpaceCdn_Page_View.php:53 Cdn_RackSpaceCdn_Page_View.php:91
4049
+ #: Cdn_RackSpaceCdn_Page_View.php:146
4050
+ #: Cdn_RackSpaceCdn_Popup_View_ConfigureDomains.php:49
4051
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:52
4052
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:110
4053
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:142 Cdn_StackPath2_Page_View.php:19
4054
+ #: Cdn_StackPath2_Page_View.php:83 Cdn_StackPath2_Page_View.php:114
4055
+ #: Cdn_StackPath2_Page_View.php:145 Cdn_StackPath2_Page_View.php:176
4056
+ #: Cdn_StackPath2_Page_View.php:272 Cdn_StackPath2_Page_View.php:304
4057
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:17
4058
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:31
4059
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:62
4060
+ #: Cdn_StackPath_Page_View.php:54 Cdn_StackPath_Page_View.php:94
4061
+ #: Cdn_StackPath_Page_View.php:199 Cdn_StackPath_Page_View.php:231
4062
+ #: Cdn_StackPath_Widget_View_Unauthorized.php:16
4063
+ #: Cdn_StackPath_Widget_View_Unauthorized.php:33 Generic_Plugin_Admin.php:801
4064
+ #: inc/lightbox/self_test.php:122 inc/lightbox/self_test.php:247
4065
+ #: inc/lightbox/self_test.php:278 inc/lightbox/self_test.php:338
4066
+ #: inc/options/about.php:21 inc/options/about.php:99 inc/options/about.php:119
4067
+ #: inc/options/about.php:141 inc/options/about.php:226 inc/options/cdn.php:73
4068
+ #: inc/options/cdn.php:95 inc/options/cdn.php:149 inc/options/cdn.php:196
4069
+ #: inc/options/cdn.php:227 inc/options/cdn.php:265 inc/options/cdn.php:297
4070
+ #: inc/options/cdn.php:395 inc/options/cdn.php:414 inc/options/cdn.php:469
4071
+ #: inc/options/cdn.php:496 inc/options/cdn.php:596 inc/options/cdn.php:676
4072
+ #: inc/options/cdn.php:704 inc/options/cdn.php:741 inc/options/cdn.php:772
4073
+ #: inc/options/cdn.php:799 inc/options/cdn.php:841 inc/options/cdn.php:843
4074
+ #: inc/options/cdn.php:878 inc/options/cdn/akamai.php:87
4075
+ #: inc/options/cdn/akamai.php:119 inc/options/cdn/att.php:61
4076
+ #: inc/options/cdn/att.php:93 inc/options/cdn/azure.php:70
4077
+ #: inc/options/cdn/cf.php:117 inc/options/cdn/cf2.php:109
4078
+ #: inc/options/cdn/cotendo.php:68 inc/options/cdn/cotendo.php:100
4079
+ #: inc/options/cdn/edgecast.php:61 inc/options/cdn/edgecast.php:93
4080
+ #: inc/options/cdn/ftp.php:214 inc/options/cdn/mirror.php:47
4081
+ #: inc/options/cdn/mirror.php:79 inc/options/cdn/rscf.php:104
4082
+ #: inc/options/cdn/s3.php:123 inc/options/cdn/s3_compatible.php:99
4083
+ #: inc/options/common/header.php:100 inc/options/install.php:146
4084
+ #: inc/options/install.php:150 inc/popup/cdn_import_library.php:57
4085
+ #: inc/popup/cdn_purge.php:19 Root_AdminMenu.php:97 Root_AdminMenu.php:100
4086
+ msgid "Content Delivery Network"
4087
+ msgstr ""
4088
+
4089
+ # 'cdn' => array(
4090
+ # 'title' => esc_html__( 'Content Delivery Network (CDN)', 'w3-total-cache' ),
4091
+ # 'icon' => 'dashicons-format-gallery',
4092
+ #: FeatureShowcase_Plugin_Admin.php:396
4093
+ msgid "Content Delivery Network (CDN)"
4094
+ msgstr ""
4095
+
4096
+ # function w3tc_cdn_purge() {
4097
+ # $title = __( 'Content Delivery Network (CDN): Purge Tool', 'w3-total-cache' );
4098
+ # $results = array();
4099
+ #: Cdn_AdminActions.php:313 Cdn_AdminActions.php:326
4100
+ msgid "Content Delivery Network (CDN): Purge Tool"
4101
+ msgstr ""
4102
+
4103
+ # $strings[] = sprintf(
4104
+ # __( 'Content Delivery Network Full Site Delivery via %s', 'w3-total-cache' ),
4105
+ # ( $via ? $via : 'N/A' ) );
4106
+ #: Cdnfsd_Plugin.php:62
4107
+ msgid "Content Delivery Network Full Site Delivery via %s"
4108
+ msgstr ""
4109
+
4110
+ # translators: 1 HTML strong element with CDN engine content, 2 HTML span element with CDN enabled/disabled status.
4111
+ # __(
4112
+ # 'Content Delivery Network support via %1$s is currently %2$s.',
4113
+ #. translators: 1 HTML strong tag containing CDNFSD engine name, 2 HTML span tag containing CDNFSD engine enabled/disabled.
4114
+ #. translators: 1 HTML strong element with CDN engine content, 2 HTML span element with CDN enabled/disabled status.
4115
+ #. translators: 1 HTML strong tag containing CDN Engine value, 2 HTML span tag containing CDN Engine enabled/disabled value.
4116
+ #: Cdnfsd_Page_View_Header.php:14 Cdn_Page_View_Header.php:15
4117
+ #: inc/options/cdn.php:34
4118
+ msgid "Content Delivery Network support via %1$s is currently %2$s."
4119
+ msgstr ""
4120
+
4121
+ # translators: 1 CDN engine name, 2 rejection reason.
4122
+ # __(
4123
+ # 'Content Delivery Network via %1$s%2$s',
4124
+ #. translators: 1 CDN engine name, 2 rejection reason.
4125
+ #: Cdn_Plugin.php:824
4126
+ msgid "Content Delivery Network via %1$s%2$s"
4127
+ msgstr ""
4128
+
4129
+ # <li>
4130
+ # <?php esc_html_e( 'Content is cached for each group separately.', 'w3-total-cache' ); ?>
4131
+ # </li>
4132
+ #: CacheGroups_Plugin_Admin_View.php:333
4133
+ msgid "Content is cached for each group separately."
4134
+ msgstr ""
4135
+
4136
+ # 'browsercache.security.referrer.policy.directive' => __( 'Directive:', 'w3-total-cache' ),
4137
+ # 'browsercache.security.csp' => __( 'Content Security Policy', 'w3-total-cache' ),
4138
+ # 'browsercache.security.csp.base' => __( 'base-uri:', 'w3-total-cache' ),
4139
+ #: BrowserCache_ConfigLabels.php:60
4140
+ #: BrowserCache_Page_View_SectionSecurity.php:570
4141
+ msgid "Content Security Policy"
4142
+ msgstr ""
4143
+
4144
+ # <span style="display:inline-block;float:right">
4145
+ # <?php esc_html_e( 'Content Zone:', 'w3-total-cache' ); ?>
4146
+ # <span class="w3tcstackpath_zone_name"></span>
4147
+ #: Cdn_Plugin_WidgetMaxCdn_View_Authorized.php:33
4148
+ #: Cdn_StackPath_Widget_View_Authorized.php:23
4149
+ msgid "Content Zone:"
4150
+ msgstr ""
4151
+
4152
+ # $filename = substr( get_home_url(), strpos( get_home_url(), '//' )+2 );
4153
+ # @header( sprintf( __( 'Content-Disposition: attachment; filename=%s.json', 'w3-total-cache' ), $filename ) );
4154
+ # echo $this->_config->export(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
4155
+ #: Generic_AdminActions_Config.php:55
4156
+ msgid "Content-Disposition: attachment; filename=%s.json"
4157
+ msgstr ""
4158
+
4159
+ # ),
4160
+ # 'description' => esc_html__( 'Controls how long CloudFlare\'s edge servers will cache a resource before getting back to your server for a fresh copy.', 'w3-total-cache' ),
4161
+ # )
4162
+ #: Extension_CloudFlare_Page_View.php:337
4163
+ msgid ""
4164
+ "Controls how long CloudFlare's edge servers will cache a resource before "
4165
+ "getting back to your server for a fresh copy."
4166
+ msgstr ""
4167
+
4168
+ # 'label' => 'navigation-override',
4169
+ # 'description' => esc_html__( 'Controls the availability of mechanisms that enables the page author to take control over the behavior of spatial navigation, or to cancel it outright.', 'w3-total-cache' ),
4170
+ # ),
4171
+ #: BrowserCache_Page_View_SectionSecurity.php:98
4172
+ msgid ""
4173
+ "Controls the availability of mechanisms that enables the page author to take "
4174
+ "control over the behavior of spatial navigation, or to cancel it outright."
4175
+ msgstr ""
4176
+
4177
+ # 'label' => 'web-share',
4178
+ # 'description' => esc_html__( 'Controls whether or not the current document is allowed to use the Navigator.share() of Web Share API to share text, links, images, and other content to arbitrary destinations of user\'s choice, e.g. mobile apps.', 'w3-total-cache' ),
4179
+ # ),
4180
+ #: BrowserCache_Page_View_SectionSecurity.php:154
4181
+ msgid ""
4182
+ "Controls whether or not the current document is allowed to use the Navigator."
4183
+ "share() of Web Share API to share text, links, images, and other content to "
4184
+ "arbitrary destinations of user's choice, e.g. mobile apps."
4185
+ msgstr ""
4186
+
4187
+ # 'label' => 'display-capture',
4188
+ # 'description' => esc_html__( 'Controls whether or not the document is permitted to use Screen Capture API.', 'w3-total-cache' ),
4189
+ # ),
4190
+ #: BrowserCache_Page_View_SectionSecurity.php:42
4191
+ msgid ""
4192
+ "Controls whether or not the document is permitted to use Screen Capture API."
4193
+ msgstr ""
4194
+
4195
+ # 'label' => 'execution-while-not-rendered',
4196
+ # 'description' => esc_html__( 'Controls whether tasks should execute in frames while they\'re not being rendered (e.g. if an iframe is hidden or display: none).', 'w3-total-cache' ),
4197
+ # ),
4198
+ #: BrowserCache_Page_View_SectionSecurity.php:54
4199
+ msgid ""
4200
+ "Controls whether tasks should execute in frames while they're not being "
4201
+ "rendered (e.g. if an iframe is hidden or display: none)."
4202
+ msgstr ""
4203
+
4204
+ # 'label' => 'execution-while-out-of-viewport',
4205
+ # 'description' => esc_html__( 'Controls whether tasks should execute in frames while they\'re outside of the visible viewport.', 'w3-total-cache' ),
4206
+ # ),
4207
+ #: BrowserCache_Page_View_SectionSecurity.php:58
4208
+ msgid ""
4209
+ "Controls whether tasks should execute in frames while they're outside of the "
4210
+ "visible viewport."
4211
+ msgstr ""
4212
+
4213
+ # 'label' => 'autoplay',
4214
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to autoplay media requested through the HTMLMediaElement interface.', 'w3-total-cache' ),
4215
+ # ),
4216
+ #: BrowserCache_Page_View_SectionSecurity.php:30
4217
+ msgid ""
4218
+ "Controls whether the current document is allowed to autoplay media requested "
4219
+ "through the HTMLMediaElement interface."
4220
+ msgstr ""
4221
+
4222
+ # 'label' => 'unsized-media',
4223
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to change the size of media elements after the initial layout is complete.', 'w3-total-cache' ),
4224
+ # ),
4225
+ #: BrowserCache_Page_View_SectionSecurity.php:134
4226
+ msgid ""
4227
+ "Controls whether the current document is allowed to change the size of media "
4228
+ "elements after the initial layout is complete."
4229
+ msgstr ""
4230
+
4231
+ # 'label' => 'legacy-image-formats',
4232
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to display images in legacy formats.', 'w3-total-cache' ),
4233
+ # ),
4234
+ #: BrowserCache_Page_View_SectionSecurity.php:82
4235
+ msgid ""
4236
+ "Controls whether the current document is allowed to display images in legacy "
4237
+ "formats."
4238
+ msgstr ""
4239
+
4240
+ # 'label' => 'oversized-images',
4241
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to download and display large images.', 'w3-total-cache' ),
4242
+ # ),
4243
+ #: BrowserCache_Page_View_SectionSecurity.php:102
4244
+ msgid ""
4245
+ "Controls whether the current document is allowed to download and display "
4246
+ "large images."
4247
+ msgstr ""
4248
+
4249
+ # 'label' => 'unoptimized-images',
4250
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to download and display unoptimized images.', 'w3-total-cache' ),
4251
+ # ),
4252
+ #: BrowserCache_Page_View_SectionSecurity.php:130
4253
+ msgid ""
4254
+ "Controls whether the current document is allowed to download and display "
4255
+ "unoptimized images."
4256
+ msgstr ""
4257
+
4258
+ # 'label' => 'accelerometer',
4259
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to gather information about the acceleration of the device through the Accelerometer interface.', 'w3-total-cache' ),
4260
+ # ),
4261
+ #: BrowserCache_Page_View_SectionSecurity.php:22
4262
+ msgid ""
4263
+ "Controls whether the current document is allowed to gather information about "
4264
+ "the acceleration of the device through the Accelerometer interface."
4265
+ msgstr ""
4266
+
4267
+ # 'label' => 'ambient-light-sensor',
4268
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to gather information about the amount of light in the environment around the device through the AmbientLightSensor interface.', 'w3-total-cache' ),
4269
+ # ),
4270
+ #: BrowserCache_Page_View_SectionSecurity.php:26
4271
+ msgid ""
4272
+ "Controls whether the current document is allowed to gather information about "
4273
+ "the amount of light in the environment around the device through the "
4274
+ "AmbientLightSensor interface."
4275
+ msgstr ""
4276
+
4277
+ # 'label' => 'gyroscope',
4278
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to gather information about the orientation of the device through the Gyroscope interface.', 'w3-total-cache' ),
4279
+ # ),
4280
+ #: BrowserCache_Page_View_SectionSecurity.php:74
4281
+ msgid ""
4282
+ "Controls whether the current document is allowed to gather information about "
4283
+ "the orientation of the device through the Gyroscope interface."
4284
+ msgstr ""
4285
+
4286
+ # 'label' => 'magnetometer',
4287
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to gather information about the orientation of the device through the Magnetometer interface.', 'w3-total-cache' ),
4288
+ # ),
4289
+ #: BrowserCache_Page_View_SectionSecurity.php:86
4290
+ msgid ""
4291
+ "Controls whether the current document is allowed to gather information about "
4292
+ "the orientation of the device through the Magnetometer interface."
4293
+ msgstr ""
4294
+
4295
+ # 'label' => 'sync-xhr',
4296
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to make synchronous XMLHttpRequest requests.', 'w3-total-cache' ),
4297
+ # ),
4298
+ #: BrowserCache_Page_View_SectionSecurity.php:126
4299
+ msgid ""
4300
+ "Controls whether the current document is allowed to make synchronous "
4301
+ "XMLHttpRequest requests."
4302
+ msgstr ""
4303
+
4304
+ # 'label' => 'picture-in-picture',
4305
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to play a video in a Picture-in-Picture mode via the corresponding API.', 'w3-total-cache' ),
4306
+ # ),
4307
+ #: BrowserCache_Page_View_SectionSecurity.php:110
4308
+ msgid ""
4309
+ "Controls whether the current document is allowed to play a video in a "
4310
+ "Picture-in-Picture mode via the corresponding API."
4311
+ msgstr ""
4312
+
4313
+ # 'label' => 'speaker',
4314
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to play audio via any methods.', 'w3-total-cache' ),
4315
+ # ),
4316
+ #: BrowserCache_Page_View_SectionSecurity.php:122
4317
+ msgid ""
4318
+ "Controls whether the current document is allowed to play audio via any "
4319
+ "methods."
4320
+ msgstr ""
4321
+
4322
+ # 'label' => 'document-domain',
4323
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to set document.domain.', 'w3-total-cache' ),
4324
+ # ),
4325
+ #: BrowserCache_Page_View_SectionSecurity.php:46
4326
+ msgid ""
4327
+ "Controls whether the current document is allowed to set document.domain."
4328
+ msgstr ""
4329
+
4330
+ # 'label' => 'layout-animations',
4331
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to show layout animations.', 'w3-total-cache' ),
4332
+ # ),
4333
+ #: BrowserCache_Page_View_SectionSecurity.php:78
4334
+ msgid ""
4335
+ "Controls whether the current document is allowed to show layout animations."
4336
+ msgstr ""
4337
+
4338
+ # 'label' => 'vibrate',
4339
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to trigger device vibrations via Navigator.vibrate() method of Vibration API.', 'w3-total-cache' ),
4340
+ # ),
4341
+ #: BrowserCache_Page_View_SectionSecurity.php:142
4342
+ msgid ""
4343
+ "Controls whether the current document is allowed to trigger device "
4344
+ "vibrations via Navigator.vibrate() method of Vibration API."
4345
+ msgstr ""
4346
+
4347
+ # 'label' => 'microphone',
4348
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to use audio input devices.', 'w3-total-cache' ),
4349
+ # ),
4350
+ #: BrowserCache_Page_View_SectionSecurity.php:90
4351
+ msgid ""
4352
+ "Controls whether the current document is allowed to use audio input devices."
4353
+ msgstr ""
4354
+
4355
+ # 'label' => 'fullscreen',
4356
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to use Element.requestFullScreen().', 'w3-total-cache' ),
4357
+ # ),
4358
+ #: BrowserCache_Page_View_SectionSecurity.php:62
4359
+ msgid ""
4360
+ "Controls whether the current document is allowed to use Element."
4361
+ "requestFullScreen()."
4362
+ msgstr ""
4363
+
4364
+ # 'label' => 'screen-wake-lock',
4365
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to use Screen Wake Lock API to indicate that device should not turn off or dim the screen.', 'w3-total-cache' ),
4366
+ # ),
4367
+ #: BrowserCache_Page_View_SectionSecurity.php:118
4368
+ msgid ""
4369
+ "Controls whether the current document is allowed to use Screen Wake Lock API "
4370
+ "to indicate that device should not turn off or dim the screen."
4371
+ msgstr ""
4372
+
4373
+ # 'label' => 'encrypted-media',
4374
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to use the Encrypted Media Extensions API (EME).', 'w3-total-cache' ),
4375
+ # ),
4376
+ #: BrowserCache_Page_View_SectionSecurity.php:50
4377
+ msgid ""
4378
+ "Controls whether the current document is allowed to use the Encrypted Media "
4379
+ "Extensions API (EME)."
4380
+ msgstr ""
4381
+
4382
+ # 'label' => 'gamepad',
4383
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to use the Gamepad API. When this policy is disabled, calls to Navigator.getGamepads() will throw a SecurityError DOMException, and the gamepadconnected and gamepaddisconnected events will not fire.', 'w3-total-cache' ),
4384
+ # ),
4385
+ #: BrowserCache_Page_View_SectionSecurity.php:66
4386
+ msgid ""
4387
+ "Controls whether the current document is allowed to use the Gamepad API. "
4388
+ "When this policy is disabled, calls to Navigator.getGamepads() will throw a "
4389
+ "SecurityError DOMException, and the gamepadconnected and gamepaddisconnected "
4390
+ "events will not fire."
4391
+ msgstr ""
4392
+
4393
+ # 'label' => 'geolocation',
4394
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to use the Geolocation Interface.', 'w3-total-cache' ),
4395
+ # ),
4396
+ #: BrowserCache_Page_View_SectionSecurity.php:70
4397
+ msgid ""
4398
+ "Controls whether the current document is allowed to use the Geolocation "
4399
+ "Interface."
4400
+ msgstr ""
4401
+
4402
+ # 'label' => 'payment',
4403
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to use the Payment Request API.', 'w3-total-cache' ),
4404
+ # ),
4405
+ #: BrowserCache_Page_View_SectionSecurity.php:106
4406
+ msgid ""
4407
+ "Controls whether the current document is allowed to use the Payment Request "
4408
+ "API."
4409
+ msgstr ""
4410
+
4411
+ # 'label' => 'publickey-credentials-get',
4412
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to use the Web Authentication API to retrieve already stored public-key credentials, i.e. via navigator.credentials.get({publicKey: ..., ...}).', 'w3-total-cache' ),
4413
+ # ),
4414
+ #: BrowserCache_Page_View_SectionSecurity.php:114
4415
+ msgid ""
4416
+ "Controls whether the current document is allowed to use the Web "
4417
+ "Authentication API to retrieve already stored public-key credentials, i.e. "
4418
+ "via navigator.credentials.get({publicKey: ..., ...})."
4419
+ msgstr ""
4420
+
4421
+ # 'label' => 'midi',
4422
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to use the Web MIDI API.', 'w3-total-cache' ),
4423
+ # ),
4424
+ #: BrowserCache_Page_View_SectionSecurity.php:94
4425
+ msgid ""
4426
+ "Controls whether the current document is allowed to use the Web MIDI API."
4427
+ msgstr ""
4428
+
4429
+ # 'label' => 'usb',
4430
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to use the WebUSB API.', 'w3-total-cache' ),
4431
+ # ),
4432
+ #: BrowserCache_Page_View_SectionSecurity.php:138
4433
+ msgid "Controls whether the current document is allowed to use the WebUSB API."
4434
+ msgstr ""
4435
+
4436
+ # 'label' => 'vr',
4437
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to use the WebVR API. When this policy is disabled, the Promise returned by Navigator.getVRDisplays() will reject with a DOMException. Keep in mind that the WebVR standard is in the process of being replaced with WebXR.', 'w3-total-cache' ),
4438
+ # ),
4439
+ #: BrowserCache_Page_View_SectionSecurity.php:146
4440
+ msgid ""
4441
+ "Controls whether the current document is allowed to use the WebVR API. When "
4442
+ "this policy is disabled, the Promise returned by Navigator.getVRDisplays() "
4443
+ "will reject with a DOMException. Keep in mind that the WebVR standard is in "
4444
+ "the process of being replaced with WebXR."
4445
+ msgstr ""
4446
+
4447
+ # 'label' => 'xr-spatial-tracking',
4448
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to use the WebXR Device API.', 'w3-total-cache' ),
4449
+ # ),
4450
+ #: BrowserCache_Page_View_SectionSecurity.php:158
4451
+ msgid ""
4452
+ "Controls whether the current document is allowed to use the WebXR Device API."
4453
+ msgstr ""
4454
+
4455
+ # 'label' => 'camera',
4456
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to use video input devices.', 'w3-total-cache' ),
4457
+ # ),
4458
+ #: BrowserCache_Page_View_SectionSecurity.php:38
4459
+ msgid ""
4460
+ "Controls whether the current document is allowed to use video input devices."
4461
+ msgstr ""
4462
+
4463
+ # 'label' => 'wake-lock',
4464
+ # 'description' => esc_html__( 'Controls whether the current document is allowed to use Wake Lock API to indicate that device should not enter power-saving mode.', 'w3-total-cache' ),
4465
+ # ),
4466
+ #: BrowserCache_Page_View_SectionSecurity.php:150
4467
+ msgid ""
4468
+ "Controls whether the current document is allowed to use Wake Lock API to "
4469
+ "indicate that device should not enter power-saving mode."
4470
+ msgstr ""
4471
+
4472
+ # 'label' => 'battery',
4473
+ # 'description' => esc_html__( 'Controls whether the use of the Battery Status API is allowed. When this policy is disabled, the Promise returned by Navigator.getBattery() will reject with a NotAllowedError DOMException.', 'w3-total-cache' ),
4474
+ # ),
4475
+ #: BrowserCache_Page_View_SectionSecurity.php:34
4476
+ msgid ""
4477
+ "Controls whether the use of the Battery Status API is allowed. When this "
4478
+ "policy is disabled, the Promise returned by Navigator.getBattery() will "
4479
+ "reject with a NotAllowedError DOMException."
4480
+ msgstr ""
4481
+
4482
+ # translators: 3 opneing HTML acronym tag, 4 closing HTML acronym tag.
4483
+ # __(
4484
+ # 'Controls WordPress %1$sREST%2$s %3$sAPI%4$s functionality.',
4485
+ #. translators: 3 opneing HTML acronym tag, 4 closing HTML acronym tag.
4486
+ #: inc/options/pgcache.php:480
4487
+ msgid "Controls WordPress %1$sREST%2$s %3$sAPI%4$s functionality."
4488
+ msgstr ""
4489
+
4490
+ # } else {
4491
+ # esc_html_e( 'Convert', 'w3-total-cache' );
4492
+ # }
4493
+ #: Extension_ImageService_Plugin_Admin.php:543
4494
+ #: Extension_ImageService_Plugin_Admin.php:735
4495
+ #: Extension_ImageService_Plugin_Admin.php:739
4496
+ msgid "Convert"
4497
+ msgstr ""
4498
+
4499
+ # 'none_label' => 'Convert All',
4500
+ # 'description' => esc_html__( 'Convert all images in the media library.', 'w3-total-cache' ),
4501
+ # )
4502
+ #: Extension_ImageService_Page_View.php:125
4503
+ msgid "Convert all images in the media library."
4504
+ msgstr ""
4505
+
4506
+ # 'key' => null,
4507
+ # 'label' => esc_html__( 'Convert all images:', 'w3-total-cache' ),
4508
+ # 'label_class' => 'w3tc-imageservice-all',
4509
+ #: Extension_ImageService_Page_View.php:121
4510
+ msgid "Convert all images:"
4511
+ msgstr ""
4512
+
4513
+ # case 'converted':
4514
+ # esc_html_e( 'Converted', 'w3-total-cache' );
4515
+ # break;
4516
+ #: Extension_ImageService_Plugin_Admin.php:547
4517
+ #: Extension_ImageService_Plugin_Admin.php:729
4518
+ msgid "Converted"
4519
+ msgstr ""
4520
+
4521
+ # <tr>
4522
+ # <td><?php esc_html_e( 'Converted:', 'w3-total-cache' ); ?></td>
4523
+ # <td id="w3tc-imageservice-converted"><?php echo esc_html( $counts['converted'] ); ?></td>
4524
+ #: Extension_ImageService_Page_View.php:165
4525
+ msgid "Converted:"
4526
+ msgstr ""
4527
+
4528
+ # case 'cookie':
4529
+ # return __( 'Cookie is rejected', 'w3-total-cache' );
4530
+ # case 'DOING_CRONG':
4531
+ #: DbCache_WpdbInjection_QueryCaching.php:849
4532
+ msgid "Cookie is rejected"
4533
+ msgstr ""
4534
+
4535
+ # <label for="cookiegroup_<?php echo esc_attr( $group ); ?>_cookies">
4536
+ # <?php esc_html_e( 'Cookies:', 'w3-total-cache' ); ?>
4537
+ # </label>
4538
+ #: CacheGroups_Plugin_Admin_View.php:297
4539
+ msgid "Cookies:"
4540
+ msgstr ""
4541
+
4542
+ # $engine_values['cotendo'] = array(
4543
+ # 'label' => __( 'Cotendo (Akamai)', 'w3-total-cache' ),
4544
+ # 'optgroup' => $optgroup_pull
4545
+ #: Cdn_Plugin_Admin.php:186
4546
+ msgid "Cotendo (Akamai)"
4547
+ msgstr ""
4548
+
4549
+ # ),
4550
+ # 'test_error_msg' => __(
4551
+ # 'Could not perform this test. Please reload the page to try again or click skip button to abort the setup guide.',
4552
+ #: SetupGuide_Plugin_Admin.php:899
4553
+ msgid ""
4554
+ "Could not perform this test. Please reload the page to try again or click "
4555
+ "skip button to abort the setup guide."
4556
+ msgstr ""
4557
+
4558
+ # ),
4559
+ # 'config_error_msg' => __(
4560
+ # 'Could not update configuration. Please reload the page to try again or click skip button to abort the setup guide.',
4561
+ #: SetupGuide_Plugin_Admin.php:903
4562
+ msgid ""
4563
+ "Could not update configuration. Please reload the page to try again or "
4564
+ "click skip button to abort the setup guide."
4565
+ msgstr ""
4566
+
4567
+ # <tr>
4568
+ # <th><?php esc_html_e( 'Counts and filesizes by status:', 'w3-total-cache' ); ?></th>
4569
+ # <td>
4570
+ #: Extension_ImageService_Page_View.php:156
4571
+ msgid "Counts and filesizes by status:"
4572
+ msgstr ""
4573
+
4574
+ # <div class="ustats_block_chart">
4575
+ # <?php esc_html_e( 'CPU load', 'w3-total-cache' ); ?>
4576
+ # <canvas id="w3tcus_cpu_chart"></canvas>
4577
+ #: UsageStatistics_Page_View.php:390
4578
+ msgid "CPU load"
4579
+ msgstr ""
4580
+
4581
+ # <div class="ustats_block_data">
4582
+ # <div class="ustats_header"><?php esc_html_e( 'CPU load:', 'w3-total-cache' ); ?></div>
4583
+ # <div class="ustats_cpu_avg">
4584
+ #: UsageStatistics_Page_View.php:384
4585
+ msgid "CPU load:"
4586
+ msgstr ""
4587
+
4588
+ # <div class="ustats_cpu_avg">
4589
+ # <?php esc_html_e( 'CPU load: ', 'w3-total-cache' ); ?><span></span>
4590
+ # </div>
4591
+ #: UsageStatistics_Page_View.php:386
4592
+ msgid "CPU load: "
4593
+ msgstr ""
4594
+
4595
+ # <?php disabled( $useragent_groups['disabled'] ); ?>
4596
+ # value="<?php esc_html_e( 'Create a group', 'w3-total-cache' ); ?>" />
4597
+ # <?php esc_html_e( 'of user agents by specifying names in the user agents field. Assign a set of user agents to use a specific theme, redirect them to another domain or if an existing mobile plugin is active, create user agent groups to ensure that a unique cache is created for each user agent group. Drag and drop groups into order (if needed) to determine their priority (top -&gt; down).', 'w3-total-cache' ); ?>
4598
+ #: CacheGroups_Plugin_Admin_View.php:39 CacheGroups_Plugin_Admin_View.php:164
4599
+ #: CacheGroups_Plugin_Admin_View.php:242
4600
+ msgid "Create a group"
4601
+ msgstr ""
4602
+
4603
+ # <td colspan="2">
4604
+ # <label><input id="cdn_import_library_redirect_permanent" type="checkbox" checked="checked" /> <?php esc_html_e( 'Create a list of permanent (301) redirects for use in your site\'s .htaccess file', 'w3-total-cache' ); ?></label>
4605
+ # </td>
4606
+ #: inc/popup/cdn_import_library.php:42
4607
+ msgid ""
4608
+ "Create a list of permanent (301) redirects for use in your site's .htaccess "
4609
+ "file"
4610
+ msgstr ""
4611
+
4612
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
4613
+ # __(
4614
+ # 'Create a list of redirects to %1$sCDN%2$s (hostname specified in hostname field #1.)',
4615
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
4616
+ #: inc/popup/cdn_import_library.php:53
4617
+ msgid ""
4618
+ "Create a list of redirects to %1$sCDN%2$s (hostname specified in hostname "
4619
+ "field #1.)"
4620
+ msgstr ""
4621
+
4622
+ # <tr>
4623
+ # <th style="width: 300px;"><label><?php esc_html_e( 'Create account:', 'w3-total-cache' ); ?></label></th>
4624
+ # <td>
4625
+ #: Cdn_MaxCdn_Page_View.php:10 Cdn_StackPath2_Page_View.php:10
4626
+ #: Cdn_StackPath_Page_View.php:10
4627
+ msgid "Create account:"
4628
+ msgstr ""
4629
+
4630
+ # <p><?php esc_html_e( 'MaxCDN works magically with W3 Total Cache.', 'w3-total-cache' ); ?></p>
4631
+ # <a class="button-primary" href="<?php echo esc_url( wp_nonce_url( Util_Ui::admin_url( 'admin.php?page=w3tc_dashboard&w3tc_cdn_maxcdn_signup' ), 'w3tc' ) ); ?>" target="_blank"><?php esc_html_e( 'Create an Account', 'w3-total-cache' ); ?></a>
4632
+ # <p><span class="desc"><?php esc_html_e( 'Exclusive offers availabel for W3TC users!', 'w3-total-cache' ); ?></span></p>
4633
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:31
4634
+ msgid "Create an Account"
4635
+ msgstr ""
4636
+
4637
+ # translators: 7 opening HTML acronym tag, 8 closing HTML acronym tag.
4638
+ # __(
4639
+ # 'Create an apex %1$sDNS%2$s record pointing to your WordPress host %3$sIP%4$s.%5$sCloudFront will use this host to mirror your site.%6$sTip: If your real domain name is domain.com, then the host for the apex record should be origin.domain.com with the host %7$sIP%8$s of domain.com, e.g.:',
4640
+ #. translators: 7 opening HTML acronym tag, 8 closing HTML acronym tag.
4641
+ #: Cdnfsd_CloudFront_Popup_View_Distribution.php:34
4642
+ msgid ""
4643
+ "Create an apex %1$sDNS%2$s record pointing to your WordPress host %3$sIP%4$s."
4644
+ "%5$sCloudFront will use this host to mirror your site.%6$sTip: If your real "
4645
+ "domain name is domain.com, then the host for the apex record should be "
4646
+ "origin.domain.com with the host %7$sIP%8$s of domain.com, e.g.:"
4647
+ msgstr ""
4648
+
4649
+ # <b>or</b>
4650
+ # <input id="cdn_create_container" class="button {type: 's3', nonce: '<?php echo esc_attr( wp_create_nonce( 'w3tc' ) ); ?>'}" type="button" value="<?php esc_attr_e( 'Create as new bucket', 'w3-total-cache' ); ?>" /> <span id="cdn_create_container_status" class="w3tc-status w3tc-process"></span>
4651
+ # </td>
4652
+ #: inc/options/cdn/s3.php:81
4653
+ msgid "Create as new bucket"
4654
+ msgstr ""
4655
+
4656
+ # <b>or</b>
4657
+ # <input id="cdn_create_container" class="button {type: 'cf', nonce: '<?php echo esc_attr( wp_create_nonce( 'w3tc' ) ); ?>'}" type="button" value="<?php esc_attr_e( 'Create as new bucket with distribution', 'w3-total-cache' ); ?>" /> <span id="cdn_create_container_status" class="w3tc-status w3tc-process"></span>
4658
+ # </td>
4659
+ #: inc/options/cdn/cf.php:75
4660
+ msgid "Create as new bucket with distribution"
4661
+ msgstr ""
4662
+
4663
+ # <input id="cdn_create_container"
4664
+ # <?php Util_Ui::sealing_disabled( 'cdn.' ); ?> class="button {type: 'rscf', nonce: '<?php echo esc_attr( wp_create_nonce( 'w3tc' ) ); ?>'}" type="button" value="<?php esc_attr_e( 'Create container', 'w3-total-cache' ); ?>" />
4665
+ # <span id="cdn_create_container_status" class="w3tc-status w3tc-process"></span>
4666
+ #: inc/options/cdn/azure.php:27 inc/options/cdn/rscf.php:61
4667
+ msgid "Create container"
4668
+ msgstr ""
4669
+
4670
+ # <input id="cdn_create_container"
4671
+ # <?php Util_Ui::sealing_disabled( 'cdn.' ); ?> class="button {type: 'cf2', nonce: '<?php echo esc_attr( wp_create_nonce( 'w3tc' ) ); ?>'}" type="button" value="<?php esc_attr_e( 'Create distribution', 'w3-total-cache' ); ?>" />
4672
+ # <span id="cdn_create_container_status" class="w3tc-status w3tc-process"></span>
4673
+ #: inc/options/cdn/cf2.php:66
4674
+ msgid "Create distribution"
4675
+ msgstr ""
4676
+
4677
+ # <div class="metabox-holder">
4678
+ # <?php Util_Ui::postbox_header( esc_html__( 'Create new service', 'w3-total-cache' ) ); ?>
4679
+ # <table class="form-table" style="width: 100%">
4680
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Create.php:32
4681
+ msgid "Create new service"
4682
+ msgstr ""
4683
+
4684
+ # <?php wp_nonce_field( 'w3tc' ); ?>
4685
+ # <input id="create_pull_zone" id="create_pull_zone" type="button" value="<?php esc_attr_e( 'Create Pull Zone', 'w3-total-cache' ); ?>" class="button-primary" />
4686
+ # <div id="pull-zone-loading" style="display:inline-block;"></div>
4687
+ #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:6
4688
+ #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:55
4689
+ msgid "Create Pull Zone"
4690
+ msgstr ""
4691
+
4692
+ # $required_changes .= sprintf(
4693
+ # __( 'Create the <strong>%s</strong> file and paste the following text into it: <textarea>%s</textarea> <br />',
4694
+ # 'w3-total-cache' ),
4695
+ #: Util_Activation.php:140
4696
+ msgid ""
4697
+ "Create the <strong>%s</strong> file and paste the following text into it: "
4698
+ "<textarea>%s</textarea> <br />"
4699
+ msgstr ""
4700
+
4701
+ # $result = true;
4702
+ # $error = __( 'Created successfully.', 'w3-total-cache' );
4703
+ # } catch ( \Exception $ex ) {
4704
+ #: Cdn_AdminActions.php:478
4705
+ msgid "Created successfully."
4706
+ msgstr ""
4707
+
4708
+ # '<a href="http://codex.wordpress.org/Using_Permalinks#Creating_and_editing_.28.htaccess.29">' .
4709
+ # __( 'Creating and editing', 'w3-total-cache' ) . '</a>',
4710
+ # Util_Ui::button_hide_note2(
4711
+ #: Generic_AdminNotes.php:427
4712
+ msgid "Creating and editing"
4713
+ msgstr ""
4714
+
4715
+ # <div class="metabox-holder">
4716
+ # <?php Util_Ui::postbox_header( esc_html__( 'Credentials', 'w3-total-cache' ), '', 'credentials' ); ?>
4717
+ # <table class="form-table">
4718
+ #: Extension_CloudFlare_Page_View.php:12 Extension_CloudFlare_Page_View.php:49
4719
+ msgid "Credentials"
4720
+ msgstr ""
4721
+
4722
+ # empty( $this->api_key ) )
4723
+ # throw new \Exception( __( 'Credentials are not specified.', 'w3-total-cache' ) );
4724
+ #
4725
+ #: CdnEngine_Mirror_LimeLight.php:43 Cdnfsd_LimeLight_Engine.php:26
4726
+ msgid "Credentials are not specified."
4727
+ msgstr ""
4728
+
4729
+ # ),
4730
+ # '<acronym title="' . esc_attr__( 'Cross-Site Scripting', 'w3-total-cache' ) . '">',
4731
+ # '</acronym>'
4732
+ #: BrowserCache_Page_View_SectionSecurity.php:328
4733
+ #: BrowserCache_Page_View_SectionSecurity.php:572
4734
+ msgid "Cross-Site Scripting"
4735
+ msgstr ""
4736
+
4737
+ #. translators: 3 HTML acronym for Hypertext Markup Language (HTML).
4738
+ #: inc/options/general.php:201
4739
+ msgid "CSS"
4740
+ msgstr ""
4741
+
4742
+ # <div class="ustats_minify_size_compression_css">
4743
+ # <?php esc_html_e( 'CSS compression in cache: ', 'w3-total-cache' ); ?><span></span>
4744
+ # </div>
4745
+ #: UsageStatistics_Page_View.php:226
4746
+ msgid "CSS compression in cache: "
4747
+ msgstr ""
4748
+
4749
+ # 'csstidy' => array(
4750
+ # 'label' => esc_html__( 'CSS Tidy', 'w3-total-cache' ),
4751
+ # 'disabled' => ( version_compare( PHP_VERSION, '5.4.0', '<' ) ? true : false ),
4752
+ #: inc/options/general.php:309
4753
+ msgid "CSS Tidy"
4754
+ msgstr ""
4755
+
4756
+ # <li>
4757
+ # <?php esc_html_e( 'cURL extension:', 'w3-total-cache' ); ?>
4758
+ # <?php if ( function_exists( 'curl_init' ) ) : ?>
4759
+ #: inc/lightbox/self_test.php:146
4760
+ msgid "cURL extension:"
4761
+ msgstr ""
4762
+
4763
+ # <p>
4764
+ # <h4 class="w3tcstackpath_signup_h4"><?php esc_html_e( 'Current customers', 'w3-total-cache' ); ?></h4>
4765
+ # <p>
4766
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:33
4767
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:50
4768
+ #: Cdn_StackPath_Widget_View_Unauthorized.php:25
4769
+ #: Extension_Swarmify_Widget_View_NotConfigured.php:14
4770
+ msgid "Current customers"
4771
+ msgstr ""
4772
+
4773
+ # translators: 2 HTML strong tag containing new zone value followed by line break tag.
4774
+ # __(
4775
+ # 'currently set to %1$s will be changed to %2$s',
4776
+ #. translators: 2 HTML strong tag containing new zone value followed by line break tag.
4777
+ #. translators: 2 HTML strong tag containing new zone boolean value followed by line break tag.
4778
+ #: Cdnfsd_MaxCdn_Popup.php:158 Cdnfsd_MaxCdn_Popup.php:197
4779
+ msgid "currently set to %1$s will be changed to %2$s"
4780
+ msgstr ""
4781
+
4782
+ # translators: 4 opening HTML strong tag, 5 new setting value, 6 closing HTML strong tag followed by HTML line break.
4783
+ # __(
4784
+ # 'currently set to %1$s%2$s%3$s will be changed to %4$s%5$s%6$s',
4785
+ #. translators: 4 opening HTML strong tag, 5 new setting value, 6 closing HTML strong tag followed by HTML line break.
4786
+ #: Cdn_RackSpaceCdn_Popup.php:517
4787
+ msgid "currently set to %1$s%2$s%3$s will be changed to %4$s%5$s%6$s"
4788
+ msgstr ""
4789
+
4790
+ # 'cdn.import.files' => __( 'File types to import:', 'w3-total-cache' ),
4791
+ # 'cdn.custom.files' => __( 'Custom file list:', 'w3-total-cache' ),
4792
+ # 'cdn.rscf.location' => __( 'Location:', 'w3-total-cache' ),
4793
+ #: Cdn_ConfigLabels.php:30
4794
+ msgid "Custom file list:"
4795
+ msgstr ""
4796
+
4797
+ # case 'custom':
4798
+ # $title = __( 'Custom files export', 'w3-total-cache' );
4799
+ # $files = $w3_plugin_cdn->get_files_custom();
4800
+ #: Cdn_AdminActions.php:257
4801
+ msgid "Custom files export"
4802
+ msgstr ""
4803
+
4804
+ # 'pgcache.purge.feed.terms' => __( 'Post terms feeds', 'w3-total-cache' ),
4805
+ # 'pgcache.purge.archive.daily' => __( 'Daily archive pages', 'w3-total-cache' ),
4806
+ # 'pgcache.purge.archive.monthly' => __( 'Monthly archive pages', 'w3-total-cache' ),
4807
+ #: PgCache_ConfigLabels.php:33
4808
+ msgid "Daily archive pages"
4809
+ msgstr ""
4810
+
4811
+ # <span id="w3tc-wizard-dashboard-span" class="hidden">
4812
+ # <button id="w3tc-wizard-dashboard" class="w3tc-wizard-buttons"><?php esc_html_e( 'DASHBOARD', 'w3-total-cache' ); ?></button>
4813
+ # </span>
4814
+ #: inc/wizard/template.php:169
4815
+ msgid "DASHBOARD"
4816
+ msgstr ""
4817
+
4818
+ # <div id="dashboard-text" style="display:inline-block;">
4819
+ # <h1><?php esc_html_e( 'Dashboard', 'w3-total-cache' ); ?></h1>
4820
+ # <p>
4821
+ #: inc/options/dashboard.php:95 Root_AdminMenu.php:43 Root_AdminMenu.php:44
4822
+ msgid "Dashboard"
4823
+ msgstr ""
4824
+
4825
+ #
4826
+ # <?php Util_Ui::postbox_header( esc_html__( 'Dashboard Settings', 'w3-total-cache' ), '', 'dashboard' ); ?>
4827
+ # <table class="form-table">
4828
+ #: Extension_NewRelic_Page_View_Apm.php:175
4829
+ msgid "Dashboard Settings"
4830
+ msgstr ""
4831
+
4832
+ # <div class="metabox-holder" style="display: none">
4833
+ # <?php Util_Ui::postbox_header( __( 'Database', 'w3-total-cache' ) ); ?>
4834
+ #
4835
+ #: DbCache_Plugin.php:183 UsageStatistics_Page_View.php:311
4836
+ msgid "Database"
4837
+ msgstr ""
4838
+
4839
+ # 'db_cache' => array(
4840
+ # 'title' => esc_html__( 'Database Cache', 'w3-total-cache' ),
4841
+ # 'icon' => 'dashicons-database-view',
4842
+ #: DbCache_ConfigLabels.php:9 DbCache_Plugin.php:231 DbCache_Plugin.php:238
4843
+ #: DbCache_Plugin.php:247 FeatureShowcase_Plugin_Admin.php:420
4844
+ #: inc/options/common/header.php:69 inc/options/general.php:335
4845
+ #: Root_AdminMenu.php:73 Root_AdminMenu.php:74
4846
+ #: SetupGuide_Plugin_Admin.php:1052 SetupGuide_Plugin_Admin.php:1158
4847
+ #: SetupGuide_Plugin_Admin.php:1169 UsageStatistics_Page_View.php:316
4848
+ msgid "Database Cache"
4849
+ msgstr ""
4850
+
4851
+ # return array_merge( $config_labels, array(
4852
+ # 'dbcache.engine' => __( 'Database Cache Method:', 'w3-total-cache' ),
4853
+ # 'dbcache.enabled' => __( 'Database Cache:', 'w3-total-cache' ),
4854
+ #: DbCache_ConfigLabels.php:7
4855
+ msgid "Database Cache Method:"
4856
+ msgstr ""
4857
+
4858
+ #: inc/options/general.php:996
4859
+ msgid "Database Cache Purge Log"
4860
+ msgstr ""
4861
+
4862
+ # 'flush_pgcache' => __( 'Page cache successfully emptied.', 'w3-total-cache' ),
4863
+ # 'flush_dbcache' => __( 'Database cache successfully emptied.', 'w3-total-cache' ),
4864
+ # 'flush_objectcache' => __( 'Object cache successfully emptied.', 'w3-total-cache' ),
4865
+ #: Generic_Plugin_Admin.php:789
4866
+ msgid "Database cache successfully emptied."
4867
+ msgstr ""
4868
+
4869
+ # 'dbcache.engine' => __( 'Database Cache Method:', 'w3-total-cache' ),
4870
+ # 'dbcache.enabled' => __( 'Database Cache:', 'w3-total-cache' ),
4871
+ # 'dbcache.debug' => __( 'Database Cache', 'w3-total-cache' ),
4872
+ #: DbCache_ConfigLabels.php:8
4873
+ msgid "Database Cache:"
4874
+ msgstr ""
4875
+
4876
+ # $errors['memcache_not_responding.details'][] = sprintf(
4877
+ # __( 'Database Cache: %s.', 'w3-total-cache' ),
4878
+ # implode( ', ', $memcached_servers ) );
4879
+ #: DbCache_Plugin_Admin.php:61
4880
+ msgid "Database Cache: %s."
4881
+ msgstr ""
4882
+
4883
+ # translators: 1: Query hits, 2: Total queries, 3: Total time, 4: Engine name, 5: Reject reason.
4884
+ # __( 'Database Caching %1$d/%2$d queries in %3$.3f seconds using %4$s%5$s', 'w3-total-cache' ),
4885
+ # $this->query_hits,
4886
+ #. translators: 1: Query hits, 2: Total queries, 3: Total time, 4: Engine name, 5: Reject reason.
4887
+ #: DbCache_WpdbInjection_QueryCaching.php:883
4888
+ msgid "Database Caching %1$d/%2$d queries in %3$.3f seconds using %4$s%5$s"
4889
+ msgstr ""
4890
+
4891
+ # case 'dbcache.disabled':
4892
+ # return __( 'Database caching is disabled', 'w3-total-cache' );
4893
+ # case 'DONOTCACHEDB':
4894
+ #: DbCache_WpdbInjection_QueryCaching.php:841
4895
+ msgid "Database caching is disabled"
4896
+ msgstr ""
4897
+
4898
+ # translators: 1: Engine name, 2: Reject reason.
4899
+ # __( 'Database Caching using %1$s%2$s', 'w3-total-cache' ),
4900
+ # Cache::engine_name( $this->_config->get_string( 'dbcache.engine' ) ),
4901
+ #. translators: 1: Engine name, 2: Reject reason.
4902
+ #: DbCache_WpdbInjection_QueryCaching.php:893
4903
+ msgid "Database Caching using %1$s%2$s"
4904
+ msgstr ""
4905
+
4906
+ # translators: 1 Database cache engine name, 2 HTML span indicating DB cache enabled/disabled.
4907
+ # __(
4908
+ # 'Database caching via %1$s is currently %2$s.',
4909
+ #. translators: 1 Database cache engine name, 2 HTML span indicating DB cache enabled/disabled.
4910
+ #: inc/options/dbcache.php:16
4911
+ msgid "Database caching via %1$s is currently %2$s."
4912
+ msgstr ""
4913
+
4914
+ # <div class="metabox-holder">
4915
+ # <?php Util_Ui::postbox_header( esc_html__( 'Database Cluster Configuration File', 'w3-total-cache' ) ); ?>
4916
+ # <table class="form-table">
4917
+ #: inc/options/enterprise/dbcluster-config.php:12
4918
+ msgid "Database Cluster Configuration File"
4919
+ msgstr ""
4920
+
4921
+ # Util_Admin::redirect_with_custom_messages( $params, null,
4922
+ # array( 'dbcluster_save' => __( 'Database Cluster configuration file has been successfully saved', 'w3-total-cache' ) ) );
4923
+ # }
4924
+ #: Generic_AdminActions_Config.php:149
4925
+ msgid "Database Cluster configuration file has been successfully saved"
4926
+ msgstr ""
4927
+
4928
+ # 'control' => 'textbox',
4929
+ # 'description' => __( 'Database ID to use', 'w3-total-cache' ),
4930
+ # )
4931
+ #: inc/options/parts/redis.php:98 inc/options/parts/redis_extension.php:95
4932
+ msgid "Database ID to use"
4933
+ msgstr ""
4934
+
4935
+ # <div style="float: right"><a href="admin.php?page=w3tc_stats"><?php esc_html_e( '&lt; Back To Statistics', 'w3-total-cache' ); ?></a></div>
4936
+ # <h1><?php esc_html_e( 'Database Queries', 'w3-total-cache' ); ?></h1>
4937
+ # <p>
4938
+ #: UsageStatistics_Page_DbRequests_View.php:14
4939
+ msgid "Database Queries"
4940
+ msgstr ""
4941
+
4942
+ # <div class="wrapper">
4943
+ # <h5 class="w3tcnr-header-dbtimes"><?php esc_html_e( 'Database times', 'w3-total-cache' ); ?><div class="handlediv open" title="Click to toggle"><br></div></h5>
4944
+ # <div id="w3tc-database-times" class="top-five w3tcnr_dbtimes">
4945
+ #: Extension_NewRelic_Widget_View_Apm.php:51
4946
+ msgid "Database times"
4947
+ msgstr ""
4948
+
4949
+ # <div class="ustats_block_data">
4950
+ # <div class="ustats_header"><?php esc_html_e( 'Database:', 'w3-total-cache' ); ?></div>
4951
+ # <div class="ustats_wpdb_calls_total">
4952
+ #: UsageStatistics_Page_View.php:348
4953
+ msgid "Database:"
4954
+ msgstr ""
4955
+
4956
+ # <th><?php esc_html_e( 'Last Error', 'w3-total-cache' ); ?></th>
4957
+ # <th><?php esc_html_e( 'Date', 'w3-total-cache' ); ?></th>
4958
+ # <th><?php esc_html_e( 'Delete', 'w3-total-cache' ); ?></th>
4959
+ #: inc/popup/cdn_queue.php:24 inc/popup/cdn_queue.php:57
4960
+ #: inc/popup/cdn_queue.php:87
4961
+ msgid "Date"
4962
+ msgstr ""
4963
+
4964
+ # <?php
4965
+ # echo esc_html__( 'Date:', 'w3-total-cache' ) . esc_html( gmdate( 'm/d/Y H:i:s' ) ) . '<br />';
4966
+ # echo esc_html__( 'Version: ', 'w3-total-cache' ) . esc_html( W3TC_VERSION ) . '<br />';
4967
+ #: inc/email/support_request.php:11
4968
+ msgid "Date:"
4969
+ msgstr ""
4970
+
4971
+ # $strings[] = '';
4972
+ # $strings[] = __( 'Db cache debug info:', 'w3-total-cache' );
4973
+ # $strings[] = sprintf( '%1$s%2$d', str_pad( __( 'Total queries: ', 'w3-total-cache' ), 20 ), $this->query_total );
4974
+ #: DbCache_WpdbInjection_QueryCaching.php:901
4975
+ msgid "Db cache debug info:"
4976
+ msgstr ""
4977
+
4978
+ # else
4979
+ # $temp .= ' <a class="button-secondary" href="' . admin_url( wp_nonce_url( 'plugins.php?action=deactivate&amp;plugin=' . $plugin . '&amp;plugin_status=all&amp;paged=1&amp;s=', 'deactivate-plugin_' . $plugin ) ) . '" title="' . esc_attr__( 'Deactivate this plugin' ) . '">' . __( 'Deactivate', 'w3-total-cache' ) . '</a>';
4980
+ # $temp .= "</li>";
4981
+ #: Generic_Plugin_AdminCompatibility.php:105
4982
+ #: inc/options/extensions/list.php:33 inc/options/extensions/list.php:236
4983
+ msgid "Deactivate"
4984
+ msgstr ""
4985
+
4986
+ # <span class="deactivate">
4987
+ # <a href="<?php echo esc_url( wp_nonce_url( Util_Ui::admin_url( sprintf( 'admin.php?page=w3tc_extensions&action=deactivate&extension=%s&amp;extension_status=%s&amp;paged=%d', $extension, $extension_status, $page ) ), 'w3tc' ) ); ?>" title="<?php esc_attr_e( 'Deactivate this extension', 'w3-total-cache' ); ?> ">
4988
+ # <?php esc_html_e( 'Deactivate' ); ?>
4989
+ #: inc/options/extensions/list.php:130
4990
+ msgid "Deactivate this extension"
4991
+ msgstr ""
4992
+
4993
+ # if ( is_network_admin() && current_user_can( 'manage_network_plugins' ) )
4994
+ # $temp .= ' <a class="button-secondary" href="' . network_admin_url( wp_nonce_url( 'plugins.php?action=deactivate&amp;plugin=' . $plugin . '&amp;plugin_status=all&amp;paged=1&amp;s=', 'deactivate-plugin_' . $plugin ) ) . '" title="' . esc_attr__( 'Deactivate this plugin', 'w3-total-cache' ) . '">' . __( 'Network Deactivate' ) . '</a>';
4995
+ # else
4996
+ #: Generic_Plugin_AdminCompatibility.php:103
4997
+ msgid "Deactivate this plugin"
4998
+ msgstr ""
4999
+
5000
+ #
5001
+ # <?php Util_Ui::postbox_header( esc_html__( 'Debug', 'w3-total-cache' ), '', 'debug' ); ?>
5002
+ # <p>
5003
+ #: inc/options/common/header.php:146 inc/options/general.php:915
5004
+ msgid "Debug"
5005
+ msgstr ""
5006
+
5007
+ # <tr>
5008
+ # <th><?php esc_html_e( 'Debug mode:', 'w3-total-cache' ); ?></th>
5009
+ # <td>
5010
+ #: inc/options/general.php:939
5011
+ msgid "Debug mode:"
5012
+ msgstr ""
5013
+
5014
+ # 'parent' => 'w3tc',
5015
+ # 'title' => __( 'Debug: Overlays', 'w3-total-cache' ),
5016
+ # );
5017
+ #: Generic_Plugin.php:336
5018
+ msgid "Debug: Overlays"
5019
+ msgstr ""
5020
+
5021
+ # <input type="button" class="button" data-choice="accept" value="' . esc_html__( 'Accept', 'w3-total-cache' ) . '" /> &nbsp;
5022
+ # <input type="button" class="button" data-choice="decline" value="' . esc_html__( 'Decline', 'w3-total-cache' ) . '" />
5023
+ # </p>
5024
+ #: Licensing_Plugin_Admin.php:272 SetupGuide_Plugin_Admin.php:1110
5025
+ msgid "Decline"
5026
+ msgstr ""
5027
+
5028
+ # <?php $this->checkbox( 'pgcache.compatibility' ); ?> <?php Util_Ui::e_config_label( 'pgcache.compatibility' ); ?></label>
5029
+ # <p class="description"><?php esc_html_e( 'Decreases performance by ~20% at scale in exchange for increasing interoperability with more hosting environments and WordPress idiosyncrasies. This option should be enabled for most sites.', 'w3-total-cache' ); ?></p>
5030
+ # </td>
5031
+ #: inc/options/pgcache.php:535
5032
+ msgid ""
5033
+ "Decreases performance by ~20% at scale in exchange for increasing "
5034
+ "interoperability with more hosting environments and WordPress idiosyncrasies."
5035
+ " This option should be enabled for most sites."
5036
+ msgstr ""
5037
+
5038
+ # if ( 'dedicated' === $v ) {
5039
+ # esc_html_e( 'Dedicated', 'w3-total-cache' );
5040
+ # } elseif ( 'sni' === $v ) {
5041
+ #: Cdn_MaxCdn_Popup_View_Zone.php:42
5042
+ msgid "Dedicated"
5043
+ msgstr ""
5044
+
5045
+ # esc_html__( 'Shared Server (disk enhanced is best):', 'w3-total-cache' ),
5046
+ # esc_html__( 'Dedicated / Virtual Server:', 'w3-total-cache' ),
5047
+ # esc_html__( 'Multiple Servers:', 'w3-total-cache' ),
5048
+ #: inc/options/general.php:170 Util_Ui.php:1054
5049
+ msgid "Dedicated / Virtual Server:"
5050
+ msgstr ""
5051
+
5052
+ # <select id="js_use_type_header" name="minify__js__header__embed_type" class="js_enabled">
5053
+ # <option value="blocking" <?php selected( 'blocking', $this->_config->get_string( 'minify.js.header.embed_type' ) ); ?>><?php esc_html_e( 'Default (blocking)', 'w3-total-cache' ); ?></option>
5054
+ # <option value="nb-js" <?php selected( 'nb-js', $this->_config->get_string( 'minify.js.header.embed_type' ) ); ?>><?php esc_html_e( 'Non-blocking using JS', 'w3-total-cache' ); ?></option>
5055
+ #: inc/options/minify.php:349 inc/options/minify.php:368
5056
+ #: inc/options/minify.php:387
5057
+ msgid "Default (blocking)"
5058
+ msgstr ""
5059
+
5060
+ # 'objectcache.debug' => __( 'Object Cache', 'w3-total-cache' ),
5061
+ # 'objectcache.lifetime' => __( 'Default lifetime of cache objects:', 'w3-total-cache' ),
5062
+ # 'objectcache.file.gc' => __( 'Garbage collection interval:', 'w3-total-cache' ),
5063
+ #: ObjectCache_ConfigLabels.php:10
5064
+ msgid "Default lifetime of cache objects:"
5065
+ msgstr ""
5066
+
5067
+ # <tr>
5068
+ # <th style="width: 250px;"><label for="fragmentcache_lifetime"><?php esc_html_e( 'Default lifetime of cached fragments:', 'w3-total-cache' ); ?></label></th>
5069
+ # <td>
5070
+ #: Extension_FragmentCache_Page_View.php:99
5071
+ msgid "Default lifetime of cached fragments:"
5072
+ msgstr ""
5073
+
5074
+ # translators: 1 W3TC config director path.
5075
+ # __(
5076
+ # 'Default settings could not be restored. Please run %1$s to make the configuration file write-able, then try again.',
5077
+ #. translators: 1 W3TC config director path.
5078
+ #: Generic_Plugin_Admin.php:751
5079
+ msgid ""
5080
+ "Default settings could not be restored. Please run %1$s to make the "
5081
+ "configuration file write-able, then try again."
5082
+ msgstr ""
5083
+
5084
+ # 'browsercache.security.csp.sandbox' => __( 'sandbox:', 'w3-total-cache' ),
5085
+ # 'browsercache.security.csp.default' => __( 'default-src:', 'w3-total-cache' )
5086
+ # ) );
5087
+ #: BrowserCache_ConfigLabels.php:74
5088
+ msgid "default-src:"
5089
+ msgstr ""
5090
+
5091
+ # 'icon' => 'dashicons-admin-site',
5092
+ # 'text' => esc_html__( 'Defer loading offscreen Google Maps, making pages load faster.', 'w3-total-cache' ),
5093
+ # 'button' => '<button class="button" onclick="window.location=\'' .
5094
+ #: FeatureShowcase_Plugin_Admin.php:266
5095
+ msgid "Defer loading offscreen Google Maps, making pages load faster."
5096
+ msgstr ""
5097
+
5098
+ # 'icon' => 'dashicons-format-image',
5099
+ # 'text' => esc_html__( 'Defer loading offscreen images, making pages load faster.', 'w3-total-cache' ),
5100
+ # 'button' => '<button class="button" onclick="window.location=\'' .
5101
+ #: FeatureShowcase_Plugin_Admin.php:386
5102
+ msgid "Defer loading offscreen images, making pages load faster."
5103
+ msgstr ""
5104
+
5105
+ # 'checkbox_label' => esc_html__( 'Lazy Load Images', 'w3-total-cache' ),
5106
+ # 'description' => esc_html__( 'Defer loading offscreen images.', 'w3-total-cache' ),
5107
+ # )
5108
+ #: UserExperience_GeneralPage_View.php:20
5109
+ msgid "Defer loading offscreen images."
5110
+ msgstr ""
5111
+
5112
+ # <?php elseif ( defined( 'WP_CACHE' ) && ! WP_CACHE ) : ?>
5113
+ # <span style="background-color: #FF0000"><?php esc_html_e( 'Defined (false)', 'w3-total-cache' ); ?></span>
5114
+ # <?php else : ?>
5115
+ #: inc/lightbox/self_test.php:513
5116
+ msgid "Defined (false)"
5117
+ msgstr ""
5118
+
5119
+ # <?php if ( defined( 'WP_CACHE' ) && WP_CACHE ) : ?>
5120
+ # <span style="background-color: #33cc33"><?php esc_html_e( 'Defined (true)', 'w3-total-cache' ); ?></span>
5121
+ # <?php elseif ( defined( 'WP_CACHE' ) && ! WP_CACHE ) : ?>
5122
+ #: inc/lightbox/self_test.php:511
5123
+ msgid "Defined (true)"
5124
+ msgstr ""
5125
+
5126
+ # <?php Util_Ui::sealing_disabled( 'browsercache.' ); ?> value="<?php echo esc_attr( $this->_config->get_string( 'browsercache.security.csp.default' ) ); ?>" size="50" placeholder="Example: 'self' 'unsafe-inline' *.domain.com" />
5127
+ # <div><i><?php esc_html_e( 'Defines the defaults for directives you leave unspecified. Generally, this applies to any directive that ends with -src.', 'w3-total-cache' ); ?></i></div>
5128
+ # </td>
5129
+ #: BrowserCache_Page_View_SectionSecurity.php:785
5130
+ msgid ""
5131
+ "Defines the defaults for directives you leave unspecified. Generally, this "
5132
+ "applies to any directive that ends with -src."
5133
+ msgstr ""
5134
+
5135
+ # <th><?php esc_html_e( 'Date', 'w3-total-cache' ); ?></th>
5136
+ # <th><?php esc_html_e( 'Delete', 'w3-total-cache' ); ?></th>
5137
+ # </tr>
5138
+ #: inc/options/cdn/common/cnames.php:58 inc/options/minify.php:519
5139
+ #: inc/options/minify.php:774 inc/popup/cdn_queue.php:25
5140
+ #: inc/popup/cdn_queue.php:34 inc/popup/cdn_queue.php:58
5141
+ #: inc/popup/cdn_queue.php:67 inc/popup/cdn_queue.php:88
5142
+ #: inc/popup/cdn_queue.php:97
5143
+ msgid "Delete"
5144
+ msgstr ""
5145
+
5146
+ # <td>
5147
+ # <span class="referrer_group_number"><?php echo esc_attr( $index ); ?>.</span> <span class="referrer_group"><?php echo esc_html( $group ); ?></span> <input type="button" class="button referrer_delete" value="<?php esc_html_e( 'Delete group', 'w3-total-cache' ); ?>" />
5148
+ # </td>
5149
+ #: CacheGroups_Plugin_Admin_View.php:59 CacheGroups_Plugin_Admin_View.php:181
5150
+ #: CacheGroups_Plugin_Admin_View.php:262
5151
+ msgid "Delete group"
5152
+ msgstr ""
5153
+
5154
+ # <a href="#cdn_queue_upload" rel="#cdn_queue_upload" class="tab<?php echo 'upload' === $cdn_queue_tab ? ' tab-selected' : ''; ?>"><?php esc_html_e( 'Upload queue', 'w3-total-cache' ); ?></a> |
5155
+ # <a href="#cdn_queue_delete" rel="#cdn_queue_delete" class="tab<?php echo 'delete' === $cdn_queue_tab ? ' tab-selected' : ''; ?>"><?php esc_html_e( 'Delete queue', 'w3-total-cache' ); ?></a> |
5156
+ # <a href="#cdn_queue_purge" rel="#cdn_queue_purge" class="tab<?php echo 'purge' === $cdn_queue_tab ? ' tab-selected' : ''; ?>"><?php esc_html_e( 'Purge queue', 'w3-total-cache' ); ?></a>
5157
+ #: inc/popup/cdn_queue.php:13
5158
+ msgid "Delete queue"
5159
+ msgstr ""
5160
+
5161
+ # <?php else : ?>
5162
+ # <p class="empty"><?php esc_html_e( 'Delete queue is empty', 'w3-total-cache' ); ?></p>
5163
+ # <?php endif; ?>
5164
+ #: inc/popup/cdn_queue.php:76
5165
+ msgid "Delete queue is empty"
5166
+ msgstr ""
5167
+
5168
+ # 'disabled' => ( $is_pro ? null : true ),
5169
+ # 'excerpt' => __( 'Deliver visitors the lowest possible response and load times for all site content including HTML, media (e.g. images or fonts), CSS, and JavaScript.', 'w3-total-cache' ),
5170
+ # 'description' => array(
5171
+ #: Cdnfsd_GeneralPage_View.php:75
5172
+ msgid ""
5173
+ "Deliver visitors the lowest possible response and load times for all site "
5174
+ "content including HTML, media (e.g. images or fonts), CSS, and JavaScript."
5175
+ msgstr ""
5176
+
5177
+ # Util_Ui::button_link(
5178
+ # esc_html__( 'Deploy', 'w3-total-cache' ),
5179
+ # esc_url( wp_nonce_url( sprintf( 'admin.php?page=%1$s&w3tc_config_preview_deploy', $this->_page ), 'w3tc' ) )
5180
+ #: inc/options/general.php:54
5181
+ msgid "Deploy"
5182
+ msgstr ""
5183
+
5184
+ # Util_Ui::button_link(
5185
+ # __( 'deploy', 'w3-total-cache' ),
5186
+ # Util_Ui::url( array( 'w3tc_config_preview_deploy' => 'y' ) )
5187
+ #: Generic_AdminNotes.php:179
5188
+ msgid "deploy"
5189
+ msgstr ""
5190
+
5191
+ # <tr>
5192
+ # <th scope="col" id="cb" class="w3tc_extensions_manage_column_check"><label class="screen-reader-text" for="cb-select-all-1"><?php esc_html_e( 'Select All', 'w3-total-cache' ); ?></label><input id="cb-select-all-1" type="checkbox" class="w3tc_extensions_manage_input_checkall"></th><th scope="col" id="name" class="manage-column column-name" style=""><?php esc_html_e( 'Extension', 'w3-total-cache' ); ?></th><th scope="col" id="description" class="manage-column column-description" style=""><?php esc_html_e( 'Description', 'w3-total-cache' ); ?></th>
5193
+ # </tr>
5194
+ #: inc/options/extensions/list.php:64 inc/options/extensions/list.php:69
5195
+ msgid "Description"
5196
+ msgstr ""
5197
+
5198
+ # <tr>
5199
+ # <th><label for="label"><?php esc_html_e( 'Description:', 'w3-total-cache' ); ?></label></th>
5200
+ # <td><textarea id="label" name="label" cols="40"></textarea><div class="label_message w3tc-error inline"></div>
5201
+ #: inc/lightbox/create_netdna_maxcdn_pull_zone.php:45
5202
+ msgid "Description:"
5203
+ msgstr ""
5204
+
5205
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
5206
+ # __(
5207
+ # 'Detailed information about each cache will be appended in (publicly available) %1$sHTML%2$s comments in the page\'s source code. Performance in this mode will not be optimal, use sparingly and disable when not in use.',
5208
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
5209
+ #: inc/options/general.php:921
5210
+ msgid ""
5211
+ "Detailed information about each cache will be appended in (publicly "
5212
+ "available) %1$sHTML%2$s comments in the page's source code. Performance in "
5213
+ "this mode will not be optimal, use sparingly and disable when not in use."
5214
+ msgstr ""
5215
+
5216
+ #
5217
+ # <a href="?page=w3tc_stats&view=oc_requests"><?php esc_html_e( 'Detailed view (in debug mode only)', 'w3-total-cache' ); ?></a>
5218
+ # </div>
5219
+ #: UsageStatistics_Page_View.php:281
5220
+ msgid "Detailed view (in debug mode only)"
5221
+ msgstr ""
5222
+
5223
+ # ?>
5224
+ # <h5><?php esc_html_e( 'Detection of the below modules may not be possible on all environments. As such "Not detected" means that the environment disallowed detection for the given module which may still be installed/enabled whereas "Not installed" means the given module was detected but is not installed/detected.', 'w3-total-cache' ); ?></h5>
5225
+ # <?php foreach ( $modules as $module ) : ?>
5226
+ #: inc/lightbox/self_test.php:407
5227
+ msgid ""
5228
+ "Detection of the below modules may not be possible on all environments. As "
5229
+ "such \"Not detected\" means that the environment disallowed detection for "
5230
+ "the given module which may still be installed/enabled whereas \"Not "
5231
+ "installed\" means the given module was detected but is not "
5232
+ "installed/detected."
5233
+ msgstr ""
5234
+
5235
+ # <input id="fragmentcache_lifetime" type="text" <?php Util_Ui::sealing_disabled( 'fragmentcache.' ); ?> name="fragmentcache___lifetime" value="<?php echo esc_attr( $config->get_integer( array( 'fragmentcache', 'lifetime' ) ) ); ?>" size="8" /><?php esc_html_e( 'seconds', 'w3-total-cache' ); ?>
5236
+ # <p class="description"><?php esc_html_e( 'Determines the natural expiration time of unchanged cache items. The higher the value, the larger the cache.', 'w3-total-cache' ); ?></p>
5237
+ # </td>
5238
+ #: Extension_FragmentCache_Page_View.php:102 inc/options/dbcache.php:82
5239
+ #: inc/options/objectcache.php:69 inc/options/pgcache.php:585
5240
+ msgid ""
5241
+ "Determines the natural expiration time of unchanged cache items. The higher "
5242
+ "the value, the larger the cache."
5243
+ msgstr ""
5244
+
5245
+ # 'label' => esc_html__( 'Development mode:', 'w3-total-cache' ),
5246
+ # 'description' => esc_html__( 'Development Mode temporarily allows you to enter development mode for your websites if you need to make changes to your site. This will bypass CloudFlare\'s accelerated cache and slow down your site, but is useful if you are making changes to cacheable content (like images, css, or JavaScript) and would like to see those changes right away.', 'w3-total-cache' ),
5247
+ # )
5248
+ #: Extension_CloudFlare_Page_View.php:168
5249
+ msgid ""
5250
+ "Development Mode temporarily allows you to enter development mode for your "
5251
+ "websites if you need to make changes to your site. This will bypass "
5252
+ "CloudFlare's accelerated cache and slow down your site, but is useful if you "
5253
+ "are making changes to cacheable content (like images, css, or JavaScript) "
5254
+ "and would like to see those changes right away."
5255
+ msgstr ""
5256
+
5257
+ # 'key' => 'development_mode',
5258
+ # 'label' => esc_html__( 'Development mode:', 'w3-total-cache' ),
5259
+ # 'description' => esc_html__( 'Development Mode temporarily allows you to enter development mode for your websites if you need to make changes to your site. This will bypass CloudFlare\'s accelerated cache and slow down your site, but is useful if you are making changes to cacheable content (like images, css, or JavaScript) and would like to see those changes right away.', 'w3-total-cache' ),
5260
+ #: Extension_CloudFlare_Page_View.php:167
5261
+ msgid "Development mode:"
5262
+ msgstr ""
5263
+
5264
+ # Translators: 1 HTML line break, 2 opening HTML a tag to W3TC Support admin page, 3 closing HTML a tag.
5265
+ # __(
5266
+ # 'Did you know that we offer premium support services?%1$s Our experts will configure W3 Total Cache for you! %2$sClick here for info%3$s.',
5267
+ #. Translators: 1 HTML line break, 2 opening HTML a tag to W3TC Support admin page, 3 closing HTML a tag.
5268
+ #: inc/options/parts/dashboard_banner.php:16
5269
+ msgid ""
5270
+ "Did you know that we offer premium support services?%1$s Our experts will "
5271
+ "configure W3 Total Cache for you! %2$sClick here for info%3$s."
5272
+ msgstr ""
5273
+
5274
+ # 'browsercache.hsts' => __( '<acronym title="Hypertext Transfer Protocol">HTTP</acronym> Strict Transport Security policy', 'w3-total-cache' ),
5275
+ # 'browsercache.security.hsts.directive' => __( 'Directive:', 'w3-total-cache' ),
5276
+ # 'browsercache.security.xfo' => __( 'X-Frame-Options', 'w3-total-cache' ),
5277
+ #: BrowserCache_ConfigLabels.php:46 BrowserCache_ConfigLabels.php:48
5278
+ #: BrowserCache_ConfigLabels.php:50 BrowserCache_ConfigLabels.php:59
5279
+ msgid "Directive:"
5280
+ msgstr ""
5281
+
5282
+ # <?php if ( $this->_config->is_preview() ) : ?>
5283
+ # <input type="submit" name="w3tc_config_preview_disable" class="button-primary" value="<?php esc_attr_e( 'Disable', 'w3-total-cache' ); ?>" />
5284
+ # <?php
5285
+ #: inc/options/general.php:50
5286
+ msgid "Disable"
5287
+ msgstr ""
5288
+
5289
+ # Util_Ui::button_link(
5290
+ # __( 'disable', 'w3-total-cache' ),
5291
+ # Util_Ui::url( array( 'w3tc_config_preview_disable' => 'y' ) )
5292
+ #: Generic_AdminNotes.php:183
5293
+ msgid "disable"
5294
+ msgstr ""
5295
+
5296
+ # translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
5297
+ # __(
5298
+ # 'Disable %1$sREST%2$s %3$sAPI%4$s',
5299
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
5300
+ #: inc/options/pgcache.php:459
5301
+ msgid "Disable %1$sREST%2$s %3$sAPI%4$s"
5302
+ msgstr ""
5303
+
5304
+ # 'cdn.admin.media_library' => __( 'Use <acronym title="Content Delivery Network">CDN</acronym> links for the Media Library on admin pages', 'w3-total-cache' ),
5305
+ # 'cdn.reject.logged_roles' => __( 'Disable <acronym title="Content Delivery Network">CDN</acronym> for the following roles', 'w3-total-cache' ),
5306
+ # 'cdn.reject.uri' => __( 'Disable <acronym title="Content Delivery Network">CDN</acronym> on the following pages:', 'w3-total-cache' ),
5307
+ #: Cdn_ConfigLabels.php:21
5308
+ msgid ""
5309
+ "Disable <acronym title=\"Content Delivery Network\">CDN</acronym> for the "
5310
+ "following roles"
5311
+ msgstr ""
5312
+
5313
+ # 'cdn.canonical_header' => __( 'Add canonical header', 'w3-total-cache' ),
5314
+ # 'cdn.reject.ssl' => __( 'Disable <acronym title="Content Delivery Network">CDN</acronym> on <acronym title="Secure Sockets Layer">SSL</acronym> pages', 'w3-total-cache' ),
5315
+ # 'cdn.admin.media_library' => __( 'Use <acronym title="Content Delivery Network">CDN</acronym> links for the Media Library on admin pages', 'w3-total-cache' ),
5316
+ #: Cdn_ConfigLabels.php:19
5317
+ msgid ""
5318
+ "Disable <acronym title=\"Content Delivery Network\">CDN</acronym> on "
5319
+ "<acronym title=\"Secure Sockets Layer\">SSL</acronym> pages"
5320
+ msgstr ""
5321
+
5322
+ # 'cdn.reject.logged_roles' => __( 'Disable <acronym title="Content Delivery Network">CDN</acronym> for the following roles', 'w3-total-cache' ),
5323
+ # 'cdn.reject.uri' => __( 'Disable <acronym title="Content Delivery Network">CDN</acronym> on the following pages:', 'w3-total-cache' ),
5324
+ # 'cdn.autoupload.enabled' => __( 'Export changed files automatically', 'w3-total-cache' ),
5325
+ #: Cdn_ConfigLabels.php:22
5326
+ msgid ""
5327
+ "Disable <acronym title=\"Content Delivery Network\">CDN</acronym> on the "
5328
+ "following pages:"
5329
+ msgstr ""
5330
+
5331
+ # 'pgcache.compatibility' => __( 'Enable', 'w3-total-cache' ),
5332
+ # 'pgcache.remove_charset' => __( 'Disable <acronym title="Unicode Transformation Format">UTF</acronym>-8 blog charset support' , 'w3-total-cache' ),
5333
+ # 'pgcache.reject.request_head' => __( ' Disable caching of HEAD <acronym title="Hypertext Transfer Protocol">HTTP</acronym> requests', 'w3-total-cache' ),
5334
+ #: PgCache_ConfigLabels.php:41
5335
+ msgid ""
5336
+ "Disable <acronym title=\"Unicode Transformation Format\">UTF</acronym>-8 "
5337
+ "blog charset support"
5338
+ msgstr ""
5339
+
5340
+ # 'minify.yuijs.options.preserve-semi' => __( 'Preserve unnecessary semicolons', 'w3-total-cache' ),
5341
+ # 'minify.yuijs.options.disable-optimizations' => __( 'Disable all the built-in micro optimizations', 'w3-total-cache' ),
5342
+ # 'minify.yuijs.options.line-break' => __( 'Line break after:', 'w3-total-cache' )
5343
+ #: Minify_ConfigLabels.php:82
5344
+ msgid "Disable all the built-in micro optimizations"
5345
+ msgstr ""
5346
+
5347
+ # <?php Util_Ui::sealing_disabled( 'dbcache.' ); ?> cols="40" rows="5"><?php echo esc_textarea( implode( "\r\n", $this->_config->get_array( 'dbcache.reject.constants' ) ) ); ?></textarea>
5348
+ # <p class="description"><?php esc_html_e( 'Disable caching once specified constants defined.', 'w3-total-cache' ); ?></p>
5349
+ # </td>
5350
+ #: inc/options/dbcache.php:147
5351
+ msgid "Disable caching once specified constants defined."
5352
+ msgstr ""
5353
+
5354
+ # 'browsercache.cssjs.replace' => __( 'Prevent caching of objects after settings change', 'w3-total-cache' ),
5355
+ # 'browsercache.cssjs.nocookies' => __( 'Disable cookies for static files', 'w3-total-cache' ),
5356
+ # 'browsercache.html.last_modified' => __( 'Set Last-Modified header', 'w3-total-cache' ),
5357
+ #: BrowserCache_ConfigLabels.php:21 BrowserCache_ConfigLabels.php:41
5358
+ msgid "Disable cookies for static files"
5359
+ msgstr ""
5360
+
5361
+ # 'extension_id' => 'user-experience-emoji',
5362
+ # 'checkbox_label' => esc_html__( 'Disable Emoji', 'w3-total-cache' ),
5363
+ # 'description' => esc_html__( 'Remove emojis support from your website.', 'w3-total-cache' )
5364
+ #: UserExperience_GeneralPage_View.php:58
5365
+ msgid "Disable Emoji"
5366
+ msgstr ""
5367
+
5368
+ # 'checkbox_label' => esc_html__( 'Enable', 'w3-total-cache' ),
5369
+ # 'label' => esc_html__( 'Disable fragment cache:', 'w3-total-cache' ),
5370
+ # 'description' => esc_html__( 'Don\'t use fragment cache with the following hooks and for the specified user roles.' ),
5371
+ #: Extension_Genesis_Page_View.php:203
5372
+ msgid "Disable fragment cache:"
5373
+ msgstr ""
5374
+
5375
+ # 'control' => 'checkbox',
5376
+ # 'checkbox_label' => esc_html__( 'Disable jquery-migrate on the front-end', 'w3-total-cache' ),
5377
+ # 'description' => esc_html__( 'Remove jquery-migrate support from your website front-end.', 'w3-total-cache' ),
5378
+ #: UserExperience_GeneralPage_View.php:76
5379
+ msgid "Disable jquery-migrate on the front-end"
5380
+ msgstr ""
5381
+
5382
+ # 'minify.rewrite' => __( 'Rewrite <acronym title="Uniform Resource Locator">URL</acronym> structure', 'w3-total-cache' ),
5383
+ # 'minify.reject.logged' => __( 'Disable minify for logged in users', 'w3-total-cache' ),
5384
+ # 'minify.error.notification' => __( 'Minify error notification:', 'w3-total-cache' ),
5385
+ #: Minify_ConfigLabels.php:15
5386
+ msgid "Disable minify for logged in users"
5387
+ msgstr ""
5388
+
5389
+ # Util_Ui::button_link(
5390
+ # __( 'Disable statistics', 'w3-total-cache' ),
5391
+ # Util_Ui::url( array( 'w3tc_ustats_note_disable' => 'y' ) ),
5392
+ #: UsageStatistics_Plugin_Admin.php:64
5393
+ msgid "Disable statistics"
5394
+ msgstr ""
5395
+
5396
+ # 'extension_id' => 'user-experience-oembed',
5397
+ # 'checkbox_label' => esc_html__( 'Disable wp-embed script', 'w3-total-cache' ),
5398
+ # 'description' => esc_html__( 'Remove wp-embed.js script from your website. oEmbed functionality still works but you will not be able to embed other WordPress posts on your pages.', 'w3-total-cache' )
5399
+ #: UserExperience_GeneralPage_View.php:67
5400
+ msgid "Disable wp-embed script"
5401
+ msgstr ""
5402
+
5403
+ # <?php else : ?>
5404
+ # <span style="background-color: #FF0000"><?php esc_html_e( 'Disabled', 'w3-total-cache' ); ?></span>
5405
+ # <?php endif; ?>
5406
+ #: inc/lightbox/self_test.php:524 inc/options/minify.php:145
5407
+ msgid "Disabled"
5408
+ msgstr ""
5409
+
5410
+ # } else {
5411
+ # echo '<span class="w3tc-disabled">' . esc_html__( 'disabled', 'w3-total-cache' ) . '</span>';
5412
+ # }
5413
+ #: Cdnfsd_Page_View_Header.php:19 Cdn_Page_View_Header.php:20
5414
+ #: Extension_CloudFlare_Page_View.php:22 Extension_FeedBurner_Page_View.php:19
5415
+ #: Extension_FragmentCache_Page_View.php:31 Extension_Genesis_Page_View.php:23
5416
+ #: Extension_NewRelic_Page_View_Apm.php:20 Extension_Swarmify_Page_View.php:19
5417
+ #: inc/options/browsercache.php:27 inc/options/cdn.php:39
5418
+ #: inc/options/dashboard.php:27 inc/options/dbcache.php:21
5419
+ #: inc/options/general.php:20 inc/options/minify.php:31
5420
+ #: inc/options/objectcache.php:21 inc/options/pgcache.php:21
5421
+ msgid "disabled"
5422
+ msgstr ""
5423
+
5424
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
5425
+ # __(
5426
+ # 'Disabled (always use %1$sHTTP%2$s)',
5427
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
5428
+ #: Cdn_MaxCdn_Page_View.php:214 Cdn_StackPath2_Page_View.php:246
5429
+ #: Cdn_StackPath_Page_View.php:173
5430
+ msgid "Disabled (always use %1$sHTTP%2$s)"
5431
+ msgstr ""
5432
+
5433
+ # <option value="enabled"<?php selected( $config->get_string( 'cdn.rscf.ssl' ), 'enabled' ); ?>><?php esc_html_e( 'Enabled (always use SSL)', 'w3-total-cache' ); ?></option>
5434
+ # <option value="disabled"<?php selected( $config->get_string( 'cdn.rscf.ssl' ), 'disabled' ); ?>><?php esc_html_e( 'Disabled (always use HTTP)', 'w3-total-cache' ); ?></option>
5435
+ # </select>
5436
+ #: Cdn_Highwinds_Page_View.php:80 Cdn_LimeLight_Page_View.php:51
5437
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:98 inc/options/cdn/akamai.php:75
5438
+ #: inc/options/cdn/att.php:49 inc/options/cdn/azure.php:58
5439
+ #: inc/options/cdn/cf.php:105 inc/options/cdn/cf2.php:97
5440
+ #: inc/options/cdn/cotendo.php:56 inc/options/cdn/edgecast.php:49
5441
+ #: inc/options/cdn/ftp.php:202 inc/options/cdn/mirror.php:35
5442
+ #: inc/options/cdn/rscf.php:92 inc/options/cdn/s3.php:111
5443
+ #: inc/options/cdn/s3_compatible.php:87
5444
+ msgid "Disabled (always use HTTP)"
5445
+ msgstr ""
5446
+
5447
+ # <option value="enabled"<?php selected( $this->_config->get_string( 'cdn.s3.public_objects' ), 'enabled' ); ?>><?php esc_html_e( 'Enabled (apply the \'public-read\' ACL)', 'w3-total-cache' ); ?></option>
5448
+ # <option value="disabled"<?php selected( $this->_config->get_string( 'cdn.s3.public_objects' ), 'disabled' ); ?>><?php esc_html_e( 'Disabled (don\'t apply an ACL)', 'w3-total-cache' ); ?></option>
5449
+ # </select>
5450
+ #: inc/options/cdn/cf.php:178 inc/options/cdn/s3.php:188
5451
+ msgid "Disabled (don't apply an ACL)"
5452
+ msgstr ""
5453
+
5454
+ # <?php else : ?>
5455
+ # <?php esc_html_e( 'Disabled: see Requirements', 'w3-total-cache' ); ?>
5456
+ # <?php endif; ?>
5457
+ #: inc/options/extensions/list.php:147
5458
+ msgid "Disabled: see Requirements"
5459
+ msgstr ""
5460
+
5461
+ # 'minify.csstidy.options.discard_invalid_selectors' => __( 'Discard invalid selectors', 'w3-total-cache' ),
5462
+ # 'minify.csstidy.options.discard_invalid_properties' => __( 'Discard invalid properties', 'w3-total-cache' ),
5463
+ # 'minify.csstidy.options.preserve_css' => __( 'Preserve CSS', 'w3-total-cache' ),
5464
+ #: Minify_ConfigLabels.php:57
5465
+ msgid "Discard invalid properties"
5466
+ msgstr ""
5467
+
5468
+ # 'minify.csstidy.options.sort_selectors' => __( 'Sort Selectors (caution)', 'w3-total-cache' ),
5469
+ # 'minify.csstidy.options.discard_invalid_selectors' => __( 'Discard invalid selectors', 'w3-total-cache' ),
5470
+ # 'minify.csstidy.options.discard_invalid_properties' => __( 'Discard invalid properties', 'w3-total-cache' ),
5471
+ #: Minify_ConfigLabels.php:56
5472
+ msgid "Discard invalid selectors"
5473
+ msgstr ""
5474
+
5475
+ # 'w3tc_latest',
5476
+ # __( 'Discussions', 'w3-total-cache' ),
5477
+ # array( $this, 'widget_latest' ),
5478
+ #: Generic_Plugin_WidgetForum.php:57
5479
+ msgid "Discussions"
5480
+ msgstr ""
5481
+
5482
+ # 'none' => __( 'None', 'w3-total-cache' ),
5483
+ # 'disk' => __( 'Disk', 'w3-total-cache' ),
5484
+ # 'disk_basic' => __( 'Disk: Basic', 'w3-total-cache' ),
5485
+ #: SetupGuide_Plugin_Admin.php:909 Util_Ui.php:1011
5486
+ msgid "Disk"
5487
+ msgstr ""
5488
+
5489
+ # 'flush_opcode' => __( 'Opcode cache(s) successfully emptied.', 'w3-total-cache' ),
5490
+ # 'flush_file' => __( 'Disk cache(s) successfully emptied.', 'w3-total-cache' ),
5491
+ # 'flush_pgcache' => __( 'Page cache successfully emptied.', 'w3-total-cache' ),
5492
+ #: Generic_Plugin_Admin.php:787
5493
+ msgid "Disk cache(s) successfully emptied."
5494
+ msgstr ""
5495
+
5496
+ # 'disk' => __( 'Disk', 'w3-total-cache' ),
5497
+ # 'disk_basic' => __( 'Disk: Basic', 'w3-total-cache' ),
5498
+ # 'disk_enhanced' => __( 'Disk: Enhanced', 'w3-total-cache' ),
5499
+ #: inc/options/general.php:125 SetupGuide_Plugin_Admin.php:910
5500
+ msgid "Disk: Basic"
5501
+ msgstr ""
5502
+
5503
+ # 'disk_basic' => __( 'Disk: Basic', 'w3-total-cache' ),
5504
+ # 'disk_enhanced' => __( 'Disk: Enhanced', 'w3-total-cache' ),
5505
+ # 'enabled' => __( 'Enabled', 'w3-total-cache' ),
5506
+ #: inc/options/general.php:129 SetupGuide_Plugin_Admin.php:911
5507
+ msgid "Disk: Enhanced"
5508
+ msgstr ""
5509
+
5510
+ # 'checkbox_label' => esc_html__( 'Enable Google Page Speed dashboard widget', 'w3-total-cache' ),
5511
+ # 'description' => esc_html__( 'Display Google Page Speed results on the WordPress dashboard.', 'w3-total-cache' ),
5512
+ # 'label_class' => 'w3tc_single_column',
5513
+ #: inc/options/general.php:731
5514
+ msgid "Display Google Page Speed results on the WordPress dashboard."
5515
+ msgstr ""
5516
+
5517
+ # ),
5518
+ # '<acronym title="' . esc_attr__( 'Distributed Denial of Service', 'w3-total-cache' ) . '">',
5519
+ # '</acronym>'
5520
+ #: Extension_CloudFlare_Page_View.php:587
5521
+ msgid "Distributed Denial of Service"
5522
+ msgstr ""
5523
+
5524
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
5525
+ # __(
5526
+ # 'Do not add the prevent caching query string to the specified %1$sURI%2$ss. Supports regular expressions.',
5527
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
5528
+ #: inc/options/browsercache.php:225
5529
+ msgid ""
5530
+ "Do not add the prevent caching query string to the specified %1$sURI%2$ss. "
5531
+ "Supports regular expressions."
5532
+ msgstr ""
5533
+
5534
+ # <?php Util_Ui::sealing_disabled( 'dbcache.' ); ?> cols="40" rows="5"><?php echo esc_textarea( implode( "\r\n", $this->_config->get_array( 'dbcache.reject.sql' ) ) ); ?></textarea>
5535
+ # <p class="description"><?php esc_html_e( 'Do not cache queries that contain these terms. Any entered prefix (set in wp-config.php) will be replaced with current database prefix (default: wp_). Query stems can be identified using debug mode.', 'w3-total-cache' ); ?></p>
5536
+ # </td>
5537
+ #: inc/options/dbcache.php:131
5538
+ msgid ""
5539
+ "Do not cache queries that contain these terms. Any entered prefix (set in wp-"
5540
+ "config.php) will be replaced with current database prefix (default: wp_). "
5541
+ "Query stems can be identified using debug mode."
5542
+ msgstr ""
5543
+
5544
+ # <?php Util_Ui::sealing_disabled( 'dbcache.' ); ?> cols="40" rows="5"><?php echo esc_textarea( implode( "\r\n", $this->_config->get_array( 'dbcache.reject.words' ) ) ); ?></textarea>
5545
+ # <p class="description"><?php esc_html_e( 'Do not cache queries that contain these words or regular expressions.', 'w3-total-cache' ); ?></p>
5546
+ # </td>
5547
+ #: inc/options/dbcache.php:139
5548
+ msgid "Do not cache queries that contain these words or regular expressions."
5549
+ msgstr ""
5550
+
5551
+ # $merge_selectors_values = array(
5552
+ # 0 => __( 'Do not change anything', 'w3-total-cache' ),
5553
+ # 1 => __( 'Only seperate selectors (split at ,)', 'w3-total-cache' ),
5554
+ #: inc/options/minify/csstidy2.php:29
5555
+ msgid "Do not change anything"
5556
+ msgstr ""
5557
+
5558
+ # 'browsercache.replace.exceptions' => __( 'Prevent caching exception list:', 'w3-total-cache' ),
5559
+ # 'browsercache.no404wp' => __( 'Do not process 404 errors for static objects with WordPress', 'w3-total-cache' ),
5560
+ # 'browsercache.no404wp.exceptions' => __( '404 error exception list:', 'w3-total-cache' ),
5561
+ #: BrowserCache_ConfigLabels.php:9
5562
+ msgid "Do not process 404 errors for static objects with WordPress"
5563
+ msgstr ""
5564
+
5565
+ # name="minify__html__comments__ignore" class="html_enabled" cols="40" rows="5"><?php echo esc_textarea( implode( "\r\n", $this->_config->get_array( 'minify.html.comments.ignore' ) ) ); ?></textarea>
5566
+ # <p class="description"><?php esc_html_e( 'Do not remove comments that contain these terms.', 'w3-total-cache' ); ?></p>
5567
+ # </td>
5568
+ #: inc/options/minify.php:233
5569
+ msgid "Do not remove comments that contain these terms."
5570
+ msgstr ""
5571
+
5572
+ # case 'DOING_AJAX':
5573
+ # return __( 'Doing AJAX', 'w3-total-cache' );
5574
+ # case 'request':
5575
+ #: DbCache_WpdbInjection_QueryCaching.php:845
5576
+ msgid "Doing AJAX"
5577
+ msgstr ""
5578
+
5579
+ # case 'DOING_CRONG':
5580
+ # return __( 'Doing cron', 'w3-total-cache' );
5581
+ # case 'APP_REQUEST':
5582
+ #: DbCache_WpdbInjection_QueryCaching.php:851
5583
+ msgid "Doing cron"
5584
+ msgstr ""
5585
+
5586
+ # if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) {
5587
+ # $this->reject_reason = __( 'DOING_AJAX constant is defined', 'w3-total-cache' );
5588
+ # return false;
5589
+ #: Extension_NewRelic_Plugin.php:138 Extension_Swarmify_Plugin.php:104
5590
+ msgid "DOING_AJAX constant is defined"
5591
+ msgstr ""
5592
+
5593
+ # <p class="description">
5594
+ # <?php esc_html_e( 'Domain ', 'w3-total-cache' ); ?>
5595
+ # <acronym title="<?php esc_attr_e( 'Content Delivery Network', 'w3-total-cache' ); ?>">
5596
+ #: Cdnfsd_StackPath_Popup_View_Zone.php:49
5597
+ msgid "Domain "
5598
+ msgstr ""
5599
+
5600
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
5601
+ # __(
5602
+ # 'Domain %1$sCDN%2$s will handle',
5603
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
5604
+ #: Cdnfsd_MaxCdn_Popup_View_Zone.php:53
5605
+ msgid "Domain %1$sCDN%2$s will handle"
5606
+ msgstr ""
5607
+
5608
+ # ),
5609
+ # '<acronym title="' . esc_attr__( 'Domain Name System', 'w3-total-cache' ) . '">',
5610
+ # '</acronym>',
5611
+ #: Cdnfsd_CloudFront_Popup_View_Distribution.php:38 inc/options/about.php:52
5612
+ #: inc/options/cdn/cf.php:156 inc/options/cdn/cf2.php:148
5613
+ #: inc/options/cdn/s3.php:166 inc/options/cdn/s3_compatible.php:133
5614
+ #: inc/options/install.php:152
5615
+ msgid "Domain Name System"
5616
+ msgstr ""
5617
+
5618
+ # <tr>
5619
+ # <th><label for="cdn_akamai_zone"><?php esc_html_e( 'Domain to purge:', 'w3-total-cache' ); ?></label></th>
5620
+ # <td>
5621
+ #: inc/options/cdn/akamai.php:31
5622
+ msgid "Domain to purge:"
5623
+ msgstr ""
5624
+
5625
+ # <?php esc_html_e( 'CDN', 'w3-total-cache' ); ?>
5626
+ # </acronym> <?php esc_html_e( 'Domain:', 'w3-total-cache' ); ?>
5627
+ # </th>
5628
+ #: Cdnfsd_MaxCdn_Popup_View_Zone.php:44
5629
+ msgid "Domain:"
5630
+ msgstr ""
5631
+
5632
+ # <tr>
5633
+ # <td><?php esc_html_e( 'Domains to rename:', 'w3-total-cache' ); ?></td>
5634
+ # <td>
5635
+ #: inc/popup/cdn_rename_domain.php:59
5636
+ msgid "Domains to rename:"
5637
+ msgstr ""
5638
+
5639
+ #: inc/options/pgcache.php:445
5640
+ msgid "Don't cache"
5641
+ msgstr ""
5642
+
5643
+ # <option value="cache_noproxy"<?php selected( $value, 'cache_noproxy' ); ?>><?php esc_html_e( 'cache without proxy ("private, must-revalidate")', 'w3-total-cache' ); ?></option>
5644
+ # <option value="no_cache"<?php selected( $value, 'no_cache' ); ?>><?php esc_html_e( 'don\'t cache ("max-age=0, private, no-store, no-cache, must-revalidate")', 'w3-total-cache' ); ?></option>
5645
+ # </select>
5646
+ #: inc/options/browsercache.php:424
5647
+ msgid ""
5648
+ "don't cache (\"max-age=0, private, no-store, no-cache, must-revalidate\")"
5649
+ msgstr ""
5650
+
5651
+ # 'pgcache.cache.home' => get_option( 'show_on_front' ) == 'posts' ? __( 'Cache front page', 'w3-total-cache' ): __( 'Cache posts page', 'w3-total-cache' ),
5652
+ # 'pgcache.reject.front_page' => __( 'Don\'t cache front page', 'w3-total-cache' ),
5653
+ # 'pgcache.cache.feed' => __( 'Cache feeds: site, categories, tags, comments', 'w3-total-cache' ),
5654
+ #: PgCache_ConfigLabels.php:11
5655
+ msgid "Don't cache front page"
5656
+ msgstr ""
5657
+
5658
+ # 'pgcache.reject.logged' => __( 'Don\'t cache pages for logged in users', 'w3-total-cache' ),
5659
+ # 'pgcache.reject.logged_roles' => __( 'Don\'t cache pages for following user roles', 'w3-total-cache' ),
5660
+ # 'pgcache.prime.enabled' => __( 'Automatically prime the page cache', 'w3-total-cache' ),
5661
+ #: PgCache_ConfigLabels.php:17
5662
+ msgid "Don't cache pages for following user roles"
5663
+ msgstr ""
5664
+
5665
+ # 'pgcache.cache.404' => __( 'Cache 404 (not found) pages', 'w3-total-cache' ),
5666
+ # 'pgcache.reject.logged' => __( 'Don\'t cache pages for logged in users', 'w3-total-cache' ),
5667
+ # 'pgcache.reject.logged_roles' => __( 'Don\'t cache pages for following user roles', 'w3-total-cache' ),
5668
+ #: PgCache_ConfigLabels.php:16
5669
+ msgid "Don't cache pages for logged in users"
5670
+ msgstr ""
5671
+
5672
+ # 'dbcache.debug' => __( 'Database Cache', 'w3-total-cache' ),
5673
+ # 'dbcache.reject.logged' => __( 'Don\'t cache queries for logged in users', 'w3-total-cache' ),
5674
+ # 'dbcache.lifetime' => __( 'Maximum lifetime of cache objects:', 'w3-total-cache' ),
5675
+ #: DbCache_ConfigLabels.php:10
5676
+ msgid "Don't cache queries for logged in users"
5677
+ msgstr ""
5678
+
5679
+ # 'minify.html.inline.js' => __( 'Inline <acronym title="JavaScript">JS</acronym> minification', 'w3-total-cache' ),
5680
+ # 'minify.html.reject.feed' => __( 'Don\'t minify feeds', 'w3-total-cache' ),
5681
+ # 'minify.html.comments.ignore' => __( 'Ignored comment stems:', 'w3-total-cache' ),
5682
+ #: Minify_ConfigLabels.php:20
5683
+ msgid "Don't minify feeds"
5684
+ msgstr ""
5685
+
5686
+ # $optimise_shorthands_values = array(
5687
+ # 0 => __( 'Don\'t optimise', 'w3-total-cache' ),
5688
+ # 1 => __( 'Safe optimisations', 'w3-total-cache' ),
5689
+ #: inc/options/minify/csstidy2.php:16
5690
+ msgid "Don't optimise"
5691
+ msgstr ""
5692
+
5693
+ # 'control' => 'checkbox',
5694
+ # 'checkbox_label' => esc_html__( 'Don\'t optimize videos for logged in users', 'w3-total-cache' ),
5695
+ # 'description' => esc_html__( 'Only unauthenticated users will view optimized version of a given page.', 'w3-total-cache' ),
5696
+ #: Extension_Swarmify_Page_View.php:72
5697
+ msgid "Don't optimize videos for logged in users"
5698
+ msgstr ""
5699
+
5700
+ # class="w3tc_cdn_cloudfront_fsd_configure_distribution_skip w3tc-button-save button"
5701
+ # value="<?php esc_attr_e( 'Don\'t reconfigure, I know what I\'m doing', 'w3-total-cache' ); ?>" />
5702
+ # <?php endif; ?>
5703
+ #: Cdnfsd_CloudFront_Popup_View_Distribution.php:79
5704
+ #: Cdnfsd_MaxCdn_Popup_View_Zone.php:78 Cdnfsd_StackPath_Popup_View_Zone.php:64
5705
+ msgid "Don't reconfigure, I know what I'm doing"
5706
+ msgstr ""
5707
+
5708
+ # <?php Util_Ui::sealing_disabled( 'browsercache.' ); ?>
5709
+ # name="nocookies" value="1"<?php checked( $browsercache_nocookies, true ); ?> /> <?php esc_html_e( "Don't set cookies for static files", 'w3-total-cache' ); ?></label>
5710
+ # <p class="description"><?php esc_html_e( 'Removes Set-Cookie header for responses.', 'w3-total-cache' ); ?></p>
5711
+ #: inc/options/browsercache.php:246
5712
+ msgid "Don't set cookies for static files"
5713
+ msgstr ""
5714
+
5715
+ # class="w3tc_cdn_stackpath_fsd_done w3tc-button-save button-primary"
5716
+ # value="<?php esc_attr_e( 'Done', 'w3-total-cache' ); ?>" />
5717
+ # </p>
5718
+ #: Cdnfsd_CloudFront_Popup_View_Success.php:21
5719
+ #: Cdnfsd_LimeLight_Popup_View_Success.php:18
5720
+ #: Cdnfsd_MaxCdn_Popup_View_Success.php:22
5721
+ #: Cdnfsd_StackPath2_Popup_View_Success.php:19
5722
+ #: Cdnfsd_StackPath_Popup_View_Success.php:22
5723
+ #: Cdn_LimeLight_Popup_View_Success.php:31
5724
+ #: Cdn_MaxCdn_Popup_View_Success.php:19
5725
+ #: Cdn_RackSpaceCdn_Popup_View_Service_Created.php:59
5726
+ #: Cdn_StackPath2_Popup_View_Success.php:19
5727
+ #: Cdn_StackPath_Popup_View_Success.php:19
5728
+ msgid "Done"
5729
+ msgstr ""
5730
+
5731
+ # if ( defined( 'DONOTAUTORUM' ) && DONOTAUTORUM ) {
5732
+ # $this->newrelic_reject_reason = __( 'DONOTAUTORUM constant is defined', 'w3-total-cache' );
5733
+ #
5734
+ #: Extension_NewRelic_Plugin.php:148
5735
+ msgid "DONOTAUTORUM constant is defined"
5736
+ msgstr ""
5737
+
5738
+ # case 'DONOTCACHEDB':
5739
+ # return __( 'DONOTCACHEDB constant is defined', 'w3-total-cache' );
5740
+ # case 'DOING_AJAX':
5741
+ #: DbCache_WpdbInjection_QueryCaching.php:843
5742
+ msgid "DONOTCACHEDB constant is defined"
5743
+ msgstr ""
5744
+
5745
+ # case 'DONOTCACHEOBJECT':
5746
+ # return __( 'DONOTCACHEOBJECT constant is defined', 'w3-total-cache' );
5747
+ # default:
5748
+ #: ObjectCache_WpObjectCache_Regular.php:913
5749
+ msgid "DONOTCACHEOBJECT constant is defined"
5750
+ msgstr ""
5751
+
5752
+ # if ( defined( 'DONOTCDN' ) && DONOTCDN ) {
5753
+ # $this->cdn_reject_reason = esc_html__( 'DONOTCDN constant is defined', 'w3-total-cache' );
5754
+ #
5755
+ #: Cdn_Plugin.php:582
5756
+ msgid "DONOTCDN constant is defined"
5757
+ msgstr ""
5758
+
5759
+ # <td>
5760
+ # <input type="submit" name="w3tc_config_export" class="button" value="<?php esc_attr_e( 'Download', 'w3-total-cache' ); ?>" />
5761
+ # <p class="description"><?php esc_html_e( 'Download the active settings file.', 'w3-total-cache' ); ?></p>
5762
+ #: inc/options/general.php:1058
5763
+ msgid "Download"
5764
+ msgstr ""
5765
+
5766
+ # <input type="submit" name="w3tc_config_export" class="button" value="<?php esc_attr_e( 'Download', 'w3-total-cache' ); ?>" />
5767
+ # <p class="description"><?php esc_html_e( 'Download the active settings file.', 'w3-total-cache' ); ?></p>
5768
+ # </td>
5769
+ #: inc/options/general.php:1059
5770
+ msgid "Download the active settings file."
5771
+ msgstr ""
5772
+
5773
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
5774
+ # __(
5775
+ # 'Dramatically increase website speeds in just a few clicks! Add the MaxCDN content delivery network (%1$sCDN%2$s) service to your site.',
5776
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
5777
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:14
5778
+ msgid ""
5779
+ "Dramatically increase website speeds in just a few clicks! Add the MaxCDN "
5780
+ "content delivery network (%1$sCDN%2$s) service to your site."
5781
+ msgstr ""
5782
+
5783
+ #. translators: 1 HTML acronym for Content Delivery Network (CDN).
5784
+ #: Cdn_StackPath_Widget_View_Unauthorized.php:15
5785
+ msgid ""
5786
+ "Dramatically increase website speeds in just a few clicks! Add the StackPath "
5787
+ "content delivery network (%1$s) service to your site."
5788
+ msgstr ""
5789
+
5790
+ # <div class="ustats_access_log_dynamic_requests_total">
5791
+ # <?php esc_html_e( 'Dynamic Requests/period: ', 'w3-total-cache' ); ?><span></span>
5792
+ # </div>
5793
+ #: UsageStatistics_Page_View.php:184
5794
+ msgid "Dynamic Requests/period: "
5795
+ msgstr ""
5796
+
5797
+ # <div class="ustats_access_log_dynamic_requests_per_second">
5798
+ # <?php esc_html_e( 'Dynamic Requests/second: ', 'w3-total-cache' ); ?><span></span>
5799
+ # </div>
5800
+ #: UsageStatistics_Page_View.php:187
5801
+ msgid "Dynamic Requests/second: "
5802
+ msgstr ""
5803
+
5804
+ # <div class="ustats_access_log_dynamic_requests_timing">
5805
+ # <?php esc_html_e( 'Dynamic time to process (ms): ', 'w3-total-cache' ); ?><span></span>
5806
+ # </div>
5807
+ #: UsageStatistics_Page_View.php:190
5808
+ msgid "Dynamic time to process (ms): "
5809
+ msgstr ""
5810
+
5811
+ # <?php
5812
+ # echo esc_html__( 'E-mail sent from IP: ', 'w3-total-cache' ) . esc_html( $_SERVER['REMOTE_ADDR'] ) . '<br />';
5813
+ # echo esc_html__( 'User Agent: ', 'w3-total-cache' ) . esc_html( $_SERVER['HTTP_USER_AGENT'] );
5814
+ #: inc/email/support_request.php:45
5815
+ msgid "E-mail sent from IP: "
5816
+ msgstr ""
5817
+
5818
+ # echo esc_html__( 'Name: ', 'w3-total-cache' ) . esc_html( $name ) . '<br />';
5819
+ # echo esc_html__( 'E-Mail: ', 'w3-total-cache' ) . '<a href="mailto:' . esc_attr( $email ) . '">' . esc_html( $email ) . '</a><br />';
5820
+ #
5821
+ #: inc/email/support_request.php:15
5822
+ msgid "E-Mail: "
5823
+ msgstr ""
5824
+
5825
+ # <textarea cols="40" rows="3" id="cdn_rename_domain_names"></textarea><br />
5826
+ # <?php esc_html_e( 'e.g.: domain.com', 'w3-total-cache' ); ?>
5827
+ # </td>
5828
+ #: inc/popup/cdn_rename_domain.php:62
5829
+ msgid "e.g.: domain.com"
5830
+ msgstr ""
5831
+
5832
+ # 'key' => 'edge_cache_ttl',
5833
+ # 'label' => esc_html__( 'Edge cache TTL:', 'w3-total-cache' ),
5834
+ # 'values' => array(
5835
+ #: Extension_CloudFlare_Page_View.php:319
5836
+ msgid "Edge cache TTL:"
5837
+ msgstr ""
5838
+
5839
+ # 'enabled_edge' => __( 'Edge mode has been enabled.', 'w3-total-cache' ),
5840
+ # 'disabled_edge' => __( 'Edge mode has been disabled.', 'w3-total-cache' ),
5841
+ # 'pull_zone' => __( 'Pull Zone was automatically created.', 'w3-total-cache' ),
5842
+ #: Generic_Plugin_Admin.php:814
5843
+ msgid "Edge mode has been disabled."
5844
+ msgstr ""
5845
+
5846
+ # 'add_in_removed' => __( 'The add-in has been removed.', 'w3-total-cache' ),
5847
+ # 'enabled_edge' => __( 'Edge mode has been enabled.', 'w3-total-cache' ),
5848
+ # 'disabled_edge' => __( 'Edge mode has been disabled.', 'w3-total-cache' ),
5849
+ #: Generic_Plugin_Admin.php:813
5850
+ msgid "Edge mode has been enabled."
5851
+ msgstr ""
5852
+
5853
+ # } else {
5854
+ # $message = sprintf( __( 'Edit file <strong>%s</strong> and add the following rules above the WordPress directives:',
5855
+ # 'w3-total-cache' ), $path );
5856
+ #: Util_Rule.php:312
5857
+ msgid ""
5858
+ "Edit file <strong>%s</strong> and add the following rules above the "
5859
+ "WordPress directives:"
5860
+ msgstr ""
5861
+
5862
+ # $ex->getMessage(), $ex->credentials_form(),
5863
+ # sprintf( __( 'Edit file <strong>%s</strong> and remove all lines between and including <strong>%s</strong>
5864
+ # and <strong>%s</strong> markers.', 'w3-total-cache' ), $path, $start, $end ), $path ) );
5865
+ #: Util_Rule.php:382
5866
+ msgid ""
5867
+ "Edit file <strong>%s</strong> and remove all lines between and including "
5868
+ "<strong>%s</strong>\n"
5869
+ "\t\t\t\tand <strong>%s</strong> markers."
5870
+ msgstr ""
5871
+
5872
+ #: Util_Rule.php:309
5873
+ msgid ""
5874
+ "Edit file <strong>%s</strong> and replace all lines between and including "
5875
+ "<strong>%s</strong> and <strong>%s</strong> markers with:"
5876
+ msgstr ""
5877
+
5878
+ # translators: 1: opening HTML strong tag, 2: clsoing HTML strong tag, 3: HTML line break, 4: HTML input button to hide message.
5879
+ # __(
5880
+ # 'Either the PHP configuration, web server configuration or a script in the WordPress installation has %1$szlib.output_compression%2$s enabled.%3$sPlease locate and disable this setting to ensure proper HTTP compression behavior. %4$s',
5881
+ #. translators: 1: opening HTML strong tag, 2: clsoing HTML strong tag, 3: HTML line break, 4: HTML input button to hide message.
5882
+ #: Generic_AdminNotes.php:107
5883
+ msgid ""
5884
+ "Either the PHP configuration, web server configuration or a script in the "
5885
+ "WordPress installation has %1$szlib.output_compression%2$s enabled."
5886
+ "%3$sPlease locate and disable this setting to ensure proper HTTP compression "
5887
+ "behavior. %4$s"
5888
+ msgstr ""
5889
+
5890
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
5891
+ # __(
5892
+ # 'ElastiCache %1$sPHP%2$s module not found',
5893
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
5894
+ #: inc/options/parts/memcached.php:46
5895
+ msgid "ElastiCache %1$sPHP%2$s module not found"
5896
+ msgstr ""
5897
+
5898
+ # ( ! Util_Installed::memcached_aws() ?
5899
+ # __( 'ElastiCache <acronym title="Hypertext Preprocessor">PHP</acronym> module not found', 'w3-total-cache' ) :
5900
+ # __( 'When Amazon ElastiCache used, specify configuration endpoint as Memecached host', 'w3-total-cache' )
5901
+ #: inc/options/parts/memcached_extension.php:49
5902
+ msgid ""
5903
+ "ElastiCache <acronym title=\"Hypertext Preprocessor\">PHP</acronym> module "
5904
+ "not found"
5905
+ msgstr ""
5906
+
5907
+ # 'render_blocking_css' => array(
5908
+ # 'title' => esc_html__( 'Eliminate Render Blocking CSS', 'w3-total-cache' ),
5909
+ # 'icon' => 'dashicons-table-row-delete',
5910
+ #: FeatureShowcase_Plugin_Admin.php:288
5911
+ msgid "Eliminate Render Blocking CSS"
5912
+ msgstr ""
5913
+
5914
+ # 'control' => 'checkbox',
5915
+ # 'checkbox_label' => __( 'Eliminate render-blocking <acronym title="Cascading Style Sheet">CSS</acronym> by moving it to <acronym title="Hypertext Transfer Protocol">HTTP</acronym> body', 'w3-total-cache' ),
5916
+ # 'disabled' => ( $is_pro ? null : true ),
5917
+ #: inc/options/minify/css.php:17
5918
+ msgid ""
5919
+ "Eliminate render-blocking <acronym title=\"Cascading Style Sheet\">"
5920
+ "CSS</acronym> by moving it to <acronym title=\"Hypertext Transfer Protocol\">"
5921
+ "HTTP</acronym> body"
5922
+ msgstr ""
5923
+
5924
+ # 'admin' => esc_html__( 'Admin Notification', 'w3-total-cache' ),
5925
+ # 'email' => esc_html__( 'Email Notification', 'w3-total-cache' ),
5926
+ # 'admin,email' => esc_html__( 'Both Admin &amp; Email Notification', 'w3-total-cache' ),
5927
+ #: inc/options/minify.php:147
5928
+ msgid "Email Notification"
5929
+ msgstr ""
5930
+
5931
+ # <tr>
5932
+ # <th><label for="cdn_akamai_email_notification"><?php esc_html_e( 'Email notification:', 'w3-total-cache' ); ?></label></th>
5933
+ # <td>
5934
+ #: inc/options/cdn/akamai.php:23
5935
+ msgid "Email notification:"
5936
+ msgstr ""
5937
+
5938
+ # 'key' => 'email_obfuscation',
5939
+ # 'label' => esc_html__( 'Email obfuscation:', 'w3-total-cache' ),
5940
+ # 'description' => esc_html__( 'Encrypt email adresses on your web page from bots, while keeping them visible to humans. ', 'w3-total-cache' ),
5941
+ #: Extension_CloudFlare_Page_View.php:458
5942
+ msgid "Email obfuscation:"
5943
+ msgstr ""
5944
+
5945
+ # <tr>
5946
+ # <th><?php esc_html_e( 'Email:', 'w3-total-cache' ); ?></td>
5947
+ # <td>
5948
+ #: Extension_CloudFlare_Popup_View_Intro.php:19
5949
+ msgid "Email:"
5950
+ msgstr ""
5951
+
5952
+ # <option value="include"<?php selected( $selected, 'include' ); ?>><?php esc_html_e( 'Embed in &lt;head&gt;', 'w3-total-cache' ); ?></option>
5953
+ # <option value="include-body"<?php selected( $selected, 'include-body' ); ?>><?php esc_html_e( 'Embed after &lt;body&gt;', 'w3-total-cache' ); ?></option>
5954
+ # <option value="include-footer"<?php selected( $selected, 'include-footer' ); ?>><?php esc_html_e( 'Embed before &lt;/body&gt;', 'w3-total-cache' ); ?></option>
5955
+ #: inc/lightbox/minify_recommendations.php:58 inc/options/minify.php:514
5956
+ msgid "Embed after &lt;body&gt;"
5957
+ msgstr ""
5958
+
5959
+ # <option value="include-body"<?php selected( $selected, 'include-body' ); ?>><?php esc_html_e( 'Embed after &lt;body&gt;', 'w3-total-cache' ); ?></option>
5960
+ # <option value="include-footer"<?php selected( $selected, 'include-footer' ); ?>><?php esc_html_e( 'Embed before &lt;/body&gt;', 'w3-total-cache' ); ?></option>
5961
+ # </select>
5962
+ #: inc/lightbox/minify_recommendations.php:59 inc/options/minify.php:515
5963
+ msgid "Embed before &lt;/body&gt;"
5964
+ msgstr ""
5965
+
5966
+ # <select name="recom_js_location">
5967
+ # <option value="include"<?php selected( $selected, 'include' ); ?>><?php esc_html_e( 'Embed in &lt;head&gt;', 'w3-total-cache' ); ?></option>
5968
+ # <option value="include-body"<?php selected( $selected, 'include-body' ); ?>><?php esc_html_e( 'Embed after &lt;body&gt;', 'w3-total-cache' ); ?></option>
5969
+ #: inc/lightbox/minify_recommendations.php:57 inc/options/minify.php:513
5970
+ msgid "Embed in &lt;head&gt;"
5971
+ msgstr ""
5972
+
5973
+ # <th><?php esc_html_e( 'Template:', 'w3-total-cache' ); ?></th>
5974
+ # <th colspan="2"><?php esc_html_e( 'Embed Location:', 'w3-total-cache' ); ?></th>
5975
+ # </tr>
5976
+ #: inc/lightbox/minify_recommendations.php:37 inc/options/minify.php:492
5977
+ msgid "Embed Location:"
5978
+ msgstr ""
5979
+
5980
+ # 'minify.js.enable' => __( 'Enable', 'w3-total-cache' ),
5981
+ # 'minify.js.header.embed_type' => __( 'Embed type:', 'w3-total-cache' ),
5982
+ # 'minify.js.combine.header' => __( 'Combine only', 'w3-total-cache' ),
5983
+ #: Minify_ConfigLabels.php:23
5984
+ msgid "Embed type:"
5985
+ msgstr ""
5986
+
5987
+ # if ( empty( $this->_config['account'] ) ) {
5988
+ # $results = $this->_get_results( $files, W3TC_CDN_RESULT_HALT, __( 'Empty account #.', 'w3-total-cache' ) );
5989
+ #
5990
+ #: CdnEngine_Mirror_Edgecast.php:38
5991
+ msgid "Empty account #."
5992
+ msgstr ""
5993
+
5994
+ # ?>
5995
+ # <input id="flush_all" class="button" type="submit" name="w3tc_flush_all" value="<?php esc_html_e( 'empty all caches', 'w3-total-cache' ); ?>"<?php echo ! $enabled ? ' disabled="disabled"' : ''; ?> /> <?php esc_html_e( 'at once or', 'w3-total-cache' ); ?>
5996
+ # <input class="button" type="submit" name="w3tc_flush_memcached" value="<?php esc_html_e( 'empty only the memcached cache(s)', 'w3-total-cache' ); ?>"<?php echo ! $can_empty_memcache ? ' disabled="disabled"' : ''; ?> /> <?php esc_html_e( 'or', 'w3-total-cache' ); ?>
5997
+ #: inc/options/dashboard.php:64
5998
+ msgid "empty all caches"
5999
+ msgstr ""
6000
+
6001
+ # $actions[] = __( ' or ', 'w3-total-cache' ) . '<input id="flush_all_except_cf" class="button" type="submit"
6002
+ # name="w3tc_cloudflare_flush_all_except_cf" value="' . __( 'empty all caches except CloudFlare', 'w3-total-cache' ) . '"' .
6003
+ # (
6004
+ #: Extension_CloudFlare_Plugin_Admin.php:301
6005
+ msgid "empty all caches except CloudFlare"
6006
+ msgstr ""
6007
+
6008
+ # if ( empty( $this->_config['authorization_key'] ) ) {
6009
+ # $results = $this->_get_results( $files, W3TC_CDN_RESULT_HALT, __( 'Empty Authorization Key.', 'w3-total-cache' ) );
6010
+ #
6011
+ #: CdnEngine_Mirror_MaxCdn.php:35 CdnEngine_Mirror_MaxCdn.php:110
6012
+ #: CdnEngine_Mirror_StackPath.php:33 CdnEngine_Mirror_StackPath.php:82
6013
+ #: CdnEngine_Mirror_StackPath2.php:32 CdnEngine_Mirror_StackPath2.php:68
6014
+ msgid "Empty Authorization Key."
6015
+ msgstr ""
6016
+
6017
+ # 'general_feedburner',
6018
+ # '<input type="submit" name="w3tc_flush_fragmentcache" value="' . __( 'Empty cache', 'w3-total-cache' ) . '" class="button" />'
6019
+ # );
6020
+ #: Cdn_GeneralPage_View.php:145 Extension_CloudFlare_GeneralPage_View.php:40
6021
+ #: Extension_FragmentCache_GeneralPage_View.php:27 inc/options/general.php:182
6022
+ #: inc/options/general.php:324 inc/options/general.php:363
6023
+ #: inc/options/general.php:418 SystemOpCache_GeneralPage_View.php:50
6024
+ msgid "Empty cache"
6025
+ msgstr ""
6026
+
6027
+ # ),
6028
+ # Util_Ui::nonce_field( 'w3tc' ) . '<input type="submit" name="w3tc_flush_minify" value="' . esc_attr__( 'empty cache', 'w3-total-cache' ) . '"' . disabled( $minify_enabled, false, false ) . ' class="button" />'
6029
+ # ),
6030
+ #: inc/options/dbcache.php:45 inc/options/minify.php:50
6031
+ #: inc/options/objectcache.php:46
6032
+ msgid "empty cache"
6033
+ msgstr ""
6034
+
6035
+ # $actions[ wp_nonce_url( admin_url( 'admin.php?page=w3tc_dashboard&amp;w3tc_flush_all' ), 'w3tc' ) ] = array(
6036
+ # __( 'Empty Caches', 'w3-total-cache' ),
6037
+ # apply_filters( 'w3tc_capability_favorite_action_flush_all', 'manage_options' ),
6038
+ #: Generic_Plugin_Admin.php:604
6039
+ msgid "Empty Caches"
6040
+ msgstr ""
6041
+
6042
+ # <p>
6043
+ # <a href="admin.php?page=w3tc_cdn&amp;w3tc_cdn_queue&amp;cdn_queue_tab=delete&amp;cdn_queue_action=empty&amp;cdn_queue_type=<?php echo esc_attr( W3TC_CDN_COMMAND_DELETE ); ?>&amp;_wpnonce=<?php echo esc_attr( $nonce ); ?>" class="cdn_queue_empty"><?php esc_html_e( 'Empty delete queue', 'w3-total-cache' ); ?></a>
6044
+ # </p>
6045
+ #: inc/popup/cdn_queue.php:73
6046
+ msgid "Empty delete queue"
6047
+ msgstr ""
6048
+
6049
+ # } else {
6050
+ # $errors[] = __( 'Empty files list.', 'w3-total-cache' );
6051
+ # }
6052
+ #: Cdn_AdminActions.php:345
6053
+ msgid "Empty files list."
6054
+ msgstr ""
6055
+
6056
+ # elseif ( !$path_jar )
6057
+ # $error = __( 'Empty JAR file path.', 'w3-total-cache' );
6058
+ # }
6059
+ #: Generic_AdminActions_Test.php:115
6060
+ msgid "Empty JAR file path."
6061
+ msgstr ""
6062
+
6063
+ # if ( !$path_java )
6064
+ # $error = __( 'Empty JAVA executable path.', 'w3-total-cache' );
6065
+ # elseif ( !$path_jar )
6066
+ #: Generic_AdminActions_Test.php:113
6067
+ msgid "Empty JAVA executable path."
6068
+ msgstr ""
6069
+
6070
+ # <input class="button" type="submit" name="w3tc_flush_opcode" value="<?php esc_html_e( 'empty only the opcode cache', 'w3-total-cache' ); ?>"<?php echo ! $can_empty_opcode ? ' disabled="disabled"' : ''; ?> /> <?php esc_html_e( 'or', 'w3-total-cache' ); ?>
6071
+ # <input class="button" type="submit" name="w3tc_flush_file" value="<?php esc_html_e( 'empty only the disk cache(s)', 'w3-total-cache' ); ?>"<?php echo ! $can_empty_file ? ' disabled="disabled"' : ''; ?> /> <?php esc_html_e( 'or', 'w3-total-cache' ); ?>
6072
+ # <?php if ( $cdn_mirror_purge && $cdn_enabled ) : ?>
6073
+ #: inc/options/dashboard.php:67
6074
+ msgid "empty only the disk cache(s)"
6075
+ msgstr ""
6076
+
6077
+ # <input id="flush_all" class="button" type="submit" name="w3tc_flush_all" value="<?php esc_html_e( 'empty all caches', 'w3-total-cache' ); ?>"<?php echo ! $enabled ? ' disabled="disabled"' : ''; ?> /> <?php esc_html_e( 'at once or', 'w3-total-cache' ); ?>
6078
+ # <input class="button" type="submit" name="w3tc_flush_memcached" value="<?php esc_html_e( 'empty only the memcached cache(s)', 'w3-total-cache' ); ?>"<?php echo ! $can_empty_memcache ? ' disabled="disabled"' : ''; ?> /> <?php esc_html_e( 'or', 'w3-total-cache' ); ?>
6079
+ # <input class="button" type="submit" name="w3tc_flush_opcode" value="<?php esc_html_e( 'empty only the opcode cache', 'w3-total-cache' ); ?>"<?php echo ! $can_empty_opcode ? ' disabled="disabled"' : ''; ?> /> <?php esc_html_e( 'or', 'w3-total-cache' ); ?>
6080
+ #: inc/options/dashboard.php:65
6081
+ msgid "empty only the memcached cache(s)"
6082
+ msgstr ""
6083
+
6084
+ # <input class="button" type="submit" name="w3tc_flush_memcached" value="<?php esc_html_e( 'empty only the memcached cache(s)', 'w3-total-cache' ); ?>"<?php echo ! $can_empty_memcache ? ' disabled="disabled"' : ''; ?> /> <?php esc_html_e( 'or', 'w3-total-cache' ); ?>
6085
+ # <input class="button" type="submit" name="w3tc_flush_opcode" value="<?php esc_html_e( 'empty only the opcode cache', 'w3-total-cache' ); ?>"<?php echo ! $can_empty_opcode ? ' disabled="disabled"' : ''; ?> /> <?php esc_html_e( 'or', 'w3-total-cache' ); ?>
6086
+ # <input class="button" type="submit" name="w3tc_flush_file" value="<?php esc_html_e( 'empty only the disk cache(s)', 'w3-total-cache' ); ?>"<?php echo ! $can_empty_file ? ' disabled="disabled"' : ''; ?> /> <?php esc_html_e( 'or', 'w3-total-cache' ); ?>
6087
+ #: inc/options/dashboard.php:66
6088
+ msgid "empty only the opcode cache"
6089
+ msgstr ""
6090
+
6091
+ # if ( empty( $this->_config['password'] ) ) {
6092
+ # $results = $this->_get_results( $files, W3TC_CDN_RESULT_HALT, __( 'Empty password.', 'w3-total-cache' ) );
6093
+ #
6094
+ #: CdnEngine_Mirror_Akamai.php:40 CdnEngine_Mirror_Cotendo.php:42
6095
+ msgid "Empty password."
6096
+ msgstr ""
6097
+
6098
+ # <p>
6099
+ # <a href="admin.php?page=w3tc_cdn&amp;w3tc_cdn_queue&amp;cdn_queue_tab=purge&amp;cdn_queue_action=empty&amp;cdn_queue_type=<?php echo esc_attr( W3TC_CDN_COMMAND_PURGE ); ?>&amp;_wpnonce=<?php echo esc_attr( $nonce ); ?>" class="cdn_queue_empty"><?php esc_html_e( 'Empty purge queue', 'w3-total-cache' ); ?></a>
6100
+ # </p>
6101
+ #: inc/popup/cdn_queue.php:103
6102
+ msgid "Empty purge queue"
6103
+ msgstr ""
6104
+
6105
+ # ?>
6106
+ # <input type="submit" name="w3tc_flush_fragmentcache" value="<?php esc_attr_e( 'Empty the entire cache', 'w3-total-cache' ); ?>" class="button" />
6107
+ # <?php esc_html_e( 'if needed.', 'w3-total-cache' ); ?>
6108
+ #: Extension_FragmentCache_Page_View.php:58
6109
+ msgid "Empty the entire cache"
6110
+ msgstr ""
6111
+
6112
+ # Util_Ui::button_link(
6113
+ # __( 'Empty the minify cache', 'w3-total-cache' ),
6114
+ # Util_Ui::url( array( 'w3tc_flush_minify' => 'y' ) ) ) );
6115
+ #: Minify_Plugin_Admin.php:168
6116
+ msgid "Empty the minify cache"
6117
+ msgstr ""
6118
+
6119
+ # Util_Ui::button_link(
6120
+ # __( 'Empty the object cache', 'w3-total-cache' ),
6121
+ # Util_Ui::url( array( 'w3tc_flush_objectcache' => 'y' ) ) ) );
6122
+ #: ObjectCache_Plugin_Admin.php:57
6123
+ msgid "Empty the object cache"
6124
+ msgstr ""
6125
+
6126
+ # $texts[] = Util_Ui::button_link(
6127
+ # __( 'empty the page cache', 'w3-total-cache' ),
6128
+ # Util_Ui::url( array( 'w3tc_flush_posts' => 'y' ) )
6129
+ #: Generic_AdminNotes.php:213
6130
+ msgid "empty the page cache"
6131
+ msgstr ""
6132
+
6133
+ # if ( empty( $this->_config['token'] ) ) {
6134
+ # $results = $this->_get_results( $files, W3TC_CDN_RESULT_HALT, __( 'Empty token.', 'w3-total-cache' ) );
6135
+ #
6136
+ #: CdnEngine_Mirror_Edgecast.php:44
6137
+ msgid "Empty token."
6138
+ msgstr ""
6139
+
6140
+ # <p>
6141
+ # <a href="admin.php?page=w3tc_cdn&amp;w3tc_cdn_queue&amp;cdn_queue_tab=upload&amp;cdn_queue_action=empty&amp;cdn_queue_type=<?php echo esc_attr( W3TC_CDN_COMMAND_UPLOAD ); ?>&amp;_wpnonce=<?php echo esc_attr( $nonce ); ?>" class="cdn_queue_empty"><?php esc_html_e( 'Empty upload queue', 'w3-total-cache' ); ?></a>
6142
+ # </p>
6143
+ #: inc/popup/cdn_queue.php:40
6144
+ msgid "Empty upload queue"
6145
+ msgstr ""
6146
+
6147
+ # if ( empty( $this->_config['username'] ) ) {
6148
+ # $results = $this->_get_results( $files, W3TC_CDN_RESULT_HALT, __( 'Empty username.', 'w3-total-cache' ) );
6149
+ #
6150
+ #: CdnEngine_Mirror_Akamai.php:34 CdnEngine_Mirror_Cotendo.php:36
6151
+ msgid "Empty username."
6152
+ msgstr ""
6153
+
6154
+ # if ( empty( $this->_config['zones'] ) ) {
6155
+ # $results = $this->_get_results( $files, W3TC_CDN_RESULT_HALT, __( 'Empty zones list.', 'w3-total-cache' ) );
6156
+ #
6157
+ #: CdnEngine_Mirror_Cotendo.php:48
6158
+ msgid "Empty zones list."
6159
+ msgstr ""
6160
+
6161
+ # 'control' => 'checkbox',
6162
+ # 'checkbox_label' => __( 'Enable', 'w3-total-cache' ),
6163
+ # 'disabled' => ( $is_pro ? null : true ),
6164
+ #: Cdnfsd_GeneralPage_View.php:73 Cdn_GeneralPage_View.php:90
6165
+ #: extension-example/Extension_Example_Page_View.php:28
6166
+ #: Extension_Genesis_Page_View.php:38 Extension_Genesis_Page_View.php:47
6167
+ #: Extension_Genesis_Page_View.php:56 Extension_Genesis_Page_View.php:65
6168
+ #: Extension_Genesis_Page_View.php:81 Extension_Genesis_Page_View.php:90
6169
+ #: Extension_Genesis_Page_View.php:107 Extension_Genesis_Page_View.php:116
6170
+ #: Extension_Genesis_Page_View.php:133 Extension_Genesis_Page_View.php:142
6171
+ #: Extension_Genesis_Page_View.php:159 Extension_Genesis_Page_View.php:184
6172
+ #: Extension_Genesis_Page_View.php:193 Extension_Genesis_Page_View.php:202
6173
+ #: inc/options/general.php:92 inc/options/general.php:115
6174
+ #: inc/options/general.php:215 inc/options/general.php:347
6175
+ #: inc/options/general.php:384 inc/options/general.php:439
6176
+ #: inc/options/minify.php:285 inc/options/minify.php:564
6177
+ #: inc/options/minify.php:624 inc/options/minify.php:819
6178
+ #: inc/options/pgcache.php:181 inc/options/pgcache.php:509
6179
+ #: inc/options/pgcache.php:517 Minify_ConfigLabels.php:17
6180
+ #: Minify_ConfigLabels.php:22 Minify_ConfigLabels.php:29
6181
+ #: PgCache_ConfigLabels.php:40 SystemOpCache_GeneralPage_View.php:41
6182
+ #: UsageStatistics_GeneralPage_View.php:20
6183
+ msgid "Enable"
6184
+ msgstr ""
6185
+
6186
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
6187
+ # __(
6188
+ # 'Enable %1$sHTTP%2$s (brotli) compression',
6189
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
6190
+ #: inc/options/browsercache.php:161
6191
+ msgid "Enable %1$sHTTP%2$s (brotli) compression"
6192
+ msgstr ""
6193
+
6194
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
6195
+ # __(
6196
+ # 'Enable %1$sHTTP%2$s (gzip) compression',
6197
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
6198
+ #: inc/options/browsercache.php:133
6199
+ msgid "Enable %1$sHTTP%2$s (gzip) compression"
6200
+ msgstr ""
6201
+
6202
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
6203
+ # __(
6204
+ # 'Enable %1$sHTTP%2$s compression and add headers to reduce server load and decrease file load time.',
6205
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
6206
+ #: inc/options/general.php:443
6207
+ msgid ""
6208
+ "Enable %1$sHTTP%2$s compression and add headers to reduce server load and "
6209
+ "decrease file load time."
6210
+ msgstr ""
6211
+
6212
+ # translators: 5 opening HTML a tag to W3TC BrowserCache admin page, 6 closing HTML a tag.
6213
+ # __(
6214
+ # 'Enable %1$sHTTP%2$s compression in the "%3$sHTML%4$s" section on %5$sBrowser Cache</a> Settings tab.',
6215
+ #. translators: 5 opening HTML a tag to W3TC BrowserCache admin page, 6 closing HTML a tag.
6216
+ #: inc/options/pgcache.php:845
6217
+ msgid ""
6218
+ "Enable %1$sHTTP%2$s compression in the \"%3$sHTML%4$s\" section on "
6219
+ "%5$sBrowser Cache</a> Settings tab."
6220
+ msgstr ""
6221
+
6222
+ # translators: 3 opening HTML a tag to W3TC Browsercache admin page, 4 closing HTML a tag.
6223
+ # __(
6224
+ # 'Enable %1$sHTTP%2$s compression in the "Cascading Style Sheets &amp; JavaScript" section on %3$sBrowser Cache%4$s Settings tab.',
6225
+ #. translators: 3 opening HTML a tag to W3TC Browsercache admin page, 4 closing HTML a tag.
6226
+ #: inc/options/minify.php:1000
6227
+ msgid ""
6228
+ "Enable %1$sHTTP%2$s compression in the \"Cascading Style Sheets &amp; "
6229
+ "JavaScript\" section on %3$sBrowser Cache%4$s Settings tab."
6230
+ msgstr ""
6231
+
6232
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
6233
+ # __(
6234
+ # 'Enable %1$sIP%2$s Geolocation to have CloudFlare geolocate visitors to your website and pass the country code to you.',
6235
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
6236
+ #: Extension_CloudFlare_Page_View.php:655
6237
+ msgid ""
6238
+ "Enable %1$sIP%2$s Geolocation to have CloudFlare geolocate visitors to your "
6239
+ "website and pass the country code to you."
6240
+ msgstr ""
6241
+
6242
+ # 'browsercache.cssjs.compression' => __( 'Enable <acronym title="Hypertext Transfer Protocol">HTTP</acronym> (gzip) compression', 'w3-total-cache' ),
6243
+ # 'browsercache.cssjs.brotli' => __( 'Enable <acronym title="Hypertext Transfer Protocol">HTTP</acronym> (brotli) compression', 'w3-total-cache' ),
6244
+ # 'browsercache.cssjs.replace' => __( 'Prevent caching of objects after settings change', 'w3-total-cache' ),
6245
+ #: BrowserCache_ConfigLabels.php:19 BrowserCache_ConfigLabels.php:30
6246
+ msgid ""
6247
+ "Enable <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> (brotli)"
6248
+ " compression"
6249
+ msgstr ""
6250
+
6251
+ # 'browsercache.other.compression' => __( 'Enable <acronym title="Hypertext Transfer Protocol">HTTP</acronym> (gzip) compression</label>', 'w3-total-cache' ),
6252
+ # 'browsercache.other.brotli' => __( 'Enable <acronym title="Hypertext Transfer Protocol">HTTP</acronym> (brotli) compression</label>', 'w3-total-cache' ),
6253
+ # 'browsercache.other.replace' => __( 'Prevent caching of objects after settings change', 'w3-total-cache' ),
6254
+ #: BrowserCache_ConfigLabels.php:39
6255
+ msgid ""
6256
+ "Enable <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> (brotli)"
6257
+ " compression</label>"
6258
+ msgstr ""
6259
+
6260
+ # 'browsercache.cssjs.w3tc' => __( 'Set W3 Total Cache header', 'w3-total-cache' ),
6261
+ # 'browsercache.cssjs.compression' => __( 'Enable <acronym title="Hypertext Transfer Protocol">HTTP</acronym> (gzip) compression', 'w3-total-cache' ),
6262
+ # 'browsercache.cssjs.brotli' => __( 'Enable <acronym title="Hypertext Transfer Protocol">HTTP</acronym> (brotli) compression', 'w3-total-cache' ),
6263
+ #: BrowserCache_ConfigLabels.php:18 BrowserCache_ConfigLabels.php:29
6264
+ msgid ""
6265
+ "Enable <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> (gzip) "
6266
+ "compression"
6267
+ msgstr ""
6268
+
6269
+ # 'browsercache.other.w3tc' => __( 'Set W3 Total Cache header', 'w3-total-cache' ),
6270
+ # 'browsercache.other.compression' => __( 'Enable <acronym title="Hypertext Transfer Protocol">HTTP</acronym> (gzip) compression</label>', 'w3-total-cache' ),
6271
+ # 'browsercache.other.brotli' => __( 'Enable <acronym title="Hypertext Transfer Protocol">HTTP</acronym> (brotli) compression</label>', 'w3-total-cache' ),
6272
+ #: BrowserCache_ConfigLabels.php:38
6273
+ msgid ""
6274
+ "Enable <acronym title=\"Hypertext Transfer Protocol\">HTTP</acronym> (gzip) "
6275
+ "compression</label>"
6276
+ msgstr ""
6277
+
6278
+ # return array_merge( $config_labels, array(
6279
+ # 'cluster.messagebus.enabled' => __( 'Enable cache purge via Amazon <acronym title="Simple Notification Service">SNS</acronym>', 'w3-total-cache' ),
6280
+ # 'cluster.messagebus.sns.region' => __( 'Amazon <acronym title="Simple Notification Service">SNS</acronym> region:', 'w3-total-cache' ),
6281
+ #: Generic_ConfigLabels.php:7
6282
+ msgid ""
6283
+ "Enable cache purge via Amazon <acronym title=\"Simple Notification Service\">"
6284
+ "SNS</acronym>"
6285
+ msgstr ""
6286
+
6287
+ # <th colspan="2">
6288
+ # <?php $this->checkbox( 'objectcache.enabled_for_wp_admin' ); ?><?php esc_html_e( 'Enable caching for wp-admin requests', 'w3-total-cache' ); ?></label>
6289
+ # <p class="description"><?php esc_html_e( 'Enabling this option will increase wp-admin performance, but may cause side-effects', 'w3-total-cache' ); ?></p>
6290
+ #: inc/options/objectcache.php:99
6291
+ msgid "Enable caching for wp-admin requests"
6292
+ msgstr ""
6293
+
6294
+ # 'disabled' => ( $is_pro ? null : true ),
6295
+ # 'description' => __( 'Enable collecting statistics from an Access Log. This provides much more precise statistics.', 'w3-total-cache' ),
6296
+ # 'show_in_free' => false,
6297
+ #: UsageStatistics_GeneralPage_View.php:67
6298
+ msgid ""
6299
+ "Enable collecting statistics from an Access Log. This provides much more "
6300
+ "precise statistics."
6301
+ msgstr ""
6302
+
6303
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
6304
+ # __(
6305
+ # 'Enable Crypto %1$sTLS%2$s 1.2 feature for this zone and prevent use of previous versions.',
6306
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
6307
+ #: Extension_CloudFlare_Page_View.php:817
6308
+ msgid ""
6309
+ "Enable Crypto %1$sTLS%2$s 1.2 feature for this zone and prevent use of "
6310
+ "previous versions."
6311
+ msgstr ""
6312
+
6313
+ #
6314
+ # <p><?php esc_html_e( 'Enable database caching to reduce post, page and feed creation time.', 'w3-total-cache' ); ?></p>
6315
+ #
6316
+ #: inc/options/general.php:339
6317
+ msgid "Enable database caching to reduce post, page and feed creation time."
6318
+ msgstr ""
6319
+
6320
+ # 'key' => 'origin_error_page_pass_thru',
6321
+ # 'label' => esc_html__( 'Enable error pages:', 'w3-total-cache' ),
6322
+ # 'description' => esc_html__( 'CloudFlare will proxy customer error pages on any 502,504 errors on origin server instead of showing a default CloudFlare error page. This does not apply to 522 errors and is limited to Enterprise Zones.', 'w3-total-cache' ),
6323
+ #: Extension_CloudFlare_Page_View.php:490
6324
+ msgid "Enable error pages:"
6325
+ msgstr ""
6326
+
6327
+ # <input type="hidden" name="file_locking" value="0"<?php Util_Ui::sealing_disabled( 'common.' ); ?> />
6328
+ # <label><input type="checkbox" name="file_locking" value="1" <?php checked( $file_locking, true ); ?> <?php Util_Ui::sealing_disabled( 'common.' ); ?> /> <?php esc_html_e( 'Enable file locking', 'w3-total-cache' ); ?></label>
6329
+ # <p class="description">
6330
+ #: inc/options/general.php:835
6331
+ msgid "Enable file locking"
6332
+ msgstr ""
6333
+
6334
+ # ?>
6335
+ # <p><?php esc_html_e( 'Enable fragment caching reduce execution time for common operations.', 'w3-total-cache' ); ?></p>
6336
+ #
6337
+ #: Extension_FragmentCache_GeneralPage_View.php:10
6338
+ msgid "Enable fragment caching reduce execution time for common operations."
6339
+ msgstr ""
6340
+
6341
+ # 'control' => 'checkbox',
6342
+ # 'checkbox_label' => esc_html__( 'Enable Google Page Speed dashboard widget', 'w3-total-cache' ),
6343
+ # 'description' => esc_html__( 'Display Google Page Speed results on the WordPress dashboard.', 'w3-total-cache' ),
6344
+ #: inc/options/general.php:730
6345
+ msgid "Enable Google Page Speed dashboard widget"
6346
+ msgstr ""
6347
+
6348
+ # <a class="button-primary"
6349
+ # href="admin.php?page=w3tc_general#stats"><?php esc_html_e( 'Enable here', 'w3-total-cache' ); ?></a>
6350
+ # </div>
6351
+ #: UsageStatistics_Page_View_Disabled.php:17
6352
+ msgid "Enable here"
6353
+ msgstr ""
6354
+
6355
+ # 'label' => esc_html__( 'IPv6:', 'w3-total-cache' ),
6356
+ # 'description' => esc_html__( 'Enable IPv6.', 'w3-total-cache' ),
6357
+ # )
6358
+ #: Extension_CloudFlare_Page_View.php:675
6359
+ msgid "Enable IPv6."
6360
+ msgstr ""
6361
+
6362
+ #
6363
+ # <a href="admin.php?page=w3tc_general#debug" class="button-primary"><?php esc_html_e( 'Enable it here', 'w3-total-cache' ); ?></a>
6364
+ #
6365
+ #: UsageStatistics_Page_View_NoDebugMode.php:17
6366
+ msgid "Enable it here"
6367
+ msgstr ""
6368
+
6369
+ #
6370
+ # <p><?php esc_html_e( 'Enable object caching to further reduce execution time for common operations.', 'w3-total-cache' ); ?></p>
6371
+ #
6372
+ #: inc/options/general.php:376
6373
+ msgid ""
6374
+ "Enable object caching to further reduce execution time for common operations."
6375
+ msgstr ""
6376
+
6377
+ #
6378
+ # <p><?php esc_html_e( 'Enable page caching to decrease the response time of the site.', 'w3-total-cache' ); ?></p>
6379
+ #
6380
+ #: inc/options/general.php:107
6381
+ msgid "Enable page caching to decrease the response time of the site."
6382
+ msgstr ""
6383
+
6384
+ #
6385
+ # 'varnish.enabled' => __( 'Enable reverse proxy caching via varnish', 'w3-total-cache' ),
6386
+ # 'varnish.debug' => __( 'Reverse Proxy', 'w3-total-cache' ),
6387
+ #: Generic_ConfigLabels.php:25
6388
+ msgid "Enable reverse proxy caching via varnish"
6389
+ msgstr ""
6390
+
6391
+ # 'disabled' => ( $is_pro ? null : true ),
6392
+ # 'excerpt' => __( 'Enable statistics collection. Note that this consumes additional resources and is not recommended to be run continuously.',
6393
+ # 'w3-total-cache' ),
6394
+ #: UsageStatistics_GeneralPage_View.php:22
6395
+ msgid ""
6396
+ "Enable statistics collection. Note that this consumes additional resources "
6397
+ "and is not recommended to be run continuously."
6398
+ msgstr ""
6399
+
6400
+ # translators: 3 closing HTML a tag, 4 closing HTML em tag.
6401
+ # __(
6402
+ # 'Enable this if you want to record the metric and transaction data (until the name is changed using PHP function), specify a value of true for this argument to make the agent send the transaction to the daemon. There is a slight performance impact as it takes a few milliseconds for the agent to dump its data. %1$sFrom %2$sNew Relic PHP API doc%3$s%4$s',
6403
+ #. translators: 3 closing HTML a tag, 4 closing HTML em tag.
6404
+ #: Extension_NewRelic_Page_View_Apm.php:381
6405
+ msgid ""
6406
+ "Enable this if you want to record the metric and transaction data (until the "
6407
+ "name is changed using PHP function), specify a value of true for this "
6408
+ "argument to make the agent send the transaction to the daemon. There is a "
6409
+ "slight performance impact as it takes a few milliseconds for the agent to "
6410
+ "dump its data. %1$sFrom %2$sNew Relic PHP API doc%3$s%4$s"
6411
+ msgstr ""
6412
+
6413
+ # ?>
6414
+ # <p class="description"><?php esc_html_e( 'Enable this option if you don\'t have special public/private key files.', 'w3-total-cache' ); ?></p>
6415
+ # </th>
6416
+ #: inc/options/cdn/ftp.php:250
6417
+ msgid "Enable this option if you don't have special public/private key files."
6418
+ msgstr ""
6419
+
6420
+ # ?>
6421
+ # <p class="description"><?php esc_html_e( 'Enable this option only if there are connectivity issues, otherwise it\'s not recommended.', 'w3-total-cache' ); ?></p>
6422
+ # </th>
6423
+ #: inc/options/cdn/ftp.php:29
6424
+ msgid ""
6425
+ "Enable this option only if there are connectivity issues, otherwise it's not "
6426
+ "recommended."
6427
+ msgstr ""
6428
+
6429
+ # translators: 1 opening HTML a tag to NewRelic per directory settings documentation, 2 closing HTML a tag.
6430
+ # __(
6431
+ # 'Enable this to dynamically set proper application name. (See New Relic %1$sPer-directory settings%2$s for other methods.',
6432
+ #. translators: 1 opening HTML a tag to NewRelic per directory settings documentation, 2 closing HTML a tag.
6433
+ #: Extension_NewRelic_Page_View_Apm.php:347
6434
+ msgid ""
6435
+ "Enable this to dynamically set proper application name. (See New Relic "
6436
+ "%1$sPer-directory settings%2$s for other methods."
6437
+ msgstr ""
6438
+
6439
+ # 'checkbox_label' => esc_html__( 'Flush CloudFlare on Post Modifications:', 'w3-total-cache' ),
6440
+ # 'description' => esc_html__( 'Enable when you have html pages cached on CloudFlare level.', 'w3-total-cache' ),
6441
+ # )
6442
+ #: Extension_CloudFlare_GeneralPage_View.php:31
6443
+ #: Extension_CloudFlare_Page_View.php:138
6444
+ msgid "Enable when you have html pages cached on CloudFlare level."
6445
+ msgstr ""
6446
+
6447
+ # <?php
6448
+ # esc_html_e( 'Enable XMIT:', 'w3-total-cache' )
6449
+ # ?>
6450
+ #: Extension_NewRelic_Page_View_Apm.php:369
6451
+ msgid "Enable XMIT:"
6452
+ msgstr ""
6453
+
6454
+ # 'disk_enhanced' => __( 'Disk: Enhanced', 'w3-total-cache' ),
6455
+ # 'enabled' => __( 'Enabled', 'w3-total-cache' ),
6456
+ # 'notEnabled' => __( 'Not Enabled', 'w3-total-cache' ),
6457
+ #: inc/lightbox/self_test.php:522 SetupGuide_Plugin_Admin.php:912
6458
+ msgid "Enabled"
6459
+ msgstr ""
6460
+
6461
+ # if ( $config->is_extension_active_frontend( 'newrelic' ) ) {
6462
+ # echo '<span class="w3tc-enabled">' . esc_html__( 'enabled', 'w3-total-cache' ) . '</span>';
6463
+ # } else {
6464
+ #: Cdnfsd_Page_View_Header.php:19 Cdn_Page_View_Header.php:20
6465
+ #: extension-example/Extension_Example_Page_View.php:13
6466
+ #: Extension_CloudFlare_Page_View.php:20 Extension_FeedBurner_Page_View.php:17
6467
+ #: Extension_FragmentCache_Page_View.php:29 Extension_Genesis_Page_View.php:21
6468
+ #: Extension_NewRelic_Page_View_Apm.php:18 Extension_Swarmify_Page_View.php:17
6469
+ #: inc/options/browsercache.php:27 inc/options/cdn.php:39
6470
+ #: inc/options/dashboard.php:27 inc/options/dbcache.php:21
6471
+ #: inc/options/general.php:20 inc/options/minify.php:31
6472
+ #: inc/options/objectcache.php:21 inc/options/pgcache.php:21
6473
+ msgid "enabled"
6474
+ msgstr ""
6475
+
6476
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
6477
+ # __(
6478
+ # 'Enabled (always use %1$sSSL%2$s)',
6479
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
6480
+ #: Cdn_MaxCdn_Page_View.php:194 Cdn_StackPath2_Page_View.php:226
6481
+ #: Cdn_StackPath_Page_View.php:153
6482
+ msgid "Enabled (always use %1$sSSL%2$s)"
6483
+ msgstr ""
6484
+
6485
+ # <option value="auto"<?php selected( $config->get_string( 'cdn.rscf.ssl' ), 'auto' ); ?>><?php esc_html_e( 'Auto (determine connection type automatically)', 'w3-total-cache' ); ?></option>
6486
+ # <option value="enabled"<?php selected( $config->get_string( 'cdn.rscf.ssl' ), 'enabled' ); ?>><?php esc_html_e( 'Enabled (always use SSL)', 'w3-total-cache' ); ?></option>
6487
+ # <option value="disabled"<?php selected( $config->get_string( 'cdn.rscf.ssl' ), 'disabled' ); ?>><?php esc_html_e( 'Disabled (always use HTTP)', 'w3-total-cache' ); ?></option>
6488
+ #: Cdn_Highwinds_Page_View.php:79 Cdn_LimeLight_Page_View.php:50
6489
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:97 inc/options/cdn/akamai.php:74
6490
+ #: inc/options/cdn/att.php:48 inc/options/cdn/azure.php:57
6491
+ #: inc/options/cdn/cf.php:104 inc/options/cdn/cf2.php:96
6492
+ #: inc/options/cdn/cotendo.php:55 inc/options/cdn/edgecast.php:48
6493
+ #: inc/options/cdn/ftp.php:201 inc/options/cdn/mirror.php:34
6494
+ #: inc/options/cdn/rscf.php:91 inc/options/cdn/s3.php:110
6495
+ #: inc/options/cdn/s3_compatible.php:86
6496
+ msgid "Enabled (always use SSL)"
6497
+ msgstr ""
6498
+
6499
+ # <select id="cdn_s3_public_objects" name="cdn__s3__public_objects" <?php Util_Ui::sealing_disabled( 'cdn.' ); ?> >
6500
+ # <option value="enabled"<?php selected( $this->_config->get_string( 'cdn.s3.public_objects' ), 'enabled' ); ?>><?php esc_html_e( 'Enabled (apply the \'public-read\' ACL)', 'w3-total-cache' ); ?></option>
6501
+ # <option value="disabled"<?php selected( $this->_config->get_string( 'cdn.s3.public_objects' ), 'disabled' ); ?>><?php esc_html_e( 'Disabled (don\'t apply an ACL)', 'w3-total-cache' ); ?></option>
6502
+ #: inc/options/cdn/cf.php:177 inc/options/cdn/s3.php:187
6503
+ msgid "Enabled (apply the 'public-read' ACL)"
6504
+ msgstr ""
6505
+
6506
+ # <th>
6507
+ # <label for="mobile_groups_<?php echo esc_attr( $group ); ?>_enabled"><?php esc_html_e( 'Enabled:', 'w3-total-cache' ); ?></label>
6508
+ # </th>
6509
+ #: CacheGroups_Plugin_Admin_View.php:65 CacheGroups_Plugin_Admin_View.php:186
6510
+ #: CacheGroups_Plugin_Admin_View.php:269
6511
+ msgid "Enabled:"
6512
+ msgstr ""
6513
+
6514
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
6515
+ # __(
6516
+ # 'Enables or disables %1$sSSL%2$s header.',
6517
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
6518
+ #: Extension_CloudFlare_Page_View.php:779
6519
+ msgid "Enables or disables %1$sSSL%2$s header."
6520
+ msgstr ""
6521
+
6522
+ # <label><input id="pgcache_late_init" type="checkbox" name="pgcache__late_init" value="1"<?php checked( 'file_generic' !== $this->_config->get_string( 'pgcache.engine' ) && $this->_config->get_boolean( 'pgcache.late_init' ) ); ?> <?php disabled( $this->_config->get_string( 'pgcache.engine' ), 'file_generic' ); ?> /> <?php esc_html_e( 'Enable', 'w3-total-cache' ); ?></label>
6523
+ # <p class="description"><?php esc_html_e( 'Enables support for WordPress functionality in fragment caching for the page caching engine. Use of this feature may increase response times.', 'w3-total-cache' ); ?></p>
6524
+ # </td>
6525
+ #: inc/options/pgcache.php:510
6526
+ msgid ""
6527
+ "Enables support for WordPress functionality in fragment caching for the page "
6528
+ "caching engine. Use of this feature may increase response times."
6529
+ msgstr ""
6530
+
6531
+ # '<li>' .
6532
+ # __(
6533
+ # 'Enabling even a single user agent group will set a cookie called "w3tc_referrer." It is used to ensure a consistent user experience across page views. Make sure any reverse proxy servers etc respect this cookie for proper operation.',
6534
+ #: CacheGroups_Plugin_Admin.php:42
6535
+ msgid ""
6536
+ "Enabling even a single user agent group will set a cookie called "
6537
+ "\"w3tc_referrer.\" It is used to ensure a consistent user experience across "
6538
+ "page views. Make sure any reverse proxy servers etc respect this cookie for "
6539
+ "proper operation."
6540
+ msgstr ""
6541
+
6542
+ # <?php $this->checkbox( 'dbcache.reject.logged' ); ?> <?php Util_Ui::e_config_label( 'dbcache.reject.logged' ); ?></label>
6543
+ # <p class="description"><?php esc_html_e( 'Enabling this option is recommended to maintain default WordPress behavior.', 'w3-total-cache' ); ?></p>
6544
+ # </th>
6545
+ #: inc/options/dbcache.php:57
6546
+ msgid ""
6547
+ "Enabling this option is recommended to maintain default WordPress behavior."
6548
+ msgstr ""
6549
+
6550
+ # translators: 1 opening HTML em tag, 2 closing HTML em tag.
6551
+ # __(
6552
+ # 'Enabling this option will increase load on server on certain actions but will guarantee that the Object Cache is always clean and contains latest changes. %1$sEnable if you are experiencing issues with options displaying wrong value/state (checkboxes etc).%2$2',
6553
+ #. translators: 1 opening HTML em tag, 2 closing HTML em tag.
6554
+ #: inc/options/objectcache.php:118
6555
+ msgid ""
6556
+ "Enabling this option will increase load on server on certain actions but "
6557
+ "will guarantee that the Object Cache is always clean and contains latest "
6558
+ "changes. %1$sEnable if you are experiencing issues with options displaying "
6559
+ "wrong value/state (checkboxes etc).%2$2"
6560
+ msgstr ""
6561
+
6562
+ # <?php $this->checkbox( 'objectcache.enabled_for_wp_admin' ); ?><?php esc_html_e( 'Enable caching for wp-admin requests', 'w3-total-cache' ); ?></label>
6563
+ # <p class="description"><?php esc_html_e( 'Enabling this option will increase wp-admin performance, but may cause side-effects', 'w3-total-cache' ); ?></p>
6564
+ # </th>
6565
+ #: inc/options/objectcache.php:100
6566
+ msgid ""
6567
+ "Enabling this option will increase wp-admin performance, but may cause side-"
6568
+ "effects"
6569
+ msgstr ""
6570
+
6571
+ # else
6572
+ # throw new \Exception( sprintf( __( 'Encountered issue with CDN: %s.', 'w3-total-cache' ), $wpdb->last_error ) );
6573
+ # }
6574
+ #: Cdn_AdminNotes.php:302
6575
+ msgid "Encountered issue with CDN: %s."
6576
+ msgstr ""
6577
+
6578
+ # throw new \Exception( sprintf(
6579
+ # __( 'Encountered issue with CDN: %s. See %s for instructions of creating correct table.', 'w3-total-cache' ),
6580
+ # $wpdb->last_error,
6581
+ #: Cdn_AdminNotes.php:297
6582
+ msgid ""
6583
+ "Encountered issue with CDN: %s. See %s for instructions of creating correct "
6584
+ "table."
6585
+ msgstr ""
6586
+
6587
+ # 'label' => esc_html__( 'Email obfuscation:', 'w3-total-cache' ),
6588
+ # 'description' => esc_html__( 'Encrypt email adresses on your web page from bots, while keeping them visible to humans. ', 'w3-total-cache' ),
6589
+ # )
6590
+ #: Extension_CloudFlare_Page_View.php:459
6591
+ msgid ""
6592
+ "Encrypt email adresses on your web page from bots, while keeping them "
6593
+ "visible to humans. "
6594
+ msgstr ""
6595
+
6596
+ #. translators: 1 HTML acronym for Content Delivery Network (CDN).
6597
+ #: Cdn_StackPath2_Widget_View_Unauthorized.php:30
6598
+ msgid ""
6599
+ "Enhance your website performance by adding StackPath's (%1$s) service to "
6600
+ "your site."
6601
+ msgstr ""
6602
+
6603
+ # <p>
6604
+ # <?php esc_html_e( 'Enhance your website Performance with StackPath\'s CDN services. StackPath works magically with W3 Total Cache to speed up your site around the world for as little as $10 a month.', 'w3-total-cache' ); ?>
6605
+ # </p>
6606
+ #: Cdn_StackPath2_Page_View.php:25
6607
+ msgid ""
6608
+ "Enhance your website Performance with StackPath's CDN services. StackPath "
6609
+ "works magically with W3 Total Cache to speed up your site around the world "
6610
+ "for as little as $10 a month."
6611
+ msgstr ""
6612
+
6613
+ # ?>
6614
+ # <p><?php esc_html_e( 'Enjoying W3TC? Please support us!', 'w3-total-cache' ); ?></p>
6615
+ # <ul>
6616
+ #: Generic_WidgetSpreadTheWord_View.php:8
6617
+ msgid "Enjoying W3TC? Please support us!"
6618
+ msgstr ""
6619
+
6620
+ # translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
6621
+ # __(
6622
+ # 'Enter hostname mapped to %1$sCDN%2$s host, this value will replace your site\'s hostname in the %3$sHTML%4$s.',
6623
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
6624
+ #: Cdn_Highwinds_Popup_View_ConfigureCnamesForm.php:45
6625
+ #: Cdn_RackSpaceCdn_Page_View.php:87
6626
+ #: Cdn_RackSpaceCdn_Popup_View_ConfigureDomains.php:45
6627
+ #: Cdn_RackSpaceCloudFiles_Page_View.php:138
6628
+ msgid ""
6629
+ "Enter hostname mapped to %1$sCDN%2$s host, this value will replace your "
6630
+ "site's hostname in the %3$sHTML%4$s."
6631
+ msgstr ""
6632
+
6633
+ # translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
6634
+ # __(
6635
+ # 'Enter the hostname or %1$sCNAME%2$s(s) of your %3$sFTP%4$s server configured above, these values will replace your site\'s hostname in the %5$sHTML%6$s.',
6636
+ #. translators: 5 opening HTML acronym tag, 6 closing HTML acronym tag.
6637
+ #: inc/options/cdn/ftp.php:323
6638
+ msgid ""
6639
+ "Enter the hostname or %1$sCNAME%2$s(s) of your %3$sFTP%4$s server configured "
6640
+ "above, these values will replace your site's hostname in the %5$sHTML%6$s."
6641
+ msgstr ""
6642
+
6643
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
6644
+ # __(
6645
+ # 'Enter the hostname provided by Rackspace Cloud Files, this value will replace your site\'s hostname in the %1$sHTML%2$s.',
6646
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
6647
+ #: inc/options/cdn/rscf.php:131
6648
+ msgid ""
6649
+ "Enter the hostname provided by Rackspace Cloud Files, this value will "
6650
+ "replace your site's hostname in the %1$sHTML%2$s."
6651
+ msgstr ""
6652
+
6653
+ # translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
6654
+ # __(
6655
+ # 'Enter the hostname provided by your %1$sCDN%2$s provider, this value will replace your site\'s hostname in the %3$sHTML%4$s.',
6656
+ #. translators: 3 opening HTML acronym tag, 4 closing HTML acronym tag.
6657
+ #: Cdn_MaxCdn_Page_View.php:268 Cdn_StackPath2_Page_View.php:300
6658
+ #: Cdn_StackPath_Page_View.php:227 inc/options/cdn/akamai.php:115
6659
+ #: inc/options/cdn/att.php:89 inc/options/cdn/cotendo.php:96
6660
+ #: inc/options/cdn/edgecast.php:89 inc/options/cdn/mirror.php:75
6661
+ msgid ""
6662
+ "Enter the hostname provided by your %1$sCDN%2$s provider, this value will "
6663
+ "replace your site's hostname in the %3$sHTML%4$s."
6664
+ msgstr ""
6665
+
6666
+ # <div class="ustats_pagecache_items">
6667
+ # <?php esc_html_e( 'Entries: ', 'w3-total-cache' ); ?><span></span>
6668
+ # </div>
6669
+ #: UsageStatistics_Page_View.php:36
6670
+ msgid "Entries: "
6671
+ msgstr ""
6672
+
6673
+ #
6674
+ # \WP_CLI::success( __( 'Environment adjusted.', 'w3-total-cache' ) );
6675
+ # }
6676
+ #: Cli.php:40
6677
+ msgid "Environment adjusted."
6678
+ msgstr ""
6679
+
6680
+ # } catch ( Util_Environment_Exceptions $e ) {
6681
+ # \WP_CLI::error( __( 'Environment adjustment failed with error', 'w3-total-cache' ),
6682
+ # $e->getCombinedMessage() );
6683
+ #: Cli.php:36
6684
+ msgid "Environment adjustment failed with error"
6685
+ msgstr ""
6686
+
6687
+ #: Extension_ImageService_Plugin_Admin.php:552
6688
+ msgid "Error"
6689
+ msgstr ""
6690
+
6691
+ # ),
6692
+ # '<div class="' . esc_attr__( 'error', 'w3-total-cache' ) . '"><p>',
6693
+ # '<strong>',
6694
+ #: Root_AdminActivation.php:108
6695
+ msgid "error"
6696
+ msgstr ""
6697
+
6698
+ # 'test_success' => __( 'Ok. Correct parameters', 'w3-total-cache', 'w3-total-cache' ),
6699
+ # 'test_failure' => __( 'Error. Check your parameters and try again or contact with support.', 'w3-total-cache' ),
6700
+ # )
6701
+ #: Cdnfsd_TransparentCDN_Page.php:35
6702
+ msgid "Error. Check your parameters and try again or contact with support."
6703
+ msgstr ""
6704
+
6705
+ # <?php if ( ! empty( $uploads_dir['error'] ) ) : ?>
6706
+ # <span style="background-color: #FF0000"><?php esc_html_e( 'Error:', 'w3-total-cache' ); ?> <?php echo esc_html( $uploads_dir['error'] ); ?></span>
6707
+ # <?php elseif ( ! Util_File::is_writable_dir( $uploads_dir['path'] ) ) : ?>
6708
+ #: inc/lightbox/self_test.php:491
6709
+ msgid "Error:"
6710
+ msgstr ""
6711
+
6712
+ # $result = false;
6713
+ # $error = sprintf( __( 'Error: %s', 'w3-total-cache' ), $error );
6714
+ # }
6715
+ #: Cdn_AdminActions.php:433 Cdn_AdminActions.php:437 Cdn_AdminActions.php:480
6716
+ msgid "Error: %s"
6717
+ msgstr ""
6718
+
6719
+ # 'code' => $response['response']['code'],
6720
+ # 'error' => esc_html__( 'Error: Received a non-200 response code: ', 'w3-total-cache' ) . $response['response']['code'],
6721
+ # 'status' => 'error',
6722
+ #: Extension_ImageService_Api.php:192
6723
+ msgid "Error: Received a non-200 response code: "
6724
+ msgstr ""
6725
+
6726
+ # 'cn-northwest-1' => __( 'China (Ningxia)', 'w3-total-cache' ),
6727
+ # 'eu-central-1' => __( 'Europe (Frankfurt)', 'w3-total-cache' ),
6728
+ # 'eu-north-1' => __( 'Europe (Stockholm)', 'w3-total-cache' ),
6729
+ #: CdnEngine_S3.php:38
6730
+ msgid "Europe (Frankfurt)"
6731
+ msgstr ""
6732
+
6733
+ # 'eu-south-1' => __( 'Europe (Milan)', 'w3-total-cache' ),
6734
+ # 'eu-west-1' => __( 'Europe (Ireland)', 'w3-total-cache' ),
6735
+ # 'eu-west-2' => __( 'Europe (London)', 'w3-total-cache' ),
6736
+ #: CdnEngine_S3.php:41
6737
+ msgid "Europe (Ireland)"
6738
+ msgstr ""
6739
+
6740
+ # 'eu-west-1' => __( 'Europe (Ireland)', 'w3-total-cache' ),
6741
+ # 'eu-west-2' => __( 'Europe (London)', 'w3-total-cache' ),
6742
+ # 'eu-west-3' => __( 'Europe (Paris)', 'w3-total-cache' ),
6743
+ #: CdnEngine_S3.php:42
6744
+ msgid "Europe (London)"
6745
+ msgstr ""
6746
+
6747
+ # 'eu-north-1' => __( 'Europe (Stockholm)', 'w3-total-cache' ),
6748
+ # 'eu-south-1' => __( 'Europe (Milan)', 'w3-total-cache' ),
6749
+ # 'eu-west-1' => __( 'Europe (Ireland)', 'w3-total-cache' ),
6750
+ #: CdnEngine_S3.php:40
6751
+ msgid "Europe (Milan)"
6752
+ msgstr ""
6753
+
6754
+ # 'eu-west-2' => __( 'Europe (London)', 'w3-total-cache' ),
6755
+ # 'eu-west-3' => __( 'Europe (Paris)', 'w3-total-cache' ),
6756
+ # 'me-south-1' => __( 'Middle East (Bahrain)', 'w3-total-cache' ),
6757
+ #: CdnEngine_S3.php:43
6758
+ msgid "Europe (Paris)"
6759
+ msgstr ""
6760
+
6761
+ # 'eu-central-1' => __( 'Europe (Frankfurt)', 'w3-total-cache' ),
6762
+ # 'eu-north-1' => __( 'Europe (Stockholm)', 'w3-total-cache' ),
6763
+ # 'eu-south-1' => __( 'Europe (Milan)', 'w3-total-cache' ),
6764
+ #: CdnEngine_S3.php:39
6765
+ msgid "Europe (Stockholm)"
6766
+ msgstr ""
6767
+
6768
+ # translators: 1 opening HTML a tag to FeedBurner wiki, 2 closing HTML a tag.
6769
+ # __(
6770
+ # 'Even if using a feed proxy service (like %1$sFeedBurner%2$s), enabling this option is still recommended.',
6771
+ #. translators: 1 opening HTML a tag to FeedBurner wiki, 2 closing HTML a tag.
6772
+ #: inc/options/pgcache.php:83
6773
+ msgid ""
6774
+ "Even if using a feed proxy service (like %1$sFeedBurner%2$s), enabling this "
6775
+ "option is still recommended."
6776
+ msgstr ""
6777
+
6778
+ # 'interval' => 10,
6779
+ # 'display' => esc_html__( 'Every Ten Seconds', 'w3-total-cache' ),
6780
+ # );
6781
+ #: Extension_ImageService_Cron.php:41
6782
+ msgid "Every Ten Seconds"
6783
+ msgstr ""
6784
+
6785
+ # }
6786
+ # \WP_CLI::success( __( 'Everything flushed successfully.', 'w3-total-cache' ) );
6787
+ # break;
6788
+ #: Cli.php:85
6789
+ msgid "Everything flushed successfully."
6790
+ msgstr ""
6791
+
6792
+ # <div class="ustats_memcached_evictions_per_second">
6793
+ # <?php esc_html_e( 'Evictions/sec: ', 'w3-total-cache' ); ?><span></span>
6794
+ # </div>
6795
+ #: UsageStatistics_Page_View.php:411 UsageStatistics_Page_View.php:440
6796
+ msgid "Evictions/sec: "
6797
+ msgstr ""
6798
+
6799
+ # <div class="ustats_apc_evictions">
6800
+ # <?php esc_html_e( 'Evictions: ', 'w3-total-cache' ); ?><span></span>
6801
+ # </div>
6802
+ #: UsageStatistics_Page_View.php:466
6803
+ msgid "Evictions: "
6804
+ msgstr ""
6805
+
6806
+ # <li><?php esc_html_e( 'Visualize your performance over time with graphs', 'w3-total-cache' ); ?></li>
6807
+ # <li><?php esc_html_e( 'Examine the overall performance of caching method backends', 'w3-total-cache' ); ?></li>
6808
+ # </ul>
6809
+ #: UsageStatistics_Page_View_Ad.php:8
6810
+ msgid "Examine the overall performance of caching method backends"
6811
+ msgstr ""
6812
+
6813
+ #: extension-example/Extension_Example_Page_View.php:13
6814
+ msgid "Example extension is currently "
6815
+ msgstr ""
6816
+
6817
+ # 'label' => esc_html__( 'Minified JS Rocket Loader Exclude:', 'w3-total-cache' ),
6818
+ # 'checkbox_label' => esc_html__( 'Exclude minified JS files from being processed by Rocket Loader:', 'w3-total-cache' ),
6819
+ # 'control' => 'checkbox',
6820
+ #: Extension_CloudFlare_Page_View.php:146
6821
+ msgid "Exclude minified JS files from being processed by Rocket Loader:"
6822
+ msgstr ""
6823
+
6824
+ # 'control' => 'textarea',
6825
+ # 'label' => esc_html__( 'Exclude pages:', 'w3-total-cache' ),
6826
+ # 'description' => esc_html__( 'List of pages that should not have sidebar cached. Specify one page / post per line. This area supports regular expressions.', 'w3-total-cache' ),
6827
+ #: Extension_Genesis_Page_View.php:168
6828
+ msgid "Exclude pages:"
6829
+ msgstr ""
6830
+
6831
+ # 'control' => 'textarea',
6832
+ # 'description' => esc_html__( 'Exclude tags containing words', 'w3-total-cache' ),
6833
+ # )
6834
+ #: UserExperience_LazyLoad_Page_View.php:69
6835
+ msgid "Exclude tags containing words"
6836
+ msgstr ""
6837
+
6838
+ # 'key' => 'lazyload.exclude',
6839
+ # 'label' => esc_html__( 'Exclude words:', 'w3-total-cache' ),
6840
+ # 'control' => 'textarea',
6841
+ #: UserExperience_LazyLoad_Page_View.php:67
6842
+ msgid "Exclude words:"
6843
+ msgstr ""
6844
+
6845
+ # 'control' => 'textarea',
6846
+ # 'label' => esc_html__( 'Excluded single pages / posts:', 'w3-total-cache' ),
6847
+ # 'description' => esc_html__( 'List of pages / posts that should not have the single post / post loop cached. Specify one page / post per line. This area supports regular expressions.', 'w3-total-cache' ),
6848
+ #: Extension_Genesis_Page_View.php:125
6849
+ msgid "Excluded single pages / posts:"
6850
+ msgstr ""
6851
+
6852
+ # 'control' => 'textarea',
6853
+ # 'label' => esc_html__( 'Excluded terms pages / posts:', 'w3-total-cache' ),
6854
+ # 'description' => esc_html__( 'List of pages / posts that should not have the terms loop cached. Specify one page / post per line. This area supports regular expressions.', 'w3-total-cache' ),
6855
+ #: Extension_Genesis_Page_View.php:99
6856
+ msgid "Excluded terms pages / posts:"
6857
+ msgstr ""
6858
+
6859
+ # 'control' => 'checkbox',
6860
+ # 'description' => esc_html__( 'Exclusion achieved by adding data-cfasync="false" to script tags.', 'w3-total-cache' ),
6861
+ # )
6862
+ #: Extension_CloudFlare_Page_View.php:148
6863
+ msgid "Exclusion achieved by adding data-cfasync=\"false\" to script tags."
6864
+ msgstr ""
6865
+
6866
+ #
6867
+ # <?php Util_Ui::postbox_header( esc_html__( 'Exclusions', 'w3-total-cache' ), '', 'exclusions' ); ?>
6868
+ # <table class="form-table">
6869
+ #: Extension_Genesis_Page_View.php:15 Extension_Genesis_Page_View.php:212
6870
+ msgid "Exclusions"
6871
+ msgstr ""
6872
+
6873
+ # <a class="button-primary" href="<?php echo esc_url( W3TC_STACKPATH_SIGNUP_URL ); ?>" target="_blank"><?php esc_html_e( 'Sign Up Now ', 'w3-total-cache' ); ?></a>
6874
+ # <p><!--span class="desc"><?php esc_html_e( 'Exclusive offers availabel for W3TC users!', 'w3-total-cache' ); ?></span></p>-->
6875
+ # <h4 class="w3tcstackpath_signup_h4"><?php esc_html_e( 'Current customers', 'w3-total-cache' ); ?></h4>
6876
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:32
6877
+ #: Cdn_StackPath_Widget_View_Unauthorized.php:24
6878
+ msgid "Exclusive offers availabel for W3TC users!"
6879
+ msgstr ""
6880
+
6881
+ # if ( strlen( $commands ) > 0 ) {
6882
+ # $required_changes .= __( 'Execute next commands in a shell:', 'w3-total-cache' ) .
6883
+ # '<br><strong>' . $commands . '</strong>';
6884
+ #: Util_Activation.php:185
6885
+ msgid "Execute next commands in a shell:"
6886
+ msgstr ""
6887
+
6888
+ # translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
6889
+ # __(
6890
+ # 'Existing MaxCDN customers, enable %1$sCDN%2$s and:',
6891
+ #. translators: 1 opening HTML acronym tag, 2 closing HTML acronym tag.
6892
+ #: Cdn_Plugin_WidgetMaxCdn_View_Unauthorized.php:39
6893
+ msgid "Existing MaxCDN customers, enable %1$sCDN%2$s and:"
6894
+ msgstr ""
6895
+
6896
+ # <input class="w3tc-widget-ps-nonce" type="hidden" value="<?php echo esc_attr( wp_create_nonce( 'w3tc' ) ); ?>" />
6897
+ # <input class="button ps-expand-all" type="button" value="<?php esc_attr_e( 'Expand all', 'w3-total-cache' ); ?>" />
6898
+ # <input class="button ps-collapse-all" type="button" value="<?php esc_attr_e( 'Collapse all', 'w3-total-cache' ); ?>" />
6899
+ #: inc/popup/pagespeed_results.php:15
6900
+ msgid "Expand all"
6901
+ msgstr ""
6902
+
6903
+ # 'browsercache.cssjs.expires' => __( 'Set expires header', 'w3-total-cache' ),
6904
+ # 'browsercache.cssjs.lifetime' => __( 'Expires header lifetime:', 'w3-total-cache' ),
6905
+ # 'browsercache.cssjs.cache.control' => __( 'Set cache control header', 'w3-total-cache' ),
6906
+ #: BrowserCache_ConfigLabels.php:13 BrowserCache_ConfigLabels.php:24
6907
+ #: BrowserCache_ConfigLabels.php:33
6908
+ msgid "Expires header lifetime:"
6909
+ msgstr ""
6910
+
6911
+ # 'cdn.reject.uri' => __( 'Disable <acronym title="Content Delivery Network">CDN</acronym> on the following pages:', 'w3-total-cache' ),
6912
+ # 'cdn.autoupload.enabled' => __( 'Export changed files automatically', 'w3-total-cache' ),
6913
+ # 'cdn.autoupload.interval' => __( 'Auto upload interval:', 'w3-total-cache' ),
6914
+ #: Cdn_ConfigLabels.php:23
6915
+ msgid "Export changed files automatically"
6916
+ msgstr ""
6917
+
6918
+ # <tr>
6919
+ # <th><?php esc_html_e( 'Export configuration:', 'w3-total-cache' ); ?></th>
6920
+ # <td>
6921
+ #: inc/options/general.php:1056
6922
+ msgid "Export configuration:"
6923
+ msgstr ""
6924
+
6925
+ # Util_Ui::button_popup(
6926
+ # __( 'export the media library', 'w3-total-cache' ),
6927
+ # 'cdn_export_library' ),
6928
+ #: Cdn_AdminNotes.php:100
6929
+ msgid "export the media library"
6930
+ msgstr ""
6931
+
6932
+ # '</acronym>',
6933
+ # '<acronym title="' . esc_attr__( 'Extensible Markup Language', 'w3-total-cache' ) . '">',
6934
+ # '</acronym>'
6935
+ #: inc/options/browsercache.php:509 inc/options/pgcache.php:278
6936
+ #: inc/options/pgcache.php:814
6937
+ msgid "Extensible Markup Language"
6938
+ msgstr ""
6939
+
6940
+ # '</acronym>',
6941
+ # '<acronym title="' . esc_attr__( 'eXtensible Markup Language', 'w3-total-cache' ) . '">',
6942
+ # '</acronym>'
6943
+ #: inc/options/common/header.php:212 inc/options/common/header.php:331
6944
+ #: inc/options/minify.php:171
6945
+ msgid "eXtensible Markup Language"
6946
+ msgstr ""
6947
+
6948
+ # <tr>
6949
+ # <th scope="col" id="cb" class="w3tc_extensions_manage_column_check"><label class="screen-reader-text" for="cb-select-all-1"><?php esc_html_e( 'Select All', 'w3-total-cache' ); ?></label><input id="cb-select-all-1" type="checkbox" class="w3tc_extensions_manage_input_checkall"></th><th scope="col" id="name" class="manage-column column-name" style=""><?php esc_html_e( 'Extension', 'w3-total-cache' ); ?></th><th scope="col" id="description" class="manage-column column-description" style=""><?php esc_html_e( 'Description', 'w3-total-cache' ); ?></th>
6950
+ # </tr>
6951
+ #: inc/options/extensions/list.php:64 inc/options/extensions/list.php:69
6952
+ msgid