SG Optimizer - Version 5.0.10

Version Description

Download this release

Release Info

Developer sstoqnov
Plugin Icon 128x128 SG Optimizer
Version 5.0.10
Comparing to
See all releases

Code changes from version 5.0.9 to 5.0.10

assets/css/main.css CHANGED
@@ -737,3 +737,6 @@ html {
737
 
738
  .toplevel_page_sg-cachepress .notice {
739
  display: none !important; }
 
 
 
737
 
738
  .toplevel_page_sg-cachepress .notice {
739
  display: none !important; }
740
+
741
+ .icl_als_iclflag {
742
+ display: inline-block; }
assets/css/main.scss CHANGED
@@ -61,3 +61,7 @@ html {
61
  .toplevel_page_sg-cachepress .notice {
62
  display: none !important;
63
  }
 
 
 
 
61
  .toplevel_page_sg-cachepress .notice {
62
  display: none !important;
63
  }
64
+
65
+ .icl_als_iclflag {
66
+ display: inline-block;
67
+ }
core/Admin/Admin.php CHANGED
@@ -37,7 +37,7 @@ class Admin {
37
 
38
  if ( ! $this->is_multisite_without_permissions() ) {
39
  add_action( 'admin_menu', array( $this, 'add_plugin_admin_menu' ) );
40
- add_action( 'admin_notices', array( $this, 'memcache_notice' ) );
41
  add_action( 'wp_ajax_dismiss_memcache_notice', array( $this, 'hide_memcache_notice' ) );
42
  add_action( 'wp_ajax_dismiss_blocking_plugins_notice', array( $this, 'hide_blocking_plugins_notice' ) );
43
  add_action( 'wp_ajax_dismiss_cache_plugins_notice', array( $this, 'hide_cache_plugins_notice' ) );
@@ -143,7 +143,7 @@ class Admin {
143
 
144
  $data = array(
145
  'rest_base' => untrailingslashit( get_rest_url( null, Rest::REST_NAMESPACE ) ),
146
- 'home_url' => home_url( '/' ),
147
  'php_version' => Htaccess::get_instance()->get_php_version(),
148
  'is_cron_disabled' => Helper::is_cron_disabled(),
149
  'modules' => $this->modules->get_active_modules(),
37
 
38
  if ( ! $this->is_multisite_without_permissions() ) {
39
  add_action( 'admin_menu', array( $this, 'add_plugin_admin_menu' ) );
40
+ // add_action( 'admin_notices', array( $this, 'memcache_notice' ) );
41
  add_action( 'wp_ajax_dismiss_memcache_notice', array( $this, 'hide_memcache_notice' ) );
42
  add_action( 'wp_ajax_dismiss_blocking_plugins_notice', array( $this, 'hide_blocking_plugins_notice' ) );
43
  add_action( 'wp_ajax_dismiss_cache_plugins_notice', array( $this, 'hide_cache_plugins_notice' ) );
143
 
144
  $data = array(
145
  'rest_base' => untrailingslashit( get_rest_url( null, Rest::REST_NAMESPACE ) ),
146
+ 'home_url' => Helper::get_home_url(),
147
  'php_version' => Htaccess::get_instance()->get_php_version(),
148
  'is_cron_disabled' => Helper::is_cron_disabled(),
149
  'modules' => $this->modules->get_active_modules(),
core/Helper/Helper.php CHANGED
@@ -229,4 +229,21 @@ class Helper {
229
  // Default error handler otherwise.
230
  return false;
231
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
232
  }
229
  // Default error handler otherwise.
230
  return false;
231
  }
232
+
233
+ /**
234
+ * Some plugins like WPML for example are overwriting the home url.
235
+ *
236
+ * @since 5.0.10
237
+ *
238
+ * @return string The real home url.
239
+ */
240
+ public static function get_home_url() {
241
+ $url = get_option( 'home' );
242
+
243
+ $scheme = is_ssl() ? 'https' : parse_url( $url, PHP_URL_SCHEME );
244
+
245
+ $url = set_url_scheme( $url, $scheme );
246
+
247
+ return trailingslashit( $url );
248
+ }
249
  }
core/Install_Service/Install_5_0_10.php ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace SiteGround_Optimizer\Install_Service;
3
+
4
+ use SiteGround_Optimizer\Memcache\Memcache;
5
+ use SiteGround_Optimizer\Options\Options;
6
+
7
+ class Install_5_0_10 extends Install {
8
+
9
+ /**
10
+ * The default install version. Overridden by the installation packages.
11
+ *
12
+ * @since 5.0.10
13
+ *
14
+ * @access protected
15
+ *
16
+ * @var string $version The install version.
17
+ */
18
+ protected static $version = '5.0.10';
19
+
20
+ /**
21
+ * Run the install procedure.
22
+ *
23
+ * @since 5.0.10
24
+ */
25
+ public function install() {
26
+ $exclude_list = get_option( 'siteground_optimizer_excluded_urls', array() );
27
+
28
+ // Bail ifthe exclude list is empty.
29
+ if ( empty( $exclude_list ) ) {
30
+ return;
31
+ }
32
+
33
+ // Add slash before each url part.
34
+ $new_exclude_list = array_map(
35
+ function( $item ) {
36
+ if ( substr( $item, 0, 1 ) !== '/' ) {
37
+ $item = '/' . $item;
38
+ }
39
+ return $item;
40
+ }, $exclude_list
41
+ );
42
+
43
+ // Update the exclude list.
44
+ update_option( 'siteground_optimizer_excluded_urls', $new_exclude_list );
45
+
46
+ }
47
+
48
+ }
core/Install_Service/Install_Service.php CHANGED
@@ -7,6 +7,7 @@ use SiteGround_Optimizer\Install_Service\Install_5_0_5;
7
  use SiteGround_Optimizer\Install_Service\Install_5_0_6;
8
  use SiteGround_Optimizer\Install_Service\Install_5_0_8;
9
  use SiteGround_Optimizer\Install_Service\Install_5_0_9;
 
10
  use SiteGround_Optimizer\Supercacher\Supercacher;
11
 
12
  /**
@@ -51,6 +52,7 @@ class Install_Service {
51
  new Install_5_0_6(),
52
  new Install_5_0_8(),
53
  new Install_5_0_9(),
 
54
  );
55
 
56
  $version = null;
7
  use SiteGround_Optimizer\Install_Service\Install_5_0_6;
8
  use SiteGround_Optimizer\Install_Service\Install_5_0_8;
9
  use SiteGround_Optimizer\Install_Service\Install_5_0_9;
10
+ use SiteGround_Optimizer\Install_Service\Install_5_0_10;
11
  use SiteGround_Optimizer\Supercacher\Supercacher;
12
 
13
  /**
52
  new Install_5_0_6(),
53
  new Install_5_0_8(),
54
  new Install_5_0_9(),
55
+ new Install_5_0_10(),
56
  );
57
 
58
  $version = null;
core/Lazy_Load_Images/Lazy_Load_Images.php CHANGED
@@ -94,20 +94,27 @@ class Lazy_Load_Images {
94
  public function filter_html( $content ) {
95
 
96
  // Bail if it's feed or if the content is empty.
97
- if ( is_feed() || empty( $content ) ) {
 
 
 
 
 
 
 
98
  return $content;
99
  }
100
 
101
  // Search patterns.
102
  $patterns = array(
103
- '/(?<!noscript\>)(<img([\w\W]+?)>)/i',
104
  '/(?<!noscript\>)(<img.*?)(src)=["|\']((?!data).*?)["|\']/i',
105
  '/(?<!noscript\>)(<img.*?)((srcset)=["|\'](.*?)["|\'])/i',
106
  );
107
 
108
  // Replacements.
109
  $replacements = array(
110
- '$1<noscript>$1</noscript>',
111
  '$1src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" data-$2="$3"',
112
  '$1data-$3="$4"',
113
  );
94
  public function filter_html( $content ) {
95
 
96
  // Bail if it's feed or if the content is empty.
97
+ if (
98
+ is_feed() ||
99
+ empty( $content ) ||
100
+ is_admin() ||
101
+ ( function_exists( 'is_amp_endpoint' ) && is_amp_endpoint() ) ||
102
+ method_exists( 'FLBuilderModel', 'is_builder_enabled' ) ||
103
+ wp_is_mobile()
104
+ ) {
105
  return $content;
106
  }
107
 
108
  // Search patterns.
109
  $patterns = array(
110
+ '/(?<!noscript\>)((<img.*?src=["|\'].*?["|\']).*?(\/?>))/i',
111
  '/(?<!noscript\>)(<img.*?)(src)=["|\']((?!data).*?)["|\']/i',
112
  '/(?<!noscript\>)(<img.*?)((srcset)=["|\'](.*?)["|\'])/i',
113
  );
114
 
115
  // Replacements.
116
  $replacements = array(
117
+ '$1<noscript>$2$3</noscript>',
118
  '$1src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" data-$2="$3"',
119
  '$1data-$3="$4"',
120
  );
core/Minifier/Minifier.php CHANGED
@@ -188,7 +188,7 @@ class Minifier {
188
  stripos( $wp_scripts->registered[ $handle ]->src, '.min.js' ) !== false || // If the file is minified already.
189
  false === $wp_scripts->registered[ $handle ]->src || // If the source is empty.
190
  in_array( $wp_scripts->registered[ $handle ]->src, $this->js_ignore_list ) || // If the file is ignored.
191
- strpos( home_url( '/' ), parse_url( $wp_scripts->registered[ $handle ]->src, PHP_URL_HOST ) ) === false // Skip all external sources.
192
  ) {
193
  continue;
194
  }
@@ -204,7 +204,7 @@ class Minifier {
204
  // Check that everythign with minified file is ok.
205
  if ( $is_minified_file_ok ) {
206
  // Replace the script src with the minified version.
207
- $wp_scripts->registered[ $handle ]->src = str_replace( ABSPATH, home_url( '/' ), $filename );
208
  }
209
  }
210
  }
@@ -219,21 +219,21 @@ class Minifier {
219
  * @return string Original filepath.
220
  */
221
  public function get_original_filepath( $original ) {
222
- $home_url = home_url( '/' );
223
  // Get the home_url from database. Some plugins like qtranslate for example,
224
  // modify the home_url, which result to wrong replacement with ABSPATH for resources loaded via link.
225
  // Very ugly way to handle resources without protocol.
226
  $result = parse_url( $home_url );
227
 
228
- $replace = $result['scheme'] . '://' . $result['host'];
229
 
230
- preg_replace( '~^https?:\/\/|^\/\/~', $replace, $original );
231
 
232
  // Get the filepath to original file.
233
- if ( strpos( $original, $home_url ) !== false ) {
234
- $original_filepath = str_replace( $home_url, ABSPATH, $original );
235
  } else {
236
- $original_filepath = untrailingslashit( ABSPATH ) . $original;
237
  }
238
 
239
  return $original_filepath;
@@ -252,8 +252,8 @@ class Minifier {
252
  */
253
  private function check_and_create_file( $new_file_path, $original_filepath ) {
254
  // First remove the query strings.
255
- $original_filepath = Front_End_Optimization::remove_query_strings( $original_filepath );
256
- $new_file_path = Front_End_Optimization::remove_query_strings( $new_file_path );
257
 
258
  // Gets file modification time.
259
  $original_file_timestamp = @filemtime( $original_filepath );
@@ -316,7 +316,7 @@ class Minifier {
316
  if (
317
  stripos( $wp_styles->registered[ $handle ]->src, '.min.css' ) !== false || // If the file is minified already.
318
  false === $wp_styles->registered[ $handle ]->src || // If the source is empty.
319
- strpos( home_url( '/' ), parse_url( $wp_styles->registered[ $handle ]->src, PHP_URL_HOST ) ) === false // Skip all external sources.
320
  ) {
321
  continue;
322
  }
@@ -332,7 +332,7 @@ class Minifier {
332
  // Check that everythign with minified file is ok.
333
  if ( $is_minified_file_ok ) {
334
  // Replace the script src with the minified version.
335
- $wp_styles->registered[ $handle ]->src = str_replace( ABSPATH, home_url( '/' ), $filename );
336
  }
337
  }
338
  }
188
  stripos( $wp_scripts->registered[ $handle ]->src, '.min.js' ) !== false || // If the file is minified already.
189
  false === $wp_scripts->registered[ $handle ]->src || // If the source is empty.
190
  in_array( $wp_scripts->registered[ $handle ]->src, $this->js_ignore_list ) || // If the file is ignored.
191
+ strpos( Helper::get_home_url(), parse_url( $wp_scripts->registered[ $handle ]->src, PHP_URL_HOST ) ) === false // Skip all external sources.
192
  ) {
193
  continue;
194
  }
204
  // Check that everythign with minified file is ok.
205
  if ( $is_minified_file_ok ) {
206
  // Replace the script src with the minified version.
207
+ $wp_scripts->registered[ $handle ]->src = str_replace( ABSPATH, Helper::get_home_url(), $filename );
208
  }
209
  }
210
  }
219
  * @return string Original filepath.
220
  */
221
  public function get_original_filepath( $original ) {
222
+ $home_url = Helper::get_home_url();
223
  // Get the home_url from database. Some plugins like qtranslate for example,
224
  // modify the home_url, which result to wrong replacement with ABSPATH for resources loaded via link.
225
  // Very ugly way to handle resources without protocol.
226
  $result = parse_url( $home_url );
227
 
228
+ $replace = $result['scheme'] . '://';
229
 
230
+ $new = preg_replace( '~^https?:\/\/|^\/\/~', $replace, $original );
231
 
232
  // Get the filepath to original file.
233
+ if ( strpos( $new, $home_url ) !== false ) {
234
+ $original_filepath = str_replace( $home_url, ABSPATH, $new );
235
  } else {
236
+ $original_filepath = untrailingslashit( ABSPATH ) . $new;
237
  }
238
 
239
  return $original_filepath;
252
  */
253
  private function check_and_create_file( $new_file_path, $original_filepath ) {
254
  // First remove the query strings.
255
+ $original_filepath = Front_End_Optimization::remove_query_strings( preg_replace( '/\?.*/', '', $original_filepath ) );
256
+ $new_file_path = Front_End_Optimization::remove_query_strings( preg_replace( '/\?.*/', '', $new_file_path ) );
257
 
258
  // Gets file modification time.
259
  $original_file_timestamp = @filemtime( $original_filepath );
316
  if (
317
  stripos( $wp_styles->registered[ $handle ]->src, '.min.css' ) !== false || // If the file is minified already.
318
  false === $wp_styles->registered[ $handle ]->src || // If the source is empty.
319
+ strpos( Helper::get_home_url(), parse_url( $wp_styles->registered[ $handle ]->src, PHP_URL_HOST ) ) === false // Skip all external sources.
320
  ) {
321
  continue;
322
  }
332
  // Check that everythign with minified file is ok.
333
  if ( $is_minified_file_ok ) {
334
  // Replace the script src with the minified version.
335
+ $wp_styles->registered[ $handle ]->src = str_replace( ABSPATH, Helper::get_home_url(), $filename );
336
  }
337
  }
338
  }
languages/json/sg-cachepress-es_ES.json CHANGED
@@ -1 +1 @@
1
- {"":{"domain":"sg-cachepress","plural_forms":"nplurals=2; plural=n != 1;","lang":"es_ES"},"Close":["Cerrar"],"Purge your installation's entire Dynamic Cache or select parts in order to achieve the best hit-to-cache ratio for your account. Here are the plugin's purge rules:":["Purgar la cache dinámica de tu instalación o seleccionar partes para obtener el mejor ratio hit-to-cache para tu cuenta. Aquí tienes las reglas de purgado del plugin:"],"Full Purge on page, posts, and category deletion, plugin and theme activation, deactivation, or update, and on WordPress core updates.":["Vaciado completo en la página, entradas y categorías eliminadas, activación de plugins y temas, desactivación o actualización, y en las actualizaciones principales de WordPress."],"Specific URL Purge on comment actions and page, post, and category updates.":["Vaciado de una URL específica en acciones y páginas sugeridas, publicaciones y categorías actualizadas."],"Cancel":["Cancelar"],"Confirm":["Confirmar"],"Changing the PHP version may render your website unusable. If this happens, switch back the PHP version from your {{strong}}cPanel{{/strong}} > {{strong}}PHP Version Manager{{/strong}} tool.":["Cambiar la versión de PHP puede hacer tu página web inutilizable. Si esto ocurriera, cambia la versión de PHP desde tu la herramienta {{strong}}cPanel{{/strong}} > {{strong}}PHP Version Manager{{/strong}}."],"In order to force HTTPS on your site, we will automatically update your database replacing all insecure links. In addition to that, we will add a rule in your .htaccess file, forcing all requests to go through encrypted connection.":["Para forzar el HTTPS en tu página, actualizaremos automáticamente tu base de datos reemplazando todos los enlaces inseguros. Además de esto, añadiremos una regla en tu archivo .htaccess, forzando todas las peticiones a través de una conexión encriptada."],"You can exclude full or partial URLs using \"*\" as a wildcard. For example:":["Puedes excluir de forma parcial o total la URL usando “*” como comodín. Por ejemplo:"],"{{strong}}www.site.com/parent-page/sub-page{{/strong}} will exclude only that single URL.":["{{strong}}www.site.com/pagina-madre/sub-pagina{{/strong}} excluirá solo la URL."],"{{strong}}www.site.com/parent-page/*{{/strong}} will exclude all sub-pages of \"parent-page\".":["{{strong}}www.site.com/pagina-madre/*{{/strong}} será excluido de todas las sub-paginas de la “pagina-madre”."],"Browser Caching":["Caché del navegador"],"Adds rules to store in your visitors browser cache to keep static content longer for better site performance.":["Agrega reglas para almacenar en la caché del navegador de los visitantes manteniendo el contenido estático un período más largo para un mejor funcionamiento del sitio web."],"This URL already exists in exclude list.":["Esta URL ya existe en la lista de exclusión."],"Dynamic Caching":["Almacenamiento en caché dinámico"],"Store your content in the server’s memory for a faster access with this full-page caching solution powered by NGINX.":["Almacena tu contenido en la memoria del servidor para un acceso más rápido con esta solución de página completa de caché por NGINX."],"Manual Cache Purge":["Vaciado manual de caché"],"Clear the Dynamic Cache for your entire website.":["Vaciar la Caché Dinámica para toda la página web."],"Purge Cache":["Purgar Caché"],"Purging ...":["Vaciando ..."],"Automatic Cache Purge":["Eliminación automática de Caché"],"Automatically perform a smart cache purge after every content modification.":["Lleva a cabo una eliminación automática de caché después de cada modificación de contenido."],"See rules":["Ver normas"],"Excluding URLs":["Excluir URLs"],"Use this feature if you want to exclude certain parts of your website from being cached and keep them dynamic.":["Usa esta característica si quieres que ciertas partes de tu web queden excluidas de la caché y mantenerlo dinámica."],"See examples":["Ver ejemplos"],"Exclude":["Excluir"],"Test URLs for Cache Status":["Prueba las URLs para saber el estado de la caché"],"Check if the Dynamic Cache is working on a certain URL. Especially useful to make sure your Exclude list is working the way it should.":["Comprobar si la Caché Dinámica funciona en una determinada URL. Especialmente útil para asegurar que tu lista de Exclusión funciona de forma correcta."],"Test":["Test"],"GZIP Compression":["Compresión GZIP"],"Enables a compression of the content that's delivered to your visitors browsers improving the network loading times of your site.":["Activar la compresión del contenido que se envia a los navegadores de los visitantes mejorando los tiempo de carga de tu web."],"Memcached":["Memcached"],"Powerful object caching for your site. It stores frequently executed queries to your databases and reuses them for better performance.":["Herramienta de cache de objetos para tu web. Almacena las consultas ejecutadas con frecuencia en tu bases de datos y las reutiliza para un mejor rendimiento."],"Enable HTTPS":["Activar HTTPS"],"Configures your site to work correctly via HTTPS and forces a secure connection to your site.":["Configura tu página para que funcione de forma correcta a través de HTTPS y fuerza una conexión segura en tu sitio web."],"Fix Insecure Content":["Reparar contenido inseguro"],"Enable this option in case you’re getting insecure content errors on your website. We will dynamically rewrite insecure requests for resources coming from your site":["Activa esta opción en caso de que estés recibiendo errores de contenido inseguro en tu web. Nosotros reescribiremos las peticiones inseguras de los elementos de tu web"],"Minify the HTML Output":["Minimizar la salida HTML"],"Removes unnecessary characters from your HTML output saving data and improving your site speed.":["Elimina caracteres innecesarios de tu HTML guardando los datos y mejorando la velocidad de tu web."],"Minify JavaScript Files":["Minimizar archivos JavaScript"],"Minify your JavaScript files in order to reduce their size, improve cachability, and reduce the number of requests to the server.":["Мinimiza tus archivos de JavaScript para reducir su tamaño, mejorar el caché y reducir el número de solicitudes en el servidor."],"Minify CSS Files":["Minimizar archivos CSS"],"Minify your CSS files in order to reduce their size, improve cachability, and reduce the number of requests to the server.":["Мinimiza tus archivos CSS para reducir su tamaño, mejorar el caché y reducir el número de solicitudes en el servidor."],"Remove Query Strings From Static Resources":["Eliminar Query Springs de los recursos estáticos"],"Removes version query strings from your static resources improving the caching of those resources.":["Elimina la cadena de consultas the tus recursos estáticos para mejorar el caché de esos recursos."],"Disable Emojis":["Desactivar Emojis"],"Enable to prevent WordPress from automatically detecting and generating emojis in your pages.":["Activar para prevenir que WordPress automáticamente detecte y genere emojis en tus páginas."],"New Images Optimization":["Optimización de nuevas imágenes"],"We will automatically optimize all new images that you upload to your Media Library.":["Optimizaremos automáticamente todas las nuevas imágenes que sean subidas a la biblioteca de medios."],"Existing Images Optimization":["Optimización de imágenes existentes"],"We will optimize all your existing images with minimal or no loss in quality. Note, that this will overwrite your original images.":["Optimizaremos todas tus imágenes con un perdida mínima o nula de calidad. Ten en cuenta, esto sobreescribirá tus imágenes originales."],"Start Optimization":["Comenzar Optimización"],"We've detected that the WordPress cronjob functionality is not working. Please, enable it following the instructions in {{link}}this article{{/link}} and refresh this page. If you’re using a real cron job, you can {{link2}}ignore this message{{/link2}} at your own risk. Note, that in this case, those operations may take longer than usual to complete.":[""],"https://www.siteground.com/kb/disable-enable-wordpress-cron/":["https://www.siteground.es/kb/administrar-wordpress-cron/"],"We are optimizing your images, please be patient, this process may take some time.":["Estamos optimizando tus imágenes, por favor, ten paciencia, este proceso podría tardar."],"All images in your Media Library have been optimized successfully! Force {{link}}re-optimization{{/link}} of your images.":["¡Todas las imágenes guardadas en la biblioteca de medios han sido optimizadas satisfactoriamente! Forzar {{link}}re-optimización{{/link}} de tus imágenes."],"Lazy Load Images":["Carga diferida de imágenes"],"Load images only when they are visible in the browser":["Cargar imágenes solo cuando sean visibles en el navegador"],"Lazy Load Gravatars":["Carga diferida de Gravatars"],"When users comment under your posts, WordPress tries to load their avatars from gravatar.com. We recommend lazy-loading them as your users scroll down through your page if you have a high number of comments. ":["Cuando los usuarios comentan en tus publicaciones, WordPress intenta cargar sus avatares desde gravatar.com. Recomendamos una carga diferida mientras los usuarios se desplazan por tu página cuando tienes un número elevado de comentarios. "],"Lazy Load Thumbnails":["Carga diferida de miniaturas"],"Enable if you want to lazy-load the thumbnail sizes of your original images.":["Activar si quieres una carga diferida de las miniaturas de tus imágenes originales."],"Lazy Load Responsive Images":["Carga diferida de imágenes adaptables"],"Certain plugins and themes generate multiple images from a single upload to work better on different devices. Enable if you want to lazy-load these too.":["Algunos plugins y temas generan múltiples imágenes desde una sola súbita para trabajar mejor en diferentes dispositivos. Habilitalo si deseas cargar estas de forma diferida."],"Lazy Load Widgets":["Carga diferida de Widgets"],"Enable this option if you want the images in your widget areas to load only when users reach them. ":["Activa esta opción si quieres las imágenes en tus widgets se carguen solo cuando los usuarios accedan a ellas. "],"Site Admin Permissions":["Permisos de administrador web"],"In this section, set the access permission for admins of separate sites.":["En esta sección, configura los permisos para los administrador de webs separadas."],"SuperCacher Settings":["SuperCaché Configuración"],"Select whether site admins can access and make changes within the SiteGround Optimizer's SuperCacher tab.":["Selecciona si los administradores pueden acceder y hacer cambios en la pestaña SuperCacher de SiteGround Optimizer."],"Frontend Optimizations":["Optimizaciones Frontend"],"Select whether site admins can access and make changes within the SiteGround Optimizer's Frontend Optmization tab.":["Selecciona si los administradores pueden acceder y hacer cambios en la pestaña de Optimización Frontend de SiteGround Optimizer."],"Image Optimizations":["Optimizaciones de imagen"],"Select whether site admins can access and make changes within the SiteGround Optimizer's Image Optimization tab.":["Selecciona si los administradores pueden acceder y hacer cambios en la pestaña Optimiación de Imagen de SiteGround Optimizer."],"Environment Optimizations":["Optimización de entorno"],"Select whether site admins can access and make changes within the SiteGround Optimizer's Environment Optimization tab.":["Selecciona si los administradores de la página pueden acceder y hacer cambios dentro de la pestaña Optimización de entorno de SiteGround Optimizer."],"SUPERCACHER SETTINGS":["AJUSTES DE SUPERCACHER"],"Select whether new sites should have the Dynamic Caching enabled for them or not.":["Seleccionar si las nuevas páginas deberían tener la Caché Dinámica activada o no."],"ENVIRONMENT OPTIMIZATION":["OPTIMIZACIÓN DE ENTORNO"],"FRONTEND OPTIMIZATION":["OPTIMIZACIÓN FRONT-END"],"Combine and minify your JavaScript files in order to reduce their size, improve cachability, and reduce the number of requests to the server.":["Combina y minimiza tus archivos de JavaScript para reducir su tamaño, mejorar el caché y reducir el número de solicitudes en el servidor."],"Combine and minify your CSS files in order to reduce their size, improve cachability, and reduce the number of requests to the server.":["Combina y minimiza tus archivos CSS para reducir su tamaño, mejorar el caché y reducir el número de solicitudes en el servidor."],"IMAGE OPTIMIZATION":["OPTIMIZACIÓN DE IMAGEN"],"Image Optimization":["Optimización de imagen"],"Memcached Stopped. Please, enable it in cPanel.":["Memcached parado. Por favor, actívalo en el cPanel."],"SG Optimizer":["SG Optimizer"],"Get the best performance for your WordPress website with our optimization plugin. It handles caching, system settings, and all the necessary configurations for a blazing-fast website. With the SiteGround Optimizer enabled, you're getting the very best from your hosting environment!":["Obtén el mejor rendimiento de tu web WordPress con nuestro plugin de optimización. Se encarga de la caché, configuración de sistema y todas las configuraciones necesarias para una página web consistente. Con SiteGround Optimizer activado, obtienes el mejor rendimiento de tu entorno de alojamiento."]," (Current & Recommended)":["Actual y recomendados"]," (Current)":["Actual"]," (Recommended)":["Recomendado"],"Old PHP Version (Current)":["Antigua versión de PHP (Actual)"],"Check Again":["Comprobar de nuevo"],"Switch to PHP ":["Cambiar a PHP "],"Check PHP %(version)s Compatibility":["Comprobar compatibilidad con la versión PHP%"],"Switch to Recommended PHP Version":["Cambia a la versión recomendada de PHP"],"Our system will check for compatibility issues and inform you whether it is safe to upgrade to the recommended version:":["Nuestro sistema buscará aspectos compatibles y te informará si es seguro mejorarlo a la versión recomendada:"],"You are running PHP %(version)s which is the minimum recommended or higher PHP version.":["Estás usando una versión de PHP % que es la mínima recomendada o versión PHP superior."],"Unfortunately some of your plugins or theme are not compatible with our recommended version":["Desafortunadamente, algunos de los plugins o temas no son compatibles con nuestra versión recomendada"],"Manual PHP Change.":["Cambio manual de PHP."],"Manually switch between different available PHP versions.":["Cambio manual entre las diferentes versiones disponibles de PHP."],"Switch":["Cambiar"]}
1
+ {"":{"domain":"sg-cachepress","plural_forms":"nplurals=2; plural=n != 1;","lang":"es_ES"},"Close":["Cerrar"],"Purge your installation's entire Dynamic Cache or select parts in order to achieve the best hit-to-cache ratio for your account. Here are the plugin's purge rules:":["Purgar la cache dinámica de tu instalación o seleccionar partes para obtener el mejor ratio hit-to-cache para tu cuenta. Aquí tienes las reglas de purgado del plugin:"],"Full Purge on page, posts, and category deletion, plugin and theme activation, deactivation, or update, and on WordPress core updates.":["Vaciado completo en la página, entradas y categorías eliminadas, activación de plugins y temas, desactivación o actualización, y en las actualizaciones principales de WordPress."],"Specific URL Purge on comment actions and page, post, and category updates.":["Vaciado de una URL específica en acciones y páginas sugeridas, publicaciones y categorías actualizadas."],"Cancel":["Cancelar"],"Confirm":["Confirmar"],"Changing the PHP version may render your website unusable. If this happens, switch back the PHP version from your {{strong}}cPanel{{/strong}} > {{strong}}PHP Version Manager{{/strong}} tool.":["Cambiar la versión de PHP puede dejar tu web inutilizable. Si esto ocurriera, cambia la versión de PHP desde {{strong}}cPanel{{/strong}} > {{strong}}PHP Version Manager{{/strong}}."],"In order to force HTTPS on your site, we will automatically update your database replacing all insecure links. In addition to that, we will add a rule in your .htaccess file, forcing all requests to go through encrypted connection.":["Para forzar el HTTPS en tu página actualizaremos automáticamente tu base de datos reemplazando todos los enlaces inseguros. Además de esto, añadiremos una regla en tu archivo .htaccess, forzando todas las peticiones a través de una conexión encriptada."],"You can exclude full or partial URLs using \"*\" as a wildcard. For example:":["Puedes excluir de forma parcial o total la URL usando “*” como comodín. Por ejemplo:"],"{{strong}}www.site.com/parent-page/sub-page{{/strong}} will exclude only that single URL.":["{{strong}}www.site.com/pagina-madre/sub-pagina{{/strong}} excluirá solo esa URL."],"{{strong}}www.site.com/parent-page/*{{/strong}} will exclude all sub-pages of \"parent-page\".":["{{strong}}www.site.com/pagina-madre/*{{/strong}} será excluido de todas las sub-paginas de la “pagina-superior”."],"Browser Caching":["Caché del navegador"],"Adds rules to store in your visitors browser cache to keep static content longer for better site performance.":["Agrega reglas para almacenar en la caché del navegador de los visitantes manteniendo el contenido estático un período más largo para un mejor funcionamiento del sitio web."],"This URL already exists in exclude list.":["Esta URL ya existe en la lista de exclusión."],"Dynamic Caching":["Almacenamiento en caché dinámico"],"Store your content in the server’s memory for a faster access with this full-page caching solution powered by NGINX.":["Almacena tu contenido en la memoria del servidor para un acceso más rápido con esta solución de página completa de caché por NGINX."],"Manual Cache Purge":["Vaciado manual de caché"],"Clear the Dynamic Cache for your entire website.":["Vaciar la caché dinámica para toda la web."],"Purge Cache":["Purgar caché"],"Purging ...":["Vaciando ..."],"Automatic Cache Purge":["Eliminación automática de caché"],"Automatically perform a smart cache purge after every content modification.":["Lleva a cabo una eliminación automática de caché después de cada modificación de contenido."],"See rules":["Ver normas"],"Excluding URLs":["Excluir URLs"],"Use this feature if you want to exclude certain parts of your website from being cached and keep them dynamic.":["Usa esta característica si quieres que ciertas partes de tu web queden excluidas de la caché y mantenerlo dinámica."],"See examples":["Ver ejemplos"],"Exclude":["Excluir"],"Test URLs for Cache Status":["Prueba las URLs para saber el estado de la caché"],"Check if the Dynamic Cache is working on a certain URL. Especially useful to make sure your Exclude list is working the way it should.":["Comprobar si la Caché Dinámica funciona en una determinada URL. Especialmente útil para asegurar que tu lista de Exclusión funciona de forma correcta."],"Test":["Probar"],"GZIP Compression":["Compresión GZIP"],"Enables a compression of the content that's delivered to your visitors browsers improving the network loading times of your site.":["Activar la compresión del contenido que se envia a los navegadores de los visitantes mejorando los tiempo de carga de tu web."],"Memcached":["Memcached"],"Powerful object caching for your site. It stores frequently executed queries to your databases and reuses them for better performance.":["Herramienta de cache de objetos para tu web. Almacena las consultas ejecutadas con frecuencia en tu bases de datos y las reutiliza para un mejor rendimiento."],"Enable HTTPS":["Activar HTTPS"],"Configures your site to work correctly via HTTPS and forces a secure connection to your site.":["Configura tu página para que funcione de forma correcta a través de HTTPS y fuerza una conexión segura en tu sitio web."],"Fix Insecure Content":["Reparar contenido inseguro"],"Enable this option in case you’re getting insecure content errors on your website. We will dynamically rewrite insecure requests for resources coming from your site":["Activa esta opción en caso de que estés recibiendo errores de contenido inseguro en tu web. Nosotros reescribiremos las peticiones inseguras de los elementos de tu web"],"Minify the HTML Output":["Minimizar la salida HTML"],"Removes unnecessary characters from your HTML output saving data and improving your site speed.":["Elimina caracteres innecesarios de tu HTML guardando los datos y mejorando la velocidad de tu web."],"Minify JavaScript Files":["Minimizar archivos JavaScript"],"Minify your JavaScript files in order to reduce their size, improve cachability, and reduce the number of requests to the server.":["Мinimiza tus archivos de JavaScript para reducir su tamaño, mejorar el caché y reducir el número de solicitudes en el servidor."],"Minify CSS Files":["Minimizar archivos CSS"],"Minify your CSS files in order to reduce their size, improve cachability, and reduce the number of requests to the server.":["Мinimiza tus archivos CSS para reducir su tamaño, mejorar el caché y reducir el número de solicitudes en el servidor."],"Remove Query Strings From Static Resources":["Eliminar Query Springs de los recursos estáticos"],"Removes version query strings from your static resources improving the caching of those resources.":["Elimina la cadena de consultas the tus recursos estáticos para mejorar el caché de esos recursos."],"Disable Emojis":["Desactivar Emojis"],"Enable to prevent WordPress from automatically detecting and generating emojis in your pages.":["Activar para prevenir que WordPress automáticamente detecte y genere emojis en tus páginas."],"New Images Optimization":["Optimización de nuevas imágenes"],"We will automatically optimize all new images that you upload to your Media Library.":["Optimizaremos automáticamente todas las nuevas imágenes que sean subidas a la biblioteca de medios."],"Existing Images Optimization":["Optimización de imágenes existentes"],"We will optimize all your existing images with minimal or no loss in quality. Note, that this will overwrite your original images.":["Optimizaremos todas tus imágenes con un perdida mínima o nula de calidad. Ten en cuenta, esto sobreescribirá tus imágenes originales."],"Start Optimization":["Comenzar optimización"],"We've detected that the WordPress cronjob functionality is not working. Please, enable it following the instructions in {{link}}this article{{/link}} and refresh this page. If you’re using a real cron job, you can {{link2}}ignore this message{{/link2}} at your own risk. Note, that in this case, those operations may take longer than usual to complete.":["Hemos detectado que la funcionalidad cronjob de WordPress no funciona. Por favor, actívala siguiendo las instrucciones de {{link}}este artículo{{/link}} y actualiza esta página. Si estás utilizando una tarea cron real, puedes {{link2}}ignorar este mensaje{{/link2}} bajo tu propio riesgo. Ten en cuenta que, en este caso, estas operaciones pueden tardar más de lo habitual en completarse."],"https://www.siteground.com/kb/disable-enable-wordpress-cron/":["https://www.siteground.es/kb/administrar-wordpress-cron/"],"We are optimizing your images, please be patient, this process may take some time.":["Estamos optimizando tus imágenes, por favor, ten paciencia, este proceso podría tardar."],"All images in your Media Library have been optimized successfully! Force {{link}}re-optimization{{/link}} of your images.":["¡Todas las imágenes guardadas en la biblioteca de medios han sido optimizadas satisfactoriamente! Forzar {{link}}re-optimización{{/link}} de tus imágenes."],"Lazy Load Images":["Carga diferida de imágenes"],"Load images only when they are visible in the browser":["Cargar imágenes solo cuando sean visibles en el navegador"],"Lazy Load Gravatars":["Carga diferida de Gravatars"],"When users comment under your posts, WordPress tries to load their avatars from gravatar.com. We recommend lazy-loading them as your users scroll down through your page if you have a high number of comments. ":["Cuando los usuarios comentan en tus publicaciones, WordPress intenta cargar sus avatares desde gravatar.com. Recomendamos una carga diferida mientras los usuarios se desplazan por tu página cuando tienes un número elevado de comentarios. "],"Lazy Load Thumbnails":["Carga diferida de miniaturas"],"Enable if you want to lazy-load the thumbnail sizes of your original images.":["Activar si quieres una carga diferida de las miniaturas de tus imágenes originales."],"Lazy Load Responsive Images":["Carga diferida de imágenes adaptables"],"Certain plugins and themes generate multiple images from a single upload to work better on different devices. Enable if you want to lazy-load these too.":["Algunos plugins y temas generan múltiples imágenes desde una sola súbita para trabajar mejor en diferentes dispositivos. Habilitalo si deseas cargar estas de forma diferida."],"Lazy Load Widgets":["Carga diferida de widgets"],"Enable this option if you want the images in your widget areas to load only when users reach them. ":["Activa esta opción si quieres las imágenes en tus widgets se carguen solo cuando los usuarios accedan a ellas. "],"Site Admin Permissions":["Permisos de administrador del sitio"],"In this section, set the access permission for admins of separate sites.":["En esta sección, configura los permisos para los administrador de webs separadas."],"SuperCacher Settings":["Ajustes de SuperCacher"],"Select whether site admins can access and make changes within the SiteGround Optimizer's SuperCacher tab.":["Selecciona si los administradores pueden acceder y hacer cambios en la pestaña SuperCacher de SiteGround Optimizer."],"Frontend Optimizations":["Optimizaciones en portada"],"Select whether site admins can access and make changes within the SiteGround Optimizer's Frontend Optmization tab.":["Selecciona si los administradores pueden acceder y hacer cambios en la pestaña de Optimización Frontend de SiteGround Optimizer."],"Image Optimizations":["Optimizaciones de imagen"],"Select whether site admins can access and make changes within the SiteGround Optimizer's Image Optimization tab.":["Selecciona si los administradores pueden acceder y hacer cambios en la pestaña Optimiación de Imagen de SiteGround Optimizer."],"Environment Optimizations":["Optimización de entorno"],"Select whether site admins can access and make changes within the SiteGround Optimizer's Environment Optimization tab.":["Selecciona si los administradores de la página pueden acceder y hacer cambios dentro de la pestaña Optimización de entorno de SiteGround Optimizer."],"SUPERCACHER SETTINGS":["AJUSTES DE SUPERCACHER"],"Select whether new sites should have the Dynamic Caching enabled for them or not.":["Seleccionar si las nuevas páginas deberían tener la Caché Dinámica activada o no."],"ENVIRONMENT OPTIMIZATION":["OPTIMIZACIÓN DEL ENTORNO"],"FRONTEND OPTIMIZATION":["OPTIMIZACIÓN DE PORTADA"],"Combine and minify your JavaScript files in order to reduce their size, improve cachability, and reduce the number of requests to the server.":["Combina y minimiza tus archivos de JavaScript para reducir su tamaño, mejorar el caché y reducir el número de solicitudes en el servidor."],"Combine and minify your CSS files in order to reduce their size, improve cachability, and reduce the number of requests to the server.":["Combina y minimiza tus archivos CSS para reducir su tamaño, mejorar el caché y reducir el número de solicitudes en el servidor."],"IMAGE OPTIMIZATION":["OPTIMIZACIÓN DE IMÁGENES"],"Image Optimization":["Optimización de imágenes"],"Memcached Stopped. Please, enable it in cPanel.":["Memcached parado. Por favor, actívalo en cPanel."],"SG Optimizer":["SG Optimizer"],"Get the best performance for your WordPress website with our optimization plugin. It handles caching, system settings, and all the necessary configurations for a blazing-fast website. With the SiteGround Optimizer enabled, you're getting the very best from your hosting environment!":["Obtén el mejor rendimiento de tu web WordPress con nuestro plugin de optimización. Se encarga de la caché, configuración de sistema y todas las configuraciones necesarias para una página web consistente. ¡Con SiteGround Optimizer activado obtienes el mejor rendimiento de tu entorno de alojamiento!"]," (Current & Recommended)":[" (Actual y recomendado)"]," (Current)":[" (Actual)"]," (Recommended)":[" (Recomendado)"],"Old PHP Version (Current)":["Versión antigua de PHP (Actual)"],"Check Again":["Comprobar de nuevo"],"Switch to PHP ":["Cambiar a PHP "],"Check PHP %(version)s Compatibility":["Comprobar compatibilidad con la versión de PHP %(version)s"],"Switch to Recommended PHP Version":["Cambia a la versión recomendada de PHP"],"Our system will check for compatibility issues and inform you whether it is safe to upgrade to the recommended version:":["Nuestro sistema buscará aspectos compatibles y te informará si es seguro mejorarlo a la versión recomendada:"],"You are running PHP %(version)s which is the minimum recommended or higher PHP version.":["Estás usando la versión de PHP %(version)s que es la mínima recomendada o superior."],"Unfortunately some of your plugins or theme are not compatible with our recommended version":["Desafortunadamente, algunos de los plugins o temas no son compatibles con nuestra versión recomendada"],"Manual PHP Change.":["Cambio manual de PHP."],"Manually switch between different available PHP versions.":["Cambio manual entre las diferentes versiones disponibles de PHP."],"Switch":["Cambiar"]}
languages/sg-cachepress-es_ES.mo CHANGED
Binary file
languages/sg-cachepress-es_ES.po CHANGED
@@ -3,15 +3,15 @@ msgstr ""
3
  "Project-Id-Version: SG Optimizer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2018-12-10 07:11+0000\n"
6
- "PO-Revision-Date: 2018-12-10 07:12+0000\n"
7
- "Last-Translator: admin <stanimir.k.stoyanov@gmail.com>\n"
8
  "Language-Team: Spanish (Spain)\n"
9
  "Language: es_ES\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Loco https://localise.biz/"
15
 
16
  #. src-js/components/dialogs/ssl-dialog.jsx:35
17
  #: src-js/sg-cachepress-strings.php:4 src-js/sg-cachepress-strings.php:14
@@ -65,12 +65,12 @@ msgstr "Confirmar"
65
  #: src-js/sg-cachepress-strings.php:10
66
  msgid ""
67
  "Changing the PHP version may render your website unusable. If this happens, "
68
- "switch back the PHP version from your {{strong}}cPanel{{/strong}} > {{strong}"
69
- "}PHP Version Manager{{/strong}} tool."
70
  msgstr ""
71
- "Cambiar la versión de PHP puede hacer tu página web inutilizable. Si esto "
72
- "ocurriera, cambia la versión de PHP desde tu la herramienta {{strong}}"
73
- "cPanel{{/strong}} > {{strong}}PHP Version Manager{{/strong}}."
74
 
75
  #. src-js/components/dialogs/ssl-dialog.jsx:23
76
  #: src-js/sg-cachepress-strings.php:13
@@ -80,7 +80,7 @@ msgid ""
80
  "rule in your .htaccess file, forcing all requests to go through encrypted "
81
  "connection."
82
  msgstr ""
83
- "Para forzar el HTTPS en tu página, actualizaremos automáticamente tu base de "
84
  "datos reemplazando todos los enlaces inseguros. Además de esto, añadiremos "
85
  "una regla en tu archivo .htaccess, forzando todas las peticiones a través de "
86
  "una conexión encriptada."
@@ -99,7 +99,7 @@ msgid ""
99
  "{{strong}}www.site.com/parent-page/sub-page{{/strong}} will exclude only "
100
  "that single URL."
101
  msgstr ""
102
- "{{strong}}www.site.com/pagina-madre/sub-pagina{{/strong}} excluirá solo la "
103
  "URL."
104
 
105
  #. src-js/components/dialogs/urls-dialog.jsx:38
@@ -109,7 +109,7 @@ msgid ""
109
  "of \"parent-page\"."
110
  msgstr ""
111
  "{{strong}}www.site.com/pagina-madre/*{{/strong}} será excluido de todas las "
112
- "sub-paginas de la “pagina-madre”."
113
 
114
  #. src-js/components/tabs/environment-optimization/index.jsx:216
115
  #: src-js/sg-cachepress-strings.php:18 core/Options/Options.php:338
@@ -154,12 +154,12 @@ msgstr "Vaciado manual de caché"
154
  #. src-js/components/tabs/supercacher/index.jsx:264
155
  #: src-js/sg-cachepress-strings.php:24
156
  msgid "Clear the Dynamic Cache for your entire website."
157
- msgstr "Vaciar la Caché Dinámica para toda la página web."
158
 
159
  #. src-js/components/modules/dynamic-cache/index.jsx:234
160
  #: src-js/sg-cachepress-strings.php:25
161
  msgid "Purge Cache"
162
- msgstr "Purgar Caché"
163
 
164
  #. src-js/components/modules/dynamic-cache/index.jsx:247
165
  #: src-js/sg-cachepress-strings.php:26
@@ -169,7 +169,7 @@ msgstr "Vaciando ..."
169
  #. src-js/components/tabs/supercacher/index.jsx:267
170
  #: src-js/sg-cachepress-strings.php:27 src-js/sg-cachepress-strings.php:87
171
  msgid "Automatic Cache Purge"
172
- msgstr "Eliminación automática de Caché"
173
 
174
  #. src-js/components/tabs/supercacher/index.jsx:299
175
  #: src-js/sg-cachepress-strings.php:28 src-js/sg-cachepress-strings.php:88
@@ -226,7 +226,7 @@ msgstr ""
226
  #. src-js/components/tabs/supercacher/index.jsx:399
227
  #: src-js/sg-cachepress-strings.php:36
228
  msgid "Test"
229
- msgstr "Test"
230
 
231
  #. src-js/components/tabs/environment-optimization/index.jsx:157
232
  #: src-js/sg-cachepress-strings.php:37 core/Options/Options.php:337
@@ -380,8 +380,8 @@ msgstr "Optimización de imágenes existentes"
380
  #. src-js/components/tabs/image-optimization/index.jsx:80
381
  #: src-js/sg-cachepress-strings.php:58 src-js/sg-cachepress-strings.php:107
382
  msgid ""
383
- "We will optimize all your existing images with minimal or no loss in quality."
384
- " Note, that this will overwrite your original images."
385
  msgstr ""
386
  "Optimizaremos todas tus imágenes con un perdida mínima o nula de calidad. "
387
  "Ten en cuenta, esto sobreescribirá tus imágenes originales."
@@ -389,18 +389,24 @@ msgstr ""
389
  #. src-js/components/tabs/image-optimization/index.jsx:105
390
  #: src-js/sg-cachepress-strings.php:59
391
  msgid "Start Optimization"
392
- msgstr "Comenzar Optimización"
393
 
394
  #. src-js/components/tabs/image-optimization/index.jsx:131
395
  #. src-js/containers/php-checker/index.jsx:212
396
  #: src-js/sg-cachepress-strings.php:60 src-js/sg-cachepress-strings.php:131
397
  msgid ""
398
  "We've detected that the WordPress cronjob functionality is not working. "
399
- "Please, enable it following the instructions in {{link}}this article{{/link}}"
400
- " and refresh this page. If you’re using a real cron job, you can {{link2}}"
401
- "ignore this message{{/link2}} at your own risk. Note, that in this case, "
402
- "those operations may take longer than usual to complete."
403
- msgstr ""
 
 
 
 
 
 
404
 
405
  #. src-js/components/php-checker/index.jsx:223
406
  #. src-js/components/tabs/multisite-control/index.jsx:547
@@ -486,7 +492,7 @@ msgstr ""
486
  #. src-js/components/tabs/image-optimization/index.jsx:283
487
  #: src-js/sg-cachepress-strings.php:72 src-js/sg-cachepress-strings.php:116
488
  msgid "Lazy Load Widgets"
489
- msgstr "Carga diferida de Widgets"
490
 
491
  #. src-js/components/tabs/image-optimization/index.jsx:315
492
  #: src-js/sg-cachepress-strings.php:73 src-js/sg-cachepress-strings.php:117
@@ -500,7 +506,7 @@ msgstr ""
500
  #. src-js/components/tabs/multisite-control/index.jsx:339
501
  #: src-js/sg-cachepress-strings.php:74
502
  msgid "Site Admin Permissions"
503
- msgstr "Permisos de administrador web"
504
 
505
  #. src-js/components/tabs/multisite-control/index.jsx:372
506
  #: src-js/sg-cachepress-strings.php:75
@@ -513,7 +519,7 @@ msgstr ""
513
  #. src-js/components/tabs/multisite-control/index.jsx:87
514
  #: src-js/sg-cachepress-strings.php:76 helpers/manual-translations.php:2
515
  msgid "SuperCacher Settings"
516
- msgstr "SuperCaché Configuración"
517
 
518
  #. src-js/components/tabs/multisite-control/index.jsx:402
519
  #: src-js/sg-cachepress-strings.php:77
@@ -527,7 +533,7 @@ msgstr ""
527
  #. src-js/components/tabs/multisite-control/index.jsx:405
528
  #: src-js/sg-cachepress-strings.php:78
529
  msgid "Frontend Optimizations"
530
- msgstr "Optimizaciones Frontend"
531
 
532
  #. src-js/components/tabs/multisite-control/index.jsx:434
533
  #: src-js/sg-cachepress-strings.php:79
@@ -583,12 +589,12 @@ msgstr ""
583
  #. src-js/components/tabs/sites-control/index.jsx:103
584
  #: src-js/sg-cachepress-strings.php:89
585
  msgid "ENVIRONMENT OPTIMIZATION"
586
- msgstr "OPTIMIZACIÓN DE ENTORNO"
587
 
588
  #. src-js/components/tabs/sites-control/index.jsx:208
589
  #: src-js/sg-cachepress-strings.php:94
590
  msgid "FRONTEND OPTIMIZATION"
591
- msgstr "OPTIMIZACIÓN FRONT-END"
592
 
593
  #. src-js/components/tabs/frontend-optimization/index.jsx:65
594
  #: src-js/sg-cachepress-strings.php:98
@@ -611,17 +617,17 @@ msgstr ""
611
  #. src-js/components/tabs/sites-control/index.jsx:395
612
  #: src-js/sg-cachepress-strings.php:105
613
  msgid "IMAGE OPTIMIZATION"
614
- msgstr "OPTIMIZACIÓN DE IMAGEN"
615
 
616
  #. src-js/components/tabs/sites-control/index.jsx:425
617
  #: src-js/sg-cachepress-strings.php:106 helpers/manual-translations.php:5
618
  msgid "Image Optimization"
619
- msgstr "Optimización de imagen"
620
 
621
  #. src-js/components/tabs/supercacher/index.jsx:117
622
  #: src-js/sg-cachepress-strings.php:118
623
  msgid "Memcached Stopped. Please, enable it in cPanel."
624
- msgstr "Memcached parado. Por favor, actívalo en el cPanel."
625
 
626
  #. Page title.
627
  #. Name of the plugin
@@ -640,29 +646,29 @@ msgid ""
640
  msgstr ""
641
  "Obtén el mejor rendimiento de tu web WordPress con nuestro plugin de "
642
  "optimización. Se encarga de la caché, configuración de sistema y todas las "
643
- "configuraciones necesarias para una página web consistente. Con SiteGround "
644
- "Optimizer activado, obtienes el mejor rendimiento de tu entorno de "
645
- "alojamiento."
646
 
647
  #. src-js/components/dialogs/urls-dialog.jsx:54
648
  #: src-js/sg-cachepress-strings.php:121
649
  msgid " (Current & Recommended)"
650
- msgstr "Actual y recomendados"
651
 
652
  #. src-js/components/php-checker/index.jsx:77
653
  #: src-js/sg-cachepress-strings.php:122
654
  msgid " (Current)"
655
- msgstr "Actual"
656
 
657
  #. src-js/components/php-checker/index.jsx:79
658
  #: src-js/sg-cachepress-strings.php:123
659
  msgid " (Recommended)"
660
- msgstr "Recomendado"
661
 
662
  #. src-js/components/php-checker/index.jsx:81
663
  #: src-js/sg-cachepress-strings.php:124
664
  msgid "Old PHP Version (Current)"
665
- msgstr "Antigua versión de PHP (Actual)"
666
 
667
  #. src-js/components/php-checker/index.jsx:92
668
  #. src-js/components/php-checker/index.jsx:136
@@ -678,7 +684,7 @@ msgstr "Cambiar a PHP "
678
  #. src-js/components/php-checker/index.jsx:158
679
  #: src-js/sg-cachepress-strings.php:128
680
  msgid "Check PHP %(version)s Compatibility"
681
- msgstr "Comprobar compatibilidad con la versión PHP%"
682
 
683
  #. src-js/components/php-checker/index.jsx:158
684
  #: src-js/sg-cachepress-strings.php:129
@@ -700,8 +706,7 @@ msgid ""
700
  "You are running PHP %(version)s which is the minimum recommended or higher "
701
  "PHP version."
702
  msgstr ""
703
- "Estás usando una versión de PHP % que es la mínima recomendada o versión PHP "
704
- "superior."
705
 
706
  #. src-js/components/php-checker/index.jsx:244
707
  #: src-js/sg-cachepress-strings.php:134
@@ -741,11 +746,11 @@ msgstr "Caché dinámica"
741
 
742
  #: core/Options/Options.php:334
743
  msgid "Autoflush"
744
- msgstr "“Auto-Vaciado"
745
 
746
  #: core/Options/Options.php:335
747
  msgid "Memcache"
748
- msgstr "Memcache"
749
 
750
  #: core/Options/Options.php:336
751
  msgid "HTTPS"
@@ -757,7 +762,7 @@ msgstr "Corrección de contenido inseguro"
757
 
758
  #: core/Options/Options.php:340
759
  msgid "HTML Minification"
760
- msgstr "Minificación HTML"
761
 
762
  #: core/Options/Options.php:341
763
  msgid "JavaScript Minification"
@@ -765,7 +770,7 @@ msgstr "Minimización de JavaScript"
765
 
766
  #: core/Options/Options.php:342
767
  msgid "CSS Minification"
768
- msgstr "Minificación de CSS"
769
 
770
  #: core/Options/Options.php:343
771
  msgid "Query Strings Removal"
@@ -793,23 +798,23 @@ msgstr "Carga diferida de imágenes adaptables"
793
 
794
  #: core/Options/Options.php:349
795
  msgid "Lazy Loading Widgets"
796
- msgstr "Carga diferida de Widgets"
797
 
798
  #: core/Options/Options.php:350
799
  msgid "Can Config SuperCacher"
800
- msgstr "Configuración Super Caché"
801
 
802
  #: core/Options/Options.php:351
803
  msgid "Can Optimize Frontend"
804
- msgstr "Optimizar el Frontend"
805
 
806
  #: core/Options/Options.php:352
807
  msgid "Can Optimize Images"
808
- msgstr "Optimizar imágenes"
809
 
810
  #: core/Options/Options.php:353
811
  msgid "Can Optimize Environment"
812
- msgstr "Optimizar el entorno"
813
 
814
  #: core/Options/Options.php:358
815
  msgid "Option"
@@ -818,34 +823,34 @@ msgstr "Opción"
818
  #: core/Options/Options.php:362
819
  #, php-format
820
  msgid "%s Enabled"
821
- msgstr "%s Activado"
822
 
823
  #: core/Options/Options.php:365
824
  #, php-format
825
  msgid "%s Disabled"
826
- msgstr "%s Desactivado"
827
 
828
  #: core/Options/Options.php:370
829
  #, php-format
830
  msgid "Could not enable %s"
831
- msgstr "¡No se puede habilitar %s"
832
 
833
  #: core/Options/Options.php:373
834
  #, php-format
835
  msgid "Could not disable %s"
836
- msgstr "¡No se pudo deshabilitar %s"
837
 
838
  #: core/Admin/Admin_Bar.php:36 core/Admin/Admin.php:303
839
  msgid "Purge SG Cache"
840
- msgstr "Purgar SG Cache"
841
 
842
  #: core/Admin/Admin.php:232
843
  msgid ""
844
  "SG Optimizer has detected that Memcached was turned off. If you want to use "
845
  "it, please enable it from cPanel first."
846
  msgstr ""
847
- "SG Optimizer ha detectado que Memcached fue desactivado. Si quieres usarlo, "
848
- "por favor actívalo primero desde el cPanel."
849
 
850
  #: core/Modules/Modules.php:444
851
  #, php-format
@@ -853,14 +858,15 @@ msgid ""
853
  "<strong>Important message from SG Optimizer plugin</strong>: We have "
854
  "detected that there is duplicate functionality with other plugins installed "
855
  "on your site: <strong>%1$s</strong> and have deactivated the following "
856
- "functions from our plugin: <strong>%2$s</strong>. If you wish to enable them,"
857
- " please do that from the SG Optimizer config page."
858
  msgstr ""
859
- "<strong>Messaggio importante dal plugin SG Optimizer</strong>: Abbiamo "
860
- "rilevato che esistono funzionalità duplicate con altri plugin installati sul "
861
- "tuo sito: <strong>%1$s</strong> e disattivato le seguenti funzioni del "
862
- "nostro plugin: <strong>%2$s</strong>. Se desideri abilitarle, procedi dalla "
863
- "pagina di configurazione di SG Optimizer."
 
864
 
865
  #: core/Modules/Modules.php:475
866
  #, php-format
@@ -872,14 +878,20 @@ msgid ""
872
  "hurt your pages loading times so we recommend you to leave only one of the "
873
  "plugins active."
874
  msgstr ""
 
 
 
 
 
 
875
 
876
  #: core/Rest/Rest_Helper.php:204
877
  msgid ""
878
  "SG Optiimzer was unable to connect to the Memcached server and it was "
879
  "disabled. Please, check your cPanel and turn it on if disabled."
880
  msgstr ""
881
- "SG Optimizer no puede conectarse con el servidor Memcached y fue desactivado."
882
- " Por favor, comprueba tu cPanel y actívalo si estaba desactivado."
883
 
884
  #: core/Rest/Rest_Helper.php:215
885
  msgid "Memcached Enabled"
@@ -887,31 +899,31 @@ msgstr "Memcached Activado"
887
 
888
  #: core/Rest/Rest_Helper.php:223
889
  msgid "Could Not Enable Memcache!"
890
- msgstr "¡No se puede habilitar el Memcache!"
891
 
892
  #: core/Rest/Rest_Helper.php:241 core/Rest/Rest_Helper.php:253
893
  msgid "Memcache Disabled!"
894
- msgstr "¡Memcache Desactivado!"
895
 
896
  #: core/Rest/Rest_Helper.php:261
897
  msgid "Could Not Disable Memcache!"
898
- msgstr "¡No se pudo deshabilitar el Memcache!"
899
 
900
  #: core/Rest/Rest_Helper.php:354
901
  msgid "PHP Version has been changed"
902
- msgstr "La versión PHP ha sido cambiada"
903
 
904
  #: core/Rest/Rest_Helper.php:354
905
  msgid "Cannot change PHP Version"
906
- msgstr "No se puede cambiar la versión PHP"
907
 
908
  #. Description of the plugin
909
  msgid ""
910
  "This plugin will link your WordPress application with all the performance "
911
  "optimizations provided by SiteGround"
912
  msgstr ""
913
- "Este plugin enlazará tu aplicación de WordPress con todas las mejoras "
914
- "llevadas a cabo por SiteGround"
915
 
916
  #. Author of the plugin
917
  msgid "SiteGround"
3
  "Project-Id-Version: SG Optimizer\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2018-12-10 07:11+0000\n"
6
+ "PO-Revision-Date: 2018-12-12 09:36+0100\n"
7
+ "Last-Translator: Fernando Tellado <fernando@tellado.es>\n"
8
  "Language-Team: Spanish (Spain)\n"
9
  "Language: es_ES\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 2.1\n"
15
 
16
  #. src-js/components/dialogs/ssl-dialog.jsx:35
17
  #: src-js/sg-cachepress-strings.php:4 src-js/sg-cachepress-strings.php:14
65
  #: src-js/sg-cachepress-strings.php:10
66
  msgid ""
67
  "Changing the PHP version may render your website unusable. If this happens, "
68
+ "switch back the PHP version from your {{strong}}cPanel{{/strong}} > "
69
+ "{{strong}}PHP Version Manager{{/strong}} tool."
70
  msgstr ""
71
+ "Cambiar la versión de PHP puede dejar tu web inutilizable. Si esto "
72
+ "ocurriera, cambia la versión de PHP desde {{strong}}cPanel{{/strong}} > "
73
+ "{{strong}}PHP Version Manager{{/strong}}."
74
 
75
  #. src-js/components/dialogs/ssl-dialog.jsx:23
76
  #: src-js/sg-cachepress-strings.php:13
80
  "rule in your .htaccess file, forcing all requests to go through encrypted "
81
  "connection."
82
  msgstr ""
83
+ "Para forzar el HTTPS en tu página actualizaremos automáticamente tu base de "
84
  "datos reemplazando todos los enlaces inseguros. Además de esto, añadiremos "
85
  "una regla en tu archivo .htaccess, forzando todas las peticiones a través de "
86
  "una conexión encriptada."
99
  "{{strong}}www.site.com/parent-page/sub-page{{/strong}} will exclude only "
100
  "that single URL."
101
  msgstr ""
102
+ "{{strong}}www.site.com/pagina-madre/sub-pagina{{/strong}} excluirá solo esa "
103
  "URL."
104
 
105
  #. src-js/components/dialogs/urls-dialog.jsx:38
109
  "of \"parent-page\"."
110
  msgstr ""
111
  "{{strong}}www.site.com/pagina-madre/*{{/strong}} será excluido de todas las "
112
+ "sub-paginas de la “pagina-superior”."
113
 
114
  #. src-js/components/tabs/environment-optimization/index.jsx:216
115
  #: src-js/sg-cachepress-strings.php:18 core/Options/Options.php:338
154
  #. src-js/components/tabs/supercacher/index.jsx:264
155
  #: src-js/sg-cachepress-strings.php:24
156
  msgid "Clear the Dynamic Cache for your entire website."
157
+ msgstr "Vaciar la caché dinámica para toda la web."
158
 
159
  #. src-js/components/modules/dynamic-cache/index.jsx:234
160
  #: src-js/sg-cachepress-strings.php:25
161
  msgid "Purge Cache"
162
+ msgstr "Purgar caché"
163
 
164
  #. src-js/components/modules/dynamic-cache/index.jsx:247
165
  #: src-js/sg-cachepress-strings.php:26
169
  #. src-js/components/tabs/supercacher/index.jsx:267
170
  #: src-js/sg-cachepress-strings.php:27 src-js/sg-cachepress-strings.php:87
171
  msgid "Automatic Cache Purge"
172
+ msgstr "Eliminación automática de caché"
173
 
174
  #. src-js/components/tabs/supercacher/index.jsx:299
175
  #: src-js/sg-cachepress-strings.php:28 src-js/sg-cachepress-strings.php:88
226
  #. src-js/components/tabs/supercacher/index.jsx:399
227
  #: src-js/sg-cachepress-strings.php:36
228
  msgid "Test"
229
+ msgstr "Probar"
230
 
231
  #. src-js/components/tabs/environment-optimization/index.jsx:157
232
  #: src-js/sg-cachepress-strings.php:37 core/Options/Options.php:337
380
  #. src-js/components/tabs/image-optimization/index.jsx:80
381
  #: src-js/sg-cachepress-strings.php:58 src-js/sg-cachepress-strings.php:107
382
  msgid ""
383
+ "We will optimize all your existing images with minimal or no loss in "
384
+ "quality. Note, that this will overwrite your original images."
385
  msgstr ""
386
  "Optimizaremos todas tus imágenes con un perdida mínima o nula de calidad. "
387
  "Ten en cuenta, esto sobreescribirá tus imágenes originales."
389
  #. src-js/components/tabs/image-optimization/index.jsx:105
390
  #: src-js/sg-cachepress-strings.php:59
391
  msgid "Start Optimization"
392
+ msgstr "Comenzar optimización"
393
 
394
  #. src-js/components/tabs/image-optimization/index.jsx:131
395
  #. src-js/containers/php-checker/index.jsx:212
396
  #: src-js/sg-cachepress-strings.php:60 src-js/sg-cachepress-strings.php:131
397
  msgid ""
398
  "We've detected that the WordPress cronjob functionality is not working. "
399
+ "Please, enable it following the instructions in {{link}}this article{{/"
400
+ "link}} and refresh this page. If you’re using a real cron job, you can "
401
+ "{{link2}}ignore this message{{/link2}} at your own risk. Note, that in this "
402
+ "case, those operations may take longer than usual to complete."
403
+ msgstr ""
404
+ "Hemos detectado que la funcionalidad cronjob de WordPress no funciona. Por "
405
+ "favor, actívala siguiendo las instrucciones de {{link}}este artículo{{/"
406
+ "link}} y actualiza esta página. Si estás utilizando una tarea cron real, "
407
+ "puedes {{link2}}ignorar este mensaje{{/link2}} bajo tu propio riesgo. Ten en "
408
+ "cuenta que, en este caso, estas operaciones pueden tardar más de lo habitual "
409
+ "en completarse."
410
 
411
  #. src-js/components/php-checker/index.jsx:223
412
  #. src-js/components/tabs/multisite-control/index.jsx:547
492
  #. src-js/components/tabs/image-optimization/index.jsx:283
493
  #: src-js/sg-cachepress-strings.php:72 src-js/sg-cachepress-strings.php:116
494
  msgid "Lazy Load Widgets"
495
+ msgstr "Carga diferida de widgets"
496
 
497
  #. src-js/components/tabs/image-optimization/index.jsx:315
498
  #: src-js/sg-cachepress-strings.php:73 src-js/sg-cachepress-strings.php:117
506
  #. src-js/components/tabs/multisite-control/index.jsx:339
507
  #: src-js/sg-cachepress-strings.php:74
508
  msgid "Site Admin Permissions"
509
+ msgstr "Permisos de administrador del sitio"
510
 
511
  #. src-js/components/tabs/multisite-control/index.jsx:372
512
  #: src-js/sg-cachepress-strings.php:75
519
  #. src-js/components/tabs/multisite-control/index.jsx:87
520
  #: src-js/sg-cachepress-strings.php:76 helpers/manual-translations.php:2
521
  msgid "SuperCacher Settings"
522
+ msgstr "Ajustes de SuperCacher"
523
 
524
  #. src-js/components/tabs/multisite-control/index.jsx:402
525
  #: src-js/sg-cachepress-strings.php:77
533
  #. src-js/components/tabs/multisite-control/index.jsx:405
534
  #: src-js/sg-cachepress-strings.php:78
535
  msgid "Frontend Optimizations"
536
+ msgstr "Optimizaciones en portada"
537
 
538
  #. src-js/components/tabs/multisite-control/index.jsx:434
539
  #: src-js/sg-cachepress-strings.php:79
589
  #. src-js/components/tabs/sites-control/index.jsx:103
590
  #: src-js/sg-cachepress-strings.php:89
591
  msgid "ENVIRONMENT OPTIMIZATION"
592
+ msgstr "OPTIMIZACIÓN DEL ENTORNO"
593
 
594
  #. src-js/components/tabs/sites-control/index.jsx:208
595
  #: src-js/sg-cachepress-strings.php:94
596
  msgid "FRONTEND OPTIMIZATION"
597
+ msgstr "OPTIMIZACIÓN DE PORTADA"
598
 
599
  #. src-js/components/tabs/frontend-optimization/index.jsx:65
600
  #: src-js/sg-cachepress-strings.php:98
617
  #. src-js/components/tabs/sites-control/index.jsx:395
618
  #: src-js/sg-cachepress-strings.php:105
619
  msgid "IMAGE OPTIMIZATION"
620
+ msgstr "OPTIMIZACIÓN DE IMÁGENES"
621
 
622
  #. src-js/components/tabs/sites-control/index.jsx:425
623
  #: src-js/sg-cachepress-strings.php:106 helpers/manual-translations.php:5
624
  msgid "Image Optimization"
625
+ msgstr "Optimización de imágenes"
626
 
627
  #. src-js/components/tabs/supercacher/index.jsx:117
628
  #: src-js/sg-cachepress-strings.php:118
629
  msgid "Memcached Stopped. Please, enable it in cPanel."
630
+ msgstr "Memcached parado. Por favor, actívalo en cPanel."
631
 
632
  #. Page title.
633
  #. Name of the plugin
646
  msgstr ""
647
  "Obtén el mejor rendimiento de tu web WordPress con nuestro plugin de "
648
  "optimización. Se encarga de la caché, configuración de sistema y todas las "
649
+ "configuraciones necesarias para una página web consistente. ¡Con SiteGround "
650
+ "Optimizer activado obtienes el mejor rendimiento de tu entorno de "
651
+ "alojamiento!"
652
 
653
  #. src-js/components/dialogs/urls-dialog.jsx:54
654
  #: src-js/sg-cachepress-strings.php:121
655
  msgid " (Current & Recommended)"
656
+ msgstr " (Actual y recomendado)"
657
 
658
  #. src-js/components/php-checker/index.jsx:77
659
  #: src-js/sg-cachepress-strings.php:122
660
  msgid " (Current)"
661
+ msgstr " (Actual)"
662
 
663
  #. src-js/components/php-checker/index.jsx:79
664
  #: src-js/sg-cachepress-strings.php:123
665
  msgid " (Recommended)"
666
+ msgstr " (Recomendado)"
667
 
668
  #. src-js/components/php-checker/index.jsx:81
669
  #: src-js/sg-cachepress-strings.php:124
670
  msgid "Old PHP Version (Current)"
671
+ msgstr "Versión antigua de PHP (Actual)"
672
 
673
  #. src-js/components/php-checker/index.jsx:92
674
  #. src-js/components/php-checker/index.jsx:136
684
  #. src-js/components/php-checker/index.jsx:158
685
  #: src-js/sg-cachepress-strings.php:128
686
  msgid "Check PHP %(version)s Compatibility"
687
+ msgstr "Comprobar compatibilidad con la versión de PHP %(version)s"
688
 
689
  #. src-js/components/php-checker/index.jsx:158
690
  #: src-js/sg-cachepress-strings.php:129
706
  "You are running PHP %(version)s which is the minimum recommended or higher "
707
  "PHP version."
708
  msgstr ""
709
+ "Estás usando la versión de PHP %(version)s que es la mínima recomendada o superior."
 
710
 
711
  #. src-js/components/php-checker/index.jsx:244
712
  #: src-js/sg-cachepress-strings.php:134
746
 
747
  #: core/Options/Options.php:334
748
  msgid "Autoflush"
749
+ msgstr "Vaciado automático"
750
 
751
  #: core/Options/Options.php:335
752
  msgid "Memcache"
753
+ msgstr "Memcached"
754
 
755
  #: core/Options/Options.php:336
756
  msgid "HTTPS"
762
 
763
  #: core/Options/Options.php:340
764
  msgid "HTML Minification"
765
+ msgstr "Minimización de HTML"
766
 
767
  #: core/Options/Options.php:341
768
  msgid "JavaScript Minification"
770
 
771
  #: core/Options/Options.php:342
772
  msgid "CSS Minification"
773
+ msgstr "Minimización de CSS"
774
 
775
  #: core/Options/Options.php:343
776
  msgid "Query Strings Removal"
798
 
799
  #: core/Options/Options.php:349
800
  msgid "Lazy Loading Widgets"
801
+ msgstr "Carga diferida de widgets"
802
 
803
  #: core/Options/Options.php:350
804
  msgid "Can Config SuperCacher"
805
+ msgstr "Puede configurar SuperCacher"
806
 
807
  #: core/Options/Options.php:351
808
  msgid "Can Optimize Frontend"
809
+ msgstr "Puede optimizar la portada"
810
 
811
  #: core/Options/Options.php:352
812
  msgid "Can Optimize Images"
813
+ msgstr "Puede optimizar imágenes"
814
 
815
  #: core/Options/Options.php:353
816
  msgid "Can Optimize Environment"
817
+ msgstr "Puede optimizar el entorno"
818
 
819
  #: core/Options/Options.php:358
820
  msgid "Option"
823
  #: core/Options/Options.php:362
824
  #, php-format
825
  msgid "%s Enabled"
826
+ msgstr "%s activado"
827
 
828
  #: core/Options/Options.php:365
829
  #, php-format
830
  msgid "%s Disabled"
831
+ msgstr "%s desactivado"
832
 
833
  #: core/Options/Options.php:370
834
  #, php-format
835
  msgid "Could not enable %s"
836
+ msgstr "¡No se puede activar %s"
837
 
838
  #: core/Options/Options.php:373
839
  #, php-format
840
  msgid "Could not disable %s"
841
+ msgstr "¡No se pudo desactivar %s"
842
 
843
  #: core/Admin/Admin_Bar.php:36 core/Admin/Admin.php:303
844
  msgid "Purge SG Cache"
845
+ msgstr "Vaciar SG Cache"
846
 
847
  #: core/Admin/Admin.php:232
848
  msgid ""
849
  "SG Optimizer has detected that Memcached was turned off. If you want to use "
850
  "it, please enable it from cPanel first."
851
  msgstr ""
852
+ "SG Optimizer ha detectado que Memcached se ha desactivado. Si quieres "
853
+ "usarlo, por favor actívalo primero desde el cPanel."
854
 
855
  #: core/Modules/Modules.php:444
856
  #, php-format
858
  "<strong>Important message from SG Optimizer plugin</strong>: We have "
859
  "detected that there is duplicate functionality with other plugins installed "
860
  "on your site: <strong>%1$s</strong> and have deactivated the following "
861
+ "functions from our plugin: <strong>%2$s</strong>. If you wish to enable "
862
+ "them, please do that from the SG Optimizer config page."
863
  msgstr ""
864
+ "<strong>Mensaje importante del plugin SG Optimizer</strong>: Hemos detectado "
865
+ "que hay una funcionalidad duplicada con otros plugins instalados en tu "
866
+ "sitio: <strong>%1$s</strong> y hemos desactivado las siguientes "
867
+ "funcionalidades de nuestro plugin: <strong>%2$s</strong>.Si quieres "
868
+ "activarlas, por favor, hazlo desde la página de configuración de SG "
869
+ "Optimizer."
870
 
871
  #: core/Modules/Modules.php:475
872
  #, php-format
878
  "hurt your pages loading times so we recommend you to leave only one of the "
879
  "plugins active."
880
  msgstr ""
881
+ "<strong> Advertencia importante del plugin SG Optimizer </strong>: Hemos "
882
+ "detectado que hay una funcionalidad duplicada con otros plugins instalados "
883
+ "en tu sitio: <strong>%s</strong>. Ten en cuenta que tener dos plugins con la "
884
+ "misma funcionalidad puede en realidad disminuir el rendimiento de tu sitio y "
885
+ "dañar los tiempos de carga de tus páginas, por lo que te recomendamos que "
886
+ "dejes activo sólo uno de los plugins."
887
 
888
  #: core/Rest/Rest_Helper.php:204
889
  msgid ""
890
  "SG Optiimzer was unable to connect to the Memcached server and it was "
891
  "disabled. Please, check your cPanel and turn it on if disabled."
892
  msgstr ""
893
+ "SG Optimizer no puede conectarse con el servidor Memcached y fue "
894
+ "desactivado. Por favor, comprueba tu cPanel y actívalo si estaba desactivado."
895
 
896
  #: core/Rest/Rest_Helper.php:215
897
  msgid "Memcached Enabled"
899
 
900
  #: core/Rest/Rest_Helper.php:223
901
  msgid "Could Not Enable Memcache!"
902
+ msgstr "¡No se puede activar Memcached!"
903
 
904
  #: core/Rest/Rest_Helper.php:241 core/Rest/Rest_Helper.php:253
905
  msgid "Memcache Disabled!"
906
+ msgstr "¡Memcached Desactivado!"
907
 
908
  #: core/Rest/Rest_Helper.php:261
909
  msgid "Could Not Disable Memcache!"
910
+ msgstr "¡No se pudo desactivar Memcached!"
911
 
912
  #: core/Rest/Rest_Helper.php:354
913
  msgid "PHP Version has been changed"
914
+ msgstr "La versión PHP ha cambiado"
915
 
916
  #: core/Rest/Rest_Helper.php:354
917
  msgid "Cannot change PHP Version"
918
+ msgstr "No se puede cambiar la versión de PHP"
919
 
920
  #. Description of the plugin
921
  msgid ""
922
  "This plugin will link your WordPress application with all the performance "
923
  "optimizations provided by SiteGround"
924
  msgstr ""
925
+ "Este plugin enlazará tu aplicación WordPress con todas las optimizaciones de "
926
+ "rendimiento ofrecidas por SiteGround"
927
 
928
  #. Author of the plugin
929
  msgid "SiteGround"
readme.txt CHANGED
@@ -101,6 +101,17 @@ Our plugin uses a cookie in order to function properly. It does not store person
101
 
102
  == Changelog ==
103
 
 
 
 
 
 
 
 
 
 
 
 
104
  = Version 5.0.9 =
105
  * Fixed woocommerce bugs
106
  * Improved memcached flush
101
 
102
  == Changelog ==
103
 
104
+ = Version 5.0.10 =
105
+ * Fixed issue with Mythemeshop themes
106
+ * Fixed issues with exclude URL on update
107
+ * Fixed issues with exclude URL on update
108
+ * Exclude Lazy Load from AMP pages
109
+ * Exclude Lazy Load from Backend pages
110
+ * Fixed WPML problems
111
+ * Fixed Beaver Builder issues
112
+ * Fixed Spanish translations
113
+ * Fixed incompatibility with JCH Optimize
114
+
115
  = Version 5.0.9 =
116
  * Fixed woocommerce bugs
117
  * Improved memcached flush
sg-cachepress.php CHANGED
@@ -9,7 +9,7 @@
9
  * @wordpress-plugin
10
  * Plugin Name: SG Optimizer
11
  * Description: This plugin will link your WordPress application with all the performance optimizations provided by SiteGround
12
- * Version: 5.0.9
13
  * Author: SiteGround
14
  * Text Domain: sg-cachepress
15
  * Domain Path: /languages
@@ -44,15 +44,17 @@ if ( ! defined( __NAMESPACE__ . '\DIR' ) ) {
44
 
45
  // Define root URL.
46
  if ( ! defined( __NAMESPACE__ . '\URL' ) ) {
47
- $url = \trailingslashit( DIR );
48
 
49
  // Sanitize directory separator on Windows.
50
- $url = str_replace( '\\', '/', $url );
51
 
52
  $wp_plugin_dir = str_replace( '\\', '/', WP_PLUGIN_DIR );
53
- $url = str_replace( $wp_plugin_dir, \plugins_url(), $url );
54
 
55
- define( __NAMESPACE__ . '\URL', \untrailingslashit( $url ) );
 
 
56
  }
57
 
58
  require_once( \SiteGround_Optimizer\DIR . '/vendor/autoload.php' );
9
  * @wordpress-plugin
10
  * Plugin Name: SG Optimizer
11
  * Description: This plugin will link your WordPress application with all the performance optimizations provided by SiteGround
12
+ * Version: 5.0.10
13
  * Author: SiteGround
14
  * Text Domain: sg-cachepress
15
  * Domain Path: /languages
44
 
45
  // Define root URL.
46
  if ( ! defined( __NAMESPACE__ . '\URL' ) ) {
47
+ $root_url = \trailingslashit( DIR );
48
 
49
  // Sanitize directory separator on Windows.
50
+ $root_url = str_replace( '\\', '/', $root_url );
51
 
52
  $wp_plugin_dir = str_replace( '\\', '/', WP_PLUGIN_DIR );
53
+ $root_url = str_replace( $wp_plugin_dir, \plugins_url(), $root_url );
54
 
55
+ define( __NAMESPACE__ . '\URL', \untrailingslashit( $root_url ) );
56
+
57
+ unset( $root_url );
58
  }
59
 
60
  require_once( \SiteGround_Optimizer\DIR . '/vendor/autoload.php' );