PluginProbe
Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF / 1.7
Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF v1.7
2.3.4 2.3.3 2.3.2 2.3.1 2.3.0 2.2.9 2.2.8 trunk 1.10 1.3.3 1.3.4 1.3.5 1.3.5.1 1.3.5.2 1.3.6 1.3.6.1 1.4 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.5 All 103 releases
imagify / views / modal-settings-infos.php

modal-settings-infos.php in Imagify Image Optimization: Optimize Images | Compress & Convert to WebP/AVIF 1.7, at views/modal-settings-infos.php

58 lines 2.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 defined( 'ABSPATH' ) || die( 'Cheatin\' uh?' );
3
4 ?>
5
6 <div class="imagify-modal" id="imagify-more-info">
7 <div class="imagify-modal-content">
8 <p class="h2"><?php _e( 'You can choose three levels of compression', 'imagify' ); ?></p>
9 <div class="imagify-columns">
10 <div class="col-1-3">
11 <p class="h3"><?php _e( 'Normal', 'imagify' ); ?></p>
12 <p>
13 <?php _e( 'This mode provides lossless optimization, your images will be optimized without any visible change.', 'imagify' ); ?>
14 </p>
15 <p>
16 <?php _e( 'If you want the perfect quality for your images, we recommend you that mode.', 'imagify' ); ?>
17 </p>
18 <p>
19 <em><?php _e( 'Note: the file size reduction will be less, compared to aggressive mode.', 'imagify' ); ?></em>
20 </p>
21 </div>
22
23 <div class="col-1-3">
24 <p class="h3"><?php _e( 'Aggressive', 'imagify' ); ?></p>
25 <p>
26 <?php _e( 'This mode provides perfect optimization of your images without any significant quality loss.', 'imagify' ); ?>
27 </p>
28 <p>
29 <?php _e( 'This will provide a drastic savings on the initial weight, with a small reduction in image quality. Most of the time it\'s not even noticeable.', 'imagify' ); ?>
30 </p>
31 <p>
32 <?php _e( 'If you want the maximum weight reduction, we recommend using this mode.' , 'imagify' ); ?>
33 </p>
34 </div>
35
36 <div class="col-1-3">
37 <p class="h3"><?php _e( 'Ultra', 'imagify' ); ?></p>
38 <p>
39 <?php _e( 'This mode will apply all available optimizations for maximum image compression.', 'imagify' ); ?>
40 </p>
41 <p>
42 <?php _e( 'This will provide a huge savings on the initial weight. Sometimes the image quality could be degraded a little.', 'imagify' ); ?>
43 </p>
44 <p>
45 <?php _e( 'If you want the maximum weight reduction, and you agree to lose some quality on the images we recommend using this mode.' , 'imagify' ); ?>
46 </p>
47 </div>
48 </div>
49
50 <button type="button" class="close-btn">
51 <i class="dashicons dashicons-no-alt" aria-hidden="true"></i>
52 <span class="screen-reader-text"><?php _e( 'Close' ); ?></span>
53 </button>
54 </div>
55 </div>
56
57 <?php
58