account-status-connected.php
2 months ago
account-status-create-advanced.php
2 months ago
account-status-create-simple.php
2 months ago
account-status-loading.php
4 years ago
bulk-optimization-form.php
7 months ago
bulk-optimization-upgrade-notice.php
2 months ago
bulk-optimization.php
2 months ago
compress-details-processing.php
2 months ago
compress-details.php
2 months ago
dashboard-widget.php
2 months ago
notice-feedback.php
2 months ago
optimization-chart.php
2 months ago
request-review.php
4 months ago
settings-conversion-delivery.php
4 months ago
settings-conversion-enabled.php
4 months ago
settings-conversion-output.php
4 months ago
settings-conversion.php
4 months ago
settings-diagnostics.php
7 months ago
settings-original-image-original.php
4 months ago
settings-original-image-preserve.php
4 months ago
settings-original-image.php
1 week ago
settings.php
4 months ago
compress-details-processing.php
16 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Loading indicator on media overview page |
| 4 | * |
| 5 | * @var Tiny_Image $tiny_image |
| 6 | */ |
| 7 | ?> |
| 8 | <div class="details-container" data-status="compressing" data-id="<?php echo esc_attr( $tiny_image->get_id() ); ?>"> |
| 9 | <div class="details"> |
| 10 | <span class="icon spinner"></span> |
| 11 | <span class="message"> |
| 12 | <span><?php esc_html_e( 'compressing', 'tiny-compress-images' ); ?></span> |
| 13 | </span> |
| 14 | </div> |
| 15 | </div> |
| 16 |