@@ -13,369 +13,369 @@ |
||
13 | 13 | class EEM_Price extends EEM_Soft_Delete_Base |
14 | 14 | { |
15 | 15 | |
16 | - // private instance of the EEM_Price object |
|
17 | - protected static $_instance; |
|
16 | + // private instance of the EEM_Price object |
|
17 | + protected static $_instance; |
|
18 | 18 | |
19 | 19 | |
20 | - /** |
|
21 | - * private constructor to prevent direct creation |
|
22 | - * |
|
23 | - * @Constructor |
|
24 | - * @param string $timezone string representing the timezone we want to set for returned Date Time Strings |
|
25 | - * (and any incoming timezone data that gets saved). |
|
26 | - * Note this just sends the timezone info to the date time model field objects. |
|
27 | - * Default is NULL |
|
28 | - * (and will be assumed using the set timezone in the 'timezone_string' wp option) |
|
29 | - */ |
|
30 | - protected function __construct($timezone) |
|
31 | - { |
|
32 | - require_once(EE_MODELS . 'EEM_Price_Type.model.php'); |
|
33 | - $this->singular_item = __('Price', 'event_espresso'); |
|
34 | - $this->plural_item = __('Prices', 'event_espresso'); |
|
20 | + /** |
|
21 | + * private constructor to prevent direct creation |
|
22 | + * |
|
23 | + * @Constructor |
|
24 | + * @param string $timezone string representing the timezone we want to set for returned Date Time Strings |
|
25 | + * (and any incoming timezone data that gets saved). |
|
26 | + * Note this just sends the timezone info to the date time model field objects. |
|
27 | + * Default is NULL |
|
28 | + * (and will be assumed using the set timezone in the 'timezone_string' wp option) |
|
29 | + */ |
|
30 | + protected function __construct($timezone) |
|
31 | + { |
|
32 | + require_once(EE_MODELS . 'EEM_Price_Type.model.php'); |
|
33 | + $this->singular_item = __('Price', 'event_espresso'); |
|
34 | + $this->plural_item = __('Prices', 'event_espresso'); |
|
35 | 35 | |
36 | - $this->_tables = [ |
|
37 | - 'Price' => new EE_Primary_Table('esp_price', 'PRC_ID'), |
|
38 | - ]; |
|
39 | - $this->_fields = [ |
|
40 | - 'Price' => [ |
|
41 | - 'PRC_ID' => new EE_Primary_Key_Int_Field( |
|
42 | - 'PRC_ID', |
|
43 | - 'Price ID' |
|
44 | - ), |
|
45 | - 'PRT_ID' => new EE_Foreign_Key_Int_Field( |
|
46 | - 'PRT_ID', |
|
47 | - esc_html__('Price type Id', 'event_espresso'), |
|
48 | - false, |
|
49 | - null, |
|
50 | - 'Price_Type' |
|
51 | - ), |
|
52 | - 'PRC_amount' => new EE_Money_Field( |
|
53 | - 'PRC_amount', |
|
54 | - esc_html__('Price Amount', 'event_espresso'), |
|
55 | - false, |
|
56 | - 0 |
|
57 | - ), |
|
58 | - 'PRC_name' => new EE_Plain_Text_Field( |
|
59 | - 'PRC_name', |
|
60 | - esc_html__('Name of Price', 'event_espresso'), |
|
61 | - false, |
|
62 | - '' |
|
63 | - ), |
|
64 | - 'PRC_desc' => new EE_Post_Content_Field( |
|
65 | - 'PRC_desc', |
|
66 | - esc_html__('Price Description', 'event_espresso'), |
|
67 | - false, |
|
68 | - '' |
|
69 | - ), |
|
70 | - 'PRC_is_default' => new EE_Boolean_Field( |
|
71 | - 'PRC_is_default', |
|
72 | - esc_html__('Flag indicating whether price is a default price', 'event_espresso'), |
|
73 | - false, |
|
74 | - false |
|
75 | - ), |
|
76 | - 'PRC_overrides' => new EE_Integer_Field( |
|
77 | - 'PRC_overrides', |
|
78 | - esc_html__( |
|
79 | - 'Price ID for a global Price that will be overridden by this Price ( for replacing default prices )', |
|
80 | - 'event_espresso' |
|
81 | - ), |
|
82 | - true, |
|
83 | - 0 |
|
84 | - ), |
|
85 | - 'PRC_order' => new EE_Integer_Field( |
|
86 | - 'PRC_order', |
|
87 | - esc_html__( |
|
88 | - 'Order of Application of Price (lower numbers apply first?)', |
|
89 | - 'event_espresso' |
|
90 | - ), |
|
91 | - false, |
|
92 | - 1 |
|
93 | - ), |
|
94 | - 'PRC_deleted' => new EE_Trashed_Flag_Field( |
|
95 | - 'PRC_deleted', |
|
96 | - esc_html__('Flag Indicating if this has been deleted or not', 'event_espresso'), |
|
97 | - false, |
|
98 | - false |
|
99 | - ), |
|
100 | - 'PRC_parent' => new EE_Integer_Field( |
|
101 | - 'PRC_parent', |
|
102 | - esc_html__('Indicates what PRC_ID is the parent of this PRC_ID', 'event_espresso'), |
|
103 | - true, |
|
104 | - 0 |
|
105 | - ), |
|
106 | - 'PRC_wp_user' => new EE_WP_User_Field( |
|
107 | - 'PRC_wp_user', |
|
108 | - esc_html__('Price Creator ID', 'event_espresso'), |
|
109 | - false |
|
110 | - ), |
|
111 | - ], |
|
112 | - ]; |
|
113 | - $this->_model_relations = [ |
|
114 | - 'Ticket' => new EE_HABTM_Relation('Ticket_Price'), |
|
115 | - 'Price_Type' => new EE_Belongs_To_Relation(), |
|
116 | - 'WP_User' => new EE_Belongs_To_Relation(), |
|
117 | - ]; |
|
118 | - // this model is generally available for reading |
|
119 | - $this->_cap_restriction_generators[ EEM_Base::caps_read ] = |
|
120 | - new EE_Restriction_Generator_Default_Public( |
|
121 | - 'PRC_is_default', |
|
122 | - 'Ticket.Datetime.Event' |
|
123 | - ); |
|
124 | - // account for default tickets in the caps |
|
125 | - $this->_cap_restriction_generators[ EEM_Base::caps_read_admin ] = |
|
126 | - new EE_Restriction_Generator_Default_Protected( |
|
127 | - 'PRC_is_default', |
|
128 | - 'Ticket.Datetime.Event' |
|
129 | - ); |
|
130 | - $this->_cap_restriction_generators[ EEM_Base::caps_edit ] = |
|
131 | - new EE_Restriction_Generator_Default_Protected( |
|
132 | - 'PRC_is_default', |
|
133 | - 'Ticket.Datetime.Event' |
|
134 | - ); |
|
135 | - $this->_cap_restriction_generators[ EEM_Base::caps_delete ] = |
|
136 | - new EE_Restriction_Generator_Default_Protected( |
|
137 | - 'PRC_is_default', |
|
138 | - 'Ticket.Datetime.Event' |
|
139 | - ); |
|
140 | - parent::__construct($timezone); |
|
141 | - } |
|
36 | + $this->_tables = [ |
|
37 | + 'Price' => new EE_Primary_Table('esp_price', 'PRC_ID'), |
|
38 | + ]; |
|
39 | + $this->_fields = [ |
|
40 | + 'Price' => [ |
|
41 | + 'PRC_ID' => new EE_Primary_Key_Int_Field( |
|
42 | + 'PRC_ID', |
|
43 | + 'Price ID' |
|
44 | + ), |
|
45 | + 'PRT_ID' => new EE_Foreign_Key_Int_Field( |
|
46 | + 'PRT_ID', |
|
47 | + esc_html__('Price type Id', 'event_espresso'), |
|
48 | + false, |
|
49 | + null, |
|
50 | + 'Price_Type' |
|
51 | + ), |
|
52 | + 'PRC_amount' => new EE_Money_Field( |
|
53 | + 'PRC_amount', |
|
54 | + esc_html__('Price Amount', 'event_espresso'), |
|
55 | + false, |
|
56 | + 0 |
|
57 | + ), |
|
58 | + 'PRC_name' => new EE_Plain_Text_Field( |
|
59 | + 'PRC_name', |
|
60 | + esc_html__('Name of Price', 'event_espresso'), |
|
61 | + false, |
|
62 | + '' |
|
63 | + ), |
|
64 | + 'PRC_desc' => new EE_Post_Content_Field( |
|
65 | + 'PRC_desc', |
|
66 | + esc_html__('Price Description', 'event_espresso'), |
|
67 | + false, |
|
68 | + '' |
|
69 | + ), |
|
70 | + 'PRC_is_default' => new EE_Boolean_Field( |
|
71 | + 'PRC_is_default', |
|
72 | + esc_html__('Flag indicating whether price is a default price', 'event_espresso'), |
|
73 | + false, |
|
74 | + false |
|
75 | + ), |
|
76 | + 'PRC_overrides' => new EE_Integer_Field( |
|
77 | + 'PRC_overrides', |
|
78 | + esc_html__( |
|
79 | + 'Price ID for a global Price that will be overridden by this Price ( for replacing default prices )', |
|
80 | + 'event_espresso' |
|
81 | + ), |
|
82 | + true, |
|
83 | + 0 |
|
84 | + ), |
|
85 | + 'PRC_order' => new EE_Integer_Field( |
|
86 | + 'PRC_order', |
|
87 | + esc_html__( |
|
88 | + 'Order of Application of Price (lower numbers apply first?)', |
|
89 | + 'event_espresso' |
|
90 | + ), |
|
91 | + false, |
|
92 | + 1 |
|
93 | + ), |
|
94 | + 'PRC_deleted' => new EE_Trashed_Flag_Field( |
|
95 | + 'PRC_deleted', |
|
96 | + esc_html__('Flag Indicating if this has been deleted or not', 'event_espresso'), |
|
97 | + false, |
|
98 | + false |
|
99 | + ), |
|
100 | + 'PRC_parent' => new EE_Integer_Field( |
|
101 | + 'PRC_parent', |
|
102 | + esc_html__('Indicates what PRC_ID is the parent of this PRC_ID', 'event_espresso'), |
|
103 | + true, |
|
104 | + 0 |
|
105 | + ), |
|
106 | + 'PRC_wp_user' => new EE_WP_User_Field( |
|
107 | + 'PRC_wp_user', |
|
108 | + esc_html__('Price Creator ID', 'event_espresso'), |
|
109 | + false |
|
110 | + ), |
|
111 | + ], |
|
112 | + ]; |
|
113 | + $this->_model_relations = [ |
|
114 | + 'Ticket' => new EE_HABTM_Relation('Ticket_Price'), |
|
115 | + 'Price_Type' => new EE_Belongs_To_Relation(), |
|
116 | + 'WP_User' => new EE_Belongs_To_Relation(), |
|
117 | + ]; |
|
118 | + // this model is generally available for reading |
|
119 | + $this->_cap_restriction_generators[ EEM_Base::caps_read ] = |
|
120 | + new EE_Restriction_Generator_Default_Public( |
|
121 | + 'PRC_is_default', |
|
122 | + 'Ticket.Datetime.Event' |
|
123 | + ); |
|
124 | + // account for default tickets in the caps |
|
125 | + $this->_cap_restriction_generators[ EEM_Base::caps_read_admin ] = |
|
126 | + new EE_Restriction_Generator_Default_Protected( |
|
127 | + 'PRC_is_default', |
|
128 | + 'Ticket.Datetime.Event' |
|
129 | + ); |
|
130 | + $this->_cap_restriction_generators[ EEM_Base::caps_edit ] = |
|
131 | + new EE_Restriction_Generator_Default_Protected( |
|
132 | + 'PRC_is_default', |
|
133 | + 'Ticket.Datetime.Event' |
|
134 | + ); |
|
135 | + $this->_cap_restriction_generators[ EEM_Base::caps_delete ] = |
|
136 | + new EE_Restriction_Generator_Default_Protected( |
|
137 | + 'PRC_is_default', |
|
138 | + 'Ticket.Datetime.Event' |
|
139 | + ); |
|
140 | + parent::__construct($timezone); |
|
141 | + } |
|
142 | 142 | |
143 | 143 | |
144 | - /** |
|
145 | - * instantiate a new price object with blank/empty properties |
|
146 | - * |
|
147 | - * @return mixed array on success, FALSE on fail |
|
148 | - */ |
|
149 | - public function get_new_price() |
|
150 | - { |
|
151 | - return $this->create_default_object(); |
|
152 | - } |
|
144 | + /** |
|
145 | + * instantiate a new price object with blank/empty properties |
|
146 | + * |
|
147 | + * @return mixed array on success, FALSE on fail |
|
148 | + */ |
|
149 | + public function get_new_price() |
|
150 | + { |
|
151 | + return $this->create_default_object(); |
|
152 | + } |
|
153 | 153 | |
154 | 154 | |
155 | - /** |
|
156 | - * retrieve ALL prices from db |
|
157 | - * |
|
158 | - * @return EE_Base_Class[]|EE_PRice[] |
|
159 | - * @throws EE_Error |
|
160 | - */ |
|
161 | - public function get_all_prices() |
|
162 | - { |
|
163 | - // retrieve all prices |
|
164 | - return $this->get_all(['order_by' => ['PRC_amount' => 'ASC']]); |
|
165 | - } |
|
155 | + /** |
|
156 | + * retrieve ALL prices from db |
|
157 | + * |
|
158 | + * @return EE_Base_Class[]|EE_PRice[] |
|
159 | + * @throws EE_Error |
|
160 | + */ |
|
161 | + public function get_all_prices() |
|
162 | + { |
|
163 | + // retrieve all prices |
|
164 | + return $this->get_all(['order_by' => ['PRC_amount' => 'ASC']]); |
|
165 | + } |
|
166 | 166 | |
167 | 167 | |
168 | - /** |
|
169 | - * retrieve all active prices for a particular event |
|
170 | - * |
|
171 | - * @param int $EVT_ID |
|
172 | - * @return array on success |
|
173 | - * @throws EE_Error |
|
174 | - */ |
|
175 | - public function get_all_event_prices($EVT_ID = 0) |
|
176 | - { |
|
177 | - return $this->get_all( |
|
178 | - [ |
|
179 | - [ |
|
180 | - 'EVT_ID' => $EVT_ID, |
|
181 | - 'Price_Type.PBT_ID' => ['!=', EEM_Price_Type::base_type_tax], |
|
182 | - ], |
|
183 | - 'order_by' => $this->_order_by_array_for_get_all_method(), |
|
184 | - ] |
|
185 | - ); |
|
186 | - } |
|
168 | + /** |
|
169 | + * retrieve all active prices for a particular event |
|
170 | + * |
|
171 | + * @param int $EVT_ID |
|
172 | + * @return array on success |
|
173 | + * @throws EE_Error |
|
174 | + */ |
|
175 | + public function get_all_event_prices($EVT_ID = 0) |
|
176 | + { |
|
177 | + return $this->get_all( |
|
178 | + [ |
|
179 | + [ |
|
180 | + 'EVT_ID' => $EVT_ID, |
|
181 | + 'Price_Type.PBT_ID' => ['!=', EEM_Price_Type::base_type_tax], |
|
182 | + ], |
|
183 | + 'order_by' => $this->_order_by_array_for_get_all_method(), |
|
184 | + ] |
|
185 | + ); |
|
186 | + } |
|
187 | 187 | |
188 | 188 | |
189 | - /** |
|
190 | - * retrieve all active global prices (that are not taxes (PBT_ID=4)) for a particular event |
|
191 | - * |
|
192 | - * @param boolean $count return count |
|
193 | - * @param bool $include_taxes |
|
194 | - * @return bool|EE_Base_Class[]|EE_PRice[] |
|
195 | - * @throws EE_Error |
|
196 | - */ |
|
197 | - public function get_all_default_prices($count = false, $include_taxes = false) |
|
198 | - { |
|
199 | - $_where = [ |
|
200 | - 'PRC_deleted' => 0, |
|
201 | - 'PRC_is_default' => 1, |
|
202 | - ]; |
|
203 | - if (! $include_taxes) { |
|
204 | - $_where['Price_Type.PBT_ID'] = ['!=', 4]; |
|
205 | - } |
|
206 | - $_query_params = [ |
|
207 | - $_where, |
|
208 | - 'order_by' => $this->_order_by_array_for_get_all_method(), |
|
209 | - ]; |
|
210 | - return $count ? $this->count([$_where]) : $this->get_all($_query_params); |
|
211 | - } |
|
189 | + /** |
|
190 | + * retrieve all active global prices (that are not taxes (PBT_ID=4)) for a particular event |
|
191 | + * |
|
192 | + * @param boolean $count return count |
|
193 | + * @param bool $include_taxes |
|
194 | + * @return bool|EE_Base_Class[]|EE_PRice[] |
|
195 | + * @throws EE_Error |
|
196 | + */ |
|
197 | + public function get_all_default_prices($count = false, $include_taxes = false) |
|
198 | + { |
|
199 | + $_where = [ |
|
200 | + 'PRC_deleted' => 0, |
|
201 | + 'PRC_is_default' => 1, |
|
202 | + ]; |
|
203 | + if (! $include_taxes) { |
|
204 | + $_where['Price_Type.PBT_ID'] = ['!=', 4]; |
|
205 | + } |
|
206 | + $_query_params = [ |
|
207 | + $_where, |
|
208 | + 'order_by' => $this->_order_by_array_for_get_all_method(), |
|
209 | + ]; |
|
210 | + return $count ? $this->count([$_where]) : $this->get_all($_query_params); |
|
211 | + } |
|
212 | 212 | |
213 | 213 | |
214 | - /** |
|
215 | - * retrieve all active global prices that are taxes |
|
216 | - * |
|
217 | - * @return bool|EE_Base_Class[]|EE_PRice[] |
|
218 | - * @throws EE_Error |
|
219 | - * @since $VID:$ |
|
220 | - */ |
|
221 | - public function getAllDefaultTaxes() |
|
222 | - { |
|
223 | - return $this->get_all( |
|
224 | - [ |
|
225 | - [ |
|
226 | - 'PRC_deleted' => 0, |
|
227 | - 'PRC_is_default' => 1, |
|
228 | - 'Price_Type.PBT_ID' => EEM_Price_Type::base_type_tax |
|
229 | - ], |
|
230 | - 'order_by' => [ |
|
231 | - 'Price_Type.PRT_order' => 'ASC', |
|
232 | - 'PRC_order' => 'ASC' |
|
233 | - ], |
|
234 | - ] |
|
235 | - ); |
|
236 | - } |
|
214 | + /** |
|
215 | + * retrieve all active global prices that are taxes |
|
216 | + * |
|
217 | + * @return bool|EE_Base_Class[]|EE_PRice[] |
|
218 | + * @throws EE_Error |
|
219 | + * @since $VID:$ |
|
220 | + */ |
|
221 | + public function getAllDefaultTaxes() |
|
222 | + { |
|
223 | + return $this->get_all( |
|
224 | + [ |
|
225 | + [ |
|
226 | + 'PRC_deleted' => 0, |
|
227 | + 'PRC_is_default' => 1, |
|
228 | + 'Price_Type.PBT_ID' => EEM_Price_Type::base_type_tax |
|
229 | + ], |
|
230 | + 'order_by' => [ |
|
231 | + 'Price_Type.PRT_order' => 'ASC', |
|
232 | + 'PRC_order' => 'ASC' |
|
233 | + ], |
|
234 | + ] |
|
235 | + ); |
|
236 | + } |
|
237 | 237 | |
238 | 238 | |
239 | - /** |
|
240 | - * retrieve all prices that are taxes |
|
241 | - * |
|
242 | - * @return EE_Base_Class[]|EE_PRice[] |
|
243 | - * @throws EE_Error |
|
244 | - * @throws InvalidArgumentException |
|
245 | - * @throws ReflectionException |
|
246 | - * @throws InvalidDataTypeException |
|
247 | - * @throws InvalidInterfaceException |
|
248 | - */ |
|
249 | - public function get_all_prices_that_are_taxes() |
|
250 | - { |
|
251 | - $taxes = []; |
|
252 | - $all_taxes = $this->get_all( |
|
253 | - [ |
|
254 | - ['Price_Type.PBT_ID' => EEM_Price_Type::base_type_tax], |
|
255 | - 'order_by' => ['Price_Type.PRT_order' => 'ASC', 'PRC_order' => 'ASC'], |
|
256 | - ] |
|
257 | - ); |
|
258 | - foreach ($all_taxes as $tax) { |
|
259 | - if ($tax instanceof EE_Price) { |
|
260 | - $taxes[ $tax->order() ][ $tax->ID() ] = $tax; |
|
261 | - } |
|
262 | - } |
|
263 | - return $taxes; |
|
264 | - } |
|
239 | + /** |
|
240 | + * retrieve all prices that are taxes |
|
241 | + * |
|
242 | + * @return EE_Base_Class[]|EE_PRice[] |
|
243 | + * @throws EE_Error |
|
244 | + * @throws InvalidArgumentException |
|
245 | + * @throws ReflectionException |
|
246 | + * @throws InvalidDataTypeException |
|
247 | + * @throws InvalidInterfaceException |
|
248 | + */ |
|
249 | + public function get_all_prices_that_are_taxes() |
|
250 | + { |
|
251 | + $taxes = []; |
|
252 | + $all_taxes = $this->get_all( |
|
253 | + [ |
|
254 | + ['Price_Type.PBT_ID' => EEM_Price_Type::base_type_tax], |
|
255 | + 'order_by' => ['Price_Type.PRT_order' => 'ASC', 'PRC_order' => 'ASC'], |
|
256 | + ] |
|
257 | + ); |
|
258 | + foreach ($all_taxes as $tax) { |
|
259 | + if ($tax instanceof EE_Price) { |
|
260 | + $taxes[ $tax->order() ][ $tax->ID() ] = $tax; |
|
261 | + } |
|
262 | + } |
|
263 | + return $taxes; |
|
264 | + } |
|
265 | 265 | |
266 | 266 | |
267 | - /** |
|
268 | - * retrieve all prices for an ticket plus default global prices, but not taxes |
|
269 | - * |
|
270 | - * @param int $TKT_ID the id of the event. If not included then we assume that this is a new ticket. |
|
271 | - * @return EE_Base_Class[]|EE_PRice[]|boolean |
|
272 | - * @throws EE_Error |
|
273 | - */ |
|
274 | - public function get_all_ticket_prices_for_admin($TKT_ID = 0) |
|
275 | - { |
|
276 | - $array_of_price_objects = []; |
|
277 | - if (empty($TKT_ID)) { |
|
278 | - // if there is no tkt, get prices with no tkt ID, are global, are not a tax, and are active |
|
279 | - // return that list |
|
280 | - $default_prices = $this->get_all_default_prices(); |
|
267 | + /** |
|
268 | + * retrieve all prices for an ticket plus default global prices, but not taxes |
|
269 | + * |
|
270 | + * @param int $TKT_ID the id of the event. If not included then we assume that this is a new ticket. |
|
271 | + * @return EE_Base_Class[]|EE_PRice[]|boolean |
|
272 | + * @throws EE_Error |
|
273 | + */ |
|
274 | + public function get_all_ticket_prices_for_admin($TKT_ID = 0) |
|
275 | + { |
|
276 | + $array_of_price_objects = []; |
|
277 | + if (empty($TKT_ID)) { |
|
278 | + // if there is no tkt, get prices with no tkt ID, are global, are not a tax, and are active |
|
279 | + // return that list |
|
280 | + $default_prices = $this->get_all_default_prices(); |
|
281 | 281 | |
282 | - if ($default_prices) { |
|
283 | - foreach ($default_prices as $price) { |
|
284 | - if ($price instanceof EE_Price) { |
|
285 | - $array_of_price_objects[ $price->type() ][] = $price; |
|
286 | - } |
|
287 | - } |
|
288 | - return $array_of_price_objects; |
|
289 | - } |
|
290 | - return []; |
|
291 | - } |
|
292 | - $ticket_prices = $this->get_all( |
|
293 | - [ |
|
294 | - [ |
|
295 | - 'TKT_ID' => $TKT_ID, |
|
296 | - 'PRC_deleted' => 0, |
|
297 | - ], |
|
298 | - 'order_by' => ['PRC_order' => 'ASC'], |
|
299 | - ] |
|
300 | - ); |
|
282 | + if ($default_prices) { |
|
283 | + foreach ($default_prices as $price) { |
|
284 | + if ($price instanceof EE_Price) { |
|
285 | + $array_of_price_objects[ $price->type() ][] = $price; |
|
286 | + } |
|
287 | + } |
|
288 | + return $array_of_price_objects; |
|
289 | + } |
|
290 | + return []; |
|
291 | + } |
|
292 | + $ticket_prices = $this->get_all( |
|
293 | + [ |
|
294 | + [ |
|
295 | + 'TKT_ID' => $TKT_ID, |
|
296 | + 'PRC_deleted' => 0, |
|
297 | + ], |
|
298 | + 'order_by' => ['PRC_order' => 'ASC'], |
|
299 | + ] |
|
300 | + ); |
|
301 | 301 | |
302 | - if (! empty($ticket_prices)) { |
|
303 | - foreach ($ticket_prices as $price) { |
|
304 | - if ($price instanceof EE_Price) { |
|
305 | - $array_of_price_objects[ $price->type() ][] = $price; |
|
306 | - } |
|
307 | - } |
|
308 | - return $array_of_price_objects; |
|
309 | - } |
|
310 | - return false; |
|
311 | - } |
|
302 | + if (! empty($ticket_prices)) { |
|
303 | + foreach ($ticket_prices as $price) { |
|
304 | + if ($price instanceof EE_Price) { |
|
305 | + $array_of_price_objects[ $price->type() ][] = $price; |
|
306 | + } |
|
307 | + } |
|
308 | + return $array_of_price_objects; |
|
309 | + } |
|
310 | + return false; |
|
311 | + } |
|
312 | 312 | |
313 | 313 | |
314 | - /** |
|
315 | - * _sort_event_prices_by_type |
|
316 | - * |
|
317 | - * @param EE_Price $price_a |
|
318 | - * @param EE_Price $price_b |
|
319 | - * @return bool false on fail |
|
320 | - */ |
|
321 | - public function _sort_event_prices_by_type(EE_Price $price_a, EE_Price $price_b) |
|
322 | - { |
|
323 | - if ($price_a->type_obj()->order() === $price_b->type_obj()->order()) { |
|
324 | - return $this->_sort_event_prices_by_order($price_a, $price_b); |
|
325 | - } |
|
326 | - return $price_a->type_obj()->order() < $price_b->type_obj()->order() ? -1 : 1; |
|
327 | - } |
|
314 | + /** |
|
315 | + * _sort_event_prices_by_type |
|
316 | + * |
|
317 | + * @param EE_Price $price_a |
|
318 | + * @param EE_Price $price_b |
|
319 | + * @return bool false on fail |
|
320 | + */ |
|
321 | + public function _sort_event_prices_by_type(EE_Price $price_a, EE_Price $price_b) |
|
322 | + { |
|
323 | + if ($price_a->type_obj()->order() === $price_b->type_obj()->order()) { |
|
324 | + return $this->_sort_event_prices_by_order($price_a, $price_b); |
|
325 | + } |
|
326 | + return $price_a->type_obj()->order() < $price_b->type_obj()->order() ? -1 : 1; |
|
327 | + } |
|
328 | 328 | |
329 | 329 | |
330 | - /** |
|
331 | - * _sort_event_prices_by_order |
|
332 | - * |
|
333 | - * @param EE_Price $price_a |
|
334 | - * @param EE_Price $price_b |
|
335 | - * @return bool false on fail |
|
336 | - */ |
|
337 | - public function _sort_event_prices_by_order(EE_Price $price_a, EE_Price $price_b) |
|
338 | - { |
|
339 | - if ($price_a->order() === $price_b->order()) { |
|
340 | - return 0; |
|
341 | - } |
|
342 | - return $price_a->order() < $price_b->order() ? -1 : 1; |
|
343 | - } |
|
330 | + /** |
|
331 | + * _sort_event_prices_by_order |
|
332 | + * |
|
333 | + * @param EE_Price $price_a |
|
334 | + * @param EE_Price $price_b |
|
335 | + * @return bool false on fail |
|
336 | + */ |
|
337 | + public function _sort_event_prices_by_order(EE_Price $price_a, EE_Price $price_b) |
|
338 | + { |
|
339 | + if ($price_a->order() === $price_b->order()) { |
|
340 | + return 0; |
|
341 | + } |
|
342 | + return $price_a->order() < $price_b->order() ? -1 : 1; |
|
343 | + } |
|
344 | 344 | |
345 | 345 | |
346 | - /** |
|
347 | - * get all prices of a specific type |
|
348 | - * |
|
349 | - * @param int $type - PRT_ID |
|
350 | - * @return EE_Base_Class[]|EE_PRice[] |
|
351 | - * @throws EE_Error |
|
352 | - */ |
|
353 | - public function get_all_prices_that_are_type($type = 0) |
|
354 | - { |
|
355 | - return $this->get_all( |
|
356 | - [ |
|
357 | - [ |
|
358 | - 'PRT_ID' => $type, |
|
359 | - ], |
|
360 | - 'order_by' => $this->_order_by_array_for_get_all_method(), |
|
361 | - ] |
|
362 | - ); |
|
363 | - } |
|
346 | + /** |
|
347 | + * get all prices of a specific type |
|
348 | + * |
|
349 | + * @param int $type - PRT_ID |
|
350 | + * @return EE_Base_Class[]|EE_PRice[] |
|
351 | + * @throws EE_Error |
|
352 | + */ |
|
353 | + public function get_all_prices_that_are_type($type = 0) |
|
354 | + { |
|
355 | + return $this->get_all( |
|
356 | + [ |
|
357 | + [ |
|
358 | + 'PRT_ID' => $type, |
|
359 | + ], |
|
360 | + 'order_by' => $this->_order_by_array_for_get_all_method(), |
|
361 | + ] |
|
362 | + ); |
|
363 | + } |
|
364 | 364 | |
365 | 365 | |
366 | - /** |
|
367 | - * Returns an array of the normal 'order_by' query parameter provided to the get_all query. |
|
368 | - * Of course you don't have to use it, but this is the order we usually want to sort prices by |
|
369 | - * |
|
370 | - * @return array which can be used like so: $this->get_all(array(array(...where |
|
371 | - * stuff...),'order_by'=>$this->_order_by_array_for_get_all_method())); |
|
372 | - */ |
|
373 | - public function _order_by_array_for_get_all_method() |
|
374 | - { |
|
375 | - return [ |
|
376 | - 'PRC_order' => 'ASC', |
|
377 | - 'Price_Type.PRT_order' => 'ASC', |
|
378 | - 'PRC_ID' => 'ASC', |
|
379 | - ]; |
|
380 | - } |
|
366 | + /** |
|
367 | + * Returns an array of the normal 'order_by' query parameter provided to the get_all query. |
|
368 | + * Of course you don't have to use it, but this is the order we usually want to sort prices by |
|
369 | + * |
|
370 | + * @return array which can be used like so: $this->get_all(array(array(...where |
|
371 | + * stuff...),'order_by'=>$this->_order_by_array_for_get_all_method())); |
|
372 | + */ |
|
373 | + public function _order_by_array_for_get_all_method() |
|
374 | + { |
|
375 | + return [ |
|
376 | + 'PRC_order' => 'ASC', |
|
377 | + 'Price_Type.PRT_order' => 'ASC', |
|
378 | + 'PRC_ID' => 'ASC', |
|
379 | + ]; |
|
380 | + } |
|
381 | 381 | } |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | */ |
30 | 30 | protected function __construct($timezone) |
31 | 31 | { |
32 | - require_once(EE_MODELS . 'EEM_Price_Type.model.php'); |
|
32 | + require_once(EE_MODELS.'EEM_Price_Type.model.php'); |
|
33 | 33 | $this->singular_item = __('Price', 'event_espresso'); |
34 | 34 | $this->plural_item = __('Prices', 'event_espresso'); |
35 | 35 | |
@@ -116,23 +116,23 @@ discard block |
||
116 | 116 | 'WP_User' => new EE_Belongs_To_Relation(), |
117 | 117 | ]; |
118 | 118 | // this model is generally available for reading |
119 | - $this->_cap_restriction_generators[ EEM_Base::caps_read ] = |
|
119 | + $this->_cap_restriction_generators[EEM_Base::caps_read] = |
|
120 | 120 | new EE_Restriction_Generator_Default_Public( |
121 | 121 | 'PRC_is_default', |
122 | 122 | 'Ticket.Datetime.Event' |
123 | 123 | ); |
124 | 124 | // account for default tickets in the caps |
125 | - $this->_cap_restriction_generators[ EEM_Base::caps_read_admin ] = |
|
125 | + $this->_cap_restriction_generators[EEM_Base::caps_read_admin] = |
|
126 | 126 | new EE_Restriction_Generator_Default_Protected( |
127 | 127 | 'PRC_is_default', |
128 | 128 | 'Ticket.Datetime.Event' |
129 | 129 | ); |
130 | - $this->_cap_restriction_generators[ EEM_Base::caps_edit ] = |
|
130 | + $this->_cap_restriction_generators[EEM_Base::caps_edit] = |
|
131 | 131 | new EE_Restriction_Generator_Default_Protected( |
132 | 132 | 'PRC_is_default', |
133 | 133 | 'Ticket.Datetime.Event' |
134 | 134 | ); |
135 | - $this->_cap_restriction_generators[ EEM_Base::caps_delete ] = |
|
135 | + $this->_cap_restriction_generators[EEM_Base::caps_delete] = |
|
136 | 136 | new EE_Restriction_Generator_Default_Protected( |
137 | 137 | 'PRC_is_default', |
138 | 138 | 'Ticket.Datetime.Event' |
@@ -200,7 +200,7 @@ discard block |
||
200 | 200 | 'PRC_deleted' => 0, |
201 | 201 | 'PRC_is_default' => 1, |
202 | 202 | ]; |
203 | - if (! $include_taxes) { |
|
203 | + if ( ! $include_taxes) { |
|
204 | 204 | $_where['Price_Type.PBT_ID'] = ['!=', 4]; |
205 | 205 | } |
206 | 206 | $_query_params = [ |
@@ -257,7 +257,7 @@ discard block |
||
257 | 257 | ); |
258 | 258 | foreach ($all_taxes as $tax) { |
259 | 259 | if ($tax instanceof EE_Price) { |
260 | - $taxes[ $tax->order() ][ $tax->ID() ] = $tax; |
|
260 | + $taxes[$tax->order()][$tax->ID()] = $tax; |
|
261 | 261 | } |
262 | 262 | } |
263 | 263 | return $taxes; |
@@ -282,7 +282,7 @@ discard block |
||
282 | 282 | if ($default_prices) { |
283 | 283 | foreach ($default_prices as $price) { |
284 | 284 | if ($price instanceof EE_Price) { |
285 | - $array_of_price_objects[ $price->type() ][] = $price; |
|
285 | + $array_of_price_objects[$price->type()][] = $price; |
|
286 | 286 | } |
287 | 287 | } |
288 | 288 | return $array_of_price_objects; |
@@ -299,10 +299,10 @@ discard block |
||
299 | 299 | ] |
300 | 300 | ); |
301 | 301 | |
302 | - if (! empty($ticket_prices)) { |
|
302 | + if ( ! empty($ticket_prices)) { |
|
303 | 303 | foreach ($ticket_prices as $price) { |
304 | 304 | if ($price instanceof EE_Price) { |
305 | - $array_of_price_objects[ $price->type() ][] = $price; |
|
305 | + $array_of_price_objects[$price->type()][] = $price; |
|
306 | 306 | } |
307 | 307 | } |
308 | 308 | return $array_of_price_objects; |
@@ -25,211 +25,211 @@ |
||
25 | 25 | class DefaultPrices implements DefaultEntityGeneratorInterface |
26 | 26 | { |
27 | 27 | |
28 | - /** |
|
29 | - * @var EEM_Price |
|
30 | - */ |
|
31 | - protected $price_model; |
|
32 | - |
|
33 | - /** |
|
34 | - * @var EEM_Price_Type |
|
35 | - */ |
|
36 | - protected $price_type_model; |
|
37 | - |
|
38 | - /** |
|
39 | - * @var EE_Price[] |
|
40 | - */ |
|
41 | - protected $new_prices = []; |
|
42 | - |
|
43 | - /** |
|
44 | - * @var EE_Price[] |
|
45 | - */ |
|
46 | - protected $taxes = []; |
|
47 | - |
|
48 | - |
|
49 | - /** |
|
50 | - * @param EEM_Price $price_model |
|
51 | - * @param EEM_Price_Type $price_type_model |
|
52 | - */ |
|
53 | - public function __construct(EEM_Price $price_model, EEM_Price_Type $price_type_model) |
|
54 | - { |
|
55 | - $this->price_model = $price_model; |
|
56 | - $this->price_type_model = $price_type_model; |
|
57 | - } |
|
58 | - |
|
59 | - |
|
60 | - /** |
|
61 | - * @param EE_Ticket|EE_Base_Class $entity |
|
62 | - * @return EE_Price[] |
|
63 | - * @throws EE_Error |
|
64 | - * @throws InvalidInterfaceException |
|
65 | - * @throws ReflectionException |
|
66 | - * @since $VID:$ |
|
67 | - */ |
|
68 | - public function create(EE_Base_Class $entity): array |
|
69 | - { |
|
70 | - if (! $entity instanceof EE_Ticket) { |
|
71 | - throw new InvalidEntityException($entity, 'EE_Ticket'); |
|
72 | - } |
|
73 | - $is_free = true; |
|
74 | - $has_base_price = false; |
|
75 | - $remove_existing_relations = true; |
|
76 | - // first, let's get all of the default taxes for the site |
|
77 | - $this->taxes = $this->price_model->getAllDefaultTaxes(); |
|
78 | - // then separate taxes from the other prices for the existing default ticket prices |
|
79 | - $default_prices = $this->separateTaxesFromOtherPrices($entity->prices()); |
|
80 | - // but if that's empty, then let's get the default global prices |
|
81 | - if (empty($default_prices)) { |
|
82 | - $default_global_prices = $this->price_model->get_all_default_prices(); |
|
83 | - $default_prices = $this->separateTaxesFromOtherPrices($default_global_prices); |
|
84 | - $remove_existing_relations = false; |
|
85 | - } |
|
86 | - // then clone and apply all of the default prices |
|
87 | - [$has_base_price, $is_free] = $this->cloneDefaultPrices( |
|
88 | - $entity, |
|
89 | - $default_prices, |
|
90 | - $remove_existing_relations, |
|
91 | - $has_base_price, |
|
92 | - $is_free |
|
93 | - ); |
|
94 | - if (! $has_base_price) { |
|
95 | - $new_base_price = $this->createNewBasePrice($entity); |
|
96 | - $this->new_prices[ $new_base_price->ID() ] = $new_base_price; |
|
97 | - } |
|
98 | - $this->applyTaxes($entity, $is_free); |
|
99 | - $ticket_total = $entity->get_ticket_total_with_taxes(true); |
|
100 | - if ($ticket_total !== $entity->ticket_price()) { |
|
101 | - $entity->set_price($ticket_total); |
|
102 | - $entity->save(); |
|
103 | - } |
|
104 | - return $this->new_prices; |
|
105 | - } |
|
106 | - |
|
107 | - |
|
108 | - /** |
|
109 | - * @param EE_Ticket $ticket |
|
110 | - * @param bool $is_free |
|
111 | - * @throws EE_Error |
|
112 | - * @throws ReflectionException |
|
113 | - */ |
|
114 | - private function applyTaxes(EE_Ticket $ticket, bool $is_free) |
|
115 | - { |
|
116 | - if (! $is_free && ! empty($this->taxes)) { |
|
117 | - foreach ($this->taxes as $tax) { |
|
118 | - // assign taxes but don't duplicate them because they operate globally |
|
119 | - $ticket->set_taxable(true); |
|
120 | - $tax->_add_relation_to($ticket, 'Ticket'); |
|
121 | - } |
|
122 | - } |
|
123 | - } |
|
124 | - |
|
125 | - |
|
126 | - /** |
|
127 | - * @param EE_Ticket $ticket |
|
128 | - * @param EE_Price[] $default_prices |
|
129 | - * @param bool $remove_existing_relations |
|
130 | - * @param bool $has_base_price |
|
131 | - * @param bool $is_free |
|
132 | - * @return bool[] |
|
133 | - * @throws EE_Error |
|
134 | - * @throws ReflectionException |
|
135 | - */ |
|
136 | - private function cloneDefaultPrices( |
|
137 | - EE_Ticket $ticket, |
|
138 | - array $default_prices, |
|
139 | - bool $remove_existing_relations, |
|
140 | - bool $has_base_price, |
|
141 | - bool $is_free |
|
142 | - ): array { |
|
143 | - foreach ($default_prices as $default_price) { |
|
144 | - // duplicate the default price so that it does not get mutated |
|
145 | - $default_price_clone = clone $default_price; |
|
146 | - if ($remove_existing_relations) { |
|
147 | - $ticket->_remove_relation_to($default_price, 'Price'); |
|
148 | - } |
|
149 | - if (( |
|
150 | - // has non-zero base price |
|
151 | - $default_price_clone->is_base_price() |
|
152 | - && $default_price_clone->amount() > 0 |
|
153 | - ) |
|
154 | - || ( |
|
155 | - // or has fixed amount surcharge |
|
156 | - $default_price_clone->is_surcharge() |
|
157 | - && ! $default_price_clone->is_percent() |
|
158 | - ) |
|
159 | - ) { |
|
160 | - $is_free = false; |
|
161 | - } |
|
162 | - $is_base_price = $default_price_clone->is_base_price(); |
|
163 | - // add this price to ticket if it is a regular price modifier, ie: NOT a base price, |
|
164 | - // OR if it IS a base price but this ticket does NOT already have a base price |
|
165 | - if (! $is_base_price || ! $has_base_price) { |
|
166 | - $default_price_clone->set('PRC_ID', null); |
|
167 | - $default_price_clone->set('PRC_is_default', false); |
|
168 | - $default_price_clone->save(); |
|
169 | - $default_price_clone->_add_relation_to($ticket, 'Ticket'); |
|
170 | - $this->new_prices[ $default_price_clone->ID() ] = $default_price_clone; |
|
171 | - // then recheck that a base price has been set so that we don't add another one |
|
172 | - $has_base_price = $is_base_price ? true : $has_base_price; |
|
173 | - } |
|
174 | - } |
|
175 | - return [$has_base_price, $is_free]; |
|
176 | - } |
|
177 | - |
|
178 | - |
|
179 | - /** |
|
180 | - * @param EE_Ticket $ticket |
|
181 | - * @return EE_Price |
|
182 | - * @throws EE_Error |
|
183 | - * @throws ReflectionException |
|
184 | - */ |
|
185 | - private function createNewBasePrice(EE_Ticket $ticket): EE_Price |
|
186 | - { |
|
187 | - $new_base_price = $this->price_model->get_new_price(); |
|
188 | - $base_price_type = $this->price_type_model->get_one( |
|
189 | - [ |
|
190 | - [ |
|
191 | - 'PBT_ID' => EEM_Price_Type::base_type_base_price, |
|
192 | - ], |
|
193 | - ] |
|
194 | - ); |
|
195 | - if (! $base_price_type instanceof EE_Price_Type) { |
|
196 | - throw new RuntimeException( |
|
197 | - esc_html__( |
|
198 | - 'A valid base price type could not be retrieved from the database.', |
|
199 | - 'event_espresso' |
|
200 | - ) |
|
201 | - ); |
|
202 | - } |
|
203 | - $new_base_price->set('PRT_ID', $base_price_type->ID()); |
|
204 | - $new_base_price->set('PRC_is_default', false); |
|
205 | - $new_base_price->save(); |
|
206 | - $new_base_price->_add_relation_to($ticket, 'Ticket'); |
|
207 | - return $new_base_price; |
|
208 | - } |
|
209 | - |
|
210 | - |
|
211 | - /** |
|
212 | - * @param array $prices |
|
213 | - * @return array |
|
214 | - * @throws EE_Error |
|
215 | - * @throws ReflectionException |
|
216 | - */ |
|
217 | - private function separateTaxesFromOtherPrices(array $prices = []): array |
|
218 | - { |
|
219 | - $default_prices = []; |
|
220 | - if (is_array($prices)) { |
|
221 | - foreach ($prices as $key => $price) { |
|
222 | - if (! $price instanceof EE_Price) { |
|
223 | - throw new InvalidEntityException($price, 'EE_Price'); |
|
224 | - } |
|
225 | - // grab any taxes but don't do anything just yet |
|
226 | - if ($price->is_tax()) { |
|
227 | - $this->taxes[ $price->ID() ] = $price; |
|
228 | - continue; |
|
229 | - } |
|
230 | - $default_prices[ $price->ID() ] = $price; |
|
231 | - } |
|
232 | - } |
|
233 | - return $default_prices; |
|
234 | - } |
|
28 | + /** |
|
29 | + * @var EEM_Price |
|
30 | + */ |
|
31 | + protected $price_model; |
|
32 | + |
|
33 | + /** |
|
34 | + * @var EEM_Price_Type |
|
35 | + */ |
|
36 | + protected $price_type_model; |
|
37 | + |
|
38 | + /** |
|
39 | + * @var EE_Price[] |
|
40 | + */ |
|
41 | + protected $new_prices = []; |
|
42 | + |
|
43 | + /** |
|
44 | + * @var EE_Price[] |
|
45 | + */ |
|
46 | + protected $taxes = []; |
|
47 | + |
|
48 | + |
|
49 | + /** |
|
50 | + * @param EEM_Price $price_model |
|
51 | + * @param EEM_Price_Type $price_type_model |
|
52 | + */ |
|
53 | + public function __construct(EEM_Price $price_model, EEM_Price_Type $price_type_model) |
|
54 | + { |
|
55 | + $this->price_model = $price_model; |
|
56 | + $this->price_type_model = $price_type_model; |
|
57 | + } |
|
58 | + |
|
59 | + |
|
60 | + /** |
|
61 | + * @param EE_Ticket|EE_Base_Class $entity |
|
62 | + * @return EE_Price[] |
|
63 | + * @throws EE_Error |
|
64 | + * @throws InvalidInterfaceException |
|
65 | + * @throws ReflectionException |
|
66 | + * @since $VID:$ |
|
67 | + */ |
|
68 | + public function create(EE_Base_Class $entity): array |
|
69 | + { |
|
70 | + if (! $entity instanceof EE_Ticket) { |
|
71 | + throw new InvalidEntityException($entity, 'EE_Ticket'); |
|
72 | + } |
|
73 | + $is_free = true; |
|
74 | + $has_base_price = false; |
|
75 | + $remove_existing_relations = true; |
|
76 | + // first, let's get all of the default taxes for the site |
|
77 | + $this->taxes = $this->price_model->getAllDefaultTaxes(); |
|
78 | + // then separate taxes from the other prices for the existing default ticket prices |
|
79 | + $default_prices = $this->separateTaxesFromOtherPrices($entity->prices()); |
|
80 | + // but if that's empty, then let's get the default global prices |
|
81 | + if (empty($default_prices)) { |
|
82 | + $default_global_prices = $this->price_model->get_all_default_prices(); |
|
83 | + $default_prices = $this->separateTaxesFromOtherPrices($default_global_prices); |
|
84 | + $remove_existing_relations = false; |
|
85 | + } |
|
86 | + // then clone and apply all of the default prices |
|
87 | + [$has_base_price, $is_free] = $this->cloneDefaultPrices( |
|
88 | + $entity, |
|
89 | + $default_prices, |
|
90 | + $remove_existing_relations, |
|
91 | + $has_base_price, |
|
92 | + $is_free |
|
93 | + ); |
|
94 | + if (! $has_base_price) { |
|
95 | + $new_base_price = $this->createNewBasePrice($entity); |
|
96 | + $this->new_prices[ $new_base_price->ID() ] = $new_base_price; |
|
97 | + } |
|
98 | + $this->applyTaxes($entity, $is_free); |
|
99 | + $ticket_total = $entity->get_ticket_total_with_taxes(true); |
|
100 | + if ($ticket_total !== $entity->ticket_price()) { |
|
101 | + $entity->set_price($ticket_total); |
|
102 | + $entity->save(); |
|
103 | + } |
|
104 | + return $this->new_prices; |
|
105 | + } |
|
106 | + |
|
107 | + |
|
108 | + /** |
|
109 | + * @param EE_Ticket $ticket |
|
110 | + * @param bool $is_free |
|
111 | + * @throws EE_Error |
|
112 | + * @throws ReflectionException |
|
113 | + */ |
|
114 | + private function applyTaxes(EE_Ticket $ticket, bool $is_free) |
|
115 | + { |
|
116 | + if (! $is_free && ! empty($this->taxes)) { |
|
117 | + foreach ($this->taxes as $tax) { |
|
118 | + // assign taxes but don't duplicate them because they operate globally |
|
119 | + $ticket->set_taxable(true); |
|
120 | + $tax->_add_relation_to($ticket, 'Ticket'); |
|
121 | + } |
|
122 | + } |
|
123 | + } |
|
124 | + |
|
125 | + |
|
126 | + /** |
|
127 | + * @param EE_Ticket $ticket |
|
128 | + * @param EE_Price[] $default_prices |
|
129 | + * @param bool $remove_existing_relations |
|
130 | + * @param bool $has_base_price |
|
131 | + * @param bool $is_free |
|
132 | + * @return bool[] |
|
133 | + * @throws EE_Error |
|
134 | + * @throws ReflectionException |
|
135 | + */ |
|
136 | + private function cloneDefaultPrices( |
|
137 | + EE_Ticket $ticket, |
|
138 | + array $default_prices, |
|
139 | + bool $remove_existing_relations, |
|
140 | + bool $has_base_price, |
|
141 | + bool $is_free |
|
142 | + ): array { |
|
143 | + foreach ($default_prices as $default_price) { |
|
144 | + // duplicate the default price so that it does not get mutated |
|
145 | + $default_price_clone = clone $default_price; |
|
146 | + if ($remove_existing_relations) { |
|
147 | + $ticket->_remove_relation_to($default_price, 'Price'); |
|
148 | + } |
|
149 | + if (( |
|
150 | + // has non-zero base price |
|
151 | + $default_price_clone->is_base_price() |
|
152 | + && $default_price_clone->amount() > 0 |
|
153 | + ) |
|
154 | + || ( |
|
155 | + // or has fixed amount surcharge |
|
156 | + $default_price_clone->is_surcharge() |
|
157 | + && ! $default_price_clone->is_percent() |
|
158 | + ) |
|
159 | + ) { |
|
160 | + $is_free = false; |
|
161 | + } |
|
162 | + $is_base_price = $default_price_clone->is_base_price(); |
|
163 | + // add this price to ticket if it is a regular price modifier, ie: NOT a base price, |
|
164 | + // OR if it IS a base price but this ticket does NOT already have a base price |
|
165 | + if (! $is_base_price || ! $has_base_price) { |
|
166 | + $default_price_clone->set('PRC_ID', null); |
|
167 | + $default_price_clone->set('PRC_is_default', false); |
|
168 | + $default_price_clone->save(); |
|
169 | + $default_price_clone->_add_relation_to($ticket, 'Ticket'); |
|
170 | + $this->new_prices[ $default_price_clone->ID() ] = $default_price_clone; |
|
171 | + // then recheck that a base price has been set so that we don't add another one |
|
172 | + $has_base_price = $is_base_price ? true : $has_base_price; |
|
173 | + } |
|
174 | + } |
|
175 | + return [$has_base_price, $is_free]; |
|
176 | + } |
|
177 | + |
|
178 | + |
|
179 | + /** |
|
180 | + * @param EE_Ticket $ticket |
|
181 | + * @return EE_Price |
|
182 | + * @throws EE_Error |
|
183 | + * @throws ReflectionException |
|
184 | + */ |
|
185 | + private function createNewBasePrice(EE_Ticket $ticket): EE_Price |
|
186 | + { |
|
187 | + $new_base_price = $this->price_model->get_new_price(); |
|
188 | + $base_price_type = $this->price_type_model->get_one( |
|
189 | + [ |
|
190 | + [ |
|
191 | + 'PBT_ID' => EEM_Price_Type::base_type_base_price, |
|
192 | + ], |
|
193 | + ] |
|
194 | + ); |
|
195 | + if (! $base_price_type instanceof EE_Price_Type) { |
|
196 | + throw new RuntimeException( |
|
197 | + esc_html__( |
|
198 | + 'A valid base price type could not be retrieved from the database.', |
|
199 | + 'event_espresso' |
|
200 | + ) |
|
201 | + ); |
|
202 | + } |
|
203 | + $new_base_price->set('PRT_ID', $base_price_type->ID()); |
|
204 | + $new_base_price->set('PRC_is_default', false); |
|
205 | + $new_base_price->save(); |
|
206 | + $new_base_price->_add_relation_to($ticket, 'Ticket'); |
|
207 | + return $new_base_price; |
|
208 | + } |
|
209 | + |
|
210 | + |
|
211 | + /** |
|
212 | + * @param array $prices |
|
213 | + * @return array |
|
214 | + * @throws EE_Error |
|
215 | + * @throws ReflectionException |
|
216 | + */ |
|
217 | + private function separateTaxesFromOtherPrices(array $prices = []): array |
|
218 | + { |
|
219 | + $default_prices = []; |
|
220 | + if (is_array($prices)) { |
|
221 | + foreach ($prices as $key => $price) { |
|
222 | + if (! $price instanceof EE_Price) { |
|
223 | + throw new InvalidEntityException($price, 'EE_Price'); |
|
224 | + } |
|
225 | + // grab any taxes but don't do anything just yet |
|
226 | + if ($price->is_tax()) { |
|
227 | + $this->taxes[ $price->ID() ] = $price; |
|
228 | + continue; |
|
229 | + } |
|
230 | + $default_prices[ $price->ID() ] = $price; |
|
231 | + } |
|
232 | + } |
|
233 | + return $default_prices; |
|
234 | + } |
|
235 | 235 | } |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | */ |
68 | 68 | public function create(EE_Base_Class $entity): array |
69 | 69 | { |
70 | - if (! $entity instanceof EE_Ticket) { |
|
70 | + if ( ! $entity instanceof EE_Ticket) { |
|
71 | 71 | throw new InvalidEntityException($entity, 'EE_Ticket'); |
72 | 72 | } |
73 | 73 | $is_free = true; |
@@ -91,9 +91,9 @@ discard block |
||
91 | 91 | $has_base_price, |
92 | 92 | $is_free |
93 | 93 | ); |
94 | - if (! $has_base_price) { |
|
94 | + if ( ! $has_base_price) { |
|
95 | 95 | $new_base_price = $this->createNewBasePrice($entity); |
96 | - $this->new_prices[ $new_base_price->ID() ] = $new_base_price; |
|
96 | + $this->new_prices[$new_base_price->ID()] = $new_base_price; |
|
97 | 97 | } |
98 | 98 | $this->applyTaxes($entity, $is_free); |
99 | 99 | $ticket_total = $entity->get_ticket_total_with_taxes(true); |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | */ |
114 | 114 | private function applyTaxes(EE_Ticket $ticket, bool $is_free) |
115 | 115 | { |
116 | - if (! $is_free && ! empty($this->taxes)) { |
|
116 | + if ( ! $is_free && ! empty($this->taxes)) { |
|
117 | 117 | foreach ($this->taxes as $tax) { |
118 | 118 | // assign taxes but don't duplicate them because they operate globally |
119 | 119 | $ticket->set_taxable(true); |
@@ -162,12 +162,12 @@ discard block |
||
162 | 162 | $is_base_price = $default_price_clone->is_base_price(); |
163 | 163 | // add this price to ticket if it is a regular price modifier, ie: NOT a base price, |
164 | 164 | // OR if it IS a base price but this ticket does NOT already have a base price |
165 | - if (! $is_base_price || ! $has_base_price) { |
|
165 | + if ( ! $is_base_price || ! $has_base_price) { |
|
166 | 166 | $default_price_clone->set('PRC_ID', null); |
167 | 167 | $default_price_clone->set('PRC_is_default', false); |
168 | 168 | $default_price_clone->save(); |
169 | 169 | $default_price_clone->_add_relation_to($ticket, 'Ticket'); |
170 | - $this->new_prices[ $default_price_clone->ID() ] = $default_price_clone; |
|
170 | + $this->new_prices[$default_price_clone->ID()] = $default_price_clone; |
|
171 | 171 | // then recheck that a base price has been set so that we don't add another one |
172 | 172 | $has_base_price = $is_base_price ? true : $has_base_price; |
173 | 173 | } |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | ], |
193 | 193 | ] |
194 | 194 | ); |
195 | - if (! $base_price_type instanceof EE_Price_Type) { |
|
195 | + if ( ! $base_price_type instanceof EE_Price_Type) { |
|
196 | 196 | throw new RuntimeException( |
197 | 197 | esc_html__( |
198 | 198 | 'A valid base price type could not be retrieved from the database.', |
@@ -219,15 +219,15 @@ discard block |
||
219 | 219 | $default_prices = []; |
220 | 220 | if (is_array($prices)) { |
221 | 221 | foreach ($prices as $key => $price) { |
222 | - if (! $price instanceof EE_Price) { |
|
222 | + if ( ! $price instanceof EE_Price) { |
|
223 | 223 | throw new InvalidEntityException($price, 'EE_Price'); |
224 | 224 | } |
225 | 225 | // grab any taxes but don't do anything just yet |
226 | 226 | if ($price->is_tax()) { |
227 | - $this->taxes[ $price->ID() ] = $price; |
|
227 | + $this->taxes[$price->ID()] = $price; |
|
228 | 228 | continue; |
229 | 229 | } |
230 | - $default_prices[ $price->ID() ] = $price; |
|
230 | + $default_prices[$price->ID()] = $price; |
|
231 | 231 | } |
232 | 232 | } |
233 | 233 | return $default_prices; |
@@ -22,66 +22,66 @@ |
||
22 | 22 | class DefaultTickets implements DefaultEntityGeneratorInterface |
23 | 23 | { |
24 | 24 | |
25 | - /** |
|
26 | - * @var DefaultPrices $default_prices |
|
27 | - */ |
|
28 | - protected $default_prices; |
|
25 | + /** |
|
26 | + * @var DefaultPrices $default_prices |
|
27 | + */ |
|
28 | + protected $default_prices; |
|
29 | 29 | |
30 | - /** |
|
31 | - * @var EEM_Ticket $ticket_model |
|
32 | - */ |
|
33 | - protected $ticket_model; |
|
30 | + /** |
|
31 | + * @var EEM_Ticket $ticket_model |
|
32 | + */ |
|
33 | + protected $ticket_model; |
|
34 | 34 | |
35 | 35 | |
36 | - /** |
|
37 | - * @param DefaultPrices $default_prices |
|
38 | - * @param EEM_Ticket $ticket_model |
|
39 | - */ |
|
40 | - public function __construct(DefaultPrices $default_prices, EEM_Ticket $ticket_model) |
|
41 | - { |
|
42 | - $this->default_prices = $default_prices; |
|
43 | - $this->ticket_model = $ticket_model; |
|
44 | - } |
|
36 | + /** |
|
37 | + * @param DefaultPrices $default_prices |
|
38 | + * @param EEM_Ticket $ticket_model |
|
39 | + */ |
|
40 | + public function __construct(DefaultPrices $default_prices, EEM_Ticket $ticket_model) |
|
41 | + { |
|
42 | + $this->default_prices = $default_prices; |
|
43 | + $this->ticket_model = $ticket_model; |
|
44 | + } |
|
45 | 45 | |
46 | 46 | |
47 | - /** |
|
48 | - * @param EE_Datetime|EE_Base_Class $entity |
|
49 | - * @return EE_Ticket[] |
|
50 | - * @throws EE_Error |
|
51 | - * @throws InvalidEntityException |
|
52 | - * @throws ReflectionException |
|
53 | - * @since $VID:$ |
|
54 | - */ |
|
55 | - public function create(EE_Base_Class $entity): array |
|
56 | - { |
|
57 | - if (! $entity instanceof EE_Datetime) { |
|
58 | - throw new InvalidEntityException($entity, 'EE_Datetime'); |
|
59 | - } |
|
60 | - $new_tickets = []; |
|
61 | - $default_tickets = $this->ticket_model->get_all_default_tickets(); |
|
62 | - if (is_array($default_tickets)) { |
|
63 | - foreach ($default_tickets as $default_ticket) { |
|
64 | - if (! $default_ticket instanceof EE_Ticket) { |
|
65 | - throw new InvalidEntityException($default_ticket, 'EE_Ticket'); |
|
66 | - } |
|
67 | - $existing_default_prices = $default_ticket->prices(); |
|
68 | - // clone ticket, strip out ID, then save to get a new ID |
|
69 | - $default_ticket_clone = clone $default_ticket; |
|
70 | - $default_ticket_clone->set('TKT_ID', null); |
|
71 | - $default_ticket_clone->set('TKT_is_default', false); |
|
72 | - $default_ticket_clone->save(); |
|
73 | - $default_ticket_clone->_add_relation_to($entity, 'Datetime'); |
|
74 | - // temporarily adding relations to existing prices, but these will be cloned and removed |
|
75 | - // when passed to DefaultPrices::create() below so that they the clones can be freely mutated |
|
76 | - foreach ($existing_default_prices as $existing_default_price) { |
|
77 | - if ($existing_default_price instanceof EE_Price) { |
|
78 | - $existing_default_price->_add_relation_to($default_ticket_clone, 'Ticket'); |
|
79 | - } |
|
80 | - } |
|
81 | - $this->default_prices->create($default_ticket_clone); |
|
82 | - $new_tickets[ $default_ticket_clone->ID() ] = $default_ticket_clone; |
|
83 | - } |
|
84 | - } |
|
85 | - return $new_tickets; |
|
86 | - } |
|
47 | + /** |
|
48 | + * @param EE_Datetime|EE_Base_Class $entity |
|
49 | + * @return EE_Ticket[] |
|
50 | + * @throws EE_Error |
|
51 | + * @throws InvalidEntityException |
|
52 | + * @throws ReflectionException |
|
53 | + * @since $VID:$ |
|
54 | + */ |
|
55 | + public function create(EE_Base_Class $entity): array |
|
56 | + { |
|
57 | + if (! $entity instanceof EE_Datetime) { |
|
58 | + throw new InvalidEntityException($entity, 'EE_Datetime'); |
|
59 | + } |
|
60 | + $new_tickets = []; |
|
61 | + $default_tickets = $this->ticket_model->get_all_default_tickets(); |
|
62 | + if (is_array($default_tickets)) { |
|
63 | + foreach ($default_tickets as $default_ticket) { |
|
64 | + if (! $default_ticket instanceof EE_Ticket) { |
|
65 | + throw new InvalidEntityException($default_ticket, 'EE_Ticket'); |
|
66 | + } |
|
67 | + $existing_default_prices = $default_ticket->prices(); |
|
68 | + // clone ticket, strip out ID, then save to get a new ID |
|
69 | + $default_ticket_clone = clone $default_ticket; |
|
70 | + $default_ticket_clone->set('TKT_ID', null); |
|
71 | + $default_ticket_clone->set('TKT_is_default', false); |
|
72 | + $default_ticket_clone->save(); |
|
73 | + $default_ticket_clone->_add_relation_to($entity, 'Datetime'); |
|
74 | + // temporarily adding relations to existing prices, but these will be cloned and removed |
|
75 | + // when passed to DefaultPrices::create() below so that they the clones can be freely mutated |
|
76 | + foreach ($existing_default_prices as $existing_default_price) { |
|
77 | + if ($existing_default_price instanceof EE_Price) { |
|
78 | + $existing_default_price->_add_relation_to($default_ticket_clone, 'Ticket'); |
|
79 | + } |
|
80 | + } |
|
81 | + $this->default_prices->create($default_ticket_clone); |
|
82 | + $new_tickets[ $default_ticket_clone->ID() ] = $default_ticket_clone; |
|
83 | + } |
|
84 | + } |
|
85 | + return $new_tickets; |
|
86 | + } |
|
87 | 87 | } |
@@ -54,14 +54,14 @@ discard block |
||
54 | 54 | */ |
55 | 55 | public function create(EE_Base_Class $entity): array |
56 | 56 | { |
57 | - if (! $entity instanceof EE_Datetime) { |
|
57 | + if ( ! $entity instanceof EE_Datetime) { |
|
58 | 58 | throw new InvalidEntityException($entity, 'EE_Datetime'); |
59 | 59 | } |
60 | 60 | $new_tickets = []; |
61 | 61 | $default_tickets = $this->ticket_model->get_all_default_tickets(); |
62 | 62 | if (is_array($default_tickets)) { |
63 | 63 | foreach ($default_tickets as $default_ticket) { |
64 | - if (! $default_ticket instanceof EE_Ticket) { |
|
64 | + if ( ! $default_ticket instanceof EE_Ticket) { |
|
65 | 65 | throw new InvalidEntityException($default_ticket, 'EE_Ticket'); |
66 | 66 | } |
67 | 67 | $existing_default_prices = $default_ticket->prices(); |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | } |
80 | 80 | } |
81 | 81 | $this->default_prices->create($default_ticket_clone); |
82 | - $new_tickets[ $default_ticket_clone->ID() ] = $default_ticket_clone; |
|
82 | + $new_tickets[$default_ticket_clone->ID()] = $default_ticket_clone; |
|
83 | 83 | } |
84 | 84 | } |
85 | 85 | return $new_tickets; |
@@ -2,226 +2,226 @@ discard block |
||
2 | 2 | /* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */ |
3 | 3 | $generated_i18n_strings = array( |
4 | 4 | // Reference: packages/ui-components/src/Pagination/constants.ts:6 |
5 | - __( '2', 'event_espresso' ), |
|
5 | + __('2', 'event_espresso'), |
|
6 | 6 | |
7 | 7 | // Reference: packages/ui-components/src/Pagination/constants.ts:7 |
8 | - __( '6', 'event_espresso' ), |
|
8 | + __('6', 'event_espresso'), |
|
9 | 9 | |
10 | 10 | // Reference: packages/ui-components/src/Pagination/constants.ts:8 |
11 | - __( '12', 'event_espresso' ), |
|
11 | + __('12', 'event_espresso'), |
|
12 | 12 | |
13 | 13 | // Reference: packages/ui-components/src/Pagination/constants.ts:9 |
14 | - __( '24', 'event_espresso' ), |
|
14 | + __('24', 'event_espresso'), |
|
15 | 15 | |
16 | 16 | // Reference: packages/ui-components/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:12 |
23 | - __( 'Order by', 'event_espresso' ), |
|
23 | + __('Order by', 'event_espresso'), |
|
24 | 24 | |
25 | 25 | // Reference: domains/blocks/src/components/RegStatusControl.tsx:17 |
26 | 26 | // Reference: domains/blocks/src/event-attendees/controls/SelectStatus.tsx:13 |
27 | - __( 'Select Registration Status', 'event_espresso' ), |
|
27 | + __('Select Registration Status', 'event_espresso'), |
|
28 | 28 | |
29 | 29 | // Reference: domains/blocks/src/components/SortOrderControl.tsx:14 |
30 | - __( 'Ascending', 'event_espresso' ), |
|
30 | + __('Ascending', 'event_espresso'), |
|
31 | 31 | |
32 | 32 | // Reference: domains/blocks/src/components/SortOrderControl.tsx:18 |
33 | - __( 'Descending', 'event_espresso' ), |
|
33 | + __('Descending', 'event_espresso'), |
|
34 | 34 | |
35 | 35 | // Reference: domains/blocks/src/components/SortOrderControl.tsx:24 |
36 | - __( 'Sort order:', 'event_espresso' ), |
|
36 | + __('Sort order:', 'event_espresso'), |
|
37 | 37 | |
38 | 38 | // Reference: domains/blocks/src/event-attendees/AttendeesDisplay.tsx:41 |
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:47 |
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:53 |
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:12 |
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:17 |
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:18 |
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:29 |
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:34 |
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:27 |
64 | - __( 'Display Gravatar', 'event_espresso' ), |
|
64 | + __('Display Gravatar', 'event_espresso'), |
|
65 | 65 | |
66 | 66 | // Reference: domains/blocks/src/event-attendees/controls/GravatarSettings.tsx:32 |
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:33 |
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:38 |
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:22 |
76 | - __( 'Select Datetime', 'event_espresso' ), |
|
76 | + __('Select Datetime', 'event_espresso'), |
|
77 | 77 | |
78 | 78 | // Reference: domains/blocks/src/event-attendees/controls/SelectEvent.tsx:22 |
79 | - __( 'Select Event', 'event_espresso' ), |
|
79 | + __('Select Event', 'event_espresso'), |
|
80 | 80 | |
81 | 81 | // Reference: domains/blocks/src/event-attendees/controls/SelectOrderBy.tsx:11 |
82 | - __( 'Attendee id', 'event_espresso' ), |
|
82 | + __('Attendee id', 'event_espresso'), |
|
83 | 83 | |
84 | 84 | // Reference: domains/blocks/src/event-attendees/controls/SelectOrderBy.tsx:15 |
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:19 |
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:23 |
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:27 |
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:41 |
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:22 |
100 | - __( 'Select Ticket', 'event_espresso' ), |
|
100 | + __('Select Ticket', 'event_espresso'), |
|
101 | 101 | |
102 | 102 | // Reference: domains/blocks/src/event-attendees/controls/index.tsx:21 |
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:36 |
106 | - __( 'Gravatar Setttings', 'event_espresso' ), |
|
106 | + __('Gravatar Setttings', 'event_espresso'), |
|
107 | 107 | |
108 | 108 | // Reference: domains/blocks/src/event-attendees/controls/index.tsx:39 |
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 | - __( 'Error', 'event_espresso' ), |
|
130 | + __('Error', 'event_espresso'), |
|
131 | 131 | |
132 | 132 | // Reference: domains/blocks/src/services/utils.ts:26 |
133 | 133 | // Reference: packages/ui-components/src/SimpleEntityList/EntityTemplate.tsx:16 |
134 | - __( 'Select…', 'event_espresso' ), |
|
134 | + __('Select…', 'event_espresso'), |
|
135 | 135 | |
136 | 136 | // Reference: domains/eventEditor/src/ui/EventDescription.tsx:32 |
137 | - __( 'Event Description', 'event_espresso' ), |
|
137 | + __('Event Description', 'event_espresso'), |
|
138 | 138 | |
139 | 139 | // Reference: domains/eventEditor/src/ui/EventRegistrationOptions/ActiveStatus.tsx:22 |
140 | - __( 'Active status', 'event_espresso' ), |
|
140 | + __('Active status', 'event_espresso'), |
|
141 | 141 | |
142 | 142 | // Reference: domains/eventEditor/src/ui/EventRegistrationOptions/AltRegPage.tsx:14 |
143 | - __( 'Alternative Registration Page', 'event_espresso' ), |
|
143 | + __('Alternative Registration Page', 'event_espresso'), |
|
144 | 144 | |
145 | 145 | // Reference: domains/eventEditor/src/ui/EventRegistrationOptions/DefaultRegistrationStatus.tsx:15 |
146 | - __( 'Default Registration Status', 'event_espresso' ), |
|
146 | + __('Default Registration Status', 'event_espresso'), |
|
147 | 147 | |
148 | 148 | // Reference: domains/eventEditor/src/ui/EventRegistrationOptions/Donations.tsx:9 |
149 | - __( 'Donations Enabled', 'event_espresso' ), |
|
149 | + __('Donations Enabled', 'event_espresso'), |
|
150 | 150 | |
151 | 151 | // Reference: domains/eventEditor/src/ui/EventRegistrationOptions/Donations.tsx:9 |
152 | - __( 'Donations Disabled', 'event_espresso' ), |
|
152 | + __('Donations Disabled', 'event_espresso'), |
|
153 | 153 | |
154 | 154 | // Reference: domains/eventEditor/src/ui/EventRegistrationOptions/EventManager.tsx:16 |
155 | - __( 'Event Manager', 'event_espresso' ), |
|
155 | + __('Event Manager', 'event_espresso'), |
|
156 | 156 | |
157 | 157 | // Reference: domains/eventEditor/src/ui/EventRegistrationOptions/EventPhoneNumber.tsx:11 |
158 | - __( 'Event Phone Number', 'event_espresso' ), |
|
158 | + __('Event Phone Number', 'event_espresso'), |
|
159 | 159 | |
160 | 160 | // Reference: domains/eventEditor/src/ui/EventRegistrationOptions/MaxRegistrations.tsx:12 |
161 | - __( 'Max Registrations per Transaction', 'event_espresso' ), |
|
161 | + __('Max Registrations per Transaction', 'event_espresso'), |
|
162 | 162 | |
163 | 163 | // Reference: domains/eventEditor/src/ui/EventRegistrationOptions/TicketSelector.tsx:9 |
164 | - __( 'Ticket Selector Enabled', 'event_espresso' ), |
|
164 | + __('Ticket Selector Enabled', 'event_espresso'), |
|
165 | 165 | |
166 | 166 | // Reference: domains/eventEditor/src/ui/EventRegistrationOptions/TicketSelector.tsx:9 |
167 | - __( 'Ticket Selector Disabled', 'event_espresso' ), |
|
167 | + __('Ticket Selector Disabled', 'event_espresso'), |
|
168 | 168 | |
169 | 169 | // Reference: domains/eventEditor/src/ui/EventRegistrationOptions/index.tsx:42 |
170 | - __( 'Registration Options', 'event_espresso' ), |
|
170 | + __('Registration Options', 'event_espresso'), |
|
171 | 171 | |
172 | 172 | // Reference: domains/eventEditor/src/ui/datetimes/DateRegistrationsLink.tsx:13 |
173 | - __( 'view ALL registrations for this date.', 'event_espresso' ), |
|
173 | + __('view ALL registrations for this date.', 'event_espresso'), |
|
174 | 174 | |
175 | 175 | // Reference: domains/eventEditor/src/ui/datetimes/dateForm/multiStep/DateFormSteps.tsx:10 |
176 | - __( 'primary information about the date', 'event_espresso' ), |
|
176 | + __('primary information about the date', 'event_espresso'), |
|
177 | 177 | |
178 | 178 | // Reference: domains/eventEditor/src/ui/datetimes/dateForm/multiStep/DateFormSteps.tsx:10 |
179 | - __( 'Date Details', 'event_espresso' ), |
|
179 | + __('Date Details', 'event_espresso'), |
|
180 | 180 | |
181 | 181 | // Reference: domains/eventEditor/src/ui/datetimes/dateForm/multiStep/DateFormSteps.tsx:11 |
182 | 182 | // Reference: domains/eventEditor/src/ui/tickets/defaultTickets/multiStep/TicketFormSteps.tsx:16 |
183 | 183 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/multiStep/TicketFormSteps.tsx:16 |
184 | - __( 'relations between tickets and dates', 'event_espresso' ), |
|
184 | + __('relations between tickets and dates', 'event_espresso'), |
|
185 | 185 | |
186 | 186 | // Reference: domains/eventEditor/src/ui/datetimes/dateForm/multiStep/DateFormSteps.tsx:11 |
187 | - __( 'Assign Tickets', 'event_espresso' ), |
|
187 | + __('Assign Tickets', 'event_espresso'), |
|
188 | 188 | |
189 | 189 | // Reference: domains/eventEditor/src/ui/datetimes/dateForm/multiStep/FooterButtons.tsx:22 |
190 | - __( 'Save and assign tickets', 'event_espresso' ), |
|
190 | + __('Save and assign tickets', 'event_espresso'), |
|
191 | 191 | |
192 | 192 | // Reference: domains/eventEditor/src/ui/datetimes/dateForm/multiStep/Modal.tsx:33 |
193 | 193 | /* translators: %s datetime id */ |
194 | - __( 'Edit datetime %s', 'event_espresso' ), |
|
194 | + __('Edit datetime %s', 'event_espresso'), |
|
195 | 195 | |
196 | 196 | // Reference: domains/eventEditor/src/ui/datetimes/dateForm/multiStep/Modal.tsx:36 |
197 | - __( 'New Datetime', 'event_espresso' ), |
|
197 | + __('New Datetime', 'event_espresso'), |
|
198 | 198 | |
199 | 199 | // Reference: domains/eventEditor/src/ui/datetimes/dateForm/useDateFormConfig.ts:106 |
200 | 200 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/details/useBulkEditFormConfig.ts:108 |
201 | 201 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.ts:115 |
202 | 202 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:108 |
203 | - __( 'Details', 'event_espresso' ), |
|
203 | + __('Details', 'event_espresso'), |
|
204 | 204 | |
205 | 205 | // Reference: domains/eventEditor/src/ui/datetimes/dateForm/useDateFormConfig.ts:110 |
206 | 206 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/details/useBulkEditFormConfig.ts:112 |
207 | 207 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/tableView/useHeaderRowGenerator.tsx:81 |
208 | - __( 'Capacity', 'event_espresso' ), |
|
208 | + __('Capacity', 'event_espresso'), |
|
209 | 209 | |
210 | 210 | // Reference: domains/eventEditor/src/ui/datetimes/dateForm/useDateFormConfig.ts:115 |
211 | - __( 'The maximum number of registrants that can attend the event at this particular date.', 'event_espresso' ), |
|
211 | + __('The maximum number of registrants that can attend the event at this particular date.', 'event_espresso'), |
|
212 | 212 | |
213 | 213 | // Reference: domains/eventEditor/src/ui/datetimes/dateForm/useDateFormConfig.ts:119 |
214 | - __( 'Set to 0 to close registration or leave blank for no limit.', 'event_espresso' ), |
|
214 | + __('Set to 0 to close registration or leave blank for no limit.', 'event_espresso'), |
|
215 | 215 | |
216 | 216 | // Reference: domains/eventEditor/src/ui/datetimes/dateForm/useDateFormConfig.ts:124 |
217 | 217 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.ts:187 |
218 | - __( 'Trash', 'event_espresso' ), |
|
218 | + __('Trash', 'event_espresso'), |
|
219 | 219 | |
220 | 220 | // Reference: domains/eventEditor/src/ui/datetimes/dateForm/useDateFormConfig.ts:70 |
221 | 221 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/details/useBulkEditFormConfig.ts:45 |
222 | 222 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.ts:79 |
223 | 223 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:45 |
224 | - __( 'Basics', 'event_espresso' ), |
|
224 | + __('Basics', 'event_espresso'), |
|
225 | 225 | |
226 | 226 | // Reference: domains/eventEditor/src/ui/datetimes/dateForm/useDateFormConfig.ts:74 |
227 | 227 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/details/useBulkEditFormConfig.ts:49 |
@@ -229,246 +229,246 @@ discard block |
||
229 | 229 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.ts:83 |
230 | 230 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:49 |
231 | 231 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/useHeaderRowGenerator.tsx:40 |
232 | - __( 'Name', 'event_espresso' ), |
|
232 | + __('Name', 'event_espresso'), |
|
233 | 233 | |
234 | 234 | // Reference: domains/eventEditor/src/ui/datetimes/dateForm/useDateFormConfig.ts:79 |
235 | 235 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/details/useBulkEditFormConfig.ts:55 |
236 | 236 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.ts:88 |
237 | 237 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:55 |
238 | 238 | // Reference: packages/tpc/src/components/table/useHeaderRowGenerator.ts:41 |
239 | - __( 'Description', 'event_espresso' ), |
|
239 | + __('Description', 'event_espresso'), |
|
240 | 240 | |
241 | 241 | // Reference: domains/eventEditor/src/ui/datetimes/dateForm/useDateFormConfig.ts:87 |
242 | 242 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/details/useBulkEditFormConfig.ts:63 |
243 | 243 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:63 |
244 | - __( 'Dates', 'event_espresso' ), |
|
244 | + __('Dates', 'event_espresso'), |
|
245 | 245 | |
246 | 246 | // Reference: domains/eventEditor/src/ui/datetimes/dateForm/useDateFormConfig.ts:91 |
247 | 247 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/tableView/useHeaderRowGenerator.tsx:51 |
248 | 248 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.ts:100 |
249 | - __( 'Start Date', 'event_espresso' ), |
|
249 | + __('Start Date', 'event_espresso'), |
|
250 | 250 | |
251 | 251 | // Reference: domains/eventEditor/src/ui/datetimes/dateForm/useDateFormConfig.ts:97 |
252 | 252 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/tableView/useHeaderRowGenerator.tsx:65 |
253 | 253 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.ts:106 |
254 | - __( 'End Date', 'event_espresso' ), |
|
254 | + __('End Date', 'event_espresso'), |
|
255 | 255 | |
256 | 256 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/DatesList.tsx:34 |
257 | 257 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/tableView/TableView.tsx:33 |
258 | - __( 'Event Dates', 'event_espresso' ), |
|
258 | + __('Event Dates', 'event_espresso'), |
|
259 | 259 | |
260 | 260 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/DatesList.tsx:37 |
261 | - __( 'loading event dates…', 'event_espresso' ), |
|
261 | + __('loading event dates…', 'event_espresso'), |
|
262 | 262 | |
263 | 263 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/DatesListButtons.tsx:23 |
264 | - __( 'Ticket Assignments', 'event_espresso' ), |
|
264 | + __('Ticket Assignments', 'event_espresso'), |
|
265 | 265 | |
266 | 266 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/actionsMenu/AssignTicketsButton.tsx:25 |
267 | - __( 'Number of related tickets', 'event_espresso' ), |
|
267 | + __('Number of related tickets', 'event_espresso'), |
|
268 | 268 | |
269 | 269 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/actionsMenu/AssignTicketsButton.tsx:26 |
270 | - __( 'There are no tickets assigned to this datetime. Please click the ticket icon to update the assignments.', 'event_espresso' ), |
|
270 | + __('There are no tickets assigned to this datetime. Please click the ticket icon to update the assignments.', 'event_espresso'), |
|
271 | 271 | |
272 | 272 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/actionsMenu/AssignTicketsButton.tsx:34 |
273 | - __( 'assign tickets', 'event_espresso' ), |
|
273 | + __('assign tickets', 'event_espresso'), |
|
274 | 274 | |
275 | 275 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/actionsMenu/dropdown/DateMainMenu.tsx:19 |
276 | - __( 'event date main menu', 'event_espresso' ), |
|
276 | + __('event date main menu', 'event_espresso'), |
|
277 | 277 | |
278 | 278 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/actionsMenu/dropdown/DateMainMenu.tsx:27 |
279 | - __( 'Permanently delete Datetime?', 'event_espresso' ), |
|
279 | + __('Permanently delete Datetime?', 'event_espresso'), |
|
280 | 280 | |
281 | 281 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/actionsMenu/dropdown/DateMainMenu.tsx:27 |
282 | - __( 'Move Datetime to Trash?', 'event_espresso' ), |
|
282 | + __('Move Datetime to Trash?', 'event_espresso'), |
|
283 | 283 | |
284 | 284 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/actionsMenu/dropdown/DateMainMenu.tsx:29 |
285 | - __( 'Are you sure you want to permanently delete this datetime? This action is permanent and can not be undone.', 'event_espresso' ), |
|
285 | + __('Are you sure you want to permanently delete this datetime? This action is permanent and can not be undone.', 'event_espresso'), |
|
286 | 286 | |
287 | 287 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/actionsMenu/dropdown/DateMainMenu.tsx:32 |
288 | - __( 'Are you sure you want to move this datetime to the trash? You can "untrash" this datetime later if you need to.', 'event_espresso' ), |
|
288 | + __('Are you sure you want to move this datetime to the trash? You can "untrash" this datetime later if you need to.', 'event_espresso'), |
|
289 | 289 | |
290 | 290 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/actionsMenu/dropdown/DateMainMenu.tsx:41 |
291 | 291 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/dropdown/DeleteTicket.tsx:40 |
292 | - __( 'delete permanently', 'event_espresso' ), |
|
292 | + __('delete permanently', 'event_espresso'), |
|
293 | 293 | |
294 | 294 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/actionsMenu/dropdown/DateMainMenu.tsx:41 |
295 | - __( 'trash datetime', 'event_espresso' ), |
|
295 | + __('trash datetime', 'event_espresso'), |
|
296 | 296 | |
297 | 297 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/actionsMenu/dropdown/DateMainMenu.tsx:52 |
298 | - __( 'edit datetime', 'event_espresso' ), |
|
298 | + __('edit datetime', 'event_espresso'), |
|
299 | 299 | |
300 | 300 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/actionsMenu/dropdown/DateMainMenu.tsx:53 |
301 | - __( 'copy datetime', 'event_espresso' ), |
|
301 | + __('copy datetime', 'event_espresso'), |
|
302 | 302 | |
303 | 303 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/actions/Actions.tsx:36 |
304 | 304 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/actions/Actions.tsx:39 |
305 | 305 | // Reference: packages/ui-components/src/bulkEdit/BulkActions.tsx:43 |
306 | - __( 'bulk actions', 'event_espresso' ), |
|
306 | + __('bulk actions', 'event_espresso'), |
|
307 | 307 | |
308 | 308 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/actions/Actions.tsx:40 |
309 | - __( 'edit datetime details', 'event_espresso' ), |
|
309 | + __('edit datetime details', 'event_espresso'), |
|
310 | 310 | |
311 | 311 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/actions/Actions.tsx:44 |
312 | - __( 'delete datetimes', 'event_espresso' ), |
|
312 | + __('delete datetimes', 'event_espresso'), |
|
313 | 313 | |
314 | 314 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/actions/Actions.tsx:44 |
315 | - __( 'trash datetimes', 'event_espresso' ), |
|
315 | + __('trash datetimes', 'event_espresso'), |
|
316 | 316 | |
317 | 317 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/delete/Delete.tsx:14 |
318 | - __( 'Are you sure you want to permanently delete these datetimes? This action can NOT be undone!', 'event_espresso' ), |
|
318 | + __('Are you sure you want to permanently delete these datetimes? This action can NOT be undone!', 'event_espresso'), |
|
319 | 319 | |
320 | 320 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/delete/Delete.tsx:15 |
321 | - __( 'Are you sure you want to trash these datetimes?', 'event_espresso' ), |
|
321 | + __('Are you sure you want to trash these datetimes?', 'event_espresso'), |
|
322 | 322 | |
323 | 323 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/delete/Delete.tsx:16 |
324 | - __( 'Delete datetimes permanently', 'event_espresso' ), |
|
324 | + __('Delete datetimes permanently', 'event_espresso'), |
|
325 | 325 | |
326 | 326 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/delete/Delete.tsx:16 |
327 | - __( 'Trash datetimes', 'event_espresso' ), |
|
327 | + __('Trash datetimes', 'event_espresso'), |
|
328 | 328 | |
329 | 329 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/details/EditDetails.tsx:21 |
330 | - __( 'Bulk edit date details', 'event_espresso' ), |
|
330 | + __('Bulk edit date details', 'event_espresso'), |
|
331 | 331 | |
332 | 332 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/details/EditDetails.tsx:22 |
333 | - __( 'any changes will be applied to ALL of the selected dates.', 'event_espresso' ), |
|
333 | + __('any changes will be applied to ALL of the selected dates.', 'event_espresso'), |
|
334 | 334 | |
335 | 335 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/details/formValidation.ts:12 |
336 | 336 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/formValidation.ts:12 |
337 | - __( 'Name must be at least three characters', 'event_espresso' ), |
|
337 | + __('Name must be at least three characters', 'event_espresso'), |
|
338 | 338 | |
339 | 339 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/details/useBulkEditFormConfig.ts:67 |
340 | 340 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:67 |
341 | - __( 'Shift dates', 'event_espresso' ), |
|
341 | + __('Shift dates', 'event_espresso'), |
|
342 | 342 | |
343 | 343 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/details/useBulkEditFormConfig.ts:92 |
344 | 344 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:92 |
345 | - __( 'earlier', 'event_espresso' ), |
|
345 | + __('earlier', 'event_espresso'), |
|
346 | 346 | |
347 | 347 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/bulkEdit/details/useBulkEditFormConfig.ts:96 |
348 | 348 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:96 |
349 | - __( 'later', 'event_espresso' ), |
|
349 | + __('later', 'event_espresso'), |
|
350 | 350 | |
351 | 351 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/cardView/DateCapacity.tsx:36 |
352 | - __( 'edit capacity (registration limit)…', 'event_espresso' ), |
|
352 | + __('edit capacity (registration limit)…', 'event_espresso'), |
|
353 | 353 | |
354 | 354 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/cardView/DateCardSidebar.tsx:38 |
355 | - __( 'Edit Event Date', 'event_espresso' ), |
|
355 | + __('Edit Event Date', 'event_espresso'), |
|
356 | 356 | |
357 | 357 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/cardView/DateCardSidebar.tsx:42 |
358 | - __( 'edit start and end dates', 'event_espresso' ), |
|
358 | + __('edit start and end dates', 'event_espresso'), |
|
359 | 359 | |
360 | 360 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/cardView/DateDetailsPanel.tsx:15 |
361 | 361 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/cardView/TicketDetailsPanel.tsx:15 |
362 | - __( 'sold', 'event_espresso' ), |
|
362 | + __('sold', 'event_espresso'), |
|
363 | 363 | |
364 | 364 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/cardView/DateDetailsPanel.tsx:28 |
365 | - __( 'capacity', 'event_espresso' ), |
|
365 | + __('capacity', 'event_espresso'), |
|
366 | 366 | |
367 | 367 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/cardView/DateDetailsPanel.tsx:34 |
368 | 368 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/cardView/TicketDetailsPanel.tsx:33 |
369 | - __( 'reg list', 'event_espresso' ), |
|
369 | + __('reg list', 'event_espresso'), |
|
370 | 370 | |
371 | 371 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/cardView/Details.tsx:42 |
372 | 372 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/cardView/Details.tsx:41 |
373 | - __( 'Edit description', 'event_espresso' ), |
|
373 | + __('Edit description', 'event_espresso'), |
|
374 | 374 | |
375 | 375 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/cardView/Details.tsx:43 |
376 | 376 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/cardView/Details.tsx:42 |
377 | - __( 'edit description…', 'event_espresso' ), |
|
377 | + __('edit description…', 'event_espresso'), |
|
378 | 378 | |
379 | 379 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/config.ts:10 |
380 | - __( 'Move Date to Trash', 'event_espresso' ), |
|
380 | + __('Move Date to Trash', 'event_espresso'), |
|
381 | 381 | |
382 | 382 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/config.ts:13 |
383 | 383 | // Reference: packages/constants/src/datetime.ts:6 |
384 | - __( 'Active', 'event_espresso' ), |
|
384 | + __('Active', 'event_espresso'), |
|
385 | 385 | |
386 | 386 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/config.ts:14 |
387 | 387 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/config.ts:13 |
388 | - __( 'Trashed', 'event_espresso' ), |
|
388 | + __('Trashed', 'event_espresso'), |
|
389 | 389 | |
390 | 390 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/config.ts:15 |
391 | 391 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/config.ts:14 |
392 | 392 | // Reference: packages/constants/src/datetime.ts:8 |
393 | - __( 'Expired', 'event_espresso' ), |
|
393 | + __('Expired', 'event_espresso'), |
|
394 | 394 | |
395 | 395 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/config.ts:16 |
396 | 396 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/config.ts:16 |
397 | - __( 'Sold Out', 'event_espresso' ), |
|
397 | + __('Sold Out', 'event_espresso'), |
|
398 | 398 | |
399 | 399 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/config.ts:17 |
400 | 400 | // Reference: packages/constants/src/datetime.ts:12 |
401 | - __( 'Upcoming', 'event_espresso' ), |
|
401 | + __('Upcoming', 'event_espresso'), |
|
402 | 402 | |
403 | 403 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/config.ts:7 |
404 | - __( 'Edit Event Date Details', 'event_espresso' ), |
|
404 | + __('Edit Event Date Details', 'event_espresso'), |
|
405 | 405 | |
406 | 406 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/config.ts:8 |
407 | - __( 'View Registrations for this Date', 'event_espresso' ), |
|
407 | + __('View Registrations for this Date', 'event_espresso'), |
|
408 | 408 | |
409 | 409 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/config.ts:9 |
410 | - __( 'Manage Ticket Assignments', 'event_espresso' ), |
|
410 | + __('Manage Ticket Assignments', 'event_espresso'), |
|
411 | 411 | |
412 | 412 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/editable/EditableName.tsx:17 |
413 | 413 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/editable/EditableName.tsx:28 |
414 | - __( 'edit title…', 'event_espresso' ), |
|
414 | + __('edit title…', 'event_espresso'), |
|
415 | 415 | |
416 | 416 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/ActiveDatesFilters.tsx:25 |
417 | 417 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/ActiveTicketsFilters.tsx:25 |
418 | - __( 'ON', 'event_espresso' ), |
|
418 | + __('ON', 'event_espresso'), |
|
419 | 419 | |
420 | 420 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:10 |
421 | - __( 'end dates only', 'event_espresso' ), |
|
421 | + __('end dates only', 'event_espresso'), |
|
422 | 422 | |
423 | 423 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:11 |
424 | - __( 'start and end dates', 'event_espresso' ), |
|
424 | + __('start and end dates', 'event_espresso'), |
|
425 | 425 | |
426 | 426 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:16 |
427 | - __( 'dates above 90% capacity', 'event_espresso' ), |
|
427 | + __('dates above 90% capacity', 'event_espresso'), |
|
428 | 428 | |
429 | 429 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:17 |
430 | - __( 'dates above 75% capacity', 'event_espresso' ), |
|
430 | + __('dates above 75% capacity', 'event_espresso'), |
|
431 | 431 | |
432 | 432 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:18 |
433 | - __( 'dates above 50% capacity', 'event_espresso' ), |
|
433 | + __('dates above 50% capacity', 'event_espresso'), |
|
434 | 434 | |
435 | 435 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:19 |
436 | - __( 'dates below 50% capacity', 'event_espresso' ), |
|
436 | + __('dates below 50% capacity', 'event_espresso'), |
|
437 | 437 | |
438 | 438 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:23 |
439 | - __( 'all dates', 'event_espresso' ), |
|
439 | + __('all dates', 'event_espresso'), |
|
440 | 440 | |
441 | 441 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:24 |
442 | - __( 'all active and upcoming', 'event_espresso' ), |
|
442 | + __('all active and upcoming', 'event_espresso'), |
|
443 | 443 | |
444 | 444 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:25 |
445 | - __( 'active dates only', 'event_espresso' ), |
|
445 | + __('active dates only', 'event_espresso'), |
|
446 | 446 | |
447 | 447 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:26 |
448 | - __( 'upcoming dates only', 'event_espresso' ), |
|
448 | + __('upcoming dates only', 'event_espresso'), |
|
449 | 449 | |
450 | 450 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:27 |
451 | - __( 'next active or upcoming only', 'event_espresso' ), |
|
451 | + __('next active or upcoming only', 'event_espresso'), |
|
452 | 452 | |
453 | 453 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:28 |
454 | - __( 'sold out dates only', 'event_espresso' ), |
|
454 | + __('sold out dates only', 'event_espresso'), |
|
455 | 455 | |
456 | 456 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:29 |
457 | - __( 'recently expired dates', 'event_espresso' ), |
|
457 | + __('recently expired dates', 'event_espresso'), |
|
458 | 458 | |
459 | 459 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:30 |
460 | - __( 'all expired dates', 'event_espresso' ), |
|
460 | + __('all expired dates', 'event_espresso'), |
|
461 | 461 | |
462 | 462 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:31 |
463 | - __( 'trashed dates only', 'event_espresso' ), |
|
463 | + __('trashed dates only', 'event_espresso'), |
|
464 | 464 | |
465 | 465 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:35 |
466 | 466 | // Reference: packages/dates/src/components/DateRangePicker/DateRangePickerLegend.tsx:9 |
467 | 467 | // Reference: packages/dates/src/components/DateRangePicker/index.tsx:43 |
468 | - __( 'start date', 'event_espresso' ), |
|
468 | + __('start date', 'event_espresso'), |
|
469 | 469 | |
470 | 470 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:36 |
471 | - __( 'name', 'event_espresso' ), |
|
471 | + __('name', 'event_espresso'), |
|
472 | 472 | |
473 | 473 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:37 |
474 | 474 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/tableView/useHeaderRowGenerator.tsx:31 |
@@ -476,138 +476,138 @@ discard block |
||
476 | 476 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/table/HeaderCell.tsx:27 |
477 | 477 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/useHeaderRowGenerator.tsx:31 |
478 | 478 | // Reference: packages/tpc/src/components/table/useHeaderRowGenerator.ts:23 |
479 | - __( 'ID', 'event_espresso' ), |
|
479 | + __('ID', 'event_espresso'), |
|
480 | 480 | |
481 | 481 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:38 |
482 | 482 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:47 |
483 | - __( 'custom order', 'event_espresso' ), |
|
483 | + __('custom order', 'event_espresso'), |
|
484 | 484 | |
485 | 485 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:42 |
486 | 486 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:51 |
487 | - __( 'display', 'event_espresso' ), |
|
487 | + __('display', 'event_espresso'), |
|
488 | 488 | |
489 | 489 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:43 |
490 | - __( 'recurrence', 'event_espresso' ), |
|
490 | + __('recurrence', 'event_espresso'), |
|
491 | 491 | |
492 | 492 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:44 |
493 | 493 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:53 |
494 | - __( 'sales', 'event_espresso' ), |
|
494 | + __('sales', 'event_espresso'), |
|
495 | 495 | |
496 | 496 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:45 |
497 | 497 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:55 |
498 | - __( 'sort by', 'event_espresso' ), |
|
498 | + __('sort by', 'event_espresso'), |
|
499 | 499 | |
500 | 500 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:46 |
501 | 501 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:54 |
502 | 502 | // Reference: packages/ee-components/src/EntityList/EntityListFilterBar.tsx:53 |
503 | - __( 'search', 'event_espresso' ), |
|
503 | + __('search', 'event_espresso'), |
|
504 | 504 | |
505 | 505 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:47 |
506 | 506 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:56 |
507 | - __( 'status', 'event_espresso' ), |
|
507 | + __('status', 'event_espresso'), |
|
508 | 508 | |
509 | 509 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/filterBar/controls/options.ts:9 |
510 | - __( 'start dates only', 'event_espresso' ), |
|
510 | + __('start dates only', 'event_espresso'), |
|
511 | 511 | |
512 | 512 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/newDateOptions/AddSingleDate.tsx:18 |
513 | 513 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/newDateOptions/NewDateModal.tsx:14 |
514 | 514 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/newDateOptions/OptionsModalButton.tsx:10 |
515 | - __( 'Add New Date', 'event_espresso' ), |
|
515 | + __('Add New Date', 'event_espresso'), |
|
516 | 516 | |
517 | 517 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/newDateOptions/AddSingleDate.tsx:18 |
518 | - __( 'Add Single Date', 'event_espresso' ), |
|
518 | + __('Add Single Date', 'event_espresso'), |
|
519 | 519 | |
520 | 520 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/newDateOptions/AddSingleDate.tsx:32 |
521 | - __( 'Add a single date that only occurs once', 'event_espresso' ), |
|
521 | + __('Add a single date that only occurs once', 'event_espresso'), |
|
522 | 522 | |
523 | 523 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/newDateOptions/AddSingleDate.tsx:34 |
524 | - __( 'Single Date', 'event_espresso' ), |
|
524 | + __('Single Date', 'event_espresso'), |
|
525 | 525 | |
526 | 526 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/tableView/useHeaderRowGenerator.tsx:106 |
527 | - __( 'Reg list', 'event_espresso' ), |
|
527 | + __('Reg list', 'event_espresso'), |
|
528 | 528 | |
529 | 529 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/tableView/useHeaderRowGenerator.tsx:107 |
530 | 530 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/useHeaderRowGenerator.tsx:111 |
531 | - __( 'Regs', 'event_espresso' ), |
|
531 | + __('Regs', 'event_espresso'), |
|
532 | 532 | |
533 | 533 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/tableView/useHeaderRowGenerator.tsx:122 |
534 | 534 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/useHeaderRowGenerator.tsx:126 |
535 | 535 | // Reference: packages/tpc/src/components/table/useHeaderRowGenerator.ts:53 |
536 | - __( 'Actions', 'event_espresso' ), |
|
536 | + __('Actions', 'event_espresso'), |
|
537 | 537 | |
538 | 538 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/tableView/useHeaderRowGenerator.tsx:52 |
539 | - __( 'Start', 'event_espresso' ), |
|
539 | + __('Start', 'event_espresso'), |
|
540 | 540 | |
541 | 541 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/tableView/useHeaderRowGenerator.tsx:66 |
542 | - __( 'End', 'event_espresso' ), |
|
542 | + __('End', 'event_espresso'), |
|
543 | 543 | |
544 | 544 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/tableView/useHeaderRowGenerator.tsx:82 |
545 | - __( 'Cap', 'event_espresso' ), |
|
545 | + __('Cap', 'event_espresso'), |
|
546 | 546 | |
547 | 547 | // Reference: domains/eventEditor/src/ui/datetimes/datesList/tableView/useHeaderRowGenerator.tsx:94 |
548 | 548 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/useHeaderRowGenerator.tsx:98 |
549 | - __( 'Sold', 'event_espresso' ), |
|
549 | + __('Sold', 'event_espresso'), |
|
550 | 550 | |
551 | 551 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/ErrorMessage.tsx:18 |
552 | - __( 'Tickets must always have at least one date assigned to them but one or more of the tickets below does not have any. |
|
553 | -Please correct the assignments for the highlighted cells.', 'event_espresso' ), |
|
552 | + __('Tickets must always have at least one date assigned to them but one or more of the tickets below does not have any. |
|
553 | +Please correct the assignments for the highlighted cells.', 'event_espresso'), |
|
554 | 554 | |
555 | 555 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/ErrorMessage.tsx:22 |
556 | - __( '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. |
|
557 | -Please correct the assignments for the highlighted cells.', 'event_espresso' ), |
|
556 | + __('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. |
|
557 | +Please correct the assignments for the highlighted cells.', 'event_espresso'), |
|
558 | 558 | |
559 | 559 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/ErrorMessage.tsx:32 |
560 | - __( 'Please Update Assignments', 'event_espresso' ), |
|
560 | + __('Please Update Assignments', 'event_espresso'), |
|
561 | 561 | |
562 | 562 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/ModalContainer.tsx:26 |
563 | - __( 'There seem to be some dates/tickets which have no tickets/dates assigned. Do you want to fix them now?', 'event_espresso' ), |
|
563 | + __('There seem to be some dates/tickets which have no tickets/dates assigned. Do you want to fix them now?', 'event_espresso'), |
|
564 | 564 | |
565 | 565 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/ModalContainer.tsx:29 |
566 | 566 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/dropdown/TicketMainMenu.tsx:31 |
567 | 567 | // Reference: packages/ui-components/src/Modal/ModalWithAlert.tsx:21 |
568 | - __( 'Alert!', 'event_espresso' ), |
|
568 | + __('Alert!', 'event_espresso'), |
|
569 | 569 | |
570 | 570 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/ModalContainer.tsx:42 |
571 | 571 | /* translators: 1 entity id, 2 entity name */ |
572 | - __( 'Ticket Assignment Manager for Datetime: %1$s - %2$s', 'event_espresso' ), |
|
572 | + __('Ticket Assignment Manager for Datetime: %1$s - %2$s', 'event_espresso'), |
|
573 | 573 | |
574 | 574 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/ModalContainer.tsx:49 |
575 | 575 | /* translators: 1 entity id, 2 entity name */ |
576 | - __( 'Ticket Assignment Manager for Ticket: %1$s - %2$s', 'event_espresso' ), |
|
576 | + __('Ticket Assignment Manager for Ticket: %1$s - %2$s', 'event_espresso'), |
|
577 | 577 | |
578 | 578 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/TicketAssignmentsManagerModal.tsx:28 |
579 | 579 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/table/Table.tsx:13 |
580 | - __( 'Ticket Assignment Manager', 'event_espresso' ), |
|
580 | + __('Ticket Assignment Manager', 'event_espresso'), |
|
581 | 581 | |
582 | 582 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/config.ts:10 |
583 | - __( 'existing relation', 'event_espresso' ), |
|
583 | + __('existing relation', 'event_espresso'), |
|
584 | 584 | |
585 | 585 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/config.ts:15 |
586 | - __( 'remove existing relation', 'event_espresso' ), |
|
586 | + __('remove existing relation', 'event_espresso'), |
|
587 | 587 | |
588 | 588 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/config.ts:20 |
589 | - __( 'add new relation', 'event_espresso' ), |
|
589 | + __('add new relation', 'event_espresso'), |
|
590 | 590 | |
591 | 591 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/config.ts:25 |
592 | - __( 'invalid relation', 'event_espresso' ), |
|
592 | + __('invalid relation', 'event_espresso'), |
|
593 | 593 | |
594 | 594 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/config.ts:29 |
595 | - __( 'no relation', 'event_espresso' ), |
|
595 | + __('no relation', 'event_espresso'), |
|
596 | 596 | |
597 | 597 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/table/BodyCell.tsx:24 |
598 | - __( 'assign ticket', 'event_espresso' ), |
|
598 | + __('assign ticket', 'event_espresso'), |
|
599 | 599 | |
600 | 600 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/table/useGetHeaderRows.tsx:15 |
601 | - __( 'Assignments', 'event_espresso' ), |
|
601 | + __('Assignments', 'event_espresso'), |
|
602 | 602 | |
603 | 603 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/table/useGetHeaderRows.tsx:16 |
604 | - __( 'Event Dates are listed below', 'event_espresso' ), |
|
604 | + __('Event Dates are listed below', 'event_espresso'), |
|
605 | 605 | |
606 | 606 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/table/useGetHeaderRows.tsx:17 |
607 | - __( 'Tickets are listed along the top', 'event_espresso' ), |
|
607 | + __('Tickets are listed along the top', 'event_espresso'), |
|
608 | 608 | |
609 | 609 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/table/useGetHeaderRows.tsx:18 |
610 | - __( 'Click the cell buttons to toggle assigments', 'event_espresso' ), |
|
610 | + __('Click the cell buttons to toggle assigments', 'event_espresso'), |
|
611 | 611 | |
612 | 612 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/components/useSubmitButtonProps.ts:29 |
613 | 613 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/prices/buttons/FooterButtons.tsx:16 |
@@ -616,983 +616,983 @@ discard block |
||
616 | 616 | // Reference: packages/tpc/src/buttons/useSubmitButtonProps.tsx:29 |
617 | 617 | // Reference: packages/ui-components/src/Modal/useSubmitButtonProps.tsx:13 |
618 | 618 | // Reference: packages/ui-components/src/Stepper/buttons/Submit.tsx:7 |
619 | - __( 'Submit', 'event_espresso' ), |
|
619 | + __('Submit', 'event_espresso'), |
|
620 | 620 | |
621 | 621 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/filters/controls/DatesByMonthControl.tsx:19 |
622 | - __( 'All Dates', 'event_espresso' ), |
|
622 | + __('All Dates', 'event_espresso'), |
|
623 | 623 | |
624 | 624 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/filters/controls/DatesByMonthControl.tsx:26 |
625 | - __( 'dates by month', 'event_espresso' ), |
|
625 | + __('dates by month', 'event_espresso'), |
|
626 | 626 | |
627 | 627 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/filters/controls/ShowExpiredTicketsControl.tsx:15 |
628 | - __( 'show expired tickets', 'event_espresso' ), |
|
628 | + __('show expired tickets', 'event_espresso'), |
|
629 | 629 | |
630 | 630 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/filters/controls/ShowTrashedDatesControl.tsx:9 |
631 | - __( 'show trashed dates', 'event_espresso' ), |
|
631 | + __('show trashed dates', 'event_espresso'), |
|
632 | 632 | |
633 | 633 | // Reference: domains/eventEditor/src/ui/ticketAssignmentsManager/filters/controls/ShowTrashedTicketsControl.tsx:15 |
634 | - __( 'show trashed tickets', 'event_espresso' ), |
|
634 | + __('show trashed tickets', 'event_espresso'), |
|
635 | 635 | |
636 | 636 | // Reference: domains/eventEditor/src/ui/tickets/TicketRegistrationsLink.tsx:13 |
637 | - __( 'total registrations.', 'event_espresso' ), |
|
637 | + __('total registrations.', 'event_espresso'), |
|
638 | 638 | |
639 | 639 | // Reference: domains/eventEditor/src/ui/tickets/TicketRegistrationsLink.tsx:14 |
640 | - __( 'view ALL registrations for this ticket.', 'event_espresso' ), |
|
640 | + __('view ALL registrations for this ticket.', 'event_espresso'), |
|
641 | 641 | |
642 | 642 | // Reference: domains/eventEditor/src/ui/tickets/defaultTickets/Container.tsx:38 |
643 | 643 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/actions/Actions.tsx:17 |
644 | - __( 'Default tickets', 'event_espresso' ), |
|
644 | + __('Default tickets', 'event_espresso'), |
|
645 | 645 | |
646 | 646 | // Reference: domains/eventEditor/src/ui/tickets/defaultTickets/multiStep/FooterButtons.tsx:26 |
647 | 647 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/multiStep/FooterButtons.tsx:38 |
648 | - __( 'Set ticket prices', 'event_espresso' ), |
|
648 | + __('Set ticket prices', 'event_espresso'), |
|
649 | 649 | |
650 | 650 | // Reference: domains/eventEditor/src/ui/tickets/defaultTickets/multiStep/FooterButtons.tsx:31 |
651 | - __( 'Skip prices - Save', 'event_espresso' ), |
|
651 | + __('Skip prices - Save', 'event_espresso'), |
|
652 | 652 | |
653 | 653 | // Reference: domains/eventEditor/src/ui/tickets/defaultTickets/multiStep/FooterButtons.tsx:37 |
654 | 654 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/multiStep/FooterButtons.tsx:63 |
655 | - __( 'Ticket details', 'event_espresso' ), |
|
655 | + __('Ticket details', 'event_espresso'), |
|
656 | 656 | |
657 | 657 | // Reference: domains/eventEditor/src/ui/tickets/defaultTickets/multiStep/FooterButtons.tsx:38 |
658 | - __( 'Save', 'event_espresso' ), |
|
658 | + __('Save', 'event_espresso'), |
|
659 | 659 | |
660 | 660 | // Reference: domains/eventEditor/src/ui/tickets/defaultTickets/multiStep/Modal.tsx:26 |
661 | 661 | /* translators: %d ticket id */ |
662 | - __( 'Edit ticket %d', 'event_espresso' ), |
|
662 | + __('Edit ticket %d', 'event_espresso'), |
|
663 | 663 | |
664 | 664 | // Reference: domains/eventEditor/src/ui/tickets/defaultTickets/multiStep/Modal.tsx:29 |
665 | 665 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/multiStep/Modal.tsx:36 |
666 | - __( 'New Ticket Details', 'event_espresso' ), |
|
666 | + __('New Ticket Details', 'event_espresso'), |
|
667 | 667 | |
668 | 668 | // Reference: domains/eventEditor/src/ui/tickets/defaultTickets/multiStep/TicketFormSteps.tsx:10 |
669 | 669 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/multiStep/TicketFormSteps.tsx:10 |
670 | - __( 'primary information about the ticket', 'event_espresso' ), |
|
670 | + __('primary information about the ticket', 'event_espresso'), |
|
671 | 671 | |
672 | 672 | // Reference: domains/eventEditor/src/ui/tickets/defaultTickets/multiStep/TicketFormSteps.tsx:10 |
673 | 673 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/multiStep/TicketFormSteps.tsx:10 |
674 | - __( 'Ticket Details', 'event_espresso' ), |
|
674 | + __('Ticket Details', 'event_espresso'), |
|
675 | 675 | |
676 | 676 | // Reference: domains/eventEditor/src/ui/tickets/defaultTickets/multiStep/TicketFormSteps.tsx:12 |
677 | 677 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/multiStep/TicketFormSteps.tsx:12 |
678 | - __( 'apply ticket price modifiers and taxes', 'event_espresso' ), |
|
678 | + __('apply ticket price modifiers and taxes', 'event_espresso'), |
|
679 | 679 | |
680 | 680 | // Reference: domains/eventEditor/src/ui/tickets/defaultTickets/multiStep/TicketFormSteps.tsx:14 |
681 | 681 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/multiStep/TicketFormSteps.tsx:14 |
682 | - __( 'Price Calculator', 'event_espresso' ), |
|
682 | + __('Price Calculator', 'event_espresso'), |
|
683 | 683 | |
684 | 684 | // Reference: domains/eventEditor/src/ui/tickets/defaultTickets/multiStep/TicketFormSteps.tsx:16 |
685 | 685 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/multiStep/TicketFormSteps.tsx:16 |
686 | - __( 'Assign Dates', 'event_espresso' ), |
|
686 | + __('Assign Dates', 'event_espresso'), |
|
687 | 687 | |
688 | 688 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/multiStep/FooterButtons.tsx:45 |
689 | - __( 'Skip prices - assign dates', 'event_espresso' ), |
|
689 | + __('Skip prices - assign dates', 'event_espresso'), |
|
690 | 690 | |
691 | 691 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/multiStep/FooterButtons.tsx:56 |
692 | - __( 'Save and assign dates', 'event_espresso' ), |
|
692 | + __('Save and assign dates', 'event_espresso'), |
|
693 | 693 | |
694 | 694 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/multiStep/Modal.tsx:33 |
695 | 695 | /* translators: %s ticket id */ |
696 | - __( 'Edit ticket %s', 'event_espresso' ), |
|
696 | + __('Edit ticket %s', 'event_espresso'), |
|
697 | 697 | |
698 | 698 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.ts:119 |
699 | 699 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:112 |
700 | - __( 'Quantity For Sale', 'event_espresso' ), |
|
700 | + __('Quantity For Sale', 'event_espresso'), |
|
701 | 701 | |
702 | 702 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.ts:125 |
703 | - __( 'The maximum number of this ticket available for sale.', 'event_espresso' ), |
|
703 | + __('The maximum number of this ticket available for sale.', 'event_espresso'), |
|
704 | 704 | |
705 | 705 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.ts:127 |
706 | - __( 'Set to 0 to stop sales, or leave blank for no limit.', 'event_espresso' ), |
|
706 | + __('Set to 0 to stop sales, or leave blank for no limit.', 'event_espresso'), |
|
707 | 707 | |
708 | 708 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.ts:132 |
709 | 709 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:121 |
710 | - __( 'Number of Uses', 'event_espresso' ), |
|
710 | + __('Number of Uses', 'event_espresso'), |
|
711 | 711 | |
712 | 712 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.ts:138 |
713 | - __( 'Controls the total number of times this ticket can be used, regardless of the number of dates it is assigned to.', 'event_espresso' ), |
|
713 | + __('Controls the total number of times this ticket can be used, regardless of the number of dates it is assigned to.', 'event_espresso'), |
|
714 | 714 | |
715 | 715 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.ts:142 |
716 | - __( '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' ), |
|
716 | + __('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'), |
|
717 | 717 | |
718 | 718 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.ts:149 |
719 | 719 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:129 |
720 | - __( 'Minimum Quantity', 'event_espresso' ), |
|
720 | + __('Minimum Quantity', 'event_espresso'), |
|
721 | 721 | |
722 | 722 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.ts:154 |
723 | - __( 'The minimum quantity that can be selected for this ticket. Use this to create ticket bundles or graduated pricing.', 'event_espresso' ), |
|
723 | + __('The minimum quantity that can be selected for this ticket. Use this to create ticket bundles or graduated pricing.', 'event_espresso'), |
|
724 | 724 | |
725 | 725 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.ts:158 |
726 | - __( 'Leave blank for no minimum.', 'event_espresso' ), |
|
726 | + __('Leave blank for no minimum.', 'event_espresso'), |
|
727 | 727 | |
728 | 728 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.ts:163 |
729 | 729 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:137 |
730 | - __( 'Maximum Quantity', 'event_espresso' ), |
|
730 | + __('Maximum Quantity', 'event_espresso'), |
|
731 | 731 | |
732 | 732 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.ts:169 |
733 | - __( 'The maximum quantity that can be selected for this ticket. Use this to create ticket bundles or graduated pricing.', 'event_espresso' ), |
|
733 | + __('The maximum quantity that can be selected for this ticket. Use this to create ticket bundles or graduated pricing.', 'event_espresso'), |
|
734 | 734 | |
735 | 735 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.ts:173 |
736 | - __( 'Leave blank for no maximum.', 'event_espresso' ), |
|
736 | + __('Leave blank for no maximum.', 'event_espresso'), |
|
737 | 737 | |
738 | 738 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.ts:178 |
739 | 739 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/useBulkEditFormConfig.ts:146 |
740 | - __( 'Required Ticket', 'event_espresso' ), |
|
740 | + __('Required Ticket', 'event_espresso'), |
|
741 | 741 | |
742 | 742 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.ts:180 |
743 | - __( 'If enabled, the ticket must be selected and will appear first in frontend ticket lists.', 'event_espresso' ), |
|
743 | + __('If enabled, the ticket must be selected and will appear first in frontend ticket lists.', 'event_espresso'), |
|
744 | 744 | |
745 | 745 | // Reference: domains/eventEditor/src/ui/tickets/ticketForm/useTicketFormConfig.ts:96 |
746 | - __( 'Ticket Sales', 'event_espresso' ), |
|
746 | + __('Ticket Sales', 'event_espresso'), |
|
747 | 747 | |
748 | 748 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/TicketsList.tsx:35 |
749 | - __( 'Available Tickets', 'event_espresso' ), |
|
749 | + __('Available Tickets', 'event_espresso'), |
|
750 | 750 | |
751 | 751 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/TicketsList.tsx:38 |
752 | - __( 'loading tickets…', 'event_espresso' ), |
|
752 | + __('loading tickets…', 'event_espresso'), |
|
753 | 753 | |
754 | 754 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/AssignDatesButton.tsx:26 |
755 | - __( 'Number of related dates', 'event_espresso' ), |
|
755 | + __('Number of related dates', 'event_espresso'), |
|
756 | 756 | |
757 | 757 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/AssignDatesButton.tsx:27 |
758 | - __( 'There are no event dates assigned to this ticket. Please click the calendar icon to update the assignments.', 'event_espresso' ), |
|
758 | + __('There are no event dates assigned to this ticket. Please click the calendar icon to update the assignments.', 'event_espresso'), |
|
759 | 759 | |
760 | 760 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/AssignDatesButton.tsx:37 |
761 | - __( 'assign dates', 'event_espresso' ), |
|
761 | + __('assign dates', 'event_espresso'), |
|
762 | 762 | |
763 | 763 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/dropdown/DeleteTicket.tsx:17 |
764 | - __( 'Permanently delete Ticket?', 'event_espresso' ), |
|
764 | + __('Permanently delete Ticket?', 'event_espresso'), |
|
765 | 765 | |
766 | 766 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/dropdown/DeleteTicket.tsx:17 |
767 | - __( 'Move Ticket to Trash?', 'event_espresso' ), |
|
767 | + __('Move Ticket to Trash?', 'event_espresso'), |
|
768 | 768 | |
769 | 769 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/dropdown/DeleteTicket.tsx:20 |
770 | - __( 'Are you sure you want to permanently delete this ticket? This action is permanent and can not be undone.', 'event_espresso' ), |
|
770 | + __('Are you sure you want to permanently delete this ticket? This action is permanent and can not be undone.', 'event_espresso'), |
|
771 | 771 | |
772 | 772 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/dropdown/DeleteTicket.tsx:21 |
773 | - __( 'Are you sure you want to move this ticket to the trash? You can "untrash" this ticket later if you need to.', 'event_espresso' ), |
|
773 | + __('Are you sure you want to move this ticket to the trash? You can "untrash" this ticket later if you need to.', 'event_espresso'), |
|
774 | 774 | |
775 | 775 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/dropdown/DeleteTicket.tsx:40 |
776 | 776 | // Reference: packages/ee-components/src/SimpleTicketCard/actions/Trash.tsx:6 |
777 | - __( 'trash ticket', 'event_espresso' ), |
|
777 | + __('trash ticket', 'event_espresso'), |
|
778 | 778 | |
779 | 779 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/dropdown/TicketMainMenu.tsx:21 |
780 | - __( 'ticket main menu', 'event_espresso' ), |
|
780 | + __('ticket main menu', 'event_espresso'), |
|
781 | 781 | |
782 | 782 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/dropdown/TicketMainMenu.tsx:37 |
783 | 783 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/prices/buttons/FooterButtons.tsx:15 |
784 | 784 | // Reference: packages/ui-components/src/Modal/useCancelButtonProps.tsx:10 |
785 | - __( 'Cancel', 'event_espresso' ), |
|
785 | + __('Cancel', 'event_espresso'), |
|
786 | 786 | |
787 | 787 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/dropdown/TicketMainMenu.tsx:46 |
788 | 788 | // Reference: packages/ee-components/src/SimpleTicketCard/actions/Edit.tsx:14 |
789 | - __( 'edit ticket', 'event_espresso' ), |
|
789 | + __('edit ticket', 'event_espresso'), |
|
790 | 790 | |
791 | 791 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/dropdown/TicketMainMenu.tsx:47 |
792 | - __( 'copy ticket', 'event_espresso' ), |
|
792 | + __('copy ticket', 'event_espresso'), |
|
793 | 793 | |
794 | 794 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/actionsMenu/dropdown/TicketMainMenu.tsx:53 |
795 | - __( 'restore', 'event_espresso' ), |
|
795 | + __('restore', 'event_espresso'), |
|
796 | 796 | |
797 | 797 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/actions/Actions.tsx:43 |
798 | - __( 'edit ticket details', 'event_espresso' ), |
|
798 | + __('edit ticket details', 'event_espresso'), |
|
799 | 799 | |
800 | 800 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/actions/Actions.tsx:47 |
801 | - __( 'delete tickets', 'event_espresso' ), |
|
801 | + __('delete tickets', 'event_espresso'), |
|
802 | 802 | |
803 | 803 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/actions/Actions.tsx:47 |
804 | - __( 'trash tickets', 'event_espresso' ), |
|
804 | + __('trash tickets', 'event_espresso'), |
|
805 | 805 | |
806 | 806 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/actions/Actions.tsx:51 |
807 | - __( 'edit ticket prices', 'event_espresso' ), |
|
807 | + __('edit ticket prices', 'event_espresso'), |
|
808 | 808 | |
809 | 809 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/delete/Delete.tsx:14 |
810 | - __( 'Are you sure you want to permanently delete these tickets? This action can NOT be undone!', 'event_espresso' ), |
|
810 | + __('Are you sure you want to permanently delete these tickets? This action can NOT be undone!', 'event_espresso'), |
|
811 | 811 | |
812 | 812 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/delete/Delete.tsx:15 |
813 | - __( 'Are you sure you want to trash these tickets?', 'event_espresso' ), |
|
813 | + __('Are you sure you want to trash these tickets?', 'event_espresso'), |
|
814 | 814 | |
815 | 815 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/delete/Delete.tsx:16 |
816 | - __( 'Delete tickets permanently', 'event_espresso' ), |
|
816 | + __('Delete tickets permanently', 'event_espresso'), |
|
817 | 817 | |
818 | 818 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/delete/Delete.tsx:16 |
819 | - __( 'Trash tickets', 'event_espresso' ), |
|
819 | + __('Trash tickets', 'event_espresso'), |
|
820 | 820 | |
821 | 821 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/EditDetails.tsx:21 |
822 | - __( 'Bulk edit ticket details', 'event_espresso' ), |
|
822 | + __('Bulk edit ticket details', 'event_espresso'), |
|
823 | 823 | |
824 | 824 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/details/EditDetails.tsx:22 |
825 | - __( 'any changes will be applied to ALL of the selected tickets.', 'event_espresso' ), |
|
825 | + __('any changes will be applied to ALL of the selected tickets.', 'event_espresso'), |
|
826 | 826 | |
827 | 827 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/prices/EditPrices.tsx:19 |
828 | - __( 'Bulk edit ticket prices', 'event_espresso' ), |
|
828 | + __('Bulk edit ticket prices', 'event_espresso'), |
|
829 | 829 | |
830 | 830 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/prices/buttons/EditModeButtons.tsx:20 |
831 | - __( 'Edit all prices together', 'event_espresso' ), |
|
831 | + __('Edit all prices together', 'event_espresso'), |
|
832 | 832 | |
833 | 833 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/prices/buttons/EditModeButtons.tsx:21 |
834 | - __( 'Edit all the selected ticket prices dynamically', 'event_espresso' ), |
|
834 | + __('Edit all the selected ticket prices dynamically', 'event_espresso'), |
|
835 | 835 | |
836 | 836 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/prices/buttons/EditModeButtons.tsx:25 |
837 | - __( 'Edit prices individually', 'event_espresso' ), |
|
837 | + __('Edit prices individually', 'event_espresso'), |
|
838 | 838 | |
839 | 839 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/prices/buttons/EditModeButtons.tsx:26 |
840 | - __( 'Edit prices for each ticket individually', 'event_espresso' ), |
|
840 | + __('Edit prices for each ticket individually', 'event_espresso'), |
|
841 | 841 | |
842 | 842 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/prices/buttons/FooterButtons.tsx:14 |
843 | 843 | // Reference: packages/ee-components/src/bulkEdit/details/Submit.tsx:34 |
844 | 844 | // Reference: packages/form/src/ResetButton.tsx:18 |
845 | 845 | // Reference: packages/tpc/src/buttons/useResetButtonProps.tsx:12 |
846 | - __( 'Reset', 'event_espresso' ), |
|
846 | + __('Reset', 'event_espresso'), |
|
847 | 847 | |
848 | 848 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/bulkEdit/prices/editSeparately/TPCInstance.tsx:26 |
849 | 849 | /* translators: %s ticket name */ |
850 | - __( 'Edit prices for Ticket: %s', 'event_espresso' ), |
|
850 | + __('Edit prices for Ticket: %s', 'event_espresso'), |
|
851 | 851 | |
852 | 852 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/cardView/TicketCardSidebar.tsx:37 |
853 | - __( 'Edit Ticket Sale Dates', 'event_espresso' ), |
|
853 | + __('Edit Ticket Sale Dates', 'event_espresso'), |
|
854 | 854 | |
855 | 855 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/cardView/TicketCardSidebar.tsx:41 |
856 | - __( 'edit ticket sales start and end dates', 'event_espresso' ), |
|
856 | + __('edit ticket sales start and end dates', 'event_espresso'), |
|
857 | 857 | |
858 | 858 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/cardView/TicketDetailsPanel.tsx:28 |
859 | - __( 'quantity', 'event_espresso' ), |
|
859 | + __('quantity', 'event_espresso'), |
|
860 | 860 | |
861 | 861 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/cardView/TicketQuantity.tsx:27 |
862 | - __( 'edit quantity of tickets available…', 'event_espresso' ), |
|
862 | + __('edit quantity of tickets available…', 'event_espresso'), |
|
863 | 863 | |
864 | 864 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/config.ts:10 |
865 | - __( 'Move Ticket to Trash', 'event_espresso' ), |
|
865 | + __('Move Ticket to Trash', 'event_espresso'), |
|
866 | 866 | |
867 | 867 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/config.ts:15 |
868 | 868 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/useHeaderRowGenerator.tsx:52 |
869 | - __( 'On Sale', 'event_espresso' ), |
|
869 | + __('On Sale', 'event_espresso'), |
|
870 | 870 | |
871 | 871 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/config.ts:17 |
872 | - __( 'Pending', 'event_espresso' ), |
|
872 | + __('Pending', 'event_espresso'), |
|
873 | 873 | |
874 | 874 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/config.ts:7 |
875 | - __( 'Edit Ticket Details', 'event_espresso' ), |
|
875 | + __('Edit Ticket Details', 'event_espresso'), |
|
876 | 876 | |
877 | 877 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/config.ts:8 |
878 | - __( 'Manage Date Assignments', 'event_espresso' ), |
|
878 | + __('Manage Date Assignments', 'event_espresso'), |
|
879 | 879 | |
880 | 880 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/config.ts:9 |
881 | 881 | // Reference: packages/tpc/src/components/table/Table.tsx:43 |
882 | - __( 'Ticket Price Calculator', 'event_espresso' ), |
|
882 | + __('Ticket Price Calculator', 'event_espresso'), |
|
883 | 883 | |
884 | 884 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/editable/EditablePrice.tsx:33 |
885 | - __( 'edit ticket total…', 'event_espresso' ), |
|
885 | + __('edit ticket total…', 'event_espresso'), |
|
886 | 886 | |
887 | 887 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/editable/EditablePrice.tsx:43 |
888 | - __( 'set price…', 'event_espresso' ), |
|
888 | + __('set price…', 'event_espresso'), |
|
889 | 889 | |
890 | 890 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/IsChainedButton.tsx:23 |
891 | - __( 'tickets list is linked to dates list and is showing tickets for above dates only', 'event_espresso' ), |
|
891 | + __('tickets list is linked to dates list and is showing tickets for above dates only', 'event_espresso'), |
|
892 | 892 | |
893 | 893 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/IsChainedButton.tsx:24 |
894 | - __( 'tickets list is unlinked and is showing tickets for all event dates', 'event_espresso' ), |
|
894 | + __('tickets list is unlinked and is showing tickets for all event dates', 'event_espresso'), |
|
895 | 895 | |
896 | 896 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:10 |
897 | - __( 'ticket sales start and end dates', 'event_espresso' ), |
|
897 | + __('ticket sales start and end dates', 'event_espresso'), |
|
898 | 898 | |
899 | 899 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:15 |
900 | - __( 'tickets with 90% or more sold', 'event_espresso' ), |
|
900 | + __('tickets with 90% or more sold', 'event_espresso'), |
|
901 | 901 | |
902 | 902 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:16 |
903 | - __( 'tickets with 75% or more sold', 'event_espresso' ), |
|
903 | + __('tickets with 75% or more sold', 'event_espresso'), |
|
904 | 904 | |
905 | 905 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:17 |
906 | - __( 'tickets with 50% or more sold', 'event_espresso' ), |
|
906 | + __('tickets with 50% or more sold', 'event_espresso'), |
|
907 | 907 | |
908 | 908 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:19 |
909 | - __( 'tickets with less than 50% sold', 'event_espresso' ), |
|
909 | + __('tickets with less than 50% sold', 'event_espresso'), |
|
910 | 910 | |
911 | 911 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:28 |
912 | - __( 'all tickets for all dates', 'event_espresso' ), |
|
912 | + __('all tickets for all dates', 'event_espresso'), |
|
913 | 913 | |
914 | 914 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:29 |
915 | - __( 'all on sale and sale pending', 'event_espresso' ), |
|
915 | + __('all on sale and sale pending', 'event_espresso'), |
|
916 | 916 | |
917 | 917 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:30 |
918 | - __( 'on sale tickets only', 'event_espresso' ), |
|
918 | + __('on sale tickets only', 'event_espresso'), |
|
919 | 919 | |
920 | 920 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:31 |
921 | - __( 'sale pending tickets only', 'event_espresso' ), |
|
921 | + __('sale pending tickets only', 'event_espresso'), |
|
922 | 922 | |
923 | 923 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:32 |
924 | - __( 'next on sale or sale pending only', 'event_espresso' ), |
|
924 | + __('next on sale or sale pending only', 'event_espresso'), |
|
925 | 925 | |
926 | 926 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:33 |
927 | - __( 'sold out tickets only', 'event_espresso' ), |
|
927 | + __('sold out tickets only', 'event_espresso'), |
|
928 | 928 | |
929 | 929 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:34 |
930 | - __( 'expired tickets only', 'event_espresso' ), |
|
930 | + __('expired tickets only', 'event_espresso'), |
|
931 | 931 | |
932 | 932 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:35 |
933 | - __( 'trashed tickets only', 'event_espresso' ), |
|
933 | + __('trashed tickets only', 'event_espresso'), |
|
934 | 934 | |
935 | 935 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:40 |
936 | - __( 'all tickets for above dates', 'event_espresso' ), |
|
936 | + __('all tickets for above dates', 'event_espresso'), |
|
937 | 937 | |
938 | 938 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:44 |
939 | - __( 'ticket sale date', 'event_espresso' ), |
|
939 | + __('ticket sale date', 'event_espresso'), |
|
940 | 940 | |
941 | 941 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:45 |
942 | - __( 'ticket name', 'event_espresso' ), |
|
942 | + __('ticket name', 'event_espresso'), |
|
943 | 943 | |
944 | 944 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:46 |
945 | - __( 'ticket ID', 'event_espresso' ), |
|
945 | + __('ticket ID', 'event_espresso'), |
|
946 | 946 | |
947 | 947 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:52 |
948 | - __( 'link', 'event_espresso' ), |
|
948 | + __('link', 'event_espresso'), |
|
949 | 949 | |
950 | 950 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:8 |
951 | - __( 'ticket sales start date only', 'event_espresso' ), |
|
951 | + __('ticket sales start date only', 'event_espresso'), |
|
952 | 952 | |
953 | 953 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/filterBar/controls/options.ts:9 |
954 | - __( 'ticket sales end date only', 'event_espresso' ), |
|
954 | + __('ticket sales end date only', 'event_espresso'), |
|
955 | 955 | |
956 | 956 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/newTicketOptions/AddSingleTicket.tsx:18 |
957 | - __( 'Add New Ticket', 'event_espresso' ), |
|
957 | + __('Add New Ticket', 'event_espresso'), |
|
958 | 958 | |
959 | 959 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/newTicketOptions/AddSingleTicket.tsx:32 |
960 | - __( 'Add a single ticket and assign the dates to it', 'event_espresso' ), |
|
960 | + __('Add a single ticket and assign the dates to it', 'event_espresso'), |
|
961 | 961 | |
962 | 962 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/newTicketOptions/AddSingleTicket.tsx:34 |
963 | - __( 'Single Ticket', 'event_espresso' ), |
|
963 | + __('Single Ticket', 'event_espresso'), |
|
964 | 964 | |
965 | 965 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/TableView.tsx:39 |
966 | - __( 'Tickets', 'event_espresso' ), |
|
966 | + __('Tickets', 'event_espresso'), |
|
967 | 967 | |
968 | 968 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/useHeaderRowGenerator.tsx:110 |
969 | - __( 'Registrations', 'event_espresso' ), |
|
969 | + __('Registrations', 'event_espresso'), |
|
970 | 970 | |
971 | 971 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/useHeaderRowGenerator.tsx:51 |
972 | - __( 'Goes on Sale', 'event_espresso' ), |
|
972 | + __('Goes on Sale', 'event_espresso'), |
|
973 | 973 | |
974 | 974 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/useHeaderRowGenerator.tsx:65 |
975 | - __( 'Sale Ends', 'event_espresso' ), |
|
975 | + __('Sale Ends', 'event_espresso'), |
|
976 | 976 | |
977 | 977 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/useHeaderRowGenerator.tsx:66 |
978 | - __( 'Ends', 'event_espresso' ), |
|
978 | + __('Ends', 'event_espresso'), |
|
979 | 979 | |
980 | 980 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/useHeaderRowGenerator.tsx:78 |
981 | - __( 'Price', 'event_espresso' ), |
|
981 | + __('Price', 'event_espresso'), |
|
982 | 982 | |
983 | 983 | // Reference: domains/eventEditor/src/ui/tickets/ticketsList/tableView/useHeaderRowGenerator.tsx:88 |
984 | - __( 'Quantity', 'event_espresso' ), |
|
984 | + __('Quantity', 'event_espresso'), |
|
985 | 985 | |
986 | 986 | // Reference: domains/wpPluginsPage/src/exitSurvey/Popup.tsx:29 |
987 | - __( 'Do you have a moment to share why you are deactivating Event Espresso?', 'event_espresso' ), |
|
987 | + __('Do you have a moment to share why you are deactivating Event Espresso?', 'event_espresso'), |
|
988 | 988 | |
989 | 989 | // Reference: domains/wpPluginsPage/src/exitSurvey/Popup.tsx:40 |
990 | - __( 'Skip', 'event_espresso' ), |
|
990 | + __('Skip', 'event_espresso'), |
|
991 | 991 | |
992 | 992 | // Reference: domains/wpPluginsPage/src/exitSurvey/Popup.tsx:42 |
993 | - __( 'Sure I\'ll help', 'event_espresso' ), |
|
993 | + __('Sure I\'ll help', 'event_espresso'), |
|
994 | 994 | |
995 | 995 | // Reference: packages/adapters/src/Pagination/Pagination.tsx:23 |
996 | - __( 'pagination', 'event_espresso' ), |
|
996 | + __('pagination', 'event_espresso'), |
|
997 | 997 | |
998 | 998 | // Reference: packages/constants/src/datetime.ts:10 |
999 | - __( 'Postponed', 'event_espresso' ), |
|
999 | + __('Postponed', 'event_espresso'), |
|
1000 | 1000 | |
1001 | 1001 | // Reference: packages/constants/src/datetime.ts:11 |
1002 | - __( 'SoldOut', 'event_espresso' ), |
|
1002 | + __('SoldOut', 'event_espresso'), |
|
1003 | 1003 | |
1004 | 1004 | // Reference: packages/constants/src/datetime.ts:7 |
1005 | 1005 | // Reference: packages/predicates/src/registration/statusOptions.ts:10 |
1006 | - __( 'Cancelled', 'event_espresso' ), |
|
1006 | + __('Cancelled', 'event_espresso'), |
|
1007 | 1007 | |
1008 | 1008 | // Reference: packages/constants/src/datetime.ts:9 |
1009 | - __( 'Inactive', 'event_espresso' ), |
|
1009 | + __('Inactive', 'event_espresso'), |
|
1010 | 1010 | |
1011 | 1011 | // Reference: packages/dates/src/components/DateRangePicker/DateRangePickerLegend.tsx:13 |
1012 | - __( 'day in range', 'event_espresso' ), |
|
1012 | + __('day in range', 'event_espresso'), |
|
1013 | 1013 | |
1014 | 1014 | // Reference: packages/dates/src/components/DateRangePicker/DateRangePickerLegend.tsx:17 |
1015 | 1015 | // Reference: packages/dates/src/components/DateRangePicker/index.tsx:61 |
1016 | - __( 'end date', 'event_espresso' ), |
|
1016 | + __('end date', 'event_espresso'), |
|
1017 | 1017 | |
1018 | 1018 | // Reference: packages/dates/src/components/DateTimePicker.tsx:13 |
1019 | 1019 | // Reference: packages/dates/src/components/TimePicker.tsx:13 |
1020 | - __( 'time', 'event_espresso' ), |
|
1020 | + __('time', 'event_espresso'), |
|
1021 | 1021 | |
1022 | 1022 | // Reference: packages/dates/src/constants.ts:5 |
1023 | - __( 'End Date & Time must be set later than the Start Date & Time', 'event_espresso' ), |
|
1023 | + __('End Date & Time must be set later than the Start Date & Time', 'event_espresso'), |
|
1024 | 1024 | |
1025 | 1025 | // Reference: packages/dates/src/constants.ts:7 |
1026 | - __( 'Start Date & Time must be set before the End Date & Time', 'event_espresso' ), |
|
1026 | + __('Start Date & Time must be set before the End Date & Time', 'event_espresso'), |
|
1027 | 1027 | |
1028 | 1028 | // Reference: packages/dates/src/utils/misc.ts:14 |
1029 | - __( 'month(s)', 'event_espresso' ), |
|
1029 | + __('month(s)', 'event_espresso'), |
|
1030 | 1030 | |
1031 | 1031 | // Reference: packages/dates/src/utils/misc.ts:15 |
1032 | - __( 'week(s)', 'event_espresso' ), |
|
1032 | + __('week(s)', 'event_espresso'), |
|
1033 | 1033 | |
1034 | 1034 | // Reference: packages/dates/src/utils/misc.ts:16 |
1035 | - __( 'day(s)', 'event_espresso' ), |
|
1035 | + __('day(s)', 'event_espresso'), |
|
1036 | 1036 | |
1037 | 1037 | // Reference: packages/dates/src/utils/misc.ts:17 |
1038 | - __( 'hour(s)', 'event_espresso' ), |
|
1038 | + __('hour(s)', 'event_espresso'), |
|
1039 | 1039 | |
1040 | 1040 | // Reference: packages/dates/src/utils/misc.ts:18 |
1041 | - __( 'minute(s)', 'event_espresso' ), |
|
1041 | + __('minute(s)', 'event_espresso'), |
|
1042 | 1042 | |
1043 | 1043 | // Reference: packages/edtr-services/src/apollo/initialization/useCacheRehydration.ts:104 |
1044 | - __( 'price types initialized', 'event_espresso' ), |
|
1044 | + __('price types initialized', 'event_espresso'), |
|
1045 | 1045 | |
1046 | 1046 | // Reference: packages/edtr-services/src/apollo/initialization/useCacheRehydration.ts:114 |
1047 | - __( 'datetimes initialized', 'event_espresso' ), |
|
1047 | + __('datetimes initialized', 'event_espresso'), |
|
1048 | 1048 | |
1049 | 1049 | // Reference: packages/edtr-services/src/apollo/initialization/useCacheRehydration.ts:124 |
1050 | - __( 'tickets initialized', 'event_espresso' ), |
|
1050 | + __('tickets initialized', 'event_espresso'), |
|
1051 | 1051 | |
1052 | 1052 | // Reference: packages/edtr-services/src/apollo/initialization/useCacheRehydration.ts:134 |
1053 | - __( 'prices initialized', 'event_espresso' ), |
|
1053 | + __('prices initialized', 'event_espresso'), |
|
1054 | 1054 | |
1055 | 1055 | // Reference: packages/edtr-services/src/apollo/mutations/useReorderEntities.ts:73 |
1056 | - __( 'reordering has been applied', 'event_espresso' ), |
|
1056 | + __('reordering has been applied', 'event_espresso'), |
|
1057 | 1057 | |
1058 | 1058 | // Reference: packages/edtr-services/src/utils/dateAndTime.ts:32 |
1059 | - __( 'End date has been set one hour after start date', 'event_espresso' ), |
|
1059 | + __('End date has been set one hour after start date', 'event_espresso'), |
|
1060 | 1060 | |
1061 | 1061 | // Reference: packages/edtr-services/src/utils/dateAndTime.ts:44 |
1062 | - __( 'Start date has been set one hour before end date', 'event_espresso' ), |
|
1062 | + __('Start date has been set one hour before end date', 'event_espresso'), |
|
1063 | 1063 | |
1064 | 1064 | // Reference: packages/edtr-services/src/utils/dateAndTime.ts:62 |
1065 | - __( 'Required', 'event_espresso' ), |
|
1065 | + __('Required', 'event_espresso'), |
|
1066 | 1066 | |
1067 | 1067 | // Reference: packages/edtr-services/src/utils/dateAndTime.ts:67 |
1068 | - __( 'Start Date is required', 'event_espresso' ), |
|
1068 | + __('Start Date is required', 'event_espresso'), |
|
1069 | 1069 | |
1070 | 1070 | // Reference: packages/edtr-services/src/utils/dateAndTime.ts:71 |
1071 | - __( 'End Date is required', 'event_espresso' ), |
|
1071 | + __('End Date is required', 'event_espresso'), |
|
1072 | 1072 | |
1073 | 1073 | // Reference: packages/ee-components/src/EntityList/EntityList.tsx:31 |
1074 | - __( 'no results found', 'event_espresso' ), |
|
1074 | + __('no results found', 'event_espresso'), |
|
1075 | 1075 | |
1076 | 1076 | // Reference: packages/ee-components/src/EntityList/EntityList.tsx:32 |
1077 | - __( 'try changing filter settings', 'event_espresso' ), |
|
1077 | + __('try changing filter settings', 'event_espresso'), |
|
1078 | 1078 | |
1079 | 1079 | // Reference: packages/ee-components/src/SimpleTicketCard/SimpleTicketCard.tsx:25 |
1080 | 1080 | // Reference: packages/ui-components/src/CalendarDateSwitcher/CalendarDateSwitcher.tsx:34 |
1081 | - __( 'starts', 'event_espresso' ), |
|
1081 | + __('starts', 'event_espresso'), |
|
1082 | 1082 | |
1083 | 1083 | // Reference: packages/ee-components/src/SimpleTicketCard/SimpleTicketCard.tsx:32 |
1084 | 1084 | // Reference: packages/ui-components/src/CalendarDateSwitcher/CalendarDateSwitcher.tsx:47 |
1085 | - __( 'ends', 'event_espresso' ), |
|
1085 | + __('ends', 'event_espresso'), |
|
1086 | 1086 | |
1087 | 1087 | // Reference: packages/ee-components/src/bulkEdit/ActionCheckbox.tsx:38 |
1088 | 1088 | /* translators: %d entity id */ |
1089 | - __( 'select entity with id %d', 'event_espresso' ), |
|
1089 | + __('select entity with id %d', 'event_espresso'), |
|
1090 | 1090 | |
1091 | 1091 | // Reference: packages/ee-components/src/bulkEdit/ActionCheckbox.tsx:41 |
1092 | - __( 'select all entities', 'event_espresso' ), |
|
1092 | + __('select all entities', 'event_espresso'), |
|
1093 | 1093 | |
1094 | 1094 | // Reference: packages/ee-components/src/bulkEdit/details/BulkEditDetails.tsx:20 |
1095 | - __( 'Note: ', 'event_espresso' ), |
|
1095 | + __('Note: ', 'event_espresso'), |
|
1096 | 1096 | |
1097 | 1097 | // Reference: packages/ee-components/src/bulkEdit/details/BulkEditDetails.tsx:20 |
1098 | - __( 'any changes will be applied to ALL of the selected entities.', 'event_espresso' ), |
|
1098 | + __('any changes will be applied to ALL of the selected entities.', 'event_espresso'), |
|
1099 | 1099 | |
1100 | 1100 | // Reference: packages/ee-components/src/bulkEdit/details/BulkEditDetails.tsx:26 |
1101 | - __( 'Bulk edit details', 'event_espresso' ), |
|
1101 | + __('Bulk edit details', 'event_espresso'), |
|
1102 | 1102 | |
1103 | 1103 | // Reference: packages/ee-components/src/bulkEdit/details/Submit.tsx:17 |
1104 | - __( 'Are you sure you want to bulk update the details?', 'event_espresso' ), |
|
1104 | + __('Are you sure you want to bulk update the details?', 'event_espresso'), |
|
1105 | 1105 | |
1106 | 1106 | // Reference: packages/ee-components/src/bulkEdit/details/Submit.tsx:18 |
1107 | - __( 'Bulk update details', 'event_espresso' ), |
|
1107 | + __('Bulk update details', 'event_espresso'), |
|
1108 | 1108 | |
1109 | 1109 | // Reference: packages/ee-components/src/filterBar/SortByControl/index.tsx:26 |
1110 | - __( 'reorder dates', 'event_espresso' ), |
|
1110 | + __('reorder dates', 'event_espresso'), |
|
1111 | 1111 | |
1112 | 1112 | // Reference: packages/ee-components/src/filterBar/SortByControl/index.tsx:26 |
1113 | - __( 'reorder tickets', 'event_espresso' ), |
|
1113 | + __('reorder tickets', 'event_espresso'), |
|
1114 | 1114 | |
1115 | 1115 | // Reference: packages/form/src/renderers/RepeatableRenderer.tsx:36 |
1116 | 1116 | /* translators: %d the entry number */ |
1117 | - __( 'Entry %d', 'event_espresso' ), |
|
1117 | + __('Entry %d', 'event_espresso'), |
|
1118 | 1118 | |
1119 | 1119 | // Reference: packages/form/src/renderers/RepeatableRenderer.tsx:52 |
1120 | 1120 | // Reference: packages/ui-components/src/SimpleEntityList/EntityTemplate.tsx:27 |
1121 | - __( 'Add', 'event_espresso' ), |
|
1121 | + __('Add', 'event_espresso'), |
|
1122 | 1122 | |
1123 | 1123 | // Reference: packages/helpers/src/datetimes/getStatusTextLabel.ts:11 |
1124 | 1124 | // Reference: packages/helpers/src/tickets/getStatusTextLabel.ts:17 |
1125 | - __( 'sold out', 'event_espresso' ), |
|
1125 | + __('sold out', 'event_espresso'), |
|
1126 | 1126 | |
1127 | 1127 | // Reference: packages/helpers/src/datetimes/getStatusTextLabel.ts:14 |
1128 | 1128 | // Reference: packages/helpers/src/tickets/getStatusTextLabel.ts:14 |
1129 | - __( 'expired', 'event_espresso' ), |
|
1129 | + __('expired', 'event_espresso'), |
|
1130 | 1130 | |
1131 | 1131 | // Reference: packages/helpers/src/datetimes/getStatusTextLabel.ts:17 |
1132 | - __( 'upcoming', 'event_espresso' ), |
|
1132 | + __('upcoming', 'event_espresso'), |
|
1133 | 1133 | |
1134 | 1134 | // Reference: packages/helpers/src/datetimes/getStatusTextLabel.ts:20 |
1135 | - __( 'active', 'event_espresso' ), |
|
1135 | + __('active', 'event_espresso'), |
|
1136 | 1136 | |
1137 | 1137 | // Reference: packages/helpers/src/datetimes/getStatusTextLabel.ts:23 |
1138 | 1138 | // Reference: packages/helpers/src/tickets/getStatusTextLabel.ts:11 |
1139 | - __( 'trashed', 'event_espresso' ), |
|
1139 | + __('trashed', 'event_espresso'), |
|
1140 | 1140 | |
1141 | 1141 | // Reference: packages/helpers/src/datetimes/getStatusTextLabel.ts:26 |
1142 | - __( 'cancelled', 'event_espresso' ), |
|
1142 | + __('cancelled', 'event_espresso'), |
|
1143 | 1143 | |
1144 | 1144 | // Reference: packages/helpers/src/datetimes/getStatusTextLabel.ts:29 |
1145 | - __( 'postponed', 'event_espresso' ), |
|
1145 | + __('postponed', 'event_espresso'), |
|
1146 | 1146 | |
1147 | 1147 | // Reference: packages/helpers/src/datetimes/getStatusTextLabel.ts:33 |
1148 | - __( 'inactive', 'event_espresso' ), |
|
1148 | + __('inactive', 'event_espresso'), |
|
1149 | 1149 | |
1150 | 1150 | // Reference: packages/helpers/src/tickets/getStatusTextLabel.ts:20 |
1151 | - __( 'pending', 'event_espresso' ), |
|
1151 | + __('pending', 'event_espresso'), |
|
1152 | 1152 | |
1153 | 1153 | // Reference: packages/helpers/src/tickets/getStatusTextLabel.ts:23 |
1154 | - __( 'on sale', 'event_espresso' ), |
|
1154 | + __('on sale', 'event_espresso'), |
|
1155 | 1155 | |
1156 | 1156 | // Reference: packages/predicates/src/registration/statusOptions.ts:14 |
1157 | - __( 'Declined', 'event_espresso' ), |
|
1157 | + __('Declined', 'event_espresso'), |
|
1158 | 1158 | |
1159 | 1159 | // Reference: packages/predicates/src/registration/statusOptions.ts:18 |
1160 | - __( 'Incomplete', 'event_espresso' ), |
|
1160 | + __('Incomplete', 'event_espresso'), |
|
1161 | 1161 | |
1162 | 1162 | // Reference: packages/predicates/src/registration/statusOptions.ts:22 |
1163 | - __( 'Not Approved', 'event_espresso' ), |
|
1163 | + __('Not Approved', 'event_espresso'), |
|
1164 | 1164 | |
1165 | 1165 | // Reference: packages/predicates/src/registration/statusOptions.ts:26 |
1166 | - __( 'Pending Payment', 'event_espresso' ), |
|
1166 | + __('Pending Payment', 'event_espresso'), |
|
1167 | 1167 | |
1168 | 1168 | // Reference: packages/predicates/src/registration/statusOptions.ts:30 |
1169 | - __( 'Wait List', 'event_espresso' ), |
|
1169 | + __('Wait List', 'event_espresso'), |
|
1170 | 1170 | |
1171 | 1171 | // Reference: packages/predicates/src/registration/statusOptions.ts:6 |
1172 | - __( 'Approved', 'event_espresso' ), |
|
1172 | + __('Approved', 'event_espresso'), |
|
1173 | 1173 | |
1174 | 1174 | // Reference: packages/rich-text-editor/src/components/AdvancedTextEditor/toolbarButtons/WPMedia.tsx:10 |
1175 | 1175 | // Reference: packages/rich-text-editor/src/rte-old/components/toolbarButtons/WPMedia.tsx:12 |
1176 | - __( 'Select', 'event_espresso' ), |
|
1176 | + __('Select', 'event_espresso'), |
|
1177 | 1177 | |
1178 | 1178 | // Reference: packages/rich-text-editor/src/components/AdvancedTextEditor/toolbarButtons/WPMedia.tsx:8 |
1179 | 1179 | // Reference: packages/rich-text-editor/src/rte-old/components/toolbarButtons/WPMedia.tsx:10 |
1180 | - __( 'Select media', 'event_espresso' ), |
|
1180 | + __('Select media', 'event_espresso'), |
|
1181 | 1181 | |
1182 | 1182 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/RichTextEditor.tsx:81 |
1183 | - __( 'Write something…', 'event_espresso' ), |
|
1183 | + __('Write something…', 'event_espresso'), |
|
1184 | 1184 | |
1185 | 1185 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/Toolbar.tsx:20 |
1186 | - __( 'RTE Toolbar', 'event_espresso' ), |
|
1186 | + __('RTE Toolbar', 'event_espresso'), |
|
1187 | 1187 | |
1188 | 1188 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/blockType/Component.tsx:11 |
1189 | - __( 'Normal', 'event_espresso' ), |
|
1189 | + __('Normal', 'event_espresso'), |
|
1190 | 1190 | |
1191 | 1191 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/blockType/Component.tsx:12 |
1192 | - __( 'H1', 'event_espresso' ), |
|
1192 | + __('H1', 'event_espresso'), |
|
1193 | 1193 | |
1194 | 1194 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/blockType/Component.tsx:13 |
1195 | - __( 'H2', 'event_espresso' ), |
|
1195 | + __('H2', 'event_espresso'), |
|
1196 | 1196 | |
1197 | 1197 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/blockType/Component.tsx:14 |
1198 | - __( 'H3', 'event_espresso' ), |
|
1198 | + __('H3', 'event_espresso'), |
|
1199 | 1199 | |
1200 | 1200 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/blockType/Component.tsx:15 |
1201 | - __( 'H4', 'event_espresso' ), |
|
1201 | + __('H4', 'event_espresso'), |
|
1202 | 1202 | |
1203 | 1203 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/blockType/Component.tsx:16 |
1204 | - __( 'H5', 'event_espresso' ), |
|
1204 | + __('H5', 'event_espresso'), |
|
1205 | 1205 | |
1206 | 1206 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/blockType/Component.tsx:17 |
1207 | - __( 'H6', 'event_espresso' ), |
|
1207 | + __('H6', 'event_espresso'), |
|
1208 | 1208 | |
1209 | 1209 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/blockType/Component.tsx:18 |
1210 | - __( 'Block quote', 'event_espresso' ), |
|
1210 | + __('Block quote', 'event_espresso'), |
|
1211 | 1211 | |
1212 | 1212 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/blockType/Component.tsx:19 |
1213 | - __( 'Code', 'event_espresso' ), |
|
1213 | + __('Code', 'event_espresso'), |
|
1214 | 1214 | |
1215 | 1215 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/colorPicker/Component.tsx:34 |
1216 | - __( 'Set color', 'event_espresso' ), |
|
1216 | + __('Set color', 'event_espresso'), |
|
1217 | 1217 | |
1218 | 1218 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/colorPicker/Component.tsx:40 |
1219 | - __( 'Text color', 'event_espresso' ), |
|
1219 | + __('Text color', 'event_espresso'), |
|
1220 | 1220 | |
1221 | 1221 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/colorPicker/Component.tsx:42 |
1222 | - __( 'Background color', 'event_espresso' ), |
|
1222 | + __('Background color', 'event_espresso'), |
|
1223 | 1223 | |
1224 | 1224 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/image/Component.tsx:33 |
1225 | - __( 'Add image', 'event_espresso' ), |
|
1225 | + __('Add image', 'event_espresso'), |
|
1226 | 1226 | |
1227 | 1227 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/image/Component.tsx:42 |
1228 | - __( 'Image URL', 'event_espresso' ), |
|
1228 | + __('Image URL', 'event_espresso'), |
|
1229 | 1229 | |
1230 | 1230 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/image/Component.tsx:46 |
1231 | - __( 'Alt text', 'event_espresso' ), |
|
1231 | + __('Alt text', 'event_espresso'), |
|
1232 | 1232 | |
1233 | 1233 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/image/Component.tsx:47 |
1234 | - __( 'Width', 'event_espresso' ), |
|
1234 | + __('Width', 'event_espresso'), |
|
1235 | 1235 | |
1236 | 1236 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/image/Component.tsx:51 |
1237 | - __( 'Height', 'event_espresso' ), |
|
1237 | + __('Height', 'event_espresso'), |
|
1238 | 1238 | |
1239 | 1239 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/link/Component.tsx:48 |
1240 | - __( 'Edit link', 'event_espresso' ), |
|
1240 | + __('Edit link', 'event_espresso'), |
|
1241 | 1241 | |
1242 | 1242 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/link/Component.tsx:54 |
1243 | - __( 'URL title', 'event_espresso' ), |
|
1243 | + __('URL title', 'event_espresso'), |
|
1244 | 1244 | |
1245 | 1245 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/list/Component.tsx:11 |
1246 | - __( 'Unordered list', 'event_espresso' ), |
|
1246 | + __('Unordered list', 'event_espresso'), |
|
1247 | 1247 | |
1248 | 1248 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/list/Component.tsx:12 |
1249 | - __( 'Ordered list', 'event_espresso' ), |
|
1249 | + __('Ordered list', 'event_espresso'), |
|
1250 | 1250 | |
1251 | 1251 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/list/Component.tsx:13 |
1252 | 1252 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/textAlign/Component.tsx:13 |
1253 | - __( 'Indent', 'event_espresso' ), |
|
1253 | + __('Indent', 'event_espresso'), |
|
1254 | 1254 | |
1255 | 1255 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/list/Component.tsx:14 |
1256 | 1256 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/textAlign/Component.tsx:14 |
1257 | - __( 'Outdent', 'event_espresso' ), |
|
1257 | + __('Outdent', 'event_espresso'), |
|
1258 | 1258 | |
1259 | 1259 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/textAlign/Component.tsx:11 |
1260 | - __( 'Unordered textalign', 'event_espresso' ), |
|
1260 | + __('Unordered textalign', 'event_espresso'), |
|
1261 | 1261 | |
1262 | 1262 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/Toolbar/controls/textAlign/Component.tsx:12 |
1263 | - __( 'Ordered textalign', 'event_espresso' ), |
|
1263 | + __('Ordered textalign', 'event_espresso'), |
|
1264 | 1264 | |
1265 | 1265 | // Reference: packages/rich-text-editor/src/components/RichTextEditor/render/Image/Toolbar.tsx:30 |
1266 | - __( 'Image toolbar', 'event_espresso' ), |
|
1266 | + __('Image toolbar', 'event_espresso'), |
|
1267 | 1267 | |
1268 | 1268 | // Reference: packages/rich-text-editor/src/components/WithEditMode/WithEditMode.tsx:59 |
1269 | 1269 | // Reference: packages/rich-text-editor/src/rte-old/components/RTEWithEditMode/RTEWithEditMode.tsx:33 |
1270 | - __( 'Visual editor', 'event_espresso' ), |
|
1270 | + __('Visual editor', 'event_espresso'), |
|
1271 | 1271 | |
1272 | 1272 | // Reference: packages/rich-text-editor/src/components/WithEditMode/WithEditMode.tsx:60 |
1273 | 1273 | // Reference: packages/rich-text-editor/src/rte-old/components/RTEWithEditMode/RTEWithEditMode.tsx:34 |
1274 | - __( 'HTML editor', 'event_espresso' ), |
|
1274 | + __('HTML editor', 'event_espresso'), |
|
1275 | 1275 | |
1276 | 1276 | // Reference: packages/rich-text-editor/src/rte-old/components/toolbarButtons/WPMedia.tsx:68 |
1277 | - __( 'Add Media', 'event_espresso' ), |
|
1277 | + __('Add Media', 'event_espresso'), |
|
1278 | 1278 | |
1279 | 1279 | // Reference: packages/tpc/src/buttons/AddPriceModifierButton.tsx:14 |
1280 | - __( 'add new price modifier after this row', 'event_espresso' ), |
|
1280 | + __('add new price modifier after this row', 'event_espresso'), |
|
1281 | 1281 | |
1282 | 1282 | // Reference: packages/tpc/src/buttons/DeleteAllPricesButton.tsx:14 |
1283 | - __( 'Delete all prices', 'event_espresso' ), |
|
1283 | + __('Delete all prices', 'event_espresso'), |
|
1284 | 1284 | |
1285 | 1285 | // Reference: packages/tpc/src/buttons/DeleteAllPricesButton.tsx:27 |
1286 | - __( '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' ), |
|
1286 | + __('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'), |
|
1287 | 1287 | |
1288 | 1288 | // Reference: packages/tpc/src/buttons/DeleteAllPricesButton.tsx:31 |
1289 | - __( 'Delete all prices?', 'event_espresso' ), |
|
1289 | + __('Delete all prices?', 'event_espresso'), |
|
1290 | 1290 | |
1291 | 1291 | // Reference: packages/tpc/src/buttons/DeletePriceModifierButton.tsx:12 |
1292 | - __( 'delete price modifier', 'event_espresso' ), |
|
1292 | + __('delete price modifier', 'event_espresso'), |
|
1293 | 1293 | |
1294 | 1294 | // Reference: packages/tpc/src/buttons/ReverseCalculateButton.tsx:14 |
1295 | - __( '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' ), |
|
1295 | + __('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'), |
|
1296 | 1296 | |
1297 | 1297 | // Reference: packages/tpc/src/buttons/ReverseCalculateButton.tsx:17 |
1298 | - __( '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' ), |
|
1298 | + __('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'), |
|
1299 | 1299 | |
1300 | 1300 | // Reference: packages/tpc/src/buttons/TicketPriceCalculatorButton.tsx:26 |
1301 | - __( 'ticket price calculator', 'event_espresso' ), |
|
1301 | + __('ticket price calculator', 'event_espresso'), |
|
1302 | 1302 | |
1303 | 1303 | // Reference: packages/tpc/src/buttons/taxes/AddDefaultTaxesButton.tsx:9 |
1304 | - __( 'Add default taxes', 'event_espresso' ), |
|
1304 | + __('Add default taxes', 'event_espresso'), |
|
1305 | 1305 | |
1306 | 1306 | // Reference: packages/tpc/src/buttons/taxes/RemoveTaxesButton.tsx:10 |
1307 | - __( 'Are you sure you want to remove all of this ticket\'s taxes?', 'event_espresso' ), |
|
1307 | + __('Are you sure you want to remove all of this ticket\'s taxes?', 'event_espresso'), |
|
1308 | 1308 | |
1309 | 1309 | // Reference: packages/tpc/src/buttons/taxes/RemoveTaxesButton.tsx:14 |
1310 | - __( 'Remove all taxes?', 'event_espresso' ), |
|
1310 | + __('Remove all taxes?', 'event_espresso'), |
|
1311 | 1311 | |
1312 | 1312 | // Reference: packages/tpc/src/buttons/taxes/RemoveTaxesButton.tsx:7 |
1313 | - __( 'Remove taxes', 'event_espresso' ), |
|
1313 | + __('Remove taxes', 'event_espresso'), |
|
1314 | 1314 | |
1315 | 1315 | // Reference: packages/tpc/src/components/DefaultPricesInfo.tsx:29 |
1316 | - __( 'Modify default prices.', 'event_espresso' ), |
|
1316 | + __('Modify default prices.', 'event_espresso'), |
|
1317 | 1317 | |
1318 | 1318 | // Reference: packages/tpc/src/components/DefaultTaxesInfo.tsx:29 |
1319 | - __( 'New default taxes are available. Click the - Add default taxes - button to add them now.', 'event_espresso' ), |
|
1319 | + __('New default taxes are available. Click the - Add default taxes - button to add them now.', 'event_espresso'), |
|
1320 | 1320 | |
1321 | 1321 | // Reference: packages/tpc/src/components/NoPricesBanner/AddDefaultPricesButton.tsx:9 |
1322 | - __( 'Add default prices', 'event_espresso' ), |
|
1322 | + __('Add default prices', 'event_espresso'), |
|
1323 | 1323 | |
1324 | 1324 | // Reference: packages/tpc/src/components/NoPricesBanner/index.tsx:13 |
1325 | - __( 'This Ticket is Currently Free', 'event_espresso' ), |
|
1325 | + __('This Ticket is Currently Free', 'event_espresso'), |
|
1326 | 1326 | |
1327 | 1327 | // Reference: packages/tpc/src/components/NoPricesBanner/index.tsx:21 |
1328 | 1328 | /* translators: %s default prices */ |
1329 | - __( 'Click the button below to load your %s into the calculator.', 'event_espresso' ), |
|
1329 | + __('Click the button below to load your %s into the calculator.', 'event_espresso'), |
|
1330 | 1330 | |
1331 | 1331 | // Reference: packages/tpc/src/components/NoPricesBanner/index.tsx:22 |
1332 | - __( 'default prices', 'event_espresso' ), |
|
1332 | + __('default prices', 'event_espresso'), |
|
1333 | 1333 | |
1334 | 1334 | // Reference: packages/tpc/src/components/NoPricesBanner/index.tsx:29 |
1335 | - __( 'Additional ticket price modifiers can be added or removed.', 'event_espresso' ), |
|
1335 | + __('Additional ticket price modifiers can be added or removed.', 'event_espresso'), |
|
1336 | 1336 | |
1337 | 1337 | // Reference: packages/tpc/src/components/NoPricesBanner/index.tsx:32 |
1338 | - __( 'Click the save button below to assign which dates this ticket will be available for purchase on.', 'event_espresso' ), |
|
1338 | + __('Click the save button below to assign which dates this ticket will be available for purchase on.', 'event_espresso'), |
|
1339 | 1339 | |
1340 | 1340 | // Reference: packages/tpc/src/components/TicketPriceCalculatorModal.tsx:32 |
1341 | 1341 | /* translators: %s ticket name */ |
1342 | - __( 'Price Calculator for Ticket: %s', 'event_espresso' ), |
|
1342 | + __('Price Calculator for Ticket: %s', 'event_espresso'), |
|
1343 | 1343 | |
1344 | 1344 | // Reference: packages/tpc/src/components/table/useFooterRowGenerator.tsx:41 |
1345 | - __( 'Total', 'event_espresso' ), |
|
1345 | + __('Total', 'event_espresso'), |
|
1346 | 1346 | |
1347 | 1347 | // Reference: packages/tpc/src/components/table/useFooterRowGenerator.tsx:50 |
1348 | - __( 'ticket total', 'event_espresso' ), |
|
1348 | + __('ticket total', 'event_espresso'), |
|
1349 | 1349 | |
1350 | 1350 | // Reference: packages/tpc/src/components/table/useHeaderRowGenerator.ts:29 |
1351 | - __( 'Price Type', 'event_espresso' ), |
|
1351 | + __('Price Type', 'event_espresso'), |
|
1352 | 1352 | |
1353 | 1353 | // Reference: packages/tpc/src/components/table/useHeaderRowGenerator.ts:35 |
1354 | - __( 'Label', 'event_espresso' ), |
|
1354 | + __('Label', 'event_espresso'), |
|
1355 | 1355 | |
1356 | 1356 | // Reference: packages/tpc/src/components/table/useHeaderRowGenerator.ts:47 |
1357 | - __( 'Amount', 'event_espresso' ), |
|
1357 | + __('Amount', 'event_espresso'), |
|
1358 | 1358 | |
1359 | 1359 | // Reference: packages/tpc/src/inputs/PriceAmountInput.tsx:30 |
1360 | - __( 'amount', 'event_espresso' ), |
|
1360 | + __('amount', 'event_espresso'), |
|
1361 | 1361 | |
1362 | 1362 | // Reference: packages/tpc/src/inputs/PriceAmountInput.tsx:41 |
1363 | - __( 'amount…', 'event_espresso' ), |
|
1363 | + __('amount…', 'event_espresso'), |
|
1364 | 1364 | |
1365 | 1365 | // Reference: packages/tpc/src/inputs/PriceDescriptionInput.tsx:14 |
1366 | - __( 'description…', 'event_espresso' ), |
|
1366 | + __('description…', 'event_espresso'), |
|
1367 | 1367 | |
1368 | 1368 | // Reference: packages/tpc/src/inputs/PriceDescriptionInput.tsx:9 |
1369 | - __( 'price description', 'event_espresso' ), |
|
1369 | + __('price description', 'event_espresso'), |
|
1370 | 1370 | |
1371 | 1371 | // Reference: packages/tpc/src/inputs/PriceIdInput.tsx:7 |
1372 | - __( 'price id', 'event_espresso' ), |
|
1372 | + __('price id', 'event_espresso'), |
|
1373 | 1373 | |
1374 | 1374 | // Reference: packages/tpc/src/inputs/PriceNameInput.tsx:13 |
1375 | - __( 'label…', 'event_espresso' ), |
|
1375 | + __('label…', 'event_espresso'), |
|
1376 | 1376 | |
1377 | 1377 | // Reference: packages/tpc/src/inputs/PriceNameInput.tsx:8 |
1378 | - __( 'price name', 'event_espresso' ), |
|
1378 | + __('price name', 'event_espresso'), |
|
1379 | 1379 | |
1380 | 1380 | // Reference: packages/tpc/src/inputs/PriceTypeInput.tsx:14 |
1381 | - __( 'price type', 'event_espresso' ), |
|
1381 | + __('price type', 'event_espresso'), |
|
1382 | 1382 | |
1383 | 1383 | // Reference: packages/tpc/src/utils/constants.ts:13 |
1384 | - __( '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 trash the old tickets.', 'event_espresso' ), |
|
1384 | + __('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 trash the old tickets.', 'event_espresso'), |
|
1385 | 1385 | |
1386 | 1386 | // Reference: packages/ui-components/src/ActiveFilters/ActiveFilters.tsx:8 |
1387 | - __( 'active filters:', 'event_espresso' ), |
|
1387 | + __('active filters:', 'event_espresso'), |
|
1388 | 1388 | |
1389 | 1389 | // Reference: packages/ui-components/src/ActiveFilters/FilterTag.tsx:10 |
1390 | 1390 | /* translators: %s filter name */ |
1391 | - __( 'remove filter - %s', 'event_espresso' ), |
|
1391 | + __('remove filter - %s', 'event_espresso'), |
|
1392 | 1392 | |
1393 | 1393 | // Reference: packages/ui-components/src/CalendarDateRange/CalendarDateRange.tsx:37 |
1394 | - __( 'to', 'event_espresso' ), |
|
1394 | + __('to', 'event_espresso'), |
|
1395 | 1395 | |
1396 | 1396 | // Reference: packages/ui-components/src/CalendarPageDate/CalendarPageDate.tsx:54 |
1397 | - __( 'TO', 'event_espresso' ), |
|
1397 | + __('TO', 'event_espresso'), |
|
1398 | 1398 | |
1399 | 1399 | // Reference: packages/ui-components/src/ColorPicker/ColorPicker.tsx:60 |
1400 | - __( 'Custom color', 'event_espresso' ), |
|
1400 | + __('Custom color', 'event_espresso'), |
|
1401 | 1401 | |
1402 | 1402 | // Reference: packages/ui-components/src/ColorPicker/Swatch.tsx:23 |
1403 | 1403 | /* translators: color name */ |
1404 | - __( 'Color: %s', 'event_espresso' ), |
|
1404 | + __('Color: %s', 'event_espresso'), |
|
1405 | 1405 | |
1406 | 1406 | // Reference: packages/ui-components/src/ColorPicker/constants.ts:13 |
1407 | - __( 'Cyan bluish gray', 'event_espresso' ), |
|
1407 | + __('Cyan bluish gray', 'event_espresso'), |
|
1408 | 1408 | |
1409 | 1409 | // Reference: packages/ui-components/src/ColorPicker/constants.ts:17 |
1410 | - __( 'White', 'event_espresso' ), |
|
1410 | + __('White', 'event_espresso'), |
|
1411 | 1411 | |
1412 | 1412 | // Reference: packages/ui-components/src/ColorPicker/constants.ts:21 |
1413 | - __( 'Pale pink', 'event_espresso' ), |
|
1413 | + __('Pale pink', 'event_espresso'), |
|
1414 | 1414 | |
1415 | 1415 | // Reference: packages/ui-components/src/ColorPicker/constants.ts:25 |
1416 | - __( 'Vivid red', 'event_espresso' ), |
|
1416 | + __('Vivid red', 'event_espresso'), |
|
1417 | 1417 | |
1418 | 1418 | // Reference: packages/ui-components/src/ColorPicker/constants.ts:29 |
1419 | - __( 'Luminous vivid orange', 'event_espresso' ), |
|
1419 | + __('Luminous vivid orange', 'event_espresso'), |
|
1420 | 1420 | |
1421 | 1421 | // Reference: packages/ui-components/src/ColorPicker/constants.ts:33 |
1422 | - __( 'Luminous vivid amber', 'event_espresso' ), |
|
1422 | + __('Luminous vivid amber', 'event_espresso'), |
|
1423 | 1423 | |
1424 | 1424 | // Reference: packages/ui-components/src/ColorPicker/constants.ts:37 |
1425 | - __( 'Light green cyan', 'event_espresso' ), |
|
1425 | + __('Light green cyan', 'event_espresso'), |
|
1426 | 1426 | |
1427 | 1427 | // Reference: packages/ui-components/src/ColorPicker/constants.ts:41 |
1428 | - __( 'Vivid green cyan', 'event_espresso' ), |
|
1428 | + __('Vivid green cyan', 'event_espresso'), |
|
1429 | 1429 | |
1430 | 1430 | // Reference: packages/ui-components/src/ColorPicker/constants.ts:45 |
1431 | - __( 'Pale cyan blue', 'event_espresso' ), |
|
1431 | + __('Pale cyan blue', 'event_espresso'), |
|
1432 | 1432 | |
1433 | 1433 | // Reference: packages/ui-components/src/ColorPicker/constants.ts:49 |
1434 | - __( 'Vivid cyan blue', 'event_espresso' ), |
|
1434 | + __('Vivid cyan blue', 'event_espresso'), |
|
1435 | 1435 | |
1436 | 1436 | // Reference: packages/ui-components/src/ColorPicker/constants.ts:53 |
1437 | - __( 'Vivid purple', 'event_espresso' ), |
|
1437 | + __('Vivid purple', 'event_espresso'), |
|
1438 | 1438 | |
1439 | 1439 | // Reference: packages/ui-components/src/ColorPicker/constants.ts:9 |
1440 | - __( 'Black', 'event_espresso' ), |
|
1440 | + __('Black', 'event_espresso'), |
|
1441 | 1441 | |
1442 | 1442 | // Reference: packages/ui-components/src/Confirm/ConfirmClose.tsx:7 |
1443 | 1443 | // Reference: packages/ui-components/src/Modal/ModalWithAlert.tsx:22 |
1444 | - __( 'Are you sure you want to close this?', 'event_espresso' ), |
|
1444 | + __('Are you sure you want to close this?', 'event_espresso'), |
|
1445 | 1445 | |
1446 | 1446 | // Reference: packages/ui-components/src/Confirm/ConfirmDelete.tsx:7 |
1447 | - __( 'Are you sure you want to delete this?', 'event_espresso' ), |
|
1447 | + __('Are you sure you want to delete this?', 'event_espresso'), |
|
1448 | 1448 | |
1449 | 1449 | // Reference: packages/ui-components/src/Confirm/useConfirmWithButton.tsx:10 |
1450 | - __( 'Please confirm this action.', 'event_espresso' ), |
|
1450 | + __('Please confirm this action.', 'event_espresso'), |
|
1451 | 1451 | |
1452 | 1452 | // Reference: packages/ui-components/src/Confirm/useConfirmationDialog.tsx:32 |
1453 | - __( 'No', 'event_espresso' ), |
|
1453 | + __('No', 'event_espresso'), |
|
1454 | 1454 | |
1455 | 1455 | // Reference: packages/ui-components/src/Confirm/useConfirmationDialog.tsx:33 |
1456 | - __( 'Yes', 'event_espresso' ), |
|
1456 | + __('Yes', 'event_espresso'), |
|
1457 | 1457 | |
1458 | 1458 | // Reference: packages/ui-components/src/CurrencyDisplay/CurrencyDisplay.tsx:34 |
1459 | - __( 'free', 'event_espresso' ), |
|
1459 | + __('free', 'event_espresso'), |
|
1460 | 1460 | |
1461 | 1461 | // Reference: packages/ui-components/src/DateTimeRangePicker/DateTimeRangePicker.tsx:77 |
1462 | 1462 | // Reference: packages/ui-components/src/Popover/PopoverForm/PopoverForm.tsx:43 |
1463 | - __( 'save', 'event_espresso' ), |
|
1463 | + __('save', 'event_espresso'), |
|
1464 | 1464 | |
1465 | 1465 | // Reference: packages/ui-components/src/DebugInfo/DebugInfo.tsx:36 |
1466 | - __( 'Hide Debug Info', 'event_espresso' ), |
|
1466 | + __('Hide Debug Info', 'event_espresso'), |
|
1467 | 1467 | |
1468 | 1468 | // Reference: packages/ui-components/src/DebugInfo/DebugInfo.tsx:36 |
1469 | - __( 'Show Debug Info', 'event_espresso' ), |
|
1469 | + __('Show Debug Info', 'event_espresso'), |
|
1470 | 1470 | |
1471 | 1471 | // Reference: packages/ui-components/src/EditDateRangeButton/EditDateRangeButton.tsx:47 |
1472 | - __( 'Edit Start and End Dates and Times', 'event_espresso' ), |
|
1472 | + __('Edit Start and End Dates and Times', 'event_espresso'), |
|
1473 | 1473 | |
1474 | 1474 | // Reference: packages/ui-components/src/EntityActionsMenu/entityMenuItems/Copy.tsx:8 |
1475 | - __( 'copy', 'event_espresso' ), |
|
1475 | + __('copy', 'event_espresso'), |
|
1476 | 1476 | |
1477 | 1477 | // Reference: packages/ui-components/src/EntityActionsMenu/entityMenuItems/Edit.tsx:8 |
1478 | - __( 'edit', 'event_espresso' ), |
|
1478 | + __('edit', 'event_espresso'), |
|
1479 | 1479 | |
1480 | 1480 | // Reference: packages/ui-components/src/EntityActionsMenu/entityMenuItems/Trash.tsx:8 |
1481 | - __( 'trash', 'event_espresso' ), |
|
1481 | + __('trash', 'event_espresso'), |
|
1482 | 1482 | |
1483 | 1483 | // Reference: packages/ui-components/src/EntityActionsMenu/entityMenuItems/Untrash.tsx:8 |
1484 | - __( 'untrash', 'event_espresso' ), |
|
1484 | + __('untrash', 'event_espresso'), |
|
1485 | 1485 | |
1486 | 1486 | // Reference: packages/ui-components/src/EntityDetailsPanel/EntityDetailsPanelSold.tsx:37 |
1487 | - __( 'view approved registrations for this date.', 'event_espresso' ), |
|
1487 | + __('view approved registrations for this date.', 'event_espresso'), |
|
1488 | 1488 | |
1489 | 1489 | // Reference: packages/ui-components/src/EntityDetailsPanel/EntityDetailsPanelSold.tsx:38 |
1490 | - __( 'view approved registrations for this ticket.', 'event_espresso' ), |
|
1490 | + __('view approved registrations for this ticket.', 'event_espresso'), |
|
1491 | 1491 | |
1492 | 1492 | // Reference: packages/ui-components/src/EntityList/filterBar/buttons/CardViewFilterButton.tsx:21 |
1493 | - __( 'card view', 'event_espresso' ), |
|
1493 | + __('card view', 'event_espresso'), |
|
1494 | 1494 | |
1495 | 1495 | // Reference: packages/ui-components/src/EntityList/filterBar/buttons/TableViewFilterButton.tsx:20 |
1496 | - __( 'table view', 'event_espresso' ), |
|
1496 | + __('table view', 'event_espresso'), |
|
1497 | 1497 | |
1498 | 1498 | // Reference: packages/ui-components/src/EntityList/filterBar/buttons/ToggleBulkActionsButton.tsx:8 |
1499 | - __( 'hide bulk actions', 'event_espresso' ), |
|
1499 | + __('hide bulk actions', 'event_espresso'), |
|
1500 | 1500 | |
1501 | 1501 | // Reference: packages/ui-components/src/EntityList/filterBar/buttons/ToggleBulkActionsButton.tsx:8 |
1502 | - __( 'show bulk actions', 'event_espresso' ), |
|
1502 | + __('show bulk actions', 'event_espresso'), |
|
1503 | 1503 | |
1504 | 1504 | // Reference: packages/ui-components/src/EntityList/filterBar/buttons/ToggleFiltersButton.tsx:9 |
1505 | - __( 'hide filters', 'event_espresso' ), |
|
1505 | + __('hide filters', 'event_espresso'), |
|
1506 | 1506 | |
1507 | 1507 | // Reference: packages/ui-components/src/EntityList/filterBar/buttons/ToggleFiltersButton.tsx:9 |
1508 | - __( 'show filters', 'event_espresso' ), |
|
1508 | + __('show filters', 'event_espresso'), |
|
1509 | 1509 | |
1510 | 1510 | // Reference: packages/ui-components/src/Legend/ToggleLegendButton.tsx:26 |
1511 | - __( 'hide legend', 'event_espresso' ), |
|
1511 | + __('hide legend', 'event_espresso'), |
|
1512 | 1512 | |
1513 | 1513 | // Reference: packages/ui-components/src/Legend/ToggleLegendButton.tsx:26 |
1514 | - __( 'show legend', 'event_espresso' ), |
|
1514 | + __('show legend', 'event_espresso'), |
|
1515 | 1515 | |
1516 | 1516 | // Reference: packages/ui-components/src/LoadingNotice/LoadingNotice.tsx:11 |
1517 | - __( 'loading…', 'event_espresso' ), |
|
1517 | + __('loading…', 'event_espresso'), |
|
1518 | 1518 | |
1519 | 1519 | // Reference: packages/ui-components/src/Modal/Modal.tsx:58 |
1520 | - __( 'close modal', 'event_espresso' ), |
|
1520 | + __('close modal', 'event_espresso'), |
|
1521 | 1521 | |
1522 | 1522 | // Reference: packages/ui-components/src/Pagination/ItemRender.tsx:10 |
1523 | - __( 'jump to previous', 'event_espresso' ), |
|
1523 | + __('jump to previous', 'event_espresso'), |
|
1524 | 1524 | |
1525 | 1525 | // Reference: packages/ui-components/src/Pagination/ItemRender.tsx:11 |
1526 | - __( 'jump to next', 'event_espresso' ), |
|
1526 | + __('jump to next', 'event_espresso'), |
|
1527 | 1527 | |
1528 | 1528 | // Reference: packages/ui-components/src/Pagination/ItemRender.tsx:12 |
1529 | - __( 'page', 'event_espresso' ), |
|
1529 | + __('page', 'event_espresso'), |
|
1530 | 1530 | |
1531 | 1531 | // Reference: packages/ui-components/src/Pagination/ItemRender.tsx:8 |
1532 | - __( 'previous', 'event_espresso' ), |
|
1532 | + __('previous', 'event_espresso'), |
|
1533 | 1533 | |
1534 | 1534 | // Reference: packages/ui-components/src/Pagination/ItemRender.tsx:9 |
1535 | - __( 'next', 'event_espresso' ), |
|
1535 | + __('next', 'event_espresso'), |
|
1536 | 1536 | |
1537 | 1537 | // Reference: packages/ui-components/src/Pagination/PerPage.tsx:37 |
1538 | - __( 'items per page', 'event_espresso' ), |
|
1538 | + __('items per page', 'event_espresso'), |
|
1539 | 1539 | |
1540 | 1540 | // Reference: packages/ui-components/src/Pagination/constants.ts:10 |
1541 | 1541 | /* translators: %s is per page value */ |
1542 | - __( '%s / page', 'event_espresso' ), |
|
1542 | + __('%s / page', 'event_espresso'), |
|
1543 | 1543 | |
1544 | 1544 | // Reference: packages/ui-components/src/Pagination/constants.ts:13 |
1545 | - __( 'Next Page', 'event_espresso' ), |
|
1545 | + __('Next Page', 'event_espresso'), |
|
1546 | 1546 | |
1547 | 1547 | // Reference: packages/ui-components/src/Pagination/constants.ts:14 |
1548 | - __( 'Previous Page', 'event_espresso' ), |
|
1548 | + __('Previous Page', 'event_espresso'), |
|
1549 | 1549 | |
1550 | 1550 | // Reference: packages/ui-components/src/PercentSign/index.tsx:10 |
1551 | - __( '%', 'event_espresso' ), |
|
1551 | + __('%', 'event_espresso'), |
|
1552 | 1552 | |
1553 | 1553 | // Reference: packages/ui-components/src/SimpleEntityList/EntityOptionsRow/index.tsx:23 |
1554 | - __( 'Select an existing one to use as a template.', 'event_espresso' ), |
|
1554 | + __('Select an existing one to use as a template.', 'event_espresso'), |
|
1555 | 1555 | |
1556 | 1556 | // Reference: packages/ui-components/src/SimpleEntityList/EntityOptionsRow/index.tsx:27 |
1557 | - __( 'or', 'event_espresso' ), |
|
1557 | + __('or', 'event_espresso'), |
|
1558 | 1558 | |
1559 | 1559 | // Reference: packages/ui-components/src/SimpleEntityList/EntityOptionsRow/index.tsx:30 |
1560 | - __( 'Add new and insert details manually', 'event_espresso' ), |
|
1560 | + __('Add new and insert details manually', 'event_espresso'), |
|
1561 | 1561 | |
1562 | 1562 | // Reference: packages/ui-components/src/SimpleEntityList/EntityOptionsRow/index.tsx:34 |
1563 | - __( 'Add New', 'event_espresso' ), |
|
1563 | + __('Add New', 'event_espresso'), |
|
1564 | 1564 | |
1565 | 1565 | // Reference: packages/ui-components/src/Stepper/buttons/Next.tsx:8 |
1566 | - __( 'Next', 'event_espresso' ), |
|
1566 | + __('Next', 'event_espresso'), |
|
1567 | 1567 | |
1568 | 1568 | // Reference: packages/ui-components/src/Stepper/buttons/Previous.tsx:8 |
1569 | - __( 'Previous', 'event_espresso' ), |
|
1569 | + __('Previous', 'event_espresso'), |
|
1570 | 1570 | |
1571 | 1571 | // Reference: packages/ui-components/src/Steps/Steps.tsx:31 |
1572 | - __( 'Steps', 'event_espresso' ), |
|
1572 | + __('Steps', 'event_espresso'), |
|
1573 | 1573 | |
1574 | 1574 | // Reference: packages/ui-components/src/TabbableText/index.tsx:19 |
1575 | - __( 'Click to edit…', 'event_espresso' ), |
|
1575 | + __('Click to edit…', 'event_espresso'), |
|
1576 | 1576 | |
1577 | 1577 | // Reference: packages/ui-components/src/TimezoneTimeInfo/Content.tsx:14 |
1578 | - __( 'The Website\'s Time Zone', 'event_espresso' ), |
|
1578 | + __('The Website\'s Time Zone', 'event_espresso'), |
|
1579 | 1579 | |
1580 | 1580 | // Reference: packages/ui-components/src/TimezoneTimeInfo/Content.tsx:19 |
1581 | - __( 'UTC (Greenwich Mean Time)', 'event_espresso' ), |
|
1581 | + __('UTC (Greenwich Mean Time)', 'event_espresso'), |
|
1582 | 1582 | |
1583 | 1583 | // Reference: packages/ui-components/src/TimezoneTimeInfo/Content.tsx:9 |
1584 | - __( 'Your Local Time Zone', 'event_espresso' ), |
|
1584 | + __('Your Local Time Zone', 'event_espresso'), |
|
1585 | 1585 | |
1586 | 1586 | // Reference: packages/ui-components/src/TimezoneTimeInfo/TimezoneTimeInfo.tsx:27 |
1587 | - __( 'click for timezone information', 'event_espresso' ), |
|
1587 | + __('click for timezone information', 'event_espresso'), |
|
1588 | 1588 | |
1589 | 1589 | // Reference: packages/ui-components/src/TimezoneTimeInfo/TimezoneTimeInfo.tsx:32 |
1590 | - __( 'This Date Converted To:', 'event_espresso' ), |
|
1590 | + __('This Date Converted To:', 'event_espresso'), |
|
1591 | 1591 | |
1592 | 1592 | // Reference: packages/ui-components/src/bulkEdit/BulkActions.tsx:51 |
1593 | - __( 'select all', 'event_espresso' ), |
|
1593 | + __('select all', 'event_espresso'), |
|
1594 | 1594 | |
1595 | 1595 | // Reference: packages/ui-components/src/bulkEdit/BulkActions.tsx:54 |
1596 | - __( 'apply', 'event_espresso' ) |
|
1596 | + __('apply', 'event_espresso') |
|
1597 | 1597 | ); |
1598 | 1598 | /* THIS IS THE END OF THE GENERATED FILE */ |