| 1 |
<?php |
| 2 |
defined( 'ABSPATH' ) || die( 'Cheatin’ uh?' ); |
| 3 |
|
| 4 |
$this->print_template( 'notice-header', array( |
| 5 |
'classes' => array( 'updated' ), |
| 6 |
) ); |
| 7 |
?> |
| 8 |
<p> |
| 9 |
<?php |
| 10 |
printf( |
| 11 |
/* translators: 1 is a "bold" tag start, 2 is the "bold" tag end, 3 is a formatted number (don't use %3$d). */ |
| 12 |
__( '%1$sCongratulations%2$s, you have optimized %1$s%3$s images%2$s and improved your website\'s speed by reducing your images size.', 'imagify' ), |
| 13 |
'<strong>', |
| 14 |
'</strong>', |
| 15 |
number_format_i18n( $data ) |
| 16 |
); |
| 17 |
?> |
| 18 |
</p> |
| 19 |
<p class="imagify-rate-us"> |
| 20 |
<?php |
| 21 |
printf( |
| 22 |
/* translators: 1 is a "bold" tag start, 2 is the "bold" tag end + a line break tag, 3 is a link tag start, 4 is the link tag end. */ |
| 23 |
__( '%1$sDo you like this plugin?%2$s Please take a few seconds to %3$srate it on WordPress.org%4$s!', 'imagify' ), |
| 24 |
'<strong>', |
| 25 |
'</strong><br />', |
| 26 |
'<a target="_blank" href="' . esc_url( imagify_get_external_url( 'rate' ) ) . '">', |
| 27 |
'</a>' |
| 28 |
); |
| 29 |
?> |
| 30 |
<br> |
| 31 |
<a class="stars" target="_blank" href="<?php echo esc_url( imagify_get_external_url( 'rate' ) ); ?>">☆☆☆☆☆</a> |
| 32 |
</p> |
| 33 |
<?php |
| 34 |
$this->print_template( 'notice-footer', array( |
| 35 |
'dismissible' => 'rating', |
| 36 |
) ); |
| 37 |
|