mirror of
https://github.com/oblakstudio/wp-plugin-installer.git
synced 2026-03-03 23:57:22 +08:00
21 lines
375 B
PHP
21 lines
375 B
PHP
<?php
|
|
/**
|
|
* Admin View: Notice - Updated.
|
|
*
|
|
* @package Plugin Installer
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
?>
|
|
<p>
|
|
<?php
|
|
printf(
|
|
/* translators: %s: plugin name */
|
|
esc_html__( '%s database update complete. Thank you for updating to the latest version!', 'oblak-plugin-installer' ),
|
|
esc_html( $plugin_name )
|
|
);
|
|
?>
|
|
</p>
|