Completed
Branch barista (8c74ff)
by
unknown
42:46 queued 33:44
created
core/domain/entities/admin/GraphQLData/Event.php 2 patches
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -5,13 +5,13 @@  discard block
 block discarded – undo
5 5
 class Event extends GraphQLData
6 6
 {
7 7
 
8
-    /**
9
-     * @inheritDoc
10
-     */
11
-    public function getData(array $params = [])
12
-    {
13
-        $field_key = lcfirst($this->namespace) . 'Event';
14
-        $query     = <<<QUERY
8
+	/**
9
+	 * @inheritDoc
10
+	 */
11
+	public function getData(array $params = [])
12
+	{
13
+		$field_key = lcfirst($this->namespace) . 'Event';
14
+		$query     = <<<QUERY
15 15
         query GET_EVENT(\$id: ID!) {
16 16
             {$field_key}(id: \$id, idType: DATABASE_ID) {
17 17
                 id
@@ -48,14 +48,14 @@  discard block
 block discarded – undo
48 48
             }
49 49
         }
50 50
 QUERY;
51
-        $this->setParams(
52
-            [
53
-                'operation_name' => 'GET_EVENT',
54
-                'variables'      => $params,
55
-                'query'          => $query,
56
-            ]
57
-        );
51
+		$this->setParams(
52
+			[
53
+				'operation_name' => 'GET_EVENT',
54
+				'variables'      => $params,
55
+				'query'          => $query,
56
+			]
57
+		);
58 58
 
59
-        return $this->getQueryResponse($field_key);
60
-    }
59
+		return $this->getQueryResponse($field_key);
60
+	}
61 61
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
      */
11 11
     public function getData(array $params = [])
12 12
     {
13
-        $field_key = lcfirst($this->namespace) . 'Event';
13
+        $field_key = lcfirst($this->namespace).'Event';
14 14
         $query     = <<<QUERY
15 15
         query GET_EVENT(\$id: ID!) {
16 16
             {$field_key}(id: \$id, idType: DATABASE_ID) {
Please login to merge, or discard this patch.
core/domain/entities/routing/handlers/admin/EspressoEventEditor.php 1 patch
Indentation   +121 added lines, -121 removed lines patch added patch discarded remove patch
@@ -18,130 +18,130 @@
 block discarded – undo
18 18
 class EspressoEventEditor extends EspressoEventsAdmin
19 19
 {
20 20
 
21
-    /**
22
-     * returns true if the current request matches this route
23
-     *
24
-     * @return bool
25
-     * @since   $VID:$
26
-     */
27
-    public function matchesCurrentRequest()
28
-    {
29
-        return parent::matchesCurrentRequest()
30
-               && $this->admin_config->useAdvancedEditor()
31
-               && (
32
-                $this->request->getRequestParam('action') === 'create_new'
33
-                || $this->request->getRequestParam('action') === 'edit'
34
-            );
35
-    }
21
+	/**
22
+	 * returns true if the current request matches this route
23
+	 *
24
+	 * @return bool
25
+	 * @since   $VID:$
26
+	 */
27
+	public function matchesCurrentRequest()
28
+	{
29
+		return parent::matchesCurrentRequest()
30
+			   && $this->admin_config->useAdvancedEditor()
31
+			   && (
32
+				$this->request->getRequestParam('action') === 'create_new'
33
+				|| $this->request->getRequestParam('action') === 'edit'
34
+			);
35
+	}
36 36
 
37 37
 
38
-    /**
39
-     * @since $VID:$
40
-     */
41
-    protected function registerDependencies()
42
-    {
43
-        $this->dependency_map->registerDependencies(
44
-            'EventEspresso\core\domain\services\admin\events\editor\EventEditorGraphQLData',
45
-            [
46
-                'EventEspresso\core\domain\entities\admin\GraphQLData\Datetimes'                 => EE_Dependency_Map::load_from_cache,
47
-                'EventEspresso\core\domain\entities\admin\GraphQLData\Event'                     => EE_Dependency_Map::load_from_cache,
48
-                'EventEspresso\core\domain\entities\admin\GraphQLData\Prices'                    => EE_Dependency_Map::load_from_cache,
49
-                'EventEspresso\core\domain\entities\admin\GraphQLData\PriceTypes'                => EE_Dependency_Map::load_from_cache,
50
-                'EventEspresso\core\domain\entities\admin\GraphQLData\Tickets'                   => EE_Dependency_Map::load_from_cache,
51
-                'EventEspresso\core\domain\services\admin\events\editor\NewEventDefaultEntities' => EE_Dependency_Map::load_from_cache,
52
-                'EventEspresso\core\domain\services\admin\events\editor\EventEntityRelations'    => EE_Dependency_Map::load_from_cache,
53
-            ]
54
-        );
55
-        $this->dependency_map->registerDependencies(
56
-            'EventEspresso\core\domain\services\admin\events\editor\EventEntityRelations',
57
-            [
58
-                'EEM_Datetime'                                         => EE_Dependency_Map::load_from_cache,
59
-                'EEM_Event'                                            => EE_Dependency_Map::load_from_cache,
60
-                'EEM_Price'                                            => EE_Dependency_Map::load_from_cache,
61
-                'EEM_Price_Type'                                       => EE_Dependency_Map::load_from_cache,
62
-                'EEM_Ticket'                                           => EE_Dependency_Map::load_from_cache,
63
-                'EventEspresso\core\domain\services\graphql\Utilities' => EE_Dependency_Map::load_from_cache,
64
-            ]
65
-        );
66
-        $this->dependency_map->registerDependencies(
67
-            'EventEspresso\core\domain\services\admin\events\editor\NewEventDefaultEntities',
68
-            [
69
-                'EventEspresso\core\domain\services\admin\entities\DefaultDatetimes' => EE_Dependency_Map::load_from_cache,
70
-                'EEM_Datetime'                                                       => EE_Dependency_Map::load_from_cache,
71
-                'EEM_Event'                                                          => EE_Dependency_Map::load_from_cache,
72
-                'EEM_Price'                                                          => EE_Dependency_Map::load_from_cache,
73
-                'EEM_Price_Type'                                                     => EE_Dependency_Map::load_from_cache,
74
-                'EEM_Ticket'                                                         => EE_Dependency_Map::load_from_cache,
75
-                'EventEspresso\core\domain\services\graphql\Utilities'               => EE_Dependency_Map::load_from_cache,
76
-            ]
77
-        );
78
-        $this->dependency_map->registerDependencies(
79
-            'EventEspresso\core\domain\services\admin\entities\DefaultDatetimes',
80
-            [
81
-                'EventEspresso\core\domain\services\admin\entities\DefaultTickets' => EE_Dependency_Map::load_from_cache,
82
-                'EEM_Datetime'                                                     => EE_Dependency_Map::load_from_cache,
83
-            ]
84
-        );
85
-        $this->dependency_map->registerDependencies(
86
-            'EventEspresso\core\domain\services\admin\entities\DefaultTickets',
87
-            [
88
-                'EventEspresso\core\domain\services\admin\entities\DefaultPrices' => EE_Dependency_Map::load_from_cache,
89
-                'EEM_Ticket'                                                      => EE_Dependency_Map::load_from_cache,
90
-            ]
91
-        );
92
-        $this->dependency_map->registerDependencies(
93
-            'EventEspresso\core\domain\services\admin\entities\DefaultPrices',
94
-            [
95
-                'EEM_Price'      => EE_Dependency_Map::load_from_cache,
96
-                'EEM_Price_Type' => EE_Dependency_Map::load_from_cache,
97
-            ]
98
-        );
99
-        $this->dependency_map->registerDependencies(
100
-            'EventEspresso\core\domain\entities\routing\data_nodes\domains\EventEditor',
101
-            [
102
-                'EventEspresso\core\domain\services\admin\events\editor\EventEditorGraphQLData' => EE_Dependency_Map::load_from_cache,
103
-                'EventEspresso\core\services\json\JsonDataNodeValidator'                        => EE_Dependency_Map::load_from_cache,
104
-            ]
105
-        );
106
-        $this->dependency_map->registerDependencies(
107
-            'EventEspresso\core\domain\services\assets\EventEditorAssetManager',
108
-            [
109
-                'EventEspresso\core\domain\Domain'                   => EE_Dependency_Map::load_from_cache,
110
-                'EventEspresso\core\services\assets\AssetCollection' => EE_Dependency_Map::load_from_cache,
111
-                'EventEspresso\core\services\assets\Registry'        => EE_Dependency_Map::load_from_cache,
112
-            ]
113
-        );
114
-        $this->loader->getShared(
115
-            'EventEspresso\core\domain\entities\routing\data_nodes\EventEspressoData'
116
-        );
117
-        /** @var EventEditor $data_node */
118
-        $data_node = $this->loader->getShared(
119
-            'EventEspresso\core\domain\entities\routing\data_nodes\domains\EventEditor'
120
-        );
121
-        $this->setDataNode($data_node);
122
-    }
38
+	/**
39
+	 * @since $VID:$
40
+	 */
41
+	protected function registerDependencies()
42
+	{
43
+		$this->dependency_map->registerDependencies(
44
+			'EventEspresso\core\domain\services\admin\events\editor\EventEditorGraphQLData',
45
+			[
46
+				'EventEspresso\core\domain\entities\admin\GraphQLData\Datetimes'                 => EE_Dependency_Map::load_from_cache,
47
+				'EventEspresso\core\domain\entities\admin\GraphQLData\Event'                     => EE_Dependency_Map::load_from_cache,
48
+				'EventEspresso\core\domain\entities\admin\GraphQLData\Prices'                    => EE_Dependency_Map::load_from_cache,
49
+				'EventEspresso\core\domain\entities\admin\GraphQLData\PriceTypes'                => EE_Dependency_Map::load_from_cache,
50
+				'EventEspresso\core\domain\entities\admin\GraphQLData\Tickets'                   => EE_Dependency_Map::load_from_cache,
51
+				'EventEspresso\core\domain\services\admin\events\editor\NewEventDefaultEntities' => EE_Dependency_Map::load_from_cache,
52
+				'EventEspresso\core\domain\services\admin\events\editor\EventEntityRelations'    => EE_Dependency_Map::load_from_cache,
53
+			]
54
+		);
55
+		$this->dependency_map->registerDependencies(
56
+			'EventEspresso\core\domain\services\admin\events\editor\EventEntityRelations',
57
+			[
58
+				'EEM_Datetime'                                         => EE_Dependency_Map::load_from_cache,
59
+				'EEM_Event'                                            => EE_Dependency_Map::load_from_cache,
60
+				'EEM_Price'                                            => EE_Dependency_Map::load_from_cache,
61
+				'EEM_Price_Type'                                       => EE_Dependency_Map::load_from_cache,
62
+				'EEM_Ticket'                                           => EE_Dependency_Map::load_from_cache,
63
+				'EventEspresso\core\domain\services\graphql\Utilities' => EE_Dependency_Map::load_from_cache,
64
+			]
65
+		);
66
+		$this->dependency_map->registerDependencies(
67
+			'EventEspresso\core\domain\services\admin\events\editor\NewEventDefaultEntities',
68
+			[
69
+				'EventEspresso\core\domain\services\admin\entities\DefaultDatetimes' => EE_Dependency_Map::load_from_cache,
70
+				'EEM_Datetime'                                                       => EE_Dependency_Map::load_from_cache,
71
+				'EEM_Event'                                                          => EE_Dependency_Map::load_from_cache,
72
+				'EEM_Price'                                                          => EE_Dependency_Map::load_from_cache,
73
+				'EEM_Price_Type'                                                     => EE_Dependency_Map::load_from_cache,
74
+				'EEM_Ticket'                                                         => EE_Dependency_Map::load_from_cache,
75
+				'EventEspresso\core\domain\services\graphql\Utilities'               => EE_Dependency_Map::load_from_cache,
76
+			]
77
+		);
78
+		$this->dependency_map->registerDependencies(
79
+			'EventEspresso\core\domain\services\admin\entities\DefaultDatetimes',
80
+			[
81
+				'EventEspresso\core\domain\services\admin\entities\DefaultTickets' => EE_Dependency_Map::load_from_cache,
82
+				'EEM_Datetime'                                                     => EE_Dependency_Map::load_from_cache,
83
+			]
84
+		);
85
+		$this->dependency_map->registerDependencies(
86
+			'EventEspresso\core\domain\services\admin\entities\DefaultTickets',
87
+			[
88
+				'EventEspresso\core\domain\services\admin\entities\DefaultPrices' => EE_Dependency_Map::load_from_cache,
89
+				'EEM_Ticket'                                                      => EE_Dependency_Map::load_from_cache,
90
+			]
91
+		);
92
+		$this->dependency_map->registerDependencies(
93
+			'EventEspresso\core\domain\services\admin\entities\DefaultPrices',
94
+			[
95
+				'EEM_Price'      => EE_Dependency_Map::load_from_cache,
96
+				'EEM_Price_Type' => EE_Dependency_Map::load_from_cache,
97
+			]
98
+		);
99
+		$this->dependency_map->registerDependencies(
100
+			'EventEspresso\core\domain\entities\routing\data_nodes\domains\EventEditor',
101
+			[
102
+				'EventEspresso\core\domain\services\admin\events\editor\EventEditorGraphQLData' => EE_Dependency_Map::load_from_cache,
103
+				'EventEspresso\core\services\json\JsonDataNodeValidator'                        => EE_Dependency_Map::load_from_cache,
104
+			]
105
+		);
106
+		$this->dependency_map->registerDependencies(
107
+			'EventEspresso\core\domain\services\assets\EventEditorAssetManager',
108
+			[
109
+				'EventEspresso\core\domain\Domain'                   => EE_Dependency_Map::load_from_cache,
110
+				'EventEspresso\core\services\assets\AssetCollection' => EE_Dependency_Map::load_from_cache,
111
+				'EventEspresso\core\services\assets\Registry'        => EE_Dependency_Map::load_from_cache,
112
+			]
113
+		);
114
+		$this->loader->getShared(
115
+			'EventEspresso\core\domain\entities\routing\data_nodes\EventEspressoData'
116
+		);
117
+		/** @var EventEditor $data_node */
118
+		$data_node = $this->loader->getShared(
119
+			'EventEspresso\core\domain\entities\routing\data_nodes\domains\EventEditor'
120
+		);
121
+		$this->setDataNode($data_node);
122
+	}
123 123
 
124 124
 
125
-    /**
126
-     * implements logic required to run during request
127
-     *
128
-     * @return bool
129
-     * @since   $VID:$
130
-     */
131
-    protected function requestHandler()
132
-    {
133
-        if (! class_exists('WPGraphQL')) {
134
-            require_once EE_THIRD_PARTY . 'wp-graphql/wp-graphql.php';
135
-        }
136
-        /** @var GraphQLManager $graphQL_manager */
137
-        $graphQL_manager = $this->loader->getShared('EventEspresso\core\services\graphql\GraphQLManager');
138
-        $graphQL_manager->init();
125
+	/**
126
+	 * implements logic required to run during request
127
+	 *
128
+	 * @return bool
129
+	 * @since   $VID:$
130
+	 */
131
+	protected function requestHandler()
132
+	{
133
+		if (! class_exists('WPGraphQL')) {
134
+			require_once EE_THIRD_PARTY . 'wp-graphql/wp-graphql.php';
135
+		}
136
+		/** @var GraphQLManager $graphQL_manager */
137
+		$graphQL_manager = $this->loader->getShared('EventEspresso\core\services\graphql\GraphQLManager');
138
+		$graphQL_manager->init();
139 139
 
140
-        /** @var EventEditorAssetManager $asset_manager */
141
-        $asset_manager = $this->loader->getShared(
142
-            'EventEspresso\core\domain\services\assets\EventEditorAssetManager'
143
-        );
144
-        add_action('admin_enqueue_scripts', [$asset_manager, 'enqueueEventEditor']);
145
-        return true;
146
-    }
140
+		/** @var EventEditorAssetManager $asset_manager */
141
+		$asset_manager = $this->loader->getShared(
142
+			'EventEspresso\core\domain\services\assets\EventEditorAssetManager'
143
+		);
144
+		add_action('admin_enqueue_scripts', [$asset_manager, 'enqueueEventEditor']);
145
+		return true;
146
+	}
147 147
 }
Please login to merge, or discard this patch.
core/domain/entities/routing/data_nodes/domains/EventEditor.php 1 patch
Indentation   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -20,47 +20,47 @@
 block discarded – undo
20 20
 class EventEditor extends JsonDataNode
21 21
 {
22 22
 
23
-    const NODE_NAME = 'eventEditor';
23
+	const NODE_NAME = 'eventEditor';
24 24
 
25 25
 
26
-    /**
27
-     * @var EventEditorGraphQLData
28
-     */
29
-    protected $event_editor_gql_data;
26
+	/**
27
+	 * @var EventEditorGraphQLData
28
+	 */
29
+	protected $event_editor_gql_data;
30 30
 
31 31
 
32
-    /**
33
-     * EventEditor JsonDataNode constructor.
34
-     *
35
-     * @param EventEditorGraphQLData $event_editor_gql_data
36
-     * @param JsonDataNodeValidator  $validator
37
-     */
38
-    public function __construct(
39
-        EventEditorGraphQLData $event_editor_gql_data,
40
-        JsonDataNodeValidator $validator
41
-    ) {
42
-        parent::__construct($validator);
43
-        $this->event_editor_gql_data = $event_editor_gql_data;
44
-        $this->setDomain(EventEditor::NODE_NAME);
45
-        $this->setNodeName(EventEditor::NODE_NAME);
46
-    }
32
+	/**
33
+	 * EventEditor JsonDataNode constructor.
34
+	 *
35
+	 * @param EventEditorGraphQLData $event_editor_gql_data
36
+	 * @param JsonDataNodeValidator  $validator
37
+	 */
38
+	public function __construct(
39
+		EventEditorGraphQLData $event_editor_gql_data,
40
+		JsonDataNodeValidator $validator
41
+	) {
42
+		parent::__construct($validator);
43
+		$this->event_editor_gql_data = $event_editor_gql_data;
44
+		$this->setDomain(EventEditor::NODE_NAME);
45
+		$this->setNodeName(EventEditor::NODE_NAME);
46
+	}
47 47
 
48 48
 
49
-    /**
50
-     * @throws EE_Error
51
-     * @throws ReflectionException
52
-     * @since $VID:$
53
-     */
54
-    public function initialize()
55
-    {
56
-        global $post;
57
-        $eventId = isset($_REQUEST['post']) ? absint($_REQUEST['post']) : 0;
58
-        // if there's no event ID but there IS a WP Post... then use the Post ID
59
-        $use_post_id = $eventId === 0 && $post instanceof WP_Post && $post->post_type === 'espresso_events';
60
-        $eventId = $use_post_id ? $post->ID : $eventId;
61
-        $related_data = $this->event_editor_gql_data->getData($eventId);
62
-        foreach ($related_data as $key => $value) {
63
-            $this->addData($key, $value);
64
-        }
65
-    }
49
+	/**
50
+	 * @throws EE_Error
51
+	 * @throws ReflectionException
52
+	 * @since $VID:$
53
+	 */
54
+	public function initialize()
55
+	{
56
+		global $post;
57
+		$eventId = isset($_REQUEST['post']) ? absint($_REQUEST['post']) : 0;
58
+		// if there's no event ID but there IS a WP Post... then use the Post ID
59
+		$use_post_id = $eventId === 0 && $post instanceof WP_Post && $post->post_type === 'espresso_events';
60
+		$eventId = $use_post_id ? $post->ID : $eventId;
61
+		$related_data = $this->event_editor_gql_data->getData($eventId);
62
+		foreach ($related_data as $key => $value) {
63
+			$this->addData($key, $value);
64
+		}
65
+	}
66 66
 }
Please login to merge, or discard this patch.
core/domain/services/graphql/types/Event.php 1 patch
Indentation   +200 added lines, -200 removed lines patch added patch discarded remove patch
@@ -21,209 +21,209 @@
 block discarded – undo
21 21
 class Event extends TypeBase
22 22
 {
23 23
 
24
-    /**
25
-     * Event constructor.
26
-     *
27
-     * @param EEM_Event $event_model
28
-     */
29
-    public function __construct(EEM_Event $event_model)
30
-    {
31
-        $this->model = $event_model;
32
-        $this->setName($this->namespace . 'Event');
33
-        $this->setIsCustomPostType(true);
34
-        parent::__construct();
35
-    }
24
+	/**
25
+	 * Event constructor.
26
+	 *
27
+	 * @param EEM_Event $event_model
28
+	 */
29
+	public function __construct(EEM_Event $event_model)
30
+	{
31
+		$this->model = $event_model;
32
+		$this->setName($this->namespace . 'Event');
33
+		$this->setIsCustomPostType(true);
34
+		parent::__construct();
35
+	}
36 36
 
37 37
 
38
-    /**
39
-     * @return GraphQLFieldInterface[]
40
-     * @since $VID:$
41
-     */
42
-    public function getFields()
43
-    {
44
-        $fields = [
45
-            new GraphQLOutputField(
46
-                'dbId',
47
-                ['non_null' => 'Int'],
48
-                'ID',
49
-                esc_html__('The event ID.', 'event_espresso')
50
-            ),
51
-            new GraphQLOutputField(
52
-                'cacheId',
53
-                ['non_null' => 'String'],
54
-                null,
55
-                esc_html__('The cache ID of the object.', 'event_espresso')
56
-            ),
57
-            new GraphQLField(
58
-                'name',
59
-                'String',
60
-                'name',
61
-                esc_html__('Event Name', 'event_espresso')
62
-            ),
63
-            new GraphQLField(
64
-                'description',
65
-                'String',
66
-                'description',
67
-                esc_html__('Event Description', 'event_espresso')
68
-            ),
69
-            new GraphQLField(
70
-                'shortDescription',
71
-                'String',
72
-                'short_description',
73
-                esc_html__('Event Short Description', 'event_espresso')
74
-            ),
75
-            new GraphQLField(
76
-                'created',
77
-                'String',
78
-                'created',
79
-                esc_html__('Date/Time Event Created', 'event_espresso')
80
-            ),
81
-            new GraphQLOutputField(
82
-                'wpUser',
83
-                'User',
84
-                null,
85
-                esc_html__('Event Creator', 'event_espresso')
86
-            ),
87
-            new GraphQLInputField(
88
-                'wpUser',
89
-                'Int',
90
-                null,
91
-                esc_html__('Event Creator ID', 'event_espresso')
92
-            ),
93
-            new GraphQLField(
94
-                'order',
95
-                'Int',
96
-                'order',
97
-                esc_html__('Event Menu Order', 'event_espresso')
98
-            ),
99
-            new GraphQLField(
100
-                'displayDescription',
101
-                'Boolean',
102
-                'display_description',
103
-                esc_html__('Display Description Flag', 'event_espresso')
104
-            ),
105
-            new GraphQLField(
106
-                'displayTicketSelector',
107
-                'Boolean',
108
-                'display_ticket_selector',
109
-                esc_html__('Display Ticket Selector Flag', 'event_espresso')
110
-            ),
111
-            new GraphQLField(
112
-                'visibleOn',
113
-                'String',
114
-                'visible_on',
115
-                esc_html__('Event Visible Date', 'event_espresso')
116
-            ),
117
-            new GraphQLField(
118
-                'maxRegistrations',
119
-                'Int',
120
-                'additional_limit',
121
-                esc_html__('Limit of Additional Registrations on Same Transaction', 'event_espresso')
122
-            ),
123
-            new GraphQLField(
124
-                'phoneNumber',
125
-                'String',
126
-                'phone',
127
-                esc_html__('Event Phone Number', 'event_espresso')
128
-            ),
129
-            new GraphQLField(
130
-                'memberOnly',
131
-                'Boolean',
132
-                'member_only',
133
-                esc_html__('Member-Only Event Flag', 'event_espresso')
134
-            ),
135
-            new GraphQLField(
136
-                'allowOverflow',
137
-                'Boolean',
138
-                'allow_overflow',
139
-                esc_html__('Allow Overflow on Event', 'event_espresso')
140
-            ),
141
-            new GraphQLField(
142
-                'timezoneString',
143
-                'String',
144
-                'timezone_string',
145
-                esc_html__('Timezone (name) for Event times', 'event_espresso')
146
-            ),
147
-            new GraphQLField(
148
-                'altRegPage',
149
-                'String',
150
-                'external_url',
151
-                esc_html__('URL of Event Page if hosted elsewhere', 'event_espresso')
152
-            ),
153
-            new GraphQLField(
154
-                'allowDonations',
155
-                'Boolean',
156
-                'donations',
157
-                esc_html__('Accept Donations?', 'event_espresso')
158
-            ),
159
-            new GraphQLField(
160
-                'isSoldOut',
161
-                'Boolean',
162
-                'is_sold_out',
163
-                esc_html__(
164
-                    'Flag indicating whether the tickets sold for the event, met or exceed the registration limit',
165
-                    'event_espresso'
166
-                )
167
-            ),
168
-            new GraphQLField(
169
-                'isPostponed',
170
-                'Boolean',
171
-                'is_postponed',
172
-                esc_html__('Flag indicating whether the event is marked as postponed', 'event_espresso')
173
-            ),
174
-            new GraphQLField(
175
-                'isCancelled',
176
-                'Boolean',
177
-                'is_cancelled',
178
-                esc_html__('Flag indicating whether the event is marked as cancelled', 'event_espresso')
179
-            ),
180
-            new GraphQLOutputField(
181
-                'isUpcoming',
182
-                'Boolean',
183
-                'is_upcoming',
184
-                esc_html__('Whether the event is upcoming', 'event_espresso')
185
-            ),
186
-            new GraphQLOutputField(
187
-                'isActive',
188
-                'Boolean',
189
-                'is_active',
190
-                esc_html__('Flag indicating event is active', 'event_espresso')
191
-            ),
192
-            new GraphQLOutputField(
193
-                'isInactive',
194
-                'Boolean',
195
-                'is_inactive',
196
-                esc_html__('Flag indicating event is inactive', 'event_espresso')
197
-            ),
198
-            new GraphQLOutputField(
199
-                'isExpired',
200
-                'Boolean',
201
-                'is_expired',
202
-                esc_html__('Flag indicating event is expired or not', 'event_espresso')
203
-            ),
204
-        ];
38
+	/**
39
+	 * @return GraphQLFieldInterface[]
40
+	 * @since $VID:$
41
+	 */
42
+	public function getFields()
43
+	{
44
+		$fields = [
45
+			new GraphQLOutputField(
46
+				'dbId',
47
+				['non_null' => 'Int'],
48
+				'ID',
49
+				esc_html__('The event ID.', 'event_espresso')
50
+			),
51
+			new GraphQLOutputField(
52
+				'cacheId',
53
+				['non_null' => 'String'],
54
+				null,
55
+				esc_html__('The cache ID of the object.', 'event_espresso')
56
+			),
57
+			new GraphQLField(
58
+				'name',
59
+				'String',
60
+				'name',
61
+				esc_html__('Event Name', 'event_espresso')
62
+			),
63
+			new GraphQLField(
64
+				'description',
65
+				'String',
66
+				'description',
67
+				esc_html__('Event Description', 'event_espresso')
68
+			),
69
+			new GraphQLField(
70
+				'shortDescription',
71
+				'String',
72
+				'short_description',
73
+				esc_html__('Event Short Description', 'event_espresso')
74
+			),
75
+			new GraphQLField(
76
+				'created',
77
+				'String',
78
+				'created',
79
+				esc_html__('Date/Time Event Created', 'event_espresso')
80
+			),
81
+			new GraphQLOutputField(
82
+				'wpUser',
83
+				'User',
84
+				null,
85
+				esc_html__('Event Creator', 'event_espresso')
86
+			),
87
+			new GraphQLInputField(
88
+				'wpUser',
89
+				'Int',
90
+				null,
91
+				esc_html__('Event Creator ID', 'event_espresso')
92
+			),
93
+			new GraphQLField(
94
+				'order',
95
+				'Int',
96
+				'order',
97
+				esc_html__('Event Menu Order', 'event_espresso')
98
+			),
99
+			new GraphQLField(
100
+				'displayDescription',
101
+				'Boolean',
102
+				'display_description',
103
+				esc_html__('Display Description Flag', 'event_espresso')
104
+			),
105
+			new GraphQLField(
106
+				'displayTicketSelector',
107
+				'Boolean',
108
+				'display_ticket_selector',
109
+				esc_html__('Display Ticket Selector Flag', 'event_espresso')
110
+			),
111
+			new GraphQLField(
112
+				'visibleOn',
113
+				'String',
114
+				'visible_on',
115
+				esc_html__('Event Visible Date', 'event_espresso')
116
+			),
117
+			new GraphQLField(
118
+				'maxRegistrations',
119
+				'Int',
120
+				'additional_limit',
121
+				esc_html__('Limit of Additional Registrations on Same Transaction', 'event_espresso')
122
+			),
123
+			new GraphQLField(
124
+				'phoneNumber',
125
+				'String',
126
+				'phone',
127
+				esc_html__('Event Phone Number', 'event_espresso')
128
+			),
129
+			new GraphQLField(
130
+				'memberOnly',
131
+				'Boolean',
132
+				'member_only',
133
+				esc_html__('Member-Only Event Flag', 'event_espresso')
134
+			),
135
+			new GraphQLField(
136
+				'allowOverflow',
137
+				'Boolean',
138
+				'allow_overflow',
139
+				esc_html__('Allow Overflow on Event', 'event_espresso')
140
+			),
141
+			new GraphQLField(
142
+				'timezoneString',
143
+				'String',
144
+				'timezone_string',
145
+				esc_html__('Timezone (name) for Event times', 'event_espresso')
146
+			),
147
+			new GraphQLField(
148
+				'altRegPage',
149
+				'String',
150
+				'external_url',
151
+				esc_html__('URL of Event Page if hosted elsewhere', 'event_espresso')
152
+			),
153
+			new GraphQLField(
154
+				'allowDonations',
155
+				'Boolean',
156
+				'donations',
157
+				esc_html__('Accept Donations?', 'event_espresso')
158
+			),
159
+			new GraphQLField(
160
+				'isSoldOut',
161
+				'Boolean',
162
+				'is_sold_out',
163
+				esc_html__(
164
+					'Flag indicating whether the tickets sold for the event, met or exceed the registration limit',
165
+					'event_espresso'
166
+				)
167
+			),
168
+			new GraphQLField(
169
+				'isPostponed',
170
+				'Boolean',
171
+				'is_postponed',
172
+				esc_html__('Flag indicating whether the event is marked as postponed', 'event_espresso')
173
+			),
174
+			new GraphQLField(
175
+				'isCancelled',
176
+				'Boolean',
177
+				'is_cancelled',
178
+				esc_html__('Flag indicating whether the event is marked as cancelled', 'event_espresso')
179
+			),
180
+			new GraphQLOutputField(
181
+				'isUpcoming',
182
+				'Boolean',
183
+				'is_upcoming',
184
+				esc_html__('Whether the event is upcoming', 'event_espresso')
185
+			),
186
+			new GraphQLOutputField(
187
+				'isActive',
188
+				'Boolean',
189
+				'is_active',
190
+				esc_html__('Flag indicating event is active', 'event_espresso')
191
+			),
192
+			new GraphQLOutputField(
193
+				'isInactive',
194
+				'Boolean',
195
+				'is_inactive',
196
+				esc_html__('Flag indicating event is inactive', 'event_espresso')
197
+			),
198
+			new GraphQLOutputField(
199
+				'isExpired',
200
+				'Boolean',
201
+				'is_expired',
202
+				esc_html__('Flag indicating event is expired or not', 'event_espresso')
203
+			),
204
+		];
205 205
 
206
-        return apply_filters(
207
-            'FHEE__EventEspresso_core_domain_services_graphql_types__event_fields',
208
-            $fields,
209
-            $this->name,
210
-            $this->model
211
-        );
212
-    }
206
+		return apply_filters(
207
+			'FHEE__EventEspresso_core_domain_services_graphql_types__event_fields',
208
+			$fields,
209
+			$this->name,
210
+			$this->model
211
+		);
212
+	}
213 213
 
214 214
 
215
-    /**
216
-     * Extends the existing WP GraphQL mutations.
217
-     *
218
-     * @since $VID:$
219
-     */
220
-    public function extendMutations()
221
-    {
222
-        add_action(
223
-            'graphql_post_object_mutation_update_additional_data',
224
-            EventUpdate::mutateFields($this->model, $this),
225
-            10,
226
-            6
227
-        );
228
-    }
215
+	/**
216
+	 * Extends the existing WP GraphQL mutations.
217
+	 *
218
+	 * @since $VID:$
219
+	 */
220
+	public function extendMutations()
221
+	{
222
+		add_action(
223
+			'graphql_post_object_mutation_update_additional_data',
224
+			EventUpdate::mutateFields($this->model, $this),
225
+			10,
226
+			6
227
+		);
228
+	}
229 229
 }
Please login to merge, or discard this patch.
core/domain/services/graphql/data/mutations/EventMutation.php 2 patches
Indentation   +78 added lines, -78 removed lines patch added patch discarded remove patch
@@ -14,82 +14,82 @@
 block discarded – undo
14 14
 class EventMutation
15 15
 {
16 16
 
17
-    /**
18
-     * Maps the GraphQL input to a format that the model functions can use
19
-     *
20
-     * @param array  $input         Data coming from the GraphQL mutation query input
21
-     * @param string $mutation_name Name of the mutation being performed
22
-     * @return array
23
-     * @throws Exception
24
-     */
25
-    public static function prepareFields(array $input, $mutation_name)
26
-    {
27
-        $args = [];
28
-
29
-        if (array_key_exists('allowDonations', $input)) {
30
-            $args['EVT_donations'] = (bool) ($input['allowDonations']);
31
-        }
32
-
33
-        if (array_key_exists('allowOverflow', $input)) {
34
-            $args['EVT_allow_overflow'] = (bool) ($input['allowOverflow']);
35
-        }
36
-
37
-        if (! empty($input['altRegPage'])) {
38
-            $args['EVT_external_URL'] = sanitize_text_field($input['altRegPage']);
39
-        }
40
-
41
-        if (! empty($input['description'])) {
42
-            $args['EVT_desc'] = wp_kses_post($input['description']);
43
-        }
44
-
45
-        if (array_key_exists('displayDescription', $input)) {
46
-            $args['EVT_display_desc'] = (bool) ($input['displayDescription']);
47
-        }
48
-
49
-        if (array_key_exists('displayTicketSelector', $input)) {
50
-            $args['EVT_display_ticket_selector'] = (bool) ($input['displayTicketSelector']);
51
-        }
52
-
53
-        if (! empty($input['maxRegistrations'])) {
54
-            $args['EVT_additional_limit'] = absint($input['maxRegistrations']);
55
-        }
56
-
57
-        if (array_key_exists('memberOnly', $input)) {
58
-            $args['EVT_member_only'] = (bool) ($input['memberOnly']);
59
-        }
60
-
61
-        if (! empty($input['name'])) {
62
-            $args['EVT_name'] = sanitize_text_field($input['name']);
63
-        }
64
-
65
-        if (! empty($input['order'])) {
66
-            $args['EVT_order'] = absint($input['order']);
67
-        }
68
-
69
-        if (! empty($input['phoneNumber'])) {
70
-            $args['EVT_phone'] = sanitize_text_field($input['phoneNumber']);
71
-        }
72
-
73
-        if (! empty($input['shortDescription'])) {
74
-            $args['EVT_short_desc'] = sanitize_post_field('post_excerpt', $input['shortDescription'], null, $context = 'db');
75
-        }
76
-
77
-        if (! empty($input['timezoneString'])) {
78
-            $args['EVT_timezone_string'] = sanitize_text_field($input['timezoneString']);
79
-        }
80
-
81
-        if (! empty($input['visibleOn'])) {
82
-            $args['EVT_visible_on'] = new DateTime(sanitize_text_field($input['visibleOn']));
83
-        }
84
-
85
-        if (! empty($input['wpUser'])) {
86
-            $args['EVT_wp_user'] = absint($input['wpUser']);
87
-        }
88
-
89
-        return apply_filters(
90
-            'FHEE__EventEspresso_core_domain_services_graphql_data_mutations__event_args',
91
-            $args,
92
-            $input
93
-        );
94
-    }
17
+	/**
18
+	 * Maps the GraphQL input to a format that the model functions can use
19
+	 *
20
+	 * @param array  $input         Data coming from the GraphQL mutation query input
21
+	 * @param string $mutation_name Name of the mutation being performed
22
+	 * @return array
23
+	 * @throws Exception
24
+	 */
25
+	public static function prepareFields(array $input, $mutation_name)
26
+	{
27
+		$args = [];
28
+
29
+		if (array_key_exists('allowDonations', $input)) {
30
+			$args['EVT_donations'] = (bool) ($input['allowDonations']);
31
+		}
32
+
33
+		if (array_key_exists('allowOverflow', $input)) {
34
+			$args['EVT_allow_overflow'] = (bool) ($input['allowOverflow']);
35
+		}
36
+
37
+		if (! empty($input['altRegPage'])) {
38
+			$args['EVT_external_URL'] = sanitize_text_field($input['altRegPage']);
39
+		}
40
+
41
+		if (! empty($input['description'])) {
42
+			$args['EVT_desc'] = wp_kses_post($input['description']);
43
+		}
44
+
45
+		if (array_key_exists('displayDescription', $input)) {
46
+			$args['EVT_display_desc'] = (bool) ($input['displayDescription']);
47
+		}
48
+
49
+		if (array_key_exists('displayTicketSelector', $input)) {
50
+			$args['EVT_display_ticket_selector'] = (bool) ($input['displayTicketSelector']);
51
+		}
52
+
53
+		if (! empty($input['maxRegistrations'])) {
54
+			$args['EVT_additional_limit'] = absint($input['maxRegistrations']);
55
+		}
56
+
57
+		if (array_key_exists('memberOnly', $input)) {
58
+			$args['EVT_member_only'] = (bool) ($input['memberOnly']);
59
+		}
60
+
61
+		if (! empty($input['name'])) {
62
+			$args['EVT_name'] = sanitize_text_field($input['name']);
63
+		}
64
+
65
+		if (! empty($input['order'])) {
66
+			$args['EVT_order'] = absint($input['order']);
67
+		}
68
+
69
+		if (! empty($input['phoneNumber'])) {
70
+			$args['EVT_phone'] = sanitize_text_field($input['phoneNumber']);
71
+		}
72
+
73
+		if (! empty($input['shortDescription'])) {
74
+			$args['EVT_short_desc'] = sanitize_post_field('post_excerpt', $input['shortDescription'], null, $context = 'db');
75
+		}
76
+
77
+		if (! empty($input['timezoneString'])) {
78
+			$args['EVT_timezone_string'] = sanitize_text_field($input['timezoneString']);
79
+		}
80
+
81
+		if (! empty($input['visibleOn'])) {
82
+			$args['EVT_visible_on'] = new DateTime(sanitize_text_field($input['visibleOn']));
83
+		}
84
+
85
+		if (! empty($input['wpUser'])) {
86
+			$args['EVT_wp_user'] = absint($input['wpUser']);
87
+		}
88
+
89
+		return apply_filters(
90
+			'FHEE__EventEspresso_core_domain_services_graphql_data_mutations__event_args',
91
+			$args,
92
+			$input
93
+		);
94
+	}
95 95
 }
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -34,11 +34,11 @@  discard block
 block discarded – undo
34 34
             $args['EVT_allow_overflow'] = (bool) ($input['allowOverflow']);
35 35
         }
36 36
 
37
-        if (! empty($input['altRegPage'])) {
37
+        if ( ! empty($input['altRegPage'])) {
38 38
             $args['EVT_external_URL'] = sanitize_text_field($input['altRegPage']);
39 39
         }
40 40
 
41
-        if (! empty($input['description'])) {
41
+        if ( ! empty($input['description'])) {
42 42
             $args['EVT_desc'] = wp_kses_post($input['description']);
43 43
         }
44 44
 
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
             $args['EVT_display_ticket_selector'] = (bool) ($input['displayTicketSelector']);
51 51
         }
52 52
 
53
-        if (! empty($input['maxRegistrations'])) {
53
+        if ( ! empty($input['maxRegistrations'])) {
54 54
             $args['EVT_additional_limit'] = absint($input['maxRegistrations']);
55 55
         }
56 56
 
@@ -58,31 +58,31 @@  discard block
 block discarded – undo
58 58
             $args['EVT_member_only'] = (bool) ($input['memberOnly']);
59 59
         }
60 60
 
61
-        if (! empty($input['name'])) {
61
+        if ( ! empty($input['name'])) {
62 62
             $args['EVT_name'] = sanitize_text_field($input['name']);
63 63
         }
64 64
 
65
-        if (! empty($input['order'])) {
65
+        if ( ! empty($input['order'])) {
66 66
             $args['EVT_order'] = absint($input['order']);
67 67
         }
68 68
 
69
-        if (! empty($input['phoneNumber'])) {
69
+        if ( ! empty($input['phoneNumber'])) {
70 70
             $args['EVT_phone'] = sanitize_text_field($input['phoneNumber']);
71 71
         }
72 72
 
73
-        if (! empty($input['shortDescription'])) {
73
+        if ( ! empty($input['shortDescription'])) {
74 74
             $args['EVT_short_desc'] = sanitize_post_field('post_excerpt', $input['shortDescription'], null, $context = 'db');
75 75
         }
76 76
 
77
-        if (! empty($input['timezoneString'])) {
77
+        if ( ! empty($input['timezoneString'])) {
78 78
             $args['EVT_timezone_string'] = sanitize_text_field($input['timezoneString']);
79 79
         }
80 80
 
81
-        if (! empty($input['visibleOn'])) {
81
+        if ( ! empty($input['visibleOn'])) {
82 82
             $args['EVT_visible_on'] = new DateTime(sanitize_text_field($input['visibleOn']));
83 83
         }
84 84
 
85
-        if (! empty($input['wpUser'])) {
85
+        if ( ! empty($input['wpUser'])) {
86 86
             $args['EVT_wp_user'] = absint($input['wpUser']);
87 87
         }
88 88
 
Please login to merge, or discard this patch.
core/domain/services/admin/events/editor/EventEditorGraphQLData.php 2 patches
Indentation   +113 added lines, -113 removed lines patch added patch discarded remove patch
@@ -21,117 +21,117 @@
 block discarded – undo
21 21
 class EventEditorGraphQLData
22 22
 {
23 23
 
24
-    /**
25
-     * @var Event $event
26
-     */
27
-    protected $event;
28
-
29
-    /**
30
-     * @var Datetimes $datetimes
31
-     */
32
-    protected $datetimes;
33
-
34
-    /**
35
-     * @var Prices $prices
36
-     */
37
-    protected $prices;
38
-
39
-    /**
40
-     * @var PriceTypes $price_types
41
-     */
42
-    protected $price_types;
43
-
44
-    /**
45
-     * @var Tickets $tickets
46
-     */
47
-    protected $tickets;
48
-
49
-    /**
50
-     * @var EventEntityRelations $relations
51
-     */
52
-    protected $relations;
53
-
54
-    /**
55
-     * @var NewEventDefaultEntities $default_entities
56
-     */
57
-    protected $default_entities;
58
-
59
-
60
-    /**
61
-     * EventEditorGraphQLData constructor.
62
-     *
63
-     * @param Datetimes               $datetimes
64
-     * @param Event                   $event
65
-     * @param Prices                  $prices
66
-     * @param PriceTypes              $price_types
67
-     * @param Tickets                 $tickets
68
-     * @param EventEntityRelations    $relations
69
-     * @param NewEventDefaultEntities $default_entities
70
-     */
71
-    public function __construct(
72
-        Datetimes $datetimes,
73
-        Event $event,
74
-        Prices $prices,
75
-        PriceTypes $price_types,
76
-        Tickets $tickets,
77
-        EventEntityRelations $relations,
78
-        NewEventDefaultEntities $default_entities
79
-    ) {
80
-        $this->datetimes        = $datetimes;
81
-        $this->event           = $event;
82
-        $this->default_entities = $default_entities;
83
-        $this->prices           = $prices;
84
-        $this->price_types      = $price_types;
85
-        $this->relations        = $relations;
86
-        $this->tickets          = $tickets;
87
-    }
88
-
89
-
90
-    /**
91
-     * @param int $eventId
92
-     * @return array
93
-     * @throws EE_Error
94
-     * @throws ReflectionException
95
-     * @since $VID:$
96
-     */
97
-    public function getData(int $eventId)
98
-    {
99
-        $event = $this->event->getData(['id' => $eventId]);
100
-        $datetimes = $this->datetimes->getData(['eventId' => $eventId]);
101
-
102
-        // Avoid undefined variable warning in PHP >= 7.3
103
-        $tickets = null;
104
-        $prices  = null;
105
-
106
-        if (empty($datetimes['nodes']) || (isset($_REQUEST['action']) && $_REQUEST['action'] === 'create_new')) {
107
-            $this->default_entities->getData($eventId);
108
-            $datetimes = $this->datetimes->getData(['eventId' => $eventId]);
109
-        }
110
-
111
-        if (! empty($datetimes['nodes'])) {
112
-            $datetimeIn = wp_list_pluck($datetimes['nodes'], 'id');
113
-
114
-            if (! empty($datetimeIn)) {
115
-                $tickets = $this->tickets->getData(['datetimeIn' => $datetimeIn]);
116
-            }
117
-        }
118
-
119
-        if (! empty($tickets['nodes'])) {
120
-            $ticketIn = wp_list_pluck($tickets['nodes'], 'id');
121
-        }
122
-
123
-        $pricesArgs = ['includeDefaultPrices' => true];
124
-
125
-        if (! empty($ticketIn)) {
126
-            $pricesArgs['ticketIn'] = $ticketIn;
127
-        }
128
-        $prices = $this->prices->getData($pricesArgs);
129
-
130
-        $priceTypes = $this->price_types->getData();
131
-
132
-        $relations = $this->relations->getData($eventId);
133
-
134
-
135
-        return compact('event', 'datetimes', 'tickets', 'prices', 'priceTypes', 'relations');
136
-    }
24
+	/**
25
+	 * @var Event $event
26
+	 */
27
+	protected $event;
28
+
29
+	/**
30
+	 * @var Datetimes $datetimes
31
+	 */
32
+	protected $datetimes;
33
+
34
+	/**
35
+	 * @var Prices $prices
36
+	 */
37
+	protected $prices;
38
+
39
+	/**
40
+	 * @var PriceTypes $price_types
41
+	 */
42
+	protected $price_types;
43
+
44
+	/**
45
+	 * @var Tickets $tickets
46
+	 */
47
+	protected $tickets;
48
+
49
+	/**
50
+	 * @var EventEntityRelations $relations
51
+	 */
52
+	protected $relations;
53
+
54
+	/**
55
+	 * @var NewEventDefaultEntities $default_entities
56
+	 */
57
+	protected $default_entities;
58
+
59
+
60
+	/**
61
+	 * EventEditorGraphQLData constructor.
62
+	 *
63
+	 * @param Datetimes               $datetimes
64
+	 * @param Event                   $event
65
+	 * @param Prices                  $prices
66
+	 * @param PriceTypes              $price_types
67
+	 * @param Tickets                 $tickets
68
+	 * @param EventEntityRelations    $relations
69
+	 * @param NewEventDefaultEntities $default_entities
70
+	 */
71
+	public function __construct(
72
+		Datetimes $datetimes,
73
+		Event $event,
74
+		Prices $prices,
75
+		PriceTypes $price_types,
76
+		Tickets $tickets,
77
+		EventEntityRelations $relations,
78
+		NewEventDefaultEntities $default_entities
79
+	) {
80
+		$this->datetimes        = $datetimes;
81
+		$this->event           = $event;
82
+		$this->default_entities = $default_entities;
83
+		$this->prices           = $prices;
84
+		$this->price_types      = $price_types;
85
+		$this->relations        = $relations;
86
+		$this->tickets          = $tickets;
87
+	}
88
+
89
+
90
+	/**
91
+	 * @param int $eventId
92
+	 * @return array
93
+	 * @throws EE_Error
94
+	 * @throws ReflectionException
95
+	 * @since $VID:$
96
+	 */
97
+	public function getData(int $eventId)
98
+	{
99
+		$event = $this->event->getData(['id' => $eventId]);
100
+		$datetimes = $this->datetimes->getData(['eventId' => $eventId]);
101
+
102
+		// Avoid undefined variable warning in PHP >= 7.3
103
+		$tickets = null;
104
+		$prices  = null;
105
+
106
+		if (empty($datetimes['nodes']) || (isset($_REQUEST['action']) && $_REQUEST['action'] === 'create_new')) {
107
+			$this->default_entities->getData($eventId);
108
+			$datetimes = $this->datetimes->getData(['eventId' => $eventId]);
109
+		}
110
+
111
+		if (! empty($datetimes['nodes'])) {
112
+			$datetimeIn = wp_list_pluck($datetimes['nodes'], 'id');
113
+
114
+			if (! empty($datetimeIn)) {
115
+				$tickets = $this->tickets->getData(['datetimeIn' => $datetimeIn]);
116
+			}
117
+		}
118
+
119
+		if (! empty($tickets['nodes'])) {
120
+			$ticketIn = wp_list_pluck($tickets['nodes'], 'id');
121
+		}
122
+
123
+		$pricesArgs = ['includeDefaultPrices' => true];
124
+
125
+		if (! empty($ticketIn)) {
126
+			$pricesArgs['ticketIn'] = $ticketIn;
127
+		}
128
+		$prices = $this->prices->getData($pricesArgs);
129
+
130
+		$priceTypes = $this->price_types->getData();
131
+
132
+		$relations = $this->relations->getData($eventId);
133
+
134
+
135
+		return compact('event', 'datetimes', 'tickets', 'prices', 'priceTypes', 'relations');
136
+	}
137 137
 }
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
         NewEventDefaultEntities $default_entities
79 79
     ) {
80 80
         $this->datetimes        = $datetimes;
81
-        $this->event           = $event;
81
+        $this->event = $event;
82 82
         $this->default_entities = $default_entities;
83 83
         $this->prices           = $prices;
84 84
         $this->price_types      = $price_types;
@@ -108,21 +108,21 @@  discard block
 block discarded – undo
108 108
             $datetimes = $this->datetimes->getData(['eventId' => $eventId]);
109 109
         }
110 110
 
111
-        if (! empty($datetimes['nodes'])) {
111
+        if ( ! empty($datetimes['nodes'])) {
112 112
             $datetimeIn = wp_list_pluck($datetimes['nodes'], 'id');
113 113
 
114
-            if (! empty($datetimeIn)) {
114
+            if ( ! empty($datetimeIn)) {
115 115
                 $tickets = $this->tickets->getData(['datetimeIn' => $datetimeIn]);
116 116
             }
117 117
         }
118 118
 
119
-        if (! empty($tickets['nodes'])) {
119
+        if ( ! empty($tickets['nodes'])) {
120 120
             $ticketIn = wp_list_pluck($tickets['nodes'], 'id');
121 121
         }
122 122
 
123 123
         $pricesArgs = ['includeDefaultPrices' => true];
124 124
 
125
-        if (! empty($ticketIn)) {
125
+        if ( ! empty($ticketIn)) {
126 126
             $pricesArgs['ticketIn'] = $ticketIn;
127 127
         }
128 128
         $prices = $this->prices->getData($pricesArgs);
Please login to merge, or discard this patch.
public/template_tags.php 2 patches
Indentation   +39 added lines, -39 removed lines patch added patch discarded remove patch
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
 	function espresso_ticket_selector( $event = NULL ) {
207 207
 		if (  ! apply_filters( 'FHEE_disable_espresso_ticket_selector', FALSE ) ) {
208 208
 			espresso_load_ticket_selector();
209
-            \EED_Ticket_Selector::set_definitions();
209
+			\EED_Ticket_Selector::set_definitions();
210 210
 			echo EED_Ticket_Selector::display_ticket_selector( $event );
211 211
 		}
212 212
 	}
@@ -460,12 +460,12 @@  discard block
 block discarded – undo
460 460
 	 * @return string
461 461
 	 */
462 462
 	function espresso_list_of_event_dates( $EVT_ID = 0, $date_format = '', $time_format = '', $echo = TRUE, $show_expired = NULL, $format = TRUE, $add_breaks = TRUE, $limit = NULL ) {
463
-	    $arguments = apply_filters(
464
-            'FHEE__espresso_list_of_event_dates__arguments',
465
-            [ $EVT_ID, $date_format, $time_format, $echo, $show_expired, $format, $add_breaks, $limit ]
466
-        );
467
-        list($EVT_ID, $date_format, $time_format, $echo, $show_expired, $format, $add_breaks, $limit) = $arguments;
468
-	    $datetimes = EEH_Event_View::get_all_date_obj( $EVT_ID, $show_expired, FALSE, $limit );
463
+		$arguments = apply_filters(
464
+			'FHEE__espresso_list_of_event_dates__arguments',
465
+			[ $EVT_ID, $date_format, $time_format, $echo, $show_expired, $format, $add_breaks, $limit ]
466
+		);
467
+		list($EVT_ID, $date_format, $time_format, $echo, $show_expired, $format, $add_breaks, $limit) = $arguments;
468
+		$datetimes = EEH_Event_View::get_all_date_obj( $EVT_ID, $show_expired, FALSE, $limit );
469 469
 		$date_format = ! empty( $date_format ) ? $date_format : get_option( 'date_format' );
470 470
 		$time_format = ! empty( $time_format ) ? $time_format : get_option( 'time_format' );
471 471
 		$date_format = apply_filters( 'FHEE__espresso_list_of_event_dates__date_format', $date_format );
@@ -478,42 +478,42 @@  discard block
 block discarded – undo
478 478
 			$html = '<ul id="ee-event-datetimes-ul-' . $post->ID . '" class="ee-event-datetimes-ul ee-clearfix">';
479 479
 			foreach ( $datetimes as $datetime ) {
480 480
 				if ( $datetime instanceof EE_Datetime ) {
481
-                    $datetime_name = $datetime->name();
482
-                    $datetime_description = $datetime->description();
483
-                    $html .= '<li id="ee-event-datetimes-li-' . $datetime->ID();
484
-                    $html .= '" class="ee-event-datetimes-li ee-event-datetimes-li-' . $datetime->get_active_status() . '">';
485
-                    $inner_html = '';
486
-                    if (! empty( $datetime_name )) {
487
-                        $inner_html .= '<strong>' . $datetime_name . '</strong>';
488
-                        $inner_html .= $add_breaks ? '<br />' : '';
489
-                    }
490
-                    // add date
491
-                    $inner_html .= '<span class="dashicons dashicons-calendar"></span>';
492
-                    $inner_html .= '</span><span class="ee-event-datetimes-li-daterange">';
493
-                    $inner_html .= $datetime->date_range( $date_format ) . '</span><br/>';
494
-                    // add time
495
-                    $inner_html .= '<span class="dashicons dashicons-clock"></span>';
496
-                    $inner_html .= '<span class="ee-event-datetimes-li-timerange">';
497
-                    $inner_html .= $datetime->time_range( $time_format ) . '</span>';
498
-                    if (! empty( $datetime_description )) {
499
-                        $inner_html .= $add_breaks ? '<br />' : '';
500
-                        $inner_html .= ' - ' . $datetime_description;
501
-                    }
502
-                    $inner_html = apply_filters(
503
-                        'FHEE__espresso_list_of_event_dates__datetime_html',
504
-                        $inner_html,
505
-                        $datetime,
506
-                        $arguments
507
-                    );
508
-                    $html .= $inner_html . '</li>';
481
+					$datetime_name = $datetime->name();
482
+					$datetime_description = $datetime->description();
483
+					$html .= '<li id="ee-event-datetimes-li-' . $datetime->ID();
484
+					$html .= '" class="ee-event-datetimes-li ee-event-datetimes-li-' . $datetime->get_active_status() . '">';
485
+					$inner_html = '';
486
+					if (! empty( $datetime_name )) {
487
+						$inner_html .= '<strong>' . $datetime_name . '</strong>';
488
+						$inner_html .= $add_breaks ? '<br />' : '';
489
+					}
490
+					// add date
491
+					$inner_html .= '<span class="dashicons dashicons-calendar"></span>';
492
+					$inner_html .= '</span><span class="ee-event-datetimes-li-daterange">';
493
+					$inner_html .= $datetime->date_range( $date_format ) . '</span><br/>';
494
+					// add time
495
+					$inner_html .= '<span class="dashicons dashicons-clock"></span>';
496
+					$inner_html .= '<span class="ee-event-datetimes-li-timerange">';
497
+					$inner_html .= $datetime->time_range( $time_format ) . '</span>';
498
+					if (! empty( $datetime_description )) {
499
+						$inner_html .= $add_breaks ? '<br />' : '';
500
+						$inner_html .= ' - ' . $datetime_description;
501
+					}
502
+					$inner_html = apply_filters(
503
+						'FHEE__espresso_list_of_event_dates__datetime_html',
504
+						$inner_html,
505
+						$datetime,
506
+						$arguments
507
+					);
508
+					$html .= $inner_html . '</li>';
509 509
 				}
510 510
 			}
511 511
 			$html .= '</ul>';
512
-            $html = apply_filters('FHEE__espresso_list_of_event_dates__html', $html, $arguments, $datetime);
512
+			$html = apply_filters('FHEE__espresso_list_of_event_dates__html', $html, $arguments, $datetime);
513 513
 		} else {
514
-            $html = '<p><span class="dashicons dashicons-marker pink-text"></span>';
515
-            $html .= esc_html__( 'There are no upcoming dates for this event.', 'event_espresso' );
516
-            $html .= '</p><br/>';
514
+			$html = '<p><span class="dashicons dashicons-marker pink-text"></span>';
515
+			$html .= esc_html__( 'There are no upcoming dates for this event.', 'event_espresso' );
516
+			$html .= '</p><br/>';
517 517
 		}
518 518
 		if ( $echo ) {
519 519
 			echo $html;
Please login to merge, or discard this patch.
Spacing   +292 added lines, -292 removed lines patch added patch discarded remove patch
@@ -14,12 +14,12 @@  discard block
 block discarded – undo
14 14
  * @param int | \EE_Event $event
15 15
  * @return bool
16 16
  */
17
-function is_espresso_event( $event = NULL ) {
18
-	if ( can_use_espresso_conditionals( __FUNCTION__ )) {
17
+function is_espresso_event($event = NULL) {
18
+	if (can_use_espresso_conditionals(__FUNCTION__)) {
19 19
 		// extract EE_Event object from passed param regardless of what it is (within reason of course)
20
-		$event = EEH_Event_View::get_event( $event );
20
+		$event = EEH_Event_View::get_event($event);
21 21
 		// do we have a valid event ?
22
-		return $event instanceof EE_Event  ? TRUE : FALSE;
22
+		return $event instanceof EE_Event ? TRUE : FALSE;
23 23
 	}
24 24
 	return FALSE;
25 25
 }
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
  * @return bool
32 32
  */
33 33
 function is_espresso_event_single() {
34
-	if ( can_use_espresso_conditionals( __FUNCTION__ )) {
34
+	if (can_use_espresso_conditionals(__FUNCTION__)) {
35 35
 		global $wp_query;
36 36
 		// return conditionals set by CPTs
37 37
 		return $wp_query instanceof WP_Query ? $wp_query->is_espresso_event_single : FALSE;
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
  * @return bool
47 47
  */
48 48
 function is_espresso_event_archive() {
49
-	if ( can_use_espresso_conditionals( __FUNCTION__ )) {
49
+	if (can_use_espresso_conditionals(__FUNCTION__)) {
50 50
 		global $wp_query;
51 51
 		return $wp_query instanceof WP_Query ? $wp_query->is_espresso_event_archive : FALSE;
52 52
 	}
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
  * @return bool
61 61
  */
62 62
 function is_espresso_event_taxonomy() {
63
-	if ( can_use_espresso_conditionals( __FUNCTION__ )) {
63
+	if (can_use_espresso_conditionals(__FUNCTION__)) {
64 64
 		global $wp_query;
65 65
 		return $wp_query instanceof WP_Query ? $wp_query->is_espresso_event_taxonomy : FALSE;
66 66
 	}
@@ -74,10 +74,10 @@  discard block
 block discarded – undo
74 74
  * @param int | \EE_Venue $venue
75 75
  * @return bool
76 76
  */
77
-function is_espresso_venue( $venue = NULL ) {
78
-	if ( can_use_espresso_conditionals( __FUNCTION__ )) {
77
+function is_espresso_venue($venue = NULL) {
78
+	if (can_use_espresso_conditionals(__FUNCTION__)) {
79 79
 		// extract EE_Venue object from passed param regardless of what it is (within reason of course)
80
-		$venue = EEH_Venue_View::get_venue( $venue, FALSE );
80
+		$venue = EEH_Venue_View::get_venue($venue, FALSE);
81 81
 		// do we have a valid event ?
82 82
 		return $venue instanceof EE_Venue ? TRUE : FALSE;
83 83
 	}
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
  * @return bool
92 92
  */
93 93
 function is_espresso_venue_single() {
94
-	if ( can_use_espresso_conditionals( __FUNCTION__ )) {
94
+	if (can_use_espresso_conditionals(__FUNCTION__)) {
95 95
 		global $wp_query;
96 96
 		return $wp_query instanceof WP_Query ? $wp_query->is_espresso_venue_single : FALSE;
97 97
 	}
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
  * @return bool
106 106
  */
107 107
 function is_espresso_venue_archive() {
108
-	if ( can_use_espresso_conditionals( __FUNCTION__ )) {
108
+	if (can_use_espresso_conditionals(__FUNCTION__)) {
109 109
 		global $wp_query;
110 110
 		return $wp_query instanceof WP_Query ? $wp_query->is_espresso_venue_archive : FALSE;
111 111
 	}
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
  * @return bool
120 120
  */
121 121
 function is_espresso_venue_taxonomy() {
122
-	if ( can_use_espresso_conditionals( __FUNCTION__ )) {
122
+	if (can_use_espresso_conditionals(__FUNCTION__)) {
123 123
 		global $wp_query;
124 124
 		return $wp_query instanceof WP_Query ? $wp_query->is_espresso_venue_taxonomy : FALSE;
125 125
 	}
@@ -133,12 +133,12 @@  discard block
 block discarded – undo
133 133
  * @param $conditional_tag
134 134
  * @return bool
135 135
  */
136
-function can_use_espresso_conditionals( $conditional_tag ) {
137
-	if ( ! did_action( 'AHEE__EE_System__initialize' )) {
136
+function can_use_espresso_conditionals($conditional_tag) {
137
+	if ( ! did_action('AHEE__EE_System__initialize')) {
138 138
 		EE_Error::doing_it_wrong(
139 139
 			__FUNCTION__,
140 140
 			sprintf(
141
-				esc_html__( 'The "%s" conditional tag can not be used until after the "init" hook has run, but works best when used within a theme\'s template files.','event_espresso'),
141
+				esc_html__('The "%s" conditional tag can not be used until after the "init" hook has run, but works best when used within a theme\'s template files.', 'event_espresso'),
142 142
 				$conditional_tag
143 143
 			),
144 144
 			'4.4.0'
@@ -153,13 +153,13 @@  discard block
 block discarded – undo
153 153
 
154 154
 /*************************** Event Queries ***************************/
155 155
 
156
-if ( ! function_exists( 'espresso_get_events' )) {
156
+if ( ! function_exists('espresso_get_events')) {
157 157
 	/**
158 158
 	 * 	espresso_get_events
159 159
 	 * @param array $params
160 160
 	 * @return array
161 161
 	 */
162
-	function espresso_get_events( $params = array() ) {
162
+	function espresso_get_events($params = array()) {
163 163
 		//set default params
164 164
 		$default_espresso_events_params = array(
165 165
 			'limit' => 10,
@@ -170,18 +170,18 @@  discard block
 block discarded – undo
170 170
 			'sort' => 'ASC'
171 171
 		);
172 172
 		// allow the defaults to be filtered
173
-		$default_espresso_events_params = apply_filters( 'espresso_get_events__default_espresso_events_params', $default_espresso_events_params );
173
+		$default_espresso_events_params = apply_filters('espresso_get_events__default_espresso_events_params', $default_espresso_events_params);
174 174
 		// grab params and merge with defaults, then extract
175
-		$params = array_merge( $default_espresso_events_params, $params );
175
+		$params = array_merge($default_espresso_events_params, $params);
176 176
 		// run the query
177
-		$events_query = new EventEspresso\core\domain\services\wp_queries\EventListQuery( $params );
177
+		$events_query = new EventEspresso\core\domain\services\wp_queries\EventListQuery($params);
178 178
 		// assign results to a variable so we can return it
179 179
 		$events = $events_query->have_posts() ? $events_query->posts : array();
180 180
 		// but first reset the query and postdata
181 181
 		wp_reset_query();
182 182
 		wp_reset_postdata();
183 183
 		EED_Events_Archive::remove_all_events_archive_filters();
184
-		unset( $events_query );
184
+		unset($events_query);
185 185
 		return $events;
186 186
 	}
187 187
 }
@@ -195,33 +195,33 @@  discard block
 block discarded – undo
195 195
  * espresso_load_ticket_selector
196 196
  */
197 197
 function espresso_load_ticket_selector() {
198
-	EE_Registry::instance()->load_file( EE_MODULES . 'ticket_selector', 'EED_Ticket_Selector', 'module' );
198
+	EE_Registry::instance()->load_file(EE_MODULES.'ticket_selector', 'EED_Ticket_Selector', 'module');
199 199
 }
200 200
 
201
-if ( ! function_exists( 'espresso_ticket_selector' )) {
201
+if ( ! function_exists('espresso_ticket_selector')) {
202 202
 	/**
203 203
 	 * espresso_ticket_selector
204 204
 	 * @param null $event
205 205
 	 */
206
-	function espresso_ticket_selector( $event = NULL ) {
207
-		if (  ! apply_filters( 'FHEE_disable_espresso_ticket_selector', FALSE ) ) {
206
+	function espresso_ticket_selector($event = NULL) {
207
+		if ( ! apply_filters('FHEE_disable_espresso_ticket_selector', FALSE)) {
208 208
 			espresso_load_ticket_selector();
209 209
             \EED_Ticket_Selector::set_definitions();
210
-			echo EED_Ticket_Selector::display_ticket_selector( $event );
210
+			echo EED_Ticket_Selector::display_ticket_selector($event);
211 211
 		}
212 212
 	}
213 213
 }
214 214
 
215 215
 
216
-	if ( ! function_exists( 'espresso_view_details_btn' )) {
216
+	if ( ! function_exists('espresso_view_details_btn')) {
217 217
 	/**
218 218
 	 * espresso_view_details_btn
219 219
 	 * @param null $event
220 220
 	 */
221
-	function espresso_view_details_btn( $event = NULL ) {
222
-		if (  ! apply_filters( 'FHEE_disable_espresso_view_details_btn', FALSE ) ) {
221
+	function espresso_view_details_btn($event = NULL) {
222
+		if ( ! apply_filters('FHEE_disable_espresso_view_details_btn', FALSE)) {
223 223
 			espresso_load_ticket_selector();
224
-			echo EED_Ticket_Selector::display_ticket_selector( $event, TRUE );
224
+			echo EED_Ticket_Selector::display_ticket_selector($event, TRUE);
225 225
 		}
226 226
 	}
227 227
 }
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
 
232 232
 /*************************** EEH_Event_View ***************************/
233 233
 
234
-if ( ! function_exists( 'espresso_load_event_list_assets' )) {
234
+if ( ! function_exists('espresso_load_event_list_assets')) {
235 235
 	/**
236 236
 	 * espresso_load_event_list_assets
237 237
 	 * ensures that event list styles and scripts are loaded
@@ -240,13 +240,13 @@  discard block
 block discarded – undo
240 240
 	 */
241 241
 	function espresso_load_event_list_assets() {
242 242
 		$event_list = EED_Events_Archive::instance();
243
-		add_action( 'AHEE__EE_System__initialize_last', array( $event_list, 'load_event_list_assets' ), 10 );
244
-		add_filter( 'FHEE_enable_default_espresso_css', '__return_true' );
243
+		add_action('AHEE__EE_System__initialize_last', array($event_list, 'load_event_list_assets'), 10);
244
+		add_filter('FHEE_enable_default_espresso_css', '__return_true');
245 245
 	}
246 246
 }
247 247
 
248 248
 
249
-if ( ! function_exists( 'espresso_event_reg_button' )) {
249
+if ( ! function_exists('espresso_event_reg_button')) {
250 250
 	/**
251 251
 	 * espresso_event_reg_button
252 252
 	 * returns the "Register Now" button if event is active,
@@ -258,13 +258,13 @@  discard block
 block discarded – undo
258 258
 	 * @param bool $EVT_ID
259 259
 	 * @return string
260 260
 	 */
261
-	function espresso_event_reg_button( $btn_text_if_active = NULL, $btn_text_if_inactive = FALSE, $EVT_ID = FALSE ) {
262
-		$event = EEH_Event_View::get_event( $EVT_ID );
263
-		if ( ! $event instanceof EE_Event ) {
261
+	function espresso_event_reg_button($btn_text_if_active = NULL, $btn_text_if_inactive = FALSE, $EVT_ID = FALSE) {
262
+		$event = EEH_Event_View::get_event($EVT_ID);
263
+		if ( ! $event instanceof EE_Event) {
264 264
 			return;
265 265
 		}
266 266
 		$event_status = $event->get_active_status();
267
-		switch ( $event_status ) {
267
+		switch ($event_status) {
268 268
 			case EE_Datetime::sold_out :
269 269
 				$btn_text = esc_html__('Sold Out', 'event_espresso');
270 270
 				$class = 'ee-pink';
@@ -284,15 +284,15 @@  discard block
 block discarded – undo
284 284
 			case EE_Datetime::upcoming :
285 285
 			case EE_Datetime::active :
286 286
 			default :
287
-				$btn_text =! empty( $btn_text_if_active ) ? $btn_text_if_active : esc_html__( 'Register Now', 'event_espresso' );
287
+				$btn_text = ! empty($btn_text_if_active) ? $btn_text_if_active : esc_html__('Register Now', 'event_espresso');
288 288
 				$class = 'ee-green';
289 289
 		}
290
-		if ( $event_status < 1 && ! empty( $btn_text_if_inactive )) {
290
+		if ($event_status < 1 && ! empty($btn_text_if_inactive)) {
291 291
 			$btn_text = $btn_text_if_inactive;
292 292
 			$class = 'ee-grey';
293 293
 		}
294 294
 		?>
295
-		<a class="ee-button ee-register-button <?php echo $class; ?>" href="<?php espresso_event_link_url( $EVT_ID ); ?>"<?php echo \EED_Events_Archive::link_target(); ?>>
295
+		<a class="ee-button ee-register-button <?php echo $class; ?>" href="<?php espresso_event_link_url($EVT_ID); ?>"<?php echo \EED_Events_Archive::link_target(); ?>>
296 296
 			<?php echo $btn_text; ?>
297 297
 		</a>
298 298
 	<?php
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
 
302 302
 
303 303
 
304
-if ( ! function_exists( 'espresso_display_ticket_selector' )) {
304
+if ( ! function_exists('espresso_display_ticket_selector')) {
305 305
 	/**
306 306
 	 * espresso_display_ticket_selector
307 307
 	 * whether or not to display the Ticket Selector for an event
@@ -309,14 +309,14 @@  discard block
 block discarded – undo
309 309
 	 * @param bool $EVT_ID
310 310
 	 * @return boolean
311 311
 	 */
312
-	function espresso_display_ticket_selector( $EVT_ID = FALSE ) {
313
-		return EEH_Event_View::display_ticket_selector( $EVT_ID );
312
+	function espresso_display_ticket_selector($EVT_ID = FALSE) {
313
+		return EEH_Event_View::display_ticket_selector($EVT_ID);
314 314
 	}
315 315
 }
316 316
 
317 317
 
318 318
 
319
-if ( ! function_exists( 'espresso_event_status_banner' )) {
319
+if ( ! function_exists('espresso_event_status_banner')) {
320 320
 	/**
321 321
 	 * espresso_event_status
322 322
 	 * returns a banner showing the event status if it is sold out, expired, or inactive
@@ -324,13 +324,13 @@  discard block
 block discarded – undo
324 324
 	 * @param bool $EVT_ID
325 325
 	 * @return string
326 326
 	 */
327
-	function espresso_event_status_banner( $EVT_ID = FALSE ) {
328
-		return EEH_Event_View::event_status( $EVT_ID );
327
+	function espresso_event_status_banner($EVT_ID = FALSE) {
328
+		return EEH_Event_View::event_status($EVT_ID);
329 329
 	}
330 330
 }
331 331
 
332 332
 
333
-if ( ! function_exists( 'espresso_event_status' )) {
333
+if ( ! function_exists('espresso_event_status')) {
334 334
 	/**
335 335
 	 * espresso_event_status
336 336
 	 * returns the event status if it is sold out, expired, or inactive
@@ -339,13 +339,13 @@  discard block
 block discarded – undo
339 339
 	 * @param bool $echo
340 340
 	 * @return string
341 341
 	 */
342
-	function espresso_event_status( $EVT_ID = 0, $echo = TRUE ) {
343
-		return EEH_Event_View::event_active_status( $EVT_ID, $echo );
342
+	function espresso_event_status($EVT_ID = 0, $echo = TRUE) {
343
+		return EEH_Event_View::event_active_status($EVT_ID, $echo);
344 344
 	}
345 345
 }
346 346
 
347 347
 
348
-if ( ! function_exists( 'espresso_event_categories' )) {
348
+if ( ! function_exists('espresso_event_categories')) {
349 349
 	/**
350 350
 	 * espresso_event_categories
351 351
 	 * returns the terms associated with an event
@@ -355,17 +355,17 @@  discard block
 block discarded – undo
355 355
 	 * @param bool $echo
356 356
 	 * @return string
357 357
 	 */
358
-	function espresso_event_categories( $EVT_ID = 0, $hide_uncategorized = TRUE, $echo = TRUE ) {
359
-		if ( $echo ) {
360
-			echo EEH_Event_View::event_categories( $EVT_ID, $hide_uncategorized );
358
+	function espresso_event_categories($EVT_ID = 0, $hide_uncategorized = TRUE, $echo = TRUE) {
359
+		if ($echo) {
360
+			echo EEH_Event_View::event_categories($EVT_ID, $hide_uncategorized);
361 361
 			return '';
362 362
 		}
363
-		return EEH_Event_View::event_categories( $EVT_ID, $hide_uncategorized );
363
+		return EEH_Event_View::event_categories($EVT_ID, $hide_uncategorized);
364 364
 	}
365 365
 }
366 366
 
367 367
 
368
-if ( ! function_exists( 'espresso_event_tickets_available' )) {
368
+if ( ! function_exists('espresso_event_tickets_available')) {
369 369
 	/**
370 370
 	 * espresso_event_tickets_available
371 371
 	 * returns the ticket types available for purchase for an event
@@ -375,26 +375,26 @@  discard block
 block discarded – undo
375 375
 	 * @param bool $format
376 376
 	 * @return string
377 377
 	 */
378
-	function espresso_event_tickets_available( $EVT_ID = 0, $echo = TRUE, $format = TRUE ) {
379
-		$tickets = EEH_Event_View::event_tickets_available( $EVT_ID );
380
-		if ( is_array( $tickets ) && ! empty( $tickets )) {
378
+	function espresso_event_tickets_available($EVT_ID = 0, $echo = TRUE, $format = TRUE) {
379
+		$tickets = EEH_Event_View::event_tickets_available($EVT_ID);
380
+		if (is_array($tickets) && ! empty($tickets)) {
381 381
 			// if formatting then $html will be a string, else it will be an array of ticket objects
382
-			$html = $format ? '<ul id="ee-event-tickets-ul-' . $EVT_ID . '" class="ee-event-tickets-ul">' : array();
383
-			foreach ( $tickets as $ticket ) {
384
-				if ( $ticket instanceof EE_Ticket ) {
385
-					if ( $format ) {
386
-						$html .= '<li id="ee-event-tickets-li-' . $ticket->ID() . '" class="ee-event-tickets-li">';
387
-						$html .= $ticket->name() . ' ' . EEH_Template::format_currency( $ticket->get_ticket_total_with_taxes() );
382
+			$html = $format ? '<ul id="ee-event-tickets-ul-'.$EVT_ID.'" class="ee-event-tickets-ul">' : array();
383
+			foreach ($tickets as $ticket) {
384
+				if ($ticket instanceof EE_Ticket) {
385
+					if ($format) {
386
+						$html .= '<li id="ee-event-tickets-li-'.$ticket->ID().'" class="ee-event-tickets-li">';
387
+						$html .= $ticket->name().' '.EEH_Template::format_currency($ticket->get_ticket_total_with_taxes());
388 388
 						$html .= '</li>';
389 389
 					} else {
390 390
 						$html[] = $ticket;
391 391
 					}
392 392
 				}
393 393
 			}
394
-			if ( $format ) {
394
+			if ($format) {
395 395
 				$html .= '</ul>';
396 396
 			}
397
-			if ( $echo && $format ) {
397
+			if ($echo && $format) {
398 398
 				echo $html;
399 399
 				return '';
400 400
 			}
@@ -404,7 +404,7 @@  discard block
 block discarded – undo
404 404
 	}
405 405
 }
406 406
 
407
-if ( ! function_exists( 'espresso_event_date_obj' )) {
407
+if ( ! function_exists('espresso_event_date_obj')) {
408 408
 	/**
409 409
 	 * espresso_event_date_obj
410 410
 	 * returns the primary date object for an event
@@ -412,13 +412,13 @@  discard block
 block discarded – undo
412 412
 	 * @param bool $EVT_ID
413 413
 	 * @return object
414 414
 	 */
415
-	function espresso_event_date_obj( $EVT_ID = FALSE ) {
416
-		return EEH_Event_View::get_primary_date_obj( $EVT_ID );
415
+	function espresso_event_date_obj($EVT_ID = FALSE) {
416
+		return EEH_Event_View::get_primary_date_obj($EVT_ID);
417 417
 	}
418 418
 }
419 419
 
420 420
 
421
-if ( ! function_exists( 'espresso_event_date' )) {
421
+if ( ! function_exists('espresso_event_date')) {
422 422
 	/**
423 423
 	 * espresso_event_date
424 424
 	 * returns the primary date for an event
@@ -429,22 +429,22 @@  discard block
 block discarded – undo
429 429
 	 * @param bool $echo
430 430
 	 * @return string
431 431
 	 */
432
-	function espresso_event_date( $date_format = '', $time_format = '', $EVT_ID = FALSE, $echo = TRUE ) {
433
-		$date_format = ! empty( $date_format ) ? $date_format : get_option( 'date_format' );
434
-		$time_format = ! empty( $time_format ) ? $time_format : get_option( 'time_format' );
435
-		$date_format = apply_filters( 'FHEE__espresso_event_date__date_format', $date_format );
436
-		$time_format = apply_filters( 'FHEE__espresso_event_date__time_format', $time_format );
437
-		if($echo){
438
-			echo EEH_Event_View::the_event_date( $date_format, $time_format, $EVT_ID );
432
+	function espresso_event_date($date_format = '', $time_format = '', $EVT_ID = FALSE, $echo = TRUE) {
433
+		$date_format = ! empty($date_format) ? $date_format : get_option('date_format');
434
+		$time_format = ! empty($time_format) ? $time_format : get_option('time_format');
435
+		$date_format = apply_filters('FHEE__espresso_event_date__date_format', $date_format);
436
+		$time_format = apply_filters('FHEE__espresso_event_date__time_format', $time_format);
437
+		if ($echo) {
438
+			echo EEH_Event_View::the_event_date($date_format, $time_format, $EVT_ID);
439 439
 			return '';
440 440
 		}
441
-		return EEH_Event_View::the_event_date( $date_format, $time_format, $EVT_ID );
441
+		return EEH_Event_View::the_event_date($date_format, $time_format, $EVT_ID);
442 442
 
443 443
 	}
444 444
 }
445 445
 
446 446
 
447
-if ( ! function_exists( 'espresso_list_of_event_dates' )) {
447
+if ( ! function_exists('espresso_list_of_event_dates')) {
448 448
 	/**
449 449
 	 * espresso_list_of_event_dates
450 450
 	 * returns a unordered list of dates for an event
@@ -459,45 +459,45 @@  discard block
 block discarded – undo
459 459
 	 * @param null   $limit
460 460
 	 * @return string
461 461
 	 */
462
-	function espresso_list_of_event_dates( $EVT_ID = 0, $date_format = '', $time_format = '', $echo = TRUE, $show_expired = NULL, $format = TRUE, $add_breaks = TRUE, $limit = NULL ) {
462
+	function espresso_list_of_event_dates($EVT_ID = 0, $date_format = '', $time_format = '', $echo = TRUE, $show_expired = NULL, $format = TRUE, $add_breaks = TRUE, $limit = NULL) {
463 463
 	    $arguments = apply_filters(
464 464
             'FHEE__espresso_list_of_event_dates__arguments',
465
-            [ $EVT_ID, $date_format, $time_format, $echo, $show_expired, $format, $add_breaks, $limit ]
465
+            [$EVT_ID, $date_format, $time_format, $echo, $show_expired, $format, $add_breaks, $limit]
466 466
         );
467 467
         list($EVT_ID, $date_format, $time_format, $echo, $show_expired, $format, $add_breaks, $limit) = $arguments;
468
-	    $datetimes = EEH_Event_View::get_all_date_obj( $EVT_ID, $show_expired, FALSE, $limit );
469
-		$date_format = ! empty( $date_format ) ? $date_format : get_option( 'date_format' );
470
-		$time_format = ! empty( $time_format ) ? $time_format : get_option( 'time_format' );
471
-		$date_format = apply_filters( 'FHEE__espresso_list_of_event_dates__date_format', $date_format );
472
-		$time_format = apply_filters( 'FHEE__espresso_list_of_event_dates__time_format', $time_format );
473
-		if ( ! $format ) {
474
-			return apply_filters( 'FHEE__espresso_list_of_event_dates__datetimes', $datetimes );
468
+	    $datetimes = EEH_Event_View::get_all_date_obj($EVT_ID, $show_expired, FALSE, $limit);
469
+		$date_format = ! empty($date_format) ? $date_format : get_option('date_format');
470
+		$time_format = ! empty($time_format) ? $time_format : get_option('time_format');
471
+		$date_format = apply_filters('FHEE__espresso_list_of_event_dates__date_format', $date_format);
472
+		$time_format = apply_filters('FHEE__espresso_list_of_event_dates__time_format', $time_format);
473
+		if ( ! $format) {
474
+			return apply_filters('FHEE__espresso_list_of_event_dates__datetimes', $datetimes);
475 475
 		}
476
-		if ( is_array( $datetimes ) && ! empty( $datetimes )) {
476
+		if (is_array($datetimes) && ! empty($datetimes)) {
477 477
 			global $post;
478
-			$html = '<ul id="ee-event-datetimes-ul-' . $post->ID . '" class="ee-event-datetimes-ul ee-clearfix">';
479
-			foreach ( $datetimes as $datetime ) {
480
-				if ( $datetime instanceof EE_Datetime ) {
478
+			$html = '<ul id="ee-event-datetimes-ul-'.$post->ID.'" class="ee-event-datetimes-ul ee-clearfix">';
479
+			foreach ($datetimes as $datetime) {
480
+				if ($datetime instanceof EE_Datetime) {
481 481
                     $datetime_name = $datetime->name();
482 482
                     $datetime_description = $datetime->description();
483
-                    $html .= '<li id="ee-event-datetimes-li-' . $datetime->ID();
484
-                    $html .= '" class="ee-event-datetimes-li ee-event-datetimes-li-' . $datetime->get_active_status() . '">';
483
+                    $html .= '<li id="ee-event-datetimes-li-'.$datetime->ID();
484
+                    $html .= '" class="ee-event-datetimes-li ee-event-datetimes-li-'.$datetime->get_active_status().'">';
485 485
                     $inner_html = '';
486
-                    if (! empty( $datetime_name )) {
487
-                        $inner_html .= '<strong>' . $datetime_name . '</strong>';
486
+                    if ( ! empty($datetime_name)) {
487
+                        $inner_html .= '<strong>'.$datetime_name.'</strong>';
488 488
                         $inner_html .= $add_breaks ? '<br />' : '';
489 489
                     }
490 490
                     // add date
491 491
                     $inner_html .= '<span class="dashicons dashicons-calendar"></span>';
492 492
                     $inner_html .= '</span><span class="ee-event-datetimes-li-daterange">';
493
-                    $inner_html .= $datetime->date_range( $date_format ) . '</span><br/>';
493
+                    $inner_html .= $datetime->date_range($date_format).'</span><br/>';
494 494
                     // add time
495 495
                     $inner_html .= '<span class="dashicons dashicons-clock"></span>';
496 496
                     $inner_html .= '<span class="ee-event-datetimes-li-timerange">';
497
-                    $inner_html .= $datetime->time_range( $time_format ) . '</span>';
498
-                    if (! empty( $datetime_description )) {
497
+                    $inner_html .= $datetime->time_range($time_format).'</span>';
498
+                    if ( ! empty($datetime_description)) {
499 499
                         $inner_html .= $add_breaks ? '<br />' : '';
500
-                        $inner_html .= ' - ' . $datetime_description;
500
+                        $inner_html .= ' - '.$datetime_description;
501 501
                     }
502 502
                     $inner_html = apply_filters(
503 503
                         'FHEE__espresso_list_of_event_dates__datetime_html',
@@ -505,17 +505,17 @@  discard block
 block discarded – undo
505 505
                         $datetime,
506 506
                         $arguments
507 507
                     );
508
-                    $html .= $inner_html . '</li>';
508
+                    $html .= $inner_html.'</li>';
509 509
 				}
510 510
 			}
511 511
 			$html .= '</ul>';
512 512
             $html = apply_filters('FHEE__espresso_list_of_event_dates__html', $html, $arguments, $datetime);
513 513
 		} else {
514 514
             $html = '<p><span class="dashicons dashicons-marker pink-text"></span>';
515
-            $html .= esc_html__( 'There are no upcoming dates for this event.', 'event_espresso' );
515
+            $html .= esc_html__('There are no upcoming dates for this event.', 'event_espresso');
516 516
             $html .= '</p><br/>';
517 517
 		}
518
-		if ( $echo ) {
518
+		if ($echo) {
519 519
 			echo $html;
520 520
 			return '';
521 521
 		}
@@ -524,7 +524,7 @@  discard block
 block discarded – undo
524 524
 }
525 525
 
526 526
 
527
-if ( ! function_exists( 'espresso_event_end_date' )) {
527
+if ( ! function_exists('espresso_event_end_date')) {
528 528
 	/**
529 529
 	 * espresso_event_end_date
530 530
 	 * returns the last date for an event
@@ -535,20 +535,20 @@  discard block
 block discarded – undo
535 535
 	 * @param bool   $echo
536 536
 	 * @return string
537 537
 	 */
538
-	function espresso_event_end_date( $date_format = '', $time_format = '', $EVT_ID = FALSE, $echo = TRUE ) {
539
-		$date_format = ! empty( $date_format ) ? $date_format : get_option( 'date_format' );
540
-		$time_format = ! empty( $time_format ) ? $time_format : get_option( 'time_format' );
541
-		$date_format = apply_filters( 'FHEE__espresso_event_end_date__date_format', $date_format );
542
-		$time_format = apply_filters( 'FHEE__espresso_event_end_date__time_format', $time_format );
543
-		if($echo){
544
-			echo EEH_Event_View::the_event_end_date( $date_format, $time_format, $EVT_ID );
538
+	function espresso_event_end_date($date_format = '', $time_format = '', $EVT_ID = FALSE, $echo = TRUE) {
539
+		$date_format = ! empty($date_format) ? $date_format : get_option('date_format');
540
+		$time_format = ! empty($time_format) ? $time_format : get_option('time_format');
541
+		$date_format = apply_filters('FHEE__espresso_event_end_date__date_format', $date_format);
542
+		$time_format = apply_filters('FHEE__espresso_event_end_date__time_format', $time_format);
543
+		if ($echo) {
544
+			echo EEH_Event_View::the_event_end_date($date_format, $time_format, $EVT_ID);
545 545
 			return '';
546 546
 		}
547
-		return EEH_Event_View::the_event_end_date( $date_format, $time_format, $EVT_ID );
547
+		return EEH_Event_View::the_event_end_date($date_format, $time_format, $EVT_ID);
548 548
 	}
549 549
 }
550 550
 
551
-if ( ! function_exists( 'espresso_event_date_range' )) {
551
+if ( ! function_exists('espresso_event_date_range')) {
552 552
 	/**
553 553
 	 * espresso_event_date_range
554 554
 	 * returns the first and last chronologically ordered dates for an event (if different)
@@ -561,32 +561,32 @@  discard block
 block discarded – undo
561 561
 	 * @param bool   $echo
562 562
 	 * @return string
563 563
 	 */
564
-	function espresso_event_date_range( $date_format = '', $time_format = '', $single_date_format = '', $single_time_format = '', $EVT_ID = FALSE, $echo = TRUE ) {
564
+	function espresso_event_date_range($date_format = '', $time_format = '', $single_date_format = '', $single_time_format = '', $EVT_ID = FALSE, $echo = TRUE) {
565 565
 		// set and filter date and time formats when a range is returned
566
-		$date_format = ! empty( $date_format ) ? $date_format : get_option( 'date_format' );
567
-		$date_format = apply_filters( 'FHEE__espresso_event_date_range__date_format', $date_format );
566
+		$date_format = ! empty($date_format) ? $date_format : get_option('date_format');
567
+		$date_format = apply_filters('FHEE__espresso_event_date_range__date_format', $date_format);
568 568
 		// get the start and end date with NO time portion
569
-		$the_event_date = EEH_Event_View::the_earliest_event_date( $date_format, '', $EVT_ID );
570
-		$the_event_end_date = EEH_Event_View::the_latest_event_date( $date_format, '', $EVT_ID );
569
+		$the_event_date = EEH_Event_View::the_earliest_event_date($date_format, '', $EVT_ID);
570
+		$the_event_end_date = EEH_Event_View::the_latest_event_date($date_format, '', $EVT_ID);
571 571
 		// now we can determine if date range spans more than one day
572
-		if ( $the_event_date != $the_event_end_date ) {
573
-			$time_format = ! empty( $time_format ) ? $time_format : get_option( 'time_format' );
574
-			$time_format = apply_filters( 'FHEE__espresso_event_date_range__time_format', $time_format );
572
+		if ($the_event_date != $the_event_end_date) {
573
+			$time_format = ! empty($time_format) ? $time_format : get_option('time_format');
574
+			$time_format = apply_filters('FHEE__espresso_event_date_range__time_format', $time_format);
575 575
 			$html = sprintf(
576 576
 				/* translators: 1: first event date, 2: last event date */
577
-				esc_html__( '%1$s - %2$s', 'event_espresso' ),
578
-				EEH_Event_View::the_earliest_event_date( $date_format, $time_format, $EVT_ID ),
579
-				EEH_Event_View::the_latest_event_date( $date_format, $time_format, $EVT_ID )
577
+				esc_html__('%1$s - %2$s', 'event_espresso'),
578
+				EEH_Event_View::the_earliest_event_date($date_format, $time_format, $EVT_ID),
579
+				EEH_Event_View::the_latest_event_date($date_format, $time_format, $EVT_ID)
580 580
 			);
581 581
 		} else {
582 582
 			// set and filter date and time formats when only a single datetime is returned
583
-			$single_date_format = ! empty( $single_date_format ) ? $single_date_format : get_option( 'date_format' );
584
-			$single_time_format = ! empty( $single_time_format ) ? $single_time_format : get_option( 'time_format' );
585
-			$single_date_format = apply_filters( 'FHEE__espresso_event_date_range__single_date_format', $single_date_format );
586
-			$single_time_format = apply_filters( 'FHEE__espresso_event_date_range__single_time_format', $single_time_format );
587
-			$html = EEH_Event_View::the_earliest_event_date( $single_date_format, $single_time_format, $EVT_ID );
583
+			$single_date_format = ! empty($single_date_format) ? $single_date_format : get_option('date_format');
584
+			$single_time_format = ! empty($single_time_format) ? $single_time_format : get_option('time_format');
585
+			$single_date_format = apply_filters('FHEE__espresso_event_date_range__single_date_format', $single_date_format);
586
+			$single_time_format = apply_filters('FHEE__espresso_event_date_range__single_time_format', $single_time_format);
587
+			$html = EEH_Event_View::the_earliest_event_date($single_date_format, $single_time_format, $EVT_ID);
588 588
 		}
589
-		if ( $echo ) {
589
+		if ($echo) {
590 590
 			echo $html;
591 591
 			return '';
592 592
 		}
@@ -594,7 +594,7 @@  discard block
 block discarded – undo
594 594
 	}
595 595
 }
596 596
 
597
-if ( ! function_exists( 'espresso_next_upcoming_datetime_obj' )) {
597
+if ( ! function_exists('espresso_next_upcoming_datetime_obj')) {
598 598
 	/**
599 599
 	 * espresso_next_upcoming_datetime_obj
600 600
 	 * returns the next upcoming datetime object for an event
@@ -602,12 +602,12 @@  discard block
 block discarded – undo
602 602
 	 * @param int $EVT_ID
603 603
 	 * @return EE_Datetime|null
604 604
 	 */
605
-	function espresso_next_upcoming_datetime_obj( $EVT_ID = 0 ) {
606
-		return EEH_Event_View::get_next_upcoming_date_obj( $EVT_ID );
605
+	function espresso_next_upcoming_datetime_obj($EVT_ID = 0) {
606
+		return EEH_Event_View::get_next_upcoming_date_obj($EVT_ID);
607 607
 	}
608 608
 }
609 609
 
610
-if ( ! function_exists( 'espresso_next_upcoming_datetime' ) ) {
610
+if ( ! function_exists('espresso_next_upcoming_datetime')) {
611 611
 	/**
612 612
 	 * espresso_next_upcoming_datetime
613 613
 	 * returns the start date and time for the next upcoming event.
@@ -618,30 +618,30 @@  discard block
 block discarded – undo
618 618
 	 * @param bool $echo
619 619
 	 * @return string
620 620
 	 */
621
-	function espresso_next_upcoming_datetime( $date_format = '', $time_format = '', $EVT_ID = 0, $echo = true ) {
621
+	function espresso_next_upcoming_datetime($date_format = '', $time_format = '', $EVT_ID = 0, $echo = true) {
622 622
 
623
-		$date_format = ! empty( $date_format ) ? $date_format : get_option( 'date_format' );
624
-		$date_format = apply_filters( 'FHEE__espresso_next_upcoming_datetime__date_format', $date_format );
623
+		$date_format = ! empty($date_format) ? $date_format : get_option('date_format');
624
+		$date_format = apply_filters('FHEE__espresso_next_upcoming_datetime__date_format', $date_format);
625 625
 
626
-		$time_format = ! empty( $time_format ) ? $time_format : get_option( 'time_format' );
627
-		$time_format = apply_filters( 'FHEE__espresso_next_upcoming_datetime__time_format', $time_format );
626
+		$time_format = ! empty($time_format) ? $time_format : get_option('time_format');
627
+		$time_format = apply_filters('FHEE__espresso_next_upcoming_datetime__time_format', $time_format);
628 628
 
629
-		$datetime_format = trim( $date_format . ' ' . $time_format);
629
+		$datetime_format = trim($date_format.' '.$time_format);
630 630
 
631
-		$datetime = espresso_next_upcoming_datetime_obj( $EVT_ID );
631
+		$datetime = espresso_next_upcoming_datetime_obj($EVT_ID);
632 632
 
633
-		if( ! $datetime instanceof EE_Datetime ) {
633
+		if ( ! $datetime instanceof EE_Datetime) {
634 634
 			return '';
635 635
 		}
636
-		if ( $echo ){
637
-			echo $datetime->get_i18n_datetime( 'DTT_EVT_start', $datetime_format );
636
+		if ($echo) {
637
+			echo $datetime->get_i18n_datetime('DTT_EVT_start', $datetime_format);
638 638
 			return '';
639 639
 		}
640
-		return $datetime->get_i18n_datetime( 'DTT_EVT_start', $datetime_format );
640
+		return $datetime->get_i18n_datetime('DTT_EVT_start', $datetime_format);
641 641
 	}
642 642
 }
643 643
 
644
-if ( ! function_exists( 'espresso_event_date_as_calendar_page' )) {
644
+if ( ! function_exists('espresso_event_date_as_calendar_page')) {
645 645
 	/**
646 646
 	 * espresso_event_date_as_calendar_page
647 647
 	 * returns the primary date for an event, stylized to appear as the page of a calendar
@@ -649,15 +649,15 @@  discard block
 block discarded – undo
649 649
 	 * @param bool $EVT_ID
650 650
 	 * @return string
651 651
 	 */
652
-	function espresso_event_date_as_calendar_page( $EVT_ID = FALSE ) {
653
-		EEH_Event_View::event_date_as_calendar_page( $EVT_ID );
652
+	function espresso_event_date_as_calendar_page($EVT_ID = FALSE) {
653
+		EEH_Event_View::event_date_as_calendar_page($EVT_ID);
654 654
 	}
655 655
 }
656 656
 
657 657
 
658 658
 
659 659
 
660
-if ( ! function_exists( 'espresso_event_link_url' )) {
660
+if ( ! function_exists('espresso_event_link_url')) {
661 661
 	/**
662 662
 	 * espresso_event_link_url
663 663
 	 *
@@ -665,18 +665,18 @@  discard block
 block discarded – undo
665 665
 	 * @param bool $echo
666 666
 	 * @return string
667 667
 	 */
668
-	function espresso_event_link_url( $EVT_ID = 0, $echo = TRUE ) {
669
-		if ( $echo ) {
670
-			echo EEH_Event_View::event_link_url( $EVT_ID );
668
+	function espresso_event_link_url($EVT_ID = 0, $echo = TRUE) {
669
+		if ($echo) {
670
+			echo EEH_Event_View::event_link_url($EVT_ID);
671 671
 			return '';
672 672
 		}
673
-		return EEH_Event_View::event_link_url( $EVT_ID );
673
+		return EEH_Event_View::event_link_url($EVT_ID);
674 674
 	}
675 675
 }
676 676
 
677 677
 
678 678
 
679
-if ( ! function_exists( 'espresso_event_has_content_or_excerpt' )) {
679
+if ( ! function_exists('espresso_event_has_content_or_excerpt')) {
680 680
 	/**
681 681
 	 *    espresso_event_has_content_or_excerpt
682 682
 	 *
@@ -684,15 +684,15 @@  discard block
 block discarded – undo
684 684
 	 * @param bool $EVT_ID
685 685
 	 * @return    boolean
686 686
 	 */
687
-	function espresso_event_has_content_or_excerpt( $EVT_ID = FALSE ) {
688
-		return EEH_Event_View::event_has_content_or_excerpt( $EVT_ID );
687
+	function espresso_event_has_content_or_excerpt($EVT_ID = FALSE) {
688
+		return EEH_Event_View::event_has_content_or_excerpt($EVT_ID);
689 689
 	}
690 690
 }
691 691
 
692 692
 
693 693
 
694 694
 
695
-if ( ! function_exists( 'espresso_event_content_or_excerpt' )) {
695
+if ( ! function_exists('espresso_event_content_or_excerpt')) {
696 696
 	/**
697 697
 	 * espresso_event_content_or_excerpt
698 698
 	 *
@@ -701,18 +701,18 @@  discard block
 block discarded – undo
701 701
 	 * @param bool $echo
702 702
 	 * @return string
703 703
 	 */
704
-	function espresso_event_content_or_excerpt( $num_words = 55, $more = NULL, $echo = TRUE ) {
705
-		if ( $echo ) {
706
-			echo EEH_Event_View::event_content_or_excerpt( $num_words, $more );
704
+	function espresso_event_content_or_excerpt($num_words = 55, $more = NULL, $echo = TRUE) {
705
+		if ($echo) {
706
+			echo EEH_Event_View::event_content_or_excerpt($num_words, $more);
707 707
 			return '';
708 708
 		}
709
-		return EEH_Event_View::event_content_or_excerpt( $num_words, $more );
709
+		return EEH_Event_View::event_content_or_excerpt($num_words, $more);
710 710
 	}
711 711
 }
712 712
 
713 713
 
714 714
 
715
-if ( ! function_exists( 'espresso_event_phone' )) {
715
+if ( ! function_exists('espresso_event_phone')) {
716 716
 	/**
717 717
 	 * espresso_event_phone
718 718
 	 *
@@ -720,18 +720,18 @@  discard block
 block discarded – undo
720 720
 	 * @param bool $echo
721 721
 	 * @return string
722 722
 	 */
723
-	function espresso_event_phone( $EVT_ID = 0, $echo = TRUE ) {
724
-		if ( $echo ) {
725
-			echo EEH_Event_View::event_phone( $EVT_ID );
723
+	function espresso_event_phone($EVT_ID = 0, $echo = TRUE) {
724
+		if ($echo) {
725
+			echo EEH_Event_View::event_phone($EVT_ID);
726 726
 			return '';
727 727
 		}
728
-		return EEH_Event_View::event_phone( $EVT_ID );
728
+		return EEH_Event_View::event_phone($EVT_ID);
729 729
 	}
730 730
 }
731 731
 
732 732
 
733 733
 
734
-if ( ! function_exists( 'espresso_edit_event_link' )) {
734
+if ( ! function_exists('espresso_edit_event_link')) {
735 735
 	/**
736 736
 	 * espresso_edit_event_link
737 737
 	 * returns a link to edit an event
@@ -740,39 +740,39 @@  discard block
 block discarded – undo
740 740
 	 * @param bool $echo
741 741
 	 * @return string
742 742
 	 */
743
-	function espresso_edit_event_link( $EVT_ID = 0, $echo = TRUE ) {
744
-		if ( $echo ) {
745
-			echo EEH_Event_View::edit_event_link( $EVT_ID );
743
+	function espresso_edit_event_link($EVT_ID = 0, $echo = TRUE) {
744
+		if ($echo) {
745
+			echo EEH_Event_View::edit_event_link($EVT_ID);
746 746
 			return '';
747 747
 		}
748
-		return EEH_Event_View::edit_event_link( $EVT_ID );
748
+		return EEH_Event_View::edit_event_link($EVT_ID);
749 749
 	}
750 750
 }
751 751
 
752 752
 
753
-if ( ! function_exists( 'espresso_organization_name' )) {
753
+if ( ! function_exists('espresso_organization_name')) {
754 754
 	/**
755 755
 	 * espresso_organization_name
756 756
 	 * @param bool $echo
757 757
 	 * @return string
758 758
 	 */
759 759
 	function espresso_organization_name($echo = TRUE) {
760
-		if($echo){
761
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'name' );
760
+		if ($echo) {
761
+			echo EE_Registry::instance()->CFG->organization->get_pretty('name');
762 762
 			return '';
763 763
 		}
764
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'name' );
764
+		return EE_Registry::instance()->CFG->organization->get_pretty('name');
765 765
 	}
766 766
 }
767 767
 
768
-if ( ! function_exists( 'espresso_organization_address' )) {
768
+if ( ! function_exists('espresso_organization_address')) {
769 769
 	/**
770 770
 	 * espresso_organization_address
771 771
 	 * @param string $type
772 772
 	 * @return string
773 773
 	 */
774
-	function espresso_organization_address( $type = 'inline' ) {
775
-		if ( EE_Registry::instance()->CFG->organization instanceof EE_Organization_Config ) {
774
+	function espresso_organization_address($type = 'inline') {
775
+		if (EE_Registry::instance()->CFG->organization instanceof EE_Organization_Config) {
776 776
 			$address = new EventEspresso\core\domain\entities\GenericAddress(
777 777
 				EE_Registry::instance()->CFG->organization->address_1,
778 778
 				EE_Registry::instance()->CFG->organization->address_2,
@@ -781,129 +781,129 @@  discard block
 block discarded – undo
781 781
 				EE_Registry::instance()->CFG->organization->zip,
782 782
 				EE_Registry::instance()->CFG->organization->CNT_ISO
783 783
 			);
784
-			return EEH_Address::format( $address, $type );
784
+			return EEH_Address::format($address, $type);
785 785
 		}
786 786
 		return '';
787 787
 	}
788 788
 }
789 789
 
790
-if ( ! function_exists( 'espresso_organization_email' )) {
790
+if ( ! function_exists('espresso_organization_email')) {
791 791
 	/**
792 792
 	 * espresso_organization_email
793 793
 	 * @param bool $echo
794 794
 	 * @return string
795 795
 	 */
796
-	function espresso_organization_email( $echo = TRUE ) {
797
-		if($echo){
798
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'email' );
796
+	function espresso_organization_email($echo = TRUE) {
797
+		if ($echo) {
798
+			echo EE_Registry::instance()->CFG->organization->get_pretty('email');
799 799
 			return '';
800 800
 		}
801
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'email' );
801
+		return EE_Registry::instance()->CFG->organization->get_pretty('email');
802 802
 	}
803 803
 }
804 804
 
805
-if ( ! function_exists( 'espresso_organization_logo_url' )) {
805
+if ( ! function_exists('espresso_organization_logo_url')) {
806 806
 	/**
807 807
 	 * espresso_organization_logo_url
808 808
 	 * @param bool $echo
809 809
 	 * @return string
810 810
 	 */
811
-	function espresso_organization_logo_url( $echo = TRUE ) {
812
-		if($echo){
813
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'logo_url' );
811
+	function espresso_organization_logo_url($echo = TRUE) {
812
+		if ($echo) {
813
+			echo EE_Registry::instance()->CFG->organization->get_pretty('logo_url');
814 814
 			return '';
815 815
 		}
816
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'logo_url' );
816
+		return EE_Registry::instance()->CFG->organization->get_pretty('logo_url');
817 817
 	}
818 818
 }
819 819
 
820
-if ( ! function_exists( 'espresso_organization_facebook' )) {
820
+if ( ! function_exists('espresso_organization_facebook')) {
821 821
 	/**
822 822
 	 * espresso_organization_facebook
823 823
 	 * @param bool $echo
824 824
 	 * @return string
825 825
 	 */
826
-	function espresso_organization_facebook( $echo = TRUE ) {
827
-		if($echo){
828
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'facebook' );
826
+	function espresso_organization_facebook($echo = TRUE) {
827
+		if ($echo) {
828
+			echo EE_Registry::instance()->CFG->organization->get_pretty('facebook');
829 829
 			return '';
830 830
 		}
831
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'facebook' );
831
+		return EE_Registry::instance()->CFG->organization->get_pretty('facebook');
832 832
 	}
833 833
 }
834 834
 
835
-if ( ! function_exists( 'espresso_organization_twitter' )) {
835
+if ( ! function_exists('espresso_organization_twitter')) {
836 836
 	/**
837 837
 	 * espresso_organization_twitter
838 838
 	 * @param bool $echo
839 839
 	 * @return string
840 840
 	 */
841
-	function espresso_organization_twitter( $echo = TRUE ) {
842
-		if($echo){
843
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'twitter' );
841
+	function espresso_organization_twitter($echo = TRUE) {
842
+		if ($echo) {
843
+			echo EE_Registry::instance()->CFG->organization->get_pretty('twitter');
844 844
 			return '';
845 845
 		}
846
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'twitter' );
846
+		return EE_Registry::instance()->CFG->organization->get_pretty('twitter');
847 847
 	}
848 848
 }
849 849
 
850
-if ( ! function_exists( 'espresso_organization_linkedin' )) {
850
+if ( ! function_exists('espresso_organization_linkedin')) {
851 851
 	/**
852 852
 	 * espresso_organization_linkedin
853 853
 	 * @param bool $echo
854 854
 	 * @return string
855 855
 	 */
856
-	function espresso_organization_linkedin( $echo = TRUE ) {
857
-		if($echo){
858
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'linkedin' );
856
+	function espresso_organization_linkedin($echo = TRUE) {
857
+		if ($echo) {
858
+			echo EE_Registry::instance()->CFG->organization->get_pretty('linkedin');
859 859
 			return '';
860 860
 		}
861
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'linkedin' );
861
+		return EE_Registry::instance()->CFG->organization->get_pretty('linkedin');
862 862
 	}
863 863
 }
864 864
 
865
-if ( ! function_exists( 'espresso_organization_pinterest' )) {
865
+if ( ! function_exists('espresso_organization_pinterest')) {
866 866
 	/**
867 867
 	 * espresso_organization_pinterest
868 868
 	 * @param bool $echo
869 869
 	 * @return string
870 870
 	 */
871
-	function espresso_organization_pinterest( $echo = TRUE ) {
872
-		if($echo){
873
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'pinterest' );
871
+	function espresso_organization_pinterest($echo = TRUE) {
872
+		if ($echo) {
873
+			echo EE_Registry::instance()->CFG->organization->get_pretty('pinterest');
874 874
 			return '';
875 875
 		}
876
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'pinterest' );
876
+		return EE_Registry::instance()->CFG->organization->get_pretty('pinterest');
877 877
 	}
878 878
 }
879 879
 
880
-if ( ! function_exists( 'espresso_organization_google' )) {
880
+if ( ! function_exists('espresso_organization_google')) {
881 881
 	/**
882 882
 	 * espresso_organization_google
883 883
 	 * @param bool $echo
884 884
 	 * @return string
885 885
 	 */
886
-	function espresso_organization_google( $echo = TRUE ) {
887
-		if($echo){
888
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'google' );
886
+	function espresso_organization_google($echo = TRUE) {
887
+		if ($echo) {
888
+			echo EE_Registry::instance()->CFG->organization->get_pretty('google');
889 889
 			return '';
890 890
 		}
891
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'google' );
891
+		return EE_Registry::instance()->CFG->organization->get_pretty('google');
892 892
 	}
893 893
 }
894 894
 
895
-if ( ! function_exists( 'espresso_organization_instagram' )) {
895
+if ( ! function_exists('espresso_organization_instagram')) {
896 896
 	/**
897 897
 	 * espresso_organization_instagram
898 898
 	 * @param bool $echo
899 899
 	 * @return string
900 900
 	 */
901
-	function espresso_organization_instagram( $echo = TRUE ) {
902
-		if($echo){
903
-			echo EE_Registry::instance()->CFG->organization->get_pretty( 'instagram' );
901
+	function espresso_organization_instagram($echo = TRUE) {
902
+		if ($echo) {
903
+			echo EE_Registry::instance()->CFG->organization->get_pretty('instagram');
904 904
 			return '';
905 905
 		}
906
-		return EE_Registry::instance()->CFG->organization->get_pretty( 'instagram' );
906
+		return EE_Registry::instance()->CFG->organization->get_pretty('instagram');
907 907
 	}
908 908
 }
909 909
 
@@ -913,7 +913,7 @@  discard block
 block discarded – undo
913 913
 
914 914
 
915 915
 
916
-if ( ! function_exists( 'espresso_event_venues' )) {
916
+if ( ! function_exists('espresso_event_venues')) {
917 917
 	/**
918 918
 	 * espresso_event_venues
919 919
 	 *
@@ -927,7 +927,7 @@  discard block
 block discarded – undo
927 927
 
928 928
 
929 929
 
930
-if ( ! function_exists( 'espresso_venue_id' )) {
930
+if ( ! function_exists('espresso_venue_id')) {
931 931
 	/**
932 932
 	 *    espresso_venue_name
933 933
 	 *
@@ -935,15 +935,15 @@  discard block
 block discarded – undo
935 935
 	 * @param     int $EVT_ID
936 936
 	 * @return    string
937 937
 	 */
938
-	function espresso_venue_id( $EVT_ID = 0 ) {
939
-		$venue = EEH_Venue_View::get_venue( $EVT_ID );
938
+	function espresso_venue_id($EVT_ID = 0) {
939
+		$venue = EEH_Venue_View::get_venue($EVT_ID);
940 940
 		return $venue instanceof EE_Venue ? $venue->ID() : 0;
941 941
 	}
942 942
 }
943 943
 
944 944
 
945 945
 
946
-if ( ! function_exists( 'espresso_is_venue_private' ) ) {
946
+if ( ! function_exists('espresso_is_venue_private')) {
947 947
 	/**
948 948
 	 * Return whether a venue is private or not.
949 949
 	 * @see EEH_Venue_View::get_venue() for more info on expected return results.
@@ -952,45 +952,45 @@  discard block
 block discarded – undo
952 952
 	 *
953 953
 	 * @return bool | null
954 954
 	 */
955
-	function espresso_is_venue_private( $VNU_ID = 0 ) {
956
-		return EEH_Venue_View::is_venue_private( $VNU_ID );
955
+	function espresso_is_venue_private($VNU_ID = 0) {
956
+		return EEH_Venue_View::is_venue_private($VNU_ID);
957 957
 	}
958 958
 }
959 959
 
960 960
 
961 961
 
962
-if ( ! function_exists( 'espresso_venue_is_password_protected' ) ) {
962
+if ( ! function_exists('espresso_venue_is_password_protected')) {
963 963
 	/**
964 964
 	 * returns true or false if a venue is password protected or not
965 965
 	 *
966 966
 	 * @param int     $VNU_ID optional, the venue id to check.
967 967
 	 * @return string
968 968
 	 */
969
-	function espresso_venue_is_password_protected( $VNU_ID = 0 ) {
970
-		EE_Registry::instance()->load_helper( 'Venue_View' );
971
-		return EEH_Venue_View::is_venue_password_protected( $VNU_ID );
969
+	function espresso_venue_is_password_protected($VNU_ID = 0) {
970
+		EE_Registry::instance()->load_helper('Venue_View');
971
+		return EEH_Venue_View::is_venue_password_protected($VNU_ID);
972 972
 	}
973 973
 }
974 974
 
975 975
 
976 976
 
977
-if ( ! function_exists( 'espresso_password_protected_venue_form' ) ) {
977
+if ( ! function_exists('espresso_password_protected_venue_form')) {
978 978
 	/**
979 979
 	 * Returns a password form if venue is password protected.
980 980
 	 *
981 981
 	 * @param int     $VNU_ID optional, the venue id to check.
982 982
 	 * @return string
983 983
 	 */
984
-	function espresso_password_protected_venue_form( $VNU_ID = 0 ) {
985
-		EE_Registry::instance()->load_helper( 'Venue_View' );
986
-		return EEH_Venue_View::password_protected_venue_form( $VNU_ID );
984
+	function espresso_password_protected_venue_form($VNU_ID = 0) {
985
+		EE_Registry::instance()->load_helper('Venue_View');
986
+		return EEH_Venue_View::password_protected_venue_form($VNU_ID);
987 987
 	}
988 988
 }
989 989
 
990 990
 
991 991
 
992 992
 
993
-if ( ! function_exists( 'espresso_venue_name' )) {
993
+if ( ! function_exists('espresso_venue_name')) {
994 994
 	/**
995 995
 	 *    espresso_venue_name
996 996
 	 *
@@ -1000,19 +1000,19 @@  discard block
 block discarded – undo
1000 1000
 	 * @param bool   $echo
1001 1001
 	 * @return    string
1002 1002
 	 */
1003
-	function espresso_venue_name( $VNU_ID = 0, $link_to = 'details', $echo = TRUE ) {
1004
-		if($echo){
1005
-			echo EEH_Venue_View::venue_name( $link_to, $VNU_ID );
1003
+	function espresso_venue_name($VNU_ID = 0, $link_to = 'details', $echo = TRUE) {
1004
+		if ($echo) {
1005
+			echo EEH_Venue_View::venue_name($link_to, $VNU_ID);
1006 1006
 			return '';
1007 1007
 		}
1008
-		return EEH_Venue_View::venue_name( $link_to, $VNU_ID );
1008
+		return EEH_Venue_View::venue_name($link_to, $VNU_ID);
1009 1009
 	}
1010 1010
 }
1011 1011
 
1012 1012
 
1013 1013
 
1014 1014
 
1015
-if ( ! function_exists( 'espresso_venue_link' )) {
1015
+if ( ! function_exists('espresso_venue_link')) {
1016 1016
 	/**
1017 1017
 	 * 	espresso_venue_link
1018 1018
 	 *
@@ -1021,14 +1021,14 @@  discard block
 block discarded – undo
1021 1021
 	 *  @param 	string 	$text
1022 1022
 	 *  @return 	string
1023 1023
 	 */
1024
-	function espresso_venue_link( $VNU_ID = 0, $text = '' ) {
1025
-		return EEH_Venue_View::venue_details_link( $VNU_ID, $text );
1024
+	function espresso_venue_link($VNU_ID = 0, $text = '') {
1025
+		return EEH_Venue_View::venue_details_link($VNU_ID, $text);
1026 1026
 	}
1027 1027
 }
1028 1028
 
1029 1029
 
1030 1030
 
1031
-if ( ! function_exists( 'espresso_venue_description' )) {
1031
+if ( ! function_exists('espresso_venue_description')) {
1032 1032
 	/**
1033 1033
 	 *    espresso_venue_description
1034 1034
 	 *
@@ -1037,17 +1037,17 @@  discard block
 block discarded – undo
1037 1037
 	 * @param bool $echo
1038 1038
 	 * @return    string
1039 1039
 	 */
1040
-	function espresso_venue_description( $VNU_ID = FALSE, $echo = TRUE ) {
1041
-		if($echo){
1042
-			echo EEH_Venue_View::venue_description( $VNU_ID );
1040
+	function espresso_venue_description($VNU_ID = FALSE, $echo = TRUE) {
1041
+		if ($echo) {
1042
+			echo EEH_Venue_View::venue_description($VNU_ID);
1043 1043
 			return '';
1044 1044
 		}
1045
-		return EEH_Venue_View::venue_description( $VNU_ID );
1045
+		return EEH_Venue_View::venue_description($VNU_ID);
1046 1046
 	}
1047 1047
 }
1048 1048
 
1049 1049
 
1050
-if ( ! function_exists( 'espresso_venue_excerpt' )) {
1050
+if ( ! function_exists('espresso_venue_excerpt')) {
1051 1051
 	/**
1052 1052
 	 *    espresso_venue_excerpt
1053 1053
 	 *
@@ -1056,18 +1056,18 @@  discard block
 block discarded – undo
1056 1056
 	 * @param bool $echo
1057 1057
 	 * @return    string
1058 1058
 	 */
1059
-	function espresso_venue_excerpt( $VNU_ID = 0,  $echo = TRUE ) {
1060
-		if ( $echo ) {
1061
-			echo EEH_Venue_View::venue_excerpt( $VNU_ID );
1059
+	function espresso_venue_excerpt($VNU_ID = 0, $echo = TRUE) {
1060
+		if ($echo) {
1061
+			echo EEH_Venue_View::venue_excerpt($VNU_ID);
1062 1062
 			return '';
1063 1063
 		}
1064
-		return EEH_Venue_View::venue_excerpt( $VNU_ID );
1064
+		return EEH_Venue_View::venue_excerpt($VNU_ID);
1065 1065
 	}
1066 1066
 }
1067 1067
 
1068 1068
 
1069 1069
 
1070
-if ( ! function_exists( 'espresso_venue_categories' )) {
1070
+if ( ! function_exists('espresso_venue_categories')) {
1071 1071
 	/**
1072 1072
 	 * espresso_venue_categories
1073 1073
 	 * returns the terms associated with a venue
@@ -1077,17 +1077,17 @@  discard block
 block discarded – undo
1077 1077
 	 * @param bool $echo
1078 1078
 	 * @return string
1079 1079
 	 */
1080
-	function espresso_venue_categories( $VNU_ID = 0, $hide_uncategorized = TRUE,  $echo = TRUE ) {
1081
-		if ( $echo ) {
1082
-			echo EEH_Venue_View::venue_categories( $VNU_ID, $hide_uncategorized );
1080
+	function espresso_venue_categories($VNU_ID = 0, $hide_uncategorized = TRUE, $echo = TRUE) {
1081
+		if ($echo) {
1082
+			echo EEH_Venue_View::venue_categories($VNU_ID, $hide_uncategorized);
1083 1083
 			return '';
1084 1084
 		}
1085
-		return EEH_Venue_View::venue_categories( $VNU_ID, $hide_uncategorized );
1085
+		return EEH_Venue_View::venue_categories($VNU_ID, $hide_uncategorized);
1086 1086
 	}
1087 1087
 }
1088 1088
 
1089 1089
 
1090
-if ( ! function_exists( 'espresso_venue_address' )) {
1090
+if ( ! function_exists('espresso_venue_address')) {
1091 1091
 	/**
1092 1092
 	 * espresso_venue_address
1093 1093
 	 * returns a formatted block of html  for displaying a venue's address
@@ -1097,17 +1097,17 @@  discard block
 block discarded – undo
1097 1097
 	 * @param bool   $echo
1098 1098
 	 * @return string
1099 1099
 	 */
1100
-	function espresso_venue_address( $type = 'multiline', $VNU_ID = 0, $echo = TRUE ) {
1101
-		if ( $echo ) {
1102
-			echo EEH_Venue_View::venue_address( $type, $VNU_ID );
1100
+	function espresso_venue_address($type = 'multiline', $VNU_ID = 0, $echo = TRUE) {
1101
+		if ($echo) {
1102
+			echo EEH_Venue_View::venue_address($type, $VNU_ID);
1103 1103
 			return '';
1104 1104
 		}
1105
-		return EEH_Venue_View::venue_address( $type, $VNU_ID );
1105
+		return EEH_Venue_View::venue_address($type, $VNU_ID);
1106 1106
 	}
1107 1107
 }
1108 1108
 
1109 1109
 
1110
-if ( ! function_exists( 'espresso_venue_raw_address' )) {
1110
+if ( ! function_exists('espresso_venue_raw_address')) {
1111 1111
 	/**
1112 1112
 	 * espresso_venue_address
1113 1113
 	 * returns an UN-formatted string containing a venue's address
@@ -1117,17 +1117,17 @@  discard block
 block discarded – undo
1117 1117
 	 * @param bool     $echo
1118 1118
 	 * @return string
1119 1119
 	 */
1120
-	function espresso_venue_raw_address( $type = 'multiline', $VNU_ID = 0, $echo = TRUE ) {
1121
-		if ( $echo ) {
1122
-			echo EEH_Venue_View::venue_address( $type, $VNU_ID, FALSE, FALSE );
1120
+	function espresso_venue_raw_address($type = 'multiline', $VNU_ID = 0, $echo = TRUE) {
1121
+		if ($echo) {
1122
+			echo EEH_Venue_View::venue_address($type, $VNU_ID, FALSE, FALSE);
1123 1123
 			return '';
1124 1124
 		}
1125
-		return EEH_Venue_View::venue_address( $type, $VNU_ID, FALSE, FALSE );
1125
+		return EEH_Venue_View::venue_address($type, $VNU_ID, FALSE, FALSE);
1126 1126
 	}
1127 1127
 }
1128 1128
 
1129 1129
 
1130
-if ( ! function_exists( 'espresso_venue_has_address' )) {
1130
+if ( ! function_exists('espresso_venue_has_address')) {
1131 1131
 	/**
1132 1132
 	 * espresso_venue_has_address
1133 1133
 	 * returns TRUE or FALSE if a Venue has address information
@@ -1135,13 +1135,13 @@  discard block
 block discarded – undo
1135 1135
 	 * @param int $VNU_ID
1136 1136
 	 * @return bool
1137 1137
 	 */
1138
-	function espresso_venue_has_address( $VNU_ID = 0 ) {
1139
-		return EEH_Venue_View::venue_has_address( $VNU_ID );
1138
+	function espresso_venue_has_address($VNU_ID = 0) {
1139
+		return EEH_Venue_View::venue_has_address($VNU_ID);
1140 1140
 	}
1141 1141
 }
1142 1142
 
1143 1143
 
1144
-if ( ! function_exists( 'espresso_venue_gmap' )) {
1144
+if ( ! function_exists('espresso_venue_gmap')) {
1145 1145
 	/**
1146 1146
 	 * espresso_venue_gmap
1147 1147
 	 * returns a google map for the venue address
@@ -1152,17 +1152,17 @@  discard block
 block discarded – undo
1152 1152
 	 * @param bool     $echo
1153 1153
 	 * @return string
1154 1154
 	 */
1155
-	function espresso_venue_gmap( $VNU_ID = 0, $map_ID = FALSE, $gmap = array(), $echo = TRUE  ) {
1156
-		if ( $echo ) {
1157
-			echo EEH_Venue_View::venue_gmap( $VNU_ID, $map_ID, $gmap );
1155
+	function espresso_venue_gmap($VNU_ID = 0, $map_ID = FALSE, $gmap = array(), $echo = TRUE) {
1156
+		if ($echo) {
1157
+			echo EEH_Venue_View::venue_gmap($VNU_ID, $map_ID, $gmap);
1158 1158
 			return '';
1159 1159
 		}
1160
-		return EEH_Venue_View::venue_gmap( $VNU_ID, $map_ID, $gmap );
1160
+		return EEH_Venue_View::venue_gmap($VNU_ID, $map_ID, $gmap);
1161 1161
 	}
1162 1162
 }
1163 1163
 
1164 1164
 
1165
-if ( ! function_exists( 'espresso_venue_phone' )) {
1165
+if ( ! function_exists('espresso_venue_phone')) {
1166 1166
 	/**
1167 1167
 	 * espresso_venue_phone
1168 1168
 	 *
@@ -1170,18 +1170,18 @@  discard block
 block discarded – undo
1170 1170
 	 * @param bool $echo
1171 1171
 	 * @return string
1172 1172
 	 */
1173
-	function espresso_venue_phone( $VNU_ID = 0, $echo = TRUE ) {
1174
-		if ( $echo ) {
1175
-			echo EEH_Venue_View::venue_phone( $VNU_ID );
1173
+	function espresso_venue_phone($VNU_ID = 0, $echo = TRUE) {
1174
+		if ($echo) {
1175
+			echo EEH_Venue_View::venue_phone($VNU_ID);
1176 1176
 			return '';
1177 1177
 		}
1178
-		return EEH_Venue_View::venue_phone( $VNU_ID );
1178
+		return EEH_Venue_View::venue_phone($VNU_ID);
1179 1179
 	}
1180 1180
 }
1181 1181
 
1182 1182
 
1183 1183
 
1184
-if ( ! function_exists( 'espresso_venue_website' )) {
1184
+if ( ! function_exists('espresso_venue_website')) {
1185 1185
 	/**
1186 1186
 	 * espresso_venue_website
1187 1187
 	 *
@@ -1189,18 +1189,18 @@  discard block
 block discarded – undo
1189 1189
 	 * @param bool $echo
1190 1190
 	 * @return string
1191 1191
 	 */
1192
-	function espresso_venue_website( $VNU_ID = 0, $echo = TRUE ) {
1193
-		if ( $echo ) {
1194
-			echo EEH_Venue_View::venue_website_link( $VNU_ID );
1192
+	function espresso_venue_website($VNU_ID = 0, $echo = TRUE) {
1193
+		if ($echo) {
1194
+			echo EEH_Venue_View::venue_website_link($VNU_ID);
1195 1195
 			return '';
1196 1196
 		}
1197
-		return EEH_Venue_View::venue_website_link( $VNU_ID );
1197
+		return EEH_Venue_View::venue_website_link($VNU_ID);
1198 1198
 	}
1199 1199
 }
1200 1200
 
1201 1201
 
1202 1202
 
1203
-if ( ! function_exists( 'espresso_edit_venue_link' )) {
1203
+if ( ! function_exists('espresso_edit_venue_link')) {
1204 1204
 	/**
1205 1205
 	 * espresso_edit_venue_link
1206 1206
 	 *
@@ -1208,12 +1208,12 @@  discard block
 block discarded – undo
1208 1208
 	 * @param bool $echo
1209 1209
 	 * @return string
1210 1210
 	 */
1211
-	function espresso_edit_venue_link( $VNU_ID = 0, $echo = TRUE ) {
1212
-		if($echo){
1213
-			echo EEH_Venue_View::edit_venue_link( $VNU_ID );
1211
+	function espresso_edit_venue_link($VNU_ID = 0, $echo = TRUE) {
1212
+		if ($echo) {
1213
+			echo EEH_Venue_View::edit_venue_link($VNU_ID);
1214 1214
 			return '';
1215 1215
 		}
1216
-		return EEH_Venue_View::edit_venue_link( $VNU_ID );
1216
+		return EEH_Venue_View::edit_venue_link($VNU_ID);
1217 1217
 	}
1218 1218
 }
1219 1219
 
Please login to merge, or discard this patch.
languages/event_espresso-translations-js.php 1 patch
Spacing   +407 added lines, -407 removed lines patch added patch discarded remove patch
@@ -2,209 +2,209 @@  discard block
 block discarded – undo
2 2
 /* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */
3 3
 $generated_i18n_strings = array(
4 4
 	// Reference: packages/adapters/src/Pagination/constants.ts:6
5
-	__( '2', 'event_espresso' ),
5
+	__('2', 'event_espresso'),
6 6
 
7 7
 	// Reference: packages/adapters/src/Pagination/constants.ts:7
8
-	__( '6', 'event_espresso' ),
8
+	__('6', 'event_espresso'),
9 9
 
10 10
 	// Reference: packages/adapters/src/Pagination/constants.ts:8
11
-	__( '12', 'event_espresso' ),
11
+	__('12', 'event_espresso'),
12 12
 
13 13
 	// Reference: packages/adapters/src/Pagination/constants.ts:9
14
-	__( '24', 'event_espresso' ),
14
+	__('24', 'event_espresso'),
15 15
 
16 16
 	// Reference: packages/adapters/src/Pagination/constants.ts:10
17
-	__( '48', 'event_espresso' ),
17
+	__('48', 'event_espresso'),
18 18
 
19 19
 	// Reference: domains/blocks/src/components/AvatarImage.tsx:27
20
-	__( 'contact avatar', 'event_espresso' ),
20
+	__('contact avatar', 'event_espresso'),
21 21
 
22 22
 	// Reference: domains/blocks/src/components/OrderByControl.tsx:13
23
-	__( 'Order by', 'event_espresso' ),
23
+	__('Order by', 'event_espresso'),
24 24
 
25 25
 	// Reference: domains/blocks/src/components/RegStatusControl.tsx:18
26 26
 	// Reference: domains/blocks/src/event-attendees/controls/SelectStatus.tsx:12
27
-	__( 'Select Registration Status', 'event_espresso' ),
27
+	__('Select Registration Status', 'event_espresso'),
28 28
 
29 29
 	// Reference: domains/blocks/src/components/SortOrderControl.tsx:15
30
-	__( 'Ascending', 'event_espresso' ),
30
+	__('Ascending', 'event_espresso'),
31 31
 
32 32
 	// Reference: domains/blocks/src/components/SortOrderControl.tsx:19
33
-	__( 'Descending', 'event_espresso' ),
33
+	__('Descending', 'event_espresso'),
34 34
 
35 35
 	// Reference: domains/blocks/src/components/SortOrderControl.tsx:25
36
-	__( 'Sort order:', 'event_espresso' ),
36
+	__('Sort order:', 'event_espresso'),
37 37
 
38 38
 	// Reference: domains/blocks/src/event-attendees/AttendeesDisplay.tsx:40
39
-	__( 'There was some error fetching attendees list', 'event_espresso' ),
39
+	__('There was some error fetching attendees list', 'event_espresso'),
40 40
 
41 41
 	// Reference: domains/blocks/src/event-attendees/AttendeesDisplay.tsx:46
42
-	__( 'To get started, select what event you want to show attendees from in the block settings.', 'event_espresso' ),
42
+	__('To get started, select what event you want to show attendees from in the block settings.', 'event_espresso'),
43 43
 
44 44
 	// Reference: domains/blocks/src/event-attendees/AttendeesDisplay.tsx:52
45
-	__( 'There are no attendees for selected options.', 'event_espresso' ),
45
+	__('There are no attendees for selected options.', 'event_espresso'),
46 46
 
47 47
 	// Reference: domains/blocks/src/event-attendees/controls/ArchiveSettings.tsx:11
48
-	__( 'Display on Archives', 'event_espresso' ),
48
+	__('Display on Archives', 'event_espresso'),
49 49
 
50 50
 	// Reference: domains/blocks/src/event-attendees/controls/ArchiveSettings.tsx:16
51
-	__( 'Attendees are shown whenever this post is listed in an archive view.', 'event_espresso' ),
51
+	__('Attendees are shown whenever this post is listed in an archive view.', 'event_espresso'),
52 52
 
53 53
 	// Reference: domains/blocks/src/event-attendees/controls/ArchiveSettings.tsx:17
54
-	__( 'Attendees are hidden whenever this post is listed in an archive view.', 'event_espresso' ),
54
+	__('Attendees are hidden whenever this post is listed in an archive view.', 'event_espresso'),
55 55
 
56 56
 	// Reference: domains/blocks/src/event-attendees/controls/AttendeeLimit.tsx:28
57
-	__( 'Number of Attendees to Display:', 'event_espresso' ),
57
+	__('Number of Attendees to Display:', 'event_espresso'),
58 58
 
59 59
 	// Reference: domains/blocks/src/event-attendees/controls/AttendeeLimit.tsx:33
60 60
 	/* translators: %d attendees count */
61
-	_n_noop( 'Used to adjust the number of attendees displayed (There is %d total attendee for the current filter settings).', 'Used to adjust the number of attendees displayed (There are %d total attendees for the current filter settings).', 'event_espresso' ),
61
+	_n_noop('Used to adjust the number of attendees displayed (There is %d total attendee for the current filter settings).', 'Used to adjust the number of attendees displayed (There are %d total attendees for the current filter settings).', 'event_espresso'),
62 62
 
63 63
 	// Reference: domains/blocks/src/event-attendees/controls/GravatarSettings.tsx:26
64
-	__( 'Display Gravatar', 'event_espresso' ),
64
+	__('Display Gravatar', 'event_espresso'),
65 65
 
66 66
 	// Reference: domains/blocks/src/event-attendees/controls/GravatarSettings.tsx:31
67
-	__( 'Gravatar images are shown for each attendee.', 'event_espresso' ),
67
+	__('Gravatar images are shown for each attendee.', 'event_espresso'),
68 68
 
69 69
 	// Reference: domains/blocks/src/event-attendees/controls/GravatarSettings.tsx:32
70
-	__( 'No gravatar images are shown for each attendee.', 'event_espresso' ),
70
+	__('No gravatar images are shown for each attendee.', 'event_espresso'),
71 71
 
72 72
 	// Reference: domains/blocks/src/event-attendees/controls/GravatarSettings.tsx:37
73
-	__( 'Size of Gravatar', 'event_espresso' ),
73
+	__('Size of Gravatar', 'event_espresso'),
74 74
 
75 75
 	// Reference: domains/blocks/src/event-attendees/controls/SelectDatetime.tsx:21
76
-	__( 'Select Datetime', 'event_espresso' ),
76
+	__('Select Datetime', 'event_espresso'),
77 77
 
78 78
 	// Reference: domains/blocks/src/event-attendees/controls/SelectEvent.tsx:21
79
-	__( 'Select Event', 'event_espresso' ),
79
+	__('Select Event', 'event_espresso'),
80 80
 
81 81
 	// Reference: domains/blocks/src/event-attendees/controls/SelectOrderBy.tsx:10
82
-	__( 'Attendee id', 'event_espresso' ),
82
+	__('Attendee id', 'event_espresso'),
83 83
 
84 84
 	// Reference: domains/blocks/src/event-attendees/controls/SelectOrderBy.tsx:14
85
-	__( 'Last name only', 'event_espresso' ),
85
+	__('Last name only', 'event_espresso'),
86 86
 
87 87
 	// Reference: domains/blocks/src/event-attendees/controls/SelectOrderBy.tsx:18
88
-	__( 'First name only', 'event_espresso' ),
88
+	__('First name only', 'event_espresso'),
89 89
 
90 90
 	// Reference: domains/blocks/src/event-attendees/controls/SelectOrderBy.tsx:22
91
-	__( 'First, then Last name', 'event_espresso' ),
91
+	__('First, then Last name', 'event_espresso'),
92 92
 
93 93
 	// Reference: domains/blocks/src/event-attendees/controls/SelectOrderBy.tsx:26
94
-	__( 'Last, then First name', 'event_espresso' ),
94
+	__('Last, then First name', 'event_espresso'),
95 95
 
96 96
 	// Reference: domains/blocks/src/event-attendees/controls/SelectOrderBy.tsx:40
97
-	__( 'Order Attendees by:', 'event_espresso' ),
97
+	__('Order Attendees by:', 'event_espresso'),
98 98
 
99 99
 	// Reference: domains/blocks/src/event-attendees/controls/SelectTicket.tsx:21
100
-	__( 'Select Ticket', 'event_espresso' ),
100
+	__('Select Ticket', 'event_espresso'),
101 101
 
102 102
 	// Reference: domains/blocks/src/event-attendees/controls/index.tsx:22
103
-	__( 'Filter By Settings', 'event_espresso' ),
103
+	__('Filter By Settings', 'event_espresso'),
104 104
 
105 105
 	// Reference: domains/blocks/src/event-attendees/controls/index.tsx:37
106
-	__( 'Gravatar Setttings', 'event_espresso' ),
106
+	__('Gravatar Setttings', 'event_espresso'),
107 107
 
108 108
 	// Reference: domains/blocks/src/event-attendees/controls/index.tsx:40
109
-	__( 'Archive Settings', 'event_espresso' ),
109
+	__('Archive Settings', 'event_espresso'),
110 110
 
111 111
 	// Reference: domains/blocks/src/event-attendees/index.tsx:10
112
-	__( 'Event Attendees', 'event_espresso' ),
112
+	__('Event Attendees', 'event_espresso'),
113 113
 
114 114
 	// Reference: domains/blocks/src/event-attendees/index.tsx:11
115
-	__( 'Displays a list of people that have registered for the specified event', 'event_espresso' ),
115
+	__('Displays a list of people that have registered for the specified event', 'event_espresso'),
116 116
 
117 117
 	// Reference: domains/blocks/src/event-attendees/index.tsx:14
118
-	__( 'event', 'event_espresso' ),
118
+	__('event', 'event_espresso'),
119 119
 
120 120
 	// Reference: domains/blocks/src/event-attendees/index.tsx:14
121
-	__( 'attendees', 'event_espresso' ),
121
+	__('attendees', 'event_espresso'),
122 122
 
123 123
 	// Reference: domains/blocks/src/event-attendees/index.tsx:14
124
-	__( 'list', 'event_espresso' ),
124
+	__('list', 'event_espresso'),
125 125
 
126 126
 	// Reference: domains/blocks/src/services/utils.ts:11
127
-	__( 'Loading…', 'event_espresso' ),
127
+	__('Loading…', 'event_espresso'),
128 128
 
129 129
 	// Reference: domains/blocks/src/services/utils.ts:19
130 130
 	// Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/ErrorMessage.tsx:32
131 131
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/actions/Actions.tsx:80
132
-	__( 'Error', 'event_espresso' ),
132
+	__('Error', 'event_espresso'),
133 133
 
134 134
 	// Reference: domains/blocks/src/services/utils.ts:26
135
-	__( 'Select…', 'event_espresso' ),
135
+	__('Select…', 'event_espresso'),
136 136
 
137 137
 	// Reference: domains/eventEditor/src/ui/EventMeta.tsx:28
138
-	__( 'Manager: ', 'event_espresso' ),
138
+	__('Manager: ', 'event_espresso'),
139 139
 
140 140
 	// Reference: domains/eventEditor/src/ui/EventMeta.tsx:32
141
-	__( 'Enable Donations', 'event_espresso' ),
141
+	__('Enable Donations', 'event_espresso'),
142 142
 
143 143
 	// Reference: domains/eventEditor/src/ui/EventMeta.tsx:37
144
-	__( 'Display Ticket Selector', 'event_espresso' ),
144
+	__('Display Ticket Selector', 'event_espresso'),
145 145
 
146 146
 	// Reference: domains/eventEditor/src/ui/datetimes/DateRegistrationsLink.tsx:17
147
-	__( 'view ALL registrations for this date.', 'event_espresso' ),
147
+	__('view ALL registrations for this date.', 'event_espresso'),
148 148
 
149 149
 	// Reference: domains/eventEditor/src/ui/datetimes/dateForm/formValidation.ts:15
150 150
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/formValidation.ts:15
151
-	__( 'Name is required', 'event_espresso' ),
151
+	__('Name is required', 'event_espresso'),
152 152
 
153 153
 	// Reference: domains/eventEditor/src/ui/datetimes/dateForm/formValidation.ts:16
154 154
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/details/formValidation.ts:12
155 155
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/formValidation.ts:16
156 156
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/formValidation.ts:12
157
-	__( 'Name must be at least three characters', 'event_espresso' ),
157
+	__('Name must be at least three characters', 'event_espresso'),
158 158
 
159 159
 	// Reference: domains/eventEditor/src/ui/datetimes/dateForm/multiStep/Container.tsx:22
160 160
 	/* translators: %s datetime id */
161
-	__( 'Edit datetime %s', 'event_espresso' ),
161
+	__('Edit datetime %s', 'event_espresso'),
162 162
 
163 163
 	// Reference: domains/eventEditor/src/ui/datetimes/dateForm/multiStep/Container.tsx:25
164
-	__( 'New Datetime', 'event_espresso' ),
164
+	__('New Datetime', 'event_espresso'),
165 165
 
166 166
 	// Reference: domains/eventEditor/src/ui/datetimes/dateForm/multiStep/ContentBody.tsx:40
167
-	__( 'Save and assign tickets', 'event_espresso' ),
167
+	__('Save and assign tickets', 'event_espresso'),
168 168
 
169 169
 	// Reference: domains/eventEditor/src/ui/datetimes/dateForm/multiStep/DateFormSteps.tsx:11
170
-	__( 'primary information about the date', 'event_espresso' ),
170
+	__('primary information about the date', 'event_espresso'),
171 171
 
172 172
 	// Reference: domains/eventEditor/src/ui/datetimes/dateForm/multiStep/DateFormSteps.tsx:11
173
-	__( 'Date Details', 'event_espresso' ),
173
+	__('Date Details', 'event_espresso'),
174 174
 
175 175
 	// Reference: domains/eventEditor/src/ui/datetimes/dateForm/multiStep/DateFormSteps.tsx:12
176 176
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/multiStep/TicketFormSteps.tsx:17
177
-	__( 'relations between tickets and dates', 'event_espresso' ),
177
+	__('relations between tickets and dates', 'event_espresso'),
178 178
 
179 179
 	// Reference: domains/eventEditor/src/ui/datetimes/dateForm/multiStep/DateFormSteps.tsx:12
180
-	__( 'Assign Tickets', 'event_espresso' ),
180
+	__('Assign Tickets', 'event_espresso'),
181 181
 
182 182
 	// Reference: domains/eventEditor/src/ui/datetimes/dateForm/useDateFormConfig.ts:107
183 183
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/details/useBulkEditFormConfig.ts:108
184 184
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.tsx:119
185 185
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:108
186
-	__( 'Details', 'event_espresso' ),
186
+	__('Details', 'event_espresso'),
187 187
 
188 188
 	// Reference: domains/eventEditor/src/ui/datetimes/dateForm/useDateFormConfig.ts:111
189 189
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/details/useBulkEditFormConfig.ts:112
190 190
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/tableView/useHeaderRowGenerator.tsx:75
191
-	__( 'Capacity', 'event_espresso' ),
191
+	__('Capacity', 'event_espresso'),
192 192
 
193 193
 	// Reference: domains/eventEditor/src/ui/datetimes/dateForm/useDateFormConfig.ts:116
194
-	__( 'The maximum number of registrants that can attend the event at this particular date.', 'event_espresso' ),
194
+	__('The maximum number of registrants that can attend the event at this particular date.', 'event_espresso'),
195 195
 
196 196
 	// Reference: domains/eventEditor/src/ui/datetimes/dateForm/useDateFormConfig.ts:120
197
-	__( 'Set to 0 to close registration or leave blank for no limit.', 'event_espresso' ),
197
+	__('Set to 0 to close registration or leave blank for no limit.', 'event_espresso'),
198 198
 
199 199
 	// Reference: domains/eventEditor/src/ui/datetimes/dateForm/useDateFormConfig.ts:125
200 200
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.tsx:198
201
-	__( 'Trash', 'event_espresso' ),
201
+	__('Trash', 'event_espresso'),
202 202
 
203 203
 	// Reference: domains/eventEditor/src/ui/datetimes/dateForm/useDateFormConfig.ts:69
204 204
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/details/useBulkEditFormConfig.ts:45
205 205
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.tsx:81
206 206
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:45
207
-	__( 'Basics', 'event_espresso' ),
207
+	__('Basics', 'event_espresso'),
208 208
 
209 209
 	// Reference: domains/eventEditor/src/ui/datetimes/dateForm/useDateFormConfig.ts:73
210 210
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/details/useBulkEditFormConfig.ts:49
@@ -212,222 +212,222 @@  discard block
 block discarded – undo
212 212
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.tsx:85
213 213
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:49
214 214
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/useHeaderRowGenerator.tsx:42
215
-	__( 'Name', 'event_espresso' ),
215
+	__('Name', 'event_espresso'),
216 216
 
217 217
 	// Reference: domains/eventEditor/src/ui/datetimes/dateForm/useDateFormConfig.ts:80
218 218
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/details/useBulkEditFormConfig.ts:55
219 219
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.tsx:92
220 220
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:55
221 221
 	// Reference: packages/tpc/src/components/table/useHeaderRowGenerator.ts:41
222
-	__( 'Description', 'event_espresso' ),
222
+	__('Description', 'event_espresso'),
223 223
 
224 224
 	// Reference: domains/eventEditor/src/ui/datetimes/dateForm/useDateFormConfig.ts:88
225 225
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/details/useBulkEditFormConfig.ts:63
226 226
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:63
227
-	__( 'Dates', 'event_espresso' ),
227
+	__('Dates', 'event_espresso'),
228 228
 
229 229
 	// Reference: domains/eventEditor/src/ui/datetimes/dateForm/useDateFormConfig.ts:92
230 230
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/tableView/useHeaderRowGenerator.tsx:52
231 231
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.tsx:104
232
-	__( 'Start Date', 'event_espresso' ),
232
+	__('Start Date', 'event_espresso'),
233 233
 
234 234
 	// Reference: domains/eventEditor/src/ui/datetimes/dateForm/useDateFormConfig.ts:98
235 235
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/tableView/useHeaderRowGenerator.tsx:63
236 236
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.tsx:110
237
-	__( 'End Date', 'event_espresso' ),
237
+	__('End Date', 'event_espresso'),
238 238
 
239 239
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/DatesList.tsx:34
240 240
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/tableView/TableView.tsx:42
241
-	__( 'Event Dates', 'event_espresso' ),
241
+	__('Event Dates', 'event_espresso'),
242 242
 
243 243
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/DatesList.tsx:37
244
-	__( 'loading event dates…', 'event_espresso' ),
244
+	__('loading event dates…', 'event_espresso'),
245 245
 
246 246
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/DatesListButtons.tsx:22
247
-	__( 'Ticket Assignments', 'event_espresso' ),
247
+	__('Ticket Assignments', 'event_espresso'),
248 248
 
249 249
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/actionsMenu/AssignTicketsButton.tsx:27
250
-	__( 'Number of related tickets', 'event_espresso' ),
250
+	__('Number of related tickets', 'event_espresso'),
251 251
 
252 252
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/actionsMenu/AssignTicketsButton.tsx:28
253
-	__( 'There are no tickets assigned to this datetime. Please click the ticket icon to update the assignments.', 'event_espresso' ),
253
+	__('There are no tickets assigned to this datetime. Please click the ticket icon to update the assignments.', 'event_espresso'),
254 254
 
255 255
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/actionsMenu/AssignTicketsButton.tsx:42
256
-	__( 'assign tickets', 'event_espresso' ),
256
+	__('assign tickets', 'event_espresso'),
257 257
 
258 258
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/actionsMenu/dropdown/DateMainMenu.tsx:18
259
-	__( 'Permanently delete Datetime?', 'event_espresso' ),
259
+	__('Permanently delete Datetime?', 'event_espresso'),
260 260
 
261 261
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/actionsMenu/dropdown/DateMainMenu.tsx:18
262
-	__( 'Move Datetime to Trash?', 'event_espresso' ),
262
+	__('Move Datetime to Trash?', 'event_espresso'),
263 263
 
264 264
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/actionsMenu/dropdown/DateMainMenu.tsx:20
265
-	__( 'Are you sure you want to permanently delete this datetime? This action is permanent and can not be undone.', 'event_espresso' ),
265
+	__('Are you sure you want to permanently delete this datetime? This action is permanent and can not be undone.', 'event_espresso'),
266 266
 
267 267
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/actionsMenu/dropdown/DateMainMenu.tsx:23
268
-	__( 'Are you sure you want to move this datetime to the trash? You can "untrash" this datetime later if you need to.', 'event_espresso' ),
268
+	__('Are you sure you want to move this datetime to the trash? You can "untrash" this datetime later if you need to.', 'event_espresso'),
269 269
 
270 270
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/actionsMenu/dropdown/DateMainMenu.tsx:33
271
-	__( 'event date main menu', 'event_espresso' ),
271
+	__('event date main menu', 'event_espresso'),
272 272
 
273 273
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/actionsMenu/dropdown/DateMainMenu.tsx:37
274 274
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/dropdown/TicketMainMenu.tsx:33
275
-	__( 'delete permanently', 'event_espresso' ),
275
+	__('delete permanently', 'event_espresso'),
276 276
 
277 277
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/actionsMenu/dropdown/DateMainMenu.tsx:37
278
-	__( 'trash datetime', 'event_espresso' ),
278
+	__('trash datetime', 'event_espresso'),
279 279
 
280 280
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/actionsMenu/dropdown/DateMainMenu.tsx:46
281
-	__( 'edit datetime', 'event_espresso' ),
281
+	__('edit datetime', 'event_espresso'),
282 282
 
283 283
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/actionsMenu/dropdown/DateMainMenu.tsx:47
284
-	__( 'copy datetime', 'event_espresso' ),
284
+	__('copy datetime', 'event_espresso'),
285 285
 
286 286
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/actions/Actions.tsx:30
287
-	__( 'edit datetime details', 'event_espresso' ),
287
+	__('edit datetime details', 'event_espresso'),
288 288
 
289 289
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/actions/Actions.tsx:34
290
-	__( 'delete datetimes', 'event_espresso' ),
290
+	__('delete datetimes', 'event_espresso'),
291 291
 
292 292
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/actions/Actions.tsx:34
293
-	__( 'trash datetimes', 'event_espresso' ),
293
+	__('trash datetimes', 'event_espresso'),
294 294
 
295 295
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/delete/Delete.tsx:13
296
-	__( 'Are you sure you want to permanently delete these datetimes? This action can NOT be undone!', 'event_espresso' ),
296
+	__('Are you sure you want to permanently delete these datetimes? This action can NOT be undone!', 'event_espresso'),
297 297
 
298 298
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/delete/Delete.tsx:14
299
-	__( 'Are you sure you want to trash these datetimes?', 'event_espresso' ),
299
+	__('Are you sure you want to trash these datetimes?', 'event_espresso'),
300 300
 
301 301
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/delete/Delete.tsx:15
302
-	__( 'Delete datetimes permanently', 'event_espresso' ),
302
+	__('Delete datetimes permanently', 'event_espresso'),
303 303
 
304 304
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/delete/Delete.tsx:15
305
-	__( 'Trash datetimes', 'event_espresso' ),
305
+	__('Trash datetimes', 'event_espresso'),
306 306
 
307 307
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/details/EditDetails.tsx:22
308
-	__( 'Bulk edit date details', 'event_espresso' ),
308
+	__('Bulk edit date details', 'event_espresso'),
309 309
 
310 310
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/details/EditDetails.tsx:23
311
-	__( 'any changes will be applied to ALL of the selected dates.', 'event_espresso' ),
311
+	__('any changes will be applied to ALL of the selected dates.', 'event_espresso'),
312 312
 
313 313
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/details/useBulkEditFormConfig.ts:67
314 314
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:67
315
-	__( 'Shift dates', 'event_espresso' ),
315
+	__('Shift dates', 'event_espresso'),
316 316
 
317 317
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/details/useBulkEditFormConfig.ts:92
318 318
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:92
319
-	__( 'earlier', 'event_espresso' ),
319
+	__('earlier', 'event_espresso'),
320 320
 
321 321
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/details/useBulkEditFormConfig.ts:96
322 322
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:96
323
-	__( 'later', 'event_espresso' ),
323
+	__('later', 'event_espresso'),
324 324
 
325 325
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/cardView/DateCapacity.tsx:35
326
-	__( 'edit capacity (registration limit)…', 'event_espresso' ),
326
+	__('edit capacity (registration limit)…', 'event_espresso'),
327 327
 
328 328
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/cardView/DateCardSidebar.tsx:37
329
-	__( 'Edit Event Date', 'event_espresso' ),
329
+	__('Edit Event Date', 'event_espresso'),
330 330
 
331 331
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/cardView/DateCardSidebar.tsx:40
332
-	__( 'edit start and end dates', 'event_espresso' ),
332
+	__('edit start and end dates', 'event_espresso'),
333 333
 
334 334
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/cardView/DateDetailsPanel.tsx:14
335 335
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/cardView/TicketDetailsPanel.tsx:14
336
-	__( 'sold', 'event_espresso' ),
336
+	__('sold', 'event_espresso'),
337 337
 
338 338
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/cardView/DateDetailsPanel.tsx:27
339
-	__( 'capacity', 'event_espresso' ),
339
+	__('capacity', 'event_espresso'),
340 340
 
341 341
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/cardView/DateDetailsPanel.tsx:33
342 342
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/cardView/TicketDetailsPanel.tsx:32
343
-	__( 'reg list', 'event_espresso' ),
343
+	__('reg list', 'event_espresso'),
344 344
 
345 345
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/cardView/Details.tsx:44
346 346
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/cardView/Details.tsx:40
347
-	__( 'Edit description', 'event_espresso' ),
347
+	__('Edit description', 'event_espresso'),
348 348
 
349 349
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/cardView/Details.tsx:45
350 350
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/cardView/Details.tsx:41
351
-	__( 'edit description…', 'event_espresso' ),
351
+	__('edit description…', 'event_espresso'),
352 352
 
353 353
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/config.ts:13
354
-	__( 'Active', 'event_espresso' ),
354
+	__('Active', 'event_espresso'),
355 355
 
356 356
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/config.ts:14
357 357
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/config.ts:13
358
-	__( 'Trashed', 'event_espresso' ),
358
+	__('Trashed', 'event_espresso'),
359 359
 
360 360
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/config.ts:15
361 361
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/config.ts:14
362
-	__( 'Expired', 'event_espresso' ),
362
+	__('Expired', 'event_espresso'),
363 363
 
364 364
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/config.ts:16
365 365
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/config.ts:16
366
-	__( 'Sold Out', 'event_espresso' ),
366
+	__('Sold Out', 'event_espresso'),
367 367
 
368 368
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/config.ts:17
369
-	__( 'Upcoming', 'event_espresso' ),
369
+	__('Upcoming', 'event_espresso'),
370 370
 
371 371
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/editable/EditableName.tsx:17
372 372
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/editable/EditableName.tsx:27
373
-	__( 'edit title…', 'event_espresso' ),
373
+	__('edit title…', 'event_espresso'),
374 374
 
375 375
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/ActiveDatesFilters.tsx:25
376 376
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/ActiveTicketsFilters.tsx:25
377
-	__( 'ON', 'event_espresso' ),
377
+	__('ON', 'event_espresso'),
378 378
 
379 379
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:10
380
-	__( 'end dates only', 'event_espresso' ),
380
+	__('end dates only', 'event_espresso'),
381 381
 
382 382
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:11
383
-	__( 'start and end dates', 'event_espresso' ),
383
+	__('start and end dates', 'event_espresso'),
384 384
 
385 385
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:16
386
-	__( 'dates above 90% capacity', 'event_espresso' ),
386
+	__('dates above 90% capacity', 'event_espresso'),
387 387
 
388 388
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:17
389
-	__( 'dates above 75% capacity', 'event_espresso' ),
389
+	__('dates above 75% capacity', 'event_espresso'),
390 390
 
391 391
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:18
392
-	__( 'dates above 50% capacity', 'event_espresso' ),
392
+	__('dates above 50% capacity', 'event_espresso'),
393 393
 
394 394
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:19
395
-	__( 'dates below 50% capacity', 'event_espresso' ),
395
+	__('dates below 50% capacity', 'event_espresso'),
396 396
 
397 397
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:23
398
-	__( 'all dates', 'event_espresso' ),
398
+	__('all dates', 'event_espresso'),
399 399
 
400 400
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:24
401
-	__( 'all active and upcoming', 'event_espresso' ),
401
+	__('all active and upcoming', 'event_espresso'),
402 402
 
403 403
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:25
404
-	__( 'active dates only', 'event_espresso' ),
404
+	__('active dates only', 'event_espresso'),
405 405
 
406 406
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:26
407
-	__( 'upcoming dates only', 'event_espresso' ),
407
+	__('upcoming dates only', 'event_espresso'),
408 408
 
409 409
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:27
410
-	__( 'next active or upcoming only', 'event_espresso' ),
410
+	__('next active or upcoming only', 'event_espresso'),
411 411
 
412 412
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:28
413
-	__( 'sold out dates only', 'event_espresso' ),
413
+	__('sold out dates only', 'event_espresso'),
414 414
 
415 415
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:29
416
-	__( 'recently expired dates', 'event_espresso' ),
416
+	__('recently expired dates', 'event_espresso'),
417 417
 
418 418
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:30
419
-	__( 'all expired dates', 'event_espresso' ),
419
+	__('all expired dates', 'event_espresso'),
420 420
 
421 421
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:31
422
-	__( 'trashed dates only', 'event_espresso' ),
422
+	__('trashed dates only', 'event_espresso'),
423 423
 
424 424
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:35
425 425
 	// Reference: packages/dates/src/DateRangePicker/DateRangePickerLegend.tsx:10
426 426
 	// Reference: packages/dates/src/DateRangePicker/index.tsx:55
427
-	__( 'start date', 'event_espresso' ),
427
+	__('start date', 'event_espresso'),
428 428
 
429 429
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:36
430
-	__( 'name', 'event_espresso' ),
430
+	__('name', 'event_espresso'),
431 431
 
432 432
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:37
433 433
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/tableView/useHeaderRowGenerator.tsx:38
@@ -435,96 +435,96 @@  discard block
 block discarded – undo
435 435
 	// Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/table/HeaderCell.tsx:20
436 436
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/useHeaderRowGenerator.tsx:36
437 437
 	// Reference: packages/tpc/src/components/table/useHeaderRowGenerator.ts:23
438
-	__( 'ID', 'event_espresso' ),
438
+	__('ID', 'event_espresso'),
439 439
 
440 440
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:38
441 441
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:47
442
-	__( 'custom order', 'event_espresso' ),
442
+	__('custom order', 'event_espresso'),
443 443
 
444 444
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:42
445 445
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:52
446
-	__( 'display', 'event_espresso' ),
446
+	__('display', 'event_espresso'),
447 447
 
448 448
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:43
449
-	__( 'recurrence', 'event_espresso' ),
449
+	__('recurrence', 'event_espresso'),
450 450
 
451 451
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:44
452 452
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:54
453
-	__( 'sales', 'event_espresso' ),
453
+	__('sales', 'event_espresso'),
454 454
 
455 455
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:45
456 456
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:56
457
-	__( 'sort by', 'event_espresso' ),
457
+	__('sort by', 'event_espresso'),
458 458
 
459 459
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:46
460 460
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:55
461 461
 	// Reference: packages/components/src/EntityList/filterBar/EntityListFilterBar.tsx:73
462
-	__( 'search', 'event_espresso' ),
462
+	__('search', 'event_espresso'),
463 463
 
464 464
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:47
465 465
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:57
466
-	__( 'status', 'event_espresso' ),
466
+	__('status', 'event_espresso'),
467 467
 
468 468
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:9
469
-	__( 'start dates only', 'event_espresso' ),
469
+	__('start dates only', 'event_espresso'),
470 470
 
471 471
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/newDateOptions/AddSingleDate.tsx:20
472 472
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/newDateOptions/OptionsPopover.tsx:14
473 473
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/newDateOptions/OptionsPopoverButton.tsx:11
474
-	__( 'Add New Date', 'event_espresso' ),
474
+	__('Add New Date', 'event_espresso'),
475 475
 
476 476
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/newDateOptions/AddSingleDate.tsx:20
477
-	__( 'Add Single Date', 'event_espresso' ),
477
+	__('Add Single Date', 'event_espresso'),
478 478
 
479 479
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/newDateOptions/AddSingleDate.tsx:34
480
-	__( 'Add a single date that only occurs once', 'event_espresso' ),
480
+	__('Add a single date that only occurs once', 'event_espresso'),
481 481
 
482 482
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/newDateOptions/AddSingleDate.tsx:36
483
-	__( 'Single Date', 'event_espresso' ),
483
+	__('Single Date', 'event_espresso'),
484 484
 
485 485
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/tableView/useHeaderRowGenerator.tsx:105
486 486
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/useHeaderRowGenerator.tsx:103
487 487
 	// Reference: packages/tpc/src/components/table/useHeaderRowGenerator.ts:53
488
-	__( 'Actions', 'event_espresso' ),
488
+	__('Actions', 'event_espresso'),
489 489
 
490 490
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/tableView/useHeaderRowGenerator.tsx:53
491
-	__( 'Start', 'event_espresso' ),
491
+	__('Start', 'event_espresso'),
492 492
 
493 493
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/tableView/useHeaderRowGenerator.tsx:64
494
-	__( 'End', 'event_espresso' ),
494
+	__('End', 'event_espresso'),
495 495
 
496 496
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/tableView/useHeaderRowGenerator.tsx:76
497
-	__( 'Cap', 'event_espresso' ),
497
+	__('Cap', 'event_espresso'),
498 498
 
499 499
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/tableView/useHeaderRowGenerator.tsx:84
500 500
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/useHeaderRowGenerator.tsx:85
501
-	__( 'Sold', 'event_espresso' ),
501
+	__('Sold', 'event_espresso'),
502 502
 
503 503
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/tableView/useHeaderRowGenerator.tsx:93
504
-	__( 'Reg list', 'event_espresso' ),
504
+	__('Reg list', 'event_espresso'),
505 505
 
506 506
 	// Reference: domains/eventEditor/src/ui/datetimes/datesList/tableView/useHeaderRowGenerator.tsx:94
507 507
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/useHeaderRowGenerator.tsx:95
508
-	__( 'Regs', 'event_espresso' ),
508
+	__('Regs', 'event_espresso'),
509 509
 
510 510
 	// Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/ErrorMessage.tsx:18
511
-	__( 'Tickets must always have at least one date assigned to them but one or more of the tickets below does not have any. Please correct the assignments for the highlighted cells.', 'event_espresso' ),
511
+	__('Tickets must always have at least one date assigned to them but one or more of the tickets below does not have any. Please correct the assignments for the highlighted cells.', 'event_espresso'),
512 512
 
513 513
 	// Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/ErrorMessage.tsx:22
514
-	__( 'Event Dates must always have at least one Ticket assigned to them but one or more of the Event Dates below does not have any. Please correct the assignments for the highlighted cells.', 'event_espresso' ),
514
+	__('Event Dates must always have at least one Ticket assigned to them but one or more of the Event Dates below does not have any. Please correct the assignments for the highlighted cells.', 'event_espresso'),
515 515
 
516 516
 	// Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/ModalContainer.tsx:25
517 517
 	/* translators: %d entity id, %s entity name */
518
-	__( 'Ticket Assignment Manager for Datetime: %1$d - %2$s', 'event_espresso' ),
518
+	__('Ticket Assignment Manager for Datetime: %1$d - %2$s', 'event_espresso'),
519 519
 
520 520
 	// Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/ModalContainer.tsx:32
521 521
 	/* translators: %d entity id, %s entity name */
522
-	__( 'Ticket Assignment Manager for Ticket: %1$d - %2$s', 'event_espresso' ),
522
+	__('Ticket Assignment Manager for Ticket: %1$d - %2$s', 'event_espresso'),
523 523
 
524 524
 	// Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/TicketAssignmentsManagerModal/buttons/useCancelButtonProps.tsx:18
525 525
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/prices/buttons/FooterButtons.tsx:16
526 526
 	// Reference: packages/components/src/Modal/useCancelButtonProps.tsx:10
527
-	__( 'Cancel', 'event_espresso' ),
527
+	__('Cancel', 'event_espresso'),
528 528
 
529 529
 	// Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/TicketAssignmentsManagerModal/buttons/useSubmitButtonProps.tsx:25
530 530
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/prices/buttons/FooterButtons.tsx:17
@@ -533,796 +533,796 @@  discard block
 block discarded – undo
533 533
 	// Reference: packages/components/src/bulkEdit/details/Submit.tsx:38
534 534
 	// Reference: packages/form/src/Submit.tsx:26
535 535
 	// Reference: packages/tpc/src/buttons/useSubmitButtonProps.tsx:25
536
-	__( 'Submit', 'event_espresso' ),
536
+	__('Submit', 'event_espresso'),
537 537
 
538 538
 	// Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/TicketAssignmentsManagerModal/index.tsx:32
539 539
 	// Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/table/Table.tsx:14
540
-	__( 'Ticket Assignment Manager', 'event_espresso' ),
540
+	__('Ticket Assignment Manager', 'event_espresso'),
541 541
 
542 542
 	// Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/table/BodyCell.tsx:24
543
-	__( 'assign ticket', 'event_espresso' ),
543
+	__('assign ticket', 'event_espresso'),
544 544
 
545 545
 	// Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/filters/controls/DatesByMonthControl.tsx:19
546
-	__( 'All Dates', 'event_espresso' ),
546
+	__('All Dates', 'event_espresso'),
547 547
 
548 548
 	// Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/filters/controls/DatesByMonthControl.tsx:26
549
-	__( 'dates by month', 'event_espresso' ),
549
+	__('dates by month', 'event_espresso'),
550 550
 
551 551
 	// Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/filters/controls/ShowExpiredTicketsControl.tsx:15
552
-	__( 'show expired tickets', 'event_espresso' ),
552
+	__('show expired tickets', 'event_espresso'),
553 553
 
554 554
 	// Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/filters/controls/ShowTrashedDatesControl.tsx:12
555
-	__( 'show trashed dates', 'event_espresso' ),
555
+	__('show trashed dates', 'event_espresso'),
556 556
 
557 557
 	// Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/filters/controls/ShowTrashedTicketsControl.tsx:15
558
-	__( 'show trashed tickets', 'event_espresso' ),
558
+	__('show trashed tickets', 'event_espresso'),
559 559
 
560 560
 	// Reference: domains/eventEditor/src/ui/tickets/TicketRegistrationsLink.tsx:17
561
-	__( 'total registrations.', 'event_espresso' ),
561
+	__('total registrations.', 'event_espresso'),
562 562
 
563 563
 	// Reference: domains/eventEditor/src/ui/tickets/TicketRegistrationsLink.tsx:18
564
-	__( 'view ALL registrations for this ticket.', 'event_espresso' ),
564
+	__('view ALL registrations for this ticket.', 'event_espresso'),
565 565
 
566 566
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/multiStep/Container.tsx:21
567 567
 	/* translators: %d ticket id */
568
-	__( 'Edit ticket %d', 'event_espresso' ),
568
+	__('Edit ticket %d', 'event_espresso'),
569 569
 
570 570
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/multiStep/Container.tsx:24
571
-	__( 'New Ticket Details', 'event_espresso' ),
571
+	__('New Ticket Details', 'event_espresso'),
572 572
 
573 573
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/multiStep/ContentBody.tsx:47
574
-	__( 'Set ticket prices', 'event_espresso' ),
574
+	__('Set ticket prices', 'event_espresso'),
575 575
 
576 576
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/multiStep/ContentBody.tsx:54
577
-	__( 'Skip prices - assign dates', 'event_espresso' ),
577
+	__('Skip prices - assign dates', 'event_espresso'),
578 578
 
579 579
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/multiStep/ContentBody.tsx:70
580
-	__( 'Save and assign dates', 'event_espresso' ),
580
+	__('Save and assign dates', 'event_espresso'),
581 581
 
582 582
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/multiStep/ContentBody.tsx:83
583
-	__( 'Ticket details', 'event_espresso' ),
583
+	__('Ticket details', 'event_espresso'),
584 584
 
585 585
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/multiStep/TicketFormSteps.tsx:11
586
-	__( 'primary information about the ticket', 'event_espresso' ),
586
+	__('primary information about the ticket', 'event_espresso'),
587 587
 
588 588
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/multiStep/TicketFormSteps.tsx:11
589
-	__( 'Ticket Details', 'event_espresso' ),
589
+	__('Ticket Details', 'event_espresso'),
590 590
 
591 591
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/multiStep/TicketFormSteps.tsx:13
592
-	__( 'apply ticket price modifiers and taxes', 'event_espresso' ),
592
+	__('apply ticket price modifiers and taxes', 'event_espresso'),
593 593
 
594 594
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/multiStep/TicketFormSteps.tsx:15
595
-	__( 'Price Calculator', 'event_espresso' ),
595
+	__('Price Calculator', 'event_espresso'),
596 596
 
597 597
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/multiStep/TicketFormSteps.tsx:17
598
-	__( 'Assign Dates', 'event_espresso' ),
598
+	__('Assign Dates', 'event_espresso'),
599 599
 
600 600
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.tsx:100
601
-	__( 'Ticket Sales', 'event_espresso' ),
601
+	__('Ticket Sales', 'event_espresso'),
602 602
 
603 603
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.tsx:123
604 604
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:112
605
-	__( 'Quantity For Sale', 'event_espresso' ),
605
+	__('Quantity For Sale', 'event_espresso'),
606 606
 
607 607
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.tsx:129
608
-	__( 'The maximum number of this ticket available for sale.', 'event_espresso' ),
608
+	__('The maximum number of this ticket available for sale.', 'event_espresso'),
609 609
 
610 610
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.tsx:131
611
-	__( 'Set to 0 to stop sales, or leave blank for no limit.', 'event_espresso' ),
611
+	__('Set to 0 to stop sales, or leave blank for no limit.', 'event_espresso'),
612 612
 
613 613
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.tsx:136
614 614
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:121
615
-	__( 'Number of Uses', 'event_espresso' ),
615
+	__('Number of Uses', 'event_espresso'),
616 616
 
617 617
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.tsx:142
618
-	__( 'Controls the total number of times this ticket can be used, regardless of the number of dates it is assigned to.', 'event_espresso' ),
618
+	__('Controls the total number of times this ticket can be used, regardless of the number of dates it is assigned to.', 'event_espresso'),
619 619
 
620 620
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.tsx:146
621
-	__( 'Example: A ticket might have access to 4 different dates, but setting this field to 2 would mean that the ticket could only be used twice. Leave blank for no limit.', 'event_espresso' ),
621
+	__('Example: A ticket might have access to 4 different dates, but setting this field to 2 would mean that the ticket could only be used twice. Leave blank for no limit.', 'event_espresso'),
622 622
 
623 623
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.tsx:153
624 624
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:129
625
-	__( 'Minimum Quantity', 'event_espresso' ),
625
+	__('Minimum Quantity', 'event_espresso'),
626 626
 
627 627
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.tsx:158
628
-	__( 'The minimum quantity that can be selected for this ticket. Use this to create ticket bundles or graduated pricing.', 'event_espresso' ),
628
+	__('The minimum quantity that can be selected for this ticket. Use this to create ticket bundles or graduated pricing.', 'event_espresso'),
629 629
 
630 630
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.tsx:162
631
-	__( 'Leave blank for no minimum.', 'event_espresso' ),
631
+	__('Leave blank for no minimum.', 'event_espresso'),
632 632
 
633 633
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.tsx:167
634 634
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:137
635
-	__( 'Maximum Quantity', 'event_espresso' ),
635
+	__('Maximum Quantity', 'event_espresso'),
636 636
 
637 637
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.tsx:173
638
-	__( 'The maximum quantity that can be selected for this ticket. Use this to create ticket bundles or graduated pricing.', 'event_espresso' ),
638
+	__('The maximum quantity that can be selected for this ticket. Use this to create ticket bundles or graduated pricing.', 'event_espresso'),
639 639
 
640 640
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.tsx:177
641
-	__( 'Leave blank for no maximum.', 'event_espresso' ),
641
+	__('Leave blank for no maximum.', 'event_espresso'),
642 642
 
643 643
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.tsx:182
644 644
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:146
645
-	__( 'Required Ticket', 'event_espresso' ),
645
+	__('Required Ticket', 'event_espresso'),
646 646
 
647 647
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.tsx:184
648
-	__( 'If enabled, the ticket must be selected and will appear first in frontend ticket lists.', 'event_espresso' ),
648
+	__('If enabled, the ticket must be selected and will appear first in frontend ticket lists.', 'event_espresso'),
649 649
 
650 650
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.tsx:191
651
-	__( 'Default Ticket', 'event_espresso' ),
651
+	__('Default Ticket', 'event_espresso'),
652 652
 
653 653
 	// Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.tsx:193
654
-	__( 'If enabled, the ticket will appear on all new events.', 'event_espresso' ),
654
+	__('If enabled, the ticket will appear on all new events.', 'event_espresso'),
655 655
 
656 656
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/TicketsList.tsx:34
657
-	__( 'Available Tickets', 'event_espresso' ),
657
+	__('Available Tickets', 'event_espresso'),
658 658
 
659 659
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/TicketsList.tsx:37
660
-	__( 'loading tickets…', 'event_espresso' ),
660
+	__('loading tickets…', 'event_espresso'),
661 661
 
662 662
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/AssignDatesButton.tsx:27
663
-	__( 'Number of related dates', 'event_espresso' ),
663
+	__('Number of related dates', 'event_espresso'),
664 664
 
665 665
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/AssignDatesButton.tsx:28
666
-	__( 'There are no event dates assigned to this ticket. Please click the calendar icon to update the assignments.', 'event_espresso' ),
666
+	__('There are no event dates assigned to this ticket. Please click the calendar icon to update the assignments.', 'event_espresso'),
667 667
 
668 668
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/AssignDatesButton.tsx:44
669
-	__( 'assign dates', 'event_espresso' ),
669
+	__('assign dates', 'event_espresso'),
670 670
 
671 671
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/dropdown/TicketMainMenu.tsx:17
672
-	__( 'Permanently delete Ticket?', 'event_espresso' ),
672
+	__('Permanently delete Ticket?', 'event_espresso'),
673 673
 
674 674
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/dropdown/TicketMainMenu.tsx:17
675
-	__( 'Move Ticket to Trash?', 'event_espresso' ),
675
+	__('Move Ticket to Trash?', 'event_espresso'),
676 676
 
677 677
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/dropdown/TicketMainMenu.tsx:19
678
-	__( 'Are you sure you want to permanently delete this ticket? This action is permanent and can not be undone.', 'event_espresso' ),
678
+	__('Are you sure you want to permanently delete this ticket? This action is permanent and can not be undone.', 'event_espresso'),
679 679
 
680 680
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/dropdown/TicketMainMenu.tsx:20
681
-	__( 'Are you sure you want to move this ticket to the trash? You can "untrash" this ticket later if you need to.', 'event_espresso' ),
681
+	__('Are you sure you want to move this ticket to the trash? You can "untrash" this ticket later if you need to.', 'event_espresso'),
682 682
 
683 683
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/dropdown/TicketMainMenu.tsx:29
684
-	__( 'ticket main menu', 'event_espresso' ),
684
+	__('ticket main menu', 'event_espresso'),
685 685
 
686 686
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/dropdown/TicketMainMenu.tsx:33
687
-	__( 'trash ticket', 'event_espresso' ),
687
+	__('trash ticket', 'event_espresso'),
688 688
 
689 689
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/dropdown/TicketMainMenu.tsx:42
690
-	__( 'edit ticket', 'event_espresso' ),
690
+	__('edit ticket', 'event_espresso'),
691 691
 
692 692
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/dropdown/TicketMainMenu.tsx:43
693
-	__( 'copy ticket', 'event_espresso' ),
693
+	__('copy ticket', 'event_espresso'),
694 694
 
695 695
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/actions/Actions.tsx:39
696 696
 	// Reference: packages/components/src/bulkEdit/BulkActions.tsx:44
697
-	__( 'bulk actions', 'event_espresso' ),
697
+	__('bulk actions', 'event_espresso'),
698 698
 
699 699
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/actions/Actions.tsx:43
700
-	__( 'edit ticket details', 'event_espresso' ),
700
+	__('edit ticket details', 'event_espresso'),
701 701
 
702 702
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/actions/Actions.tsx:47
703
-	__( 'delete tickets', 'event_espresso' ),
703
+	__('delete tickets', 'event_espresso'),
704 704
 
705 705
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/actions/Actions.tsx:47
706
-	__( 'trash tickets', 'event_espresso' ),
706
+	__('trash tickets', 'event_espresso'),
707 707
 
708 708
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/actions/Actions.tsx:51
709
-	__( 'edit ticket prices', 'event_espresso' ),
709
+	__('edit ticket prices', 'event_espresso'),
710 710
 
711 711
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/delete/Delete.tsx:13
712
-	__( 'Are you sure you want to permanently delete these tickets? This action can NOT be undone!', 'event_espresso' ),
712
+	__('Are you sure you want to permanently delete these tickets? This action can NOT be undone!', 'event_espresso'),
713 713
 
714 714
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/delete/Delete.tsx:14
715
-	__( 'Are you sure you want to trash these tickets?', 'event_espresso' ),
715
+	__('Are you sure you want to trash these tickets?', 'event_espresso'),
716 716
 
717 717
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/delete/Delete.tsx:15
718
-	__( 'Delete tickets permanently', 'event_espresso' ),
718
+	__('Delete tickets permanently', 'event_espresso'),
719 719
 
720 720
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/delete/Delete.tsx:15
721
-	__( 'Trash tickets', 'event_espresso' ),
721
+	__('Trash tickets', 'event_espresso'),
722 722
 
723 723
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/EditDetails.tsx:22
724
-	__( 'Bulk edit ticket details', 'event_espresso' ),
724
+	__('Bulk edit ticket details', 'event_espresso'),
725 725
 
726 726
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/EditDetails.tsx:23
727
-	__( 'any changes will be applied to ALL of the selected tickets.', 'event_espresso' ),
727
+	__('any changes will be applied to ALL of the selected tickets.', 'event_espresso'),
728 728
 
729 729
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/prices/EditPrices.tsx:18
730
-	__( 'Bulk edit ticket prices', 'event_espresso' ),
730
+	__('Bulk edit ticket prices', 'event_espresso'),
731 731
 
732 732
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/prices/buttons/EditModeButtons.tsx:19
733
-	__( 'Edit all prices together', 'event_espresso' ),
733
+	__('Edit all prices together', 'event_espresso'),
734 734
 
735 735
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/prices/buttons/EditModeButtons.tsx:20
736
-	__( 'Edit all the selected ticket prices dynamically', 'event_espresso' ),
736
+	__('Edit all the selected ticket prices dynamically', 'event_espresso'),
737 737
 
738 738
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/prices/buttons/EditModeButtons.tsx:24
739
-	__( 'Edit prices individually', 'event_espresso' ),
739
+	__('Edit prices individually', 'event_espresso'),
740 740
 
741 741
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/prices/buttons/EditModeButtons.tsx:25
742
-	__( 'Edit prices for each ticket individually', 'event_espresso' ),
742
+	__('Edit prices for each ticket individually', 'event_espresso'),
743 743
 
744 744
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/prices/buttons/FooterButtons.tsx:15
745 745
 	// Reference: packages/components/src/bulkEdit/details/Submit.tsx:45
746 746
 	// Reference: packages/form/src/ResetButton.tsx:17
747 747
 	// Reference: packages/tpc/src/buttons/useResetButtonProps.tsx:12
748
-	__( 'Reset', 'event_espresso' ),
748
+	__('Reset', 'event_espresso'),
749 749
 
750 750
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/prices/editSeparately/TPCInstance.tsx:25
751 751
 	/* translators: %s ticket name */
752
-	__( 'Edit prices for Ticket: %s', 'event_espresso' ),
752
+	__('Edit prices for Ticket: %s', 'event_espresso'),
753 753
 
754 754
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/cardView/TicketCardSidebar.tsx:36
755
-	__( 'Edit Ticket Sale Dates', 'event_espresso' ),
755
+	__('Edit Ticket Sale Dates', 'event_espresso'),
756 756
 
757 757
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/cardView/TicketCardSidebar.tsx:38
758
-	__( 'edit ticket sales start and end dates', 'event_espresso' ),
758
+	__('edit ticket sales start and end dates', 'event_espresso'),
759 759
 
760 760
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/cardView/TicketDetailsPanel.tsx:27
761
-	__( 'quantity', 'event_espresso' ),
761
+	__('quantity', 'event_espresso'),
762 762
 
763 763
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/cardView/TicketQuantity.tsx:26
764
-	__( 'edit quantity of tickets available…', 'event_espresso' ),
764
+	__('edit quantity of tickets available…', 'event_espresso'),
765 765
 
766 766
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/config.ts:15
767 767
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/useHeaderRowGenerator.tsx:51
768
-	__( 'On Sale', 'event_espresso' ),
768
+	__('On Sale', 'event_espresso'),
769 769
 
770 770
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/config.ts:17
771
-	__( 'Pending', 'event_espresso' ),
771
+	__('Pending', 'event_espresso'),
772 772
 
773 773
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/editable/EditablePrice.tsx:30
774
-	__( 'edit ticket total…', 'event_espresso' ),
774
+	__('edit ticket total…', 'event_espresso'),
775 775
 
776 776
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/editable/EditablePrice.tsx:37
777
-	__( 'set price…', 'event_espresso' ),
777
+	__('set price…', 'event_espresso'),
778 778
 
779 779
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/IsChainedButton.tsx:24
780
-	__( 'tickets list is linked to dates list and is showing tickets for above dates only', 'event_espresso' ),
780
+	__('tickets list is linked to dates list and is showing tickets for above dates only', 'event_espresso'),
781 781
 
782 782
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/IsChainedButton.tsx:25
783
-	__( 'tickets list is unlinked and is showing tickets for all event dates', 'event_espresso' ),
783
+	__('tickets list is unlinked and is showing tickets for all event dates', 'event_espresso'),
784 784
 
785 785
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:10
786
-	__( 'ticket sales start and end dates', 'event_espresso' ),
786
+	__('ticket sales start and end dates', 'event_espresso'),
787 787
 
788 788
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:15
789
-	__( 'tickets with 90% or more sold', 'event_espresso' ),
789
+	__('tickets with 90% or more sold', 'event_espresso'),
790 790
 
791 791
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:16
792
-	__( 'tickets with 75% or more sold', 'event_espresso' ),
792
+	__('tickets with 75% or more sold', 'event_espresso'),
793 793
 
794 794
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:17
795
-	__( 'tickets with 50% or more sold', 'event_espresso' ),
795
+	__('tickets with 50% or more sold', 'event_espresso'),
796 796
 
797 797
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:19
798
-	__( 'tickets with less than 50% sold', 'event_espresso' ),
798
+	__('tickets with less than 50% sold', 'event_espresso'),
799 799
 
800 800
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:28
801
-	__( 'all tickets for all dates', 'event_espresso' ),
801
+	__('all tickets for all dates', 'event_espresso'),
802 802
 
803 803
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:29
804
-	__( 'all on sale and sale pending', 'event_espresso' ),
804
+	__('all on sale and sale pending', 'event_espresso'),
805 805
 
806 806
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:30
807
-	__( 'on sale tickets only', 'event_espresso' ),
807
+	__('on sale tickets only', 'event_espresso'),
808 808
 
809 809
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:31
810
-	__( 'sale pending tickets only', 'event_espresso' ),
810
+	__('sale pending tickets only', 'event_espresso'),
811 811
 
812 812
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:32
813
-	__( 'next on sale or sale pending only', 'event_espresso' ),
813
+	__('next on sale or sale pending only', 'event_espresso'),
814 814
 
815 815
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:33
816
-	__( 'sold out tickets only', 'event_espresso' ),
816
+	__('sold out tickets only', 'event_espresso'),
817 817
 
818 818
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:34
819
-	__( 'expired tickets only', 'event_espresso' ),
819
+	__('expired tickets only', 'event_espresso'),
820 820
 
821 821
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:35
822
-	__( 'trashed tickets only', 'event_espresso' ),
822
+	__('trashed tickets only', 'event_espresso'),
823 823
 
824 824
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:40
825
-	__( 'all tickets for above dates', 'event_espresso' ),
825
+	__('all tickets for above dates', 'event_espresso'),
826 826
 
827 827
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:44
828
-	__( 'ticket sale date', 'event_espresso' ),
828
+	__('ticket sale date', 'event_espresso'),
829 829
 
830 830
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:45
831
-	__( 'ticket name', 'event_espresso' ),
831
+	__('ticket name', 'event_espresso'),
832 832
 
833 833
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:46
834
-	__( 'ticket ID', 'event_espresso' ),
834
+	__('ticket ID', 'event_espresso'),
835 835
 
836 836
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:53
837
-	__( 'link', 'event_espresso' ),
837
+	__('link', 'event_espresso'),
838 838
 
839 839
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:8
840
-	__( 'ticket sales start date only', 'event_espresso' ),
840
+	__('ticket sales start date only', 'event_espresso'),
841 841
 
842 842
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:9
843
-	__( 'ticket sales end date only', 'event_espresso' ),
843
+	__('ticket sales end date only', 'event_espresso'),
844 844
 
845 845
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/newTicketOptions/AddSingleTicket.tsx:19
846
-	__( 'Add New Ticket', 'event_espresso' ),
846
+	__('Add New Ticket', 'event_espresso'),
847 847
 
848 848
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/newTicketOptions/AddSingleTicket.tsx:31
849
-	__( 'Single Ticket', 'event_espresso' ),
849
+	__('Single Ticket', 'event_espresso'),
850 850
 
851 851
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/newTicketOptions/AddSingleTicket.tsx:33
852
-	__( 'Add a single ticket and assign the dates to it', 'event_espresso' ),
852
+	__('Add a single ticket and assign the dates to it', 'event_espresso'),
853 853
 
854 854
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/TableView.tsx:40
855
-	__( 'Tickets', 'event_espresso' ),
855
+	__('Tickets', 'event_espresso'),
856 856
 
857 857
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/useHeaderRowGenerator.tsx:50
858
-	__( 'Goes on Sale', 'event_espresso' ),
858
+	__('Goes on Sale', 'event_espresso'),
859 859
 
860 860
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/useHeaderRowGenerator.tsx:61
861
-	__( 'Sale Ends', 'event_espresso' ),
861
+	__('Sale Ends', 'event_espresso'),
862 862
 
863 863
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/useHeaderRowGenerator.tsx:62
864
-	__( 'Ends', 'event_espresso' ),
864
+	__('Ends', 'event_espresso'),
865 865
 
866 866
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/useHeaderRowGenerator.tsx:71
867
-	__( 'Price', 'event_espresso' ),
867
+	__('Price', 'event_espresso'),
868 868
 
869 869
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/useHeaderRowGenerator.tsx:78
870
-	__( 'Quantity', 'event_espresso' ),
870
+	__('Quantity', 'event_espresso'),
871 871
 
872 872
 	// Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/useHeaderRowGenerator.tsx:94
873
-	__( 'Registrations', 'event_espresso' ),
873
+	__('Registrations', 'event_espresso'),
874 874
 
875 875
 	// Reference: domains/wpPluginsPage/src/exitSurvey/Popup.tsx:28
876
-	__( 'Do you have a moment to share why you are deactivating Event Espresso?', 'event_espresso' ),
876
+	__('Do you have a moment to share why you are deactivating Event Espresso?', 'event_espresso'),
877 877
 
878 878
 	// Reference: domains/wpPluginsPage/src/exitSurvey/Popup.tsx:39
879
-	__( 'Skip', 'event_espresso' ),
879
+	__('Skip', 'event_espresso'),
880 880
 
881 881
 	// Reference: domains/wpPluginsPage/src/exitSurvey/Popup.tsx:41
882
-	__( 'Sure I\'ll help', 'event_espresso' ),
882
+	__('Sure I\'ll help', 'event_espresso'),
883 883
 
884 884
 	// Reference: packages/adapters/src/Pagination/ItemRender.tsx:10
885
-	__( 'next', 'event_espresso' ),
885
+	__('next', 'event_espresso'),
886 886
 
887 887
 	// Reference: packages/adapters/src/Pagination/ItemRender.tsx:11
888
-	__( 'jump to previous', 'event_espresso' ),
888
+	__('jump to previous', 'event_espresso'),
889 889
 
890 890
 	// Reference: packages/adapters/src/Pagination/ItemRender.tsx:12
891
-	__( 'jump to next', 'event_espresso' ),
891
+	__('jump to next', 'event_espresso'),
892 892
 
893 893
 	// Reference: packages/adapters/src/Pagination/ItemRender.tsx:13
894
-	__( 'page', 'event_espresso' ),
894
+	__('page', 'event_espresso'),
895 895
 
896 896
 	// Reference: packages/adapters/src/Pagination/ItemRender.tsx:9
897
-	__( 'previous', 'event_espresso' ),
897
+	__('previous', 'event_espresso'),
898 898
 
899 899
 	// Reference: packages/adapters/src/Pagination/Pagination.tsx:34
900
-	__( 'pagination', 'event_espresso' ),
900
+	__('pagination', 'event_espresso'),
901 901
 
902 902
 	// Reference: packages/adapters/src/Pagination/PerPage.tsx:36
903
-	__( 'items per page', 'event_espresso' ),
903
+	__('items per page', 'event_espresso'),
904 904
 
905 905
 	// Reference: packages/adapters/src/Pagination/constants.ts:10
906 906
 	/* translators: %s is per page value */
907
-	__( '%s / page', 'event_espresso' ),
907
+	__('%s / page', 'event_espresso'),
908 908
 
909 909
 	// Reference: packages/adapters/src/Pagination/constants.ts:13
910
-	__( 'Next Page', 'event_espresso' ),
910
+	__('Next Page', 'event_espresso'),
911 911
 
912 912
 	// Reference: packages/adapters/src/Pagination/constants.ts:14
913
-	__( 'Previous Page', 'event_espresso' ),
913
+	__('Previous Page', 'event_espresso'),
914 914
 
915 915
 	// Reference: packages/adapters/src/Steps/Steps.tsx:30
916
-	__( 'Steps', 'event_espresso' ),
916
+	__('Steps', 'event_espresso'),
917 917
 
918 918
 	// Reference: packages/components/src/ActiveFilters/ActiveFilters.tsx:8
919
-	__( 'active filters:', 'event_espresso' ),
919
+	__('active filters:', 'event_espresso'),
920 920
 
921 921
 	// Reference: packages/components/src/ActiveFilters/FilterTag.tsx:11
922 922
 	/* translators: %s filter name */
923
-	__( 'remove filter - %s', 'event_espresso' ),
923
+	__('remove filter - %s', 'event_espresso'),
924 924
 
925 925
 	// Reference: packages/components/src/CalendarDateRange/CalendarDateRange.tsx:39
926
-	__( 'to', 'event_espresso' ),
926
+	__('to', 'event_espresso'),
927 927
 
928 928
 	// Reference: packages/components/src/CalendarDateSwitcher/CalendarDateSwitcher.tsx:33
929
-	__( 'starts', 'event_espresso' ),
929
+	__('starts', 'event_espresso'),
930 930
 
931 931
 	// Reference: packages/components/src/CalendarDateSwitcher/CalendarDateSwitcher.tsx:45
932
-	__( 'ends', 'event_espresso' ),
932
+	__('ends', 'event_espresso'),
933 933
 
934 934
 	// Reference: packages/components/src/CalendarPageDate/CalendarPageDate.tsx:57
935
-	__( 'TO', 'event_espresso' ),
935
+	__('TO', 'event_espresso'),
936 936
 
937 937
 	// Reference: packages/components/src/Confirm/ConfirmClose.tsx:8
938 938
 	// Reference: packages/components/src/Modal/ModalWithAlert.tsx:23
939
-	__( 'Are you sure you want to close this?', 'event_espresso' ),
939
+	__('Are you sure you want to close this?', 'event_espresso'),
940 940
 
941 941
 	// Reference: packages/components/src/Confirm/ConfirmDelete.tsx:8
942
-	__( 'Are you sure you want to delete this?', 'event_espresso' ),
942
+	__('Are you sure you want to delete this?', 'event_espresso'),
943 943
 
944 944
 	// Reference: packages/components/src/Confirm/useConfirmWithButton.tsx:11
945
-	__( 'Please confirm this action.', 'event_espresso' ),
945
+	__('Please confirm this action.', 'event_espresso'),
946 946
 
947 947
 	// Reference: packages/components/src/Confirm/useConfirmationDialog.tsx:35
948
-	__( 'No', 'event_espresso' ),
948
+	__('No', 'event_espresso'),
949 949
 
950 950
 	// Reference: packages/components/src/Confirm/useConfirmationDialog.tsx:36
951
-	__( 'Yes', 'event_espresso' ),
951
+	__('Yes', 'event_espresso'),
952 952
 
953 953
 	// Reference: packages/components/src/DateTimeRangePicker/index.tsx:48
954
-	__( 'save', 'event_espresso' ),
954
+	__('save', 'event_espresso'),
955 955
 
956 956
 	// Reference: packages/components/src/DebugInfo/DebugInfo.tsx:38
957
-	__( 'Hide Debug Info', 'event_espresso' ),
957
+	__('Hide Debug Info', 'event_espresso'),
958 958
 
959 959
 	// Reference: packages/components/src/DebugInfo/DebugInfo.tsx:38
960
-	__( 'Show Debug Info', 'event_espresso' ),
960
+	__('Show Debug Info', 'event_espresso'),
961 961
 
962 962
 	// Reference: packages/components/src/EditDateRangeButton/index.tsx:41
963
-	__( 'Edit Start and End Dates and Times', 'event_espresso' ),
963
+	__('Edit Start and End Dates and Times', 'event_espresso'),
964 964
 
965 965
 	// Reference: packages/components/src/EntityActionsMenu/entityMenuItems/Copy.tsx:9
966
-	__( 'copy', 'event_espresso' ),
966
+	__('copy', 'event_espresso'),
967 967
 
968 968
 	// Reference: packages/components/src/EntityActionsMenu/entityMenuItems/Edit.tsx:9
969
-	__( 'edit', 'event_espresso' ),
969
+	__('edit', 'event_espresso'),
970 970
 
971 971
 	// Reference: packages/components/src/EntityActionsMenu/entityMenuItems/Trash.tsx:9
972
-	__( 'trash', 'event_espresso' ),
972
+	__('trash', 'event_espresso'),
973 973
 
974 974
 	// Reference: packages/components/src/EntityDetailsPanel/EntityDetailsPanelSold.tsx:36
975
-	__( 'view approved registrations for this date.', 'event_espresso' ),
975
+	__('view approved registrations for this date.', 'event_espresso'),
976 976
 
977 977
 	// Reference: packages/components/src/EntityDetailsPanel/EntityDetailsPanelSold.tsx:37
978
-	__( 'view approved registrations for this ticket.', 'event_espresso' ),
978
+	__('view approved registrations for this ticket.', 'event_espresso'),
979 979
 
980 980
 	// Reference: packages/components/src/EntityList/EntityList.tsx:39
981
-	__( 'no results found', 'event_espresso' ),
981
+	__('no results found', 'event_espresso'),
982 982
 
983 983
 	// Reference: packages/components/src/EntityList/EntityList.tsx:40
984
-	__( 'try changing filter settings', 'event_espresso' ),
984
+	__('try changing filter settings', 'event_espresso'),
985 985
 
986 986
 	// Reference: packages/components/src/EntityList/filterBar/buttons/CardViewFilterButton.tsx:22
987
-	__( 'card view', 'event_espresso' ),
987
+	__('card view', 'event_espresso'),
988 988
 
989 989
 	// Reference: packages/components/src/EntityList/filterBar/buttons/TableViewFilterButton.tsx:22
990
-	__( 'table view', 'event_espresso' ),
990
+	__('table view', 'event_espresso'),
991 991
 
992 992
 	// Reference: packages/components/src/EntityList/filterBar/buttons/ToggleFiltersButton.tsx:11
993
-	__( 'hide filters', 'event_espresso' ),
993
+	__('hide filters', 'event_espresso'),
994 994
 
995 995
 	// Reference: packages/components/src/EntityList/filterBar/buttons/ToggleFiltersButton.tsx:11
996
-	__( 'show filters', 'event_espresso' ),
996
+	__('show filters', 'event_espresso'),
997 997
 
998 998
 	// Reference: packages/components/src/EntityList/filterBar/buttons/ToggleSortingButton.tsx:28
999
-	__( 'disable sorting', 'event_espresso' ),
999
+	__('disable sorting', 'event_espresso'),
1000 1000
 
1001 1001
 	// Reference: packages/components/src/EntityList/filterBar/buttons/ToggleSortingButton.tsx:28
1002
-	__( 'enable sorting', 'event_espresso' ),
1002
+	__('enable sorting', 'event_espresso'),
1003 1003
 
1004 1004
 	// Reference: packages/components/src/Legend/ToggleLegendButton.tsx:27
1005
-	__( 'hide legend', 'event_espresso' ),
1005
+	__('hide legend', 'event_espresso'),
1006 1006
 
1007 1007
 	// Reference: packages/components/src/Legend/ToggleLegendButton.tsx:27
1008
-	__( 'show legend', 'event_espresso' ),
1008
+	__('show legend', 'event_espresso'),
1009 1009
 
1010 1010
 	// Reference: packages/components/src/LoadingIndicator/LoadingIndicator.tsx:7
1011
-	__( 'loading …', 'event_espresso' ),
1011
+	__('loading …', 'event_espresso'),
1012 1012
 
1013 1013
 	// Reference: packages/components/src/LoadingNotice/LoadingNotice.tsx:16
1014
-	__( 'loading…', 'event_espresso' ),
1014
+	__('loading…', 'event_espresso'),
1015 1015
 
1016 1016
 	// Reference: packages/components/src/Modal/modalCloseButtonProps/index.ts:8
1017
-	__( 'close modal', 'event_espresso' ),
1017
+	__('close modal', 'event_espresso'),
1018 1018
 
1019 1019
 	// Reference: packages/components/src/PercentSign/index.tsx:11
1020
-	__( '%', 'event_espresso' ),
1020
+	__('%', 'event_espresso'),
1021 1021
 
1022 1022
 	// Reference: packages/components/src/Stepper/buttons/Next.tsx:12
1023
-	__( 'Next', 'event_espresso' ),
1023
+	__('Next', 'event_espresso'),
1024 1024
 
1025 1025
 	// Reference: packages/components/src/Stepper/buttons/Previous.tsx:12
1026
-	__( 'Previous', 'event_espresso' ),
1026
+	__('Previous', 'event_espresso'),
1027 1027
 
1028 1028
 	// Reference: packages/components/src/TabbableText/index.tsx:12
1029
-	__( 'Click to edit…', 'event_espresso' ),
1029
+	__('Click to edit…', 'event_espresso'),
1030 1030
 
1031 1031
 	// Reference: packages/components/src/TimezoneTimeInfo/Content.tsx:16
1032
-	__( 'Your Local Time Zone', 'event_espresso' ),
1032
+	__('Your Local Time Zone', 'event_espresso'),
1033 1033
 
1034 1034
 	// Reference: packages/components/src/TimezoneTimeInfo/Content.tsx:21
1035
-	__( 'The Website\'s Time Zone', 'event_espresso' ),
1035
+	__('The Website\'s Time Zone', 'event_espresso'),
1036 1036
 
1037 1037
 	// Reference: packages/components/src/TimezoneTimeInfo/Content.tsx:26
1038
-	__( 'UTC (Greenwich Mean Time)', 'event_espresso' ),
1038
+	__('UTC (Greenwich Mean Time)', 'event_espresso'),
1039 1039
 
1040 1040
 	// Reference: packages/components/src/TimezoneTimeInfo/TimezoneTimeInfo.tsx:23
1041
-	__( 'This Date Converted To:', 'event_espresso' ),
1041
+	__('This Date Converted To:', 'event_espresso'),
1042 1042
 
1043 1043
 	// Reference: packages/components/src/TimezoneTimeInfo/TimezoneTimeInfo.tsx:24
1044
-	__( 'click for timezone information', 'event_espresso' ),
1044
+	__('click for timezone information', 'event_espresso'),
1045 1045
 
1046 1046
 	// Reference: packages/components/src/bulkEdit/ActionCheckbox.tsx:38
1047 1047
 	/* translators: %d entity id */
1048
-	__( 'select entity with id %d', 'event_espresso' ),
1048
+	__('select entity with id %d', 'event_espresso'),
1049 1049
 
1050 1050
 	// Reference: packages/components/src/bulkEdit/ActionCheckbox.tsx:41
1051
-	__( 'select all entities', 'event_espresso' ),
1051
+	__('select all entities', 'event_espresso'),
1052 1052
 
1053 1053
 	// Reference: packages/components/src/bulkEdit/BulkActions.tsx:52
1054
-	__( 'select all', 'event_espresso' ),
1054
+	__('select all', 'event_espresso'),
1055 1055
 
1056 1056
 	// Reference: packages/components/src/bulkEdit/BulkActions.tsx:54
1057
-	__( 'apply', 'event_espresso' ),
1057
+	__('apply', 'event_espresso'),
1058 1058
 
1059 1059
 	// Reference: packages/components/src/bulkEdit/details/BulkEditDetailsProps.tsx:22
1060
-	__( 'Note: ', 'event_espresso' ),
1060
+	__('Note: ', 'event_espresso'),
1061 1061
 
1062 1062
 	// Reference: packages/components/src/bulkEdit/details/BulkEditDetailsProps.tsx:22
1063
-	__( 'any changes will be applied to ALL of the selected entities.', 'event_espresso' ),
1063
+	__('any changes will be applied to ALL of the selected entities.', 'event_espresso'),
1064 1064
 
1065 1065
 	// Reference: packages/components/src/bulkEdit/details/BulkEditDetailsProps.tsx:28
1066
-	__( 'Bulk edit details', 'event_espresso' ),
1066
+	__('Bulk edit details', 'event_espresso'),
1067 1067
 
1068 1068
 	// Reference: packages/components/src/bulkEdit/details/Submit.tsx:28
1069
-	__( 'Are you sure you want to bulk update the details?', 'event_espresso' ),
1069
+	__('Are you sure you want to bulk update the details?', 'event_espresso'),
1070 1070
 
1071 1071
 	// Reference: packages/components/src/bulkEdit/details/Submit.tsx:29
1072
-	__( 'Bulk update details', 'event_espresso' ),
1072
+	__('Bulk update details', 'event_espresso'),
1073 1073
 
1074 1074
 	// Reference: packages/dates/src/DateRangePicker/DateRangePickerLegend.tsx:14
1075
-	__( 'day in range', 'event_espresso' ),
1075
+	__('day in range', 'event_espresso'),
1076 1076
 
1077 1077
 	// Reference: packages/dates/src/DateRangePicker/DateRangePickerLegend.tsx:18
1078 1078
 	// Reference: packages/dates/src/DateRangePicker/index.tsx:74
1079
-	__( 'end date', 'event_espresso' ),
1079
+	__('end date', 'event_espresso'),
1080 1080
 
1081 1081
 	// Reference: packages/dates/src/DateTimePicker.tsx:13
1082 1082
 	// Reference: packages/dates/src/TimePicker.tsx:14
1083
-	__( 'time', 'event_espresso' ),
1083
+	__('time', 'event_espresso'),
1084 1084
 
1085 1085
 	// Reference: packages/dates/src/utils/misc.ts:13
1086
-	__( 'month(s)', 'event_espresso' ),
1086
+	__('month(s)', 'event_espresso'),
1087 1087
 
1088 1088
 	// Reference: packages/dates/src/utils/misc.ts:14
1089
-	__( 'week(s)', 'event_espresso' ),
1089
+	__('week(s)', 'event_espresso'),
1090 1090
 
1091 1091
 	// Reference: packages/dates/src/utils/misc.ts:15
1092
-	__( 'day(s)', 'event_espresso' ),
1092
+	__('day(s)', 'event_espresso'),
1093 1093
 
1094 1094
 	// Reference: packages/dates/src/utils/misc.ts:16
1095
-	__( 'hour(s)', 'event_espresso' ),
1095
+	__('hour(s)', 'event_espresso'),
1096 1096
 
1097 1097
 	// Reference: packages/dates/src/utils/misc.ts:17
1098
-	__( 'minute(s)', 'event_espresso' ),
1098
+	__('minute(s)', 'event_espresso'),
1099 1099
 
1100 1100
 	// Reference: packages/edtr-services/src/apollo/queries/datetimes/useFetchDatetimes.ts:27
1101
-	__( 'datetimes initialized', 'event_espresso' ),
1101
+	__('datetimes initialized', 'event_espresso'),
1102 1102
 
1103 1103
 	// Reference: packages/edtr-services/src/apollo/queries/datetimes/useFetchDatetimes.ts:43
1104
-	__( 'initializing datetimes', 'event_espresso' ),
1104
+	__('initializing datetimes', 'event_espresso'),
1105 1105
 
1106 1106
 	// Reference: packages/edtr-services/src/apollo/queries/priceTypes/useFetchPriceTypes.ts:26
1107
-	__( 'price types initialized', 'event_espresso' ),
1107
+	__('price types initialized', 'event_espresso'),
1108 1108
 
1109 1109
 	// Reference: packages/edtr-services/src/apollo/queries/priceTypes/useFetchPriceTypes.ts:41
1110
-	__( 'initializing price types', 'event_espresso' ),
1110
+	__('initializing price types', 'event_espresso'),
1111 1111
 
1112 1112
 	// Reference: packages/edtr-services/src/apollo/queries/prices/useFetchPrices.ts:36
1113
-	__( 'prices initialized', 'event_espresso' ),
1113
+	__('prices initialized', 'event_espresso'),
1114 1114
 
1115 1115
 	// Reference: packages/edtr-services/src/apollo/queries/prices/useFetchPrices.ts:70
1116
-	__( 'initializing prices', 'event_espresso' ),
1116
+	__('initializing prices', 'event_espresso'),
1117 1117
 
1118 1118
 	// Reference: packages/edtr-services/src/apollo/queries/tickets/useFetchTickets.ts:32
1119
-	__( 'tickets initialized', 'event_espresso' ),
1119
+	__('tickets initialized', 'event_espresso'),
1120 1120
 
1121 1121
 	// Reference: packages/edtr-services/src/apollo/queries/tickets/useFetchTickets.ts:47
1122
-	__( 'initializing tickets', 'event_espresso' ),
1122
+	__('initializing tickets', 'event_espresso'),
1123 1123
 
1124 1124
 	// Reference: packages/edtr-services/src/utils/dateAndTime.ts:11
1125
-	__( 'Start Date is required', 'event_espresso' ),
1125
+	__('Start Date is required', 'event_espresso'),
1126 1126
 
1127 1127
 	// Reference: packages/edtr-services/src/utils/dateAndTime.ts:15
1128
-	__( 'End Date is required', 'event_espresso' ),
1128
+	__('End Date is required', 'event_espresso'),
1129 1129
 
1130 1130
 	// Reference: packages/edtr-services/src/utils/dateAndTime.ts:5
1131
-	__( 'End Date & Time must be set later than the Start Date & Time', 'event_espresso' ),
1131
+	__('End Date & Time must be set later than the Start Date & Time', 'event_espresso'),
1132 1132
 
1133 1133
 	// Reference: packages/edtr-services/src/utils/dateAndTime.ts:6
1134
-	__( 'Required', 'event_espresso' ),
1134
+	__('Required', 'event_espresso'),
1135 1135
 
1136 1136
 	// Reference: packages/form/src/renderers/RepeatableRenderer.tsx:35
1137 1137
 	/* translators: %d the entry number */
1138
-	__( 'Entry %d', 'event_espresso' ),
1138
+	__('Entry %d', 'event_espresso'),
1139 1139
 
1140 1140
 	// Reference: packages/form/src/renderers/RepeatableRenderer.tsx:51
1141
-	__( 'Add', 'event_espresso' ),
1141
+	__('Add', 'event_espresso'),
1142 1142
 
1143 1143
 	// Reference: packages/helpers/src/datetimes/getStatusTextLabel.ts:11
1144 1144
 	// Reference: packages/helpers/src/tickets/getStatusTextLabel.ts:17
1145
-	__( 'sold out', 'event_espresso' ),
1145
+	__('sold out', 'event_espresso'),
1146 1146
 
1147 1147
 	// Reference: packages/helpers/src/datetimes/getStatusTextLabel.ts:14
1148 1148
 	// Reference: packages/helpers/src/tickets/getStatusTextLabel.ts:14
1149
-	__( 'expired', 'event_espresso' ),
1149
+	__('expired', 'event_espresso'),
1150 1150
 
1151 1151
 	// Reference: packages/helpers/src/datetimes/getStatusTextLabel.ts:17
1152
-	__( 'upcoming', 'event_espresso' ),
1152
+	__('upcoming', 'event_espresso'),
1153 1153
 
1154 1154
 	// Reference: packages/helpers/src/datetimes/getStatusTextLabel.ts:20
1155
-	__( 'active', 'event_espresso' ),
1155
+	__('active', 'event_espresso'),
1156 1156
 
1157 1157
 	// Reference: packages/helpers/src/datetimes/getStatusTextLabel.ts:23
1158 1158
 	// Reference: packages/helpers/src/tickets/getStatusTextLabel.ts:11
1159
-	__( 'trashed', 'event_espresso' ),
1159
+	__('trashed', 'event_espresso'),
1160 1160
 
1161 1161
 	// Reference: packages/helpers/src/datetimes/getStatusTextLabel.ts:26
1162
-	__( 'cancelled', 'event_espresso' ),
1162
+	__('cancelled', 'event_espresso'),
1163 1163
 
1164 1164
 	// Reference: packages/helpers/src/datetimes/getStatusTextLabel.ts:29
1165
-	__( 'postponed', 'event_espresso' ),
1165
+	__('postponed', 'event_espresso'),
1166 1166
 
1167 1167
 	// Reference: packages/helpers/src/datetimes/getStatusTextLabel.ts:33
1168
-	__( 'inactive', 'event_espresso' ),
1168
+	__('inactive', 'event_espresso'),
1169 1169
 
1170 1170
 	// Reference: packages/helpers/src/tickets/getStatusTextLabel.ts:20
1171
-	__( 'pending', 'event_espresso' ),
1171
+	__('pending', 'event_espresso'),
1172 1172
 
1173 1173
 	// Reference: packages/helpers/src/tickets/getStatusTextLabel.ts:23
1174
-	__( 'on sale', 'event_espresso' ),
1174
+	__('on sale', 'event_espresso'),
1175 1175
 
1176 1176
 	// Reference: packages/predicates/src/registration/statusOptions.ts:10
1177
-	__( 'Cancelled', 'event_espresso' ),
1177
+	__('Cancelled', 'event_espresso'),
1178 1178
 
1179 1179
 	// Reference: packages/predicates/src/registration/statusOptions.ts:14
1180
-	__( 'Declined', 'event_espresso' ),
1180
+	__('Declined', 'event_espresso'),
1181 1181
 
1182 1182
 	// Reference: packages/predicates/src/registration/statusOptions.ts:18
1183
-	__( 'Incomplete', 'event_espresso' ),
1183
+	__('Incomplete', 'event_espresso'),
1184 1184
 
1185 1185
 	// Reference: packages/predicates/src/registration/statusOptions.ts:22
1186
-	__( 'Not Approved', 'event_espresso' ),
1186
+	__('Not Approved', 'event_espresso'),
1187 1187
 
1188 1188
 	// Reference: packages/predicates/src/registration/statusOptions.ts:26
1189
-	__( 'Pending Payment', 'event_espresso' ),
1189
+	__('Pending Payment', 'event_espresso'),
1190 1190
 
1191 1191
 	// Reference: packages/predicates/src/registration/statusOptions.ts:30
1192
-	__( 'Wait List', 'event_espresso' ),
1192
+	__('Wait List', 'event_espresso'),
1193 1193
 
1194 1194
 	// Reference: packages/predicates/src/registration/statusOptions.ts:6
1195
-	__( 'Approved', 'event_espresso' ),
1195
+	__('Approved', 'event_espresso'),
1196 1196
 
1197 1197
 	// Reference: packages/rich-text-editor/src/components/ToolbarControls/HeadingControls.tsx:23
1198
-	__( 'heading selector', 'event_espresso' ),
1198
+	__('heading selector', 'event_espresso'),
1199 1199
 
1200 1200
 	// Reference: packages/rich-text-editor/src/components/constants.ts:12
1201
-	__( 'blockquote', 'event_espresso' ),
1201
+	__('blockquote', 'event_espresso'),
1202 1202
 
1203 1203
 	// Reference: packages/rich-text-editor/src/components/constants.ts:13
1204
-	__( 'unordered list', 'event_espresso' ),
1204
+	__('unordered list', 'event_espresso'),
1205 1205
 
1206 1206
 	// Reference: packages/rich-text-editor/src/components/constants.ts:14
1207
-	__( 'ordered list', 'event_espresso' ),
1207
+	__('ordered list', 'event_espresso'),
1208 1208
 
1209 1209
 	// Reference: packages/rich-text-editor/src/components/constants.ts:27
1210
-	__( 'bold', 'event_espresso' ),
1210
+	__('bold', 'event_espresso'),
1211 1211
 
1212 1212
 	// Reference: packages/rich-text-editor/src/components/constants.ts:28
1213
-	__( 'italic', 'event_espresso' ),
1213
+	__('italic', 'event_espresso'),
1214 1214
 
1215 1215
 	// Reference: packages/rich-text-editor/src/components/constants.ts:29
1216
-	__( 'underline', 'event_espresso' ),
1216
+	__('underline', 'event_espresso'),
1217 1217
 
1218 1218
 	// Reference: packages/tpc/src/buttons/AddPriceModifierButton.tsx:15
1219
-	__( 'add new price modifier after this row', 'event_espresso' ),
1219
+	__('add new price modifier after this row', 'event_espresso'),
1220 1220
 
1221 1221
 	// Reference: packages/tpc/src/buttons/DeleteAllPricesButton.tsx:13
1222
-	__( 'Delete all prices', 'event_espresso' ),
1222
+	__('Delete all prices', 'event_espresso'),
1223 1223
 
1224 1224
 	// Reference: packages/tpc/src/buttons/DeleteAllPricesButton.tsx:26
1225
-	__( 'Are you sure you want to delete all of this ticket\'s prices and make it free? This action is permanent and can not be undone.', 'event_espresso' ),
1225
+	__('Are you sure you want to delete all of this ticket\'s prices and make it free? This action is permanent and can not be undone.', 'event_espresso'),
1226 1226
 
1227 1227
 	// Reference: packages/tpc/src/buttons/DeleteAllPricesButton.tsx:30
1228
-	__( 'Delete all prices?', 'event_espresso' ),
1228
+	__('Delete all prices?', 'event_espresso'),
1229 1229
 
1230 1230
 	// Reference: packages/tpc/src/buttons/DeletePriceModifierButton.tsx:12
1231
-	__( 'delete price modifier', 'event_espresso' ),
1231
+	__('delete price modifier', 'event_espresso'),
1232 1232
 
1233 1233
 	// Reference: packages/tpc/src/buttons/ReverseCalculateButton.tsx:15
1234
-	__( 'Ticket base price is being reverse calculated from bottom to top starting with the ticket total. Entering a new ticket total will reverse calculate the ticket base price after applying all price modifiers in reverse. Click to turn off reverse calculations', 'event_espresso' ),
1234
+	__('Ticket base price is being reverse calculated from bottom to top starting with the ticket total. Entering a new ticket total will reverse calculate the ticket base price after applying all price modifiers in reverse. Click to turn off reverse calculations', 'event_espresso'),
1235 1235
 
1236 1236
 	// Reference: packages/tpc/src/buttons/ReverseCalculateButton.tsx:18
1237
-	__( 'Ticket total is being calculated normally from top to bottom starting from the base price. Entering a new ticket base price will recalculate the ticket total after applying all price modifiers. Click to turn on reverse calculations', 'event_espresso' ),
1237
+	__('Ticket total is being calculated normally from top to bottom starting from the base price. Entering a new ticket base price will recalculate the ticket total after applying all price modifiers. Click to turn on reverse calculations', 'event_espresso'),
1238 1238
 
1239 1239
 	// Reference: packages/tpc/src/buttons/TicketPriceCalculatorButton.tsx:29
1240
-	__( 'ticket price calculator', 'event_espresso' ),
1240
+	__('ticket price calculator', 'event_espresso'),
1241 1241
 
1242 1242
 	// Reference: packages/tpc/src/buttons/taxes/AddDefaultTaxesButton.tsx:10
1243
-	__( 'Add default taxes', 'event_espresso' ),
1243
+	__('Add default taxes', 'event_espresso'),
1244 1244
 
1245 1245
 	// Reference: packages/tpc/src/buttons/taxes/RemoveTaxesButton.tsx:11
1246
-	__( 'Are you sure you want to remove all of this ticket\'s taxes?', 'event_espresso' ),
1246
+	__('Are you sure you want to remove all of this ticket\'s taxes?', 'event_espresso'),
1247 1247
 
1248 1248
 	// Reference: packages/tpc/src/buttons/taxes/RemoveTaxesButton.tsx:15
1249
-	__( 'Remove all taxes?', 'event_espresso' ),
1249
+	__('Remove all taxes?', 'event_espresso'),
1250 1250
 
1251 1251
 	// Reference: packages/tpc/src/buttons/taxes/RemoveTaxesButton.tsx:8
1252
-	__( 'Remove taxes', 'event_espresso' ),
1252
+	__('Remove taxes', 'event_espresso'),
1253 1253
 
1254 1254
 	// Reference: packages/tpc/src/components/DefaultPricesInfo.tsx:28
1255
-	__( 'Modify default prices.', 'event_espresso' ),
1255
+	__('Modify default prices.', 'event_espresso'),
1256 1256
 
1257 1257
 	// Reference: packages/tpc/src/components/DefaultTaxesInfo.tsx:28
1258
-	__( 'New default taxes are available. Click the - Add default taxes - button to add them now.', 'event_espresso' ),
1258
+	__('New default taxes are available. Click the - Add default taxes - button to add them now.', 'event_espresso'),
1259 1259
 
1260 1260
 	// Reference: packages/tpc/src/components/NoPricesBanner/AddDefaultPricesButton.tsx:10
1261
-	__( 'Add default prices', 'event_espresso' ),
1261
+	__('Add default prices', 'event_espresso'),
1262 1262
 
1263 1263
 	// Reference: packages/tpc/src/components/NoPricesBanner/index.tsx:14
1264
-	__( 'This Ticket is Currently Free', 'event_espresso' ),
1264
+	__('This Ticket is Currently Free', 'event_espresso'),
1265 1265
 
1266 1266
 	// Reference: packages/tpc/src/components/NoPricesBanner/index.tsx:22
1267 1267
 	/* translators: %s default prices */
1268
-	__( 'Click the button below to load your %s into the calculator.', 'event_espresso' ),
1268
+	__('Click the button below to load your %s into the calculator.', 'event_espresso'),
1269 1269
 
1270 1270
 	// Reference: packages/tpc/src/components/NoPricesBanner/index.tsx:23
1271
-	__( 'default prices', 'event_espresso' ),
1271
+	__('default prices', 'event_espresso'),
1272 1272
 
1273 1273
 	// Reference: packages/tpc/src/components/NoPricesBanner/index.tsx:30
1274
-	__( 'Additional ticket price modifiers can be added or removed.', 'event_espresso' ),
1274
+	__('Additional ticket price modifiers can be added or removed.', 'event_espresso'),
1275 1275
 
1276 1276
 	// Reference: packages/tpc/src/components/NoPricesBanner/index.tsx:33
1277
-	__( 'Click the save button below to assign which dates this ticket will be available for purchase on.', 'event_espresso' ),
1277
+	__('Click the save button below to assign which dates this ticket will be available for purchase on.', 'event_espresso'),
1278 1278
 
1279 1279
 	// Reference: packages/tpc/src/components/TicketPriceCalculatorModal.tsx:32
1280 1280
 	/* translators: %s ticket name */
1281
-	__( 'Price Calculator for Ticket: %s', 'event_espresso' ),
1281
+	__('Price Calculator for Ticket: %s', 'event_espresso'),
1282 1282
 
1283 1283
 	// Reference: packages/tpc/src/components/table/Table.tsx:43
1284
-	__( 'Ticket Price Calculator', 'event_espresso' ),
1284
+	__('Ticket Price Calculator', 'event_espresso'),
1285 1285
 
1286 1286
 	// Reference: packages/tpc/src/components/table/useFooterRowGenerator.tsx:41
1287
-	__( 'Total', 'event_espresso' ),
1287
+	__('Total', 'event_espresso'),
1288 1288
 
1289 1289
 	// Reference: packages/tpc/src/components/table/useFooterRowGenerator.tsx:50
1290
-	__( 'ticket total', 'event_espresso' ),
1290
+	__('ticket total', 'event_espresso'),
1291 1291
 
1292 1292
 	// Reference: packages/tpc/src/components/table/useHeaderRowGenerator.ts:29
1293
-	__( 'Price Type', 'event_espresso' ),
1293
+	__('Price Type', 'event_espresso'),
1294 1294
 
1295 1295
 	// Reference: packages/tpc/src/components/table/useHeaderRowGenerator.ts:35
1296
-	__( 'Label', 'event_espresso' ),
1296
+	__('Label', 'event_espresso'),
1297 1297
 
1298 1298
 	// Reference: packages/tpc/src/components/table/useHeaderRowGenerator.ts:47
1299
-	__( 'Amount', 'event_espresso' ),
1299
+	__('Amount', 'event_espresso'),
1300 1300
 
1301 1301
 	// Reference: packages/tpc/src/inputs/PriceAmountInput.tsx:34
1302
-	__( 'amount', 'event_espresso' ),
1302
+	__('amount', 'event_espresso'),
1303 1303
 
1304 1304
 	// Reference: packages/tpc/src/inputs/PriceAmountInput.tsx:45
1305
-	__( 'amount…', 'event_espresso' ),
1305
+	__('amount…', 'event_espresso'),
1306 1306
 
1307 1307
 	// Reference: packages/tpc/src/inputs/PriceDescriptionInput.tsx:10
1308
-	__( 'price description', 'event_espresso' ),
1308
+	__('price description', 'event_espresso'),
1309 1309
 
1310 1310
 	// Reference: packages/tpc/src/inputs/PriceDescriptionInput.tsx:15
1311
-	__( 'description…', 'event_espresso' ),
1311
+	__('description…', 'event_espresso'),
1312 1312
 
1313 1313
 	// Reference: packages/tpc/src/inputs/PriceIdInput.tsx:9
1314
-	__( 'price id', 'event_espresso' ),
1314
+	__('price id', 'event_espresso'),
1315 1315
 
1316 1316
 	// Reference: packages/tpc/src/inputs/PriceNameInput.tsx:10
1317
-	__( 'price name', 'event_espresso' ),
1317
+	__('price name', 'event_espresso'),
1318 1318
 
1319 1319
 	// Reference: packages/tpc/src/inputs/PriceNameInput.tsx:15
1320
-	__( 'label…', 'event_espresso' ),
1320
+	__('label…', 'event_espresso'),
1321 1321
 
1322 1322
 	// Reference: packages/tpc/src/inputs/PriceTypeInput.tsx:16
1323
-	__( 'price type', 'event_espresso' ),
1323
+	__('price type', 'event_espresso'),
1324 1324
 
1325 1325
 	// Reference: packages/tpc/src/utils/constants.ts:12
1326
-	__( 'Ticket price modifications are blocked for Tickets that have already been sold to registrants, because doing so would negatively affect internal accounting for the event. If you still need to modify ticket prices, then create a copy of those tickets, edit the prices for the new tickets, and then archive the old tickets.', 'event_espresso' )
1326
+	__('Ticket price modifications are blocked for Tickets that have already been sold to registrants, because doing so would negatively affect internal accounting for the event. If you still need to modify ticket prices, then create a copy of those tickets, edit the prices for the new tickets, and then archive the old tickets.', 'event_espresso')
1327 1327
 );
1328 1328
 /* THIS IS THE END OF THE GENERATED FILE */
Please login to merge, or discard this patch.