Aruba HiSpeed Cache - Version 1.1.2

Version Description

  • Problem regarding check resolved. In the event of a false positive during activation, go to the plugin page (../wp-admin/options-general.php?page=aruba-hispeed-cache) to repeat check.
  • Various bug corrections and other improvements.
Download this release

Release Info

Developer arubadev
Plugin Icon 128x128 Aruba HiSpeed Cache
Version 1.1.2
Comparing to
See all releases

Code changes from version 1.1.1 to 1.1.2

admin/partials/admin-notice-service-available.php CHANGED
@@ -1,7 +1,7 @@
1
  <div id="ahsc-service-warning" class="notice notice-warning">
2
  <p>
3
  <?php printf(
4
- \wp_kses(__('<strong>The HiSpeed Cache feature is not enabled.</strong> To enable it, go to your domain <a href="%s" rel="nofollow" target="_blank">control panel</a>. For further details <a href="%s" rel="nofollow" target="_blank">see our guide</a>.', 'aruba-hispeed-cache'), array( 'strong' => array(), 'a' => array( 'href' => array(), 'target' => array(), 'rel' => array()) )),
5
  esc_url(ArubaHiSpeedCache\includes\ArubaHiSpeedCacheConfigs::getLocalizedLink('link_aruba_pca')),
6
  esc_url(ArubaHiSpeedCache\includes\ArubaHiSpeedCacheConfigs::getLocalizedLink('link_guide'))
7
  );
1
  <div id="ahsc-service-warning" class="notice notice-warning">
2
  <p>
3
  <?php printf(
4
+ \wp_kses(__('<strong>The HiSpeed Cache feature is not enabled.</strong> To enable it, go to your domain <a href="%s" rel="nofollow" target="_blank">control panel</a> (verifying the request may take up to 15 minutes). For further details <a href="%s" rel="nofollow" target="_blank">see our guide</a>.', 'aruba-hispeed-cache'), array( 'strong' => array(), 'a' => array( 'href' => array(), 'target' => array(), 'rel' => array()) )),
5
  esc_url(ArubaHiSpeedCache\includes\ArubaHiSpeedCacheConfigs::getLocalizedLink('link_aruba_pca')),
6
  esc_url(ArubaHiSpeedCache\includes\ArubaHiSpeedCacheConfigs::getLocalizedLink('link_guide'))
7
  );
aruba-hispeed-cache.php CHANGED
@@ -11,7 +11,7 @@
11
  *
12
  * @wordpress-plugin
13
  * Plugin Name: Aruba HiSpeed Cache
14
- * Version: 1.1.1
15
  * Plugin URI: https://hosting.aruba.it/wordpress.aspx
16
  * Description: Aruba HiSpeed Cache interfaces directly with an Aruba hosting platform's HiSpeed Cache service and automates its management.
17
  * Author: Aruba.it
11
  *
12
  * @wordpress-plugin
13
  * Plugin Name: Aruba HiSpeed Cache
14
+ * Version: 1.1.2
15
  * Plugin URI: https://hosting.aruba.it/wordpress.aspx
16
  * Description: Aruba HiSpeed Cache interfaces directly with an Aruba hosting platform's HiSpeed Cache service and automates its management.
17
  * Author: Aruba.it
includes/ArubaHiSpeedCacheAdmin.php CHANGED
@@ -43,6 +43,12 @@ use \home_url;
43
  use \wp_verify_nonce;
44
  use \checked;
45
  use \wp_kses;
 
 
 
 
 
 
46
 
47
  if (! \class_exists('ArubaHiSpeedCache\includes\ArubaHiSpeedCacheAdmin')) {
48
 
@@ -78,12 +84,12 @@ if (! \class_exists('ArubaHiSpeedCache\includes\ArubaHiSpeedCacheAdmin')) {
78
  }
79
 
80
  /**
81
- * Enqueue_styles
82
  *
83
  * @param string $hook the currente acp hookname
84
  * @return void
85
  */
86
- public function enqueue_styles($hook)
87
  {
88
  $has_notice = (\is_multisite()) ?
89
  \get_site_transient(ArubaHiSpeedCacheConfigs::ArubaHiSpeedCache_getConfigs('TRANSIENT_NAME')) :
@@ -99,7 +105,7 @@ if (! \class_exists('ArubaHiSpeedCache\includes\ArubaHiSpeedCacheAdmin')) {
99
  );
100
  }
101
 
102
- if ('settings_page_aruba-hispeed-cache' != $hook) {
103
  return;
104
  }
105
 
@@ -109,19 +115,6 @@ if (! \class_exists('ArubaHiSpeedCache\includes\ArubaHiSpeedCacheAdmin')) {
109
  array(),
110
  ArubaHiSpeedCacheConfigs::ArubaHiSpeedCache_getConfigs('PLUGIN_VERSION')
111
  );
112
- }
113
-
114
- /**
115
- * Enqueue_scripts
116
- *
117
- * @param string $hook the currente acp hookname
118
- * @return void
119
- */
120
- public function enqueue_scripts($hook)
121
- {
122
- if ('settings_page_aruba-hispeed-cache' !== $hook) {
123
- return;
124
- }
125
 
126
  \wp_enqueue_script(
127
  ArubaHiSpeedCacheConfigs::ArubaHiSpeedCache_getConfigs('PLUGIN_NAME'),
@@ -268,7 +261,13 @@ if (! \class_exists('ArubaHiSpeedCache\includes\ArubaHiSpeedCacheAdmin')) {
268
  \__('Settings', 'aruba-hispeed-cache')
269
  );
270
 
271
- \array_unshift($links, $settings_link);
 
 
 
 
 
 
272
 
273
  return $links;
274
  }
@@ -342,7 +341,7 @@ if (! \class_exists('ArubaHiSpeedCache\includes\ArubaHiSpeedCacheAdmin')) {
342
  $all_inputs = filter_input_array(INPUT_POST, $form_options, false); // for php 5.4
343
 
344
  if (isset($all_inputs['smart_http_expire_save'])
345
- && \wp_verify_nonce($all_inputs['smart_http_expire_form_nonce'], 'smart-http-expire-form-nonce')
346
  ) {
347
  unset($all_inputs['smart_http_expire_save']);
348
  unset($all_inputs['smart_http_expire_form_nonce']);
@@ -363,12 +362,19 @@ if (! \class_exists('ArubaHiSpeedCache\includes\ArubaHiSpeedCacheAdmin')) {
363
 
364
  private function _check_hispeed_cache_services_realtime()
365
  {
366
- // $has_notice = (\is_multisite()) ?
367
- // \get_site_transient(ArubaHiSpeedCacheConfigs::ArubaHiSpeedCache_getConfigs('TRANSIENT_NAME')) :
368
- // \get_transient(ArubaHiSpeedCacheConfigs::ArubaHiSpeedCache_getConfigs('TRANSIENT_NAME'))
369
- // ;
 
 
 
 
 
 
 
 
370
 
371
- //if (!$has_notice) {
372
  $checker = new HiSpeedCacheServiceChecker();
373
  $notices_file = null;
374
 
@@ -383,17 +389,16 @@ if (! \class_exists('ArubaHiSpeedCache\includes\ArubaHiSpeedCacheAdmin')) {
383
  $notices_file = 'admin-notice-not-aruba-server';
384
  break;
385
  }
386
-
387
- if ($notices_file != null) {
388
- include_once ARUBA_HISPEED_CACHE_BASEPATH . 'admin' .AHSC_DS. 'partials' .AHSC_DS. $notices_file .'.php';
389
- }
390
 
391
  if ('1' === \filter_input(INPUT_GET, 'debug', FILTER_SANITIZE_STRING)) {
392
  return $checker->debugger();
393
  }
394
 
395
  return false;
396
- //}
397
  }
398
 
399
  /**
43
  use \wp_verify_nonce;
44
  use \checked;
45
  use \wp_kses;
46
+ use \sanitize_key;
47
+ use \wp_unslash;
48
+ use \get_site_transient;
49
+ use \get_transient;
50
+ use \delete_site_transient;
51
+ use \delete_transient;
52
 
53
  if (! \class_exists('ArubaHiSpeedCache\includes\ArubaHiSpeedCacheAdmin')) {
54
 
84
  }
85
 
86
  /**
87
+ * Enqueue_scripts
88
  *
89
  * @param string $hook the currente acp hookname
90
  * @return void
91
  */
92
+ public function enqueue_scripts($hook)
93
  {
94
  $has_notice = (\is_multisite()) ?
95
  \get_site_transient(ArubaHiSpeedCacheConfigs::ArubaHiSpeedCache_getConfigs('TRANSIENT_NAME')) :
105
  );
106
  }
107
 
108
+ if ('settings_page_aruba-hispeed-cache' !== $hook) {
109
  return;
110
  }
111
 
115
  array(),
116
  ArubaHiSpeedCacheConfigs::ArubaHiSpeedCache_getConfigs('PLUGIN_VERSION')
117
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
118
 
119
  \wp_enqueue_script(
120
  ArubaHiSpeedCacheConfigs::ArubaHiSpeedCache_getConfigs('PLUGIN_NAME'),
261
  \__('Settings', 'aruba-hispeed-cache')
262
  );
263
 
264
+ $support_link = \sprintf(
265
+ '<a href="%s" target="_blank">%s</a>',
266
+ \ArubaHiSpeedCache\includes\ArubaHiSpeedCacheConfigs::getLocalizedLink('link_assistance'),
267
+ \__('Customer service', 'aruba-hispeed-cache')
268
+ );
269
+
270
+ \array_unshift($links, $settings_link, $support_link);
271
 
272
  return $links;
273
  }
341
  $all_inputs = filter_input_array(INPUT_POST, $form_options, false); // for php 5.4
342
 
343
  if (isset($all_inputs['smart_http_expire_save'])
344
+ && \wp_verify_nonce(\sanitize_key(\wp_unslash($all_inputs['smart_http_expire_form_nonce'])), 'smart-http-expire-form-nonce')
345
  ) {
346
  unset($all_inputs['smart_http_expire_save']);
347
  unset($all_inputs['smart_http_expire_form_nonce']);
362
 
363
  private function _check_hispeed_cache_services_realtime()
364
  {
365
+ $has_notice = (\is_multisite()) ?
366
+ \get_site_transient(ArubaHiSpeedCacheConfigs::ArubaHiSpeedCache_getConfigs('TRANSIENT_NAME')) :
367
+ \get_transient(ArubaHiSpeedCacheConfigs::ArubaHiSpeedCache_getConfigs('TRANSIENT_NAME'))
368
+ ;
369
+
370
+ if ($has_notice) {
371
+ if (\is_multisite()) {
372
+ \delete_site_transient(ArubaHiSpeedCacheConfigs::ArubaHiSpeedCache_getConfigs('TRANSIENT_NAME'));
373
+ } else {
374
+ \delete_transient(ArubaHiSpeedCacheConfigs::ArubaHiSpeedCache_getConfigs('TRANSIENT_NAME'));
375
+ }
376
+ }
377
 
 
378
  $checker = new HiSpeedCacheServiceChecker();
379
  $notices_file = null;
380
 
389
  $notices_file = 'admin-notice-not-aruba-server';
390
  break;
391
  }
392
+
393
+ if ($notices_file != null) {
394
+ include_once ARUBA_HISPEED_CACHE_BASEPATH . 'admin' .AHSC_DS. 'partials' .AHSC_DS. $notices_file .'.php';
395
+ }
396
 
397
  if ('1' === \filter_input(INPUT_GET, 'debug', FILTER_SANITIZE_STRING)) {
398
  return $checker->debugger();
399
  }
400
 
401
  return false;
 
402
  }
403
 
404
  /**
includes/ArubaHiSpeedCacheBootstrap.php CHANGED
@@ -101,9 +101,20 @@ if (! class_exists(__NAMESPACE__ . '\ArubaHiSpeedCacheBootstrap')) {
101
  $aruba_hispeed_cache_admin = new ArubaHiSpeedCacheAdmin();
102
  $aruba_hispeed_cache_purger = new ArubaHiSpeedCacheWpPurger($aruba_hispeed_cache_admin);
103
 
104
- $this->loader->add_action('admin_enqueue_scripts', $aruba_hispeed_cache_admin, 'enqueue_styles');
105
  $this->loader->add_action('admin_enqueue_scripts', $aruba_hispeed_cache_admin, 'enqueue_scripts');
106
 
 
 
 
 
 
 
 
 
 
 
 
 
107
  if (\is_multisite()) {
108
  $this->loader->add_action('network_admin_menu', $aruba_hispeed_cache_admin, 'aruba_hispeed_cache_admin_menu');
109
  $this->loader->add_filter('network_admin_plugin_action_links_' . ARUBA_HISPEED_CACHE_BASENAME, $aruba_hispeed_cache_admin, 'aruba_hispeed_cache_settings_link');
101
  $aruba_hispeed_cache_admin = new ArubaHiSpeedCacheAdmin();
102
  $aruba_hispeed_cache_purger = new ArubaHiSpeedCacheWpPurger($aruba_hispeed_cache_admin);
103
 
 
104
  $this->loader->add_action('admin_enqueue_scripts', $aruba_hispeed_cache_admin, 'enqueue_scripts');
105
 
106
+ // /**
107
+ // * Remove option to deactivate the plugin
108
+ // * @since 2.0.0
109
+ // */
110
+ // \add_filter('plugin_action_links', function ($actions, $plugin_file, $plugin_data, $context) {
111
+ // if (\array_key_exists('deactivate', $actions) && ARUBA_HISPEED_CACHE_BASENAME === $plugin_file) {
112
+ // $actions = [];
113
+ // }
114
+
115
+ // return $actions;
116
+ // }, 10, 4);
117
+
118
  if (\is_multisite()) {
119
  $this->loader->add_action('network_admin_menu', $aruba_hispeed_cache_admin, 'aruba_hispeed_cache_admin_menu');
120
  $this->loader->add_filter('network_admin_plugin_action_links_' . ARUBA_HISPEED_CACHE_BASENAME, $aruba_hispeed_cache_admin, 'aruba_hispeed_cache_settings_link');
includes/ArubaHiSpeedCacheConfigs.php CHANGED
@@ -49,7 +49,7 @@ if (! \class_exists('ArubaHiSpeedCache\includes\ArubaHiSpeedCacheConfigs')) {
49
  /**
50
  * PLUGIN_VERSION string
51
  */
52
- public static $PLUGIN_VERSION = '1.0.1';
53
 
54
  /**
55
  * MINIMUM_WP string
@@ -103,6 +103,13 @@ if (! \class_exists('ArubaHiSpeedCache\includes\ArubaHiSpeedCacheConfigs')) {
103
  */
104
  public static $TRANSIENT_LIFE_TIME = 15 * \MINUTE_IN_SECONDS;
105
 
 
 
 
 
 
 
 
106
  /**
107
  * $LINK
108
  * the aruba links
@@ -268,7 +275,8 @@ if (! \class_exists('ArubaHiSpeedCache\includes\ArubaHiSpeedCacheConfigs')) {
268
  'PURGE_PORT' => self::$PURGE_PORT,
269
  'PURGE_TIME_OUT' => self::$PURGE_TIME_OUT,
270
  'TRANSIENT_NAME' => self::$TRANSIENT_NAME,
271
- 'TRANSIENT_LIFE_TIME' => self::$TRANSIENT_LIFE_TIME
 
272
  );
273
 
274
  return $configs[$config];
49
  /**
50
  * PLUGIN_VERSION string
51
  */
52
+ public static $PLUGIN_VERSION = '1.1.2';
53
 
54
  /**
55
  * MINIMUM_WP string
103
  */
104
  public static $TRANSIENT_LIFE_TIME = 15 * \MINUTE_IN_SECONDS;
105
 
106
+ /**
107
+ * CHECK_TIMEOUT the time out of check request
108
+ *
109
+ * @var int
110
+ */
111
+ public static $CHECK_TIMEOUT = 15;
112
+
113
  /**
114
  * $LINK
115
  * the aruba links
275
  'PURGE_PORT' => self::$PURGE_PORT,
276
  'PURGE_TIME_OUT' => self::$PURGE_TIME_OUT,
277
  'TRANSIENT_NAME' => self::$TRANSIENT_NAME,
278
+ 'TRANSIENT_LIFE_TIME' => self::$TRANSIENT_LIFE_TIME,
279
+ 'CHECK_TIMEOUT' => self::$CHECK_TIMEOUT
280
  );
281
 
282
  return $configs[$config];
includes/ArubaHiSpeedCacheWpPurger.php CHANGED
@@ -436,7 +436,7 @@ if (!class_exists(__NAMESPACE__ . 'ArubaHiSpeedCacheWpPurger')) {
436
  return;
437
  }
438
 
439
- if ($this->is_enable_setting('ahsc_purge_page_on_mod') || $this->is_enable_setting('purge_archive_on_edit')) {
440
  $status = array( 'publish', 'future' );
441
 
442
  if (in_array($new_status, $status, true)) {
436
  return;
437
  }
438
 
439
+ if ($this->is_enable_setting('ahsc_purge_page_on_mod') || $this->is_enable_setting('ahsc_purge_archive_on_edit')) {
440
  $status = array( 'publish', 'future' );
441
 
442
  if (in_array($new_status, $status, true)) {
includes/HiSpeedCacheServiceChecker.php CHANGED
@@ -27,14 +27,19 @@ if (!class_exists(__NAMESPACE__ . '\HiSpeedCacheServiceChecker')) {
27
 
28
  private $headers = array();
29
 
 
 
30
  public $serviceIsActivabile = false;
31
  public $serviceIsActive = false;
32
  public $serviceStatus = null;
33
  public $isArubaServer = false;
34
 
 
 
 
 
35
  public function __construct($target = null)
36
  {
37
- //$this->target = ;
38
  $this->target = (null === $target) ?
39
  \ArubaHiSpeedCache\includes\ArubaHiSpeedCacheConfigs::getSiteHome() :
40
  $target;
@@ -48,24 +53,35 @@ if (!class_exists(__NAMESPACE__ . '\HiSpeedCacheServiceChecker')) {
48
  'sslverify' => false,
49
  'user-agent' => 'aruba-ua',
50
  'httpversion' => '1.1',
51
- 'timeout' => 15
52
-
53
  ));
54
 
55
  if (\is_array($response) && ! \is_wp_error($response)) {
56
  $this->headers = $response['headers']->getAll();
 
 
57
  return true;
58
  }
59
 
60
  if (\is_wp_error($response)) {
61
- $code = $response->get_error_code();
62
- $message = $response->get_error_message();
 
63
  }
64
- return list($code, $message) = array($error_code, $error_message);
 
65
  }
66
 
67
  private function _headersAnalizer()
68
  {
 
 
 
 
 
 
 
 
69
  //is ow aruba server?
70
  if (array_key_exists('x-aruba-cache', $this->headers)) {
71
  $this->isArubaServer = true;
@@ -118,9 +134,10 @@ if (!class_exists(__NAMESPACE__ . '\HiSpeedCacheServiceChecker')) {
118
  public function debugger()
119
  {
120
  $data = array(
121
- 'date' => date('D, d M Y H:i:s', time()),
122
- 'target' => $this->target,
123
- 'headers' => $this->headers,
 
124
  );
125
 
126
  return var_export($data, true);
27
 
28
  private $headers = array();
29
 
30
+ private $status_code = null;
31
+
32
  public $serviceIsActivabile = false;
33
  public $serviceIsActive = false;
34
  public $serviceStatus = null;
35
  public $isArubaServer = false;
36
 
37
+ private $check_error = false;
38
+ private $error_code = null;
39
+ private $error_message = null;
40
+
41
  public function __construct($target = null)
42
  {
 
43
  $this->target = (null === $target) ?
44
  \ArubaHiSpeedCache\includes\ArubaHiSpeedCacheConfigs::getSiteHome() :
45
  $target;
53
  'sslverify' => false,
54
  'user-agent' => 'aruba-ua',
55
  'httpversion' => '1.1',
56
+ 'timeout' => \ArubaHiSpeedCache\includes\ArubaHiSpeedCacheConfigs::ArubaHiSpeedCache_getConfigs('CHECK_TIMEOUT')
 
57
  ));
58
 
59
  if (\is_array($response) && ! \is_wp_error($response)) {
60
  $this->headers = $response['headers']->getAll();
61
+ $this->status_code = $response['response']['code'];
62
+
63
  return true;
64
  }
65
 
66
  if (\is_wp_error($response)) {
67
+ $this->check_error = true;
68
+ $this->error_code = $response->get_error_code();
69
+ $this->error_message = $response->get_error_message();
70
  }
71
+
72
+ return false;
73
  }
74
 
75
  private function _headersAnalizer()
76
  {
77
+
78
+ //is headers empty or has request error
79
+ if (empty($this->headers) or $this->check_error) {
80
+ $this->isArubaServer = true;
81
+ $this->serviceIsActive = true;
82
+ return;
83
+ }
84
+
85
  //is ow aruba server?
86
  if (array_key_exists('x-aruba-cache', $this->headers)) {
87
  $this->isArubaServer = true;
134
  public function debugger()
135
  {
136
  $data = array(
137
+ 'date' => date('D, d M Y H:i:s', time()),
138
+ 'target' => $this->target,
139
+ 'headers' => $this->headers,
140
+ 'status_code' => $this->status_code
141
  );
142
 
143
  return var_export($data, true);
languages/aruba-hispeed-cache-es_ES.mo CHANGED
Binary file
languages/aruba-hispeed-cache-es_ES.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Aruba HiSpeed Cache 0.0.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/aruba-hispeed-cache\n"
7
- "POT-Creation-Date: 2022-03-23T10:34:24+01:00\n"
8
- "PO-Revision-Date: 2022-04-04 14:44+0200\n"
9
  "Last-Translator: \n"
10
  "Language-Team: Aruba Developer <hispeedcache.developer@aruba.it>\n"
11
  "Language: es\n"
@@ -17,14 +17,17 @@ msgstr ""
17
  "X-Domain: aruba-hispeed-cache\n"
18
 
19
  #. Plugin Name of the plugin
20
- #: \includes\ArubaHiSpeedCacheAdmin.php:152 \includes\ArubaHiSpeedCacheAdmin.php:153
21
- #: \includes\ArubaHiSpeedCacheAdmin.php:161 \includes\ArubaHiSpeedCacheAdmin.php:162
 
 
22
  msgid "Aruba HiSpeed Cache"
23
  msgstr "Aruba HiSpeed Cache"
24
 
25
  #. Plugin URI of the plugin
26
- msgid "https://www.aruba.it/magazine/hosting/siti-piu-veloci-con-hispeed-cache.aspx"
27
- msgstr "https://www.aruba.it/magazine/hosting/siti-piu-veloci-con-hispeed-cache.aspx"
 
28
 
29
  #. Description of the plugin
30
  msgid ""
@@ -46,51 +49,53 @@ msgstr "https://www.aruba.it/"
46
  msgid "Aruba HiSpeed Cache Settings "
47
  msgstr "Ajustes de Aruba HiSpeed Cache "
48
 
49
- #: \admin\partials\admin-general-options.php:69
50
  msgid "Save changes"
51
  msgstr "Guardar los cambios"
52
 
53
- #: \admin\partials\admin-general-options.php:74
54
  msgid "Purge entire cache"
55
  msgstr "Vaciar toda la caché"
56
 
57
  #: \admin\partials\admin-notice-not-aruba-server.php:5
58
  msgid ""
59
- "<strong>The Aruba HiSpeed Cache plugin cannot be used because your WordPress website "
60
- "is not hosted on an Aruba hosting platform.</strong> Buy an <a href=\"%s\" rel="
61
- "\"nofollow\" target=\"_blank\">Aruba hosting</a> service and migrate your website to "
62
- "use the plugin."
63
  msgstr ""
64
  "<strong>El plugin Aruba HiSpeed ​​​​Cache no se puede usar porque tu sitio web de "
65
- "WordPress no está alojado en la plataforma de hosting de Aruba.</strong> Compra un "
66
- "servicio <a href=\"%s\" rel=\"nofollow\" target=\"_blank\">hosting de Aruba</a> y "
67
- "luego migra tu web para usar el plugin."
68
 
69
  #: \admin\partials\admin-notice-purge-completed.php:4
70
  msgid "Purge completed"
71
- msgstr "Vaciado terminado "
72
 
73
  #: \admin\partials\admin-notice-service-available.php:4
74
  msgid ""
75
- "<strong>The HiSpeed Cache feature is not enabled.</strong> To enable it, go to your "
76
- "domain <a href=\"%s\" rel=\"nofollow\" target=\"_blank\">control panel</a>. For "
77
- "further details <a href=\"%s\" rel=\"nofollow\" target=\"_blank\">see our guide</a>."
 
78
  msgstr ""
79
- "<strong>El servicio HiSpeed ​​Cache no está activado.</strong> Para activarlo, inicia "
80
- "sesión en el <a href=\"%s\" rel=\"nofollow\" target=\"_blank\">panel de control</a> "
81
- "de tu dominio. Para más información <a href=\"%s\" rel=\"nofollow\" target=\"_blank"
82
- "\">consulta nuestra guía</a>."
83
 
84
  #: \admin\partials\admin-notice-service-unavailable.php:5
85
  msgid ""
86
- "<strong>The HiSpeed Cache feature, with which the plugin interfaces, is not available "
87
- "on the server that hosts your website.</strong> To use HiSpeed Cache and the plugin, "
88
- "contact <a href=\"%s\" rel=\"nofollow\" target=\"_blank\">support</a>."
 
89
  msgstr ""
90
  "<strong>El servicio HiSpeed ​​​​Cache, con el que interactúa el plugin, no está "
91
- "disponible en el servidor donde está alojado tu sitio web.</strong> Para usar HiSpeed "
92
- "Cache y el plugin, ponte en contacto con nuestra <a href=\"%s\" rel=\"nofollow\" "
93
- "target=\"_blank\">asistencia</a>."
94
 
95
  #: \admin\partials\admin-notice-settings-saved.php:4
96
  msgid "Settings saved."
@@ -100,15 +105,19 @@ msgstr "Ajustes guardados."
100
  msgid "Sorry, Aruba HiSpeed Cache requires WordPress %s or higher."
101
  msgstr "Lo siento, Aruba HiSpeed Cache necesita WordPress %s o superior."
102
 
103
- #: \includes\ArubaHiSpeedCacheAdmin.php:137
104
  msgid "You are about to purge the entire cache. Do you want to continue?"
105
  msgstr "Estás a punto de vaciar toda la caché. ¿Quieres continuar?"
106
 
107
- #: \includes\ArubaHiSpeedCacheAdmin.php:193
 
 
 
 
108
  msgid "Purge the page cache"
109
  msgstr "Vaciar la caché de la página"
110
 
111
- #: \includes\ArubaHiSpeedCacheAdmin.php:197
112
  msgid "Purge Cache"
113
  msgstr "Vaciar la caché"
114
 
@@ -116,80 +125,95 @@ msgstr "Vaciar la caché"
116
  msgid "Settings"
117
  msgstr "Ajustes"
118
 
119
- #: \includes\ArubaHiSpeedCacheAdmin.php:380 \includes\ArubaHiSpeedCacheAdmin.php:381
 
 
 
 
 
120
  msgid "Purging options"
121
  msgstr "Opciones de vaciado"
122
 
123
- #: \includes\ArubaHiSpeedCacheAdmin.php:388
124
  msgid "Enable automatic purge"
125
  msgstr "Activar el vaciado automático"
126
 
127
- #: \includes\ArubaHiSpeedCacheAdmin.php:406
128
  msgid "Automatically purge entire cache when:"
129
  msgstr "Vaciar automáticamente toda la caché cuando:"
130
 
131
- #: \includes\ArubaHiSpeedCacheAdmin.php:411 \includes\ArubaHiSpeedCacheAdmin.php:412
 
132
  msgid "Home page:"
133
  msgstr "Página de inicio:"
134
 
135
- #: \includes\ArubaHiSpeedCacheAdmin.php:419 \includes\ArubaHiSpeedCacheAdmin.php:471
 
136
  msgid ""
137
  "a <strong>post</strong> (or page/custom post) is <strong>modified</strong> or "
138
  "<strong>added</strong>."
139
  msgstr ""
140
- "se <strong>modifica</strong> o se <strong>añade</strong> una <strong>entrada</strong> "
141
- "(o página/custom post)"
142
 
143
- #: \includes\ArubaHiSpeedCacheAdmin.php:426 \includes\ArubaHiSpeedCacheAdmin.php:478
 
144
  msgid ""
145
- "a <strong>published post</strong> (or page/custom post) is <strong>cancelled</strong>."
 
146
  msgstr ""
147
- "se <strong>cancela</strong> la publicación de una <strong>entrada publicada</strong> "
148
- "(o página/contenido personalizado)."
149
 
150
- #: \includes\ArubaHiSpeedCacheAdmin.php:433 \includes\ArubaHiSpeedCacheAdmin.php:434
 
151
  msgid "Post/page/custom post type:"
152
  msgstr "Entrada/página/tipo de contenido personalizado (cpt):"
153
 
154
- #: \includes\ArubaHiSpeedCacheAdmin.php:441
155
  msgid "a <strong>post</strong> is <strong>published</strong>."
156
  msgstr "se <strong>publica</strong> una <strong>entrada</strong>."
157
 
158
- #: \includes\ArubaHiSpeedCacheAdmin.php:448 \includes\ArubaHiSpeedCacheAdmin.php:493
 
159
  msgid "a <strong>comment</strong> is <strong>approved/published</strong>."
160
  msgstr "se <strong>aprueba/publica</strong> un <strong>comentario</strong>."
161
 
162
- #: \includes\ArubaHiSpeedCacheAdmin.php:455 \includes\ArubaHiSpeedCacheAdmin.php:500
 
163
  msgid "a <strong>comment</strong> is <strong>unapproved/deleted</strong>."
164
  msgstr "se <strong>rechaza/borra</strong> un <strong>comentario</strong>."
165
 
166
- #: \includes\ArubaHiSpeedCacheAdmin.php:462 \includes\ArubaHiSpeedCacheAdmin.php:464
 
167
  msgid "Archives:"
168
  msgstr "Archivos:"
169
 
170
- #: \includes\ArubaHiSpeedCacheAdmin.php:463
171
  msgid "(date, category, tag, author, custom taxonomies)"
172
  msgstr "(fecha, categoría, etiqueta, autor, taxonomías personalizadas)"
173
 
174
- #: \includes\ArubaHiSpeedCacheAdmin.php:485 \includes\ArubaHiSpeedCacheAdmin.php:486
 
175
  msgid "Comments:"
176
  msgstr "Comentarios:"
177
 
178
- #: \includes\ArubaHiSpeedCacheConfigs.php:189
179
- msgid "Sorry, you need to be an administrator to use Aruba HiSpeed Cache."
180
- msgstr "Lo siento, tienes que ser administrador para usar Aruba HiSpeed Cache."
181
-
182
- #: \includes\ArubaHiSpeedCacheWpPurger.php:260
183
  msgid "An error has occurred."
184
  msgstr "Ha ocurrido un error."
185
 
186
- #: \includes\ArubaHiSpeedCacheWpPurger.php:261
187
  msgid "Sorry, you do not have the necessary privileges to edit these options."
188
- msgstr "Lo siento, no tienes los permisos necesarios para editar estas opciones. "
189
 
190
- #: \includes\ArubaHiSpeedCacheWpPurger.php:266
191
  msgid "Contact customer service"
192
  msgstr "Contactar con el servicio al cliente"
193
 
 
 
 
 
 
194
  #~ msgid "Purges the cache whenever a post is edited or published."
195
  #~ msgstr "Borrar la caché cada vez que se publique o modifique un artículo."
4
  msgstr ""
5
  "Project-Id-Version: Aruba HiSpeed Cache 0.0.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/aruba-hispeed-cache\n"
7
+ "POT-Creation-Date: 2022-05-27T16:49:50+02:00\n"
8
+ "PO-Revision-Date: 2022-05-27 16:54+0200\n"
9
  "Last-Translator: \n"
10
  "Language-Team: Aruba Developer <hispeedcache.developer@aruba.it>\n"
11
  "Language: es\n"
17
  "X-Domain: aruba-hispeed-cache\n"
18
 
19
  #. Plugin Name of the plugin
20
+ #: \includes\ArubaHiSpeedCacheAdmin.php:145
21
+ #: \includes\ArubaHiSpeedCacheAdmin.php:146
22
+ #: \includes\ArubaHiSpeedCacheAdmin.php:154
23
+ #: \includes\ArubaHiSpeedCacheAdmin.php:155
24
  msgid "Aruba HiSpeed Cache"
25
  msgstr "Aruba HiSpeed Cache"
26
 
27
  #. Plugin URI of the plugin
28
+ #| msgid "https://www.aruba.it/"
29
+ msgid "https://hosting.aruba.it/wordpress.aspx"
30
+ msgstr "https://hosting.aruba.it/wordpress.aspx"
31
 
32
  #. Description of the plugin
33
  msgid ""
49
  msgid "Aruba HiSpeed Cache Settings "
50
  msgstr "Ajustes de Aruba HiSpeed Cache "
51
 
52
+ #: \admin\partials\admin-general-options.php:74
53
  msgid "Save changes"
54
  msgstr "Guardar los cambios"
55
 
56
+ #: \admin\partials\admin-general-options.php:79
57
  msgid "Purge entire cache"
58
  msgstr "Vaciar toda la caché"
59
 
60
  #: \admin\partials\admin-notice-not-aruba-server.php:5
61
  msgid ""
62
+ "<strong>The Aruba HiSpeed Cache plugin cannot be used because your WordPress "
63
+ "website is not hosted on an Aruba hosting platform.</strong> Buy an <a href=\"%s"
64
+ "\" rel=\"nofollow\" target=\"_blank\">Aruba hosting</a> service and migrate your "
65
+ "website to use the plugin."
66
  msgstr ""
67
  "<strong>El plugin Aruba HiSpeed ​​​​Cache no se puede usar porque tu sitio web de "
68
+ "WordPress no está alojado en la plataforma de hosting de Aruba.</strong> Compra "
69
+ "un servicio <a href=\"%s\" rel=\"nofollow\" target=\"_blank\">hosting de Aruba</"
70
+ "a> y luego migra tu web para usar el plugin."
71
 
72
  #: \admin\partials\admin-notice-purge-completed.php:4
73
  msgid "Purge completed"
74
+ msgstr "Vaciado terminado"
75
 
76
  #: \admin\partials\admin-notice-service-available.php:4
77
  msgid ""
78
+ "<strong>The HiSpeed Cache feature is not enabled.</strong> To enable it, go to "
79
+ "your domain <a href=\"%s\" rel=\"nofollow\" target=\"_blank\">control panel</a>. "
80
+ "For further details <a href=\"%s\" rel=\"nofollow\" target=\"_blank\">see our "
81
+ "guide</a>."
82
  msgstr ""
83
+ "<strong>El servicio HiSpeed ​​Cache no está activado.</strong> Para activarlo, "
84
+ "inicia sesión en el <a href=\"%s\" rel=\"nofollow\" target=\"_blank\">panel de "
85
+ "control</a> de tu dominio. Para más información <a href=\"%s\" rel=\"nofollow\" "
86
+ "target=\"_blank\">consulta nuestra guía</a>."
87
 
88
  #: \admin\partials\admin-notice-service-unavailable.php:5
89
  msgid ""
90
+ "<strong>The HiSpeed Cache feature, with which the plugin interfaces, is not "
91
+ "available on the server that hosts your website.</strong> To use HiSpeed Cache "
92
+ "and the plugin, contact <a href=\"%s\" rel=\"nofollow\" target=\"_blank"
93
+ "\">support</a>."
94
  msgstr ""
95
  "<strong>El servicio HiSpeed ​​​​Cache, con el que interactúa el plugin, no está "
96
+ "disponible en el servidor donde está alojado tu sitio web.</strong> Para usar "
97
+ "HiSpeed Cache y el plugin, ponte en contacto con nuestra <a href=\"%s\" rel="
98
+ "\"nofollow\" target=\"_blank\">asistencia</a>."
99
 
100
  #: \admin\partials\admin-notice-settings-saved.php:4
101
  msgid "Settings saved."
105
  msgid "Sorry, Aruba HiSpeed Cache requires WordPress %s or higher."
106
  msgstr "Lo siento, Aruba HiSpeed Cache necesita WordPress %s o superior."
107
 
108
+ #: \includes\ArubaHiSpeedCacheAdmin.php:130
109
  msgid "You are about to purge the entire cache. Do you want to continue?"
110
  msgstr "Estás a punto de vaciar toda la caché. ¿Quieres continuar?"
111
 
112
+ #: \includes\ArubaHiSpeedCacheAdmin.php:172
113
+ msgid "Sorry, you need to be an administrator to use Aruba HiSpeed Cache."
114
+ msgstr "Lo siento, tienes que ser administrador para usar Aruba HiSpeed Cache."
115
+
116
+ #: \includes\ArubaHiSpeedCacheAdmin.php:192
117
  msgid "Purge the page cache"
118
  msgstr "Vaciar la caché de la página"
119
 
120
+ #: \includes\ArubaHiSpeedCacheAdmin.php:196
121
  msgid "Purge Cache"
122
  msgstr "Vaciar la caché"
123
 
125
  msgid "Settings"
126
  msgstr "Ajustes"
127
 
128
+ #: \includes\ArubaHiSpeedCacheAdmin.php:267
129
+ msgid "Customer service"
130
+ msgstr "Servicio clientes"
131
+
132
+ #: \includes\ArubaHiSpeedCacheAdmin.php:427
133
+ #: \includes\ArubaHiSpeedCacheAdmin.php:428
134
  msgid "Purging options"
135
  msgstr "Opciones de vaciado"
136
 
137
+ #: \includes\ArubaHiSpeedCacheAdmin.php:435
138
  msgid "Enable automatic purge"
139
  msgstr "Activar el vaciado automático"
140
 
141
+ #: \includes\ArubaHiSpeedCacheAdmin.php:453
142
  msgid "Automatically purge entire cache when:"
143
  msgstr "Vaciar automáticamente toda la caché cuando:"
144
 
145
+ #: \includes\ArubaHiSpeedCacheAdmin.php:458
146
+ #: \includes\ArubaHiSpeedCacheAdmin.php:459
147
  msgid "Home page:"
148
  msgstr "Página de inicio:"
149
 
150
+ #: \includes\ArubaHiSpeedCacheAdmin.php:466
151
+ #: \includes\ArubaHiSpeedCacheAdmin.php:518
152
  msgid ""
153
  "a <strong>post</strong> (or page/custom post) is <strong>modified</strong> or "
154
  "<strong>added</strong>."
155
  msgstr ""
156
+ "se <strong>modifica</strong> o se <strong>añade</strong> una <strong>entrada</"
157
+ "strong> (o página/custom post)"
158
 
159
+ #: \includes\ArubaHiSpeedCacheAdmin.php:473
160
+ #: \includes\ArubaHiSpeedCacheAdmin.php:525
161
  msgid ""
162
+ "a <strong>published post</strong> (or page/custom post) is <strong>cancelled</"
163
+ "strong>."
164
  msgstr ""
165
+ "se <strong>cancela</strong> la publicación de una <strong>entrada publicada</"
166
+ "strong> (o página/contenido personalizado)."
167
 
168
+ #: \includes\ArubaHiSpeedCacheAdmin.php:480
169
+ #: \includes\ArubaHiSpeedCacheAdmin.php:481
170
  msgid "Post/page/custom post type:"
171
  msgstr "Entrada/página/tipo de contenido personalizado (cpt):"
172
 
173
+ #: \includes\ArubaHiSpeedCacheAdmin.php:488
174
  msgid "a <strong>post</strong> is <strong>published</strong>."
175
  msgstr "se <strong>publica</strong> una <strong>entrada</strong>."
176
 
177
+ #: \includes\ArubaHiSpeedCacheAdmin.php:495
178
+ #: \includes\ArubaHiSpeedCacheAdmin.php:540
179
  msgid "a <strong>comment</strong> is <strong>approved/published</strong>."
180
  msgstr "se <strong>aprueba/publica</strong> un <strong>comentario</strong>."
181
 
182
+ #: \includes\ArubaHiSpeedCacheAdmin.php:502
183
+ #: \includes\ArubaHiSpeedCacheAdmin.php:547
184
  msgid "a <strong>comment</strong> is <strong>unapproved/deleted</strong>."
185
  msgstr "se <strong>rechaza/borra</strong> un <strong>comentario</strong>."
186
 
187
+ #: \includes\ArubaHiSpeedCacheAdmin.php:509
188
+ #: \includes\ArubaHiSpeedCacheAdmin.php:511
189
  msgid "Archives:"
190
  msgstr "Archivos:"
191
 
192
+ #: \includes\ArubaHiSpeedCacheAdmin.php:510
193
  msgid "(date, category, tag, author, custom taxonomies)"
194
  msgstr "(fecha, categoría, etiqueta, autor, taxonomías personalizadas)"
195
 
196
+ #: \includes\ArubaHiSpeedCacheAdmin.php:532
197
+ #: \includes\ArubaHiSpeedCacheAdmin.php:533
198
  msgid "Comments:"
199
  msgstr "Comentarios:"
200
 
201
+ #: \includes\ArubaHiSpeedCacheWpPurger.php:259
 
 
 
 
202
  msgid "An error has occurred."
203
  msgstr "Ha ocurrido un error."
204
 
205
+ #: \includes\ArubaHiSpeedCacheWpPurger.php:260
206
  msgid "Sorry, you do not have the necessary privileges to edit these options."
207
+ msgstr "Lo siento, no tienes los permisos necesarios para editar estas opciones."
208
 
209
+ #: \includes\ArubaHiSpeedCacheWpPurger.php:265
210
  msgid "Contact customer service"
211
  msgstr "Contactar con el servicio al cliente"
212
 
213
+ #~ msgid ""
214
+ #~ "https://www.aruba.it/magazine/hosting/siti-piu-veloci-con-hispeed-cache.aspx"
215
+ #~ msgstr ""
216
+ #~ "https://www.aruba.it/magazine/hosting/siti-piu-veloci-con-hispeed-cache.aspx"
217
+
218
  #~ msgid "Purges the cache whenever a post is edited or published."
219
  #~ msgstr "Borrar la caché cada vez que se publique o modifique un artículo."
languages/aruba-hispeed-cache-it_IT.mo CHANGED
Binary file
languages/aruba-hispeed-cache-it_IT.po CHANGED
@@ -5,8 +5,8 @@ msgstr ""
5
  "Project-Id-Version: Aruba HiSpeed Cache 0.0.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/aruba-hispeed-"
7
  "cache\n"
8
- "POT-Creation-Date: 2022-03-23T10:34:24+01:00\n"
9
- "PO-Revision-Date: 2022-03-23 11:09+0100\n"
10
  "Last-Translator: Aruba Developer <hispeedcache.developer@aruba.it>\n"
11
  "Language-Team: Aruba Developer <hispeedcache.developer@aruba.it>\n"
12
  "Language: it_IT\n"
@@ -22,18 +22,17 @@ msgstr ""
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
  #. Plugin Name of the plugin
25
- #: \includes\ArubaHiSpeedCacheAdmin.php:152
26
- #: \includes\ArubaHiSpeedCacheAdmin.php:153
27
- #: \includes\ArubaHiSpeedCacheAdmin.php:161
28
- #: \includes\ArubaHiSpeedCacheAdmin.php:162
29
  msgid "Aruba HiSpeed Cache"
30
  msgstr "Aruba HiSpeed Cache"
31
 
32
  #. Plugin URI of the plugin
33
- msgid ""
34
- "https://www.aruba.it/magazine/hosting/siti-piu-veloci-con-hispeed-cache.aspx"
35
- msgstr ""
36
- "https://www.aruba.it/magazine/hosting/siti-piu-veloci-con-hispeed-cache.aspx"
37
 
38
  #. Description of the plugin
39
  msgid ""
@@ -55,11 +54,11 @@ msgstr "https://www.aruba.it/"
55
  msgid "Aruba HiSpeed Cache Settings "
56
  msgstr "Impostazioni Aruba HiSpeed Cache "
57
 
58
- #: \admin\partials\admin-general-options.php:69
59
  msgid "Save changes"
60
  msgstr "Salva modifiche"
61
 
62
- #: \admin\partials\admin-general-options.php:74
63
  msgid "Purge entire cache"
64
  msgstr "Cancella cache"
65
 
@@ -113,15 +112,20 @@ msgstr ""
113
  "Ci dispiace, ma Aruba HiSpeed Cache richiede WordPress %s o una versione "
114
  "superiore."
115
 
116
- #: \includes\ArubaHiSpeedCacheAdmin.php:137
117
  msgid "You are about to purge the entire cache. Do you want to continue?"
118
  msgstr "Si sta per cancellare completamente la cache. Vuoi procedere?"
119
 
120
- #: \includes\ArubaHiSpeedCacheAdmin.php:193
 
 
 
 
 
121
  msgid "Purge the page cache"
122
  msgstr "Cancella la cache della pagina"
123
 
124
- #: \includes\ArubaHiSpeedCacheAdmin.php:197
125
  msgid "Purge Cache"
126
  msgstr "Cancella cache"
127
 
@@ -129,26 +133,30 @@ msgstr "Cancella cache"
129
  msgid "Settings"
130
  msgstr "Impostazioni"
131
 
132
- #: \includes\ArubaHiSpeedCacheAdmin.php:380
133
- #: \includes\ArubaHiSpeedCacheAdmin.php:381
 
 
 
 
134
  msgid "Purging options"
135
  msgstr "Opzioni di pulizia della cache"
136
 
137
- #: \includes\ArubaHiSpeedCacheAdmin.php:388
138
  msgid "Enable automatic purge"
139
  msgstr "Attiva la pulizia automatica della cache"
140
 
141
- #: \includes\ArubaHiSpeedCacheAdmin.php:406
142
  msgid "Automatically purge entire cache when:"
143
  msgstr "Cancella automaticamente tutta la cache quando:"
144
 
145
- #: \includes\ArubaHiSpeedCacheAdmin.php:411
146
- #: \includes\ArubaHiSpeedCacheAdmin.php:412
147
  msgid "Home page:"
148
  msgstr "Home page:"
149
 
150
- #: \includes\ArubaHiSpeedCacheAdmin.php:419
151
- #: \includes\ArubaHiSpeedCacheAdmin.php:471
152
  msgid ""
153
  "a <strong>post</strong> (or page/custom post) is <strong>modified</strong> "
154
  "or <strong>added</strong>."
@@ -156,8 +164,8 @@ msgstr ""
156
  "un <strong>articolo</strong> (o pagina/contenuto personalizzato) è "
157
  "<strong>modificato</strong> o <strong>aggiunto</strong>."
158
 
159
- #: \includes\ArubaHiSpeedCacheAdmin.php:426
160
- #: \includes\ArubaHiSpeedCacheAdmin.php:478
161
  msgid ""
162
  "a <strong>published post</strong> (or page/custom post) is "
163
  "<strong>cancelled</strong>."
@@ -165,59 +173,61 @@ msgstr ""
165
  "un <strong>articolo pubblicato</strong> (o pagina/contenuto personalizzato) "
166
  "è <strong>cancellato</strong>."
167
 
168
- #: \includes\ArubaHiSpeedCacheAdmin.php:433
169
- #: \includes\ArubaHiSpeedCacheAdmin.php:434
170
  msgid "Post/page/custom post type:"
171
  msgstr "Articolo/pagina/contenuto personalizzato:"
172
 
173
- #: \includes\ArubaHiSpeedCacheAdmin.php:441
174
  msgid "a <strong>post</strong> is <strong>published</strong>."
175
  msgstr "un <strong>articolo</strong> è <strong>pubblicato</strong>."
176
 
177
- #: \includes\ArubaHiSpeedCacheAdmin.php:448
178
- #: \includes\ArubaHiSpeedCacheAdmin.php:493
179
  msgid "a <strong>comment</strong> is <strong>approved/published</strong>."
180
  msgstr "un <strong>commento</strong> è <strong>approvato/pubblicato</strong>."
181
 
182
- #: \includes\ArubaHiSpeedCacheAdmin.php:455
183
- #: \includes\ArubaHiSpeedCacheAdmin.php:500
184
  msgid "a <strong>comment</strong> is <strong>unapproved/deleted</strong>."
185
  msgstr ""
186
  "un <strong>commento</strong> è <strong>non approvato/cancellato</strong>."
187
 
188
- #: \includes\ArubaHiSpeedCacheAdmin.php:462
189
- #: \includes\ArubaHiSpeedCacheAdmin.php:464
190
  msgid "Archives:"
191
  msgstr "Archivio:"
192
 
193
- #: \includes\ArubaHiSpeedCacheAdmin.php:463
194
  msgid "(date, category, tag, author, custom taxonomies)"
195
  msgstr "(data, categoria, tag, autore, tassonomia custom)"
196
 
197
- #: \includes\ArubaHiSpeedCacheAdmin.php:485
198
- #: \includes\ArubaHiSpeedCacheAdmin.php:486
199
  msgid "Comments:"
200
  msgstr "Commenti:"
201
 
202
- #: \includes\ArubaHiSpeedCacheConfigs.php:189
203
- msgid "Sorry, you need to be an administrator to use Aruba HiSpeed Cache."
204
- msgstr ""
205
- "Ci dispiace, ma devi essere un amministratore per usare Aruba HiSpeed Cache."
206
-
207
- #: \includes\ArubaHiSpeedCacheWpPurger.php:260
208
  msgid "An error has occurred."
209
  msgstr "Si è verificato un errore."
210
 
211
- #: \includes\ArubaHiSpeedCacheWpPurger.php:261
212
  msgid "Sorry, you do not have the necessary privileges to edit these options."
213
  msgstr ""
214
  "Ci dispiace, ma non disponi dei permessi necessari per modificare queste "
215
  "opzioni."
216
 
217
- #: \includes\ArubaHiSpeedCacheWpPurger.php:266
218
  msgid "Contact customer service"
219
  msgstr "Contatta il nostro servizio clienti"
220
 
 
 
 
 
 
 
 
221
  #~ msgid "Purges the cache whenever a post is edited or published."
222
  #~ msgstr ""
223
  #~ "Cancella la cache ogni volta che un articolo è modificato o pubblicato."
5
  "Project-Id-Version: Aruba HiSpeed Cache 0.0.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/aruba-hispeed-"
7
  "cache\n"
8
+ "POT-Creation-Date: 2022-05-27T16:49:50+02:00\n"
9
+ "PO-Revision-Date: 2022-05-27 16:53+0200\n"
10
  "Last-Translator: Aruba Developer <hispeedcache.developer@aruba.it>\n"
11
  "Language-Team: Aruba Developer <hispeedcache.developer@aruba.it>\n"
12
  "Language: it_IT\n"
22
  "X-Poedit-SearchPath-0: .\n"
23
 
24
  #. Plugin Name of the plugin
25
+ #: \includes\ArubaHiSpeedCacheAdmin.php:145
26
+ #: \includes\ArubaHiSpeedCacheAdmin.php:146
27
+ #: \includes\ArubaHiSpeedCacheAdmin.php:154
28
+ #: \includes\ArubaHiSpeedCacheAdmin.php:155
29
  msgid "Aruba HiSpeed Cache"
30
  msgstr "Aruba HiSpeed Cache"
31
 
32
  #. Plugin URI of the plugin
33
+ #| msgid "https://www.aruba.it/"
34
+ msgid "https://hosting.aruba.it/wordpress.aspx"
35
+ msgstr "https://hosting.aruba.it/wordpress.aspx"
 
36
 
37
  #. Description of the plugin
38
  msgid ""
54
  msgid "Aruba HiSpeed Cache Settings "
55
  msgstr "Impostazioni Aruba HiSpeed Cache "
56
 
57
+ #: \admin\partials\admin-general-options.php:74
58
  msgid "Save changes"
59
  msgstr "Salva modifiche"
60
 
61
+ #: \admin\partials\admin-general-options.php:79
62
  msgid "Purge entire cache"
63
  msgstr "Cancella cache"
64
 
112
  "Ci dispiace, ma Aruba HiSpeed Cache richiede WordPress %s o una versione "
113
  "superiore."
114
 
115
+ #: \includes\ArubaHiSpeedCacheAdmin.php:130
116
  msgid "You are about to purge the entire cache. Do you want to continue?"
117
  msgstr "Si sta per cancellare completamente la cache. Vuoi procedere?"
118
 
119
+ #: \includes\ArubaHiSpeedCacheAdmin.php:172
120
+ msgid "Sorry, you need to be an administrator to use Aruba HiSpeed Cache."
121
+ msgstr ""
122
+ "Ci dispiace, ma devi essere un amministratore per usare Aruba HiSpeed Cache."
123
+
124
+ #: \includes\ArubaHiSpeedCacheAdmin.php:192
125
  msgid "Purge the page cache"
126
  msgstr "Cancella la cache della pagina"
127
 
128
+ #: \includes\ArubaHiSpeedCacheAdmin.php:196
129
  msgid "Purge Cache"
130
  msgstr "Cancella cache"
131
 
133
  msgid "Settings"
134
  msgstr "Impostazioni"
135
 
136
+ #: \includes\ArubaHiSpeedCacheAdmin.php:267
137
+ msgid "Customer service"
138
+ msgstr "Assistenza clienti"
139
+
140
+ #: \includes\ArubaHiSpeedCacheAdmin.php:427
141
+ #: \includes\ArubaHiSpeedCacheAdmin.php:428
142
  msgid "Purging options"
143
  msgstr "Opzioni di pulizia della cache"
144
 
145
+ #: \includes\ArubaHiSpeedCacheAdmin.php:435
146
  msgid "Enable automatic purge"
147
  msgstr "Attiva la pulizia automatica della cache"
148
 
149
+ #: \includes\ArubaHiSpeedCacheAdmin.php:453
150
  msgid "Automatically purge entire cache when:"
151
  msgstr "Cancella automaticamente tutta la cache quando:"
152
 
153
+ #: \includes\ArubaHiSpeedCacheAdmin.php:458
154
+ #: \includes\ArubaHiSpeedCacheAdmin.php:459
155
  msgid "Home page:"
156
  msgstr "Home page:"
157
 
158
+ #: \includes\ArubaHiSpeedCacheAdmin.php:466
159
+ #: \includes\ArubaHiSpeedCacheAdmin.php:518
160
  msgid ""
161
  "a <strong>post</strong> (or page/custom post) is <strong>modified</strong> "
162
  "or <strong>added</strong>."
164
  "un <strong>articolo</strong> (o pagina/contenuto personalizzato) è "
165
  "<strong>modificato</strong> o <strong>aggiunto</strong>."
166
 
167
+ #: \includes\ArubaHiSpeedCacheAdmin.php:473
168
+ #: \includes\ArubaHiSpeedCacheAdmin.php:525
169
  msgid ""
170
  "a <strong>published post</strong> (or page/custom post) is "
171
  "<strong>cancelled</strong>."
173
  "un <strong>articolo pubblicato</strong> (o pagina/contenuto personalizzato) "
174
  "è <strong>cancellato</strong>."
175
 
176
+ #: \includes\ArubaHiSpeedCacheAdmin.php:480
177
+ #: \includes\ArubaHiSpeedCacheAdmin.php:481
178
  msgid "Post/page/custom post type:"
179
  msgstr "Articolo/pagina/contenuto personalizzato:"
180
 
181
+ #: \includes\ArubaHiSpeedCacheAdmin.php:488
182
  msgid "a <strong>post</strong> is <strong>published</strong>."
183
  msgstr "un <strong>articolo</strong> è <strong>pubblicato</strong>."
184
 
185
+ #: \includes\ArubaHiSpeedCacheAdmin.php:495
186
+ #: \includes\ArubaHiSpeedCacheAdmin.php:540
187
  msgid "a <strong>comment</strong> is <strong>approved/published</strong>."
188
  msgstr "un <strong>commento</strong> è <strong>approvato/pubblicato</strong>."
189
 
190
+ #: \includes\ArubaHiSpeedCacheAdmin.php:502
191
+ #: \includes\ArubaHiSpeedCacheAdmin.php:547
192
  msgid "a <strong>comment</strong> is <strong>unapproved/deleted</strong>."
193
  msgstr ""
194
  "un <strong>commento</strong> è <strong>non approvato/cancellato</strong>."
195
 
196
+ #: \includes\ArubaHiSpeedCacheAdmin.php:509
197
+ #: \includes\ArubaHiSpeedCacheAdmin.php:511
198
  msgid "Archives:"
199
  msgstr "Archivio:"
200
 
201
+ #: \includes\ArubaHiSpeedCacheAdmin.php:510
202
  msgid "(date, category, tag, author, custom taxonomies)"
203
  msgstr "(data, categoria, tag, autore, tassonomia custom)"
204
 
205
+ #: \includes\ArubaHiSpeedCacheAdmin.php:532
206
+ #: \includes\ArubaHiSpeedCacheAdmin.php:533
207
  msgid "Comments:"
208
  msgstr "Commenti:"
209
 
210
+ #: \includes\ArubaHiSpeedCacheWpPurger.php:259
 
 
 
 
 
211
  msgid "An error has occurred."
212
  msgstr "Si è verificato un errore."
213
 
214
+ #: \includes\ArubaHiSpeedCacheWpPurger.php:260
215
  msgid "Sorry, you do not have the necessary privileges to edit these options."
216
  msgstr ""
217
  "Ci dispiace, ma non disponi dei permessi necessari per modificare queste "
218
  "opzioni."
219
 
220
+ #: \includes\ArubaHiSpeedCacheWpPurger.php:265
221
  msgid "Contact customer service"
222
  msgstr "Contatta il nostro servizio clienti"
223
 
224
+ #~ msgid ""
225
+ #~ "https://www.aruba.it/magazine/hosting/siti-piu-veloci-con-hispeed-cache."
226
+ #~ "aspx"
227
+ #~ msgstr ""
228
+ #~ "https://www.aruba.it/magazine/hosting/siti-piu-veloci-con-hispeed-cache."
229
+ #~ "aspx"
230
+
231
  #~ msgid "Purges the cache whenever a post is edited or published."
232
  #~ msgstr ""
233
  #~ "Cancella la cache ogni volta che un articolo è modificato o pubblicato."
languages/aruba-hispeed-cache.pot CHANGED
@@ -2,23 +2,23 @@
2
  # This file is distributed under the same license as the Aruba HiSpeed Cache plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Aruba HiSpeed Cache 1.1.1\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/aruba-hispeed-cache\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\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-05-02T16:44:11+02:00\n"
13
- "PO-Revision-Date: 2022-05-02T16:44:11+02:00\n"
14
  "X-Generator: WP-CLI 2.0.1\n"
15
  "X-Domain: aruba-hispeed-cache\n"
16
 
17
  #. Plugin Name of the plugin
18
- #: \includes\ArubaHiSpeedCacheAdmin.php:152
19
- #: \includes\ArubaHiSpeedCacheAdmin.php:153
20
- #: \includes\ArubaHiSpeedCacheAdmin.php:161
21
- #: \includes\ArubaHiSpeedCacheAdmin.php:162
22
  msgid "Aruba HiSpeed Cache"
23
  msgstr ""
24
 
@@ -74,84 +74,88 @@ msgstr ""
74
  msgid "Sorry, Aruba HiSpeed Cache requires WordPress %s or higher."
75
  msgstr ""
76
 
77
- #: \includes\ArubaHiSpeedCacheAdmin.php:137
78
  msgid "You are about to purge the entire cache. Do you want to continue?"
79
  msgstr ""
80
 
81
- #: \includes\ArubaHiSpeedCacheAdmin.php:179
82
  msgid "Sorry, you need to be an administrator to use Aruba HiSpeed Cache."
83
  msgstr ""
84
 
85
- #: \includes\ArubaHiSpeedCacheAdmin.php:199
86
  msgid "Purge the page cache"
87
  msgstr ""
88
 
89
- #: \includes\ArubaHiSpeedCacheAdmin.php:203
90
  msgid "Purge Cache"
91
  msgstr ""
92
 
93
- #: \includes\ArubaHiSpeedCacheAdmin.php:268
94
  msgid "Settings"
95
  msgstr ""
96
 
97
- #: \includes\ArubaHiSpeedCacheAdmin.php:420
98
- #: \includes\ArubaHiSpeedCacheAdmin.php:421
99
- msgid "Purging options"
100
  msgstr ""
101
 
 
102
  #: \includes\ArubaHiSpeedCacheAdmin.php:428
103
- msgid "Enable automatic purge"
104
  msgstr ""
105
 
106
- #: \includes\ArubaHiSpeedCacheAdmin.php:446
107
- msgid "Automatically purge entire cache when:"
108
  msgstr ""
109
 
110
- #: \includes\ArubaHiSpeedCacheAdmin.php:451
111
- #: \includes\ArubaHiSpeedCacheAdmin.php:452
112
- msgid "Home page:"
113
  msgstr ""
114
 
 
115
  #: \includes\ArubaHiSpeedCacheAdmin.php:459
116
- #: \includes\ArubaHiSpeedCacheAdmin.php:511
117
- msgid "a <strong>post</strong> (or page/custom post) is <strong>modified</strong> or <strong>added</strong>."
118
  msgstr ""
119
 
120
  #: \includes\ArubaHiSpeedCacheAdmin.php:466
121
  #: \includes\ArubaHiSpeedCacheAdmin.php:518
122
- msgid "a <strong>published post</strong> (or page/custom post) is <strong>cancelled</strong>."
123
  msgstr ""
124
 
125
  #: \includes\ArubaHiSpeedCacheAdmin.php:473
126
- #: \includes\ArubaHiSpeedCacheAdmin.php:474
127
- msgid "Post/page/custom post type:"
128
  msgstr ""
129
 
 
130
  #: \includes\ArubaHiSpeedCacheAdmin.php:481
131
- msgid "a <strong>post</strong> is <strong>published</strong>."
132
  msgstr ""
133
 
134
  #: \includes\ArubaHiSpeedCacheAdmin.php:488
135
- #: \includes\ArubaHiSpeedCacheAdmin.php:533
136
- msgid "a <strong>comment</strong> is <strong>approved/published</strong>."
137
  msgstr ""
138
 
139
  #: \includes\ArubaHiSpeedCacheAdmin.php:495
140
  #: \includes\ArubaHiSpeedCacheAdmin.php:540
141
- msgid "a <strong>comment</strong> is <strong>unapproved/deleted</strong>."
142
  msgstr ""
143
 
144
  #: \includes\ArubaHiSpeedCacheAdmin.php:502
145
- #: \includes\ArubaHiSpeedCacheAdmin.php:504
 
 
 
 
 
146
  msgid "Archives:"
147
  msgstr ""
148
 
149
- #: \includes\ArubaHiSpeedCacheAdmin.php:503
150
  msgid "(date, category, tag, author, custom taxonomies)"
151
  msgstr ""
152
 
153
- #: \includes\ArubaHiSpeedCacheAdmin.php:525
154
- #: \includes\ArubaHiSpeedCacheAdmin.php:526
155
  msgid "Comments:"
156
  msgstr ""
157
 
2
  # This file is distributed under the same license as the Aruba HiSpeed Cache plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Aruba HiSpeed Cache 1.1.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/aruba-hispeed-cache\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\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-05-27T16:49:50+02:00\n"
13
+ "PO-Revision-Date: 2022-05-27T16:49:50+02:00\n"
14
  "X-Generator: WP-CLI 2.0.1\n"
15
  "X-Domain: aruba-hispeed-cache\n"
16
 
17
  #. Plugin Name of the plugin
18
+ #: \includes\ArubaHiSpeedCacheAdmin.php:145
19
+ #: \includes\ArubaHiSpeedCacheAdmin.php:146
20
+ #: \includes\ArubaHiSpeedCacheAdmin.php:154
21
+ #: \includes\ArubaHiSpeedCacheAdmin.php:155
22
  msgid "Aruba HiSpeed Cache"
23
  msgstr ""
24
 
74
  msgid "Sorry, Aruba HiSpeed Cache requires WordPress %s or higher."
75
  msgstr ""
76
 
77
+ #: \includes\ArubaHiSpeedCacheAdmin.php:130
78
  msgid "You are about to purge the entire cache. Do you want to continue?"
79
  msgstr ""
80
 
81
+ #: \includes\ArubaHiSpeedCacheAdmin.php:172
82
  msgid "Sorry, you need to be an administrator to use Aruba HiSpeed Cache."
83
  msgstr ""
84
 
85
+ #: \includes\ArubaHiSpeedCacheAdmin.php:192
86
  msgid "Purge the page cache"
87
  msgstr ""
88
 
89
+ #: \includes\ArubaHiSpeedCacheAdmin.php:196
90
  msgid "Purge Cache"
91
  msgstr ""
92
 
93
+ #: \includes\ArubaHiSpeedCacheAdmin.php:261
94
  msgid "Settings"
95
  msgstr ""
96
 
97
+ #: \includes\ArubaHiSpeedCacheAdmin.php:267
98
+ msgid "Customer service"
 
99
  msgstr ""
100
 
101
+ #: \includes\ArubaHiSpeedCacheAdmin.php:427
102
  #: \includes\ArubaHiSpeedCacheAdmin.php:428
103
+ msgid "Purging options"
104
  msgstr ""
105
 
106
+ #: \includes\ArubaHiSpeedCacheAdmin.php:435
107
+ msgid "Enable automatic purge"
108
  msgstr ""
109
 
110
+ #: \includes\ArubaHiSpeedCacheAdmin.php:453
111
+ msgid "Automatically purge entire cache when:"
 
112
  msgstr ""
113
 
114
+ #: \includes\ArubaHiSpeedCacheAdmin.php:458
115
  #: \includes\ArubaHiSpeedCacheAdmin.php:459
116
+ msgid "Home page:"
 
117
  msgstr ""
118
 
119
  #: \includes\ArubaHiSpeedCacheAdmin.php:466
120
  #: \includes\ArubaHiSpeedCacheAdmin.php:518
121
+ msgid "a <strong>post</strong> (or page/custom post) is <strong>modified</strong> or <strong>added</strong>."
122
  msgstr ""
123
 
124
  #: \includes\ArubaHiSpeedCacheAdmin.php:473
125
+ #: \includes\ArubaHiSpeedCacheAdmin.php:525
126
+ msgid "a <strong>published post</strong> (or page/custom post) is <strong>cancelled</strong>."
127
  msgstr ""
128
 
129
+ #: \includes\ArubaHiSpeedCacheAdmin.php:480
130
  #: \includes\ArubaHiSpeedCacheAdmin.php:481
131
+ msgid "Post/page/custom post type:"
132
  msgstr ""
133
 
134
  #: \includes\ArubaHiSpeedCacheAdmin.php:488
135
+ msgid "a <strong>post</strong> is <strong>published</strong>."
 
136
  msgstr ""
137
 
138
  #: \includes\ArubaHiSpeedCacheAdmin.php:495
139
  #: \includes\ArubaHiSpeedCacheAdmin.php:540
140
+ msgid "a <strong>comment</strong> is <strong>approved/published</strong>."
141
  msgstr ""
142
 
143
  #: \includes\ArubaHiSpeedCacheAdmin.php:502
144
+ #: \includes\ArubaHiSpeedCacheAdmin.php:547
145
+ msgid "a <strong>comment</strong> is <strong>unapproved/deleted</strong>."
146
+ msgstr ""
147
+
148
+ #: \includes\ArubaHiSpeedCacheAdmin.php:509
149
+ #: \includes\ArubaHiSpeedCacheAdmin.php:511
150
  msgid "Archives:"
151
  msgstr ""
152
 
153
+ #: \includes\ArubaHiSpeedCacheAdmin.php:510
154
  msgid "(date, category, tag, author, custom taxonomies)"
155
  msgstr ""
156
 
157
+ #: \includes\ArubaHiSpeedCacheAdmin.php:532
158
+ #: \includes\ArubaHiSpeedCacheAdmin.php:533
159
  msgid "Comments:"
160
  msgstr ""
161
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: HiSpeed Cache, Aruba, cache, caching, performance, pagespeed, optimize, WP
5
  Requires at least: 5.4
6
  Tested up to: 6.0
7
  Requires PHP: 5.6
8
- Stable tag: 1.1.1
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -70,8 +70,13 @@ wordpress_no_cache, comment_author, wordpress_logged_in_, yith_wcwl_products, wp
70
 
71
  == Changelog ==
72
 
 
 
 
 
 
73
  = 1.1.1 =
74
- * Problem resolution. Display "service can be activated" message when cache is purged.;
75
  * Update Plugin URI value;
76
  * Problem resolution. WP_CLI Activation and Deactivation;
77
  * Additional option to view the check request information by visiting the page dominio.tld/wp-admin/options-general.php?page=aruba-hispeed-cache&debug=1
@@ -87,8 +92,6 @@ wordpress_no_cache, comment_author, wordpress_logged_in_, yith_wcwl_products, wp
87
 
88
  == Upgrade Notice ==
89
 
90
- = 1.1.1 =
91
- * Problem resolution. Display "service can be activated" message when cache is purged.;
92
- * Update Plugin URI value;
93
- * Problem resolution. WP_CLI Activation and Deactivation;
94
- * Additional option to view the check request information by visiting the page dominio.tld/wp-admin/options-general.php?page=aruba-hispeed-cache&debug=1
5
  Requires at least: 5.4
6
  Tested up to: 6.0
7
  Requires PHP: 5.6
8
+ Stable tag: 1.1.2
9
  License: GPLv2 or later
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
70
 
71
  == Changelog ==
72
 
73
+ = 1.1.2 =
74
+ * Problem regarding check resolved. In the event of a false positive during activation, go to the plugin page (../wp-admin/options-general.php?page=aruba-hispeed-cache) to repeat check.
75
+ * Various bug corrections and other improvements.
76
+
77
+
78
  = 1.1.1 =
79
+ * Problem resolution. Display "service can be activated" message when cache is purged.;
80
  * Update Plugin URI value;
81
  * Problem resolution. WP_CLI Activation and Deactivation;
82
  * Additional option to view the check request information by visiting the page dominio.tld/wp-admin/options-general.php?page=aruba-hispeed-cache&debug=1
92
 
93
  == Upgrade Notice ==
94
 
95
+ = 1.1.2 =
96
+ * Problem regarding check resolved. In the event of a false positive during activation, go to the plugin page (../wp-admin/options-general.php?page=aruba-hispeed-cache) to repeat check.
97
+ * Various bug corrections and other improvements.