diff --git a/class-merlin.php b/class-merlin.php index a62423e..0167bf4 100755 --- a/class-merlin.php +++ b/class-merlin.php @@ -7,7 +7,7 @@ * Envato WordPress Theme Setup Wizard by David Baker. * * @package Merlin WP - * @version @@pkg.version + * @version 1.0.0 * @link https://merlinwp.com/ * @author Rich Tabor, from ThemeBeans.com & the team at ProteusThemes.com * @copyright Copyright (c) 2018, Merlin WP of Inventionn LLC @@ -222,7 +222,7 @@ class Merlin { private function version() { if ( ! defined( 'MERLIN_VERSION' ) ) { - define( 'MERLIN_VERSION', '@@pkg.version' ); + define( 'MERLIN_VERSION', '1.0.0' ); } } @@ -2381,12 +2381,29 @@ public function get_import_steps_html( $import_info ) { if ( ! $available ) { continue; } + + switch($slug) { + case 'content': + $import_title = esc_html__('Content', '@@textdomain'); + break; + + case 'widgets': + $import_title = esc_html__('Widgets', '@@textdomain'); + break; + + case 'options': + $import_title = esc_html__('Options', '@@textdomain'); + break; + + default: + $import_title = esc_html__('After Import', '@@textdomain'); + } ?>