| 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 |
|