get_channel_short_name_from_feed_id( $feed_id ) : '';
$feed_type_parameter = wppfm_get_url_parameter( 'feed-type' );
$feed_type = null !== $feed_type_parameter ? $feed_type_parameter : ''; // Convert null to an empty string to prevent an issue with the str_contains function
$feed_type_name = wppfm_convert_string_with_dashes_to_upper_case_string_with_spaces( $feed_type );
$channel_feed_specifications = 'google' === $channel_short_name || strpos( $feed_type, 'google' ) !== false ? $data_class->get_support_feed_specifications_url( $feed_type ) : $channel_class->get_channel_specifications_link( $channel_short_name );
$new_feed_text = 1 > $feed_id ? __( ' Select the products you want in the feed by selecting the correct Shop Category and make sure the required attributes are set correctly', 'wp-product-feed-manager' ) : '';
$feed_specifications_link = $channel_feed_specifications ? '
' . __( 'Click here to view the specifications for this feed.', 'wp-product-feed-manager' ) . '' : '';
/* translators: %1$s: feed type name, %2$s: Initial description of how to start the feed setup, %3$s: Link to the feed specifications */
return '' !== $feed_type ? sprintf( __( 'Here you can edit the parameters of your new %1$s.%2$s%3$s', 'wp-product-feed-manager' ), $feed_type_name, $new_feed_text, $feed_specifications_link ) :
__( 'Here you can set up your new feed. Start by entering a name for your feed and selecting a channel.', 'wp-product-feed-manager' );
}