Service_Provider::get_updated_merge_notice_message()


Source

File: src/Tribe/Integrations/Event_Automator/Service_Provider.php

	public function get_updated_merge_notice_message(): string {
		return sprintf(
			/* translators: %1$s is the plugin that was deactivated, %2$s is the plugin name, %3$s is the opening anchor tag, %4$s is the closing anchor tag. */
			_x(
				'%1$s has been deactivated as it\'s now bundled into %2$s. %3$sLearn More%4$s.',
				'Notice message for the forced deactivation of the Event Automator plugin after updating Events Pro to the merged version.',
				'tribe-events-calendar-pro'
			),
			'Event Automator',
			'The Events Calendar Pro',
			'<a target="_blank" href="https://evnt.is/1bdy">',
			'</a>'
		);
	}