The Events Calendar - Version 4.6.23

Version Description

Download this release

Release Info

Developer brianjessee
Plugin Icon The Events Calendar
Version 4.6.23
Comparing to
See all releases

Code changes from version 4.6.22.1 to 4.6.23

common/readme.txt CHANGED
@@ -2,7 +2,14 @@
2
 
3
  == Changelog ==
4
 
5
- = [4.7.19] 2018-08-22 =
 
 
 
 
 
 
 
6
  * Fix - Add the following datepicker formats to the validation script: YYYY.MM.DD, MM.DD.YYYY, DD.MM.YYYY [102815]
7
  * Add - Added the `Tribe__Process__Queue::delete_all_queues` method [111856]
8
  * Tweak - updated some foundation code for the Tickets REST API [108021]
2
 
3
  == Changelog ==
4
 
5
+ = [4.7.20] 2018-09-11 =
6
+ * Add - Added is_string_or_empty, is_image_or_empty, is_url_or_empty variations for REST API validation of values that are allowed to be set as empty [108834]
7
+ * Add - Introduce folder lookup for `Tribe__Template` to allow usage on Themes [112478]
8
+ * Fix - Allow settings to restrict to only one country [106974]
9
+ * Tweak - Removed filters: `tribe_template_base_path`
10
+ * Tweak - Added new filters: `tribe_template_before_include:$hook_name`, `tribe_template_after_include:$hook_name`, `tribe_template_html:$hook_name`, `tribe_template_path_list`, `tribe_template_public_path`, `tribe_template_public_namespace`, `tribe_template_plugin_path`
11
+
12
+ = [4.7.19] 2018-08-22 =
13
  * Fix - Add the following datepicker formats to the validation script: YYYY.MM.DD, MM.DD.YYYY, DD.MM.YYYY [102815]
14
  * Add - Added the `Tribe__Process__Queue::delete_all_queues` method [111856]
15
  * Tweak - updated some foundation code for the Tickets REST API [108021]
common/src/Tribe/Main.php CHANGED
@@ -17,7 +17,7 @@ class Tribe__Main {
17
  const OPTIONNAME = 'tribe_events_calendar_options';
18
  const OPTIONNAMENETWORK = 'tribe_events_calendar_network_options';
19
 
20
- const VERSION = '4.7.19';
21
 
22
  const FEED_URL = 'https://theeventscalendar.com/feed/';
23
 
17
  const OPTIONNAME = 'tribe_events_calendar_options';
18
  const OPTIONNAMENETWORK = 'tribe_events_calendar_network_options';
19
 
20
+ const VERSION = '4.7.20';
21
 
22
  const FEED_URL = 'https://theeventscalendar.com/feed/';
23
 
common/src/Tribe/Template.php CHANGED
@@ -54,6 +54,15 @@ class Tribe__Template {
54
  */
55
  protected $template_base_path;
56
 
 
 
 
 
 
 
 
 
 
57
  /**
58
  * Configures the class origin plugin path
59
  *
@@ -115,6 +124,21 @@ class Tribe__Template {
115
  return $this;
116
  }
117
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
  /**
119
  * Configures the class global context
120
  *
@@ -142,34 +166,11 @@ class Tribe__Template {
142
  */
143
  public function set_template_context_extract( $value = false ) {
144
  // Cast as bool and save
145
- $this->template_context_extract = (bool) $value;
146
 
147
  return $this;
148
  }
149
 
150
- /**
151
- * Gets the base path for this Instance of Templates
152
- *
153
- * @since 4.6.2
154
- *
155
- * @return string
156
- */
157
- public function get_base_path() {
158
- // Craft the Base Path
159
- $path = array_merge( (array) $this->template_base_path, $this->folder );
160
-
161
- // Implode to avoid Window Problems
162
- $path = implode( DIRECTORY_SEPARATOR, $path );
163
-
164
- /**
165
- * Allows filtering of the base path for templates
166
- *
167
- * @param string $path Complete path to include the base folder
168
- * @param self $template Current instance of the Tribe__Template
169
- */
170
- return apply_filters( 'tribe_template_base_path', $path, $this );
171
- }
172
-
173
  /**
174
  * Sets a Index inside of the global or local context
175
  * Final to prevent extending the class when the `get` already exists on the child class
@@ -273,7 +274,183 @@ class Tribe__Template {
273
  }
274
 
275
  /**
276
- * A very simple method to include a Aggregator Template, allowing filtering and additions using hooks.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
277
  *
278
  * @since 4.6.2
279
  *
@@ -292,22 +469,22 @@ class Tribe__Template {
292
  // Clean this Variable
293
  $name = array_map( 'sanitize_title_with_dashes', $name );
294
 
295
- // Apply the .php to the last item on the name
296
- $name[ count( $name ) - 1 ] .= '.php';
 
 
 
297
 
298
- // Build the File Path
299
- $file = implode( DIRECTORY_SEPARATOR, array_merge( (array) $this->get_base_path(), $name ) );
300
 
301
- /**
302
- * A more Specific Filter that will include the template name
303
- *
304
- * @since 4.6.2
305
- *
306
- * @param string $file Complete path to include the PHP File
307
- * @param array $name Template name
308
- * @param self $template Current instance of the Tribe__Template
309
- */
310
- $file = apply_filters( 'tribe_template_file', $file, $name, $this );
311
 
312
  // Before we load the file we check if it exists
313
  if ( ! file_exists( $file ) ) {
@@ -323,6 +500,7 @@ class Tribe__Template {
323
  * Fires an Action before including the template file
324
  *
325
  * @since 4.6.2
 
326
  *
327
  * @param string $file Complete path to include the PHP File
328
  * @param array $name Template name
@@ -330,6 +508,22 @@ class Tribe__Template {
330
  */
331
  do_action( 'tribe_template_before_include', $file, $name, $this );
332
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
333
  // Only do this if really needed (by default it wont)
334
  if ( true === $this->template_context_extract && ! empty( $this->context ) ) {
335
  // We don't allow Extrating of a variable called $name
@@ -349,9 +543,10 @@ class Tribe__Template {
349
  include $file;
350
 
351
  /**
352
- * Fires an Action After including the template file
353
  *
354
  * @since 4.6.2
 
355
  *
356
  * @param string $file Complete path to include the PHP File
357
  * @param array $name Template name
@@ -359,6 +554,22 @@ class Tribe__Template {
359
  */
360
  do_action( 'tribe_template_after_include', $file, $name, $this );
361
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
362
  // Only fetch the contents after the action
363
  $html = ob_get_clean();
364
 
@@ -366,6 +577,7 @@ class Tribe__Template {
366
  * Allow users to filter the final HTML
367
  *
368
  * @since 4.6.2
 
369
  *
370
  * @param string $html The final HTML
371
  * @param string $file Complete path to include the PHP File
@@ -374,6 +586,23 @@ class Tribe__Template {
374
  */
375
  $html = apply_filters( 'tribe_template_html', $html, $file, $name, $this );
376
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
377
  if ( $echo ) {
378
  echo $html;
379
  }
54
  */
55
  protected $template_base_path;
56
 
57
+ /**
58
+ * Should we use a lookup into the list of folders to try to find the file
59
+ *
60
+ * @since 4.7.20
61
+ *
62
+ * @var bool
63
+ */
64
+ protected $template_folder_lookup = false;
65
+
66
  /**
67
  * Configures the class origin plugin path
68
  *
124
  return $this;
125
  }
126
 
127
+ /**
128
+ * Configures the class with the base folder in relation to the Origin
129
+ *
130
+ * @since 4.7.20
131
+ *
132
+ * @param mixed $use Should we look for template files in the list of folders
133
+ *
134
+ * @return self
135
+ */
136
+ public function set_template_folder_lookup( $value = true ) {
137
+ $this->template_folder_lookup = tribe_is_truthy( $value );
138
+
139
+ return $this;
140
+ }
141
+
142
  /**
143
  * Configures the class global context
144
  *
166
  */
167
  public function set_template_context_extract( $value = false ) {
168
  // Cast as bool and save
169
+ $this->template_context_extract = tribe_is_truthy( $value );
170
 
171
  return $this;
172
  }
173
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
174
  /**
175
  * Sets a Index inside of the global or local context
176
  * Final to prevent extending the class when the `get` already exists on the child class
274
  }
275
 
276
  /**
277
+ * Fetches the path for locating files in the Plugin Folder
278
+ *
279
+ * @since 4.7.20
280
+ *
281
+ * @return string
282
+ */
283
+ protected function get_template_plugin_path() {
284
+ // Craft the plugin Path
285
+ $path = array_merge( (array) $this->template_base_path, $this->folder );
286
+
287
+ // Implode to avoid Window Problems
288
+ $path = implode( DIRECTORY_SEPARATOR, $path );
289
+
290
+ /**
291
+ * Allows filtering of the base path for templates
292
+ *
293
+ * @since 4.7.20
294
+ *
295
+ * @param string $path Complete path to include the base plugin folder
296
+ * @param self $template Current instance of the Tribe__Template
297
+ */
298
+ return apply_filters( 'tribe_template_plugin_path', $path, $this );
299
+ }
300
+
301
+ /**
302
+ * Fetches the Namespace for the public paths, normaly folders to look for
303
+ * in the theme's directory.
304
+ *
305
+ * @since 4.7.20
306
+ *
307
+ * @return array
308
+ */
309
+ protected function get_template_public_namespace() {
310
+ $namespace = array(
311
+ 'tribe',
312
+ );
313
+
314
+ if ( ! empty( $this->origin->template_namespace ) ) {
315
+ $namespace[] = $this->origin->template_namespace;
316
+ }
317
+
318
+ /**
319
+ * Allows filtering of the base path for templates
320
+ *
321
+ * @since 4.7.20
322
+ *
323
+ * @param array $namespace Which is the namespace we will look for files in the theme
324
+ * @param self $template Current instance of the Tribe__Template
325
+ */
326
+ return apply_filters( 'tribe_template_public_namespace', $namespace, $this );
327
+ }
328
+
329
+ /**
330
+ * Fetches the path for locating files given a base folder normally theme related
331
+ *
332
+ * @since 4.7.20
333
+ *
334
+ * @param mixed $base Base path to look into
335
+ *
336
+ * @return string
337
+ */
338
+ protected function get_template_public_path( $base ) {
339
+ // Craft the plugin Path
340
+ $path = array_merge( (array) $base, (array) $this->get_template_public_namespace() );
341
+
342
+ // Implode to avoid Window Problems
343
+ $path = implode( DIRECTORY_SEPARATOR, $path );
344
+
345
+ /**
346
+ * Allows filtering of the base path for templates
347
+ *
348
+ * @since 4.7.20
349
+ *
350
+ * @param string $path Complete path to include the base public folder
351
+ * @param self $template Current instance of the Tribe__Template
352
+ */
353
+ return apply_filters( 'tribe_template_public_path', $path, $this );
354
+ }
355
+
356
+ /**
357
+ * Fetches the folders in which we will look for a given file
358
+ *
359
+ * @since 4.7.20
360
+ *
361
+ * @return array
362
+ */
363
+ protected function get_template_path_list() {
364
+ $folders = array();
365
+
366
+ // Only look into public folders if we tell to use folders
367
+ if ( $this->template_folder_lookup ) {
368
+ $folders[] = array(
369
+ 'id' => 'child-theme',
370
+ 'priority' => 10,
371
+ 'path' => $this->get_template_public_path( STYLESHEETPATH ),
372
+ );
373
+ $folders[] = array(
374
+ 'id' => 'parent-theme',
375
+ 'priority' => 15,
376
+ 'path' => $this->get_template_public_path( TEMPLATEPATH ),
377
+ );
378
+ }
379
+
380
+ $folders[] = array(
381
+ 'id' => 'plugin',
382
+ 'priority' => 20,
383
+ 'path' => $this->get_template_plugin_path(),
384
+ );
385
+
386
+ /**
387
+ * Allows filtering of the list of folders in which we will look for the
388
+ * template given.
389
+ *
390
+ * @since 4.7.20
391
+ *
392
+ * @param array $folders Complete path to include the base public folder
393
+ * @param self $template Current instance of the Tribe__Template
394
+ */
395
+ $folders = apply_filters( 'tribe_template_path_list', $folders, $this );
396
+
397
+ uasort( $folders, 'tribe_sort_by_priority' );
398
+
399
+ return $folders;
400
+ }
401
+
402
+ /**
403
+ * Tries to locate the correct file we want to load based on the Template class
404
+ * configuration and it's list of folders
405
+ *
406
+ * @since 4.7.20
407
+ *
408
+ * @param mixed $name File name we are looking for
409
+ *
410
+ * @return string
411
+ */
412
+ public function get_template_file( $name ) {
413
+ // If name is String make it an Array
414
+ if ( is_string( $name ) ) {
415
+ $name = (array) explode( '/', $name );
416
+ }
417
+
418
+ $folders = $this->get_template_path_list();
419
+
420
+ foreach ( $folders as $folder ) {
421
+ $folder['path'] = trim( $folder['path'] );
422
+ if ( ! $folder['path'] ) {
423
+ continue;
424
+ }
425
+
426
+ // Build the File Path
427
+ $file = implode( DIRECTORY_SEPARATOR, array_merge( (array) $folder['path'], $name ) );
428
+
429
+ // Append the Extension to the file path
430
+ $file .= '.php';
431
+
432
+ // Skip non-existent files
433
+ if ( file_exists( $file ) ) {
434
+ /**
435
+ * A more Specific Filter that will include the template name
436
+ *
437
+ * @since 4.6.2
438
+ * @since 4.7.20 The $name param no longers contains the extension
439
+ *
440
+ * @param string $file Complete path to include the PHP File
441
+ * @param array $name Template name
442
+ * @param self $template Current instance of the Tribe__Template
443
+ */
444
+ return apply_filters( 'tribe_template_file', $file, $name, $this );
445
+ }
446
+ }
447
+
448
+ // Couldn't find a template on the Stack
449
+ return false;
450
+ }
451
+
452
+ /**
453
+ * A very simple method to include a Template, allowing filtering and additions using hooks.
454
  *
455
  * @since 4.6.2
456
  *
469
  // Clean this Variable
470
  $name = array_map( 'sanitize_title_with_dashes', $name );
471
 
472
+ if ( ! empty( $this->origin->template_namespace ) ) {
473
+ $namespace = array_merge( (array) $this->origin->template_namespace, $name );
474
+ } else {
475
+ $namespace = $name;
476
+ }
477
 
478
+ // Setup the Hook name
479
+ $hook_name = implode( '/', $namespace );
480
 
481
+ // Check if the file exists
482
+ $file = $this->get_template_file( $name );
483
+
484
+ // Check if it's a valid variable
485
+ if ( ! $file ) {
486
+ return false;
487
+ }
 
 
 
488
 
489
  // Before we load the file we check if it exists
490
  if ( ! file_exists( $file ) ) {
500
  * Fires an Action before including the template file
501
  *
502
  * @since 4.6.2
503
+ * @since 4.7.20 The $name param no longers contains the extension
504
  *
505
  * @param string $file Complete path to include the PHP File
506
  * @param array $name Template name
508
  */
509
  do_action( 'tribe_template_before_include', $file, $name, $this );
510
 
511
+ /**
512
+ * Fires an Action for a given template name before including the template file
513
+ *
514
+ * E.g.:
515
+ * `tribe_template_before_include:events/blocks/parts/details`
516
+ * `tribe_template_before_include:events/embed`
517
+ * `tribe_template_before_include:tickets/login-to-purchase`
518
+ *
519
+ * @since 4.7.20
520
+ *
521
+ * @param string $file Complete path to include the PHP File
522
+ * @param array $name Template name
523
+ * @param self $template Current instance of the Tribe__Template
524
+ */
525
+ do_action( "tribe_template_before_include:$hook_name", $file, $name, $this );
526
+
527
  // Only do this if really needed (by default it wont)
528
  if ( true === $this->template_context_extract && ! empty( $this->context ) ) {
529
  // We don't allow Extrating of a variable called $name
543
  include $file;
544
 
545
  /**
546
+ * Fires an Action after including the template file
547
  *
548
  * @since 4.6.2
549
+ * @since 4.7.20 The $name param no longers contains the extension
550
  *
551
  * @param string $file Complete path to include the PHP File
552
  * @param array $name Template name
554
  */
555
  do_action( 'tribe_template_after_include', $file, $name, $this );
556
 
557
+ /**
558
+ * Fires an Action for a given template name after including the template file
559
+ *
560
+ * E.g.:
561
+ * `tribe_template_after_include:events/blocks/parts/details`
562
+ * `tribe_template_after_include:events/embed`
563
+ * `tribe_template_after_include:tickets/login-to-purchase`
564
+ *
565
+ * @since 4.7.20
566
+ *
567
+ * @param string $file Complete path to include the PHP File
568
+ * @param array $name Template name
569
+ * @param self $template Current instance of the Tribe__Template
570
+ */
571
+ do_action( "tribe_template_after_include:$hook_name", $file, $name, $this );
572
+
573
  // Only fetch the contents after the action
574
  $html = ob_get_clean();
575
 
577
  * Allow users to filter the final HTML
578
  *
579
  * @since 4.6.2
580
+ * @since 4.7.20 The $name param no longers contains the extension
581
  *
582
  * @param string $html The final HTML
583
  * @param string $file Complete path to include the PHP File
586
  */
587
  $html = apply_filters( 'tribe_template_html', $html, $file, $name, $this );
588
 
589
+ /**
590
+ * Allow users to filter the final HTML by the name
591
+ *
592
+ * E.g.:
593
+ * `tribe_template_html:events/blocks/parts/details`
594
+ * `tribe_template_html:events/embed`
595
+ * `tribe_template_html:tickets/login-to-purchase`
596
+ *
597
+ * @since 4.7.20
598
+ *
599
+ * @param string $html The final HTML
600
+ * @param string $file Complete path to include the PHP File
601
+ * @param array $name Template name
602
+ * @param self $template Current instance of the Tribe__Template
603
+ */
604
+ $html = apply_filters( "tribe_template_html:$hook_name", $html, $file, $name, $this );
605
+
606
  if ( $echo ) {
607
  echo $html;
608
  }
common/src/Tribe/Validator/Base.php CHANGED
@@ -34,6 +34,19 @@ class Tribe__Validator__Base implements Tribe__Validator__Interface {
34
  return ! empty( $value ) && is_string( $value );
35
  }
36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  /**
38
  * Whether the value is a timestamp or a string parseable by the strtotime function or not.
39
  *
@@ -166,6 +179,21 @@ class Tribe__Validator__Base implements Tribe__Validator__Interface {
166
  return false;
167
  }
168
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
169
  /**
170
  * @param mixed $value
171
  *
@@ -188,6 +216,23 @@ class Tribe__Validator__Base implements Tribe__Validator__Interface {
188
  return (bool) filter_var( $input, FILTER_VALIDATE_URL );
189
  }
190
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
191
  /**
192
  * Whether a string represents a valid and registered post status or not.
193
  *
34
  return ! empty( $value ) && is_string( $value );
35
  }
36
 
37
+ /**
38
+ * @param mixed $value
39
+ *
40
+ * @return bool
41
+ */
42
+ public function is_string_or_empty( $value ) {
43
+ if ( empty( $value ) ) {
44
+ return true;
45
+ }
46
+
47
+ return $this->is_string( $value );
48
+ }
49
+
50
  /**
51
  * Whether the value is a timestamp or a string parseable by the strtotime function or not.
52
  *
179
  return false;
180
  }
181
 
182
+ /**
183
+ * Whether the provided value points to an existing attachment ID, an existing image URL, or is empty.
184
+ *
185
+ * @param int|string $image
186
+ *
187
+ * @return mixed
188
+ */
189
+ public function is_image_or_empty( $image ) {
190
+ if ( empty( $image ) ) {
191
+ return true;
192
+ }
193
+
194
+ return $this->is_image( $image );
195
+ }
196
+
197
  /**
198
  * @param mixed $value
199
  *
216
  return (bool) filter_var( $input, FILTER_VALIDATE_URL );
217
  }
218
 
219
+ /**
220
+ * Whether a string represents a valid array or not.
221
+ *
222
+ * Valid means that the string looks like a URL, not that the URL is online and reachable.
223
+ *
224
+ * @param string $input
225
+ *
226
+ * @return bool
227
+ */
228
+ public function is_url_or_empty( $input ) {
229
+ if ( empty( $input ) ) {
230
+ return true;
231
+ }
232
+
233
+ return $this->is_url( $input );
234
+ }
235
+
236
  /**
237
  * Whether a string represents a valid and registered post status or not.
238
  *
common/src/Tribe/View_Helpers.php CHANGED
@@ -20,11 +20,12 @@ if ( ! class_exists( 'Tribe__View_Helpers' ) ) {
20
  * @return array The countries array.
21
  */
22
  public static function constructCountries( $postId = '', $useDefault = true ) {
 
23
 
24
- if ( tribe_get_option( 'tribeEventsCountries' ) != '' ) {
25
  $countries = array();
26
 
27
- $country_rows = explode( "\n", tribe_get_option( 'tribeEventsCountries' ) );
28
  foreach ( $country_rows as $crow ) {
29
  $country = explode( ',', $crow );
30
  if ( isset( $country[0] ) && isset( $country[1] ) ) {
@@ -38,7 +39,7 @@ if ( ! class_exists( 'Tribe__View_Helpers' ) ) {
38
  }
39
  }
40
 
41
- if ( ! isset( $countries ) || ! is_array( $countries ) || count( $countries ) == 1 ) {
42
  $countries = tribe( 'languages.locations' )->get_countries();
43
  }
44
 
20
  * @return array The countries array.
21
  */
22
  public static function constructCountries( $postId = '', $useDefault = true ) {
23
+ $eventCountries = tribe_get_option( 'tribeEventsCountries' );
24
 
25
+ if ( $eventCountries != '' ) {
26
  $countries = array();
27
 
28
+ $country_rows = explode( "\n", $eventCountries );
29
  foreach ( $country_rows as $crow ) {
30
  $country = explode( ',', $crow );
31
  if ( isset( $country[0] ) && isset( $country[1] ) ) {
39
  }
40
  }
41
 
42
+ if ( ! isset( $countries ) || ! is_array( $countries ) || count( $countries ) < 1 ) {
43
  $countries = tribe( 'languages.locations' )->get_countries();
44
  }
45
 
common/src/functions/utils.php CHANGED
@@ -231,6 +231,32 @@ if ( ! function_exists( 'tribe_is_truthy' ) ) {
231
  }
232
  }
233
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
234
  if ( ! function_exists( 'tribe_normalize_terms_list' ) ) {
235
  /**
236
  * Normalizes a list of terms to a list of fields.
231
  }
232
  }
233
 
234
+ /**
235
+ * Sorting function based on Priority
236
+ *
237
+ * @since 4.7.20
238
+ *
239
+ * @param object|array $a First Subject to compare
240
+ * @param object|array $b Second subject to compare
241
+ *
242
+ * @return int
243
+ */
244
+ function tribe_sort_by_priority( $a, $b ) {
245
+ if ( is_array( $a ) ) {
246
+ $a_priority = $a['priority'];
247
+ } else {
248
+ $a_priority = $a->priority;
249
+ }
250
+
251
+ if ( is_array( $b ) ) {
252
+ $b_priority = $b['priority'];
253
+ } else {
254
+ $b_priority = $b->priority;
255
+ }
256
+
257
+ return (int) $a_priority === (int) $b_priority ? 0 : (int) $a_priority > (int) $b_priority;
258
+ }
259
+
260
  if ( ! function_exists( 'tribe_normalize_terms_list' ) ) {
261
  /**
262
  * Normalizes a list of terms to a list of fields.
common/tribe-common.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  Description: An event settings framework for managing shared options
4
- Version: 4.7.19
5
  Author: Modern Tribe, Inc.
6
  Author URI: http://m.tri.be/1x
7
  Text Domain: tribe-common
1
  <?php
2
  /*
3
  Description: An event settings framework for managing shared options
4
+ Version: 4.7.20
5
  Author: Modern Tribe, Inc.
6
  Author URI: http://m.tri.be/1x
7
  Text Domain: tribe-common
lang/the-events-calendar-af.po CHANGED
@@ -11,6 +11,31 @@ msgstr ""
11
  "Language: af_ZA\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: src/views/month/single-day.php:57
15
  msgid "%s for %s"
16
  msgstr ""
@@ -183,91 +208,91 @@ msgstr ""
183
  msgid "Do more with Eventbrite Tickets"
184
  msgstr ""
185
 
186
- #: src/Tribe/Main.php:4513
187
  msgid "Search for %s by month. Please use the format %s."
188
  msgstr ""
189
 
190
- #: src/Tribe/Main.php:4508
191
  msgid "Search for %s by Date. Please use the format %s."
192
  msgstr ""
193
 
194
- #: src/Tribe/Main.php:4476 src/Tribe/Main.php:4477
195
  msgid "2 digit month dot 4 digit year"
196
  msgstr ""
197
 
198
- #: src/Tribe/Main.php:4475
199
  msgid "4 digit year dot 2 digit month"
200
  msgstr ""
201
 
202
- #: src/Tribe/Main.php:4474
203
  msgid "2 digit month hyphen 4 digit year"
204
  msgstr ""
205
 
206
- #: src/Tribe/Main.php:4471 src/Tribe/Main.php:4472 src/Tribe/Main.php:4473
207
  msgid "1 digit month hyphen 4 digit year"
208
  msgstr ""
209
 
210
- #: src/Tribe/Main.php:4468 src/Tribe/Main.php:4470
211
  msgid "2 digit month slash 4 digit year"
212
  msgstr ""
213
 
214
- #: src/Tribe/Main.php:4467 src/Tribe/Main.php:4469
215
  msgid "1 digit month slash 4 digit year"
216
  msgstr ""
217
 
218
- #: src/Tribe/Main.php:4466
219
  msgid "4 digit year hyphen 2 digit month"
220
  msgstr ""
221
 
222
- #: src/Tribe/Main.php:4462
223
  msgid "2 digit day dot 2 digit month dot 4 digit year"
224
  msgstr ""
225
 
226
- #: src/Tribe/Main.php:4461
227
  msgid "2 digit month dot 2 digit day dot 4 digit year"
228
  msgstr ""
229
 
230
- #: src/Tribe/Main.php:4460
231
  msgid "4 digit year dot 2 digit month dot 2 digit day"
232
  msgstr ""
233
 
234
- #: src/Tribe/Main.php:4459
235
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
236
  msgstr ""
237
 
238
- #: src/Tribe/Main.php:4458
239
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
240
  msgstr ""
241
 
242
- #: src/Tribe/Main.php:4457
243
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
244
  msgstr ""
245
 
246
- #: src/Tribe/Main.php:4456
247
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
248
  msgstr ""
249
 
250
- #: src/Tribe/Main.php:4455
251
  msgid "2 digit day slash 2 digit month slash 4 digit year"
252
  msgstr ""
253
 
254
- #: src/Tribe/Main.php:4454
255
  msgid "1 digit day slash 1 digit month slash 4 digit year"
256
  msgstr ""
257
 
258
- #: src/Tribe/Main.php:4453
259
  msgid "2 digit month slash 2 digit day slash 4 digit year"
260
  msgstr ""
261
 
262
- #: src/Tribe/Main.php:4452
263
  msgid "1 digit month slash 1 digit day slash 4 digit year"
264
  msgstr ""
265
 
266
- #: src/Tribe/Main.php:4451
267
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
268
  msgstr ""
269
 
270
- #: src/Tribe/Main.php:4430
271
  msgid "Search for %s by Keyword."
272
  msgstr ""
273
 
@@ -495,7 +520,7 @@ msgid "Search our support help desk"
495
  msgstr ""
496
 
497
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
498
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:369
499
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
500
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
501
  msgid "The requested page was not found."
@@ -509,12 +534,12 @@ msgstr ""
509
  msgid "one week"
510
  msgstr ""
511
 
512
- #: src/Tribe/Aggregator/Record/List_Table.php:570
513
  msgctxt "when the retry will happen, a date"
514
  msgid "retrying at %s"
515
  msgstr ""
516
 
517
- #: src/Tribe/Aggregator/Record/List_Table.php:567
518
  msgctxt "in human readable time"
519
  msgid "retrying in about %s"
520
  msgstr ""
@@ -596,7 +621,7 @@ msgid "Main %s Page"
596
  msgstr ""
597
 
598
  #: common/src/Tribe/Plugins_API.php:71
599
- msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Tickets have QR codes for easy check in at the door."
600
  msgstr ""
601
 
602
  #: src/admin-views/tribe-options-general.php:31
@@ -628,7 +653,7 @@ msgstr ""
628
  msgid "The event with the specified ID is not accessible."
629
  msgstr ""
630
 
631
- #: src/Tribe/Main.php:1813
632
  msgid "%1$s published. %2$sView %3$s"
633
  msgstr ""
634
 
@@ -979,11 +1004,11 @@ msgstr ""
979
  msgid "the event post name"
980
  msgstr ""
981
 
982
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:341
983
  msgid "The event organizer IDs or data"
984
  msgstr ""
985
 
986
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:333
987
  msgid "The event venue ID or data"
988
  msgstr ""
989
 
@@ -1226,32 +1251,32 @@ msgstr ""
1226
  msgid "Returns all the organizers matching the search criteria"
1227
  msgstr ""
1228
 
1229
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:478
1230
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1231
  msgstr ""
1232
 
1233
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:472
1234
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1235
  msgstr ""
1236
 
1237
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:466
1238
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1239
  msgstr ""
1240
 
1241
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:461
1242
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1243
  msgid "The event post status"
1244
  msgstr ""
1245
 
1246
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1247
  msgid "Events should be filtered by their featured status"
1248
  msgstr ""
1249
 
1250
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:446
1251
  msgid "Events should be assigned one of the specified organizer IDs"
1252
  msgstr ""
1253
 
1254
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
1255
  msgid "Events should be assigned one of the specified venue IDs"
1256
  msgstr ""
1257
 
@@ -1345,48 +1370,48 @@ msgstr ""
1345
  msgid "The event status"
1346
  msgstr ""
1347
 
1348
- #: src/Tribe/Linked_Posts.php:1126
1349
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1350
  msgid "Create or Find %s"
1351
  msgstr ""
1352
 
1353
- #: src/Tribe/Linked_Posts.php:1117
1354
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1355
  msgid "Find %1$s %2$s"
1356
  msgstr ""
1357
 
1358
- #: src/Tribe/Linked_Posts.php:1108
1359
  msgid "Find a Venue"
1360
  msgstr ""
1361
 
1362
- #: src/Tribe/Linked_Posts.php:1107
1363
  msgid "Create or Find a Venue"
1364
  msgstr ""
1365
 
1366
- #: src/Tribe/Linked_Posts.php:1100
1367
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1368
  msgid "Create or Find %s"
1369
  msgstr ""
1370
 
1371
- #: src/Tribe/Linked_Posts.php:1091
1372
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1373
  msgid "Find %1$s %2$s"
1374
  msgstr ""
1375
 
1376
- #: src/Tribe/Linked_Posts.php:1080
1377
  msgid "Find an Organizer"
1378
  msgstr ""
1379
 
1380
- #: src/Tribe/Linked_Posts.php:1079
1381
  msgid "Create or Find an Organizer"
1382
  msgstr ""
1383
 
1384
- #: src/Tribe/Linked_Posts.php:1072
1385
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1386
  msgid "Create or Find %s"
1387
  msgstr ""
1388
 
1389
- #: src/Tribe/Linked_Posts.php:1063
1390
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1391
  msgid "Find %1$s %2$s"
1392
  msgstr ""
@@ -1482,20 +1507,20 @@ msgstr ""
1482
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1483
  msgstr ""
1484
 
1485
- #: src/Tribe/Main.php:997
1486
  msgid "edit Events settings."
1487
  msgstr ""
1488
 
1489
- #: src/Tribe/Main.php:988
1490
  msgid "Edit the %s slug"
1491
  msgstr ""
1492
 
1493
- #: src/Tribe/Linked_Posts.php:1049
1494
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1495
  msgid "an"
1496
  msgstr ""
1497
 
1498
- #: src/Tribe/Linked_Posts.php:1042
1499
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1500
  msgid "a"
1501
  msgstr ""
@@ -1537,10 +1562,6 @@ msgstr ""
1537
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1538
  msgstr ""
1539
 
1540
- #: common/src/Tribe/Plugins_API.php:37
1541
- msgid "Import events from across the web! Event Aggregator makes it easy to run scheduled or manual imports from Facebook, Meetup, Eventbrite, Google Calendar, and iCalendar, along with uploads from CSV and ICS files. You can also import directly from other sites running The Events Calendar thanks to our built-in REST API support."
1542
- msgstr ""
1543
-
1544
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1545
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1546
  msgstr ""
@@ -1585,7 +1606,7 @@ msgstr ""
1585
  msgid "The event WordPress post ID"
1586
  msgstr ""
1587
 
1588
- #: src/Tribe/Aggregator/Record/Abstract.php:362
1589
  msgid "Something went wrong while inserting the record in the database."
1590
  msgstr ""
1591
 
@@ -1603,7 +1624,7 @@ msgstr[1] ""
1603
  msgid "Please refresh the page and try your request again."
1604
  msgstr ""
1605
 
1606
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:28
1607
  msgid "The image WordPress post ID"
1608
  msgstr ""
1609
 
@@ -1663,11 +1684,11 @@ msgstr ""
1663
  msgid "The event last modification date in UTC time"
1664
  msgstr ""
1665
 
1666
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:403
1667
  msgid "Events should start after the specified date"
1668
  msgstr ""
1669
 
1670
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:410
1671
  msgid "Events should start before the specified date"
1672
  msgstr ""
1673
 
@@ -1703,7 +1724,7 @@ msgstr ""
1703
  msgid "the event post ID"
1704
  msgstr ""
1705
 
1706
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:416
1707
  msgid "Events should contain the specified string in the title or description"
1708
  msgstr ""
1709
 
@@ -1999,31 +2020,31 @@ msgid "The requested URL does not have any upcoming and published events matchin
1999
  msgstr ""
2000
 
2001
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2002
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:388
2003
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2004
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2005
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2006
  msgid "The archive page to return"
2007
  msgstr ""
2008
 
2009
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:396
2010
  msgid "The number of events to return on each page"
2011
  msgstr ""
2012
 
2013
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:422
2014
  msgid "Events should be assigned one of the specified categories slugs or IDs"
2015
  msgstr ""
2016
 
2017
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:430
2018
  msgid "Events should be assigned one of the specified tags slugs or IDs"
2019
  msgstr ""
2020
 
2021
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:358
2022
  msgid "Returns all the upcoming events matching the search criteria"
2023
  msgstr ""
2024
 
2025
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:36
2026
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:366
2027
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:64
2028
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:53
2029
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:61
@@ -2238,13 +2259,13 @@ msgstr ""
2238
  msgid "three months"
2239
  msgstr ""
2240
 
2241
- #: src/Tribe/Aggregator/Tabs/New.php:373
2242
  msgid "%1$d new event tag was created."
2243
  msgid_plural "%1$d new event tags were created."
2244
  msgstr[0] ""
2245
  msgstr[1] ""
2246
 
2247
- #: src/Tribe/Aggregator/Tabs/New.php:377
2248
  msgid "View your event tags"
2249
  msgstr ""
2250
 
@@ -2303,7 +2324,7 @@ msgstr ""
2303
  msgid "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2304
  msgstr ""
2305
 
2306
- #: src/Tribe/Main.php:765
2307
  msgctxt "all events slug"
2308
  msgid "all"
2309
  msgstr ""
@@ -2344,7 +2365,7 @@ msgstr ""
2344
  msgid "The WordPress term ID"
2345
  msgstr ""
2346
 
2347
- #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:36
2348
  msgid "The link to the image in the specified size on the site"
2349
  msgstr ""
2350
 
@@ -2360,19 +2381,19 @@ msgstr ""
2360
  msgid "The image width in pixels in the specified size"
2361
  msgstr ""
2362
 
2363
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:44
2364
  msgid "The details about each size available for the image"
2365
  msgstr ""
2366
 
2367
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:40
2368
  msgid "The image natural height in pixels"
2369
  msgstr ""
2370
 
2371
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:36
2372
  msgid "The image natural width in pixels"
2373
  msgstr ""
2374
 
2375
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:32
2376
  msgid "The image file extension"
2377
  msgstr ""
2378
 
@@ -2380,7 +2401,7 @@ msgstr ""
2380
  msgid "The venue WordPress post ID"
2381
  msgstr ""
2382
 
2383
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:24
2384
  msgid "The URL to the full size version of the image"
2385
  msgstr ""
2386
 
@@ -2420,7 +2441,7 @@ msgstr ""
2420
  msgid "The cost currency symbol"
2421
  msgstr ""
2422
 
2423
- #: src/Tribe/Main.php:4434
2424
  msgid "Keyword"
2425
  msgstr ""
2426
 
@@ -2495,12 +2516,12 @@ msgstr ""
2495
  msgid "Export Events"
2496
  msgstr ""
2497
 
2498
- #: src/Tribe/Main.php:764
2499
  msgctxt "featured events slug"
2500
  msgid "featured"
2501
  msgstr ""
2502
 
2503
- #: src/Tribe/Linked_Posts.php:1005
2504
  msgid "Create: <b><%= term %></b>"
2505
  msgstr ""
2506
 
@@ -2649,175 +2670,177 @@ msgstr ""
2649
  msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2650
  msgstr ""
2651
 
2652
- #: src/Tribe/Asset/Dynamic.php:77
2653
  msgid "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2654
  msgstr ""
2655
 
2656
- #: src/Tribe/Asset/Dynamic.php:76
2657
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2658
  msgstr ""
2659
 
2660
- #: src/Tribe/Asset/Dynamic.php:75
2661
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2662
  msgstr ""
2663
 
2664
- #: src/Tribe/Asset/Dynamic.php:74
2665
  msgid "This event is all day on %%startdatewithyear%%."
2666
  msgstr ""
2667
 
2668
- #: src/Tribe/Asset/Dynamic.php:73
2669
  msgid "This event is at %%starttime%% on %%startdatewithyear%%."
2670
  msgstr ""
2671
 
2672
- #: src/Tribe/Asset/Dynamic.php:72
2673
  msgid "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2674
  msgstr ""
2675
 
2676
- #: src/Tribe/Asset/Dynamic.php:69
2677
  msgid "Dec"
2678
  msgstr ""
2679
 
2680
- #: src/Tribe/Asset/Dynamic.php:68
2681
  msgid "Nov"
2682
  msgstr ""
2683
 
2684
- #: src/Tribe/Asset/Dynamic.php:67
2685
  msgid "Oct"
2686
  msgstr ""
2687
 
2688
- #: src/Tribe/Asset/Dynamic.php:66
2689
  msgid "Sep"
2690
  msgstr ""
2691
 
2692
- #: src/Tribe/Asset/Dynamic.php:65
2693
  msgid "Aug"
2694
  msgstr ""
2695
 
2696
- #: src/Tribe/Asset/Dynamic.php:64
2697
  msgid "Jul"
2698
  msgstr ""
2699
 
2700
- #: src/Tribe/Asset/Dynamic.php:63
2701
  msgid "Jun"
2702
  msgstr ""
2703
 
2704
- #: src/Tribe/Asset/Dynamic.php:61
2705
  msgid "Apr"
2706
  msgstr ""
2707
 
2708
- #: src/Tribe/Asset/Dynamic.php:60
2709
  msgid "Mar"
2710
  msgstr ""
2711
 
2712
- #: src/Tribe/Asset/Dynamic.php:59
2713
  msgid "Feb"
2714
  msgstr ""
2715
 
2716
- #: src/Tribe/Asset/Dynamic.php:58
2717
  msgid "Jan"
2718
  msgstr ""
2719
 
2720
- #: src/Tribe/Asset/Dynamic.php:55
2721
  msgid "December"
2722
  msgstr ""
2723
 
2724
- #: src/Tribe/Asset/Dynamic.php:54
2725
  msgid "November"
2726
  msgstr ""
2727
 
2728
- #: src/Tribe/Asset/Dynamic.php:53
2729
  msgid "October"
2730
  msgstr ""
2731
 
2732
- #: src/Tribe/Asset/Dynamic.php:52
2733
  msgid "September"
2734
  msgstr ""
2735
 
2736
- #: src/Tribe/Asset/Dynamic.php:51
2737
  msgid "August"
2738
  msgstr ""
2739
 
2740
- #: src/Tribe/Asset/Dynamic.php:50
2741
  msgid "July"
2742
  msgstr ""
2743
 
2744
- #: src/Tribe/Asset/Dynamic.php:49
2745
  msgid "June"
2746
  msgstr ""
2747
 
2748
- #: src/Tribe/Asset/Dynamic.php:48 src/Tribe/Asset/Dynamic.php:62
 
 
2749
  msgid "May"
2750
  msgstr ""
2751
 
2752
- #: src/Tribe/Asset/Dynamic.php:47
2753
  msgid "April"
2754
  msgstr ""
2755
 
2756
- #: src/Tribe/Asset/Dynamic.php:46
2757
  msgid "March"
2758
  msgstr ""
2759
 
2760
- #: src/Tribe/Asset/Dynamic.php:45
2761
  msgid "February"
2762
  msgstr ""
2763
 
2764
- #: src/Tribe/Asset/Dynamic.php:44
2765
  msgid "January"
2766
  msgstr ""
2767
 
2768
- #: src/Tribe/Asset/Dynamic.php:41
2769
  msgid "Sat"
2770
  msgstr ""
2771
 
2772
- #: src/Tribe/Asset/Dynamic.php:40
2773
  msgid "Fri"
2774
  msgstr ""
2775
 
2776
- #: src/Tribe/Asset/Dynamic.php:39
2777
  msgid "Thu"
2778
  msgstr ""
2779
 
2780
- #: src/Tribe/Asset/Dynamic.php:38
2781
  msgid "Wed"
2782
  msgstr ""
2783
 
2784
- #: src/Tribe/Asset/Dynamic.php:37
2785
  msgid "Tue"
2786
  msgstr ""
2787
 
2788
- #: src/Tribe/Asset/Dynamic.php:36
2789
  msgid "Mon"
2790
  msgstr ""
2791
 
2792
- #: src/Tribe/Asset/Dynamic.php:35
2793
  msgid "Sun"
2794
  msgstr ""
2795
 
2796
- #: src/Tribe/Asset/Dynamic.php:32
2797
  msgid "Saturday"
2798
  msgstr ""
2799
 
2800
- #: src/Tribe/Asset/Dynamic.php:31
2801
  msgid "Friday"
2802
  msgstr ""
2803
 
2804
- #: src/Tribe/Asset/Dynamic.php:30
2805
  msgid "Thursday"
2806
  msgstr ""
2807
 
2808
- #: src/Tribe/Asset/Dynamic.php:29
2809
  msgid "Wednesday"
2810
  msgstr ""
2811
 
2812
- #: src/Tribe/Asset/Dynamic.php:28
2813
  msgid "Tuesday"
2814
  msgstr ""
2815
 
2816
- #: src/Tribe/Asset/Dynamic.php:27
2817
  msgid "Monday"
2818
  msgstr ""
2819
 
2820
- #: src/Tribe/Asset/Dynamic.php:26
2821
  msgid "Sunday"
2822
  msgstr ""
2823
 
@@ -2898,11 +2921,11 @@ msgstr ""
2898
  msgid "Unknown service message"
2899
  msgstr ""
2900
 
2901
- #: src/Tribe/Aggregator/Record/List_Table.php:533
2902
  msgid "Unknown"
2903
  msgstr ""
2904
 
2905
- #: src/Tribe/Aggregator/Record/Abstract.php:1205
2906
  msgid "When this import was last scheduled to run, the daily limit for your Event Aggregator license had already been reached."
2907
  msgstr ""
2908
 
@@ -3639,7 +3662,7 @@ msgctxt "Abbreviation for the miles unit of measure"
3639
  msgid "mi"
3640
  msgstr ""
3641
 
3642
- #: src/Tribe/Main.php:983
3643
  msgid "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3644
  msgstr ""
3645
 
@@ -3864,133 +3887,133 @@ msgstr ""
3864
  msgid "Scheduled Imports"
3865
  msgstr ""
3866
 
3867
- #: src/Tribe/Aggregator/Tabs/New.php:603
3868
  msgid "Renew your Event Aggregator license"
3869
  msgstr ""
3870
 
3871
- #: src/Tribe/Aggregator/Tabs/New.php:600
3872
  msgid "Renew your license in order to import events from Facebook, iCalendar, Google, or Meetup."
3873
  msgstr ""
3874
 
3875
- #: src/Tribe/Aggregator/Tabs/New.php:599
3876
  msgid "Your Event Aggregator license is expired."
3877
  msgstr ""
3878
 
3879
- #: src/Tribe/Aggregator/Tabs/New.php:551
3880
  msgid "Learn More"
3881
  msgstr ""
3882
 
3883
- #: src/Tribe/Aggregator/Tabs/New.php:546 src/Tribe/Aggregator/Tabs/New.php:553
3884
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:19
3885
  msgid "opens in a new window"
3886
  msgstr ""
3887
 
3888
- #: src/Tribe/Aggregator/Tabs/New.php:544
3889
  msgid "Buy It Now"
3890
  msgstr ""
3891
 
3892
- #: src/Tribe/Aggregator/Tabs/New.php:541
3893
  msgid "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3894
  msgstr ""
3895
 
3896
- #: src/Tribe/Aggregator/Tabs/New.php:539
3897
  msgid "Import Using Event Aggregator"
3898
  msgstr ""
3899
 
3900
- #: src/Tribe/Aggregator/Tabs/New.php:452
3901
  msgid "Unable to save credentials"
3902
  msgstr ""
3903
 
3904
- #: src/Tribe/Aggregator/Tabs/New.php:445
3905
  msgid "Credentials have been saved"
3906
  msgstr ""
3907
 
3908
- #: src/Tribe/Aggregator/Tabs/New.php:436
3909
  msgid "The Meetup API key is required."
3910
  msgstr ""
3911
 
3912
- #: src/Tribe/Aggregator/Tabs/New.php:427
3913
  msgid "Invalid credential save nonce"
3914
  msgstr ""
3915
 
3916
- #: src/Tribe/Aggregator/Tabs/New.php:417
3917
  msgid "Invalid credential save request"
3918
  msgstr ""
3919
 
3920
- #: src/Tribe/Aggregator/Tabs/New.php:405
3921
  msgid "View your scheduled imports."
3922
  msgstr ""
3923
 
3924
- #: src/Tribe/Aggregator/Tabs/New.php:401
3925
  msgid "The next import is scheduled for %1$s."
3926
  msgstr ""
3927
 
3928
- #: src/Tribe/Aggregator/Tabs/New.php:394
3929
  msgctxt "separator between date and time"
3930
  msgid " at "
3931
  msgstr ""
3932
 
3933
- #: src/Tribe/Aggregator/Tabs/New.php:390
3934
  msgid "Your scheduled import was saved and the first import is complete!"
3935
  msgstr ""
3936
 
3937
- #: src/Tribe/Aggregator/Tabs/New.php:365
3938
  msgid "View your event categories"
3939
  msgstr ""
3940
 
3941
- #: src/Tribe/Aggregator/Tabs/New.php:361
3942
  msgid "%1$d new event category was created."
3943
  msgid_plural "%1$d new event categories were created."
3944
  msgstr[0] ""
3945
  msgstr[1] ""
3946
 
3947
- #: src/Tribe/Aggregator/Tabs/New.php:352
3948
  msgid "View your event organizers"
3949
  msgstr ""
3950
 
3951
- #: src/Tribe/Aggregator/Tabs/New.php:348
3952
  msgid "%1$d new organizer was imported."
3953
  msgid_plural "%1$d new organizers were imported."
3954
  msgstr[0] ""
3955
  msgstr[1] ""
3956
 
3957
- #: src/Tribe/Aggregator/Tabs/New.php:340
3958
  msgid "View your event venues"
3959
  msgstr ""
3960
 
3961
- #: src/Tribe/Aggregator/Tabs/New.php:336
3962
  msgid "%1$d new venue was imported."
3963
  msgid_plural "%1$d new venues were imported."
3964
  msgstr[0] ""
3965
  msgstr[1] ""
3966
 
3967
- #: src/Tribe/Aggregator/Tabs/New.php:326
3968
  msgid "View all %s"
3969
  msgstr ""
3970
 
3971
- #: src/Tribe/Aggregator/Tabs/New.php:318
3972
  msgid "No %1$s were imported or updated."
3973
  msgstr ""
3974
 
3975
- #: src/Tribe/Aggregator/Tabs/New.php:311
3976
  msgid "%1$d new image was imported."
3977
  msgid_plural "%1$d new images were imported."
3978
  msgstr[0] ""
3979
  msgstr[1] ""
3980
 
3981
- #: src/Tribe/Aggregator/Tabs/New.php:302
3982
  msgid "%1$d already-imported %2$s was skipped."
3983
  msgid_plural "%1$d already-imported %2$s were skipped."
3984
  msgstr[0] ""
3985
  msgstr[1] ""
3986
 
3987
- #: src/Tribe/Aggregator/Tabs/New.php:291
3988
  msgid "%1$d existing %2$s was updated."
3989
  msgid_plural "%1$d existing %2$s were updated."
3990
  msgstr[0] ""
3991
  msgstr[1] ""
3992
 
3993
- #: src/Tribe/Aggregator/Tabs/New.php:279
3994
  msgid "%1$d new %2$s was imported."
3995
  msgid_plural "%1$d new %2$s were imported."
3996
  msgstr[0] ""
@@ -4254,7 +4277,7 @@ msgstr ""
4254
  msgid "Events Aggregator Record"
4255
  msgstr ""
4256
 
4257
- #: src/Tribe/Aggregator/Record/Queue_Realtime.php:178
4258
  msgid "Unable to continue inserting data. Please reload this page to continue/try again."
4259
  msgstr ""
4260
 
@@ -4274,87 +4297,87 @@ msgstr ""
4274
  msgid "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4275
  msgstr ""
4276
 
4277
- #: src/Tribe/Aggregator/Record/Queue_Processor.php:234
4278
  msgid "Could not process queue for Import Record %1$d: %2$s"
4279
  msgstr ""
4280
 
4281
- #: src/Tribe/Aggregator/Record/List_Table.php:657
4282
  msgid "Select %s"
4283
  msgstr ""
4284
 
4285
- #: src/Tribe/Aggregator/Record/List_Table.php:622
4286
- #: src/Tribe/Aggregator/Record/List_Table.php:631
4287
- #: src/Tribe/Aggregator/Record/List_Table.php:639
4288
  msgid "updated"
4289
  msgstr ""
4290
 
4291
- #: src/Tribe/Aggregator/Record/List_Table.php:620
4292
- #: src/Tribe/Aggregator/Record/List_Table.php:628
4293
- #: src/Tribe/Aggregator/Record/List_Table.php:636
4294
  msgid "new"
4295
  msgstr ""
4296
 
4297
- #: src/Tribe/Aggregator/Record/List_Table.php:617
4298
  msgid "Latest Import:"
4299
  msgstr ""
4300
 
4301
- #: src/Tribe/Aggregator/Record/List_Table.php:615
4302
  msgid "all time"
4303
  msgstr ""
4304
 
4305
- #: src/Tribe/Aggregator/Record/List_Table.php:589
4306
  msgid "One Time"
4307
  msgstr ""
4308
 
4309
- #: src/Tribe/Aggregator/Record/List_Table.php:586
4310
  msgid "Invalid Frequency"
4311
  msgstr ""
4312
 
4313
- #: src/Tribe/Aggregator/Record/List_Table.php:556 src/Tribe/Aggregator.php:426
4314
  #: src/Tribe/Ignored_Events.php:357
4315
  #: src/admin-views/tribe-options-addons-api.php:36
4316
  msgctxt "in human readable time"
4317
  msgid "in about %s"
4318
  msgstr ""
4319
 
4320
- #: src/Tribe/Aggregator/Record/List_Table.php:554 src/Tribe/Aggregator.php:424
4321
  #: src/Tribe/Ignored_Events.php:355
4322
  #: src/admin-views/tribe-options-addons-api.php:34
4323
  msgctxt "human readable time ago"
4324
  msgid "about %s ago"
4325
  msgstr ""
4326
 
4327
- #: src/Tribe/Aggregator/Record/List_Table.php:506
4328
  msgid "Radius:"
4329
  msgstr ""
4330
 
4331
- #: src/Tribe/Aggregator/Record/List_Table.php:489
4332
  msgid "Keywords:"
4333
  msgstr ""
4334
 
4335
- #: src/Tribe/Aggregator/Record/List_Table.php:476
4336
  #: src/Tribe/Ignored_Events.php:337
4337
  msgctxt "record via origin"
4338
  msgid "via "
4339
  msgstr ""
4340
 
4341
- #: src/Tribe/Aggregator/Record/List_Table.php:433
4342
  msgid "Import preview"
4343
  msgstr ""
4344
 
4345
- #: src/Tribe/Aggregator/Record/List_Table.php:429
4346
  msgid "Import pending"
4347
  msgstr ""
4348
 
4349
- #: src/Tribe/Aggregator/Record/List_Table.php:425
4350
  msgid "Import schedule"
4351
  msgstr ""
4352
 
4353
- #: src/Tribe/Aggregator/Record/List_Table.php:413
4354
  msgid "Import failed"
4355
  msgstr ""
4356
 
4357
- #: src/Tribe/Aggregator/Record/List_Table.php:409
4358
  msgid "Import completed"
4359
  msgstr ""
4360
 
@@ -4439,11 +4462,11 @@ msgstr ""
4439
  msgid "Eventbrite"
4440
  msgstr ""
4441
 
4442
- #: src/Tribe/Aggregator/Record/Abstract.php:1148
4443
  msgid "Deleted Attachment: %d"
4444
  msgstr ""
4445
 
4446
- #: src/Tribe/Aggregator/Record/Abstract.php:496
4447
  msgid "Record: "
4448
  msgstr ""
4449
 
@@ -4478,7 +4501,7 @@ msgid "Hide Filters"
4478
  msgstr ""
4479
 
4480
  #: src/Tribe/Aggregator/Page.php:96
4481
- #: src/Tribe/Aggregator/Record/List_Table.php:485
4482
  msgid "View Filters"
4483
  msgstr ""
4484
 
@@ -4836,7 +4859,7 @@ msgid "There is an update for %s. You'll need to %scheck your license%s to have
4836
  msgstr ""
4837
 
4838
  #: common/src/Tribe/PUE/Checker.php:961 common/src/Tribe/PUE/Notices.php:285
4839
- #: src/Tribe/Aggregator/Record/Abstract.php:1163
4840
  msgid " (opens in a new window)"
4841
  msgstr ""
4842
 
@@ -5137,7 +5160,7 @@ msgstr ""
5137
  msgid "No notable changes detected"
5138
  msgstr ""
5139
 
5140
- #: src/Tribe/Main.php:2735
5141
  msgid " (View Full %1$s Description Here: %2$s)"
5142
  msgstr "(Besigitg volle %1$se Beskrywing hier: %2$s)"
5143
 
@@ -5185,147 +5208,147 @@ msgstr "%s Naam kan nie leeg wees nie"
5185
  msgid "Keep the Core Plugin %sFREE%s!"
5186
  msgstr ""
5187
 
5188
- #: src/Tribe/Template_Factory.php:300
5189
  msgid "No results were found for %1$s in or near %2$s."
5190
  msgstr "Daar was geen resultate gevind vir %1$s in of naby %2$s."
5191
 
5192
- #: src/Tribe/Template_Factory.php:298
5193
  msgid "There were no results found for %s."
5194
  msgstr "Daar was geen resultate gevind vir %s."
5195
 
5196
- #: src/Tribe/Template/Month.php:456
5197
  msgid "There were no results found for %s this month. Try searching next month."
5198
  msgstr "Daar was geen resultate gevind vir die %s in die maand nie. Probeer om deur volgende maand te soek."
5199
 
5200
- #: src/Tribe/Template/Day.php:153
5201
  msgid "No %1$s scheduled for %2$s. Please try another day."
5202
  msgstr "Geen %1$s geskeduleer vir %2$s. Probeer 'n ander dag."
5203
 
5204
- #: src/Tribe/Main.php:4254
5205
  msgid "Check out the %savailable add-ons%s."
5206
  msgstr ""
5207
 
5208
- #: src/Tribe/Main.php:1923
5209
  msgid "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5210
  msgstr ""
5211
 
5212
- #: src/Tribe/Main.php:1854 src/Tribe/Main.php:1874
5213
  msgid "%1$s scheduled for: %2$s."
5214
  msgstr ""
5215
 
5216
- #: src/Tribe/Main.php:1835
5217
  msgid "%1$s draft updated. %2$sPreview %3$s"
5218
  msgstr ""
5219
 
5220
- #: src/Tribe/Main.php:1826
5221
  msgid "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5222
  msgstr ""
5223
 
5224
- #: src/Tribe/Main.php:1820
5225
  msgid "%1$s submitted. %2$sPreview %3$s"
5226
  msgstr ""
5227
 
5228
- #: src/Tribe/Main.php:1802
5229
  msgid "%1$s updated. %2$sView %1$s%3$s"
5230
  msgstr ""
5231
 
5232
- #: src/Tribe/Main.php:1477
5233
  msgid "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5234
  msgstr ""
5235
 
5236
- #: src/Tribe/Main.php:1112
5237
  msgid "If you have a valid license for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5238
  msgstr ""
5239
 
5240
- #: src/Tribe/Main.php:1111
5241
  msgid "post a thread"
5242
  msgstr ""
5243
 
5244
- #: src/Tribe/Main.php:1107
5245
  msgid "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays."
5246
  msgstr ""
5247
 
5248
- #: src/Tribe/Main.php:1103
5249
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5250
  msgstr ""
5251
 
5252
- #: src/Tribe/Main.php:1102
5253
  msgid "open-source forum on WordPress.org"
5254
  msgstr ""
5255
 
5256
- #: src/Tribe/Main.php:1098
5257
  msgid "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays"
5258
  msgstr ""
5259
 
5260
- #: src/Tribe/Main.php:1097 src/Tribe/Main.php:1105
5261
  msgid "premium support on our website"
5262
  msgstr ""
5263
 
5264
- #: src/Tribe/Main.php:1095
5265
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5266
  msgstr ""
5267
 
5268
- #: src/Tribe/Main.php:1094
5269
  msgid "Events Tickets"
5270
  msgstr "Gebeurtenis kaartjies"
5271
 
5272
- #: src/Tribe/Main.php:1079
5273
  msgid "Customizing the Events plugins"
5274
  msgstr ""
5275
 
5276
- #: src/Tribe/Main.php:1079
5277
  msgid "%s: Code and guides for customizing your calendar in useful and interesting ways."
5278
  msgstr ""
5279
 
5280
- #: src/Tribe/Main.php:1077
5281
  msgid "Troubleshooting common problems"
5282
  msgstr ""
5283
 
5284
- #: src/Tribe/Main.php:1077
5285
  msgid "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5286
  msgstr ""
5287
 
5288
- #: src/Tribe/Main.php:1075
5289
  msgid "Using stylesheets and page templates"
5290
  msgstr ""
5291
 
5292
- #: src/Tribe/Main.php:1075
5293
  msgid "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5294
  msgstr ""
5295
 
5296
- #: src/Tribe/Main.php:1073
5297
  msgid "Themer’s Guide"
5298
  msgstr ""
5299
 
5300
- #: src/Tribe/Main.php:1073
5301
  msgid "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5302
  msgstr ""
5303
 
5304
- #: src/Tribe/Main.php:1071
5305
  msgid "Features overview"
5306
  msgstr ""
5307
 
5308
- #: src/Tribe/Main.php:1071
5309
  msgid "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5310
  msgstr ""
5311
 
5312
- #: src/Tribe/Main.php:1069
5313
  msgid "Settings overview"
5314
  msgstr ""
5315
 
5316
- #: src/Tribe/Main.php:1069
5317
  msgid "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5318
  msgstr ""
5319
 
5320
- #: src/Tribe/Main.php:1066
5321
  msgid "Support for The Events Calendar"
5322
  msgstr ""
5323
 
5324
- #: src/Tribe/Main.php:1055
5325
  msgid "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5326
  msgstr ""
5327
 
5328
- #: src/Tribe/Main.php:1053
5329
  msgid "New User Primer"
5330
  msgstr ""
5331
 
@@ -5348,7 +5371,7 @@ msgstr ""
5348
  msgid "CSV Import Settings"
5349
  msgstr ""
5350
 
5351
- #: src/Tribe/Asset/Bootstrap_Datepicker.php:26
5352
  msgid "Clear"
5353
  msgstr "Maak Leeg"
5354
 
@@ -5360,7 +5383,7 @@ msgstr "Voeg nog 'n %s by"
5360
  msgid "Create New %s"
5361
  msgstr "Skep Nuwe %s"
5362
 
5363
- #: src/Tribe/Organizer.php:371
5364
  msgid "Unnamed %s"
5365
  msgstr ""
5366
 
@@ -5548,7 +5571,7 @@ msgstr "Kanselleer"
5548
  msgid "%s must be a positive number or percent."
5549
  msgstr ""
5550
 
5551
- #: src/Tribe/Main.php:1000
5552
  msgid "%1$s or %2$s"
5553
  msgstr ""
5554
 
@@ -5605,7 +5628,7 @@ msgstr "Vind meer uit"
5605
  msgid "Day Navigation"
5606
  msgstr "Dag navigasie"
5607
 
5608
- #: src/Tribe/Aggregator/Tabs/New.php:388
5609
  msgid "Import complete!"
5610
  msgstr "Invoer Afgehandel!"
5611
 
@@ -5847,7 +5870,7 @@ msgid "More..."
5847
  msgstr "Meer..."
5848
 
5849
  #: common/src/Tribe/Admin/Help_Page.php:194 common/src/Tribe/Plugins_API.php:43
5850
- #: src/Tribe/Main.php:1106
5851
  msgid "Events Calendar PRO"
5852
  msgstr ""
5853
 
@@ -6286,7 +6309,7 @@ msgstr "Web Adres"
6286
  msgid "%s Website"
6287
  msgstr "%s Webwerf"
6288
 
6289
- #: src/Tribe/Aggregator/Record/List_Table.php:502
6290
  msgid "Location:"
6291
  msgstr ""
6292
 
@@ -7693,15 +7716,15 @@ msgstr "Bloudruk oorheersers moet geskuif word na die korrekte subgids: tribe_ge
7693
  msgid "Template overrides should be moved to the correct subdirectory: %s"
7694
  msgstr "Bloudruk Oorheersers moet geskuif word na die korrekte subgids:% s"
7695
 
7696
- #: src/Tribe/Template_Factory.php:306
7697
  msgid "No previous %s "
7698
  msgstr "Geen vorige %s"
7699
 
7700
- #: src/Tribe/Template_Factory.php:304 src/Tribe/Template_Factory.php:309
7701
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7702
  msgstr "Geen bypassende %1$s op die %2$s lys. Gaan kyk asseblief na die volle kalender vir 'n volledige lys van %3$s."
7703
 
7704
- #: src/Tribe/Template_Factory.php:302
7705
  msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7706
  msgstr "Geen opkomende %1$s op die %2$s lys. Gaan kyk na ander opkomende %3$s vir die kategorie of besoek die volle kalender."
7707
 
@@ -7709,28 +7732,28 @@ msgstr "Geen opkomende %1$s op die %2$s lys. Gaan kyk na ander opkomende %3$s vi
7709
  msgid "This %s has passed."
7710
  msgstr "Hierdie %s is al verby"
7711
 
7712
- #: src/Tribe/Template/Month.php:953
7713
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7714
  msgstr "Die versoekte datum \"%s\" is nie geldig nie &ndash; wys in plaas daarvan die huidige maand"
7715
 
7716
- #: src/Tribe/Template/Month.php:462 src/Tribe/Template_Factory.php:311
7717
  msgid "There were no results found."
7718
  msgstr "Daar was geen resultate gevind nie."
7719
 
7720
- #: src/Tribe/Template/Month.php:460
7721
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7722
  msgstr "Geen bypassende %1$s op die %2$s lys nie. Gaan kyk asseblief na die volle kalender vir 'n volledige lys van gebeure."
7723
 
7724
- #: src/Tribe/Template/Day.php:151
7725
  msgid "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7726
  msgstr "Geen bypassende %1$s op die %2$s lys geskeduleer vir %3$s. Probeer 'n ander dag."
7727
 
7728
- #: src/Tribe/Template/Day.php:117 src/Tribe/Template/Day.php:133
7729
  msgid "Ongoing"
7730
  msgstr "Deurlopend"
7731
 
7732
- #: src/Tribe/Aggregator/Page.php:82 src/Tribe/Template/Day.php:114
7733
- #: src/Tribe/Template/Day.php:130
7734
  msgid "All Day"
7735
  msgstr "Heeldag"
7736
 
@@ -7825,50 +7848,50 @@ msgstr "Lisensiesleutel"
7825
  msgid "Error"
7826
  msgstr "Probleem"
7827
 
7828
- #: src/Tribe/Main.php:4597
7829
  msgid "Once Every 30 Mins"
7830
  msgstr "Eenkeer elke 30 Minute"
7831
 
7832
- #: src/Tribe/Main.php:4517
7833
  msgid "Day Of"
7834
  msgstr "Dag van"
7835
 
7836
- #: src/Tribe/Main.php:4515
7837
  msgid "%s From"
7838
  msgstr "%s Vanaf"
7839
 
7840
- #: src/Tribe/Main.php:4511
7841
  msgid "%s In"
7842
  msgstr "%s In"
7843
 
7844
- #: src/Tribe/Main.php:4506 src/Tribe/Main.php:4531
7845
  #: src/admin-views/aggregator/origins/refine.php:7
7846
  msgid "Date"
7847
  msgstr "Datum"
7848
 
7849
- #: src/Tribe/Main.php:4433
7850
  msgid "Search"
7851
  msgstr "Soek"
7852
 
7853
- #: src/Tribe/Main.php:4407 src/admin-views/aggregator/fields/schedule.php:44
7854
  #: src/admin-views/aggregator/fields/schedule.php:62
7855
  msgid "Day"
7856
  msgstr "Dag"
7857
 
7858
- #: src/Tribe/Main.php:4390
7859
  msgid "Month"
7860
  msgstr "Maand"
7861
 
7862
- #: src/Tribe/Main.php:4372
7863
  msgid "List"
7864
  msgstr "Lys"
7865
 
7866
- #: src/Tribe/Main.php:4356
7867
  msgid "Calendar"
7868
  msgstr "Kalender"
7869
 
7870
  #: common/src/Tribe/Settings.php:254
7871
- #: src/Tribe/Admin/Bar/Default_Configurator.php:89 src/Tribe/Main.php:4355
7872
  msgid "Settings"
7873
  msgstr "Verstellings"
7874
 
@@ -7882,7 +7905,7 @@ msgstr "CSV"
7882
  msgid "Add %s"
7883
  msgstr "Voeg %s by"
7884
 
7885
- #: src/Tribe/Admin/Bar/Default_Configurator.php:45 src/Tribe/Main.php:4306
7886
  msgid "View Calendar"
7887
  msgstr "Vertoon Kalender"
7888
 
@@ -7890,53 +7913,53 @@ msgstr "Vertoon Kalender"
7890
  msgid "%s"
7891
  msgstr "%s"
7892
 
7893
- #: src/Tribe/Main.php:4253
7894
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7895
  msgstr "Op soek na bykomende funksionaliteit, insluitend herhalende gebeure, kaartjieverkope, gemeenskaplike gebeure, nuwe aansigte en meer?"
7896
 
7897
- #: src/Tribe/Main.php:4248
7898
  msgid "Additional Functionality"
7899
  msgstr "Bykomende Funksionaliteit"
7900
 
7901
- #: src/Tribe/Main.php:4203
7902
  msgid "News from Modern Tribe"
7903
  msgstr "Nuus vanaf Modern Tribe"
7904
 
7905
- #: src/Tribe/Main.php:4183
7906
  msgid "View All Add-Ons"
7907
  msgstr "Vertoon alle toevoegings"
7908
 
7909
- #: src/Tribe/Main.php:4180
7910
  msgid "Support"
7911
  msgstr "Ondersteuning"
7912
 
7913
- #: src/Tribe/Main.php:3828 src/Tribe/Main.php:3841
7914
  msgid "%s Information"
7915
  msgstr "%s Informasie"
7916
 
7917
- #: src/Tribe/Main.php:3819
7918
  msgid "%s Options"
7919
  msgstr "%s Opsies"
7920
 
7921
- #: src/Tribe/Main.php:3742 src/Tribe/Main.php:3777
7922
  #: src/functions/template-tags/day.php:157
7923
  #: src/functions/template-tags/day.php:178
7924
  msgid "Date out of range."
7925
  msgstr "Datum is buite die verlangde reeks."
7926
 
7927
- #: src/Tribe/Main.php:2344
7928
  msgid "all"
7929
  msgstr "alle"
7930
 
7931
- #: src/Tribe/Main.php:2343 src/functions/template-tags/general.php:111
7932
  msgid "events"
7933
  msgstr "gebeurtenisse"
7934
 
7935
- #: src/Tribe/Main.php:2342 src/functions/template-tags/general.php:79
7936
  msgid "event"
7937
  msgstr "gebeurtenis"
7938
 
7939
- #: src/Tribe/Main.php:2341
7940
  msgid "page"
7941
  msgstr "bladsy"
7942
 
@@ -7948,7 +7971,8 @@ msgstr "Netwerk"
7948
  msgid "Done"
7949
  msgstr "Afgehandel"
7950
 
7951
- #: common/src/Tribe/Main.php:272 src/Tribe/Asset/Bootstrap_Datepicker.php:27
 
7952
  #: src/functions/template-tags/day.php:104
7953
  msgid "Today"
7954
  msgstr "Vandag"
@@ -7961,141 +7985,141 @@ msgstr "Vorige"
7961
  msgid "Next"
7962
  msgstr "Volgende"
7963
 
7964
- #: src/Tribe/Linked_Posts.php:1010
7965
  msgid "No saved %s exists."
7966
  msgstr "Geen gestoorde %s bestaan nie."
7967
 
7968
- #: src/Tribe/Linked_Posts.php:840
7969
  msgid "Available %s"
7970
  msgstr "Beskikbare %s"
7971
 
7972
- #: src/Tribe/Linked_Posts.php:836
7973
  msgid "My %s"
7974
  msgstr "My %s"
7975
 
7976
- #: src/Tribe/Main.php:1859 src/Tribe/Main.php:1879
7977
  msgid "%s draft updated."
7978
  msgstr ""
7979
 
7980
- #: src/Tribe/Main.php:1852 src/Tribe/Main.php:1872
7981
  msgid "%s submitted."
7982
  msgstr ""
7983
 
7984
- #: src/Tribe/Main.php:1850 src/Tribe/Main.php:1870
7985
  msgid "%s published."
7986
  msgstr ""
7987
 
7988
  #. translators: %s: date and time of the revision
7989
- #: src/Tribe/Main.php:1869
7990
  msgid "%s restored to revision from %s"
7991
  msgstr ""
7992
 
7993
  #. translators: Publish box date format, see http://php.net/date
7994
- #: src/Tribe/Main.php:1829 src/Tribe/Main.php:1857 src/Tribe/Main.php:1877
7995
  msgid "M j, Y @ G:i"
7996
  msgstr "M j, Y @ G:i"
7997
 
7998
- #: src/Tribe/Main.php:1818 src/Tribe/Main.php:1851 src/Tribe/Main.php:1871
7999
  msgid "%s saved."
8000
  msgstr ""
8001
 
8002
  #. translators: %s: date and time of the revision
8003
- #: src/Tribe/Main.php:1811 src/Tribe/Main.php:1849
8004
  msgid "%1$s restored to revision from %2$s"
8005
  msgstr ""
8006
 
8007
- #: src/Tribe/Main.php:1809 src/Tribe/Main.php:1844 src/Tribe/Main.php:1847
8008
- #: src/Tribe/Main.php:1864 src/Tribe/Main.php:1867
8009
  msgid "%s updated."
8010
  msgstr ""
8011
 
8012
- #: src/Tribe/Main.php:1808 src/Tribe/Main.php:1846 src/Tribe/Main.php:1866
8013
  msgid "Custom field deleted."
8014
  msgstr "Bykomende veld verwyder."
8015
 
8016
- #: src/Tribe/Main.php:1807 src/Tribe/Main.php:1845 src/Tribe/Main.php:1865
8017
  msgid "Custom field updated."
8018
  msgstr "Bykomende veld opgedateer."
8019
 
8020
- #: src/Tribe/Main.php:1785
8021
  msgid "New %s Category Name"
8022
  msgstr ""
8023
 
8024
- #: src/Tribe/Main.php:1784
8025
  msgid "Add New %s Category"
8026
  msgstr ""
8027
 
8028
- #: src/Tribe/Main.php:1783
8029
  msgid "Update %s Category"
8030
  msgstr ""
8031
 
8032
- #: src/Tribe/Main.php:1782
8033
  msgid "Edit %s Category"
8034
  msgstr ""
8035
 
8036
- #: src/Tribe/Main.php:1781
8037
  msgid "Parent %s Category:"
8038
  msgstr ""
8039
 
8040
- #: src/Tribe/Main.php:1780
8041
  msgid "Parent %s Category"
8042
  msgstr "Hoof %s Kategorie"
8043
 
8044
- #: src/Tribe/Main.php:1779
8045
  msgid "All %s Categories"
8046
  msgstr "Alle %s Kategorieë"
8047
 
8048
- #: src/Tribe/Main.php:1778
8049
  msgid "Search %s Categories"
8050
  msgstr "Soek deur %s Kategorieë"
8051
 
8052
- #: src/Tribe/Main.php:1777
8053
  msgid "%s Category"
8054
  msgstr "%s Kategorie"
8055
 
8056
- #: src/Tribe/Main.php:1767 src/Tribe/Organizer.php:98 src/Tribe/Venue.php:117
8057
  msgid "No %s found in Trash"
8058
  msgstr "Geen %s in die asblik gevind nie"
8059
 
8060
- #: src/Tribe/Main.php:1766 src/Tribe/Organizer.php:97 src/Tribe/Venue.php:116
8061
  msgid "No %s found"
8062
  msgstr "Geen %s gevind nie"
8063
 
8064
- #: src/Tribe/Main.php:1765 src/Tribe/Organizer.php:96 src/Tribe/Venue.php:115
8065
  msgid "Search %s"
8066
  msgstr "Soek %s"
8067
 
8068
- #: src/Tribe/Main.php:1764 src/Tribe/Organizer.php:95 src/Tribe/Venue.php:114
8069
  #: src/views/month/single-day.php:26
8070
  msgid "View %s"
8071
  msgstr "Besigtig %s"
8072
 
8073
- #: src/Tribe/Main.php:1763 src/Tribe/Organizer.php:94 src/Tribe/Venue.php:113
8074
  msgid "New %s"
8075
  msgstr "Nuwe %s"
8076
 
8077
- #: src/Tribe/Main.php:1761 src/Tribe/Main.php:1893 src/Tribe/Main.php:1894
8078
  #: src/Tribe/Organizer.php:92 src/Tribe/Venue.php:111
8079
  msgid "Add New %s"
8080
  msgstr "Voeg nuwe %s by"
8081
 
8082
- #: src/Tribe/Main.php:1760 src/Tribe/Organizer.php:91 src/Tribe/Venue.php:110
8083
  msgid "Add New"
8084
  msgstr "Voeg By"
8085
 
8086
- #: src/Tribe/Main.php:1727 src/Tribe/Main.php:2339
8087
  msgid "tag"
8088
  msgstr "sleutelwoord"
8089
 
8090
- #: src/Tribe/Main.php:1713 src/Tribe/Main.php:2340
8091
  msgid "category"
8092
  msgstr "Kategorie"
8093
 
8094
- #: src/Tribe/Main.php:1465
8095
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8096
  msgstr "Jammer, Die Kalender vereis PHP% s of hoër. Praat met jou web host oor die beweging van jou na 'n nuwer weergawe van PHP."
8097
 
8098
- #: src/Tribe/Main.php:1462
8099
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8100
  msgstr "Jammer, Die Kalender vereis WordPress% s of hoër. Gradeer asseblief jou WordPress installasie op."
8101
 
@@ -8113,72 +8137,72 @@ msgstr "Help"
8113
  msgid "Display"
8114
  msgstr "Aansig"
8115
 
8116
- #: src/Tribe/Main.php:1309
8117
  msgid "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8118
  msgstr ""
8119
 
8120
- #: src/Tribe/Main.php:1297
8121
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8122
  msgstr "Jou weergawe van The Events Calendar is nie up-op datum met een van jou The Events Calendarr byvoegings. %sDateer asseblief nou op.%s"
8123
 
8124
- #: src/Tribe/Main.php:788
8125
  msgid "Initializing Tribe Events on %s"
8126
  msgstr "InisialiseerTribe Events op %s"
8127
 
8128
- #: src/Tribe/Main.php:763
8129
  msgid "today"
8130
  msgstr "vandag"
8131
 
8132
- #: src/Tribe/Main.php:762
8133
  msgid "day"
8134
  msgstr "dag"
8135
 
8136
- #: src/Tribe/Main.php:761
8137
  msgid "past"
8138
  msgstr "vorige"
8139
 
8140
- #: src/Tribe/Main.php:760
8141
  msgid "upcoming"
8142
  msgstr "komende"
8143
 
8144
- #: src/Tribe/Main.php:759
8145
  msgid "list"
8146
  msgstr "lys"
8147
 
8148
- #: src/Tribe/Main.php:758
8149
  msgid "month"
8150
  msgstr "maand"
8151
 
8152
- #. #-#-#-#-# the-events-calendar-code.pot (The Events Calendar 4.6.20.1)
8153
  #. #-#-#-#-#
8154
  #. Plugin Name of the plugin/theme
8155
  #: common/src/Tribe/Admin/Help_Page.php:59 common/src/Tribe/Customizer.php:569
8156
- #: common/src/Tribe/Plugins_API.php:25 src/Tribe/Main.php:751
8157
- #: src/Tribe/Main.php:1093 src/Tribe/Privacy.php:29
8158
  #: src/functions/template-tags/general.php:1345
8159
  msgid "The Events Calendar"
8160
  msgstr "The Events Calendar"
8161
 
8162
- #: src/Tribe/Main.php:1163 src/admin-views/aggregator/tabs/import-form.php:185
8163
  #: src/admin-views/aggregator/tabs/import-form.php:197
8164
  #: src/functions/template-tags/general.php:63
8165
  msgid "Event"
8166
  msgstr "Gebeurtenis"
8167
 
8168
  #: common/src/Tribe/Settings.php:177 common/src/Tribe/Settings.php:241
8169
- #: common/src/Tribe/Settings.php:242 src/Tribe/Main.php:1155
8170
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:207
8171
  #: src/functions/template-tags/general.php:95
8172
  msgid "Events"
8173
  msgstr "Gebeure"
8174
 
8175
- #: src/Tribe/Organizer.php:157 src/functions/template-tags/organizer.php:115
8176
  msgid "Organizer"
8177
  msgstr "Organiseerder"
8178
 
8179
  #: src/Tribe/Organizer.php:171
8180
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:206
8181
- #: src/functions/template-tags/organizer.php:126
8182
  msgid "Organizers"
8183
  msgstr "Organiseerders"
8184
 
@@ -8442,7 +8466,7 @@ msgstr "Datum:"
8442
  msgid "End:"
8443
  msgstr "Einde:"
8444
 
8445
- #: src/Tribe/Aggregator/Record/List_Table.php:498
8446
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
8447
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
8448
  #: src/views/modules/meta/details.php:66 src/views/modules/meta/details.php:91
@@ -8461,7 +8485,7 @@ msgstr "Eind Datum"
8461
  msgid "Start Date"
8462
  msgstr "Begin Datum"
8463
 
8464
- #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1776
8465
  msgid "%s Categories"
8466
  msgstr "%s Kategorieë"
8467
 
@@ -8472,7 +8496,7 @@ msgstr ""
8472
  #: src/Tribe/Admin/Timezone_Updater.php:87
8473
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
8474
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:100
8475
- #: src/Tribe/Aggregator/Record/Queue_Realtime.php:203
8476
  msgid "%d%% complete"
8477
  msgstr ""
8478
 
@@ -8485,21 +8509,21 @@ msgid "Please wait while time zone data is added to your events."
8485
  msgstr ""
8486
 
8487
  #: src/Tribe/Admin/Bar/Default_Configurator.php:62
8488
- #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:211 src/Tribe/Main.php:1762
8489
- #: src/Tribe/Main.php:4862 src/Tribe/Main.php:4909 src/Tribe/Organizer.php:93
8490
  #: src/Tribe/Venue.php:112
8491
  msgid "Edit %s"
8492
  msgstr "Wysig %s"
8493
 
8494
- #: src/Tribe/Main.php:4846 src/Tribe/Main.php:4903
8495
  msgid "Use Saved %s:"
8496
  msgstr ""
8497
 
8498
- #: src/Tribe/Main.php:992
8499
  msgid " ask the site administrator set a different Events URL slug."
8500
  msgstr ""
8501
 
8502
- #: src/Tribe/Main.php:986
8503
  msgid "Ask the site administrator to edit the %s slug"
8504
  msgstr ""
8505
 
@@ -8507,7 +8531,7 @@ msgstr ""
8507
  msgid "Thanks for Updating The Events Calendar"
8508
  msgstr ""
8509
 
8510
- #: src/Tribe/Main.php:846 src/Tribe/Main.php:848
8511
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
8512
  msgid "Welcome to The Events Calendar"
8513
  msgstr ""
11
  "Language: af_ZA\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
14
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:337
15
+ msgid "The event tag ID or name"
16
+ msgstr ""
17
+
18
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:331
19
+ msgid "The event category ID or name"
20
+ msgstr ""
21
+
22
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:508
23
+ msgid "Events should be filtered by their post_parent being the specified one."
24
+ msgstr ""
25
+
26
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:498
27
+ msgid "Include events with one of the post IDs specified in the array of CSV list, date filters will be ignored."
28
+ msgstr ""
29
+
30
+ #: src/Tribe/Aggregator/Record/Async_Queue.php:348
31
+ #: src/Tribe/Aggregator/Record/Void_Queue.php:122
32
+ msgid "Unable to process this import - a breakage or conflict may have resulted in the import halting."
33
+ msgstr ""
34
+
35
+ #: common/src/Tribe/Plugins_API.php:37
36
+ msgid "Event Aggregator adds massive import functionality to your calendar. Before you know it, you’ll be importing events from Meetup, Eventbrite, Google Calendar, iCalendar, and other URLs with ease. Schedule imports to run automatically behind-the-scenes or run them manually when you’re ready. Go ahead and import to your heart’s content—Event Aggregator hooks you up with a central dashboard in the admin to make managing your imports a breeze."
37
+ msgstr ""
38
+
39
  #: src/views/month/single-day.php:57
40
  msgid "%s for %s"
41
  msgstr ""
208
  msgid "Do more with Eventbrite Tickets"
209
  msgstr ""
210
 
211
+ #: src/Tribe/Main.php:4114
212
  msgid "Search for %s by month. Please use the format %s."
213
  msgstr ""
214
 
215
+ #: src/Tribe/Main.php:4109
216
  msgid "Search for %s by Date. Please use the format %s."
217
  msgstr ""
218
 
219
+ #: src/Tribe/Main.php:4077 src/Tribe/Main.php:4078
220
  msgid "2 digit month dot 4 digit year"
221
  msgstr ""
222
 
223
+ #: src/Tribe/Main.php:4076
224
  msgid "4 digit year dot 2 digit month"
225
  msgstr ""
226
 
227
+ #: src/Tribe/Main.php:4075
228
  msgid "2 digit month hyphen 4 digit year"
229
  msgstr ""
230
 
231
+ #: src/Tribe/Main.php:4072 src/Tribe/Main.php:4073 src/Tribe/Main.php:4074
232
  msgid "1 digit month hyphen 4 digit year"
233
  msgstr ""
234
 
235
+ #: src/Tribe/Main.php:4069 src/Tribe/Main.php:4071
236
  msgid "2 digit month slash 4 digit year"
237
  msgstr ""
238
 
239
+ #: src/Tribe/Main.php:4068 src/Tribe/Main.php:4070
240
  msgid "1 digit month slash 4 digit year"
241
  msgstr ""
242
 
243
+ #: src/Tribe/Main.php:4067
244
  msgid "4 digit year hyphen 2 digit month"
245
  msgstr ""
246
 
247
+ #: src/Tribe/Main.php:4063
248
  msgid "2 digit day dot 2 digit month dot 4 digit year"
249
  msgstr ""
250
 
251
+ #: src/Tribe/Main.php:4062
252
  msgid "2 digit month dot 2 digit day dot 4 digit year"
253
  msgstr ""
254
 
255
+ #: src/Tribe/Main.php:4061
256
  msgid "4 digit year dot 2 digit month dot 2 digit day"
257
  msgstr ""
258
 
259
+ #: src/Tribe/Main.php:4060
260
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
261
  msgstr ""
262
 
263
+ #: src/Tribe/Main.php:4059
264
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
265
  msgstr ""
266
 
267
+ #: src/Tribe/Main.php:4058
268
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
269
  msgstr ""
270
 
271
+ #: src/Tribe/Main.php:4057
272
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
273
  msgstr ""
274
 
275
+ #: src/Tribe/Main.php:4056
276
  msgid "2 digit day slash 2 digit month slash 4 digit year"
277
  msgstr ""
278
 
279
+ #: src/Tribe/Main.php:4055
280
  msgid "1 digit day slash 1 digit month slash 4 digit year"
281
  msgstr ""
282
 
283
+ #: src/Tribe/Main.php:4054
284
  msgid "2 digit month slash 2 digit day slash 4 digit year"
285
  msgstr ""
286
 
287
+ #: src/Tribe/Main.php:4053
288
  msgid "1 digit month slash 1 digit day slash 4 digit year"
289
  msgstr ""
290
 
291
+ #: src/Tribe/Main.php:4052
292
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
293
  msgstr ""
294
 
295
+ #: src/Tribe/Main.php:4031
296
  msgid "Search for %s by Keyword."
297
  msgstr ""
298
 
520
  msgstr ""
521
 
522
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
523
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:385
524
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
525
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
526
  msgid "The requested page was not found."
534
  msgid "one week"
535
  msgstr ""
536
 
537
+ #: src/Tribe/Aggregator/Record/List_Table.php:577
538
  msgctxt "when the retry will happen, a date"
539
  msgid "retrying at %s"
540
  msgstr ""
541
 
542
+ #: src/Tribe/Aggregator/Record/List_Table.php:574
543
  msgctxt "in human readable time"
544
  msgid "retrying in about %s"
545
  msgstr ""
621
  msgstr ""
622
 
623
  #: common/src/Tribe/Plugins_API.php:71
624
+ msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Guest check in is easy with QR codes and our custom scanning app."
625
  msgstr ""
626
 
627
  #: src/admin-views/tribe-options-general.php:31
653
  msgid "The event with the specified ID is not accessible."
654
  msgstr ""
655
 
656
+ #: src/Tribe/Main.php:1812
657
  msgid "%1$s published. %2$sView %3$s"
658
  msgstr ""
659
 
1004
  msgid "the event post name"
1005
  msgstr ""
1006
 
1007
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:354
1008
  msgid "The event organizer IDs or data"
1009
  msgstr ""
1010
 
1011
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:346
1012
  msgid "The event venue ID or data"
1013
  msgstr ""
1014
 
1251
  msgid "Returns all the organizers matching the search criteria"
1252
  msgstr ""
1253
 
1254
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:494
1255
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1256
  msgstr ""
1257
 
1258
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:488
1259
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1260
  msgstr ""
1261
 
1262
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:482
1263
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1264
  msgstr ""
1265
 
1266
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:477
1267
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1268
  msgid "The event post status"
1269
  msgstr ""
1270
 
1271
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:470
1272
  msgid "Events should be filtered by their featured status"
1273
  msgstr ""
1274
 
1275
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:462
1276
  msgid "Events should be assigned one of the specified organizer IDs"
1277
  msgstr ""
1278
 
1279
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1280
  msgid "Events should be assigned one of the specified venue IDs"
1281
  msgstr ""
1282
 
1370
  msgid "The event status"
1371
  msgstr ""
1372
 
1373
+ #: src/Tribe/Linked_Posts.php:1254
1374
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1375
  msgid "Create or Find %s"
1376
  msgstr ""
1377
 
1378
+ #: src/Tribe/Linked_Posts.php:1245
1379
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1380
  msgid "Find %1$s %2$s"
1381
  msgstr ""
1382
 
1383
+ #: src/Tribe/Linked_Posts.php:1236
1384
  msgid "Find a Venue"
1385
  msgstr ""
1386
 
1387
+ #: src/Tribe/Linked_Posts.php:1235
1388
  msgid "Create or Find a Venue"
1389
  msgstr ""
1390
 
1391
+ #: src/Tribe/Linked_Posts.php:1228
1392
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1393
  msgid "Create or Find %s"
1394
  msgstr ""
1395
 
1396
+ #: src/Tribe/Linked_Posts.php:1219
1397
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1398
  msgid "Find %1$s %2$s"
1399
  msgstr ""
1400
 
1401
+ #: src/Tribe/Linked_Posts.php:1208
1402
  msgid "Find an Organizer"
1403
  msgstr ""
1404
 
1405
+ #: src/Tribe/Linked_Posts.php:1207
1406
  msgid "Create or Find an Organizer"
1407
  msgstr ""
1408
 
1409
+ #: src/Tribe/Linked_Posts.php:1200
1410
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1411
  msgid "Create or Find %s"
1412
  msgstr ""
1413
 
1414
+ #: src/Tribe/Linked_Posts.php:1191
1415
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1416
  msgid "Find %1$s %2$s"
1417
  msgstr ""
1507
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1508
  msgstr ""
1509
 
1510
+ #: src/Tribe/Main.php:996
1511
  msgid "edit Events settings."
1512
  msgstr ""
1513
 
1514
+ #: src/Tribe/Main.php:987
1515
  msgid "Edit the %s slug"
1516
  msgstr ""
1517
 
1518
+ #: src/Tribe/Linked_Posts.php:1177
1519
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1520
  msgid "an"
1521
  msgstr ""
1522
 
1523
+ #: src/Tribe/Linked_Posts.php:1170
1524
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1525
  msgid "a"
1526
  msgstr ""
1562
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1563
  msgstr ""
1564
 
 
 
 
 
1565
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1566
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1567
  msgstr ""
1606
  msgid "The event WordPress post ID"
1607
  msgstr ""
1608
 
1609
+ #: src/Tribe/Aggregator/Record/Abstract.php:363
1610
  msgid "Something went wrong while inserting the record in the database."
1611
  msgstr ""
1612
 
1624
  msgid "Please refresh the page and try your request again."
1625
  msgstr ""
1626
 
1627
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:29
1628
  msgid "The image WordPress post ID"
1629
  msgstr ""
1630
 
1684
  msgid "The event last modification date in UTC time"
1685
  msgstr ""
1686
 
1687
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:419
1688
  msgid "Events should start after the specified date"
1689
  msgstr ""
1690
 
1691
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:426
1692
  msgid "Events should start before the specified date"
1693
  msgstr ""
1694
 
1724
  msgid "the event post ID"
1725
  msgstr ""
1726
 
1727
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:432
1728
  msgid "Events should contain the specified string in the title or description"
1729
  msgstr ""
1730
 
2020
  msgstr ""
2021
 
2022
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2023
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:404
2024
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2025
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2026
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2027
  msgid "The archive page to return"
2028
  msgstr ""
2029
 
2030
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:412
2031
  msgid "The number of events to return on each page"
2032
  msgstr ""
2033
 
2034
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
2035
  msgid "Events should be assigned one of the specified categories slugs or IDs"
2036
  msgstr ""
2037
 
2038
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:446
2039
  msgid "Events should be assigned one of the specified tags slugs or IDs"
2040
  msgstr ""
2041
 
2042
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:374
2043
  msgid "Returns all the upcoming events matching the search criteria"
2044
  msgstr ""
2045
 
2046
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:36
2047
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:382
2048
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:64
2049
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:53
2050
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:61
2259
  msgid "three months"
2260
  msgstr ""
2261
 
2262
+ #: src/Tribe/Aggregator/Tabs/New.php:385
2263
  msgid "%1$d new event tag was created."
2264
  msgid_plural "%1$d new event tags were created."
2265
  msgstr[0] ""
2266
  msgstr[1] ""
2267
 
2268
+ #: src/Tribe/Aggregator/Tabs/New.php:389
2269
  msgid "View your event tags"
2270
  msgstr ""
2271
 
2324
  msgid "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2325
  msgstr ""
2326
 
2327
+ #: src/Tribe/Main.php:763
2328
  msgctxt "all events slug"
2329
  msgid "all"
2330
  msgstr ""
2365
  msgid "The WordPress term ID"
2366
  msgstr ""
2367
 
2368
+ #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:37
2369
  msgid "The link to the image in the specified size on the site"
2370
  msgstr ""
2371
 
2381
  msgid "The image width in pixels in the specified size"
2382
  msgstr ""
2383
 
2384
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:45
2385
  msgid "The details about each size available for the image"
2386
  msgstr ""
2387
 
2388
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:41
2389
  msgid "The image natural height in pixels"
2390
  msgstr ""
2391
 
2392
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:37
2393
  msgid "The image natural width in pixels"
2394
  msgstr ""
2395
 
2396
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:33
2397
  msgid "The image file extension"
2398
  msgstr ""
2399
 
2401
  msgid "The venue WordPress post ID"
2402
  msgstr ""
2403
 
2404
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:25
2405
  msgid "The URL to the full size version of the image"
2406
  msgstr ""
2407
 
2441
  msgid "The cost currency symbol"
2442
  msgstr ""
2443
 
2444
+ #: src/Tribe/Main.php:4035
2445
  msgid "Keyword"
2446
  msgstr ""
2447
 
2516
  msgid "Export Events"
2517
  msgstr ""
2518
 
2519
+ #: src/Tribe/Main.php:762
2520
  msgctxt "featured events slug"
2521
  msgid "featured"
2522
  msgstr ""
2523
 
2524
+ #: src/Tribe/Linked_Posts.php:1133
2525
  msgid "Create: <b><%= term %></b>"
2526
  msgstr ""
2527
 
2670
  msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2671
  msgstr ""
2672
 
2673
+ #: src/Tribe/Assets.php:685 src/deprecated/Tribe__Events__Asset__Dynamic.php:77
2674
  msgid "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2675
  msgstr ""
2676
 
2677
+ #: src/Tribe/Assets.php:684 src/deprecated/Tribe__Events__Asset__Dynamic.php:76
2678
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2679
  msgstr ""
2680
 
2681
+ #: src/Tribe/Assets.php:683 src/deprecated/Tribe__Events__Asset__Dynamic.php:75
2682
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2683
  msgstr ""
2684
 
2685
+ #: src/Tribe/Assets.php:682 src/deprecated/Tribe__Events__Asset__Dynamic.php:74
2686
  msgid "This event is all day on %%startdatewithyear%%."
2687
  msgstr ""
2688
 
2689
+ #: src/Tribe/Assets.php:681 src/deprecated/Tribe__Events__Asset__Dynamic.php:73
2690
  msgid "This event is at %%starttime%% on %%startdatewithyear%%."
2691
  msgstr ""
2692
 
2693
+ #: src/Tribe/Assets.php:680 src/deprecated/Tribe__Events__Asset__Dynamic.php:72
2694
  msgid "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2695
  msgstr ""
2696
 
2697
+ #: src/Tribe/Assets.php:677 src/deprecated/Tribe__Events__Asset__Dynamic.php:69
2698
  msgid "Dec"
2699
  msgstr ""
2700
 
2701
+ #: src/Tribe/Assets.php:676 src/deprecated/Tribe__Events__Asset__Dynamic.php:68
2702
  msgid "Nov"
2703
  msgstr ""
2704
 
2705
+ #: src/Tribe/Assets.php:675 src/deprecated/Tribe__Events__Asset__Dynamic.php:67
2706
  msgid "Oct"
2707
  msgstr ""
2708
 
2709
+ #: src/Tribe/Assets.php:674 src/deprecated/Tribe__Events__Asset__Dynamic.php:66
2710
  msgid "Sep"
2711
  msgstr ""
2712
 
2713
+ #: src/Tribe/Assets.php:673 src/deprecated/Tribe__Events__Asset__Dynamic.php:65
2714
  msgid "Aug"
2715
  msgstr ""
2716
 
2717
+ #: src/Tribe/Assets.php:672 src/deprecated/Tribe__Events__Asset__Dynamic.php:64
2718
  msgid "Jul"
2719
  msgstr ""
2720
 
2721
+ #: src/Tribe/Assets.php:671 src/deprecated/Tribe__Events__Asset__Dynamic.php:63
2722
  msgid "Jun"
2723
  msgstr ""
2724
 
2725
+ #: src/Tribe/Assets.php:669 src/deprecated/Tribe__Events__Asset__Dynamic.php:61
2726
  msgid "Apr"
2727
  msgstr ""
2728
 
2729
+ #: src/Tribe/Assets.php:668 src/deprecated/Tribe__Events__Asset__Dynamic.php:60
2730
  msgid "Mar"
2731
  msgstr ""
2732
 
2733
+ #: src/Tribe/Assets.php:667 src/deprecated/Tribe__Events__Asset__Dynamic.php:59
2734
  msgid "Feb"
2735
  msgstr ""
2736
 
2737
+ #: src/Tribe/Assets.php:666 src/deprecated/Tribe__Events__Asset__Dynamic.php:58
2738
  msgid "Jan"
2739
  msgstr ""
2740
 
2741
+ #: src/Tribe/Assets.php:663 src/deprecated/Tribe__Events__Asset__Dynamic.php:55
2742
  msgid "December"
2743
  msgstr ""
2744
 
2745
+ #: src/Tribe/Assets.php:662 src/deprecated/Tribe__Events__Asset__Dynamic.php:54
2746
  msgid "November"
2747
  msgstr ""
2748
 
2749
+ #: src/Tribe/Assets.php:661 src/deprecated/Tribe__Events__Asset__Dynamic.php:53
2750
  msgid "October"
2751
  msgstr ""
2752
 
2753
+ #: src/Tribe/Assets.php:660 src/deprecated/Tribe__Events__Asset__Dynamic.php:52
2754
  msgid "September"
2755
  msgstr ""
2756
 
2757
+ #: src/Tribe/Assets.php:659 src/deprecated/Tribe__Events__Asset__Dynamic.php:51
2758
  msgid "August"
2759
  msgstr ""
2760
 
2761
+ #: src/Tribe/Assets.php:658 src/deprecated/Tribe__Events__Asset__Dynamic.php:50
2762
  msgid "July"
2763
  msgstr ""
2764
 
2765
+ #: src/Tribe/Assets.php:657 src/deprecated/Tribe__Events__Asset__Dynamic.php:49
2766
  msgid "June"
2767
  msgstr ""
2768
 
2769
+ #: src/Tribe/Assets.php:656 src/Tribe/Assets.php:670
2770
+ #: src/deprecated/Tribe__Events__Asset__Dynamic.php:48
2771
+ #: src/deprecated/Tribe__Events__Asset__Dynamic.php:62
2772
  msgid "May"
2773
  msgstr ""
2774
 
2775
+ #: src/Tribe/Assets.php:655 src/deprecated/Tribe__Events__Asset__Dynamic.php:47
2776
  msgid "April"
2777
  msgstr ""
2778
 
2779
+ #: src/Tribe/Assets.php:654 src/deprecated/Tribe__Events__Asset__Dynamic.php:46
2780
  msgid "March"
2781
  msgstr ""
2782
 
2783
+ #: src/Tribe/Assets.php:653 src/deprecated/Tribe__Events__Asset__Dynamic.php:45
2784
  msgid "February"
2785
  msgstr ""
2786
 
2787
+ #: src/Tribe/Assets.php:652 src/deprecated/Tribe__Events__Asset__Dynamic.php:44
2788
  msgid "January"
2789
  msgstr ""
2790
 
2791
+ #: src/Tribe/Assets.php:649 src/deprecated/Tribe__Events__Asset__Dynamic.php:41
2792
  msgid "Sat"
2793
  msgstr ""
2794
 
2795
+ #: src/Tribe/Assets.php:648 src/deprecated/Tribe__Events__Asset__Dynamic.php:40
2796
  msgid "Fri"
2797
  msgstr ""
2798
 
2799
+ #: src/Tribe/Assets.php:647 src/deprecated/Tribe__Events__Asset__Dynamic.php:39
2800
  msgid "Thu"
2801
  msgstr ""
2802
 
2803
+ #: src/Tribe/Assets.php:646 src/deprecated/Tribe__Events__Asset__Dynamic.php:38
2804
  msgid "Wed"
2805
  msgstr ""
2806
 
2807
+ #: src/Tribe/Assets.php:645 src/deprecated/Tribe__Events__Asset__Dynamic.php:37
2808
  msgid "Tue"
2809
  msgstr ""
2810
 
2811
+ #: src/Tribe/Assets.php:644 src/deprecated/Tribe__Events__Asset__Dynamic.php:36
2812
  msgid "Mon"
2813
  msgstr ""
2814
 
2815
+ #: src/Tribe/Assets.php:643 src/deprecated/Tribe__Events__Asset__Dynamic.php:35
2816
  msgid "Sun"
2817
  msgstr ""
2818
 
2819
+ #: src/Tribe/Assets.php:640 src/deprecated/Tribe__Events__Asset__Dynamic.php:32
2820
  msgid "Saturday"
2821
  msgstr ""
2822
 
2823
+ #: src/Tribe/Assets.php:639 src/deprecated/Tribe__Events__Asset__Dynamic.php:31
2824
  msgid "Friday"
2825
  msgstr ""
2826
 
2827
+ #: src/Tribe/Assets.php:638 src/deprecated/Tribe__Events__Asset__Dynamic.php:30
2828
  msgid "Thursday"
2829
  msgstr ""
2830
 
2831
+ #: src/Tribe/Assets.php:637 src/deprecated/Tribe__Events__Asset__Dynamic.php:29
2832
  msgid "Wednesday"
2833
  msgstr ""
2834
 
2835
+ #: src/Tribe/Assets.php:636 src/deprecated/Tribe__Events__Asset__Dynamic.php:28
2836
  msgid "Tuesday"
2837
  msgstr ""
2838
 
2839
+ #: src/Tribe/Assets.php:635 src/deprecated/Tribe__Events__Asset__Dynamic.php:27
2840
  msgid "Monday"
2841
  msgstr ""
2842
 
2843
+ #: src/Tribe/Assets.php:634 src/deprecated/Tribe__Events__Asset__Dynamic.php:26
2844
  msgid "Sunday"
2845
  msgstr ""
2846
 
2921
  msgid "Unknown service message"
2922
  msgstr ""
2923
 
2924
+ #: src/Tribe/Aggregator/Record/List_Table.php:540
2925
  msgid "Unknown"
2926
  msgstr ""
2927
 
2928
+ #: src/Tribe/Aggregator/Record/Abstract.php:1206
2929
  msgid "When this import was last scheduled to run, the daily limit for your Event Aggregator license had already been reached."
2930
  msgstr ""
2931
 
3662
  msgid "mi"
3663
  msgstr ""
3664
 
3665
+ #: src/Tribe/Main.php:982
3666
  msgid "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3667
  msgstr ""
3668
 
3887
  msgid "Scheduled Imports"
3888
  msgstr ""
3889
 
3890
+ #: src/Tribe/Aggregator/Tabs/New.php:615
3891
  msgid "Renew your Event Aggregator license"
3892
  msgstr ""
3893
 
3894
+ #: src/Tribe/Aggregator/Tabs/New.php:612
3895
  msgid "Renew your license in order to import events from Facebook, iCalendar, Google, or Meetup."
3896
  msgstr ""
3897
 
3898
+ #: src/Tribe/Aggregator/Tabs/New.php:611
3899
  msgid "Your Event Aggregator license is expired."
3900
  msgstr ""
3901
 
3902
+ #: src/Tribe/Aggregator/Tabs/New.php:563
3903
  msgid "Learn More"
3904
  msgstr ""
3905
 
3906
+ #: src/Tribe/Aggregator/Tabs/New.php:558 src/Tribe/Aggregator/Tabs/New.php:565
3907
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:19
3908
  msgid "opens in a new window"
3909
  msgstr ""
3910
 
3911
+ #: src/Tribe/Aggregator/Tabs/New.php:556
3912
  msgid "Buy It Now"
3913
  msgstr ""
3914
 
3915
+ #: src/Tribe/Aggregator/Tabs/New.php:553
3916
  msgid "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3917
  msgstr ""
3918
 
3919
+ #: src/Tribe/Aggregator/Tabs/New.php:551
3920
  msgid "Import Using Event Aggregator"
3921
  msgstr ""
3922
 
3923
+ #: src/Tribe/Aggregator/Tabs/New.php:464
3924
  msgid "Unable to save credentials"
3925
  msgstr ""
3926
 
3927
+ #: src/Tribe/Aggregator/Tabs/New.php:457
3928
  msgid "Credentials have been saved"
3929
  msgstr ""
3930
 
3931
+ #: src/Tribe/Aggregator/Tabs/New.php:448
3932
  msgid "The Meetup API key is required."
3933
  msgstr ""
3934
 
3935
+ #: src/Tribe/Aggregator/Tabs/New.php:439
3936
  msgid "Invalid credential save nonce"
3937
  msgstr ""
3938
 
3939
+ #: src/Tribe/Aggregator/Tabs/New.php:429
3940
  msgid "Invalid credential save request"
3941
  msgstr ""
3942
 
3943
+ #: src/Tribe/Aggregator/Tabs/New.php:417
3944
  msgid "View your scheduled imports."
3945
  msgstr ""
3946
 
3947
+ #: src/Tribe/Aggregator/Tabs/New.php:413
3948
  msgid "The next import is scheduled for %1$s."
3949
  msgstr ""
3950
 
3951
+ #: src/Tribe/Aggregator/Tabs/New.php:406
3952
  msgctxt "separator between date and time"
3953
  msgid " at "
3954
  msgstr ""
3955
 
3956
+ #: src/Tribe/Aggregator/Tabs/New.php:402
3957
  msgid "Your scheduled import was saved and the first import is complete!"
3958
  msgstr ""
3959
 
3960
+ #: src/Tribe/Aggregator/Tabs/New.php:377
3961
  msgid "View your event categories"
3962
  msgstr ""
3963
 
3964
+ #: src/Tribe/Aggregator/Tabs/New.php:373
3965
  msgid "%1$d new event category was created."
3966
  msgid_plural "%1$d new event categories were created."
3967
  msgstr[0] ""
3968
  msgstr[1] ""
3969
 
3970
+ #: src/Tribe/Aggregator/Tabs/New.php:364
3971
  msgid "View your event organizers"
3972
  msgstr ""
3973
 
3974
+ #: src/Tribe/Aggregator/Tabs/New.php:360
3975
  msgid "%1$d new organizer was imported."
3976
  msgid_plural "%1$d new organizers were imported."
3977
  msgstr[0] ""
3978
  msgstr[1] ""
3979
 
3980
+ #: src/Tribe/Aggregator/Tabs/New.php:352
3981
  msgid "View your event venues"
3982
  msgstr ""
3983
 
3984
+ #: src/Tribe/Aggregator/Tabs/New.php:348
3985
  msgid "%1$d new venue was imported."
3986
  msgid_plural "%1$d new venues were imported."
3987
  msgstr[0] ""
3988
  msgstr[1] ""
3989
 
3990
+ #: src/Tribe/Aggregator/Tabs/New.php:338
3991
  msgid "View all %s"
3992
  msgstr ""
3993
 
3994
+ #: src/Tribe/Aggregator/Tabs/New.php:330
3995
  msgid "No %1$s were imported or updated."
3996
  msgstr ""
3997
 
3998
+ #: src/Tribe/Aggregator/Tabs/New.php:323
3999
  msgid "%1$d new image was imported."
4000
  msgid_plural "%1$d new images were imported."
4001
  msgstr[0] ""
4002
  msgstr[1] ""
4003
 
4004
+ #: src/Tribe/Aggregator/Tabs/New.php:314
4005
  msgid "%1$d already-imported %2$s was skipped."
4006
  msgid_plural "%1$d already-imported %2$s were skipped."
4007
  msgstr[0] ""
4008
  msgstr[1] ""
4009
 
4010
+ #: src/Tribe/Aggregator/Tabs/New.php:303
4011
  msgid "%1$d existing %2$s was updated."
4012
  msgid_plural "%1$d existing %2$s were updated."
4013
  msgstr[0] ""
4014
  msgstr[1] ""
4015
 
4016
+ #: src/Tribe/Aggregator/Tabs/New.php:291
4017
  msgid "%1$d new %2$s was imported."
4018
  msgid_plural "%1$d new %2$s were imported."
4019
  msgstr[0] ""
4277
  msgid "Events Aggregator Record"
4278
  msgstr ""
4279
 
4280
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:183
4281
  msgid "Unable to continue inserting data. Please reload this page to continue/try again."
4282
  msgstr ""
4283
 
4297
  msgid "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4298
  msgstr ""
4299
 
4300
+ #: src/Tribe/Aggregator/Record/Queue_Processor.php:233
4301
  msgid "Could not process queue for Import Record %1$d: %2$s"
4302
  msgstr ""
4303
 
4304
+ #: src/Tribe/Aggregator/Record/List_Table.php:664
4305
  msgid "Select %s"
4306
  msgstr ""
4307
 
4308
+ #: src/Tribe/Aggregator/Record/List_Table.php:629
4309
+ #: src/Tribe/Aggregator/Record/List_Table.php:638
4310
+ #: src/Tribe/Aggregator/Record/List_Table.php:646
4311
  msgid "updated"
4312
  msgstr ""
4313
 
4314
+ #: src/Tribe/Aggregator/Record/List_Table.php:627
4315
+ #: src/Tribe/Aggregator/Record/List_Table.php:635
4316
+ #: src/Tribe/Aggregator/Record/List_Table.php:643
4317
  msgid "new"
4318
  msgstr ""
4319
 
4320
+ #: src/Tribe/Aggregator/Record/List_Table.php:624
4321
  msgid "Latest Import:"
4322
  msgstr ""
4323
 
4324
+ #: src/Tribe/Aggregator/Record/List_Table.php:622
4325
  msgid "all time"
4326
  msgstr ""
4327
 
4328
+ #: src/Tribe/Aggregator/Record/List_Table.php:596
4329
  msgid "One Time"
4330
  msgstr ""
4331
 
4332
+ #: src/Tribe/Aggregator/Record/List_Table.php:593
4333
  msgid "Invalid Frequency"
4334
  msgstr ""
4335
 
4336
+ #: src/Tribe/Aggregator/Record/List_Table.php:563 src/Tribe/Aggregator.php:426
4337
  #: src/Tribe/Ignored_Events.php:357
4338
  #: src/admin-views/tribe-options-addons-api.php:36
4339
  msgctxt "in human readable time"
4340
  msgid "in about %s"
4341
  msgstr ""
4342
 
4343
+ #: src/Tribe/Aggregator/Record/List_Table.php:561 src/Tribe/Aggregator.php:424
4344
  #: src/Tribe/Ignored_Events.php:355
4345
  #: src/admin-views/tribe-options-addons-api.php:34
4346
  msgctxt "human readable time ago"
4347
  msgid "about %s ago"
4348
  msgstr ""
4349
 
4350
+ #: src/Tribe/Aggregator/Record/List_Table.php:513
4351
  msgid "Radius:"
4352
  msgstr ""
4353
 
4354
+ #: src/Tribe/Aggregator/Record/List_Table.php:496
4355
  msgid "Keywords:"
4356
  msgstr ""
4357
 
4358
+ #: src/Tribe/Aggregator/Record/List_Table.php:483
4359
  #: src/Tribe/Ignored_Events.php:337
4360
  msgctxt "record via origin"
4361
  msgid "via "
4362
  msgstr ""
4363
 
4364
+ #: src/Tribe/Aggregator/Record/List_Table.php:440
4365
  msgid "Import preview"
4366
  msgstr ""
4367
 
4368
+ #: src/Tribe/Aggregator/Record/List_Table.php:436
4369
  msgid "Import pending"
4370
  msgstr ""
4371
 
4372
+ #: src/Tribe/Aggregator/Record/List_Table.php:432
4373
  msgid "Import schedule"
4374
  msgstr ""
4375
 
4376
+ #: src/Tribe/Aggregator/Record/List_Table.php:420
4377
  msgid "Import failed"
4378
  msgstr ""
4379
 
4380
+ #: src/Tribe/Aggregator/Record/List_Table.php:416
4381
  msgid "Import completed"
4382
  msgstr ""
4383
 
4462
  msgid "Eventbrite"
4463
  msgstr ""
4464
 
4465
+ #: src/Tribe/Aggregator/Record/Abstract.php:1149
4466
  msgid "Deleted Attachment: %d"
4467
  msgstr ""
4468
 
4469
+ #: src/Tribe/Aggregator/Record/Abstract.php:497
4470
  msgid "Record: "
4471
  msgstr ""
4472
 
4501
  msgstr ""
4502
 
4503
  #: src/Tribe/Aggregator/Page.php:96
4504
+ #: src/Tribe/Aggregator/Record/List_Table.php:492
4505
  msgid "View Filters"
4506
  msgstr ""
4507
 
4859
  msgstr ""
4860
 
4861
  #: common/src/Tribe/PUE/Checker.php:961 common/src/Tribe/PUE/Notices.php:285
4862
+ #: src/Tribe/Aggregator/Record/Abstract.php:1164
4863
  msgid " (opens in a new window)"
4864
  msgstr ""
4865
 
5160
  msgid "No notable changes detected"
5161
  msgstr ""
5162
 
5163
+ #: src/Tribe/Main.php:2561
5164
  msgid " (View Full %1$s Description Here: %2$s)"
5165
  msgstr "(Besigitg volle %1$se Beskrywing hier: %2$s)"
5166
 
5208
  msgid "Keep the Core Plugin %sFREE%s!"
5209
  msgstr ""
5210
 
5211
+ #: src/Tribe/Template_Factory.php:231
5212
  msgid "No results were found for %1$s in or near %2$s."
5213
  msgstr "Daar was geen resultate gevind vir %1$s in of naby %2$s."
5214
 
5215
+ #: src/Tribe/Template_Factory.php:229
5216
  msgid "There were no results found for %s."
5217
  msgstr "Daar was geen resultate gevind vir %s."
5218
 
5219
+ #: src/Tribe/Template/Month.php:458
5220
  msgid "There were no results found for %s this month. Try searching next month."
5221
  msgstr "Daar was geen resultate gevind vir die %s in die maand nie. Probeer om deur volgende maand te soek."
5222
 
5223
+ #: src/Tribe/Template/Day.php:154
5224
  msgid "No %1$s scheduled for %2$s. Please try another day."
5225
  msgstr "Geen %1$s geskeduleer vir %2$s. Probeer 'n ander dag."
5226
 
5227
+ #: src/Tribe/Main.php:3855
5228
  msgid "Check out the %savailable add-ons%s."
5229
  msgstr ""
5230
 
5231
+ #: src/Tribe/Main.php:1922
5232
  msgid "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5233
  msgstr ""
5234
 
5235
+ #: src/Tribe/Main.php:1853 src/Tribe/Main.php:1873
5236
  msgid "%1$s scheduled for: %2$s."
5237
  msgstr ""
5238
 
5239
+ #: src/Tribe/Main.php:1834
5240
  msgid "%1$s draft updated. %2$sPreview %3$s"
5241
  msgstr ""
5242
 
5243
+ #: src/Tribe/Main.php:1825
5244
  msgid "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5245
  msgstr ""
5246
 
5247
+ #: src/Tribe/Main.php:1819
5248
  msgid "%1$s submitted. %2$sPreview %3$s"
5249
  msgstr ""
5250
 
5251
+ #: src/Tribe/Main.php:1801
5252
  msgid "%1$s updated. %2$sView %1$s%3$s"
5253
  msgstr ""
5254
 
5255
+ #: src/Tribe/Main.php:1476
5256
  msgid "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5257
  msgstr ""
5258
 
5259
+ #: src/Tribe/Main.php:1111
5260
  msgid "If you have a valid license for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5261
  msgstr ""
5262
 
5263
+ #: src/Tribe/Main.php:1110
5264
  msgid "post a thread"
5265
  msgstr ""
5266
 
5267
+ #: src/Tribe/Main.php:1106
5268
  msgid "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays."
5269
  msgstr ""
5270
 
5271
+ #: src/Tribe/Main.php:1102
5272
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5273
  msgstr ""
5274
 
5275
+ #: src/Tribe/Main.php:1101
5276
  msgid "open-source forum on WordPress.org"
5277
  msgstr ""
5278
 
5279
+ #: src/Tribe/Main.php:1097
5280
  msgid "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays"
5281
  msgstr ""
5282
 
5283
+ #: src/Tribe/Main.php:1096 src/Tribe/Main.php:1104
5284
  msgid "premium support on our website"
5285
  msgstr ""
5286
 
5287
+ #: src/Tribe/Main.php:1094
5288
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5289
  msgstr ""
5290
 
5291
+ #: src/Tribe/Main.php:1093
5292
  msgid "Events Tickets"
5293
  msgstr "Gebeurtenis kaartjies"
5294
 
5295
+ #: src/Tribe/Main.php:1078
5296
  msgid "Customizing the Events plugins"
5297
  msgstr ""
5298
 
5299
+ #: src/Tribe/Main.php:1078
5300
  msgid "%s: Code and guides for customizing your calendar in useful and interesting ways."
5301
  msgstr ""
5302
 
5303
+ #: src/Tribe/Main.php:1076
5304
  msgid "Troubleshooting common problems"
5305
  msgstr ""
5306
 
5307
+ #: src/Tribe/Main.php:1076
5308
  msgid "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5309
  msgstr ""
5310
 
5311
+ #: src/Tribe/Main.php:1074
5312
  msgid "Using stylesheets and page templates"
5313
  msgstr ""
5314
 
5315
+ #: src/Tribe/Main.php:1074
5316
  msgid "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5317
  msgstr ""
5318
 
5319
+ #: src/Tribe/Main.php:1072
5320
  msgid "Themer’s Guide"
5321
  msgstr ""
5322
 
5323
+ #: src/Tribe/Main.php:1072
5324
  msgid "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5325
  msgstr ""
5326
 
5327
+ #: src/Tribe/Main.php:1070
5328
  msgid "Features overview"
5329
  msgstr ""
5330
 
5331
+ #: src/Tribe/Main.php:1070
5332
  msgid "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5333
  msgstr ""
5334
 
5335
+ #: src/Tribe/Main.php:1068
5336
  msgid "Settings overview"
5337
  msgstr ""
5338
 
5339
+ #: src/Tribe/Main.php:1068
5340
  msgid "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5341
  msgstr ""
5342
 
5343
+ #: src/Tribe/Main.php:1065
5344
  msgid "Support for The Events Calendar"
5345
  msgstr ""
5346
 
5347
+ #: src/Tribe/Main.php:1054
5348
  msgid "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5349
  msgstr ""
5350
 
5351
+ #: src/Tribe/Main.php:1052
5352
  msgid "New User Primer"
5353
  msgstr ""
5354
 
5371
  msgid "CSV Import Settings"
5372
  msgstr ""
5373
 
5374
+ #: src/deprecated/Tribe__Events__Asset__Bootstrap_Datepicker.php:27
5375
  msgid "Clear"
5376
  msgstr "Maak Leeg"
5377
 
5383
  msgid "Create New %s"
5384
  msgstr "Skep Nuwe %s"
5385
 
5386
+ #: src/Tribe/Organizer.php:375
5387
  msgid "Unnamed %s"
5388
  msgstr ""
5389
 
5571
  msgid "%s must be a positive number or percent."
5572
  msgstr ""
5573
 
5574
+ #: src/Tribe/Main.php:999
5575
  msgid "%1$s or %2$s"
5576
  msgstr ""
5577
 
5628
  msgid "Day Navigation"
5629
  msgstr "Dag navigasie"
5630
 
5631
+ #: src/Tribe/Aggregator/Tabs/New.php:400
5632
  msgid "Import complete!"
5633
  msgstr "Invoer Afgehandel!"
5634
 
5870
  msgstr "Meer..."
5871
 
5872
  #: common/src/Tribe/Admin/Help_Page.php:194 common/src/Tribe/Plugins_API.php:43
5873
+ #: src/Tribe/Main.php:1105
5874
  msgid "Events Calendar PRO"
5875
  msgstr ""
5876
 
6309
  msgid "%s Website"
6310
  msgstr "%s Webwerf"
6311
 
6312
+ #: src/Tribe/Aggregator/Record/List_Table.php:509
6313
  msgid "Location:"
6314
  msgstr ""
6315
 
7716
  msgid "Template overrides should be moved to the correct subdirectory: %s"
7717
  msgstr "Bloudruk Oorheersers moet geskuif word na die korrekte subgids:% s"
7718
 
7719
+ #: src/Tribe/Template_Factory.php:237
7720
  msgid "No previous %s "
7721
  msgstr "Geen vorige %s"
7722
 
7723
+ #: src/Tribe/Template_Factory.php:235 src/Tribe/Template_Factory.php:240
7724
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7725
  msgstr "Geen bypassende %1$s op die %2$s lys. Gaan kyk asseblief na die volle kalender vir 'n volledige lys van %3$s."
7726
 
7727
+ #: src/Tribe/Template_Factory.php:233
7728
  msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7729
  msgstr "Geen opkomende %1$s op die %2$s lys. Gaan kyk na ander opkomende %3$s vir die kategorie of besoek die volle kalender."
7730
 
7732
  msgid "This %s has passed."
7733
  msgstr "Hierdie %s is al verby"
7734
 
7735
+ #: src/Tribe/Template/Month.php:955
7736
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7737
  msgstr "Die versoekte datum \"%s\" is nie geldig nie &ndash; wys in plaas daarvan die huidige maand"
7738
 
7739
+ #: src/Tribe/Template/Month.php:464 src/Tribe/Template_Factory.php:242
7740
  msgid "There were no results found."
7741
  msgstr "Daar was geen resultate gevind nie."
7742
 
7743
+ #: src/Tribe/Template/Month.php:462
7744
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7745
  msgstr "Geen bypassende %1$s op die %2$s lys nie. Gaan kyk asseblief na die volle kalender vir 'n volledige lys van gebeure."
7746
 
7747
+ #: src/Tribe/Template/Day.php:152
7748
  msgid "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7749
  msgstr "Geen bypassende %1$s op die %2$s lys geskeduleer vir %3$s. Probeer 'n ander dag."
7750
 
7751
+ #: src/Tribe/Template/Day.php:118 src/Tribe/Template/Day.php:134
7752
  msgid "Ongoing"
7753
  msgstr "Deurlopend"
7754
 
7755
+ #: src/Tribe/Aggregator/Page.php:82 src/Tribe/Template/Day.php:115
7756
+ #: src/Tribe/Template/Day.php:131
7757
  msgid "All Day"
7758
  msgstr "Heeldag"
7759
 
7848
  msgid "Error"
7849
  msgstr "Probleem"
7850
 
7851
+ #: src/Tribe/Main.php:4198
7852
  msgid "Once Every 30 Mins"
7853
  msgstr "Eenkeer elke 30 Minute"
7854
 
7855
+ #: src/Tribe/Main.php:4118
7856
  msgid "Day Of"
7857
  msgstr "Dag van"
7858
 
7859
+ #: src/Tribe/Main.php:4116
7860
  msgid "%s From"
7861
  msgstr "%s Vanaf"
7862
 
7863
+ #: src/Tribe/Main.php:4112
7864
  msgid "%s In"
7865
  msgstr "%s In"
7866
 
7867
+ #: src/Tribe/Main.php:4107 src/Tribe/Main.php:4132
7868
  #: src/admin-views/aggregator/origins/refine.php:7
7869
  msgid "Date"
7870
  msgstr "Datum"
7871
 
7872
+ #: src/Tribe/Main.php:4034
7873
  msgid "Search"
7874
  msgstr "Soek"
7875
 
7876
+ #: src/Tribe/Main.php:4008 src/admin-views/aggregator/fields/schedule.php:44
7877
  #: src/admin-views/aggregator/fields/schedule.php:62
7878
  msgid "Day"
7879
  msgstr "Dag"
7880
 
7881
+ #: src/Tribe/Main.php:3991
7882
  msgid "Month"
7883
  msgstr "Maand"
7884
 
7885
+ #: src/Tribe/Main.php:3973
7886
  msgid "List"
7887
  msgstr "Lys"
7888
 
7889
+ #: src/Tribe/Main.php:3957
7890
  msgid "Calendar"
7891
  msgstr "Kalender"
7892
 
7893
  #: common/src/Tribe/Settings.php:254
7894
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:89 src/Tribe/Main.php:3956
7895
  msgid "Settings"
7896
  msgstr "Verstellings"
7897
 
7905
  msgid "Add %s"
7906
  msgstr "Voeg %s by"
7907
 
7908
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:45 src/Tribe/Main.php:3907
7909
  msgid "View Calendar"
7910
  msgstr "Vertoon Kalender"
7911
 
7913
  msgid "%s"
7914
  msgstr "%s"
7915
 
7916
+ #: src/Tribe/Main.php:3854
7917
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7918
  msgstr "Op soek na bykomende funksionaliteit, insluitend herhalende gebeure, kaartjieverkope, gemeenskaplike gebeure, nuwe aansigte en meer?"
7919
 
7920
+ #: src/Tribe/Main.php:3849
7921
  msgid "Additional Functionality"
7922
  msgstr "Bykomende Funksionaliteit"
7923
 
7924
+ #: src/Tribe/Main.php:3804
7925
  msgid "News from Modern Tribe"
7926
  msgstr "Nuus vanaf Modern Tribe"
7927
 
7928
+ #: src/Tribe/Main.php:3784
7929
  msgid "View All Add-Ons"
7930
  msgstr "Vertoon alle toevoegings"
7931
 
7932
+ #: src/Tribe/Main.php:3781
7933
  msgid "Support"
7934
  msgstr "Ondersteuning"
7935
 
7936
+ #: src/Tribe/Main.php:3429 src/Tribe/Main.php:3442
7937
  msgid "%s Information"
7938
  msgstr "%s Informasie"
7939
 
7940
+ #: src/Tribe/Main.php:3420
7941
  msgid "%s Options"
7942
  msgstr "%s Opsies"
7943
 
7944
+ #: src/Tribe/Main.php:3343 src/Tribe/Main.php:3378
7945
  #: src/functions/template-tags/day.php:157
7946
  #: src/functions/template-tags/day.php:178
7947
  msgid "Date out of range."
7948
  msgstr "Datum is buite die verlangde reeks."
7949
 
7950
+ #: src/Tribe/Main.php:2170
7951
  msgid "all"
7952
  msgstr "alle"
7953
 
7954
+ #: src/Tribe/Main.php:2169 src/functions/template-tags/general.php:111
7955
  msgid "events"
7956
  msgstr "gebeurtenisse"
7957
 
7958
+ #: src/Tribe/Main.php:2168 src/functions/template-tags/general.php:79
7959
  msgid "event"
7960
  msgstr "gebeurtenis"
7961
 
7962
+ #: src/Tribe/Main.php:2167
7963
  msgid "page"
7964
  msgstr "bladsy"
7965
 
7971
  msgid "Done"
7972
  msgstr "Afgehandel"
7973
 
7974
+ #: common/src/Tribe/Main.php:272
7975
+ #: src/deprecated/Tribe__Events__Asset__Bootstrap_Datepicker.php:28
7976
  #: src/functions/template-tags/day.php:104
7977
  msgid "Today"
7978
  msgstr "Vandag"
7985
  msgid "Next"
7986
  msgstr "Volgende"
7987
 
7988
+ #: src/Tribe/Linked_Posts.php:1138
7989
  msgid "No saved %s exists."
7990
  msgstr "Geen gestoorde %s bestaan nie."
7991
 
7992
+ #: src/Tribe/Linked_Posts.php:964
7993
  msgid "Available %s"
7994
  msgstr "Beskikbare %s"
7995
 
7996
+ #: src/Tribe/Linked_Posts.php:960
7997
  msgid "My %s"
7998
  msgstr "My %s"
7999
 
8000
+ #: src/Tribe/Main.php:1858 src/Tribe/Main.php:1878
8001
  msgid "%s draft updated."
8002
  msgstr ""
8003
 
8004
+ #: src/Tribe/Main.php:1851 src/Tribe/Main.php:1871
8005
  msgid "%s submitted."
8006
  msgstr ""
8007
 
8008
+ #: src/Tribe/Main.php:1849 src/Tribe/Main.php:1869
8009
  msgid "%s published."
8010
  msgstr ""
8011
 
8012
  #. translators: %s: date and time of the revision
8013
+ #: src/Tribe/Main.php:1868
8014
  msgid "%s restored to revision from %s"
8015
  msgstr ""
8016
 
8017
  #. translators: Publish box date format, see http://php.net/date
8018
+ #: src/Tribe/Main.php:1828 src/Tribe/Main.php:1856 src/Tribe/Main.php:1876
8019
  msgid "M j, Y @ G:i"
8020
  msgstr "M j, Y @ G:i"
8021
 
8022
+ #: src/Tribe/Main.php:1817 src/Tribe/Main.php:1850 src/Tribe/Main.php:1870
8023
  msgid "%s saved."
8024
  msgstr ""
8025
 
8026
  #. translators: %s: date and time of the revision
8027
+ #: src/Tribe/Main.php:1810 src/Tribe/Main.php:1848
8028
  msgid "%1$s restored to revision from %2$s"
8029
  msgstr ""
8030
 
8031
+ #: src/Tribe/Main.php:1808 src/Tribe/Main.php:1843 src/Tribe/Main.php:1846
8032
+ #: src/Tribe/Main.php:1863 src/Tribe/Main.php:1866
8033
  msgid "%s updated."
8034
  msgstr ""
8035
 
8036
+ #: src/Tribe/Main.php:1807 src/Tribe/Main.php:1845 src/Tribe/Main.php:1865
8037
  msgid "Custom field deleted."
8038
  msgstr "Bykomende veld verwyder."
8039
 
8040
+ #: src/Tribe/Main.php:1806 src/Tribe/Main.php:1844 src/Tribe/Main.php:1864
8041
  msgid "Custom field updated."
8042
  msgstr "Bykomende veld opgedateer."
8043
 
8044
+ #: src/Tribe/Main.php:1784
8045
  msgid "New %s Category Name"
8046
  msgstr ""
8047
 
8048
+ #: src/Tribe/Main.php:1783
8049
  msgid "Add New %s Category"
8050
  msgstr ""
8051
 
8052
+ #: src/Tribe/Main.php:1782
8053
  msgid "Update %s Category"
8054
  msgstr ""
8055
 
8056
+ #: src/Tribe/Main.php:1781
8057
  msgid "Edit %s Category"
8058
  msgstr ""
8059
 
8060
+ #: src/Tribe/Main.php:1780
8061
  msgid "Parent %s Category:"
8062
  msgstr ""
8063
 
8064
+ #: src/Tribe/Main.php:1779
8065
  msgid "Parent %s Category"
8066
  msgstr "Hoof %s Kategorie"
8067
 
8068
+ #: src/Tribe/Main.php:1778
8069
  msgid "All %s Categories"
8070
  msgstr "Alle %s Kategorieë"
8071
 
8072
+ #: src/Tribe/Main.php:1777
8073
  msgid "Search %s Categories"
8074
  msgstr "Soek deur %s Kategorieë"
8075
 
8076
+ #: src/Tribe/Main.php:1776
8077
  msgid "%s Category"
8078
  msgstr "%s Kategorie"
8079
 
8080
+ #: src/Tribe/Main.php:1766 src/Tribe/Organizer.php:98 src/Tribe/Venue.php:117
8081
  msgid "No %s found in Trash"
8082
  msgstr "Geen %s in die asblik gevind nie"
8083
 
8084
+ #: src/Tribe/Main.php:1765 src/Tribe/Organizer.php:97 src/Tribe/Venue.php:116
8085
  msgid "No %s found"
8086
  msgstr "Geen %s gevind nie"
8087
 
8088
+ #: src/Tribe/Main.php:1764 src/Tribe/Organizer.php:96 src/Tribe/Venue.php:115
8089
  msgid "Search %s"
8090
  msgstr "Soek %s"
8091
 
8092
+ #: src/Tribe/Main.php:1763 src/Tribe/Organizer.php:95 src/Tribe/Venue.php:114
8093
  #: src/views/month/single-day.php:26
8094
  msgid "View %s"
8095
  msgstr "Besigtig %s"
8096
 
8097
+ #: src/Tribe/Main.php:1762 src/Tribe/Organizer.php:94 src/Tribe/Venue.php:113
8098
  msgid "New %s"
8099
  msgstr "Nuwe %s"
8100
 
8101
+ #: src/Tribe/Main.php:1760 src/Tribe/Main.php:1892 src/Tribe/Main.php:1893
8102
  #: src/Tribe/Organizer.php:92 src/Tribe/Venue.php:111
8103
  msgid "Add New %s"
8104
  msgstr "Voeg nuwe %s by"
8105
 
8106
+ #: src/Tribe/Main.php:1759 src/Tribe/Organizer.php:91 src/Tribe/Venue.php:110
8107
  msgid "Add New"
8108
  msgstr "Voeg By"
8109
 
8110
+ #: src/Tribe/Main.php:1726 src/Tribe/Main.php:2165
8111
  msgid "tag"
8112
  msgstr "sleutelwoord"
8113
 
8114
+ #: src/Tribe/Main.php:1712 src/Tribe/Main.php:2166
8115
  msgid "category"
8116
  msgstr "Kategorie"
8117
 
8118
+ #: src/Tribe/Main.php:1464
8119
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8120
  msgstr "Jammer, Die Kalender vereis PHP% s of hoër. Praat met jou web host oor die beweging van jou na 'n nuwer weergawe van PHP."
8121
 
8122
+ #: src/Tribe/Main.php:1461
8123
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8124
  msgstr "Jammer, Die Kalender vereis WordPress% s of hoër. Gradeer asseblief jou WordPress installasie op."
8125
 
8137
  msgid "Display"
8138
  msgstr "Aansig"
8139
 
8140
+ #: src/Tribe/Main.php:1308
8141
  msgid "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8142
  msgstr ""
8143
 
8144
+ #: src/Tribe/Main.php:1296
8145
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8146
  msgstr "Jou weergawe van The Events Calendar is nie up-op datum met een van jou The Events Calendarr byvoegings. %sDateer asseblief nou op.%s"
8147
 
8148
+ #: src/Tribe/Main.php:786
8149
  msgid "Initializing Tribe Events on %s"
8150
  msgstr "InisialiseerTribe Events op %s"
8151
 
8152
+ #: src/Tribe/Main.php:761
8153
  msgid "today"
8154
  msgstr "vandag"
8155
 
8156
+ #: src/Tribe/Main.php:760
8157
  msgid "day"
8158
  msgstr "dag"
8159
 
8160
+ #: src/Tribe/Main.php:759
8161
  msgid "past"
8162
  msgstr "vorige"
8163
 
8164
+ #: src/Tribe/Main.php:758
8165
  msgid "upcoming"
8166
  msgstr "komende"
8167
 
8168
+ #: src/Tribe/Main.php:757
8169
  msgid "list"
8170
  msgstr "lys"
8171
 
8172
+ #: src/Tribe/Main.php:756
8173
  msgid "month"
8174
  msgstr "maand"
8175
 
8176
+ #. #-#-#-#-# the-events-calendar-code.pot (The Events Calendar 4.6.22.1)
8177
  #. #-#-#-#-#
8178
  #. Plugin Name of the plugin/theme
8179
  #: common/src/Tribe/Admin/Help_Page.php:59 common/src/Tribe/Customizer.php:569
8180
+ #: common/src/Tribe/Plugins_API.php:25 src/Tribe/Main.php:749
8181
+ #: src/Tribe/Main.php:1092 src/Tribe/Privacy.php:29
8182
  #: src/functions/template-tags/general.php:1345
8183
  msgid "The Events Calendar"
8184
  msgstr "The Events Calendar"
8185
 
8186
+ #: src/Tribe/Main.php:1162 src/admin-views/aggregator/tabs/import-form.php:185
8187
  #: src/admin-views/aggregator/tabs/import-form.php:197
8188
  #: src/functions/template-tags/general.php:63
8189
  msgid "Event"
8190
  msgstr "Gebeurtenis"
8191
 
8192
  #: common/src/Tribe/Settings.php:177 common/src/Tribe/Settings.php:241
8193
+ #: common/src/Tribe/Settings.php:242 src/Tribe/Main.php:1154
8194
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:207
8195
  #: src/functions/template-tags/general.php:95
8196
  msgid "Events"
8197
  msgstr "Gebeure"
8198
 
8199
+ #: src/Tribe/Organizer.php:157 src/functions/template-tags/organizer.php:112
8200
  msgid "Organizer"
8201
  msgstr "Organiseerder"
8202
 
8203
  #: src/Tribe/Organizer.php:171
8204
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:206
8205
+ #: src/functions/template-tags/organizer.php:123
8206
  msgid "Organizers"
8207
  msgstr "Organiseerders"
8208
 
8466
  msgid "End:"
8467
  msgstr "Einde:"
8468
 
8469
+ #: src/Tribe/Aggregator/Record/List_Table.php:505
8470
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
8471
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
8472
  #: src/views/modules/meta/details.php:66 src/views/modules/meta/details.php:91
8485
  msgid "Start Date"
8486
  msgstr "Begin Datum"
8487
 
8488
+ #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1775
8489
  msgid "%s Categories"
8490
  msgstr "%s Kategorieë"
8491
 
8496
  #: src/Tribe/Admin/Timezone_Updater.php:87
8497
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
8498
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:100
8499
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:210
8500
  msgid "%d%% complete"
8501
  msgstr ""
8502
 
8509
  msgstr ""
8510
 
8511
  #: src/Tribe/Admin/Bar/Default_Configurator.php:62
8512
+ #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:211 src/Tribe/Main.php:1761
8513
+ #: src/Tribe/Main.php:4843 src/Tribe/Main.php:4890 src/Tribe/Organizer.php:93
8514
  #: src/Tribe/Venue.php:112
8515
  msgid "Edit %s"
8516
  msgstr "Wysig %s"
8517
 
8518
+ #: src/Tribe/Main.php:4827 src/Tribe/Main.php:4884
8519
  msgid "Use Saved %s:"
8520
  msgstr ""
8521
 
8522
+ #: src/Tribe/Main.php:991
8523
  msgid " ask the site administrator set a different Events URL slug."
8524
  msgstr ""
8525
 
8526
+ #: src/Tribe/Main.php:985
8527
  msgid "Ask the site administrator to edit the %s slug"
8528
  msgstr ""
8529
 
8531
  msgid "Thanks for Updating The Events Calendar"
8532
  msgstr ""
8533
 
8534
+ #: src/Tribe/Main.php:844 src/Tribe/Main.php:846
8535
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
8536
  msgid "Welcome to The Events Calendar"
8537
  msgstr ""
lang/the-events-calendar-bg_BG.po CHANGED
@@ -11,6 +11,31 @@ msgstr ""
11
  "Language: bg\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: src/views/month/single-day.php:57
15
  msgid "%s for %s"
16
  msgstr ""
@@ -183,91 +208,91 @@ msgstr ""
183
  msgid "Do more with Eventbrite Tickets"
184
  msgstr ""
185
 
186
- #: src/Tribe/Main.php:4513
187
  msgid "Search for %s by month. Please use the format %s."
188
  msgstr ""
189
 
190
- #: src/Tribe/Main.php:4508
191
  msgid "Search for %s by Date. Please use the format %s."
192
  msgstr ""
193
 
194
- #: src/Tribe/Main.php:4476 src/Tribe/Main.php:4477
195
  msgid "2 digit month dot 4 digit year"
196
  msgstr ""
197
 
198
- #: src/Tribe/Main.php:4475
199
  msgid "4 digit year dot 2 digit month"
200
  msgstr ""
201
 
202
- #: src/Tribe/Main.php:4474
203
  msgid "2 digit month hyphen 4 digit year"
204
  msgstr ""
205
 
206
- #: src/Tribe/Main.php:4471 src/Tribe/Main.php:4472 src/Tribe/Main.php:4473
207
  msgid "1 digit month hyphen 4 digit year"
208
  msgstr ""
209
 
210
- #: src/Tribe/Main.php:4468 src/Tribe/Main.php:4470
211
  msgid "2 digit month slash 4 digit year"
212
  msgstr ""
213
 
214
- #: src/Tribe/Main.php:4467 src/Tribe/Main.php:4469
215
  msgid "1 digit month slash 4 digit year"
216
  msgstr ""
217
 
218
- #: src/Tribe/Main.php:4466
219
  msgid "4 digit year hyphen 2 digit month"
220
  msgstr ""
221
 
222
- #: src/Tribe/Main.php:4462
223
  msgid "2 digit day dot 2 digit month dot 4 digit year"
224
  msgstr ""
225
 
226
- #: src/Tribe/Main.php:4461
227
  msgid "2 digit month dot 2 digit day dot 4 digit year"
228
  msgstr ""
229
 
230
- #: src/Tribe/Main.php:4460
231
  msgid "4 digit year dot 2 digit month dot 2 digit day"
232
  msgstr ""
233
 
234
- #: src/Tribe/Main.php:4459
235
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
236
  msgstr ""
237
 
238
- #: src/Tribe/Main.php:4458
239
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
240
  msgstr ""
241
 
242
- #: src/Tribe/Main.php:4457
243
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
244
  msgstr ""
245
 
246
- #: src/Tribe/Main.php:4456
247
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
248
  msgstr ""
249
 
250
- #: src/Tribe/Main.php:4455
251
  msgid "2 digit day slash 2 digit month slash 4 digit year"
252
  msgstr ""
253
 
254
- #: src/Tribe/Main.php:4454
255
  msgid "1 digit day slash 1 digit month slash 4 digit year"
256
  msgstr ""
257
 
258
- #: src/Tribe/Main.php:4453
259
  msgid "2 digit month slash 2 digit day slash 4 digit year"
260
  msgstr ""
261
 
262
- #: src/Tribe/Main.php:4452
263
  msgid "1 digit month slash 1 digit day slash 4 digit year"
264
  msgstr ""
265
 
266
- #: src/Tribe/Main.php:4451
267
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
268
  msgstr ""
269
 
270
- #: src/Tribe/Main.php:4430
271
  msgid "Search for %s by Keyword."
272
  msgstr ""
273
 
@@ -495,7 +520,7 @@ msgid "Search our support help desk"
495
  msgstr ""
496
 
497
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
498
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:369
499
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
500
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
501
  msgid "The requested page was not found."
@@ -509,12 +534,12 @@ msgstr ""
509
  msgid "one week"
510
  msgstr ""
511
 
512
- #: src/Tribe/Aggregator/Record/List_Table.php:570
513
  msgctxt "when the retry will happen, a date"
514
  msgid "retrying at %s"
515
  msgstr ""
516
 
517
- #: src/Tribe/Aggregator/Record/List_Table.php:567
518
  msgctxt "in human readable time"
519
  msgid "retrying in about %s"
520
  msgstr ""
@@ -596,7 +621,7 @@ msgid "Main %s Page"
596
  msgstr ""
597
 
598
  #: common/src/Tribe/Plugins_API.php:71
599
- msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Tickets have QR codes for easy check in at the door."
600
  msgstr ""
601
 
602
  #: src/admin-views/tribe-options-general.php:31
@@ -628,7 +653,7 @@ msgstr ""
628
  msgid "The event with the specified ID is not accessible."
629
  msgstr ""
630
 
631
- #: src/Tribe/Main.php:1813
632
  msgid "%1$s published. %2$sView %3$s"
633
  msgstr ""
634
 
@@ -979,11 +1004,11 @@ msgstr ""
979
  msgid "the event post name"
980
  msgstr ""
981
 
982
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:341
983
  msgid "The event organizer IDs or data"
984
  msgstr ""
985
 
986
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:333
987
  msgid "The event venue ID or data"
988
  msgstr ""
989
 
@@ -1226,32 +1251,32 @@ msgstr ""
1226
  msgid "Returns all the organizers matching the search criteria"
1227
  msgstr ""
1228
 
1229
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:478
1230
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1231
  msgstr ""
1232
 
1233
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:472
1234
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1235
  msgstr ""
1236
 
1237
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:466
1238
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1239
  msgstr ""
1240
 
1241
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:461
1242
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1243
  msgid "The event post status"
1244
  msgstr ""
1245
 
1246
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1247
  msgid "Events should be filtered by their featured status"
1248
  msgstr ""
1249
 
1250
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:446
1251
  msgid "Events should be assigned one of the specified organizer IDs"
1252
  msgstr ""
1253
 
1254
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
1255
  msgid "Events should be assigned one of the specified venue IDs"
1256
  msgstr ""
1257
 
@@ -1345,48 +1370,48 @@ msgstr ""
1345
  msgid "The event status"
1346
  msgstr ""
1347
 
1348
- #: src/Tribe/Linked_Posts.php:1126
1349
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1350
  msgid "Create or Find %s"
1351
  msgstr ""
1352
 
1353
- #: src/Tribe/Linked_Posts.php:1117
1354
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1355
  msgid "Find %1$s %2$s"
1356
  msgstr ""
1357
 
1358
- #: src/Tribe/Linked_Posts.php:1108
1359
  msgid "Find a Venue"
1360
  msgstr ""
1361
 
1362
- #: src/Tribe/Linked_Posts.php:1107
1363
  msgid "Create or Find a Venue"
1364
  msgstr ""
1365
 
1366
- #: src/Tribe/Linked_Posts.php:1100
1367
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1368
  msgid "Create or Find %s"
1369
  msgstr ""
1370
 
1371
- #: src/Tribe/Linked_Posts.php:1091
1372
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1373
  msgid "Find %1$s %2$s"
1374
  msgstr ""
1375
 
1376
- #: src/Tribe/Linked_Posts.php:1080
1377
  msgid "Find an Organizer"
1378
  msgstr ""
1379
 
1380
- #: src/Tribe/Linked_Posts.php:1079
1381
  msgid "Create or Find an Organizer"
1382
  msgstr ""
1383
 
1384
- #: src/Tribe/Linked_Posts.php:1072
1385
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1386
  msgid "Create or Find %s"
1387
  msgstr ""
1388
 
1389
- #: src/Tribe/Linked_Posts.php:1063
1390
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1391
  msgid "Find %1$s %2$s"
1392
  msgstr ""
@@ -1482,20 +1507,20 @@ msgstr ""
1482
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1483
  msgstr ""
1484
 
1485
- #: src/Tribe/Main.php:997
1486
  msgid "edit Events settings."
1487
  msgstr ""
1488
 
1489
- #: src/Tribe/Main.php:988
1490
  msgid "Edit the %s slug"
1491
  msgstr ""
1492
 
1493
- #: src/Tribe/Linked_Posts.php:1049
1494
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1495
  msgid "an"
1496
  msgstr ""
1497
 
1498
- #: src/Tribe/Linked_Posts.php:1042
1499
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1500
  msgid "a"
1501
  msgstr ""
@@ -1537,10 +1562,6 @@ msgstr ""
1537
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1538
  msgstr ""
1539
 
1540
- #: common/src/Tribe/Plugins_API.php:37
1541
- msgid "Import events from across the web! Event Aggregator makes it easy to run scheduled or manual imports from Facebook, Meetup, Eventbrite, Google Calendar, and iCalendar, along with uploads from CSV and ICS files. You can also import directly from other sites running The Events Calendar thanks to our built-in REST API support."
1542
- msgstr ""
1543
-
1544
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1545
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1546
  msgstr ""
@@ -1585,7 +1606,7 @@ msgstr ""
1585
  msgid "The event WordPress post ID"
1586
  msgstr ""
1587
 
1588
- #: src/Tribe/Aggregator/Record/Abstract.php:362
1589
  msgid "Something went wrong while inserting the record in the database."
1590
  msgstr ""
1591
 
@@ -1603,7 +1624,7 @@ msgstr[1] ""
1603
  msgid "Please refresh the page and try your request again."
1604
  msgstr ""
1605
 
1606
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:28
1607
  msgid "The image WordPress post ID"
1608
  msgstr ""
1609
 
@@ -1663,11 +1684,11 @@ msgstr ""
1663
  msgid "The event last modification date in UTC time"
1664
  msgstr ""
1665
 
1666
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:403
1667
  msgid "Events should start after the specified date"
1668
  msgstr ""
1669
 
1670
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:410
1671
  msgid "Events should start before the specified date"
1672
  msgstr ""
1673
 
@@ -1703,7 +1724,7 @@ msgstr ""
1703
  msgid "the event post ID"
1704
  msgstr ""
1705
 
1706
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:416
1707
  msgid "Events should contain the specified string in the title or description"
1708
  msgstr ""
1709
 
@@ -1999,31 +2020,31 @@ msgid "The requested URL does not have any upcoming and published events matchin
1999
  msgstr ""
2000
 
2001
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2002
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:388
2003
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2004
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2005
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2006
  msgid "The archive page to return"
2007
  msgstr ""
2008
 
2009
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:396
2010
  msgid "The number of events to return on each page"
2011
  msgstr ""
2012
 
2013
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:422
2014
  msgid "Events should be assigned one of the specified categories slugs or IDs"
2015
  msgstr ""
2016
 
2017
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:430
2018
  msgid "Events should be assigned one of the specified tags slugs or IDs"
2019
  msgstr ""
2020
 
2021
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:358
2022
  msgid "Returns all the upcoming events matching the search criteria"
2023
  msgstr ""
2024
 
2025
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:36
2026
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:366
2027
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:64
2028
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:53
2029
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:61
@@ -2238,13 +2259,13 @@ msgstr ""
2238
  msgid "three months"
2239
  msgstr ""
2240
 
2241
- #: src/Tribe/Aggregator/Tabs/New.php:373
2242
  msgid "%1$d new event tag was created."
2243
  msgid_plural "%1$d new event tags were created."
2244
  msgstr[0] ""
2245
  msgstr[1] ""
2246
 
2247
- #: src/Tribe/Aggregator/Tabs/New.php:377
2248
  msgid "View your event tags"
2249
  msgstr ""
2250
 
@@ -2303,7 +2324,7 @@ msgstr ""
2303
  msgid "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2304
  msgstr ""
2305
 
2306
- #: src/Tribe/Main.php:765
2307
  msgctxt "all events slug"
2308
  msgid "all"
2309
  msgstr ""
@@ -2344,7 +2365,7 @@ msgstr ""
2344
  msgid "The WordPress term ID"
2345
  msgstr ""
2346
 
2347
- #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:36
2348
  msgid "The link to the image in the specified size on the site"
2349
  msgstr ""
2350
 
@@ -2360,19 +2381,19 @@ msgstr ""
2360
  msgid "The image width in pixels in the specified size"
2361
  msgstr ""
2362
 
2363
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:44
2364
  msgid "The details about each size available for the image"
2365
  msgstr ""
2366
 
2367
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:40
2368
  msgid "The image natural height in pixels"
2369
  msgstr ""
2370
 
2371
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:36
2372
  msgid "The image natural width in pixels"
2373
  msgstr ""
2374
 
2375
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:32
2376
  msgid "The image file extension"
2377
  msgstr ""
2378
 
@@ -2380,7 +2401,7 @@ msgstr ""
2380
  msgid "The venue WordPress post ID"
2381
  msgstr ""
2382
 
2383
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:24
2384
  msgid "The URL to the full size version of the image"
2385
  msgstr ""
2386
 
@@ -2420,7 +2441,7 @@ msgstr ""
2420
  msgid "The cost currency symbol"
2421
  msgstr ""
2422
 
2423
- #: src/Tribe/Main.php:4434
2424
  msgid "Keyword"
2425
  msgstr ""
2426
 
@@ -2495,12 +2516,12 @@ msgstr ""
2495
  msgid "Export Events"
2496
  msgstr ""
2497
 
2498
- #: src/Tribe/Main.php:764
2499
  msgctxt "featured events slug"
2500
  msgid "featured"
2501
  msgstr ""
2502
 
2503
- #: src/Tribe/Linked_Posts.php:1005
2504
  msgid "Create: <b><%= term %></b>"
2505
  msgstr ""
2506
 
@@ -2649,175 +2670,177 @@ msgstr ""
2649
  msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2650
  msgstr ""
2651
 
2652
- #: src/Tribe/Asset/Dynamic.php:77
2653
  msgid "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2654
  msgstr ""
2655
 
2656
- #: src/Tribe/Asset/Dynamic.php:76
2657
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2658
  msgstr ""
2659
 
2660
- #: src/Tribe/Asset/Dynamic.php:75
2661
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2662
  msgstr ""
2663
 
2664
- #: src/Tribe/Asset/Dynamic.php:74
2665
  msgid "This event is all day on %%startdatewithyear%%."
2666
  msgstr ""
2667
 
2668
- #: src/Tribe/Asset/Dynamic.php:73
2669
  msgid "This event is at %%starttime%% on %%startdatewithyear%%."
2670
  msgstr ""
2671
 
2672
- #: src/Tribe/Asset/Dynamic.php:72
2673
  msgid "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2674
  msgstr ""
2675
 
2676
- #: src/Tribe/Asset/Dynamic.php:69
2677
  msgid "Dec"
2678
  msgstr ""
2679
 
2680
- #: src/Tribe/Asset/Dynamic.php:68
2681
  msgid "Nov"
2682
  msgstr ""
2683
 
2684
- #: src/Tribe/Asset/Dynamic.php:67
2685
  msgid "Oct"
2686
  msgstr ""
2687
 
2688
- #: src/Tribe/Asset/Dynamic.php:66
2689
  msgid "Sep"
2690
  msgstr ""
2691
 
2692
- #: src/Tribe/Asset/Dynamic.php:65
2693
  msgid "Aug"
2694
  msgstr ""
2695
 
2696
- #: src/Tribe/Asset/Dynamic.php:64
2697
  msgid "Jul"
2698
  msgstr ""
2699
 
2700
- #: src/Tribe/Asset/Dynamic.php:63
2701
  msgid "Jun"
2702
  msgstr ""
2703
 
2704
- #: src/Tribe/Asset/Dynamic.php:61
2705
  msgid "Apr"
2706
  msgstr ""
2707
 
2708
- #: src/Tribe/Asset/Dynamic.php:60
2709
  msgid "Mar"
2710
  msgstr ""
2711
 
2712
- #: src/Tribe/Asset/Dynamic.php:59
2713
  msgid "Feb"
2714
  msgstr ""
2715
 
2716
- #: src/Tribe/Asset/Dynamic.php:58
2717
  msgid "Jan"
2718
  msgstr ""
2719
 
2720
- #: src/Tribe/Asset/Dynamic.php:55
2721
  msgid "December"
2722
  msgstr ""
2723
 
2724
- #: src/Tribe/Asset/Dynamic.php:54
2725
  msgid "November"
2726
  msgstr ""
2727
 
2728
- #: src/Tribe/Asset/Dynamic.php:53
2729
  msgid "October"
2730
  msgstr ""
2731
 
2732
- #: src/Tribe/Asset/Dynamic.php:52
2733
  msgid "September"
2734
  msgstr ""
2735
 
2736
- #: src/Tribe/Asset/Dynamic.php:51
2737
  msgid "August"
2738
  msgstr ""
2739
 
2740
- #: src/Tribe/Asset/Dynamic.php:50
2741
  msgid "July"
2742
  msgstr ""
2743
 
2744
- #: src/Tribe/Asset/Dynamic.php:49
2745
  msgid "June"
2746
  msgstr ""
2747
 
2748
- #: src/Tribe/Asset/Dynamic.php:48 src/Tribe/Asset/Dynamic.php:62
 
 
2749
  msgid "May"
2750
  msgstr ""
2751
 
2752
- #: src/Tribe/Asset/Dynamic.php:47
2753
  msgid "April"
2754
  msgstr ""
2755
 
2756
- #: src/Tribe/Asset/Dynamic.php:46
2757
  msgid "March"
2758
  msgstr ""
2759
 
2760
- #: src/Tribe/Asset/Dynamic.php:45
2761
  msgid "February"
2762
  msgstr ""
2763
 
2764
- #: src/Tribe/Asset/Dynamic.php:44
2765
  msgid "January"
2766
  msgstr ""
2767
 
2768
- #: src/Tribe/Asset/Dynamic.php:41
2769
  msgid "Sat"
2770
  msgstr ""
2771
 
2772
- #: src/Tribe/Asset/Dynamic.php:40
2773
  msgid "Fri"
2774
  msgstr ""
2775
 
2776
- #: src/Tribe/Asset/Dynamic.php:39
2777
  msgid "Thu"
2778
  msgstr ""
2779
 
2780
- #: src/Tribe/Asset/Dynamic.php:38
2781
  msgid "Wed"
2782
  msgstr ""
2783
 
2784
- #: src/Tribe/Asset/Dynamic.php:37
2785
  msgid "Tue"
2786
  msgstr ""
2787
 
2788
- #: src/Tribe/Asset/Dynamic.php:36
2789
  msgid "Mon"
2790
  msgstr ""
2791
 
2792
- #: src/Tribe/Asset/Dynamic.php:35
2793
  msgid "Sun"
2794
  msgstr ""
2795
 
2796
- #: src/Tribe/Asset/Dynamic.php:32
2797
  msgid "Saturday"
2798
  msgstr ""
2799
 
2800
- #: src/Tribe/Asset/Dynamic.php:31
2801
  msgid "Friday"
2802
  msgstr ""
2803
 
2804
- #: src/Tribe/Asset/Dynamic.php:30
2805
  msgid "Thursday"
2806
  msgstr ""
2807
 
2808
- #: src/Tribe/Asset/Dynamic.php:29
2809
  msgid "Wednesday"
2810
  msgstr ""
2811
 
2812
- #: src/Tribe/Asset/Dynamic.php:28
2813
  msgid "Tuesday"
2814
  msgstr ""
2815
 
2816
- #: src/Tribe/Asset/Dynamic.php:27
2817
  msgid "Monday"
2818
  msgstr ""
2819
 
2820
- #: src/Tribe/Asset/Dynamic.php:26
2821
  msgid "Sunday"
2822
  msgstr ""
2823
 
@@ -2898,11 +2921,11 @@ msgstr ""
2898
  msgid "Unknown service message"
2899
  msgstr ""
2900
 
2901
- #: src/Tribe/Aggregator/Record/List_Table.php:533
2902
  msgid "Unknown"
2903
  msgstr ""
2904
 
2905
- #: src/Tribe/Aggregator/Record/Abstract.php:1205
2906
  msgid "When this import was last scheduled to run, the daily limit for your Event Aggregator license had already been reached."
2907
  msgstr ""
2908
 
@@ -3639,7 +3662,7 @@ msgctxt "Abbreviation for the miles unit of measure"
3639
  msgid "mi"
3640
  msgstr ""
3641
 
3642
- #: src/Tribe/Main.php:983
3643
  msgid "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3644
  msgstr ""
3645
 
@@ -3864,133 +3887,133 @@ msgstr ""
3864
  msgid "Scheduled Imports"
3865
  msgstr ""
3866
 
3867
- #: src/Tribe/Aggregator/Tabs/New.php:603
3868
  msgid "Renew your Event Aggregator license"
3869
  msgstr ""
3870
 
3871
- #: src/Tribe/Aggregator/Tabs/New.php:600
3872
  msgid "Renew your license in order to import events from Facebook, iCalendar, Google, or Meetup."
3873
  msgstr ""
3874
 
3875
- #: src/Tribe/Aggregator/Tabs/New.php:599
3876
  msgid "Your Event Aggregator license is expired."
3877
  msgstr ""
3878
 
3879
- #: src/Tribe/Aggregator/Tabs/New.php:551
3880
  msgid "Learn More"
3881
  msgstr ""
3882
 
3883
- #: src/Tribe/Aggregator/Tabs/New.php:546 src/Tribe/Aggregator/Tabs/New.php:553
3884
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:19
3885
  msgid "opens in a new window"
3886
  msgstr ""
3887
 
3888
- #: src/Tribe/Aggregator/Tabs/New.php:544
3889
  msgid "Buy It Now"
3890
  msgstr ""
3891
 
3892
- #: src/Tribe/Aggregator/Tabs/New.php:541
3893
  msgid "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3894
  msgstr ""
3895
 
3896
- #: src/Tribe/Aggregator/Tabs/New.php:539
3897
  msgid "Import Using Event Aggregator"
3898
  msgstr ""
3899
 
3900
- #: src/Tribe/Aggregator/Tabs/New.php:452
3901
  msgid "Unable to save credentials"
3902
  msgstr ""
3903
 
3904
- #: src/Tribe/Aggregator/Tabs/New.php:445
3905
  msgid "Credentials have been saved"
3906
  msgstr ""
3907
 
3908
- #: src/Tribe/Aggregator/Tabs/New.php:436
3909
  msgid "The Meetup API key is required."
3910
  msgstr ""
3911
 
3912
- #: src/Tribe/Aggregator/Tabs/New.php:427
3913
  msgid "Invalid credential save nonce"
3914
  msgstr ""
3915
 
3916
- #: src/Tribe/Aggregator/Tabs/New.php:417
3917
  msgid "Invalid credential save request"
3918
  msgstr ""
3919
 
3920
- #: src/Tribe/Aggregator/Tabs/New.php:405
3921
  msgid "View your scheduled imports."
3922
  msgstr ""
3923
 
3924
- #: src/Tribe/Aggregator/Tabs/New.php:401
3925
  msgid "The next import is scheduled for %1$s."
3926
  msgstr ""
3927
 
3928
- #: src/Tribe/Aggregator/Tabs/New.php:394
3929
  msgctxt "separator between date and time"
3930
  msgid " at "
3931
  msgstr ""
3932
 
3933
- #: src/Tribe/Aggregator/Tabs/New.php:390
3934
  msgid "Your scheduled import was saved and the first import is complete!"
3935
  msgstr ""
3936
 
3937
- #: src/Tribe/Aggregator/Tabs/New.php:365
3938
  msgid "View your event categories"
3939
  msgstr ""
3940
 
3941
- #: src/Tribe/Aggregator/Tabs/New.php:361
3942
  msgid "%1$d new event category was created."
3943
  msgid_plural "%1$d new event categories were created."
3944
  msgstr[0] ""
3945
  msgstr[1] ""
3946
 
3947
- #: src/Tribe/Aggregator/Tabs/New.php:352
3948
  msgid "View your event organizers"
3949
  msgstr ""
3950
 
3951
- #: src/Tribe/Aggregator/Tabs/New.php:348
3952
  msgid "%1$d new organizer was imported."
3953
  msgid_plural "%1$d new organizers were imported."
3954
  msgstr[0] ""
3955
  msgstr[1] ""
3956
 
3957
- #: src/Tribe/Aggregator/Tabs/New.php:340
3958
  msgid "View your event venues"
3959
  msgstr ""
3960
 
3961
- #: src/Tribe/Aggregator/Tabs/New.php:336
3962
  msgid "%1$d new venue was imported."
3963
  msgid_plural "%1$d new venues were imported."
3964
  msgstr[0] ""
3965
  msgstr[1] ""
3966
 
3967
- #: src/Tribe/Aggregator/Tabs/New.php:326
3968
  msgid "View all %s"
3969
  msgstr ""
3970
 
3971
- #: src/Tribe/Aggregator/Tabs/New.php:318
3972
  msgid "No %1$s were imported or updated."
3973
  msgstr ""
3974
 
3975
- #: src/Tribe/Aggregator/Tabs/New.php:311
3976
  msgid "%1$d new image was imported."
3977
  msgid_plural "%1$d new images were imported."
3978
  msgstr[0] ""
3979
  msgstr[1] ""
3980
 
3981
- #: src/Tribe/Aggregator/Tabs/New.php:302
3982
  msgid "%1$d already-imported %2$s was skipped."
3983
  msgid_plural "%1$d already-imported %2$s were skipped."
3984
  msgstr[0] ""
3985
  msgstr[1] ""
3986
 
3987
- #: src/Tribe/Aggregator/Tabs/New.php:291
3988
  msgid "%1$d existing %2$s was updated."
3989
  msgid_plural "%1$d existing %2$s were updated."
3990
  msgstr[0] ""
3991
  msgstr[1] ""
3992
 
3993
- #: src/Tribe/Aggregator/Tabs/New.php:279
3994
  msgid "%1$d new %2$s was imported."
3995
  msgid_plural "%1$d new %2$s were imported."
3996
  msgstr[0] ""
@@ -4254,7 +4277,7 @@ msgstr ""
4254
  msgid "Events Aggregator Record"
4255
  msgstr ""
4256
 
4257
- #: src/Tribe/Aggregator/Record/Queue_Realtime.php:178
4258
  msgid "Unable to continue inserting data. Please reload this page to continue/try again."
4259
  msgstr ""
4260
 
@@ -4274,87 +4297,87 @@ msgstr ""
4274
  msgid "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4275
  msgstr ""
4276
 
4277
- #: src/Tribe/Aggregator/Record/Queue_Processor.php:234
4278
  msgid "Could not process queue for Import Record %1$d: %2$s"
4279
  msgstr ""
4280
 
4281
- #: src/Tribe/Aggregator/Record/List_Table.php:657
4282
  msgid "Select %s"
4283
  msgstr ""
4284
 
4285
- #: src/Tribe/Aggregator/Record/List_Table.php:622
4286
- #: src/Tribe/Aggregator/Record/List_Table.php:631
4287
- #: src/Tribe/Aggregator/Record/List_Table.php:639
4288
  msgid "updated"
4289
  msgstr ""
4290
 
4291
- #: src/Tribe/Aggregator/Record/List_Table.php:620
4292
- #: src/Tribe/Aggregator/Record/List_Table.php:628
4293
- #: src/Tribe/Aggregator/Record/List_Table.php:636
4294
  msgid "new"
4295
  msgstr ""
4296
 
4297
- #: src/Tribe/Aggregator/Record/List_Table.php:617
4298
  msgid "Latest Import:"
4299
  msgstr ""
4300
 
4301
- #: src/Tribe/Aggregator/Record/List_Table.php:615
4302
  msgid "all time"
4303
  msgstr ""
4304
 
4305
- #: src/Tribe/Aggregator/Record/List_Table.php:589
4306
  msgid "One Time"
4307
  msgstr ""
4308
 
4309
- #: src/Tribe/Aggregator/Record/List_Table.php:586
4310
  msgid "Invalid Frequency"
4311
  msgstr ""
4312
 
4313
- #: src/Tribe/Aggregator/Record/List_Table.php:556 src/Tribe/Aggregator.php:426
4314
  #: src/Tribe/Ignored_Events.php:357
4315
  #: src/admin-views/tribe-options-addons-api.php:36
4316
  msgctxt "in human readable time"
4317
  msgid "in about %s"
4318
  msgstr ""
4319
 
4320
- #: src/Tribe/Aggregator/Record/List_Table.php:554 src/Tribe/Aggregator.php:424
4321
  #: src/Tribe/Ignored_Events.php:355
4322
  #: src/admin-views/tribe-options-addons-api.php:34
4323
  msgctxt "human readable time ago"
4324
  msgid "about %s ago"
4325
  msgstr ""
4326
 
4327
- #: src/Tribe/Aggregator/Record/List_Table.php:506
4328
  msgid "Radius:"
4329
  msgstr ""
4330
 
4331
- #: src/Tribe/Aggregator/Record/List_Table.php:489
4332
  msgid "Keywords:"
4333
  msgstr ""
4334
 
4335
- #: src/Tribe/Aggregator/Record/List_Table.php:476
4336
  #: src/Tribe/Ignored_Events.php:337
4337
  msgctxt "record via origin"
4338
  msgid "via "
4339
  msgstr ""
4340
 
4341
- #: src/Tribe/Aggregator/Record/List_Table.php:433
4342
  msgid "Import preview"
4343
  msgstr ""
4344
 
4345
- #: src/Tribe/Aggregator/Record/List_Table.php:429
4346
  msgid "Import pending"
4347
  msgstr ""
4348
 
4349
- #: src/Tribe/Aggregator/Record/List_Table.php:425
4350
  msgid "Import schedule"
4351
  msgstr ""
4352
 
4353
- #: src/Tribe/Aggregator/Record/List_Table.php:413
4354
  msgid "Import failed"
4355
  msgstr ""
4356
 
4357
- #: src/Tribe/Aggregator/Record/List_Table.php:409
4358
  msgid "Import completed"
4359
  msgstr ""
4360
 
@@ -4439,11 +4462,11 @@ msgstr ""
4439
  msgid "Eventbrite"
4440
  msgstr ""
4441
 
4442
- #: src/Tribe/Aggregator/Record/Abstract.php:1148
4443
  msgid "Deleted Attachment: %d"
4444
  msgstr ""
4445
 
4446
- #: src/Tribe/Aggregator/Record/Abstract.php:496
4447
  msgid "Record: "
4448
  msgstr ""
4449
 
@@ -4478,7 +4501,7 @@ msgid "Hide Filters"
4478
  msgstr ""
4479
 
4480
  #: src/Tribe/Aggregator/Page.php:96
4481
- #: src/Tribe/Aggregator/Record/List_Table.php:485
4482
  msgid "View Filters"
4483
  msgstr ""
4484
 
@@ -4836,7 +4859,7 @@ msgid "There is an update for %s. You'll need to %scheck your license%s to have
4836
  msgstr ""
4837
 
4838
  #: common/src/Tribe/PUE/Checker.php:961 common/src/Tribe/PUE/Notices.php:285
4839
- #: src/Tribe/Aggregator/Record/Abstract.php:1163
4840
  msgid " (opens in a new window)"
4841
  msgstr ""
4842
 
@@ -5137,7 +5160,7 @@ msgstr ""
5137
  msgid "No notable changes detected"
5138
  msgstr ""
5139
 
5140
- #: src/Tribe/Main.php:2735
5141
  msgid " (View Full %1$s Description Here: %2$s)"
5142
  msgstr ""
5143
 
@@ -5185,147 +5208,147 @@ msgstr "%s Името не може да е празно"
5185
  msgid "Keep the Core Plugin %sFREE%s!"
5186
  msgstr "Запазете основното разширение %sБЕЗПЛАТНО%s!"
5187
 
5188
- #: src/Tribe/Template_Factory.php:300
5189
  msgid "No results were found for %1$s in or near %2$s."
5190
  msgstr "Не са намерени резултати за %1$s в или близо до %2$s."
5191
 
5192
- #: src/Tribe/Template_Factory.php:298
5193
  msgid "There were no results found for %s."
5194
  msgstr "Не са намерени резултати за %s."
5195
 
5196
- #: src/Tribe/Template/Month.php:456
5197
  msgid "There were no results found for %s this month. Try searching next month."
5198
  msgstr "Не са намерени резултати за %s този месец. Моля опитайте със следващия месец."
5199
 
5200
- #: src/Tribe/Template/Day.php:153
5201
  msgid "No %1$s scheduled for %2$s. Please try another day."
5202
  msgstr "Няма %1$s планирано за %2$s. Моля, опитайте с друг ден."
5203
 
5204
- #: src/Tribe/Main.php:4254
5205
  msgid "Check out the %savailable add-ons%s."
5206
  msgstr "Проверете %sналичните добавки%s."
5207
 
5208
- #: src/Tribe/Main.php:1923
5209
  msgid "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5210
  msgstr "Без зададено местоположение, вашето събитие няма да показва %sGoogle Rich Snippet%s в резултатите от търсенето."
5211
 
5212
- #: src/Tribe/Main.php:1854 src/Tribe/Main.php:1874
5213
  msgid "%1$s scheduled for: %2$s."
5214
  msgstr "%1$s е планирано за: %2$s."
5215
 
5216
- #: src/Tribe/Main.php:1835
5217
  msgid "%1$s draft updated. %2$sPreview %3$s"
5218
  msgstr "Черновата на %1$s е обновена. %2$sПреглед %3$s"
5219
 
5220
- #: src/Tribe/Main.php:1826
5221
  msgid "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5222
  msgstr "%1$s е планирано за: %2$s. %3$sПреглед %4$s"
5223
 
5224
- #: src/Tribe/Main.php:1820
5225
  msgid "%1$s submitted. %2$sPreview %3$s"
5226
  msgstr "%1$s е изпратено. %2$sПреглед %3$s"
5227
 
5228
- #: src/Tribe/Main.php:1802
5229
  msgid "%1$s updated. %2$sView %1$s%3$s"
5230
  msgstr ""
5231
 
5232
- #: src/Tribe/Main.php:1477
5233
  msgid "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5234
  msgstr "За съжаление tribe-common библиотеките не могат да бъдат открити! Папката трябва да бъде в директория \"common/\" на The Events Calendar."
5235
 
5236
- #: src/Tribe/Main.php:1112
5237
  msgid "If you have a valid license for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5238
  msgstr "Ако имате валиден лиценз за някоя от нашите Премиум добавки, можете да %s в премиум форумът за поддръжка. Екипът ни преглежда форумите и отговаря на зададените въпроси в рамките на 24-48 часа (в работни дни)."
5239
 
5240
- #: src/Tribe/Main.php:1111
5241
  msgid "post a thread"
5242
  msgstr "публикуване на тема"
5243
 
5244
- #: src/Tribe/Main.php:1107
5245
  msgid "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays."
5246
  msgstr "<strong>Нуждаете се от по-бърза техническа поддръжка?</strong> Предлагаме %1$s с поръчката на което и да е от нашите премиум разширения (напр. %2$s). Изберете лиценз и можете да пишете там, а ние гарантираме отговор в рамките на 24-48 часа (в работни дни)."
5247
 
5248
- #: src/Tribe/Main.php:1103
5249
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5250
  msgstr "Ако сте опитали стъпките по-горе и все още имате проблем, можете да публикувате нова тема в нашият %s. Екипът ни преглежда тези форуми веднъж седмично и с радост ще ви помогне."
5251
 
5252
- #: src/Tribe/Main.php:1102
5253
  msgid "open-source forum on WordPress.org"
5254
  msgstr "свободен форум на WordPress.org"
5255
 
5256
- #: src/Tribe/Main.php:1098
5257
  msgid "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays"
5258
  msgstr "<strong>Нуждаете се от по-бърза техническа поддръжка?</strong> Предлагаме %s с поръчката на което и да е от нашите премиум разширения. Изберете лиценз и можете да пишете там, а ние гарантираме отговор в рамките на 24-48 часа (в работни дни)"
5259
 
5260
- #: src/Tribe/Main.php:1097 src/Tribe/Main.php:1105
5261
  msgid "premium support on our website"
5262
  msgstr "премиум поддръжка на нашият сайт"
5263
 
5264
- #: src/Tribe/Main.php:1095
5265
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5266
  msgstr "Ако сте опитали стъпките по-горе и проблемът ви все още не е решен, можете да публикувате тема в нашите WordPress.org форуми за %1$s или %2$s. Нашият екип по поддръжката преглежда тези форуми веднъж в седмицата и с удоволствие ще ви асистира."
5267
 
5268
- #: src/Tribe/Main.php:1094
5269
  msgid "Events Tickets"
5270
  msgstr "Events Tickets"
5271
 
5272
- #: src/Tribe/Main.php:1079
5273
  msgid "Customizing the Events plugins"
5274
  msgstr "Персонализиране на разширенията за събития"
5275
 
5276
- #: src/Tribe/Main.php:1079
5277
  msgid "%s: Code and guides for customizing your calendar in useful and interesting ways."
5278
  msgstr "%s: Код и напътствия за персонализиране на вашият календар, представени по удобен и интересен начин."
5279
 
5280
- #: src/Tribe/Main.php:1077
5281
  msgid "Troubleshooting common problems"
5282
  msgstr "Отстраняване на често срещани проблеми"
5283
 
5284
- #: src/Tribe/Main.php:1077
5285
  msgid "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5286
  msgstr "%s: Виждате проблем с календара си? Проверете тук от къде идва проблема и как да го решите."
5287
 
5288
- #: src/Tribe/Main.php:1075
5289
  msgid "Using stylesheets and page templates"
5290
  msgstr "Използване на стилове и шаблони за страници"
5291
 
5292
- #: src/Tribe/Main.php:1075
5293
  msgid "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5294
  msgstr "%s: Преглед на шаблоните и стиловете по подразбиране, които са включени в разширението, както и информация как да ги промените."
5295
 
5296
- #: src/Tribe/Main.php:1073
5297
  msgid "Themer’s Guide"
5298
  msgstr "Напътствия за разработчици на теми"
5299
 
5300
- #: src/Tribe/Main.php:1073
5301
  msgid "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5302
  msgstr "%s: Нашето най-изчерпателно изложение на възможностите за персонализиране на календара, включително индивидуални шаблони и стилове."
5303
 
5304
- #: src/Tribe/Main.php:1071
5305
  msgid "Features overview"
5306
  msgstr "Преглед на функциите"
5307
 
5308
- #: src/Tribe/Main.php:1071
5309
  msgid "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5310
  msgstr "%s: Пълен преглед на функциите, които да очаквате и информация как да ги използвате."
5311
 
5312
- #: src/Tribe/Main.php:1069
5313
  msgid "Settings overview"
5314
  msgstr "Преглед на настройките"
5315
 
5316
- #: src/Tribe/Main.php:1069
5317
  msgid "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5318
  msgstr "%s: Обстоен преклед на The Events Calendar и на наличните настройки."
5319
 
5320
- #: src/Tribe/Main.php:1066
5321
  msgid "Support for The Events Calendar"
5322
  msgstr "Поддръжка на The Events Calendar"
5323
 
5324
- #: src/Tribe/Main.php:1055
5325
  msgid "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5326
  msgstr "Ние сме отдадени на това, да ви помогнем да направите своя календар неповторим и по тази причина предоставяме голямо количество ресурси, включително полезен %s, за да можете по-лесно да подготвите календара си."
5327
 
5328
- #: src/Tribe/Main.php:1053
5329
  msgid "New User Primer"
5330
  msgstr "Нов Наръчник за начинаещи"
5331
 
@@ -5348,7 +5371,7 @@ msgstr "Статус по подразбиране, които да се изп
5348
  msgid "CSV Import Settings"
5349
  msgstr "Настройки за CSV импорт"
5350
 
5351
- #: src/Tribe/Asset/Bootstrap_Datepicker.php:26
5352
  msgid "Clear"
5353
  msgstr "Изчистване"
5354
 
@@ -5360,7 +5383,7 @@ msgstr "Добавяне на друг %s"
5360
  msgid "Create New %s"
5361
  msgstr "Създаване на нов %s"
5362
 
5363
- #: src/Tribe/Organizer.php:371
5364
  msgid "Unnamed %s"
5365
  msgstr "Неозаглавен %s"
5366
 
@@ -5548,7 +5571,7 @@ msgstr "Отмени"
5548
  msgid "%s must be a positive number or percent."
5549
  msgstr "%s трябва да е положително число или процент."
5550
 
5551
- #: src/Tribe/Main.php:1000
5552
  msgid "%1$s or %2$s"
5553
  msgstr ""
5554
 
@@ -5605,7 +5628,7 @@ msgstr "Виж повече"
5605
  msgid "Day Navigation"
5606
  msgstr "Навигация по ден"
5607
 
5608
- #: src/Tribe/Aggregator/Tabs/New.php:388
5609
  msgid "Import complete!"
5610
  msgstr "Импортирането завършено!"
5611
 
@@ -5847,7 +5870,7 @@ msgid "More..."
5847
  msgstr "Още..."
5848
 
5849
  #: common/src/Tribe/Admin/Help_Page.php:194 common/src/Tribe/Plugins_API.php:43
5850
- #: src/Tribe/Main.php:1106
5851
  msgid "Events Calendar PRO"
5852
  msgstr "The Events Calendar PRO"
5853
 
@@ -6286,7 +6309,7 @@ msgstr "URL:"
6286
  msgid "%s Website"
6287
  msgstr "%s Уебсайт"
6288
 
6289
- #: src/Tribe/Aggregator/Record/List_Table.php:502
6290
  msgid "Location:"
6291
  msgstr ""
6292
 
@@ -7691,15 +7714,15 @@ msgstr "Презаписаните шаблони трябва да са пре
7691
  msgid "Template overrides should be moved to the correct subdirectory: %s"
7692
  msgstr "Презаписаните шаблони трябва да са преместени в правилната поддиректория: %s"
7693
 
7694
- #: src/Tribe/Template_Factory.php:306
7695
  msgid "No previous %s "
7696
  msgstr "Няма предишни %s "
7697
 
7698
- #: src/Tribe/Template_Factory.php:304 src/Tribe/Template_Factory.php:309
7699
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7700
  msgstr "Няма съвпадащо %1$s в %2$s. Моля, прегледайте календара за пълен списък с/със %3$s."
7701
 
7702
- #: src/Tribe/Template_Factory.php:302
7703
  msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7704
  msgstr "Няма предстиящо %1$s в %2$s. Проверете предстоящите %3$s в тази категория или прегледайте пълния календар."
7705
 
@@ -7707,28 +7730,28 @@ msgstr "Няма предстиящо %1$s в %2$s. Проверете пред
7707
  msgid "This %s has passed."
7708
  msgstr "Това %s е минало събитие."
7709
 
7710
- #: src/Tribe/Template/Month.php:953
7711
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7712
  msgstr "Заявената дата \"%s\" е невалидна &ndash; вместо това показваме текущия месец"
7713
 
7714
- #: src/Tribe/Template/Month.php:462 src/Tribe/Template_Factory.php:311
7715
  msgid "There were no results found."
7716
  msgstr "Не са открити събития."
7717
 
7718
- #: src/Tribe/Template/Month.php:460
7719
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7720
  msgstr "Няма съвпадащи %1$s в %2$s. Моля, прегледайте канедара за пълен списък със събития."
7721
 
7722
- #: src/Tribe/Template/Day.php:151
7723
  msgid "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7724
  msgstr "Няма съвпадащи %1$s в %2$s планирани за %3$s. Моля, опитайте с друг ден."
7725
 
7726
- #: src/Tribe/Template/Day.php:117 src/Tribe/Template/Day.php:133
7727
  msgid "Ongoing"
7728
  msgstr "В момента"
7729
 
7730
- #: src/Tribe/Aggregator/Page.php:82 src/Tribe/Template/Day.php:114
7731
- #: src/Tribe/Template/Day.php:130
7732
  msgid "All Day"
7733
  msgstr "Цял ден"
7734
 
@@ -7823,50 +7846,50 @@ msgstr "Сериен номер"
7823
  msgid "Error"
7824
  msgstr "Грешка"
7825
 
7826
- #: src/Tribe/Main.php:4597
7827
  msgid "Once Every 30 Mins"
7828
  msgstr "На всеки 30 минути"
7829
 
7830
- #: src/Tribe/Main.php:4517
7831
  msgid "Day Of"
7832
  msgstr "Почивен ден"
7833
 
7834
- #: src/Tribe/Main.php:4515
7835
  msgid "%s From"
7836
  msgstr "%s от"
7837
 
7838
- #: src/Tribe/Main.php:4511
7839
  msgid "%s In"
7840
  msgstr "%s в"
7841
 
7842
- #: src/Tribe/Main.php:4506 src/Tribe/Main.php:4531
7843
  #: src/admin-views/aggregator/origins/refine.php:7
7844
  msgid "Date"
7845
  msgstr "Дата"
7846
 
7847
- #: src/Tribe/Main.php:4433
7848
  msgid "Search"
7849
  msgstr "Търсене"
7850
 
7851
- #: src/Tribe/Main.php:4407 src/admin-views/aggregator/fields/schedule.php:44
7852
  #: src/admin-views/aggregator/fields/schedule.php:62
7853
  msgid "Day"
7854
  msgstr "Ден"
7855
 
7856
- #: src/Tribe/Main.php:4390
7857
  msgid "Month"
7858
  msgstr "Месец"
7859
 
7860
- #: src/Tribe/Main.php:4372
7861
  msgid "List"
7862
  msgstr "Списък"
7863
 
7864
- #: src/Tribe/Main.php:4356
7865
  msgid "Calendar"
7866
  msgstr "Календар"
7867
 
7868
  #: common/src/Tribe/Settings.php:254
7869
- #: src/Tribe/Admin/Bar/Default_Configurator.php:89 src/Tribe/Main.php:4355
7870
  msgid "Settings"
7871
  msgstr "Настройки"
7872
 
@@ -7880,7 +7903,7 @@ msgstr "CSV"
7880
  msgid "Add %s"
7881
  msgstr "Добави %s"
7882
 
7883
- #: src/Tribe/Admin/Bar/Default_Configurator.php:45 src/Tribe/Main.php:4306
7884
  msgid "View Calendar"
7885
  msgstr "Към календара"
7886
 
@@ -7888,53 +7911,53 @@ msgstr "Към календара"
7888
  msgid "%s"
7889
  msgstr "%s"
7890
 
7891
- #: src/Tribe/Main.php:4253
7892
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7893
  msgstr "Имате нужда от допълнителна функционалност, включително повтарящи се събития, продажба на билети, публикуване на събития от потребителите, повече изгледи и др.?"
7894
 
7895
- #: src/Tribe/Main.php:4248
7896
  msgid "Additional Functionality"
7897
  msgstr "Допълнителна функционалност"
7898
 
7899
- #: src/Tribe/Main.php:4203
7900
  msgid "News from Modern Tribe"
7901
  msgstr "Новини от Modern Tribe"
7902
 
7903
- #: src/Tribe/Main.php:4183
7904
  msgid "View All Add-Ons"
7905
  msgstr "Покажи всички Add-Ons"
7906
 
7907
- #: src/Tribe/Main.php:4180
7908
  msgid "Support"
7909
  msgstr "Поддръжка"
7910
 
7911
- #: src/Tribe/Main.php:3828 src/Tribe/Main.php:3841
7912
  msgid "%s Information"
7913
  msgstr "%s Информация"
7914
 
7915
- #: src/Tribe/Main.php:3819
7916
  msgid "%s Options"
7917
  msgstr "%s Опции"
7918
 
7919
- #: src/Tribe/Main.php:3742 src/Tribe/Main.php:3777
7920
  #: src/functions/template-tags/day.php:157
7921
  #: src/functions/template-tags/day.php:178
7922
  msgid "Date out of range."
7923
  msgstr "Изберете по-близка дата."
7924
 
7925
- #: src/Tribe/Main.php:2344
7926
  msgid "all"
7927
  msgstr "всички"
7928
 
7929
- #: src/Tribe/Main.php:2343 src/functions/template-tags/general.php:111
7930
  msgid "events"
7931
  msgstr "събития"
7932
 
7933
- #: src/Tribe/Main.php:2342 src/functions/template-tags/general.php:79
7934
  msgid "event"
7935
  msgstr "събитие"
7936
 
7937
- #: src/Tribe/Main.php:2341
7938
  msgid "page"
7939
  msgstr "страница"
7940
 
@@ -7946,7 +7969,8 @@ msgstr "Мрежа"
7946
  msgid "Done"
7947
  msgstr "Готово"
7948
 
7949
- #: common/src/Tribe/Main.php:272 src/Tribe/Asset/Bootstrap_Datepicker.php:27
 
7950
  #: src/functions/template-tags/day.php:104
7951
  msgid "Today"
7952
  msgstr "Днес"
@@ -7959,141 +7983,141 @@ msgstr "Назад"
7959
  msgid "Next"
7960
  msgstr "Напред"
7961
 
7962
- #: src/Tribe/Linked_Posts.php:1010
7963
  msgid "No saved %s exists."
7964
  msgstr "Не съществуват запаметени %s."
7965
 
7966
- #: src/Tribe/Linked_Posts.php:840
7967
  msgid "Available %s"
7968
  msgstr "Налични %s"
7969
 
7970
- #: src/Tribe/Linked_Posts.php:836
7971
  msgid "My %s"
7972
  msgstr "Моето %s"
7973
 
7974
- #: src/Tribe/Main.php:1859 src/Tribe/Main.php:1879
7975
  msgid "%s draft updated."
7976
  msgstr "%s чернови са обновени."
7977
 
7978
- #: src/Tribe/Main.php:1852 src/Tribe/Main.php:1872
7979
  msgid "%s submitted."
7980
  msgstr "%s изпратено."
7981
 
7982
- #: src/Tribe/Main.php:1850 src/Tribe/Main.php:1870
7983
  msgid "%s published."
7984
  msgstr "%s публикувано."
7985
 
7986
  #. translators: %s: date and time of the revision
7987
- #: src/Tribe/Main.php:1869
7988
  msgid "%s restored to revision from %s"
7989
  msgstr "%s е възстановено от %s"
7990
 
7991
  #. translators: Publish box date format, see http://php.net/date
7992
- #: src/Tribe/Main.php:1829 src/Tribe/Main.php:1857 src/Tribe/Main.php:1877
7993
  msgid "M j, Y @ G:i"
7994
  msgstr "M j, Y @ G:i"
7995
 
7996
- #: src/Tribe/Main.php:1818 src/Tribe/Main.php:1851 src/Tribe/Main.php:1871
7997
  msgid "%s saved."
7998
  msgstr "%s записано."
7999
 
8000
  #. translators: %s: date and time of the revision
8001
- #: src/Tribe/Main.php:1811 src/Tribe/Main.php:1849
8002
  msgid "%1$s restored to revision from %2$s"
8003
  msgstr "%1$s възстановени в нова версия от %2$s"
8004
 
8005
- #: src/Tribe/Main.php:1809 src/Tribe/Main.php:1844 src/Tribe/Main.php:1847
8006
- #: src/Tribe/Main.php:1864 src/Tribe/Main.php:1867
8007
  msgid "%s updated."
8008
  msgstr "%s обновени."
8009
 
8010
- #: src/Tribe/Main.php:1808 src/Tribe/Main.php:1846 src/Tribe/Main.php:1866
8011
  msgid "Custom field deleted."
8012
  msgstr "Custom полето е изтрито."
8013
 
8014
- #: src/Tribe/Main.php:1807 src/Tribe/Main.php:1845 src/Tribe/Main.php:1865
8015
  msgid "Custom field updated."
8016
  msgstr "Custom полето е обновено."
8017
 
8018
- #: src/Tribe/Main.php:1785
8019
  msgid "New %s Category Name"
8020
  msgstr "Ново %s Име на Категория"
8021
 
8022
- #: src/Tribe/Main.php:1784
8023
  msgid "Add New %s Category"
8024
  msgstr "Добави нова %s категория"
8025
 
8026
- #: src/Tribe/Main.php:1783
8027
  msgid "Update %s Category"
8028
  msgstr "Обнови %s категория"
8029
 
8030
- #: src/Tribe/Main.php:1782
8031
  msgid "Edit %s Category"
8032
  msgstr "Редактирай %s категория"
8033
 
8034
- #: src/Tribe/Main.php:1781
8035
  msgid "Parent %s Category:"
8036
  msgstr "По-горна %s категория"
8037
 
8038
- #: src/Tribe/Main.php:1780
8039
  msgid "Parent %s Category"
8040
  msgstr "По-горна %s категория"
8041
 
8042
- #: src/Tribe/Main.php:1779
8043
  msgid "All %s Categories"
8044
  msgstr "Всички %s Категории"
8045
 
8046
- #: src/Tribe/Main.php:1778
8047
  msgid "Search %s Categories"
8048
  msgstr "Търси %s Категории"
8049
 
8050
- #: src/Tribe/Main.php:1777
8051
  msgid "%s Category"
8052
  msgstr "%s Категория"
8053
 
8054
- #: src/Tribe/Main.php:1767 src/Tribe/Organizer.php:98 src/Tribe/Venue.php:117
8055
  msgid "No %s found in Trash"
8056
  msgstr "Няма намерени %s в кошчето."
8057
 
8058
- #: src/Tribe/Main.php:1766 src/Tribe/Organizer.php:97 src/Tribe/Venue.php:116
8059
  msgid "No %s found"
8060
  msgstr "Няма намерени %s"
8061
 
8062
- #: src/Tribe/Main.php:1765 src/Tribe/Organizer.php:96 src/Tribe/Venue.php:115
8063
  msgid "Search %s"
8064
  msgstr "Търсене %s"
8065
 
8066
- #: src/Tribe/Main.php:1764 src/Tribe/Organizer.php:95 src/Tribe/Venue.php:114
8067
  #: src/views/month/single-day.php:26
8068
  msgid "View %s"
8069
  msgstr "Преглед %s"
8070
 
8071
- #: src/Tribe/Main.php:1763 src/Tribe/Organizer.php:94 src/Tribe/Venue.php:113
8072
  msgid "New %s"
8073
  msgstr "Нов %s"
8074
 
8075
- #: src/Tribe/Main.php:1761 src/Tribe/Main.php:1893 src/Tribe/Main.php:1894
8076
  #: src/Tribe/Organizer.php:92 src/Tribe/Venue.php:111
8077
  msgid "Add New %s"
8078
  msgstr "Добавяне %s"
8079
 
8080
- #: src/Tribe/Main.php:1760 src/Tribe/Organizer.php:91 src/Tribe/Venue.php:110
8081
  msgid "Add New"
8082
  msgstr "Добавяне"
8083
 
8084
- #: src/Tribe/Main.php:1727 src/Tribe/Main.php:2339
8085
  msgid "tag"
8086
  msgstr "таг"
8087
 
8088
- #: src/Tribe/Main.php:1713 src/Tribe/Main.php:2340
8089
  msgid "category"
8090
  msgstr "категория"
8091
 
8092
- #: src/Tribe/Main.php:1465
8093
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8094
  msgstr "За съжаление, The Events Calendar изисква PHP %s или по-висока версия. Свържете се с уеб администратора си, за да ви прехвърли към по-нова версия на PHP."
8095
 
8096
- #: src/Tribe/Main.php:1462
8097
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8098
  msgstr "The Events Calendar изисква WordPress %s или по-нова версия. Моля, обновете WordPress."
8099
 
@@ -8111,72 +8135,72 @@ msgstr "Помощ"
8111
  msgid "Display"
8112
  msgstr "Изглед"
8113
 
8114
- #: src/Tribe/Main.php:1309
8115
  msgid "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8116
  msgstr "Следните plugin-и са стари версии: %1$s. Всички добавки съдържат зависимости от The Events Calendar и няма да функционират изправно освен ако не са в комбинация с подходящата версия. %2$sНаучете повече%3$s."
8117
 
8118
- #: src/Tribe/Main.php:1297
8119
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8120
  msgstr "Версията на вашия The Events Calendar е по-стара от тази на вашите The Events Calendar add-on-и. Моля, %sобновете сега.%s"
8121
 
8122
- #: src/Tribe/Main.php:788
8123
  msgid "Initializing Tribe Events on %s"
8124
  msgstr "Стартиране на Tribe Events на %s"
8125
 
8126
- #: src/Tribe/Main.php:763
8127
  msgid "today"
8128
  msgstr "днес"
8129
 
8130
- #: src/Tribe/Main.php:762
8131
  msgid "day"
8132
  msgstr "ден"
8133
 
8134
- #: src/Tribe/Main.php:761
8135
  msgid "past"
8136
  msgstr "изминали"
8137
 
8138
- #: src/Tribe/Main.php:760
8139
  msgid "upcoming"
8140
  msgstr "предстоящи"
8141
 
8142
- #: src/Tribe/Main.php:759
8143
  msgid "list"
8144
  msgstr "списък"
8145
 
8146
- #: src/Tribe/Main.php:758
8147
  msgid "month"
8148
  msgstr "месец"
8149
 
8150
- #. #-#-#-#-# the-events-calendar-code.pot (The Events Calendar 4.6.20.1)
8151
  #. #-#-#-#-#
8152
  #. Plugin Name of the plugin/theme
8153
  #: common/src/Tribe/Admin/Help_Page.php:59 common/src/Tribe/Customizer.php:569
8154
- #: common/src/Tribe/Plugins_API.php:25 src/Tribe/Main.php:751
8155
- #: src/Tribe/Main.php:1093 src/Tribe/Privacy.php:29
8156
  #: src/functions/template-tags/general.php:1345
8157
  msgid "The Events Calendar"
8158
  msgstr "The Events Calendar"
8159
 
8160
- #: src/Tribe/Main.php:1163 src/admin-views/aggregator/tabs/import-form.php:185
8161
  #: src/admin-views/aggregator/tabs/import-form.php:197
8162
  #: src/functions/template-tags/general.php:63
8163
  msgid "Event"
8164
  msgstr "Събитие"
8165
 
8166
  #: common/src/Tribe/Settings.php:177 common/src/Tribe/Settings.php:241
8167
- #: common/src/Tribe/Settings.php:242 src/Tribe/Main.php:1155
8168
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:207
8169
  #: src/functions/template-tags/general.php:95
8170
  msgid "Events"
8171
  msgstr "Събития"
8172
 
8173
- #: src/Tribe/Organizer.php:157 src/functions/template-tags/organizer.php:115
8174
  msgid "Organizer"
8175
  msgstr "Организатор"
8176
 
8177
  #: src/Tribe/Organizer.php:171
8178
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:206
8179
- #: src/functions/template-tags/organizer.php:126
8180
  msgid "Organizers"
8181
  msgstr "Организатори"
8182
 
@@ -8440,7 +8464,7 @@ msgstr "Дата:"
8440
  msgid "End:"
8441
  msgstr "Край:"
8442
 
8443
- #: src/Tribe/Aggregator/Record/List_Table.php:498
8444
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
8445
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
8446
  #: src/views/modules/meta/details.php:66 src/views/modules/meta/details.php:91
@@ -8459,7 +8483,7 @@ msgstr "Крайна дата"
8459
  msgid "Start Date"
8460
  msgstr "Начална дата"
8461
 
8462
- #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1776
8463
  msgid "%s Categories"
8464
  msgstr "%s Категории"
8465
 
@@ -8470,7 +8494,7 @@ msgstr ""
8470
  #: src/Tribe/Admin/Timezone_Updater.php:87
8471
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
8472
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:100
8473
- #: src/Tribe/Aggregator/Record/Queue_Realtime.php:203
8474
  msgid "%d%% complete"
8475
  msgstr "%d%% завършено"
8476
 
@@ -8483,21 +8507,21 @@ msgid "Please wait while time zone data is added to your events."
8483
  msgstr ""
8484
 
8485
  #: src/Tribe/Admin/Bar/Default_Configurator.php:62
8486
- #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:211 src/Tribe/Main.php:1762
8487
- #: src/Tribe/Main.php:4862 src/Tribe/Main.php:4909 src/Tribe/Organizer.php:93
8488
  #: src/Tribe/Venue.php:112
8489
  msgid "Edit %s"
8490
  msgstr "Редактиране на %s"
8491
 
8492
- #: src/Tribe/Main.php:4846 src/Tribe/Main.php:4903
8493
  msgid "Use Saved %s:"
8494
  msgstr "Използвай запаметено %s:"
8495
 
8496
- #: src/Tribe/Main.php:992
8497
  msgid " ask the site administrator set a different Events URL slug."
8498
  msgstr "поискайте от администратора на сайта да промени URL адреса за събития."
8499
 
8500
- #: src/Tribe/Main.php:986
8501
  msgid "Ask the site administrator to edit the %s slug"
8502
  msgstr ""
8503
 
@@ -8505,7 +8529,7 @@ msgstr ""
8505
  msgid "Thanks for Updating The Events Calendar"
8506
  msgstr "Благодарим, че актуализирахте The Events Calendar"
8507
 
8508
- #: src/Tribe/Main.php:846 src/Tribe/Main.php:848
8509
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
8510
  msgid "Welcome to The Events Calendar"
8511
  msgstr "Добре дошли в The Events Calendar"
11
  "Language: bg\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
14
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:337
15
+ msgid "The event tag ID or name"
16
+ msgstr ""
17
+
18
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:331
19
+ msgid "The event category ID or name"
20
+ msgstr ""
21
+
22
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:508
23
+ msgid "Events should be filtered by their post_parent being the specified one."
24
+ msgstr ""
25
+
26
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:498
27
+ msgid "Include events with one of the post IDs specified in the array of CSV list, date filters will be ignored."
28
+ msgstr ""
29
+
30
+ #: src/Tribe/Aggregator/Record/Async_Queue.php:348
31
+ #: src/Tribe/Aggregator/Record/Void_Queue.php:122
32
+ msgid "Unable to process this import - a breakage or conflict may have resulted in the import halting."
33
+ msgstr ""
34
+
35
+ #: common/src/Tribe/Plugins_API.php:37
36
+ msgid "Event Aggregator adds massive import functionality to your calendar. Before you know it, you’ll be importing events from Meetup, Eventbrite, Google Calendar, iCalendar, and other URLs with ease. Schedule imports to run automatically behind-the-scenes or run them manually when you’re ready. Go ahead and import to your heart’s content—Event Aggregator hooks you up with a central dashboard in the admin to make managing your imports a breeze."
37
+ msgstr ""
38
+
39
  #: src/views/month/single-day.php:57
40
  msgid "%s for %s"
41
  msgstr ""
208
  msgid "Do more with Eventbrite Tickets"
209
  msgstr ""
210
 
211
+ #: src/Tribe/Main.php:4114
212
  msgid "Search for %s by month. Please use the format %s."
213
  msgstr ""
214
 
215
+ #: src/Tribe/Main.php:4109
216
  msgid "Search for %s by Date. Please use the format %s."
217
  msgstr ""
218
 
219
+ #: src/Tribe/Main.php:4077 src/Tribe/Main.php:4078
220
  msgid "2 digit month dot 4 digit year"
221
  msgstr ""
222
 
223
+ #: src/Tribe/Main.php:4076
224
  msgid "4 digit year dot 2 digit month"
225
  msgstr ""
226
 
227
+ #: src/Tribe/Main.php:4075
228
  msgid "2 digit month hyphen 4 digit year"
229
  msgstr ""
230
 
231
+ #: src/Tribe/Main.php:4072 src/Tribe/Main.php:4073 src/Tribe/Main.php:4074
232
  msgid "1 digit month hyphen 4 digit year"
233
  msgstr ""
234
 
235
+ #: src/Tribe/Main.php:4069 src/Tribe/Main.php:4071
236
  msgid "2 digit month slash 4 digit year"
237
  msgstr ""
238
 
239
+ #: src/Tribe/Main.php:4068 src/Tribe/Main.php:4070
240
  msgid "1 digit month slash 4 digit year"
241
  msgstr ""
242
 
243
+ #: src/Tribe/Main.php:4067
244
  msgid "4 digit year hyphen 2 digit month"
245
  msgstr ""
246
 
247
+ #: src/Tribe/Main.php:4063
248
  msgid "2 digit day dot 2 digit month dot 4 digit year"
249
  msgstr ""
250
 
251
+ #: src/Tribe/Main.php:4062
252
  msgid "2 digit month dot 2 digit day dot 4 digit year"
253
  msgstr ""
254
 
255
+ #: src/Tribe/Main.php:4061
256
  msgid "4 digit year dot 2 digit month dot 2 digit day"
257
  msgstr ""
258
 
259
+ #: src/Tribe/Main.php:4060
260
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
261
  msgstr ""
262
 
263
+ #: src/Tribe/Main.php:4059
264
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
265
  msgstr ""
266
 
267
+ #: src/Tribe/Main.php:4058
268
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
269
  msgstr ""
270
 
271
+ #: src/Tribe/Main.php:4057
272
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
273
  msgstr ""
274
 
275
+ #: src/Tribe/Main.php:4056
276
  msgid "2 digit day slash 2 digit month slash 4 digit year"
277
  msgstr ""
278
 
279
+ #: src/Tribe/Main.php:4055
280
  msgid "1 digit day slash 1 digit month slash 4 digit year"
281
  msgstr ""
282
 
283
+ #: src/Tribe/Main.php:4054
284
  msgid "2 digit month slash 2 digit day slash 4 digit year"
285
  msgstr ""
286
 
287
+ #: src/Tribe/Main.php:4053
288
  msgid "1 digit month slash 1 digit day slash 4 digit year"
289
  msgstr ""
290
 
291
+ #: src/Tribe/Main.php:4052
292
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
293
  msgstr ""
294
 
295
+ #: src/Tribe/Main.php:4031
296
  msgid "Search for %s by Keyword."
297
  msgstr ""
298
 
520
  msgstr ""
521
 
522
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
523
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:385
524
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
525
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
526
  msgid "The requested page was not found."
534
  msgid "one week"
535
  msgstr ""
536
 
537
+ #: src/Tribe/Aggregator/Record/List_Table.php:577
538
  msgctxt "when the retry will happen, a date"
539
  msgid "retrying at %s"
540
  msgstr ""
541
 
542
+ #: src/Tribe/Aggregator/Record/List_Table.php:574
543
  msgctxt "in human readable time"
544
  msgid "retrying in about %s"
545
  msgstr ""
621
  msgstr ""
622
 
623
  #: common/src/Tribe/Plugins_API.php:71
624
+ msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Guest check in is easy with QR codes and our custom scanning app."
625
  msgstr ""
626
 
627
  #: src/admin-views/tribe-options-general.php:31
653
  msgid "The event with the specified ID is not accessible."
654
  msgstr ""
655
 
656
+ #: src/Tribe/Main.php:1812
657
  msgid "%1$s published. %2$sView %3$s"
658
  msgstr ""
659
 
1004
  msgid "the event post name"
1005
  msgstr ""
1006
 
1007
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:354
1008
  msgid "The event organizer IDs or data"
1009
  msgstr ""
1010
 
1011
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:346
1012
  msgid "The event venue ID or data"
1013
  msgstr ""
1014
 
1251
  msgid "Returns all the organizers matching the search criteria"
1252
  msgstr ""
1253
 
1254
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:494
1255
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1256
  msgstr ""
1257
 
1258
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:488
1259
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1260
  msgstr ""
1261
 
1262
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:482
1263
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1264
  msgstr ""
1265
 
1266
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:477
1267
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1268
  msgid "The event post status"
1269
  msgstr ""
1270
 
1271
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:470
1272
  msgid "Events should be filtered by their featured status"
1273
  msgstr ""
1274
 
1275
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:462
1276
  msgid "Events should be assigned one of the specified organizer IDs"
1277
  msgstr ""
1278
 
1279
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1280
  msgid "Events should be assigned one of the specified venue IDs"
1281
  msgstr ""
1282
 
1370
  msgid "The event status"
1371
  msgstr ""
1372
 
1373
+ #: src/Tribe/Linked_Posts.php:1254
1374
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1375
  msgid "Create or Find %s"
1376
  msgstr ""
1377
 
1378
+ #: src/Tribe/Linked_Posts.php:1245
1379
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1380
  msgid "Find %1$s %2$s"
1381
  msgstr ""
1382
 
1383
+ #: src/Tribe/Linked_Posts.php:1236
1384
  msgid "Find a Venue"
1385
  msgstr ""
1386
 
1387
+ #: src/Tribe/Linked_Posts.php:1235
1388
  msgid "Create or Find a Venue"
1389
  msgstr ""
1390
 
1391
+ #: src/Tribe/Linked_Posts.php:1228
1392
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1393
  msgid "Create or Find %s"
1394
  msgstr ""
1395
 
1396
+ #: src/Tribe/Linked_Posts.php:1219
1397
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1398
  msgid "Find %1$s %2$s"
1399
  msgstr ""
1400
 
1401
+ #: src/Tribe/Linked_Posts.php:1208
1402
  msgid "Find an Organizer"
1403
  msgstr ""
1404
 
1405
+ #: src/Tribe/Linked_Posts.php:1207
1406
  msgid "Create or Find an Organizer"
1407
  msgstr ""
1408
 
1409
+ #: src/Tribe/Linked_Posts.php:1200
1410
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1411
  msgid "Create or Find %s"
1412
  msgstr ""
1413
 
1414
+ #: src/Tribe/Linked_Posts.php:1191
1415
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1416
  msgid "Find %1$s %2$s"
1417
  msgstr ""
1507
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1508
  msgstr ""
1509
 
1510
+ #: src/Tribe/Main.php:996
1511
  msgid "edit Events settings."
1512
  msgstr ""
1513
 
1514
+ #: src/Tribe/Main.php:987
1515
  msgid "Edit the %s slug"
1516
  msgstr ""
1517
 
1518
+ #: src/Tribe/Linked_Posts.php:1177
1519
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1520
  msgid "an"
1521
  msgstr ""
1522
 
1523
+ #: src/Tribe/Linked_Posts.php:1170
1524
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1525
  msgid "a"
1526
  msgstr ""
1562
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1563
  msgstr ""
1564
 
 
 
 
 
1565
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1566
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1567
  msgstr ""
1606
  msgid "The event WordPress post ID"
1607
  msgstr ""
1608
 
1609
+ #: src/Tribe/Aggregator/Record/Abstract.php:363
1610
  msgid "Something went wrong while inserting the record in the database."
1611
  msgstr ""
1612
 
1624
  msgid "Please refresh the page and try your request again."
1625
  msgstr ""
1626
 
1627
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:29
1628
  msgid "The image WordPress post ID"
1629
  msgstr ""
1630
 
1684
  msgid "The event last modification date in UTC time"
1685
  msgstr ""
1686
 
1687
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:419
1688
  msgid "Events should start after the specified date"
1689
  msgstr ""
1690
 
1691
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:426
1692
  msgid "Events should start before the specified date"
1693
  msgstr ""
1694
 
1724
  msgid "the event post ID"
1725
  msgstr ""
1726
 
1727
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:432
1728
  msgid "Events should contain the specified string in the title or description"
1729
  msgstr ""
1730
 
2020
  msgstr ""
2021
 
2022
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2023
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:404
2024
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2025
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2026
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2027
  msgid "The archive page to return"
2028
  msgstr ""
2029
 
2030
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:412
2031
  msgid "The number of events to return on each page"
2032
  msgstr ""
2033
 
2034
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
2035
  msgid "Events should be assigned one of the specified categories slugs or IDs"
2036
  msgstr ""
2037
 
2038
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:446
2039
  msgid "Events should be assigned one of the specified tags slugs or IDs"
2040
  msgstr ""
2041
 
2042
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:374
2043
  msgid "Returns all the upcoming events matching the search criteria"
2044
  msgstr ""
2045
 
2046
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:36
2047
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:382
2048
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:64
2049
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:53
2050
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:61
2259
  msgid "three months"
2260
  msgstr ""
2261
 
2262
+ #: src/Tribe/Aggregator/Tabs/New.php:385
2263
  msgid "%1$d new event tag was created."
2264
  msgid_plural "%1$d new event tags were created."
2265
  msgstr[0] ""
2266
  msgstr[1] ""
2267
 
2268
+ #: src/Tribe/Aggregator/Tabs/New.php:389
2269
  msgid "View your event tags"
2270
  msgstr ""
2271
 
2324
  msgid "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2325
  msgstr ""
2326
 
2327
+ #: src/Tribe/Main.php:763
2328
  msgctxt "all events slug"
2329
  msgid "all"
2330
  msgstr ""
2365
  msgid "The WordPress term ID"
2366
  msgstr ""
2367
 
2368
+ #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:37
2369
  msgid "The link to the image in the specified size on the site"
2370
  msgstr ""
2371
 
2381
  msgid "The image width in pixels in the specified size"
2382
  msgstr ""
2383
 
2384
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:45
2385
  msgid "The details about each size available for the image"
2386
  msgstr ""
2387
 
2388
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:41
2389
  msgid "The image natural height in pixels"
2390
  msgstr ""
2391
 
2392
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:37
2393
  msgid "The image natural width in pixels"
2394
  msgstr ""
2395
 
2396
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:33
2397
  msgid "The image file extension"
2398
  msgstr ""
2399
 
2401
  msgid "The venue WordPress post ID"
2402
  msgstr ""
2403
 
2404
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:25
2405
  msgid "The URL to the full size version of the image"
2406
  msgstr ""
2407
 
2441
  msgid "The cost currency symbol"
2442
  msgstr ""
2443
 
2444
+ #: src/Tribe/Main.php:4035
2445
  msgid "Keyword"
2446
  msgstr ""
2447
 
2516
  msgid "Export Events"
2517
  msgstr ""
2518
 
2519
+ #: src/Tribe/Main.php:762
2520
  msgctxt "featured events slug"
2521
  msgid "featured"
2522
  msgstr ""
2523
 
2524
+ #: src/Tribe/Linked_Posts.php:1133
2525
  msgid "Create: <b><%= term %></b>"
2526
  msgstr ""
2527
 
2670
  msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2671
  msgstr ""
2672
 
2673
+ #: src/Tribe/Assets.php:685 src/deprecated/Tribe__Events__Asset__Dynamic.php:77
2674
  msgid "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2675
  msgstr ""
2676
 
2677
+ #: src/Tribe/Assets.php:684 src/deprecated/Tribe__Events__Asset__Dynamic.php:76
2678
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2679
  msgstr ""
2680
 
2681
+ #: src/Tribe/Assets.php:683 src/deprecated/Tribe__Events__Asset__Dynamic.php:75
2682
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2683
  msgstr ""
2684
 
2685
+ #: src/Tribe/Assets.php:682 src/deprecated/Tribe__Events__Asset__Dynamic.php:74
2686
  msgid "This event is all day on %%startdatewithyear%%."
2687
  msgstr ""
2688
 
2689
+ #: src/Tribe/Assets.php:681 src/deprecated/Tribe__Events__Asset__Dynamic.php:73
2690
  msgid "This event is at %%starttime%% on %%startdatewithyear%%."
2691
  msgstr ""
2692
 
2693
+ #: src/Tribe/Assets.php:680 src/deprecated/Tribe__Events__Asset__Dynamic.php:72
2694
  msgid "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2695
  msgstr ""
2696
 
2697
+ #: src/Tribe/Assets.php:677 src/deprecated/Tribe__Events__Asset__Dynamic.php:69
2698
  msgid "Dec"
2699
  msgstr ""
2700
 
2701
+ #: src/Tribe/Assets.php:676 src/deprecated/Tribe__Events__Asset__Dynamic.php:68
2702
  msgid "Nov"
2703
  msgstr ""
2704
 
2705
+ #: src/Tribe/Assets.php:675 src/deprecated/Tribe__Events__Asset__Dynamic.php:67
2706
  msgid "Oct"
2707
  msgstr ""
2708
 
2709
+ #: src/Tribe/Assets.php:674 src/deprecated/Tribe__Events__Asset__Dynamic.php:66
2710
  msgid "Sep"
2711
  msgstr ""
2712
 
2713
+ #: src/Tribe/Assets.php:673 src/deprecated/Tribe__Events__Asset__Dynamic.php:65
2714
  msgid "Aug"
2715
  msgstr ""
2716
 
2717
+ #: src/Tribe/Assets.php:672 src/deprecated/Tribe__Events__Asset__Dynamic.php:64
2718
  msgid "Jul"
2719
  msgstr ""
2720
 
2721
+ #: src/Tribe/Assets.php:671 src/deprecated/Tribe__Events__Asset__Dynamic.php:63
2722
  msgid "Jun"
2723
  msgstr ""
2724
 
2725
+ #: src/Tribe/Assets.php:669 src/deprecated/Tribe__Events__Asset__Dynamic.php:61
2726
  msgid "Apr"
2727
  msgstr ""
2728
 
2729
+ #: src/Tribe/Assets.php:668 src/deprecated/Tribe__Events__Asset__Dynamic.php:60
2730
  msgid "Mar"
2731
  msgstr ""
2732
 
2733
+ #: src/Tribe/Assets.php:667 src/deprecated/Tribe__Events__Asset__Dynamic.php:59
2734
  msgid "Feb"
2735
  msgstr ""
2736
 
2737
+ #: src/Tribe/Assets.php:666 src/deprecated/Tribe__Events__Asset__Dynamic.php:58
2738
  msgid "Jan"
2739
  msgstr ""
2740
 
2741
+ #: src/Tribe/Assets.php:663 src/deprecated/Tribe__Events__Asset__Dynamic.php:55
2742
  msgid "December"
2743
  msgstr ""
2744
 
2745
+ #: src/Tribe/Assets.php:662 src/deprecated/Tribe__Events__Asset__Dynamic.php:54
2746
  msgid "November"
2747
  msgstr ""
2748
 
2749
+ #: src/Tribe/Assets.php:661 src/deprecated/Tribe__Events__Asset__Dynamic.php:53
2750
  msgid "October"
2751
  msgstr ""
2752
 
2753
+ #: src/Tribe/Assets.php:660 src/deprecated/Tribe__Events__Asset__Dynamic.php:52
2754
  msgid "September"
2755
  msgstr ""
2756
 
2757
+ #: src/Tribe/Assets.php:659 src/deprecated/Tribe__Events__Asset__Dynamic.php:51
2758
  msgid "August"
2759
  msgstr ""
2760
 
2761
+ #: src/Tribe/Assets.php:658 src/deprecated/Tribe__Events__Asset__Dynamic.php:50
2762
  msgid "July"
2763
  msgstr ""
2764
 
2765
+ #: src/Tribe/Assets.php:657 src/deprecated/Tribe__Events__Asset__Dynamic.php:49
2766
  msgid "June"
2767
  msgstr ""
2768
 
2769
+ #: src/Tribe/Assets.php:656 src/Tribe/Assets.php:670
2770
+ #: src/deprecated/Tribe__Events__Asset__Dynamic.php:48
2771
+ #: src/deprecated/Tribe__Events__Asset__Dynamic.php:62
2772
  msgid "May"
2773
  msgstr ""
2774
 
2775
+ #: src/Tribe/Assets.php:655 src/deprecated/Tribe__Events__Asset__Dynamic.php:47
2776
  msgid "April"
2777
  msgstr ""
2778
 
2779
+ #: src/Tribe/Assets.php:654 src/deprecated/Tribe__Events__Asset__Dynamic.php:46
2780
  msgid "March"
2781
  msgstr ""
2782
 
2783
+ #: src/Tribe/Assets.php:653 src/deprecated/Tribe__Events__Asset__Dynamic.php:45
2784
  msgid "February"
2785
  msgstr ""
2786
 
2787
+ #: src/Tribe/Assets.php:652 src/deprecated/Tribe__Events__Asset__Dynamic.php:44
2788
  msgid "January"
2789
  msgstr ""
2790
 
2791
+ #: src/Tribe/Assets.php:649 src/deprecated/Tribe__Events__Asset__Dynamic.php:41
2792
  msgid "Sat"
2793
  msgstr ""
2794
 
2795
+ #: src/Tribe/Assets.php:648 src/deprecated/Tribe__Events__Asset__Dynamic.php:40
2796
  msgid "Fri"
2797
  msgstr ""
2798
 
2799
+ #: src/Tribe/Assets.php:647 src/deprecated/Tribe__Events__Asset__Dynamic.php:39
2800
  msgid "Thu"
2801
  msgstr ""
2802
 
2803
+ #: src/Tribe/Assets.php:646 src/deprecated/Tribe__Events__Asset__Dynamic.php:38
2804
  msgid "Wed"
2805
  msgstr ""
2806
 
2807
+ #: src/Tribe/Assets.php:645 src/deprecated/Tribe__Events__Asset__Dynamic.php:37
2808
  msgid "Tue"
2809
  msgstr ""
2810
 
2811
+ #: src/Tribe/Assets.php:644 src/deprecated/Tribe__Events__Asset__Dynamic.php:36
2812
  msgid "Mon"
2813
  msgstr ""
2814
 
2815
+ #: src/Tribe/Assets.php:643 src/deprecated/Tribe__Events__Asset__Dynamic.php:35
2816
  msgid "Sun"
2817
  msgstr ""
2818
 
2819
+ #: src/Tribe/Assets.php:640 src/deprecated/Tribe__Events__Asset__Dynamic.php:32
2820
  msgid "Saturday"
2821
  msgstr ""
2822
 
2823
+ #: src/Tribe/Assets.php:639 src/deprecated/Tribe__Events__Asset__Dynamic.php:31
2824
  msgid "Friday"
2825
  msgstr ""
2826
 
2827
+ #: src/Tribe/Assets.php:638 src/deprecated/Tribe__Events__Asset__Dynamic.php:30
2828
  msgid "Thursday"
2829
  msgstr ""
2830
 
2831
+ #: src/Tribe/Assets.php:637 src/deprecated/Tribe__Events__Asset__Dynamic.php:29
2832
  msgid "Wednesday"
2833
  msgstr ""
2834
 
2835
+ #: src/Tribe/Assets.php:636 src/deprecated/Tribe__Events__Asset__Dynamic.php:28
2836
  msgid "Tuesday"
2837
  msgstr ""
2838
 
2839
+ #: src/Tribe/Assets.php:635 src/deprecated/Tribe__Events__Asset__Dynamic.php:27
2840
  msgid "Monday"
2841
  msgstr ""
2842
 
2843
+ #: src/Tribe/Assets.php:634 src/deprecated/Tribe__Events__Asset__Dynamic.php:26
2844
  msgid "Sunday"
2845
  msgstr ""
2846
 
2921
  msgid "Unknown service message"
2922
  msgstr ""
2923
 
2924
+ #: src/Tribe/Aggregator/Record/List_Table.php:540
2925
  msgid "Unknown"
2926
  msgstr ""
2927
 
2928
+ #: src/Tribe/Aggregator/Record/Abstract.php:1206
2929
  msgid "When this import was last scheduled to run, the daily limit for your Event Aggregator license had already been reached."
2930
  msgstr ""
2931
 
3662
  msgid "mi"
3663
  msgstr ""
3664
 
3665
+ #: src/Tribe/Main.php:982
3666
  msgid "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3667
  msgstr ""
3668
 
3887
  msgid "Scheduled Imports"
3888
  msgstr ""
3889
 
3890
+ #: src/Tribe/Aggregator/Tabs/New.php:615
3891
  msgid "Renew your Event Aggregator license"
3892
  msgstr ""
3893
 
3894
+ #: src/Tribe/Aggregator/Tabs/New.php:612
3895
  msgid "Renew your license in order to import events from Facebook, iCalendar, Google, or Meetup."
3896
  msgstr ""
3897
 
3898
+ #: src/Tribe/Aggregator/Tabs/New.php:611
3899
  msgid "Your Event Aggregator license is expired."
3900
  msgstr ""
3901
 
3902
+ #: src/Tribe/Aggregator/Tabs/New.php:563
3903
  msgid "Learn More"
3904
  msgstr ""
3905
 
3906
+ #: src/Tribe/Aggregator/Tabs/New.php:558 src/Tribe/Aggregator/Tabs/New.php:565
3907
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:19
3908
  msgid "opens in a new window"
3909
  msgstr ""
3910
 
3911
+ #: src/Tribe/Aggregator/Tabs/New.php:556
3912
  msgid "Buy It Now"
3913
  msgstr ""
3914
 
3915
+ #: src/Tribe/Aggregator/Tabs/New.php:553
3916
  msgid "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3917
  msgstr ""
3918
 
3919
+ #: src/Tribe/Aggregator/Tabs/New.php:551
3920
  msgid "Import Using Event Aggregator"
3921
  msgstr ""
3922
 
3923
+ #: src/Tribe/Aggregator/Tabs/New.php:464
3924
  msgid "Unable to save credentials"
3925
  msgstr ""
3926
 
3927
+ #: src/Tribe/Aggregator/Tabs/New.php:457
3928
  msgid "Credentials have been saved"
3929
  msgstr ""
3930
 
3931
+ #: src/Tribe/Aggregator/Tabs/New.php:448
3932
  msgid "The Meetup API key is required."
3933
  msgstr ""
3934
 
3935
+ #: src/Tribe/Aggregator/Tabs/New.php:439
3936
  msgid "Invalid credential save nonce"
3937
  msgstr ""
3938
 
3939
+ #: src/Tribe/Aggregator/Tabs/New.php:429
3940
  msgid "Invalid credential save request"
3941
  msgstr ""
3942
 
3943
+ #: src/Tribe/Aggregator/Tabs/New.php:417
3944
  msgid "View your scheduled imports."
3945
  msgstr ""
3946
 
3947
+ #: src/Tribe/Aggregator/Tabs/New.php:413
3948
  msgid "The next import is scheduled for %1$s."
3949
  msgstr ""
3950
 
3951
+ #: src/Tribe/Aggregator/Tabs/New.php:406
3952
  msgctxt "separator between date and time"
3953
  msgid " at "
3954
  msgstr ""
3955
 
3956
+ #: src/Tribe/Aggregator/Tabs/New.php:402
3957
  msgid "Your scheduled import was saved and the first import is complete!"
3958
  msgstr ""
3959
 
3960
+ #: src/Tribe/Aggregator/Tabs/New.php:377
3961
  msgid "View your event categories"
3962
  msgstr ""
3963
 
3964
+ #: src/Tribe/Aggregator/Tabs/New.php:373
3965
  msgid "%1$d new event category was created."
3966
  msgid_plural "%1$d new event categories were created."
3967
  msgstr[0] ""
3968
  msgstr[1] ""
3969
 
3970
+ #: src/Tribe/Aggregator/Tabs/New.php:364
3971
  msgid "View your event organizers"
3972
  msgstr ""
3973
 
3974
+ #: src/Tribe/Aggregator/Tabs/New.php:360
3975
  msgid "%1$d new organizer was imported."
3976
  msgid_plural "%1$d new organizers were imported."
3977
  msgstr[0] ""
3978
  msgstr[1] ""
3979
 
3980
+ #: src/Tribe/Aggregator/Tabs/New.php:352
3981
  msgid "View your event venues"
3982
  msgstr ""
3983
 
3984
+ #: src/Tribe/Aggregator/Tabs/New.php:348
3985
  msgid "%1$d new venue was imported."
3986
  msgid_plural "%1$d new venues were imported."
3987
  msgstr[0] ""
3988
  msgstr[1] ""
3989
 
3990
+ #: src/Tribe/Aggregator/Tabs/New.php:338
3991
  msgid "View all %s"
3992
  msgstr ""
3993
 
3994
+ #: src/Tribe/Aggregator/Tabs/New.php:330
3995
  msgid "No %1$s were imported or updated."
3996
  msgstr ""
3997
 
3998
+ #: src/Tribe/Aggregator/Tabs/New.php:323
3999
  msgid "%1$d new image was imported."
4000
  msgid_plural "%1$d new images were imported."
4001
  msgstr[0] ""
4002
  msgstr[1] ""
4003
 
4004
+ #: src/Tribe/Aggregator/Tabs/New.php:314
4005
  msgid "%1$d already-imported %2$s was skipped."
4006
  msgid_plural "%1$d already-imported %2$s were skipped."
4007
  msgstr[0] ""
4008
  msgstr[1] ""
4009
 
4010
+ #: src/Tribe/Aggregator/Tabs/New.php:303
4011
  msgid "%1$d existing %2$s was updated."
4012
  msgid_plural "%1$d existing %2$s were updated."
4013
  msgstr[0] ""
4014
  msgstr[1] ""
4015
 
4016
+ #: src/Tribe/Aggregator/Tabs/New.php:291
4017
  msgid "%1$d new %2$s was imported."
4018
  msgid_plural "%1$d new %2$s were imported."
4019
  msgstr[0] ""
4277
  msgid "Events Aggregator Record"
4278
  msgstr ""
4279
 
4280
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:183
4281
  msgid "Unable to continue inserting data. Please reload this page to continue/try again."
4282
  msgstr ""
4283
 
4297
  msgid "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4298
  msgstr ""
4299
 
4300
+ #: src/Tribe/Aggregator/Record/Queue_Processor.php:233
4301
  msgid "Could not process queue for Import Record %1$d: %2$s"
4302
  msgstr ""
4303
 
4304
+ #: src/Tribe/Aggregator/Record/List_Table.php:664
4305
  msgid "Select %s"
4306
  msgstr ""
4307
 
4308
+ #: src/Tribe/Aggregator/Record/List_Table.php:629
4309
+ #: src/Tribe/Aggregator/Record/List_Table.php:638
4310
+ #: src/Tribe/Aggregator/Record/List_Table.php:646
4311
  msgid "updated"
4312
  msgstr ""
4313
 
4314
+ #: src/Tribe/Aggregator/Record/List_Table.php:627
4315
+ #: src/Tribe/Aggregator/Record/List_Table.php:635
4316
+ #: src/Tribe/Aggregator/Record/List_Table.php:643
4317
  msgid "new"
4318
  msgstr ""
4319
 
4320
+ #: src/Tribe/Aggregator/Record/List_Table.php:624
4321
  msgid "Latest Import:"
4322
  msgstr ""
4323
 
4324
+ #: src/Tribe/Aggregator/Record/List_Table.php:622
4325
  msgid "all time"
4326
  msgstr ""
4327
 
4328
+ #: src/Tribe/Aggregator/Record/List_Table.php:596
4329
  msgid "One Time"
4330
  msgstr ""
4331
 
4332
+ #: src/Tribe/Aggregator/Record/List_Table.php:593
4333
  msgid "Invalid Frequency"
4334
  msgstr ""
4335
 
4336
+ #: src/Tribe/Aggregator/Record/List_Table.php:563 src/Tribe/Aggregator.php:426
4337
  #: src/Tribe/Ignored_Events.php:357
4338
  #: src/admin-views/tribe-options-addons-api.php:36
4339
  msgctxt "in human readable time"
4340
  msgid "in about %s"
4341
  msgstr ""
4342
 
4343
+ #: src/Tribe/Aggregator/Record/List_Table.php:561 src/Tribe/Aggregator.php:424
4344
  #: src/Tribe/Ignored_Events.php:355
4345
  #: src/admin-views/tribe-options-addons-api.php:34
4346
  msgctxt "human readable time ago"
4347
  msgid "about %s ago"
4348
  msgstr ""
4349
 
4350
+ #: src/Tribe/Aggregator/Record/List_Table.php:513
4351
  msgid "Radius:"
4352
  msgstr ""
4353
 
4354
+ #: src/Tribe/Aggregator/Record/List_Table.php:496
4355
  msgid "Keywords:"
4356
  msgstr ""
4357
 
4358
+ #: src/Tribe/Aggregator/Record/List_Table.php:483
4359
  #: src/Tribe/Ignored_Events.php:337
4360
  msgctxt "record via origin"
4361
  msgid "via "
4362
  msgstr ""
4363
 
4364
+ #: src/Tribe/Aggregator/Record/List_Table.php:440
4365
  msgid "Import preview"
4366
  msgstr ""
4367
 
4368
+ #: src/Tribe/Aggregator/Record/List_Table.php:436
4369
  msgid "Import pending"
4370
  msgstr ""
4371
 
4372
+ #: src/Tribe/Aggregator/Record/List_Table.php:432
4373
  msgid "Import schedule"
4374
  msgstr ""
4375
 
4376
+ #: src/Tribe/Aggregator/Record/List_Table.php:420
4377
  msgid "Import failed"
4378
  msgstr ""
4379
 
4380
+ #: src/Tribe/Aggregator/Record/List_Table.php:416
4381
  msgid "Import completed"
4382
  msgstr ""
4383
 
4462
  msgid "Eventbrite"
4463
  msgstr ""
4464
 
4465
+ #: src/Tribe/Aggregator/Record/Abstract.php:1149
4466
  msgid "Deleted Attachment: %d"
4467
  msgstr ""
4468
 
4469
+ #: src/Tribe/Aggregator/Record/Abstract.php:497
4470
  msgid "Record: "
4471
  msgstr ""
4472
 
4501
  msgstr ""
4502
 
4503
  #: src/Tribe/Aggregator/Page.php:96
4504
+ #: src/Tribe/Aggregator/Record/List_Table.php:492
4505
  msgid "View Filters"
4506
  msgstr ""
4507
 
4859
  msgstr ""
4860
 
4861
  #: common/src/Tribe/PUE/Checker.php:961 common/src/Tribe/PUE/Notices.php:285
4862
+ #: src/Tribe/Aggregator/Record/Abstract.php:1164
4863
  msgid " (opens in a new window)"
4864
  msgstr ""
4865
 
5160
  msgid "No notable changes detected"
5161
  msgstr ""
5162
 
5163
+ #: src/Tribe/Main.php:2561
5164
  msgid " (View Full %1$s Description Here: %2$s)"
5165
  msgstr ""
5166
 
5208
  msgid "Keep the Core Plugin %sFREE%s!"
5209
  msgstr "Запазете основното разширение %sБЕЗПЛАТНО%s!"
5210
 
5211
+ #: src/Tribe/Template_Factory.php:231
5212
  msgid "No results were found for %1$s in or near %2$s."
5213
  msgstr "Не са намерени резултати за %1$s в или близо до %2$s."
5214
 
5215
+ #: src/Tribe/Template_Factory.php:229
5216
  msgid "There were no results found for %s."
5217
  msgstr "Не са намерени резултати за %s."
5218
 
5219
+ #: src/Tribe/Template/Month.php:458
5220
  msgid "There were no results found for %s this month. Try searching next month."
5221
  msgstr "Не са намерени резултати за %s този месец. Моля опитайте със следващия месец."
5222
 
5223
+ #: src/Tribe/Template/Day.php:154
5224
  msgid "No %1$s scheduled for %2$s. Please try another day."
5225
  msgstr "Няма %1$s планирано за %2$s. Моля, опитайте с друг ден."
5226
 
5227
+ #: src/Tribe/Main.php:3855
5228
  msgid "Check out the %savailable add-ons%s."
5229
  msgstr "Проверете %sналичните добавки%s."
5230
 
5231
+ #: src/Tribe/Main.php:1922
5232
  msgid "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5233
  msgstr "Без зададено местоположение, вашето събитие няма да показва %sGoogle Rich Snippet%s в резултатите от търсенето."
5234
 
5235
+ #: src/Tribe/Main.php:1853 src/Tribe/Main.php:1873
5236
  msgid "%1$s scheduled for: %2$s."
5237
  msgstr "%1$s е планирано за: %2$s."
5238
 
5239
+ #: src/Tribe/Main.php:1834
5240
  msgid "%1$s draft updated. %2$sPreview %3$s"
5241
  msgstr "Черновата на %1$s е обновена. %2$sПреглед %3$s"
5242
 
5243
+ #: src/Tribe/Main.php:1825
5244
  msgid "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5245
  msgstr "%1$s е планирано за: %2$s. %3$sПреглед %4$s"
5246
 
5247
+ #: src/Tribe/Main.php:1819
5248
  msgid "%1$s submitted. %2$sPreview %3$s"
5249
  msgstr "%1$s е изпратено. %2$sПреглед %3$s"
5250
 
5251
+ #: src/Tribe/Main.php:1801
5252
  msgid "%1$s updated. %2$sView %1$s%3$s"
5253
  msgstr ""
5254
 
5255
+ #: src/Tribe/Main.php:1476
5256
  msgid "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5257
  msgstr "За съжаление tribe-common библиотеките не могат да бъдат открити! Папката трябва да бъде в директория \"common/\" на The Events Calendar."
5258
 
5259
+ #: src/Tribe/Main.php:1111
5260
  msgid "If you have a valid license for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5261
  msgstr "Ако имате валиден лиценз за някоя от нашите Премиум добавки, можете да %s в премиум форумът за поддръжка. Екипът ни преглежда форумите и отговаря на зададените въпроси в рамките на 24-48 часа (в работни дни)."
5262
 
5263
+ #: src/Tribe/Main.php:1110
5264
  msgid "post a thread"
5265
  msgstr "публикуване на тема"
5266
 
5267
+ #: src/Tribe/Main.php:1106
5268
  msgid "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays."
5269
  msgstr "<strong>Нуждаете се от по-бърза техническа поддръжка?</strong> Предлагаме %1$s с поръчката на което и да е от нашите премиум разширения (напр. %2$s). Изберете лиценз и можете да пишете там, а ние гарантираме отговор в рамките на 24-48 часа (в работни дни)."
5270
 
5271
+ #: src/Tribe/Main.php:1102
5272
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5273
  msgstr "Ако сте опитали стъпките по-горе и все още имате проблем, можете да публикувате нова тема в нашият %s. Екипът ни преглежда тези форуми веднъж седмично и с радост ще ви помогне."
5274
 
5275
+ #: src/Tribe/Main.php:1101
5276
  msgid "open-source forum on WordPress.org"
5277
  msgstr "свободен форум на WordPress.org"
5278
 
5279
+ #: src/Tribe/Main.php:1097
5280
  msgid "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays"
5281
  msgstr "<strong>Нуждаете се от по-бърза техническа поддръжка?</strong> Предлагаме %s с поръчката на което и да е от нашите премиум разширения. Изберете лиценз и можете да пишете там, а ние гарантираме отговор в рамките на 24-48 часа (в работни дни)"
5282
 
5283
+ #: src/Tribe/Main.php:1096 src/Tribe/Main.php:1104
5284
  msgid "premium support on our website"
5285
  msgstr "премиум поддръжка на нашият сайт"
5286
 
5287
+ #: src/Tribe/Main.php:1094
5288
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5289
  msgstr "Ако сте опитали стъпките по-горе и проблемът ви все още не е решен, можете да публикувате тема в нашите WordPress.org форуми за %1$s или %2$s. Нашият екип по поддръжката преглежда тези форуми веднъж в седмицата и с удоволствие ще ви асистира."
5290
 
5291
+ #: src/Tribe/Main.php:1093
5292
  msgid "Events Tickets"
5293
  msgstr "Events Tickets"
5294
 
5295
+ #: src/Tribe/Main.php:1078
5296
  msgid "Customizing the Events plugins"
5297
  msgstr "Персонализиране на разширенията за събития"
5298
 
5299
+ #: src/Tribe/Main.php:1078
5300
  msgid "%s: Code and guides for customizing your calendar in useful and interesting ways."
5301
  msgstr "%s: Код и напътствия за персонализиране на вашият календар, представени по удобен и интересен начин."
5302
 
5303
+ #: src/Tribe/Main.php:1076
5304
  msgid "Troubleshooting common problems"
5305
  msgstr "Отстраняване на често срещани проблеми"
5306
 
5307
+ #: src/Tribe/Main.php:1076
5308
  msgid "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5309
  msgstr "%s: Виждате проблем с календара си? Проверете тук от къде идва проблема и как да го решите."
5310
 
5311
+ #: src/Tribe/Main.php:1074
5312
  msgid "Using stylesheets and page templates"
5313
  msgstr "Използване на стилове и шаблони за страници"
5314
 
5315
+ #: src/Tribe/Main.php:1074
5316
  msgid "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5317
  msgstr "%s: Преглед на шаблоните и стиловете по подразбиране, които са включени в разширението, както и информация как да ги промените."
5318
 
5319
+ #: src/Tribe/Main.php:1072
5320
  msgid "Themer’s Guide"
5321
  msgstr "Напътствия за разработчици на теми"
5322
 
5323
+ #: src/Tribe/Main.php:1072
5324
  msgid "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5325
  msgstr "%s: Нашето най-изчерпателно изложение на възможностите за персонализиране на календара, включително индивидуални шаблони и стилове."
5326
 
5327
+ #: src/Tribe/Main.php:1070
5328
  msgid "Features overview"
5329
  msgstr "Преглед на функциите"
5330
 
5331
+ #: src/Tribe/Main.php:1070
5332
  msgid "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5333
  msgstr "%s: Пълен преглед на функциите, които да очаквате и информация как да ги използвате."
5334
 
5335
+ #: src/Tribe/Main.php:1068
5336
  msgid "Settings overview"
5337
  msgstr "Преглед на настройките"
5338
 
5339
+ #: src/Tribe/Main.php:1068
5340
  msgid "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5341
  msgstr "%s: Обстоен преклед на The Events Calendar и на наличните настройки."
5342
 
5343
+ #: src/Tribe/Main.php:1065
5344
  msgid "Support for The Events Calendar"
5345
  msgstr "Поддръжка на The Events Calendar"
5346
 
5347
+ #: src/Tribe/Main.php:1054
5348
  msgid "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5349
  msgstr "Ние сме отдадени на това, да ви помогнем да направите своя календар неповторим и по тази причина предоставяме голямо количество ресурси, включително полезен %s, за да можете по-лесно да подготвите календара си."
5350
 
5351
+ #: src/Tribe/Main.php:1052
5352
  msgid "New User Primer"
5353
  msgstr "Нов Наръчник за начинаещи"
5354
 
5371
  msgid "CSV Import Settings"
5372
  msgstr "Настройки за CSV импорт"
5373
 
5374
+ #: src/deprecated/Tribe__Events__Asset__Bootstrap_Datepicker.php:27
5375
  msgid "Clear"
5376
  msgstr "Изчистване"
5377
 
5383
  msgid "Create New %s"
5384
  msgstr "Създаване на нов %s"
5385
 
5386
+ #: src/Tribe/Organizer.php:375
5387
  msgid "Unnamed %s"
5388
  msgstr "Неозаглавен %s"
5389
 
5571
  msgid "%s must be a positive number or percent."
5572
  msgstr "%s трябва да е положително число или процент."
5573
 
5574
+ #: src/Tribe/Main.php:999
5575
  msgid "%1$s or %2$s"
5576
  msgstr ""
5577
 
5628
  msgid "Day Navigation"
5629
  msgstr "Навигация по ден"
5630
 
5631
+ #: src/Tribe/Aggregator/Tabs/New.php:400
5632
  msgid "Import complete!"
5633
  msgstr "Импортирането завършено!"
5634
 
5870
  msgstr "Още..."
5871
 
5872
  #: common/src/Tribe/Admin/Help_Page.php:194 common/src/Tribe/Plugins_API.php:43
5873
+ #: src/Tribe/Main.php:1105
5874
  msgid "Events Calendar PRO"
5875
  msgstr "The Events Calendar PRO"
5876
 
6309
  msgid "%s Website"
6310
  msgstr "%s Уебсайт"
6311
 
6312
+ #: src/Tribe/Aggregator/Record/List_Table.php:509
6313
  msgid "Location:"
6314
  msgstr ""
6315
 
7714
  msgid "Template overrides should be moved to the correct subdirectory: %s"
7715
  msgstr "Презаписаните шаблони трябва да са преместени в правилната поддиректория: %s"
7716
 
7717
+ #: src/Tribe/Template_Factory.php:237
7718
  msgid "No previous %s "
7719
  msgstr "Няма предишни %s "
7720
 
7721
+ #: src/Tribe/Template_Factory.php:235 src/Tribe/Template_Factory.php:240
7722
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7723
  msgstr "Няма съвпадащо %1$s в %2$s. Моля, прегледайте календара за пълен списък с/със %3$s."
7724
 
7725
+ #: src/Tribe/Template_Factory.php:233
7726
  msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7727
  msgstr "Няма предстиящо %1$s в %2$s. Проверете предстоящите %3$s в тази категория или прегледайте пълния календар."
7728
 
7730
  msgid "This %s has passed."
7731
  msgstr "Това %s е минало събитие."
7732
 
7733
+ #: src/Tribe/Template/Month.php:955
7734
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7735
  msgstr "Заявената дата \"%s\" е невалидна &ndash; вместо това показваме текущия месец"
7736
 
7737
+ #: src/Tribe/Template/Month.php:464 src/Tribe/Template_Factory.php:242
7738
  msgid "There were no results found."
7739
  msgstr "Не са открити събития."
7740
 
7741
+ #: src/Tribe/Template/Month.php:462
7742
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7743
  msgstr "Няма съвпадащи %1$s в %2$s. Моля, прегледайте канедара за пълен списък със събития."
7744
 
7745
+ #: src/Tribe/Template/Day.php:152
7746
  msgid "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7747
  msgstr "Няма съвпадащи %1$s в %2$s планирани за %3$s. Моля, опитайте с друг ден."
7748
 
7749
+ #: src/Tribe/Template/Day.php:118 src/Tribe/Template/Day.php:134
7750
  msgid "Ongoing"
7751
  msgstr "В момента"
7752
 
7753
+ #: src/Tribe/Aggregator/Page.php:82 src/Tribe/Template/Day.php:115
7754
+ #: src/Tribe/Template/Day.php:131
7755
  msgid "All Day"
7756
  msgstr "Цял ден"
7757
 
7846
  msgid "Error"
7847
  msgstr "Грешка"
7848
 
7849
+ #: src/Tribe/Main.php:4198
7850
  msgid "Once Every 30 Mins"
7851
  msgstr "На всеки 30 минути"
7852
 
7853
+ #: src/Tribe/Main.php:4118
7854
  msgid "Day Of"
7855
  msgstr "Почивен ден"
7856
 
7857
+ #: src/Tribe/Main.php:4116
7858
  msgid "%s From"
7859
  msgstr "%s от"
7860
 
7861
+ #: src/Tribe/Main.php:4112
7862
  msgid "%s In"
7863
  msgstr "%s в"
7864
 
7865
+ #: src/Tribe/Main.php:4107 src/Tribe/Main.php:4132
7866
  #: src/admin-views/aggregator/origins/refine.php:7
7867
  msgid "Date"
7868
  msgstr "Дата"
7869
 
7870
+ #: src/Tribe/Main.php:4034
7871
  msgid "Search"
7872
  msgstr "Търсене"
7873
 
7874
+ #: src/Tribe/Main.php:4008 src/admin-views/aggregator/fields/schedule.php:44
7875
  #: src/admin-views/aggregator/fields/schedule.php:62
7876
  msgid "Day"
7877
  msgstr "Ден"
7878
 
7879
+ #: src/Tribe/Main.php:3991
7880
  msgid "Month"
7881
  msgstr "Месец"
7882
 
7883
+ #: src/Tribe/Main.php:3973
7884
  msgid "List"
7885
  msgstr "Списък"
7886
 
7887
+ #: src/Tribe/Main.php:3957
7888
  msgid "Calendar"
7889
  msgstr "Календар"
7890
 
7891
  #: common/src/Tribe/Settings.php:254
7892
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:89 src/Tribe/Main.php:3956
7893
  msgid "Settings"
7894
  msgstr "Настройки"
7895
 
7903
  msgid "Add %s"
7904
  msgstr "Добави %s"
7905
 
7906
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:45 src/Tribe/Main.php:3907
7907
  msgid "View Calendar"
7908
  msgstr "Към календара"
7909
 
7911
  msgid "%s"
7912
  msgstr "%s"
7913
 
7914
+ #: src/Tribe/Main.php:3854
7915
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7916
  msgstr "Имате нужда от допълнителна функционалност, включително повтарящи се събития, продажба на билети, публикуване на събития от потребителите, повече изгледи и др.?"
7917
 
7918
+ #: src/Tribe/Main.php:3849
7919
  msgid "Additional Functionality"
7920
  msgstr "Допълнителна функционалност"
7921
 
7922
+ #: src/Tribe/Main.php:3804
7923
  msgid "News from Modern Tribe"
7924
  msgstr "Новини от Modern Tribe"
7925
 
7926
+ #: src/Tribe/Main.php:3784
7927
  msgid "View All Add-Ons"
7928
  msgstr "Покажи всички Add-Ons"
7929
 
7930
+ #: src/Tribe/Main.php:3781
7931
  msgid "Support"
7932
  msgstr "Поддръжка"
7933
 
7934
+ #: src/Tribe/Main.php:3429 src/Tribe/Main.php:3442
7935
  msgid "%s Information"
7936
  msgstr "%s Информация"
7937
 
7938
+ #: src/Tribe/Main.php:3420
7939
  msgid "%s Options"
7940
  msgstr "%s Опции"
7941
 
7942
+ #: src/Tribe/Main.php:3343 src/Tribe/Main.php:3378
7943
  #: src/functions/template-tags/day.php:157
7944
  #: src/functions/template-tags/day.php:178
7945
  msgid "Date out of range."
7946
  msgstr "Изберете по-близка дата."
7947
 
7948
+ #: src/Tribe/Main.php:2170
7949
  msgid "all"
7950
  msgstr "всички"
7951
 
7952
+ #: src/Tribe/Main.php:2169 src/functions/template-tags/general.php:111
7953
  msgid "events"
7954
  msgstr "събития"
7955
 
7956
+ #: src/Tribe/Main.php:2168 src/functions/template-tags/general.php:79
7957
  msgid "event"
7958
  msgstr "събитие"
7959
 
7960
+ #: src/Tribe/Main.php:2167
7961
  msgid "page"
7962
  msgstr "страница"
7963
 
7969
  msgid "Done"
7970
  msgstr "Готово"
7971
 
7972
+ #: common/src/Tribe/Main.php:272
7973
+ #: src/deprecated/Tribe__Events__Asset__Bootstrap_Datepicker.php:28
7974
  #: src/functions/template-tags/day.php:104
7975
  msgid "Today"
7976
  msgstr "Днес"
7983
  msgid "Next"
7984
  msgstr "Напред"
7985
 
7986
+ #: src/Tribe/Linked_Posts.php:1138
7987
  msgid "No saved %s exists."
7988
  msgstr "Не съществуват запаметени %s."
7989
 
7990
+ #: src/Tribe/Linked_Posts.php:964
7991
  msgid "Available %s"
7992
  msgstr "Налични %s"
7993
 
7994
+ #: src/Tribe/Linked_Posts.php:960
7995
  msgid "My %s"
7996
  msgstr "Моето %s"
7997
 
7998
+ #: src/Tribe/Main.php:1858 src/Tribe/Main.php:1878
7999
  msgid "%s draft updated."
8000
  msgstr "%s чернови са обновени."
8001
 
8002
+ #: src/Tribe/Main.php:1851 src/Tribe/Main.php:1871
8003
  msgid "%s submitted."
8004
  msgstr "%s изпратено."
8005
 
8006
+ #: src/Tribe/Main.php:1849 src/Tribe/Main.php:1869
8007
  msgid "%s published."
8008
  msgstr "%s публикувано."
8009
 
8010
  #. translators: %s: date and time of the revision
8011
+ #: src/Tribe/Main.php:1868
8012
  msgid "%s restored to revision from %s"
8013
  msgstr "%s е възстановено от %s"
8014
 
8015
  #. translators: Publish box date format, see http://php.net/date
8016
+ #: src/Tribe/Main.php:1828 src/Tribe/Main.php:1856 src/Tribe/Main.php:1876
8017
  msgid "M j, Y @ G:i"
8018
  msgstr "M j, Y @ G:i"
8019
 
8020
+ #: src/Tribe/Main.php:1817 src/Tribe/Main.php:1850 src/Tribe/Main.php:1870
8021
  msgid "%s saved."
8022
  msgstr "%s записано."
8023
 
8024
  #. translators: %s: date and time of the revision
8025
+ #: src/Tribe/Main.php:1810 src/Tribe/Main.php:1848
8026
  msgid "%1$s restored to revision from %2$s"
8027
  msgstr "%1$s възстановени в нова версия от %2$s"
8028
 
8029
+ #: src/Tribe/Main.php:1808 src/Tribe/Main.php:1843 src/Tribe/Main.php:1846
8030
+ #: src/Tribe/Main.php:1863 src/Tribe/Main.php:1866
8031
  msgid "%s updated."
8032
  msgstr "%s обновени."
8033
 
8034
+ #: src/Tribe/Main.php:1807 src/Tribe/Main.php:1845 src/Tribe/Main.php:1865
8035
  msgid "Custom field deleted."
8036
  msgstr "Custom полето е изтрито."
8037
 
8038
+ #: src/Tribe/Main.php:1806 src/Tribe/Main.php:1844 src/Tribe/Main.php:1864
8039
  msgid "Custom field updated."
8040
  msgstr "Custom полето е обновено."
8041
 
8042
+ #: src/Tribe/Main.php:1784
8043
  msgid "New %s Category Name"
8044
  msgstr "Ново %s Име на Категория"
8045
 
8046
+ #: src/Tribe/Main.php:1783
8047
  msgid "Add New %s Category"
8048
  msgstr "Добави нова %s категория"
8049
 
8050
+ #: src/Tribe/Main.php:1782
8051
  msgid "Update %s Category"
8052
  msgstr "Обнови %s категория"
8053
 
8054
+ #: src/Tribe/Main.php:1781
8055
  msgid "Edit %s Category"
8056
  msgstr "Редактирай %s категория"
8057
 
8058
+ #: src/Tribe/Main.php:1780
8059
  msgid "Parent %s Category:"
8060
  msgstr "По-горна %s категория"
8061
 
8062
+ #: src/Tribe/Main.php:1779
8063
  msgid "Parent %s Category"
8064
  msgstr "По-горна %s категория"
8065
 
8066
+ #: src/Tribe/Main.php:1778
8067
  msgid "All %s Categories"
8068
  msgstr "Всички %s Категории"
8069
 
8070
+ #: src/Tribe/Main.php:1777
8071
  msgid "Search %s Categories"
8072
  msgstr "Търси %s Категории"
8073
 
8074
+ #: src/Tribe/Main.php:1776
8075
  msgid "%s Category"
8076
  msgstr "%s Категория"
8077
 
8078
+ #: src/Tribe/Main.php:1766 src/Tribe/Organizer.php:98 src/Tribe/Venue.php:117
8079
  msgid "No %s found in Trash"
8080
  msgstr "Няма намерени %s в кошчето."
8081
 
8082
+ #: src/Tribe/Main.php:1765 src/Tribe/Organizer.php:97 src/Tribe/Venue.php:116
8083
  msgid "No %s found"
8084
  msgstr "Няма намерени %s"
8085
 
8086
+ #: src/Tribe/Main.php:1764 src/Tribe/Organizer.php:96 src/Tribe/Venue.php:115
8087
  msgid "Search %s"
8088
  msgstr "Търсене %s"
8089
 
8090
+ #: src/Tribe/Main.php:1763 src/Tribe/Organizer.php:95 src/Tribe/Venue.php:114
8091
  #: src/views/month/single-day.php:26
8092
  msgid "View %s"
8093
  msgstr "Преглед %s"
8094
 
8095
+ #: src/Tribe/Main.php:1762 src/Tribe/Organizer.php:94 src/Tribe/Venue.php:113
8096
  msgid "New %s"
8097
  msgstr "Нов %s"
8098
 
8099
+ #: src/Tribe/Main.php:1760 src/Tribe/Main.php:1892 src/Tribe/Main.php:1893
8100
  #: src/Tribe/Organizer.php:92 src/Tribe/Venue.php:111
8101
  msgid "Add New %s"
8102
  msgstr "Добавяне %s"
8103
 
8104
+ #: src/Tribe/Main.php:1759 src/Tribe/Organizer.php:91 src/Tribe/Venue.php:110
8105
  msgid "Add New"
8106
  msgstr "Добавяне"
8107
 
8108
+ #: src/Tribe/Main.php:1726 src/Tribe/Main.php:2165
8109
  msgid "tag"
8110
  msgstr "таг"
8111
 
8112
+ #: src/Tribe/Main.php:1712 src/Tribe/Main.php:2166
8113
  msgid "category"
8114
  msgstr "категория"
8115
 
8116
+ #: src/Tribe/Main.php:1464
8117
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8118
  msgstr "За съжаление, The Events Calendar изисква PHP %s или по-висока версия. Свържете се с уеб администратора си, за да ви прехвърли към по-нова версия на PHP."
8119
 
8120
+ #: src/Tribe/Main.php:1461
8121
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8122
  msgstr "The Events Calendar изисква WordPress %s или по-нова версия. Моля, обновете WordPress."
8123
 
8135
  msgid "Display"
8136
  msgstr "Изглед"
8137
 
8138
+ #: src/Tribe/Main.php:1308
8139
  msgid "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8140
  msgstr "Следните plugin-и са стари версии: %1$s. Всички добавки съдържат зависимости от The Events Calendar и няма да функционират изправно освен ако не са в комбинация с подходящата версия. %2$sНаучете повече%3$s."
8141
 
8142
+ #: src/Tribe/Main.php:1296
8143
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8144
  msgstr "Версията на вашия The Events Calendar е по-стара от тази на вашите The Events Calendar add-on-и. Моля, %sобновете сега.%s"
8145
 
8146
+ #: src/Tribe/Main.php:786
8147
  msgid "Initializing Tribe Events on %s"
8148
  msgstr "Стартиране на Tribe Events на %s"
8149
 
8150
+ #: src/Tribe/Main.php:761
8151
  msgid "today"
8152
  msgstr "днес"
8153
 
8154
+ #: src/Tribe/Main.php:760
8155
  msgid "day"
8156
  msgstr "ден"
8157
 
8158
+ #: src/Tribe/Main.php:759
8159
  msgid "past"
8160
  msgstr "изминали"
8161
 
8162
+ #: src/Tribe/Main.php:758
8163
  msgid "upcoming"
8164
  msgstr "предстоящи"
8165
 
8166
+ #: src/Tribe/Main.php:757
8167
  msgid "list"
8168
  msgstr "списък"
8169
 
8170
+ #: src/Tribe/Main.php:756
8171
  msgid "month"
8172
  msgstr "месец"
8173
 
8174
+ #. #-#-#-#-# the-events-calendar-code.pot (The Events Calendar 4.6.22.1)
8175
  #. #-#-#-#-#
8176
  #. Plugin Name of the plugin/theme
8177
  #: common/src/Tribe/Admin/Help_Page.php:59 common/src/Tribe/Customizer.php:569
8178
+ #: common/src/Tribe/Plugins_API.php:25 src/Tribe/Main.php:749
8179
+ #: src/Tribe/Main.php:1092 src/Tribe/Privacy.php:29
8180
  #: src/functions/template-tags/general.php:1345
8181
  msgid "The Events Calendar"
8182
  msgstr "The Events Calendar"
8183
 
8184
+ #: src/Tribe/Main.php:1162 src/admin-views/aggregator/tabs/import-form.php:185
8185
  #: src/admin-views/aggregator/tabs/import-form.php:197
8186
  #: src/functions/template-tags/general.php:63
8187
  msgid "Event"
8188
  msgstr "Събитие"
8189
 
8190
  #: common/src/Tribe/Settings.php:177 common/src/Tribe/Settings.php:241
8191
+ #: common/src/Tribe/Settings.php:242 src/Tribe/Main.php:1154
8192
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:207
8193
  #: src/functions/template-tags/general.php:95
8194
  msgid "Events"
8195
  msgstr "Събития"
8196
 
8197
+ #: src/Tribe/Organizer.php:157 src/functions/template-tags/organizer.php:112
8198
  msgid "Organizer"
8199
  msgstr "Организатор"
8200
 
8201
  #: src/Tribe/Organizer.php:171
8202
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:206
8203
+ #: src/functions/template-tags/organizer.php:123
8204
  msgid "Organizers"
8205
  msgstr "Организатори"
8206
 
8464
  msgid "End:"
8465
  msgstr "Край:"
8466
 
8467
+ #: src/Tribe/Aggregator/Record/List_Table.php:505
8468
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
8469
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
8470
  #: src/views/modules/meta/details.php:66 src/views/modules/meta/details.php:91
8483
  msgid "Start Date"
8484
  msgstr "Начална дата"
8485
 
8486
+ #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1775
8487
  msgid "%s Categories"
8488
  msgstr "%s Категории"
8489
 
8494
  #: src/Tribe/Admin/Timezone_Updater.php:87
8495
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
8496
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:100
8497
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:210
8498
  msgid "%d%% complete"
8499
  msgstr "%d%% завършено"
8500
 
8507
  msgstr ""
8508
 
8509
  #: src/Tribe/Admin/Bar/Default_Configurator.php:62
8510
+ #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:211 src/Tribe/Main.php:1761
8511
+ #: src/Tribe/Main.php:4843 src/Tribe/Main.php:4890 src/Tribe/Organizer.php:93
8512
  #: src/Tribe/Venue.php:112
8513
  msgid "Edit %s"
8514
  msgstr "Редактиране на %s"
8515
 
8516
+ #: src/Tribe/Main.php:4827 src/Tribe/Main.php:4884
8517
  msgid "Use Saved %s:"
8518
  msgstr "Използвай запаметено %s:"
8519
 
8520
+ #: src/Tribe/Main.php:991
8521
  msgid " ask the site administrator set a different Events URL slug."
8522
  msgstr "поискайте от администратора на сайта да промени URL адреса за събития."
8523
 
8524
+ #: src/Tribe/Main.php:985
8525
  msgid "Ask the site administrator to edit the %s slug"
8526
  msgstr ""
8527
 
8529
  msgid "Thanks for Updating The Events Calendar"
8530
  msgstr "Благодарим, че актуализирахте The Events Calendar"
8531
 
8532
+ #: src/Tribe/Main.php:844 src/Tribe/Main.php:846
8533
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
8534
  msgid "Welcome to The Events Calendar"
8535
  msgstr "Добре дошли в The Events Calendar"
lang/the-events-calendar-ca.po CHANGED
@@ -11,6 +11,31 @@ msgstr ""
11
  "Language: ca\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: src/views/month/single-day.php:57
15
  msgid "%s for %s"
16
  msgstr ""
@@ -183,91 +208,91 @@ msgstr ""
183
  msgid "Do more with Eventbrite Tickets"
184
  msgstr ""
185
 
186
- #: src/Tribe/Main.php:4513
187
  msgid "Search for %s by month. Please use the format %s."
188
  msgstr ""
189
 
190
- #: src/Tribe/Main.php:4508
191
  msgid "Search for %s by Date. Please use the format %s."
192
  msgstr ""
193
 
194
- #: src/Tribe/Main.php:4476 src/Tribe/Main.php:4477
195
  msgid "2 digit month dot 4 digit year"
196
  msgstr ""
197
 
198
- #: src/Tribe/Main.php:4475
199
  msgid "4 digit year dot 2 digit month"
200
  msgstr ""
201
 
202
- #: src/Tribe/Main.php:4474
203
  msgid "2 digit month hyphen 4 digit year"
204
  msgstr ""
205
 
206
- #: src/Tribe/Main.php:4471 src/Tribe/Main.php:4472 src/Tribe/Main.php:4473
207
  msgid "1 digit month hyphen 4 digit year"
208
  msgstr ""
209
 
210
- #: src/Tribe/Main.php:4468 src/Tribe/Main.php:4470
211
  msgid "2 digit month slash 4 digit year"
212
  msgstr ""
213
 
214
- #: src/Tribe/Main.php:4467 src/Tribe/Main.php:4469
215
  msgid "1 digit month slash 4 digit year"
216
  msgstr ""
217
 
218
- #: src/Tribe/Main.php:4466
219
  msgid "4 digit year hyphen 2 digit month"
220
  msgstr ""
221
 
222
- #: src/Tribe/Main.php:4462
223
  msgid "2 digit day dot 2 digit month dot 4 digit year"
224
  msgstr ""
225
 
226
- #: src/Tribe/Main.php:4461
227
  msgid "2 digit month dot 2 digit day dot 4 digit year"
228
  msgstr ""
229
 
230
- #: src/Tribe/Main.php:4460
231
  msgid "4 digit year dot 2 digit month dot 2 digit day"
232
  msgstr ""
233
 
234
- #: src/Tribe/Main.php:4459
235
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
236
  msgstr ""
237
 
238
- #: src/Tribe/Main.php:4458
239
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
240
  msgstr ""
241
 
242
- #: src/Tribe/Main.php:4457
243
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
244
  msgstr ""
245
 
246
- #: src/Tribe/Main.php:4456
247
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
248
  msgstr ""
249
 
250
- #: src/Tribe/Main.php:4455
251
  msgid "2 digit day slash 2 digit month slash 4 digit year"
252
  msgstr ""
253
 
254
- #: src/Tribe/Main.php:4454
255
  msgid "1 digit day slash 1 digit month slash 4 digit year"
256
  msgstr ""
257
 
258
- #: src/Tribe/Main.php:4453
259
  msgid "2 digit month slash 2 digit day slash 4 digit year"
260
  msgstr ""
261
 
262
- #: src/Tribe/Main.php:4452
263
  msgid "1 digit month slash 1 digit day slash 4 digit year"
264
  msgstr ""
265
 
266
- #: src/Tribe/Main.php:4451
267
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
268
  msgstr ""
269
 
270
- #: src/Tribe/Main.php:4430
271
  msgid "Search for %s by Keyword."
272
  msgstr ""
273
 
@@ -495,7 +520,7 @@ msgid "Search our support help desk"
495
  msgstr ""
496
 
497
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
498
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:369
499
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
500
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
501
  msgid "The requested page was not found."
@@ -509,12 +534,12 @@ msgstr ""
509
  msgid "one week"
510
  msgstr ""
511
 
512
- #: src/Tribe/Aggregator/Record/List_Table.php:570
513
  msgctxt "when the retry will happen, a date"
514
  msgid "retrying at %s"
515
  msgstr ""
516
 
517
- #: src/Tribe/Aggregator/Record/List_Table.php:567
518
  msgctxt "in human readable time"
519
  msgid "retrying in about %s"
520
  msgstr ""
@@ -596,7 +621,7 @@ msgid "Main %s Page"
596
  msgstr ""
597
 
598
  #: common/src/Tribe/Plugins_API.php:71
599
- msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Tickets have QR codes for easy check in at the door."
600
  msgstr ""
601
 
602
  #: src/admin-views/tribe-options-general.php:31
@@ -628,7 +653,7 @@ msgstr ""
628
  msgid "The event with the specified ID is not accessible."
629
  msgstr ""
630
 
631
- #: src/Tribe/Main.php:1813
632
  msgid "%1$s published. %2$sView %3$s"
633
  msgstr ""
634
 
@@ -979,11 +1004,11 @@ msgstr ""
979
  msgid "the event post name"
980
  msgstr ""
981
 
982
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:341
983
  msgid "The event organizer IDs or data"
984
  msgstr ""
985
 
986
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:333
987
  msgid "The event venue ID or data"
988
  msgstr ""
989
 
@@ -1226,32 +1251,32 @@ msgstr ""
1226
  msgid "Returns all the organizers matching the search criteria"
1227
  msgstr ""
1228
 
1229
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:478
1230
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1231
  msgstr ""
1232
 
1233
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:472
1234
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1235
  msgstr ""
1236
 
1237
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:466
1238
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1239
  msgstr ""
1240
 
1241
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:461
1242
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1243
  msgid "The event post status"
1244
  msgstr ""
1245
 
1246
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1247
  msgid "Events should be filtered by their featured status"
1248
  msgstr ""
1249
 
1250
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:446
1251
  msgid "Events should be assigned one of the specified organizer IDs"
1252
  msgstr ""
1253
 
1254
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
1255
  msgid "Events should be assigned one of the specified venue IDs"
1256
  msgstr ""
1257
 
@@ -1345,48 +1370,48 @@ msgstr ""
1345
  msgid "The event status"
1346
  msgstr ""
1347
 
1348
- #: src/Tribe/Linked_Posts.php:1126
1349
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1350
  msgid "Create or Find %s"
1351
  msgstr ""
1352
 
1353
- #: src/Tribe/Linked_Posts.php:1117
1354
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1355
  msgid "Find %1$s %2$s"
1356
  msgstr ""
1357
 
1358
- #: src/Tribe/Linked_Posts.php:1108
1359
  msgid "Find a Venue"
1360
  msgstr ""
1361
 
1362
- #: src/Tribe/Linked_Posts.php:1107
1363
  msgid "Create or Find a Venue"
1364
  msgstr ""
1365
 
1366
- #: src/Tribe/Linked_Posts.php:1100
1367
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1368
  msgid "Create or Find %s"
1369
  msgstr ""
1370
 
1371
- #: src/Tribe/Linked_Posts.php:1091
1372
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1373
  msgid "Find %1$s %2$s"
1374
  msgstr ""
1375
 
1376
- #: src/Tribe/Linked_Posts.php:1080
1377
  msgid "Find an Organizer"
1378
  msgstr ""
1379
 
1380
- #: src/Tribe/Linked_Posts.php:1079
1381
  msgid "Create or Find an Organizer"
1382
  msgstr ""
1383
 
1384
- #: src/Tribe/Linked_Posts.php:1072
1385
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1386
  msgid "Create or Find %s"
1387
  msgstr ""
1388
 
1389
- #: src/Tribe/Linked_Posts.php:1063
1390
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1391
  msgid "Find %1$s %2$s"
1392
  msgstr ""
@@ -1482,20 +1507,20 @@ msgstr ""
1482
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1483
  msgstr ""
1484
 
1485
- #: src/Tribe/Main.php:997
1486
  msgid "edit Events settings."
1487
  msgstr ""
1488
 
1489
- #: src/Tribe/Main.php:988
1490
  msgid "Edit the %s slug"
1491
  msgstr ""
1492
 
1493
- #: src/Tribe/Linked_Posts.php:1049
1494
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1495
  msgid "an"
1496
  msgstr ""
1497
 
1498
- #: src/Tribe/Linked_Posts.php:1042
1499
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1500
  msgid "a"
1501
  msgstr ""
@@ -1537,10 +1562,6 @@ msgstr ""
1537
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1538
  msgstr ""
1539
 
1540
- #: common/src/Tribe/Plugins_API.php:37
1541
- msgid "Import events from across the web! Event Aggregator makes it easy to run scheduled or manual imports from Facebook, Meetup, Eventbrite, Google Calendar, and iCalendar, along with uploads from CSV and ICS files. You can also import directly from other sites running The Events Calendar thanks to our built-in REST API support."
1542
- msgstr ""
1543
-
1544
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1545
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1546
  msgstr ""
@@ -1585,7 +1606,7 @@ msgstr ""
1585
  msgid "The event WordPress post ID"
1586
  msgstr ""
1587
 
1588
- #: src/Tribe/Aggregator/Record/Abstract.php:362
1589
  msgid "Something went wrong while inserting the record in the database."
1590
  msgstr ""
1591
 
@@ -1603,7 +1624,7 @@ msgstr[1] ""
1603
  msgid "Please refresh the page and try your request again."
1604
  msgstr ""
1605
 
1606
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:28
1607
  msgid "The image WordPress post ID"
1608
  msgstr ""
1609
 
@@ -1663,11 +1684,11 @@ msgstr ""
1663
  msgid "The event last modification date in UTC time"
1664
  msgstr ""
1665
 
1666
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:403
1667
  msgid "Events should start after the specified date"
1668
  msgstr ""
1669
 
1670
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:410
1671
  msgid "Events should start before the specified date"
1672
  msgstr ""
1673
 
@@ -1703,7 +1724,7 @@ msgstr ""
1703
  msgid "the event post ID"
1704
  msgstr ""
1705
 
1706
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:416
1707
  msgid "Events should contain the specified string in the title or description"
1708
  msgstr ""
1709
 
@@ -1999,31 +2020,31 @@ msgid "The requested URL does not have any upcoming and published events matchin
1999
  msgstr ""
2000
 
2001
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2002
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:388
2003
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2004
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2005
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2006
  msgid "The archive page to return"
2007
  msgstr ""
2008
 
2009
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:396
2010
  msgid "The number of events to return on each page"
2011
  msgstr ""
2012
 
2013
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:422
2014
  msgid "Events should be assigned one of the specified categories slugs or IDs"
2015
  msgstr ""
2016
 
2017
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:430
2018
  msgid "Events should be assigned one of the specified tags slugs or IDs"
2019
  msgstr ""
2020
 
2021
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:358
2022
  msgid "Returns all the upcoming events matching the search criteria"
2023
  msgstr ""
2024
 
2025
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:36
2026
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:366
2027
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:64
2028
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:53
2029
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:61
@@ -2238,13 +2259,13 @@ msgstr ""
2238
  msgid "three months"
2239
  msgstr ""
2240
 
2241
- #: src/Tribe/Aggregator/Tabs/New.php:373
2242
  msgid "%1$d new event tag was created."
2243
  msgid_plural "%1$d new event tags were created."
2244
  msgstr[0] ""
2245
  msgstr[1] ""
2246
 
2247
- #: src/Tribe/Aggregator/Tabs/New.php:377
2248
  msgid "View your event tags"
2249
  msgstr ""
2250
 
@@ -2303,7 +2324,7 @@ msgstr ""
2303
  msgid "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2304
  msgstr ""
2305
 
2306
- #: src/Tribe/Main.php:765
2307
  msgctxt "all events slug"
2308
  msgid "all"
2309
  msgstr ""
@@ -2344,7 +2365,7 @@ msgstr ""
2344
  msgid "The WordPress term ID"
2345
  msgstr ""
2346
 
2347
- #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:36
2348
  msgid "The link to the image in the specified size on the site"
2349
  msgstr ""
2350
 
@@ -2360,19 +2381,19 @@ msgstr ""
2360
  msgid "The image width in pixels in the specified size"
2361
  msgstr ""
2362
 
2363
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:44
2364
  msgid "The details about each size available for the image"
2365
  msgstr ""
2366
 
2367
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:40
2368
  msgid "The image natural height in pixels"
2369
  msgstr ""
2370
 
2371
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:36
2372
  msgid "The image natural width in pixels"
2373
  msgstr ""
2374
 
2375
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:32
2376
  msgid "The image file extension"
2377
  msgstr ""
2378
 
@@ -2380,7 +2401,7 @@ msgstr ""
2380
  msgid "The venue WordPress post ID"
2381
  msgstr ""
2382
 
2383
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:24
2384
  msgid "The URL to the full size version of the image"
2385
  msgstr ""
2386
 
@@ -2420,7 +2441,7 @@ msgstr ""
2420
  msgid "The cost currency symbol"
2421
  msgstr ""
2422
 
2423
- #: src/Tribe/Main.php:4434
2424
  msgid "Keyword"
2425
  msgstr ""
2426
 
@@ -2495,12 +2516,12 @@ msgstr ""
2495
  msgid "Export Events"
2496
  msgstr ""
2497
 
2498
- #: src/Tribe/Main.php:764
2499
  msgctxt "featured events slug"
2500
  msgid "featured"
2501
  msgstr ""
2502
 
2503
- #: src/Tribe/Linked_Posts.php:1005
2504
  msgid "Create: <b><%= term %></b>"
2505
  msgstr ""
2506
 
@@ -2649,175 +2670,177 @@ msgstr ""
2649
  msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2650
  msgstr ""
2651
 
2652
- #: src/Tribe/Asset/Dynamic.php:77
2653
  msgid "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2654
  msgstr ""
2655
 
2656
- #: src/Tribe/Asset/Dynamic.php:76
2657
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2658
  msgstr ""
2659
 
2660
- #: src/Tribe/Asset/Dynamic.php:75
2661
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2662
  msgstr ""
2663
 
2664
- #: src/Tribe/Asset/Dynamic.php:74
2665
  msgid "This event is all day on %%startdatewithyear%%."
2666
  msgstr ""
2667
 
2668
- #: src/Tribe/Asset/Dynamic.php:73
2669
  msgid "This event is at %%starttime%% on %%startdatewithyear%%."
2670
  msgstr ""
2671
 
2672
- #: src/Tribe/Asset/Dynamic.php:72
2673
  msgid "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2674
  msgstr ""
2675
 
2676
- #: src/Tribe/Asset/Dynamic.php:69
2677
  msgid "Dec"
2678
  msgstr ""
2679
 
2680
- #: src/Tribe/Asset/Dynamic.php:68
2681
  msgid "Nov"
2682
  msgstr ""
2683
 
2684
- #: src/Tribe/Asset/Dynamic.php:67
2685
  msgid "Oct"
2686
  msgstr ""
2687
 
2688
- #: src/Tribe/Asset/Dynamic.php:66
2689
  msgid "Sep"
2690
  msgstr ""
2691
 
2692
- #: src/Tribe/Asset/Dynamic.php:65
2693
  msgid "Aug"
2694
  msgstr ""
2695
 
2696
- #: src/Tribe/Asset/Dynamic.php:64
2697
  msgid "Jul"
2698
  msgstr ""
2699
 
2700
- #: src/Tribe/Asset/Dynamic.php:63
2701
  msgid "Jun"
2702
  msgstr ""
2703
 
2704
- #: src/Tribe/Asset/Dynamic.php:61
2705
  msgid "Apr"
2706
  msgstr ""
2707
 
2708
- #: src/Tribe/Asset/Dynamic.php:60
2709
  msgid "Mar"
2710
  msgstr ""
2711
 
2712
- #: src/Tribe/Asset/Dynamic.php:59
2713
  msgid "Feb"
2714
  msgstr ""
2715
 
2716
- #: src/Tribe/Asset/Dynamic.php:58
2717
  msgid "Jan"
2718
  msgstr ""
2719
 
2720
- #: src/Tribe/Asset/Dynamic.php:55
2721
  msgid "December"
2722
  msgstr "desembre"
2723
 
2724
- #: src/Tribe/Asset/Dynamic.php:54
2725
  msgid "November"
2726
  msgstr "novembre"
2727
 
2728
- #: src/Tribe/Asset/Dynamic.php:53
2729
  msgid "October"
2730
  msgstr "octubre"
2731
 
2732
- #: src/Tribe/Asset/Dynamic.php:52
2733
  msgid "September"
2734
  msgstr "setembre"
2735
 
2736
- #: src/Tribe/Asset/Dynamic.php:51
2737
  msgid "August"
2738
  msgstr "agost"
2739
 
2740
- #: src/Tribe/Asset/Dynamic.php:50
2741
  msgid "July"
2742
  msgstr "july"
2743
 
2744
- #: src/Tribe/Asset/Dynamic.php:49
2745
  msgid "June"
2746
  msgstr "juny"
2747
 
2748
- #: src/Tribe/Asset/Dynamic.php:48 src/Tribe/Asset/Dynamic.php:62
 
 
2749
  msgid "May"
2750
  msgstr "maig"
2751
 
2752
- #: src/Tribe/Asset/Dynamic.php:47
2753
  msgid "April"
2754
  msgstr "abril"
2755
 
2756
- #: src/Tribe/Asset/Dynamic.php:46
2757
  msgid "March"
2758
  msgstr "març"
2759
 
2760
- #: src/Tribe/Asset/Dynamic.php:45
2761
  msgid "February"
2762
  msgstr "febrer"
2763
 
2764
- #: src/Tribe/Asset/Dynamic.php:44
2765
  msgid "January"
2766
  msgstr "gener"
2767
 
2768
- #: src/Tribe/Asset/Dynamic.php:41
2769
  msgid "Sat"
2770
  msgstr ""
2771
 
2772
- #: src/Tribe/Asset/Dynamic.php:40
2773
  msgid "Fri"
2774
  msgstr ""
2775
 
2776
- #: src/Tribe/Asset/Dynamic.php:39
2777
  msgid "Thu"
2778
  msgstr ""
2779
 
2780
- #: src/Tribe/Asset/Dynamic.php:38
2781
  msgid "Wed"
2782
  msgstr ""
2783
 
2784
- #: src/Tribe/Asset/Dynamic.php:37
2785
  msgid "Tue"
2786
  msgstr ""
2787
 
2788
- #: src/Tribe/Asset/Dynamic.php:36
2789
  msgid "Mon"
2790
  msgstr ""
2791
 
2792
- #: src/Tribe/Asset/Dynamic.php:35
2793
  msgid "Sun"
2794
  msgstr ""
2795
 
2796
- #: src/Tribe/Asset/Dynamic.php:32
2797
  msgid "Saturday"
2798
  msgstr "dissabte"
2799
 
2800
- #: src/Tribe/Asset/Dynamic.php:31
2801
  msgid "Friday"
2802
  msgstr "divendres"
2803
 
2804
- #: src/Tribe/Asset/Dynamic.php:30
2805
  msgid "Thursday"
2806
  msgstr "dijous"
2807
 
2808
- #: src/Tribe/Asset/Dynamic.php:29
2809
  msgid "Wednesday"
2810
  msgstr "dimecres"
2811
 
2812
- #: src/Tribe/Asset/Dynamic.php:28
2813
  msgid "Tuesday"
2814
  msgstr "dimarts"
2815
 
2816
- #: src/Tribe/Asset/Dynamic.php:27
2817
  msgid "Monday"
2818
  msgstr "dilluns"
2819
 
2820
- #: src/Tribe/Asset/Dynamic.php:26
2821
  msgid "Sunday"
2822
  msgstr "diumenge"
2823
 
@@ -2898,11 +2921,11 @@ msgstr ""
2898
  msgid "Unknown service message"
2899
  msgstr ""
2900
 
2901
- #: src/Tribe/Aggregator/Record/List_Table.php:533
2902
  msgid "Unknown"
2903
  msgstr ""
2904
 
2905
- #: src/Tribe/Aggregator/Record/Abstract.php:1205
2906
  msgid "When this import was last scheduled to run, the daily limit for your Event Aggregator license had already been reached."
2907
  msgstr ""
2908
 
@@ -3639,7 +3662,7 @@ msgctxt "Abbreviation for the miles unit of measure"
3639
  msgid "mi"
3640
  msgstr ""
3641
 
3642
- #: src/Tribe/Main.php:983
3643
  msgid "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3644
  msgstr ""
3645
 
@@ -3864,133 +3887,133 @@ msgstr ""
3864
  msgid "Scheduled Imports"
3865
  msgstr ""
3866
 
3867
- #: src/Tribe/Aggregator/Tabs/New.php:603
3868
  msgid "Renew your Event Aggregator license"
3869
  msgstr ""
3870
 
3871
- #: src/Tribe/Aggregator/Tabs/New.php:600
3872
  msgid "Renew your license in order to import events from Facebook, iCalendar, Google, or Meetup."
3873
  msgstr ""
3874
 
3875
- #: src/Tribe/Aggregator/Tabs/New.php:599
3876
  msgid "Your Event Aggregator license is expired."
3877
  msgstr ""
3878
 
3879
- #: src/Tribe/Aggregator/Tabs/New.php:551
3880
  msgid "Learn More"
3881
  msgstr ""
3882
 
3883
- #: src/Tribe/Aggregator/Tabs/New.php:546 src/Tribe/Aggregator/Tabs/New.php:553
3884
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:19
3885
  msgid "opens in a new window"
3886
  msgstr ""
3887
 
3888
- #: src/Tribe/Aggregator/Tabs/New.php:544
3889
  msgid "Buy It Now"
3890
  msgstr ""
3891
 
3892
- #: src/Tribe/Aggregator/Tabs/New.php:541
3893
  msgid "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3894
  msgstr ""
3895
 
3896
- #: src/Tribe/Aggregator/Tabs/New.php:539
3897
  msgid "Import Using Event Aggregator"
3898
  msgstr ""
3899
 
3900
- #: src/Tribe/Aggregator/Tabs/New.php:452
3901
  msgid "Unable to save credentials"
3902
  msgstr ""
3903
 
3904
- #: src/Tribe/Aggregator/Tabs/New.php:445
3905
  msgid "Credentials have been saved"
3906
  msgstr ""
3907
 
3908
- #: src/Tribe/Aggregator/Tabs/New.php:436
3909
  msgid "The Meetup API key is required."
3910
  msgstr ""
3911
 
3912
- #: src/Tribe/Aggregator/Tabs/New.php:427
3913
  msgid "Invalid credential save nonce"
3914
  msgstr ""
3915
 
3916
- #: src/Tribe/Aggregator/Tabs/New.php:417
3917
  msgid "Invalid credential save request"
3918
  msgstr ""
3919
 
3920
- #: src/Tribe/Aggregator/Tabs/New.php:405
3921
  msgid "View your scheduled imports."
3922
  msgstr ""
3923
 
3924
- #: src/Tribe/Aggregator/Tabs/New.php:401
3925
  msgid "The next import is scheduled for %1$s."
3926
  msgstr ""
3927
 
3928
- #: src/Tribe/Aggregator/Tabs/New.php:394
3929
  msgctxt "separator between date and time"
3930
  msgid " at "
3931
  msgstr ""
3932
 
3933
- #: src/Tribe/Aggregator/Tabs/New.php:390
3934
  msgid "Your scheduled import was saved and the first import is complete!"
3935
  msgstr ""
3936
 
3937
- #: src/Tribe/Aggregator/Tabs/New.php:365
3938
  msgid "View your event categories"
3939
  msgstr ""
3940
 
3941
- #: src/Tribe/Aggregator/Tabs/New.php:361
3942
  msgid "%1$d new event category was created."
3943
  msgid_plural "%1$d new event categories were created."
3944
  msgstr[0] ""
3945
  msgstr[1] ""
3946
 
3947
- #: src/Tribe/Aggregator/Tabs/New.php:352
3948
  msgid "View your event organizers"
3949
  msgstr ""
3950
 
3951
- #: src/Tribe/Aggregator/Tabs/New.php:348
3952
  msgid "%1$d new organizer was imported."
3953
  msgid_plural "%1$d new organizers were imported."
3954
  msgstr[0] ""
3955
  msgstr[1] ""
3956
 
3957
- #: src/Tribe/Aggregator/Tabs/New.php:340
3958
  msgid "View your event venues"
3959
  msgstr ""
3960
 
3961
- #: src/Tribe/Aggregator/Tabs/New.php:336
3962
  msgid "%1$d new venue was imported."
3963
  msgid_plural "%1$d new venues were imported."
3964
  msgstr[0] ""
3965
  msgstr[1] ""
3966
 
3967
- #: src/Tribe/Aggregator/Tabs/New.php:326
3968
  msgid "View all %s"
3969
  msgstr "Veure tots %s "
3970
 
3971
- #: src/Tribe/Aggregator/Tabs/New.php:318
3972
  msgid "No %1$s were imported or updated."
3973
  msgstr ""
3974
 
3975
- #: src/Tribe/Aggregator/Tabs/New.php:311
3976
  msgid "%1$d new image was imported."
3977
  msgid_plural "%1$d new images were imported."
3978
  msgstr[0] ""
3979
  msgstr[1] ""
3980
 
3981
- #: src/Tribe/Aggregator/Tabs/New.php:302
3982
  msgid "%1$d already-imported %2$s was skipped."
3983
  msgid_plural "%1$d already-imported %2$s were skipped."
3984
  msgstr[0] ""
3985
  msgstr[1] ""
3986
 
3987
- #: src/Tribe/Aggregator/Tabs/New.php:291
3988
  msgid "%1$d existing %2$s was updated."
3989
  msgid_plural "%1$d existing %2$s were updated."
3990
  msgstr[0] ""
3991
  msgstr[1] ""
3992
 
3993
- #: src/Tribe/Aggregator/Tabs/New.php:279
3994
  msgid "%1$d new %2$s was imported."
3995
  msgid_plural "%1$d new %2$s were imported."
3996
  msgstr[0] ""
@@ -4254,7 +4277,7 @@ msgstr ""
4254
  msgid "Events Aggregator Record"
4255
  msgstr ""
4256
 
4257
- #: src/Tribe/Aggregator/Record/Queue_Realtime.php:178
4258
  msgid "Unable to continue inserting data. Please reload this page to continue/try again."
4259
  msgstr ""
4260
 
@@ -4274,87 +4297,87 @@ msgstr ""
4274
  msgid "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4275
  msgstr ""
4276
 
4277
- #: src/Tribe/Aggregator/Record/Queue_Processor.php:234
4278
  msgid "Could not process queue for Import Record %1$d: %2$s"
4279
  msgstr ""
4280
 
4281
- #: src/Tribe/Aggregator/Record/List_Table.php:657
4282
  msgid "Select %s"
4283
  msgstr ""
4284
 
4285
- #: src/Tribe/Aggregator/Record/List_Table.php:622
4286
- #: src/Tribe/Aggregator/Record/List_Table.php:631
4287
- #: src/Tribe/Aggregator/Record/List_Table.php:639
4288
  msgid "updated"
4289
  msgstr ""
4290
 
4291
- #: src/Tribe/Aggregator/Record/List_Table.php:620
4292
- #: src/Tribe/Aggregator/Record/List_Table.php:628
4293
- #: src/Tribe/Aggregator/Record/List_Table.php:636
4294
  msgid "new"
4295
  msgstr ""
4296
 
4297
- #: src/Tribe/Aggregator/Record/List_Table.php:617
4298
  msgid "Latest Import:"
4299
  msgstr ""
4300
 
4301
- #: src/Tribe/Aggregator/Record/List_Table.php:615
4302
  msgid "all time"
4303
  msgstr ""
4304
 
4305
- #: src/Tribe/Aggregator/Record/List_Table.php:589
4306
  msgid "One Time"
4307
  msgstr ""
4308
 
4309
- #: src/Tribe/Aggregator/Record/List_Table.php:586
4310
  msgid "Invalid Frequency"
4311
  msgstr ""
4312
 
4313
- #: src/Tribe/Aggregator/Record/List_Table.php:556 src/Tribe/Aggregator.php:426
4314
  #: src/Tribe/Ignored_Events.php:357
4315
  #: src/admin-views/tribe-options-addons-api.php:36
4316
  msgctxt "in human readable time"
4317
  msgid "in about %s"
4318
  msgstr ""
4319
 
4320
- #: src/Tribe/Aggregator/Record/List_Table.php:554 src/Tribe/Aggregator.php:424
4321
  #: src/Tribe/Ignored_Events.php:355
4322
  #: src/admin-views/tribe-options-addons-api.php:34
4323
  msgctxt "human readable time ago"
4324
  msgid "about %s ago"
4325
  msgstr ""
4326
 
4327
- #: src/Tribe/Aggregator/Record/List_Table.php:506
4328
  msgid "Radius:"
4329
  msgstr ""
4330
 
4331
- #: src/Tribe/Aggregator/Record/List_Table.php:489
4332
  msgid "Keywords:"
4333
  msgstr ""
4334
 
4335
- #: src/Tribe/Aggregator/Record/List_Table.php:476
4336
  #: src/Tribe/Ignored_Events.php:337
4337
  msgctxt "record via origin"
4338
  msgid "via "
4339
  msgstr ""
4340
 
4341
- #: src/Tribe/Aggregator/Record/List_Table.php:433
4342
  msgid "Import preview"
4343
  msgstr ""
4344
 
4345
- #: src/Tribe/Aggregator/Record/List_Table.php:429
4346
  msgid "Import pending"
4347
  msgstr ""
4348
 
4349
- #: src/Tribe/Aggregator/Record/List_Table.php:425
4350
  msgid "Import schedule"
4351
  msgstr ""
4352
 
4353
- #: src/Tribe/Aggregator/Record/List_Table.php:413
4354
  msgid "Import failed"
4355
  msgstr ""
4356
 
4357
- #: src/Tribe/Aggregator/Record/List_Table.php:409
4358
  msgid "Import completed"
4359
  msgstr ""
4360
 
@@ -4439,11 +4462,11 @@ msgstr ""
4439
  msgid "Eventbrite"
4440
  msgstr ""
4441
 
4442
- #: src/Tribe/Aggregator/Record/Abstract.php:1148
4443
  msgid "Deleted Attachment: %d"
4444
  msgstr ""
4445
 
4446
- #: src/Tribe/Aggregator/Record/Abstract.php:496
4447
  msgid "Record: "
4448
  msgstr ""
4449
 
@@ -4478,7 +4501,7 @@ msgid "Hide Filters"
4478
  msgstr ""
4479
 
4480
  #: src/Tribe/Aggregator/Page.php:96
4481
- #: src/Tribe/Aggregator/Record/List_Table.php:485
4482
  msgid "View Filters"
4483
  msgstr ""
4484
 
@@ -4836,7 +4859,7 @@ msgid "There is an update for %s. You'll need to %scheck your license%s to have
4836
  msgstr ""
4837
 
4838
  #: common/src/Tribe/PUE/Checker.php:961 common/src/Tribe/PUE/Notices.php:285
4839
- #: src/Tribe/Aggregator/Record/Abstract.php:1163
4840
  msgid " (opens in a new window)"
4841
  msgstr ""
4842
 
@@ -5137,7 +5160,7 @@ msgstr ""
5137
  msgid "No notable changes detected"
5138
  msgstr ""
5139
 
5140
- #: src/Tribe/Main.php:2735
5141
  msgid " (View Full %1$s Description Here: %2$s)"
5142
  msgstr ""
5143
 
@@ -5185,147 +5208,147 @@ msgstr ""
5185
  msgid "Keep the Core Plugin %sFREE%s!"
5186
  msgstr ""
5187
 
5188
- #: src/Tribe/Template_Factory.php:300
5189
  msgid "No results were found for %1$s in or near %2$s."
5190
  msgstr ""
5191
 
5192
- #: src/Tribe/Template_Factory.php:298
5193
  msgid "There were no results found for %s."
5194
  msgstr ""
5195
 
5196
- #: src/Tribe/Template/Month.php:456
5197
  msgid "There were no results found for %s this month. Try searching next month."
5198
  msgstr ""
5199
 
5200
- #: src/Tribe/Template/Day.php:153
5201
  msgid "No %1$s scheduled for %2$s. Please try another day."
5202
  msgstr ""
5203
 
5204
- #: src/Tribe/Main.php:4254
5205
  msgid "Check out the %savailable add-ons%s."
5206
  msgstr ""
5207
 
5208
- #: src/Tribe/Main.php:1923
5209
  msgid "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5210
  msgstr ""
5211
 
5212
- #: src/Tribe/Main.php:1854 src/Tribe/Main.php:1874
5213
  msgid "%1$s scheduled for: %2$s."
5214
  msgstr ""
5215
 
5216
- #: src/Tribe/Main.php:1835
5217
  msgid "%1$s draft updated. %2$sPreview %3$s"
5218
  msgstr ""
5219
 
5220
- #: src/Tribe/Main.php:1826
5221
  msgid "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5222
  msgstr ""
5223
 
5224
- #: src/Tribe/Main.php:1820
5225
  msgid "%1$s submitted. %2$sPreview %3$s"
5226
  msgstr ""
5227
 
5228
- #: src/Tribe/Main.php:1802
5229
  msgid "%1$s updated. %2$sView %1$s%3$s"
5230
  msgstr ""
5231
 
5232
- #: src/Tribe/Main.php:1477
5233
  msgid "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5234
  msgstr ""
5235
 
5236
- #: src/Tribe/Main.php:1112
5237
  msgid "If you have a valid license for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5238
  msgstr ""
5239
 
5240
- #: src/Tribe/Main.php:1111
5241
  msgid "post a thread"
5242
  msgstr ""
5243
 
5244
- #: src/Tribe/Main.php:1107
5245
  msgid "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays."
5246
  msgstr ""
5247
 
5248
- #: src/Tribe/Main.php:1103
5249
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5250
  msgstr ""
5251
 
5252
- #: src/Tribe/Main.php:1102
5253
  msgid "open-source forum on WordPress.org"
5254
  msgstr ""
5255
 
5256
- #: src/Tribe/Main.php:1098
5257
  msgid "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays"
5258
  msgstr ""
5259
 
5260
- #: src/Tribe/Main.php:1097 src/Tribe/Main.php:1105
5261
  msgid "premium support on our website"
5262
  msgstr ""
5263
 
5264
- #: src/Tribe/Main.php:1095
5265
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5266
  msgstr ""
5267
 
5268
- #: src/Tribe/Main.php:1094
5269
  msgid "Events Tickets"
5270
  msgstr ""
5271
 
5272
- #: src/Tribe/Main.php:1079
5273
  msgid "Customizing the Events plugins"
5274
  msgstr ""
5275
 
5276
- #: src/Tribe/Main.php:1079
5277
  msgid "%s: Code and guides for customizing your calendar in useful and interesting ways."
5278
  msgstr ""
5279
 
5280
- #: src/Tribe/Main.php:1077
5281
  msgid "Troubleshooting common problems"
5282
  msgstr ""
5283
 
5284
- #: src/Tribe/Main.php:1077
5285
  msgid "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5286
  msgstr ""
5287
 
5288
- #: src/Tribe/Main.php:1075
5289
  msgid "Using stylesheets and page templates"
5290
  msgstr ""
5291
 
5292
- #: src/Tribe/Main.php:1075
5293
  msgid "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5294
  msgstr ""
5295
 
5296
- #: src/Tribe/Main.php:1073
5297
  msgid "Themer’s Guide"
5298
  msgstr ""
5299
 
5300
- #: src/Tribe/Main.php:1073
5301
  msgid "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5302
  msgstr ""
5303
 
5304
- #: src/Tribe/Main.php:1071
5305
  msgid "Features overview"
5306
  msgstr ""
5307
 
5308
- #: src/Tribe/Main.php:1071
5309
  msgid "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5310
  msgstr ""
5311
 
5312
- #: src/Tribe/Main.php:1069
5313
  msgid "Settings overview"
5314
  msgstr ""
5315
 
5316
- #: src/Tribe/Main.php:1069
5317
  msgid "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5318
  msgstr ""
5319
 
5320
- #: src/Tribe/Main.php:1066
5321
  msgid "Support for The Events Calendar"
5322
  msgstr ""
5323
 
5324
- #: src/Tribe/Main.php:1055
5325
  msgid "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5326
  msgstr ""
5327
 
5328
- #: src/Tribe/Main.php:1053
5329
  msgid "New User Primer"
5330
  msgstr ""
5331
 
@@ -5348,7 +5371,7 @@ msgstr ""
5348
  msgid "CSV Import Settings"
5349
  msgstr ""
5350
 
5351
- #: src/Tribe/Asset/Bootstrap_Datepicker.php:26
5352
  msgid "Clear"
5353
  msgstr "Esborrar"
5354
 
@@ -5360,7 +5383,7 @@ msgstr ""
5360
  msgid "Create New %s"
5361
  msgstr "Crea nou(s) %s"
5362
 
5363
- #: src/Tribe/Organizer.php:371
5364
  msgid "Unnamed %s"
5365
  msgstr ""
5366
 
@@ -5548,7 +5571,7 @@ msgstr "Cancel·lar"
5548
  msgid "%s must be a positive number or percent."
5549
  msgstr ""
5550
 
5551
- #: src/Tribe/Main.php:1000
5552
  msgid "%1$s or %2$s"
5553
  msgstr ""
5554
 
@@ -5605,7 +5628,7 @@ msgstr "Per saber-ne més"
5605
  msgid "Day Navigation"
5606
  msgstr "Navegació per dia"
5607
 
5608
- #: src/Tribe/Aggregator/Tabs/New.php:388
5609
  msgid "Import complete!"
5610
  msgstr "Importació completada!"
5611
 
@@ -5847,7 +5870,7 @@ msgid "More..."
5847
  msgstr "Més..."
5848
 
5849
  #: common/src/Tribe/Admin/Help_Page.php:194 common/src/Tribe/Plugins_API.php:43
5850
- #: src/Tribe/Main.php:1106
5851
  msgid "Events Calendar PRO"
5852
  msgstr ""
5853
 
@@ -6286,7 +6309,7 @@ msgstr "URL:"
6286
  msgid "%s Website"
6287
  msgstr "Web de l'%s"
6288
 
6289
- #: src/Tribe/Aggregator/Record/List_Table.php:502
6290
  msgid "Location:"
6291
  msgstr ""
6292
 
@@ -7691,15 +7714,15 @@ msgstr "Les plantilles sobreescrites han de moure's al subdirectori correcte: tr
7691
  msgid "Template overrides should be moved to the correct subdirectory: %s"
7692
  msgstr "Las plantilles sobreescrites han de moure's al subdirectori correcte: %s"
7693
 
7694
- #: src/Tribe/Template_Factory.php:306
7695
  msgid "No previous %s "
7696
  msgstr "Cap %s anterior"
7697
 
7698
- #: src/Tribe/Template_Factory.php:304 src/Tribe/Template_Factory.php:309
7699
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7700
  msgstr ""
7701
 
7702
- #: src/Tribe/Template_Factory.php:302
7703
  msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7704
  msgstr ""
7705
 
@@ -7707,28 +7730,28 @@ msgstr ""
7707
  msgid "This %s has passed."
7708
  msgstr "Aquest %s ja ha passat."
7709
 
7710
- #: src/Tribe/Template/Month.php:953
7711
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7712
  msgstr "La data sol·licitada \"%s\" no era vàlida &ndash; es mostra el mes actual en el seu lloc"
7713
 
7714
- #: src/Tribe/Template/Month.php:462 src/Tribe/Template_Factory.php:311
7715
  msgid "There were no results found."
7716
  msgstr "No s'ha trobat cap resultat."
7717
 
7718
- #: src/Tribe/Template/Month.php:460
7719
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7720
  msgstr ""
7721
 
7722
- #: src/Tribe/Template/Day.php:151
7723
  msgid "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7724
  msgstr ""
7725
 
7726
- #: src/Tribe/Template/Day.php:117 src/Tribe/Template/Day.php:133
7727
  msgid "Ongoing"
7728
  msgstr "En marxa"
7729
 
7730
- #: src/Tribe/Aggregator/Page.php:82 src/Tribe/Template/Day.php:114
7731
- #: src/Tribe/Template/Day.php:130
7732
  msgid "All Day"
7733
  msgstr "Tot el dia"
7734
 
@@ -7823,50 +7846,50 @@ msgstr "Clau de llicència"
7823
  msgid "Error"
7824
  msgstr "Error"
7825
 
7826
- #: src/Tribe/Main.php:4597
7827
  msgid "Once Every 30 Mins"
7828
  msgstr "Un cop cada 30 minuts"
7829
 
7830
- #: src/Tribe/Main.php:4517
7831
  msgid "Day Of"
7832
  msgstr "Dia de"
7833
 
7834
- #: src/Tribe/Main.php:4515
7835
  msgid "%s From"
7836
  msgstr "%s de"
7837
 
7838
- #: src/Tribe/Main.php:4511
7839
  msgid "%s In"
7840
  msgstr "%s a"
7841
 
7842
- #: src/Tribe/Main.php:4506 src/Tribe/Main.php:4531
7843
  #: src/admin-views/aggregator/origins/refine.php:7
7844
  msgid "Date"
7845
  msgstr "Data"
7846
 
7847
- #: src/Tribe/Main.php:4433
7848
  msgid "Search"
7849
  msgstr "Buscar"
7850
 
7851
- #: src/Tribe/Main.php:4407 src/admin-views/aggregator/fields/schedule.php:44
7852
  #: src/admin-views/aggregator/fields/schedule.php:62
7853
  msgid "Day"
7854
  msgstr "Dia"
7855
 
7856
- #: src/Tribe/Main.php:4390
7857
  msgid "Month"
7858
  msgstr "Mes"
7859
 
7860
- #: src/Tribe/Main.php:4372
7861
  msgid "List"
7862
  msgstr "Llista"
7863
 
7864
- #: src/Tribe/Main.php:4356
7865
  msgid "Calendar"
7866
  msgstr "Calendari"
7867
 
7868
  #: common/src/Tribe/Settings.php:254
7869
- #: src/Tribe/Admin/Bar/Default_Configurator.php:89 src/Tribe/Main.php:4355
7870
  msgid "Settings"
7871
  msgstr "Configuració"
7872
 
@@ -7880,7 +7903,7 @@ msgstr "CSV"
7880
  msgid "Add %s"
7881
  msgstr "Afegir %s"
7882
 
7883
- #: src/Tribe/Admin/Bar/Default_Configurator.php:45 src/Tribe/Main.php:4306
7884
  msgid "View Calendar"
7885
  msgstr "Veure calendari"
7886
 
@@ -7888,53 +7911,53 @@ msgstr "Veure calendari"
7888
  msgid "%s"
7889
  msgstr "%s"
7890
 
7891
- #: src/Tribe/Main.php:4253
7892
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7893
  msgstr "Busques funcionalitats addicionals com ara esdeveniments recurrents, venda de tiquets, esdeveniments afegits pel públic, vistes addicionals i més?"
7894
 
7895
- #: src/Tribe/Main.php:4248
7896
  msgid "Additional Functionality"
7897
  msgstr "Funcionalitats addicionals"
7898
 
7899
- #: src/Tribe/Main.php:4203
7900
  msgid "News from Modern Tribe"
7901
  msgstr "Notícies de Modern Tribe"
7902
 
7903
- #: src/Tribe/Main.php:4183
7904
  msgid "View All Add-Ons"
7905
  msgstr "Veure tots els complements"
7906
 
7907
- #: src/Tribe/Main.php:4180
7908
  msgid "Support"
7909
  msgstr "Suport"
7910
 
7911
- #: src/Tribe/Main.php:3828 src/Tribe/Main.php:3841
7912
  msgid "%s Information"
7913
  msgstr "Informació de %s"
7914
 
7915
- #: src/Tribe/Main.php:3819
7916
  msgid "%s Options"
7917
  msgstr "Opcions d'%s"
7918
 
7919
- #: src/Tribe/Main.php:3742 src/Tribe/Main.php:3777
7920
  #: src/functions/template-tags/day.php:157
7921
  #: src/functions/template-tags/day.php:178
7922
  msgid "Date out of range."
7923
  msgstr "Data fora de rang."
7924
 
7925
- #: src/Tribe/Main.php:2344
7926
  msgid "all"
7927
  msgstr ""
7928
 
7929
- #: src/Tribe/Main.php:2343 src/functions/template-tags/general.php:111
7930
  msgid "events"
7931
  msgstr ""
7932
 
7933
- #: src/Tribe/Main.php:2342 src/functions/template-tags/general.php:79
7934
  msgid "event"
7935
  msgstr ""
7936
 
7937
- #: src/Tribe/Main.php:2341
7938
  msgid "page"
7939
  msgstr ""
7940
 
@@ -7946,7 +7969,8 @@ msgstr "Xarxa"
7946
  msgid "Done"
7947
  msgstr "Fet"
7948
 
7949
- #: common/src/Tribe/Main.php:272 src/Tribe/Asset/Bootstrap_Datepicker.php:27
 
7950
  #: src/functions/template-tags/day.php:104
7951
  msgid "Today"
7952
  msgstr "Avui"
@@ -7959,141 +7983,141 @@ msgstr "Anterior"
7959
  msgid "Next"
7960
  msgstr "Següent"
7961
 
7962
- #: src/Tribe/Linked_Posts.php:1010
7963
  msgid "No saved %s exists."
7964
  msgstr "No existeix cap %s guardat."
7965
 
7966
- #: src/Tribe/Linked_Posts.php:840
7967
  msgid "Available %s"
7968
  msgstr "%s disponibles"
7969
 
7970
- #: src/Tribe/Linked_Posts.php:836
7971
  msgid "My %s"
7972
  msgstr "El meu %s"
7973
 
7974
- #: src/Tribe/Main.php:1859 src/Tribe/Main.php:1879
7975
  msgid "%s draft updated."
7976
  msgstr "%s esborrany actualitzat."
7977
 
7978
- #: src/Tribe/Main.php:1852 src/Tribe/Main.php:1872
7979
  msgid "%s submitted."
7980
  msgstr "%s enviat."
7981
 
7982
- #: src/Tribe/Main.php:1850 src/Tribe/Main.php:1870
7983
  msgid "%s published."
7984
  msgstr "%s publicat."
7985
 
7986
  #. translators: %s: date and time of the revision
7987
- #: src/Tribe/Main.php:1869
7988
  msgid "%s restored to revision from %s"
7989
  msgstr "%s restaurat a la revisió de %s"
7990
 
7991
  #. translators: Publish box date format, see http://php.net/date
7992
- #: src/Tribe/Main.php:1829 src/Tribe/Main.php:1857 src/Tribe/Main.php:1877
7993
  msgid "M j, Y @ G:i"
7994
  msgstr "M j, Y @ G:i"
7995
 
7996
- #: src/Tribe/Main.php:1818 src/Tribe/Main.php:1851 src/Tribe/Main.php:1871
7997
  msgid "%s saved."
7998
  msgstr "%s guardat."
7999
 
8000
  #. translators: %s: date and time of the revision
8001
- #: src/Tribe/Main.php:1811 src/Tribe/Main.php:1849
8002
  msgid "%1$s restored to revision from %2$s"
8003
  msgstr "%1$s restaurat amb la revisió de %2$s"
8004
 
8005
- #: src/Tribe/Main.php:1809 src/Tribe/Main.php:1844 src/Tribe/Main.php:1847
8006
- #: src/Tribe/Main.php:1864 src/Tribe/Main.php:1867
8007
  msgid "%s updated."
8008
  msgstr "%s actualitzat."
8009
 
8010
- #: src/Tribe/Main.php:1808 src/Tribe/Main.php:1846 src/Tribe/Main.php:1866
8011
  msgid "Custom field deleted."
8012
  msgstr "Camp personalitzat eliminat."
8013
 
8014
- #: src/Tribe/Main.php:1807 src/Tribe/Main.php:1845 src/Tribe/Main.php:1865
8015
  msgid "Custom field updated."
8016
  msgstr "Camp personalitzat actualitzat."
8017
 
8018
- #: src/Tribe/Main.php:1785
8019
  msgid "New %s Category Name"
8020
  msgstr "Nom de la nova categoria d'%s"
8021
 
8022
- #: src/Tribe/Main.php:1784
8023
  msgid "Add New %s Category"
8024
  msgstr "Afegir nova categoria d'%s"
8025
 
8026
- #: src/Tribe/Main.php:1783
8027
  msgid "Update %s Category"
8028
  msgstr "Actualitzar categoria d'%s"
8029
 
8030
- #: src/Tribe/Main.php:1782
8031
  msgid "Edit %s Category"
8032
  msgstr "Editar categoria d'%s"
8033
 
8034
- #: src/Tribe/Main.php:1781
8035
  msgid "Parent %s Category:"
8036
  msgstr "Categoria d'%s superior:"
8037
 
8038
- #: src/Tribe/Main.php:1780
8039
  msgid "Parent %s Category"
8040
  msgstr "Categoria d'%s superior"
8041
 
8042
- #: src/Tribe/Main.php:1779
8043
  msgid "All %s Categories"
8044
  msgstr "Totes les categories d'%s"
8045
 
8046
- #: src/Tribe/Main.php:1778
8047
  msgid "Search %s Categories"
8048
  msgstr "Busca categories d'%s"
8049
 
8050
- #: src/Tribe/Main.php:1777
8051
  msgid "%s Category"
8052
  msgstr "Categoria d'%s"
8053
 
8054
- #: src/Tribe/Main.php:1767 src/Tribe/Organizer.php:98 src/Tribe/Venue.php:117
8055
  msgid "No %s found in Trash"
8056
  msgstr "No s'han trobat %s a la paperera"
8057
 
8058
- #: src/Tribe/Main.php:1766 src/Tribe/Organizer.php:97 src/Tribe/Venue.php:116
8059
  msgid "No %s found"
8060
  msgstr "No s'han trobat %s"
8061
 
8062
- #: src/Tribe/Main.php:1765 src/Tribe/Organizer.php:96 src/Tribe/Venue.php:115
8063
  msgid "Search %s"
8064
  msgstr "Buscar %s"
8065
 
8066
- #: src/Tribe/Main.php:1764 src/Tribe/Organizer.php:95 src/Tribe/Venue.php:114
8067
  #: src/views/month/single-day.php:26
8068
  msgid "View %s"
8069
  msgstr "Veure %s"
8070
 
8071
- #: src/Tribe/Main.php:1763 src/Tribe/Organizer.php:94 src/Tribe/Venue.php:113
8072
  msgid "New %s"
8073
  msgstr "Nou %s"
8074
 
8075
- #: src/Tribe/Main.php:1761 src/Tribe/Main.php:1893 src/Tribe/Main.php:1894
8076
  #: src/Tribe/Organizer.php:92 src/Tribe/Venue.php:111
8077
  msgid "Add New %s"
8078
  msgstr "Afegir nou %s"
8079
 
8080
- #: src/Tribe/Main.php:1760 src/Tribe/Organizer.php:91 src/Tribe/Venue.php:110
8081
  msgid "Add New"
8082
  msgstr "Afegir nou"
8083
 
8084
- #: src/Tribe/Main.php:1727 src/Tribe/Main.php:2339
8085
  msgid "tag"
8086
  msgstr "etiqueta"
8087
 
8088
- #: src/Tribe/Main.php:1713 src/Tribe/Main.php:2340
8089
  msgid "category"
8090
  msgstr "categoria"
8091
 
8092
- #: src/Tribe/Main.php:1465
8093
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8094
  msgstr "Ho sentim, The Events Calendar requereix PHP %s o superior. Parla amb el teu proveïdor d'allotjament web per que instal·li una versió de PHP superior."
8095
 
8096
- #: src/Tribe/Main.php:1462
8097
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8098
  msgstr "Ho sentim, The Events Calendar requereix WordPress %s o superior. Si us plau, actualitza la teva instal·lació de WordPress."
8099
 
@@ -8111,72 +8135,72 @@ msgstr "Ajuda"
8111
  msgid "Display"
8112
  msgstr "Visualització"
8113
 
8114
- #: src/Tribe/Main.php:1309
8115
  msgid "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8116
  msgstr ""
8117
 
8118
- #: src/Tribe/Main.php:1297
8119
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8120
  msgstr "La teva versió de The Events Calendar no està al dia amb un dels teus complements. Si us plau, %sactualitza-la.%s"
8121
 
8122
- #: src/Tribe/Main.php:788
8123
  msgid "Initializing Tribe Events on %s"
8124
  msgstr "Inicialitzant Tribe Events a %s"
8125
 
8126
- #: src/Tribe/Main.php:763
8127
  msgid "today"
8128
  msgstr "avui"
8129
 
8130
- #: src/Tribe/Main.php:762
8131
  msgid "day"
8132
  msgstr "dia"
8133
 
8134
- #: src/Tribe/Main.php:761
8135
  msgid "past"
8136
  msgstr "passats"
8137
 
8138
- #: src/Tribe/Main.php:760
8139
  msgid "upcoming"
8140
  msgstr "pròxims"
8141
 
8142
- #: src/Tribe/Main.php:759
8143
  msgid "list"
8144
  msgstr "llista"
8145
 
8146
- #: src/Tribe/Main.php:758
8147
  msgid "month"
8148
  msgstr "mes"
8149
 
8150
- #. #-#-#-#-# the-events-calendar-code.pot (The Events Calendar 4.6.20.1)
8151
  #. #-#-#-#-#
8152
  #. Plugin Name of the plugin/theme
8153
  #: common/src/Tribe/Admin/Help_Page.php:59 common/src/Tribe/Customizer.php:569
8154
- #: common/src/Tribe/Plugins_API.php:25 src/Tribe/Main.php:751
8155
- #: src/Tribe/Main.php:1093 src/Tribe/Privacy.php:29
8156
  #: src/functions/template-tags/general.php:1345
8157
  msgid "The Events Calendar"
8158
  msgstr "The Events Calendar"
8159
 
8160
- #: src/Tribe/Main.php:1163 src/admin-views/aggregator/tabs/import-form.php:185
8161
  #: src/admin-views/aggregator/tabs/import-form.php:197
8162
  #: src/functions/template-tags/general.php:63
8163
  msgid "Event"
8164
  msgstr "Esdeveniment"
8165
 
8166
  #: common/src/Tribe/Settings.php:177 common/src/Tribe/Settings.php:241
8167
- #: common/src/Tribe/Settings.php:242 src/Tribe/Main.php:1155
8168
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:207
8169
  #: src/functions/template-tags/general.php:95
8170
  msgid "Events"
8171
  msgstr "Esdeveniments"
8172
 
8173
- #: src/Tribe/Organizer.php:157 src/functions/template-tags/organizer.php:115
8174
  msgid "Organizer"
8175
  msgstr "Organitzador"
8176
 
8177
  #: src/Tribe/Organizer.php:171
8178
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:206
8179
- #: src/functions/template-tags/organizer.php:126
8180
  msgid "Organizers"
8181
  msgstr "Organitzadors"
8182
 
@@ -8440,7 +8464,7 @@ msgstr "Data:"
8440
  msgid "End:"
8441
  msgstr "Finalització:"
8442
 
8443
- #: src/Tribe/Aggregator/Record/List_Table.php:498
8444
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
8445
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
8446
  #: src/views/modules/meta/details.php:66 src/views/modules/meta/details.php:91
@@ -8459,7 +8483,7 @@ msgstr "Data de finalització"
8459
  msgid "Start Date"
8460
  msgstr "Data d'inici"
8461
 
8462
- #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1776
8463
  msgid "%s Categories"
8464
  msgstr "Categories d'%s"
8465
 
@@ -8470,7 +8494,7 @@ msgstr ""
8470
  #: src/Tribe/Admin/Timezone_Updater.php:87
8471
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
8472
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:100
8473
- #: src/Tribe/Aggregator/Record/Queue_Realtime.php:203
8474
  msgid "%d%% complete"
8475
  msgstr ""
8476
 
@@ -8483,21 +8507,21 @@ msgid "Please wait while time zone data is added to your events."
8483
  msgstr ""
8484
 
8485
  #: src/Tribe/Admin/Bar/Default_Configurator.php:62
8486
- #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:211 src/Tribe/Main.php:1762
8487
- #: src/Tribe/Main.php:4862 src/Tribe/Main.php:4909 src/Tribe/Organizer.php:93
8488
  #: src/Tribe/Venue.php:112
8489
  msgid "Edit %s"
8490
  msgstr "Editar %s"
8491
 
8492
- #: src/Tribe/Main.php:4846 src/Tribe/Main.php:4903
8493
  msgid "Use Saved %s:"
8494
  msgstr "Utilitza %s guardat:"
8495
 
8496
- #: src/Tribe/Main.php:992
8497
  msgid " ask the site administrator set a different Events URL slug."
8498
  msgstr ""
8499
 
8500
- #: src/Tribe/Main.php:986
8501
  msgid "Ask the site administrator to edit the %s slug"
8502
  msgstr ""
8503
 
@@ -8505,7 +8529,7 @@ msgstr ""
8505
  msgid "Thanks for Updating The Events Calendar"
8506
  msgstr "Gràcies per actualitzar The Events Calendar"
8507
 
8508
- #: src/Tribe/Main.php:846 src/Tribe/Main.php:848
8509
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
8510
  msgid "Welcome to The Events Calendar"
8511
  msgstr "Benvingut/da a The Events Calendar"
11
  "Language: ca\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
14
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:337
15
+ msgid "The event tag ID or name"
16
+ msgstr ""
17
+
18
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:331
19
+ msgid "The event category ID or name"
20
+ msgstr ""
21
+
22
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:508
23
+ msgid "Events should be filtered by their post_parent being the specified one."
24
+ msgstr ""
25
+
26
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:498
27
+ msgid "Include events with one of the post IDs specified in the array of CSV list, date filters will be ignored."
28
+ msgstr ""
29
+
30
+ #: src/Tribe/Aggregator/Record/Async_Queue.php:348
31
+ #: src/Tribe/Aggregator/Record/Void_Queue.php:122
32
+ msgid "Unable to process this import - a breakage or conflict may have resulted in the import halting."
33
+ msgstr ""
34
+
35
+ #: common/src/Tribe/Plugins_API.php:37
36
+ msgid "Event Aggregator adds massive import functionality to your calendar. Before you know it, you’ll be importing events from Meetup, Eventbrite, Google Calendar, iCalendar, and other URLs with ease. Schedule imports to run automatically behind-the-scenes or run them manually when you’re ready. Go ahead and import to your heart’s content—Event Aggregator hooks you up with a central dashboard in the admin to make managing your imports a breeze."
37
+ msgstr ""
38
+
39
  #: src/views/month/single-day.php:57
40
  msgid "%s for %s"
41
  msgstr ""
208
  msgid "Do more with Eventbrite Tickets"
209
  msgstr ""
210
 
211
+ #: src/Tribe/Main.php:4114
212
  msgid "Search for %s by month. Please use the format %s."
213
  msgstr ""
214
 
215
+ #: src/Tribe/Main.php:4109
216
  msgid "Search for %s by Date. Please use the format %s."
217
  msgstr ""
218
 
219
+ #: src/Tribe/Main.php:4077 src/Tribe/Main.php:4078
220
  msgid "2 digit month dot 4 digit year"
221
  msgstr ""
222
 
223
+ #: src/Tribe/Main.php:4076
224
  msgid "4 digit year dot 2 digit month"
225
  msgstr ""
226
 
227
+ #: src/Tribe/Main.php:4075
228
  msgid "2 digit month hyphen 4 digit year"
229
  msgstr ""
230
 
231
+ #: src/Tribe/Main.php:4072 src/Tribe/Main.php:4073 src/Tribe/Main.php:4074
232
  msgid "1 digit month hyphen 4 digit year"
233
  msgstr ""
234
 
235
+ #: src/Tribe/Main.php:4069 src/Tribe/Main.php:4071
236
  msgid "2 digit month slash 4 digit year"
237
  msgstr ""
238
 
239
+ #: src/Tribe/Main.php:4068 src/Tribe/Main.php:4070
240
  msgid "1 digit month slash 4 digit year"
241
  msgstr ""
242
 
243
+ #: src/Tribe/Main.php:4067
244
  msgid "4 digit year hyphen 2 digit month"
245
  msgstr ""
246
 
247
+ #: src/Tribe/Main.php:4063
248
  msgid "2 digit day dot 2 digit month dot 4 digit year"
249
  msgstr ""
250
 
251
+ #: src/Tribe/Main.php:4062
252
  msgid "2 digit month dot 2 digit day dot 4 digit year"
253
  msgstr ""
254
 
255
+ #: src/Tribe/Main.php:4061
256
  msgid "4 digit year dot 2 digit month dot 2 digit day"
257
  msgstr ""
258
 
259
+ #: src/Tribe/Main.php:4060
260
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
261
  msgstr ""
262
 
263
+ #: src/Tribe/Main.php:4059
264
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
265
  msgstr ""
266
 
267
+ #: src/Tribe/Main.php:4058
268
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
269
  msgstr ""
270
 
271
+ #: src/Tribe/Main.php:4057
272
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
273
  msgstr ""
274
 
275
+ #: src/Tribe/Main.php:4056
276
  msgid "2 digit day slash 2 digit month slash 4 digit year"
277
  msgstr ""
278
 
279
+ #: src/Tribe/Main.php:4055
280
  msgid "1 digit day slash 1 digit month slash 4 digit year"
281
  msgstr ""
282
 
283
+ #: src/Tribe/Main.php:4054
284
  msgid "2 digit month slash 2 digit day slash 4 digit year"
285
  msgstr ""
286
 
287
+ #: src/Tribe/Main.php:4053
288
  msgid "1 digit month slash 1 digit day slash 4 digit year"
289
  msgstr ""
290
 
291
+ #: src/Tribe/Main.php:4052
292
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
293
  msgstr ""
294
 
295
+ #: src/Tribe/Main.php:4031
296
  msgid "Search for %s by Keyword."
297
  msgstr ""
298
 
520
  msgstr ""
521
 
522
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
523
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:385
524
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
525
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
526
  msgid "The requested page was not found."
534
  msgid "one week"
535
  msgstr ""
536
 
537
+ #: src/Tribe/Aggregator/Record/List_Table.php:577
538
  msgctxt "when the retry will happen, a date"
539
  msgid "retrying at %s"
540
  msgstr ""
541
 
542
+ #: src/Tribe/Aggregator/Record/List_Table.php:574
543
  msgctxt "in human readable time"
544
  msgid "retrying in about %s"
545
  msgstr ""
621
  msgstr ""
622
 
623
  #: common/src/Tribe/Plugins_API.php:71
624
+ msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Guest check in is easy with QR codes and our custom scanning app."
625
  msgstr ""
626
 
627
  #: src/admin-views/tribe-options-general.php:31
653
  msgid "The event with the specified ID is not accessible."
654
  msgstr ""
655
 
656
+ #: src/Tribe/Main.php:1812
657
  msgid "%1$s published. %2$sView %3$s"
658
  msgstr ""
659
 
1004
  msgid "the event post name"
1005
  msgstr ""
1006
 
1007
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:354
1008
  msgid "The event organizer IDs or data"
1009
  msgstr ""
1010
 
1011
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:346
1012
  msgid "The event venue ID or data"
1013
  msgstr ""
1014
 
1251
  msgid "Returns all the organizers matching the search criteria"
1252
  msgstr ""
1253
 
1254
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:494
1255
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1256
  msgstr ""
1257
 
1258
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:488
1259
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1260
  msgstr ""
1261
 
1262
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:482
1263
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1264
  msgstr ""
1265
 
1266
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:477
1267
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1268
  msgid "The event post status"
1269
  msgstr ""
1270
 
1271
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:470
1272
  msgid "Events should be filtered by their featured status"
1273
  msgstr ""
1274
 
1275
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:462
1276
  msgid "Events should be assigned one of the specified organizer IDs"
1277
  msgstr ""
1278
 
1279
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1280
  msgid "Events should be assigned one of the specified venue IDs"
1281
  msgstr ""
1282
 
1370
  msgid "The event status"
1371
  msgstr ""
1372
 
1373
+ #: src/Tribe/Linked_Posts.php:1254
1374
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1375
  msgid "Create or Find %s"
1376
  msgstr ""
1377
 
1378
+ #: src/Tribe/Linked_Posts.php:1245
1379
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1380
  msgid "Find %1$s %2$s"
1381
  msgstr ""
1382
 
1383
+ #: src/Tribe/Linked_Posts.php:1236
1384
  msgid "Find a Venue"
1385
  msgstr ""
1386
 
1387
+ #: src/Tribe/Linked_Posts.php:1235
1388
  msgid "Create or Find a Venue"
1389
  msgstr ""
1390
 
1391
+ #: src/Tribe/Linked_Posts.php:1228
1392
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1393
  msgid "Create or Find %s"
1394
  msgstr ""
1395
 
1396
+ #: src/Tribe/Linked_Posts.php:1219
1397
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1398
  msgid "Find %1$s %2$s"
1399
  msgstr ""
1400
 
1401
+ #: src/Tribe/Linked_Posts.php:1208
1402
  msgid "Find an Organizer"
1403
  msgstr ""
1404
 
1405
+ #: src/Tribe/Linked_Posts.php:1207
1406
  msgid "Create or Find an Organizer"
1407
  msgstr ""
1408
 
1409
+ #: src/Tribe/Linked_Posts.php:1200
1410
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1411
  msgid "Create or Find %s"
1412
  msgstr ""
1413
 
1414
+ #: src/Tribe/Linked_Posts.php:1191
1415
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1416
  msgid "Find %1$s %2$s"
1417
  msgstr ""
1507
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1508
  msgstr ""
1509
 
1510
+ #: src/Tribe/Main.php:996
1511
  msgid "edit Events settings."
1512
  msgstr ""
1513
 
1514
+ #: src/Tribe/Main.php:987
1515
  msgid "Edit the %s slug"
1516
  msgstr ""
1517
 
1518
+ #: src/Tribe/Linked_Posts.php:1177
1519
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1520
  msgid "an"
1521
  msgstr ""
1522
 
1523
+ #: src/Tribe/Linked_Posts.php:1170
1524
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1525
  msgid "a"
1526
  msgstr ""
1562
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1563
  msgstr ""
1564
 
 
 
 
 
1565
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1566
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1567
  msgstr ""
1606
  msgid "The event WordPress post ID"
1607
  msgstr ""
1608
 
1609
+ #: src/Tribe/Aggregator/Record/Abstract.php:363
1610
  msgid "Something went wrong while inserting the record in the database."
1611
  msgstr ""
1612
 
1624
  msgid "Please refresh the page and try your request again."
1625
  msgstr ""
1626
 
1627
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:29
1628
  msgid "The image WordPress post ID"
1629
  msgstr ""
1630
 
1684
  msgid "The event last modification date in UTC time"
1685
  msgstr ""
1686
 
1687
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:419
1688
  msgid "Events should start after the specified date"
1689
  msgstr ""
1690
 
1691
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:426
1692
  msgid "Events should start before the specified date"
1693
  msgstr ""
1694
 
1724
  msgid "the event post ID"
1725
  msgstr ""
1726
 
1727
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:432
1728
  msgid "Events should contain the specified string in the title or description"
1729
  msgstr ""
1730
 
2020
  msgstr ""
2021
 
2022
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2023
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:404
2024
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2025
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2026
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2027
  msgid "The archive page to return"
2028
  msgstr ""
2029
 
2030
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:412
2031
  msgid "The number of events to return on each page"
2032
  msgstr ""
2033
 
2034
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
2035
  msgid "Events should be assigned one of the specified categories slugs or IDs"
2036
  msgstr ""
2037
 
2038
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:446
2039
  msgid "Events should be assigned one of the specified tags slugs or IDs"
2040
  msgstr ""
2041
 
2042
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:374
2043
  msgid "Returns all the upcoming events matching the search criteria"
2044
  msgstr ""
2045
 
2046
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:36
2047
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:382
2048
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:64
2049
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:53
2050
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:61
2259
  msgid "three months"
2260
  msgstr ""
2261
 
2262
+ #: src/Tribe/Aggregator/Tabs/New.php:385
2263
  msgid "%1$d new event tag was created."
2264
  msgid_plural "%1$d new event tags were created."
2265
  msgstr[0] ""
2266
  msgstr[1] ""
2267
 
2268
+ #: src/Tribe/Aggregator/Tabs/New.php:389
2269
  msgid "View your event tags"
2270
  msgstr ""
2271
 
2324
  msgid "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2325
  msgstr ""
2326
 
2327
+ #: src/Tribe/Main.php:763
2328
  msgctxt "all events slug"
2329
  msgid "all"
2330
  msgstr ""
2365
  msgid "The WordPress term ID"
2366
  msgstr ""
2367
 
2368
+ #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:37
2369
  msgid "The link to the image in the specified size on the site"
2370
  msgstr ""
2371
 
2381
  msgid "The image width in pixels in the specified size"
2382
  msgstr ""
2383
 
2384
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:45
2385
  msgid "The details about each size available for the image"
2386
  msgstr ""
2387
 
2388
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:41
2389
  msgid "The image natural height in pixels"
2390
  msgstr ""
2391
 
2392
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:37
2393
  msgid "The image natural width in pixels"
2394
  msgstr ""
2395
 
2396
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:33
2397
  msgid "The image file extension"
2398
  msgstr ""
2399
 
2401
  msgid "The venue WordPress post ID"
2402
  msgstr ""
2403
 
2404
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:25
2405
  msgid "The URL to the full size version of the image"
2406
  msgstr ""
2407
 
2441
  msgid "The cost currency symbol"
2442
  msgstr ""
2443
 
2444
+ #: src/Tribe/Main.php:4035
2445
  msgid "Keyword"
2446
  msgstr ""
2447
 
2516
  msgid "Export Events"
2517
  msgstr ""
2518
 
2519
+ #: src/Tribe/Main.php:762
2520
  msgctxt "featured events slug"
2521
  msgid "featured"
2522
  msgstr ""
2523
 
2524
+ #: src/Tribe/Linked_Posts.php:1133
2525
  msgid "Create: <b><%= term %></b>"
2526
  msgstr ""
2527
 
2670
  msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2671
  msgstr ""
2672
 
2673
+ #: src/Tribe/Assets.php:685 src/deprecated/Tribe__Events__Asset__Dynamic.php:77
2674
  msgid "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2675
  msgstr ""
2676
 
2677
+ #: src/Tribe/Assets.php:684 src/deprecated/Tribe__Events__Asset__Dynamic.php:76
2678
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2679
  msgstr ""
2680
 
2681
+ #: src/Tribe/Assets.php:683 src/deprecated/Tribe__Events__Asset__Dynamic.php:75
2682
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2683
  msgstr ""
2684
 
2685
+ #: src/Tribe/Assets.php:682 src/deprecated/Tribe__Events__Asset__Dynamic.php:74
2686
  msgid "This event is all day on %%startdatewithyear%%."
2687
  msgstr ""
2688
 
2689
+ #: src/Tribe/Assets.php:681 src/deprecated/Tribe__Events__Asset__Dynamic.php:73
2690
  msgid "This event is at %%starttime%% on %%startdatewithyear%%."
2691
  msgstr ""
2692
 
2693
+ #: src/Tribe/Assets.php:680 src/deprecated/Tribe__Events__Asset__Dynamic.php:72
2694
  msgid "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2695
  msgstr ""
2696
 
2697
+ #: src/Tribe/Assets.php:677 src/deprecated/Tribe__Events__Asset__Dynamic.php:69
2698
  msgid "Dec"
2699
  msgstr ""
2700
 
2701
+ #: src/Tribe/Assets.php:676 src/deprecated/Tribe__Events__Asset__Dynamic.php:68
2702
  msgid "Nov"
2703
  msgstr ""
2704
 
2705
+ #: src/Tribe/Assets.php:675 src/deprecated/Tribe__Events__Asset__Dynamic.php:67
2706
  msgid "Oct"
2707
  msgstr ""
2708
 
2709
+ #: src/Tribe/Assets.php:674 src/deprecated/Tribe__Events__Asset__Dynamic.php:66
2710
  msgid "Sep"
2711
  msgstr ""
2712
 
2713
+ #: src/Tribe/Assets.php:673 src/deprecated/Tribe__Events__Asset__Dynamic.php:65
2714
  msgid "Aug"
2715
  msgstr ""
2716
 
2717
+ #: src/Tribe/Assets.php:672 src/deprecated/Tribe__Events__Asset__Dynamic.php:64
2718
  msgid "Jul"
2719
  msgstr ""
2720
 
2721
+ #: src/Tribe/Assets.php:671 src/deprecated/Tribe__Events__Asset__Dynamic.php:63
2722
  msgid "Jun"
2723
  msgstr ""
2724
 
2725
+ #: src/Tribe/Assets.php:669 src/deprecated/Tribe__Events__Asset__Dynamic.php:61
2726
  msgid "Apr"
2727
  msgstr ""
2728
 
2729
+ #: src/Tribe/Assets.php:668 src/deprecated/Tribe__Events__Asset__Dynamic.php:60
2730
  msgid "Mar"
2731
  msgstr ""
2732
 
2733
+ #: src/Tribe/Assets.php:667 src/deprecated/Tribe__Events__Asset__Dynamic.php:59
2734
  msgid "Feb"
2735
  msgstr ""
2736
 
2737
+ #: src/Tribe/Assets.php:666 src/deprecated/Tribe__Events__Asset__Dynamic.php:58
2738
  msgid "Jan"
2739
  msgstr ""
2740
 
2741
+ #: src/Tribe/Assets.php:663 src/deprecated/Tribe__Events__Asset__Dynamic.php:55
2742
  msgid "December"
2743
  msgstr "desembre"
2744
 
2745
+ #: src/Tribe/Assets.php:662 src/deprecated/Tribe__Events__Asset__Dynamic.php:54
2746
  msgid "November"
2747
  msgstr "novembre"
2748
 
2749
+ #: src/Tribe/Assets.php:661 src/deprecated/Tribe__Events__Asset__Dynamic.php:53
2750
  msgid "October"
2751
  msgstr "octubre"
2752
 
2753
+ #: src/Tribe/Assets.php:660 src/deprecated/Tribe__Events__Asset__Dynamic.php:52
2754
  msgid "September"
2755
  msgstr "setembre"
2756
 
2757
+ #: src/Tribe/Assets.php:659 src/deprecated/Tribe__Events__Asset__Dynamic.php:51
2758
  msgid "August"
2759
  msgstr "agost"
2760
 
2761
+ #: src/Tribe/Assets.php:658 src/deprecated/Tribe__Events__Asset__Dynamic.php:50
2762
  msgid "July"
2763
  msgstr "july"
2764
 
2765
+ #: src/Tribe/Assets.php:657 src/deprecated/Tribe__Events__Asset__Dynamic.php:49
2766
  msgid "June"
2767
  msgstr "juny"
2768
 
2769
+ #: src/Tribe/Assets.php:656 src/Tribe/Assets.php:670
2770
+ #: src/deprecated/Tribe__Events__Asset__Dynamic.php:48
2771
+ #: src/deprecated/Tribe__Events__Asset__Dynamic.php:62
2772
  msgid "May"
2773
  msgstr "maig"
2774
 
2775
+ #: src/Tribe/Assets.php:655 src/deprecated/Tribe__Events__Asset__Dynamic.php:47
2776
  msgid "April"
2777
  msgstr "abril"
2778
 
2779
+ #: src/Tribe/Assets.php:654 src/deprecated/Tribe__Events__Asset__Dynamic.php:46
2780
  msgid "March"
2781
  msgstr "març"
2782
 
2783
+ #: src/Tribe/Assets.php:653 src/deprecated/Tribe__Events__Asset__Dynamic.php:45
2784
  msgid "February"
2785
  msgstr "febrer"
2786
 
2787
+ #: src/Tribe/Assets.php:652 src/deprecated/Tribe__Events__Asset__Dynamic.php:44
2788
  msgid "January"
2789
  msgstr "gener"
2790
 
2791
+ #: src/Tribe/Assets.php:649 src/deprecated/Tribe__Events__Asset__Dynamic.php:41
2792
  msgid "Sat"
2793
  msgstr ""
2794
 
2795
+ #: src/Tribe/Assets.php:648 src/deprecated/Tribe__Events__Asset__Dynamic.php:40
2796
  msgid "Fri"
2797
  msgstr ""
2798
 
2799
+ #: src/Tribe/Assets.php:647 src/deprecated/Tribe__Events__Asset__Dynamic.php:39
2800
  msgid "Thu"
2801
  msgstr ""
2802
 
2803
+ #: src/Tribe/Assets.php:646 src/deprecated/Tribe__Events__Asset__Dynamic.php:38
2804
  msgid "Wed"
2805
  msgstr ""
2806
 
2807
+ #: src/Tribe/Assets.php:645 src/deprecated/Tribe__Events__Asset__Dynamic.php:37
2808
  msgid "Tue"
2809
  msgstr ""
2810
 
2811
+ #: src/Tribe/Assets.php:644 src/deprecated/Tribe__Events__Asset__Dynamic.php:36
2812
  msgid "Mon"
2813
  msgstr ""
2814
 
2815
+ #: src/Tribe/Assets.php:643 src/deprecated/Tribe__Events__Asset__Dynamic.php:35
2816
  msgid "Sun"
2817
  msgstr ""
2818
 
2819
+ #: src/Tribe/Assets.php:640 src/deprecated/Tribe__Events__Asset__Dynamic.php:32
2820
  msgid "Saturday"
2821
  msgstr "dissabte"
2822
 
2823
+ #: src/Tribe/Assets.php:639 src/deprecated/Tribe__Events__Asset__Dynamic.php:31
2824
  msgid "Friday"
2825
  msgstr "divendres"
2826
 
2827
+ #: src/Tribe/Assets.php:638 src/deprecated/Tribe__Events__Asset__Dynamic.php:30
2828
  msgid "Thursday"
2829
  msgstr "dijous"
2830
 
2831
+ #: src/Tribe/Assets.php:637 src/deprecated/Tribe__Events__Asset__Dynamic.php:29
2832
  msgid "Wednesday"
2833
  msgstr "dimecres"
2834
 
2835
+ #: src/Tribe/Assets.php:636 src/deprecated/Tribe__Events__Asset__Dynamic.php:28
2836
  msgid "Tuesday"
2837
  msgstr "dimarts"
2838
 
2839
+ #: src/Tribe/Assets.php:635 src/deprecated/Tribe__Events__Asset__Dynamic.php:27
2840
  msgid "Monday"
2841
  msgstr "dilluns"
2842
 
2843
+ #: src/Tribe/Assets.php:634 src/deprecated/Tribe__Events__Asset__Dynamic.php:26
2844
  msgid "Sunday"
2845
  msgstr "diumenge"
2846
 
2921
  msgid "Unknown service message"
2922
  msgstr ""
2923
 
2924
+ #: src/Tribe/Aggregator/Record/List_Table.php:540
2925
  msgid "Unknown"
2926
  msgstr ""
2927
 
2928
+ #: src/Tribe/Aggregator/Record/Abstract.php:1206
2929
  msgid "When this import was last scheduled to run, the daily limit for your Event Aggregator license had already been reached."
2930
  msgstr ""
2931
 
3662
  msgid "mi"
3663
  msgstr ""
3664
 
3665
+ #: src/Tribe/Main.php:982
3666
  msgid "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3667
  msgstr ""
3668
 
3887
  msgid "Scheduled Imports"
3888
  msgstr ""
3889
 
3890
+ #: src/Tribe/Aggregator/Tabs/New.php:615
3891
  msgid "Renew your Event Aggregator license"
3892
  msgstr ""
3893
 
3894
+ #: src/Tribe/Aggregator/Tabs/New.php:612
3895
  msgid "Renew your license in order to import events from Facebook, iCalendar, Google, or Meetup."
3896
  msgstr ""
3897
 
3898
+ #: src/Tribe/Aggregator/Tabs/New.php:611
3899
  msgid "Your Event Aggregator license is expired."
3900
  msgstr ""
3901
 
3902
+ #: src/Tribe/Aggregator/Tabs/New.php:563
3903
  msgid "Learn More"
3904
  msgstr ""
3905
 
3906
+ #: src/Tribe/Aggregator/Tabs/New.php:558 src/Tribe/Aggregator/Tabs/New.php:565
3907
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:19
3908
  msgid "opens in a new window"
3909
  msgstr ""
3910
 
3911
+ #: src/Tribe/Aggregator/Tabs/New.php:556
3912
  msgid "Buy It Now"
3913
  msgstr ""
3914
 
3915
+ #: src/Tribe/Aggregator/Tabs/New.php:553
3916
  msgid "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3917
  msgstr ""
3918
 
3919
+ #: src/Tribe/Aggregator/Tabs/New.php:551
3920
  msgid "Import Using Event Aggregator"
3921
  msgstr ""
3922
 
3923
+ #: src/Tribe/Aggregator/Tabs/New.php:464
3924
  msgid "Unable to save credentials"
3925
  msgstr ""
3926
 
3927
+ #: src/Tribe/Aggregator/Tabs/New.php:457
3928
  msgid "Credentials have been saved"
3929
  msgstr ""
3930
 
3931
+ #: src/Tribe/Aggregator/Tabs/New.php:448
3932
  msgid "The Meetup API key is required."
3933
  msgstr ""
3934
 
3935
+ #: src/Tribe/Aggregator/Tabs/New.php:439
3936
  msgid "Invalid credential save nonce"
3937
  msgstr ""
3938
 
3939
+ #: src/Tribe/Aggregator/Tabs/New.php:429
3940
  msgid "Invalid credential save request"
3941
  msgstr ""
3942
 
3943
+ #: src/Tribe/Aggregator/Tabs/New.php:417
3944
  msgid "View your scheduled imports."
3945
  msgstr ""
3946
 
3947
+ #: src/Tribe/Aggregator/Tabs/New.php:413
3948
  msgid "The next import is scheduled for %1$s."
3949
  msgstr ""
3950
 
3951
+ #: src/Tribe/Aggregator/Tabs/New.php:406
3952
  msgctxt "separator between date and time"
3953
  msgid " at "
3954
  msgstr ""
3955
 
3956
+ #: src/Tribe/Aggregator/Tabs/New.php:402
3957
  msgid "Your scheduled import was saved and the first import is complete!"
3958
  msgstr ""
3959
 
3960
+ #: src/Tribe/Aggregator/Tabs/New.php:377
3961
  msgid "View your event categories"
3962
  msgstr ""
3963
 
3964
+ #: src/Tribe/Aggregator/Tabs/New.php:373
3965
  msgid "%1$d new event category was created."
3966
  msgid_plural "%1$d new event categories were created."
3967
  msgstr[0] ""
3968
  msgstr[1] ""
3969
 
3970
+ #: src/Tribe/Aggregator/Tabs/New.php:364
3971
  msgid "View your event organizers"
3972
  msgstr ""
3973
 
3974
+ #: src/Tribe/Aggregator/Tabs/New.php:360
3975
  msgid "%1$d new organizer was imported."
3976
  msgid_plural "%1$d new organizers were imported."
3977
  msgstr[0] ""
3978
  msgstr[1] ""
3979
 
3980
+ #: src/Tribe/Aggregator/Tabs/New.php:352
3981
  msgid "View your event venues"
3982
  msgstr ""
3983
 
3984
+ #: src/Tribe/Aggregator/Tabs/New.php:348
3985
  msgid "%1$d new venue was imported."
3986
  msgid_plural "%1$d new venues were imported."
3987
  msgstr[0] ""
3988
  msgstr[1] ""
3989
 
3990
+ #: src/Tribe/Aggregator/Tabs/New.php:338
3991
  msgid "View all %s"
3992
  msgstr "Veure tots %s "
3993
 
3994
+ #: src/Tribe/Aggregator/Tabs/New.php:330
3995
  msgid "No %1$s were imported or updated."
3996
  msgstr ""
3997
 
3998
+ #: src/Tribe/Aggregator/Tabs/New.php:323
3999
  msgid "%1$d new image was imported."
4000
  msgid_plural "%1$d new images were imported."
4001
  msgstr[0] ""
4002
  msgstr[1] ""
4003
 
4004
+ #: src/Tribe/Aggregator/Tabs/New.php:314
4005
  msgid "%1$d already-imported %2$s was skipped."
4006
  msgid_plural "%1$d already-imported %2$s were skipped."
4007
  msgstr[0] ""
4008
  msgstr[1] ""
4009
 
4010
+ #: src/Tribe/Aggregator/Tabs/New.php:303
4011
  msgid "%1$d existing %2$s was updated."
4012
  msgid_plural "%1$d existing %2$s were updated."
4013
  msgstr[0] ""
4014
  msgstr[1] ""
4015
 
4016
+ #: src/Tribe/Aggregator/Tabs/New.php:291
4017
  msgid "%1$d new %2$s was imported."
4018
  msgid_plural "%1$d new %2$s were imported."
4019
  msgstr[0] ""
4277
  msgid "Events Aggregator Record"
4278
  msgstr ""
4279
 
4280
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:183
4281
  msgid "Unable to continue inserting data. Please reload this page to continue/try again."
4282
  msgstr ""
4283
 
4297
  msgid "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4298
  msgstr ""
4299
 
4300
+ #: src/Tribe/Aggregator/Record/Queue_Processor.php:233
4301
  msgid "Could not process queue for Import Record %1$d: %2$s"
4302
  msgstr ""
4303
 
4304
+ #: src/Tribe/Aggregator/Record/List_Table.php:664
4305
  msgid "Select %s"
4306
  msgstr ""
4307
 
4308
+ #: src/Tribe/Aggregator/Record/List_Table.php:629
4309
+ #: src/Tribe/Aggregator/Record/List_Table.php:638
4310
+ #: src/Tribe/Aggregator/Record/List_Table.php:646
4311
  msgid "updated"
4312
  msgstr ""
4313
 
4314
+ #: src/Tribe/Aggregator/Record/List_Table.php:627
4315
+ #: src/Tribe/Aggregator/Record/List_Table.php:635
4316
+ #: src/Tribe/Aggregator/Record/List_Table.php:643
4317
  msgid "new"
4318
  msgstr ""
4319
 
4320
+ #: src/Tribe/Aggregator/Record/List_Table.php:624
4321
  msgid "Latest Import:"
4322
  msgstr ""
4323
 
4324
+ #: src/Tribe/Aggregator/Record/List_Table.php:622
4325
  msgid "all time"
4326
  msgstr ""
4327
 
4328
+ #: src/Tribe/Aggregator/Record/List_Table.php:596
4329
  msgid "One Time"
4330
  msgstr ""
4331
 
4332
+ #: src/Tribe/Aggregator/Record/List_Table.php:593
4333
  msgid "Invalid Frequency"
4334
  msgstr ""
4335
 
4336
+ #: src/Tribe/Aggregator/Record/List_Table.php:563 src/Tribe/Aggregator.php:426
4337
  #: src/Tribe/Ignored_Events.php:357
4338
  #: src/admin-views/tribe-options-addons-api.php:36
4339
  msgctxt "in human readable time"
4340
  msgid "in about %s"
4341
  msgstr ""
4342
 
4343
+ #: src/Tribe/Aggregator/Record/List_Table.php:561 src/Tribe/Aggregator.php:424
4344
  #: src/Tribe/Ignored_Events.php:355
4345
  #: src/admin-views/tribe-options-addons-api.php:34
4346
  msgctxt "human readable time ago"
4347
  msgid "about %s ago"
4348
  msgstr ""
4349
 
4350
+ #: src/Tribe/Aggregator/Record/List_Table.php:513
4351
  msgid "Radius:"
4352
  msgstr ""
4353
 
4354
+ #: src/Tribe/Aggregator/Record/List_Table.php:496
4355
  msgid "Keywords:"
4356
  msgstr ""
4357
 
4358
+ #: src/Tribe/Aggregator/Record/List_Table.php:483
4359
  #: src/Tribe/Ignored_Events.php:337
4360
  msgctxt "record via origin"
4361
  msgid "via "
4362
  msgstr ""
4363
 
4364
+ #: src/Tribe/Aggregator/Record/List_Table.php:440
4365
  msgid "Import preview"
4366
  msgstr ""
4367
 
4368
+ #: src/Tribe/Aggregator/Record/List_Table.php:436
4369
  msgid "Import pending"
4370
  msgstr ""
4371
 
4372
+ #: src/Tribe/Aggregator/Record/List_Table.php:432
4373
  msgid "Import schedule"
4374
  msgstr ""
4375
 
4376
+ #: src/Tribe/Aggregator/Record/List_Table.php:420
4377
  msgid "Import failed"
4378
  msgstr ""
4379
 
4380
+ #: src/Tribe/Aggregator/Record/List_Table.php:416
4381
  msgid "Import completed"
4382
  msgstr ""
4383
 
4462
  msgid "Eventbrite"
4463
  msgstr ""
4464
 
4465
+ #: src/Tribe/Aggregator/Record/Abstract.php:1149
4466
  msgid "Deleted Attachment: %d"
4467
  msgstr ""
4468
 
4469
+ #: src/Tribe/Aggregator/Record/Abstract.php:497
4470
  msgid "Record: "
4471
  msgstr ""
4472
 
4501
  msgstr ""
4502
 
4503
  #: src/Tribe/Aggregator/Page.php:96
4504
+ #: src/Tribe/Aggregator/Record/List_Table.php:492
4505
  msgid "View Filters"
4506
  msgstr ""
4507
 
4859
  msgstr ""
4860
 
4861
  #: common/src/Tribe/PUE/Checker.php:961 common/src/Tribe/PUE/Notices.php:285
4862
+ #: src/Tribe/Aggregator/Record/Abstract.php:1164
4863
  msgid " (opens in a new window)"
4864
  msgstr ""
4865
 
5160
  msgid "No notable changes detected"
5161
  msgstr ""
5162
 
5163
+ #: src/Tribe/Main.php:2561
5164
  msgid " (View Full %1$s Description Here: %2$s)"
5165
  msgstr ""
5166
 
5208
  msgid "Keep the Core Plugin %sFREE%s!"
5209
  msgstr ""
5210
 
5211
+ #: src/Tribe/Template_Factory.php:231
5212
  msgid "No results were found for %1$s in or near %2$s."
5213
  msgstr ""
5214
 
5215
+ #: src/Tribe/Template_Factory.php:229
5216
  msgid "There were no results found for %s."
5217
  msgstr ""
5218
 
5219
+ #: src/Tribe/Template/Month.php:458
5220
  msgid "There were no results found for %s this month. Try searching next month."
5221
  msgstr ""
5222
 
5223
+ #: src/Tribe/Template/Day.php:154
5224
  msgid "No %1$s scheduled for %2$s. Please try another day."
5225
  msgstr ""
5226
 
5227
+ #: src/Tribe/Main.php:3855
5228
  msgid "Check out the %savailable add-ons%s."
5229
  msgstr ""
5230
 
5231
+ #: src/Tribe/Main.php:1922
5232
  msgid "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5233
  msgstr ""
5234
 
5235
+ #: src/Tribe/Main.php:1853 src/Tribe/Main.php:1873
5236
  msgid "%1$s scheduled for: %2$s."
5237
  msgstr ""
5238
 
5239
+ #: src/Tribe/Main.php:1834
5240
  msgid "%1$s draft updated. %2$sPreview %3$s"
5241
  msgstr ""
5242
 
5243
+ #: src/Tribe/Main.php:1825
5244
  msgid "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5245
  msgstr ""
5246
 
5247
+ #: src/Tribe/Main.php:1819
5248
  msgid "%1$s submitted. %2$sPreview %3$s"
5249
  msgstr ""
5250
 
5251
+ #: src/Tribe/Main.php:1801
5252
  msgid "%1$s updated. %2$sView %1$s%3$s"
5253
  msgstr ""
5254
 
5255
+ #: src/Tribe/Main.php:1476
5256
  msgid "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5257
  msgstr ""
5258
 
5259
+ #: src/Tribe/Main.php:1111
5260
  msgid "If you have a valid license for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5261
  msgstr ""
5262
 
5263
+ #: src/Tribe/Main.php:1110
5264
  msgid "post a thread"
5265
  msgstr ""
5266
 
5267
+ #: src/Tribe/Main.php:1106
5268
  msgid "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays."
5269
  msgstr ""
5270
 
5271
+ #: src/Tribe/Main.php:1102
5272
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5273
  msgstr ""
5274
 
5275
+ #: src/Tribe/Main.php:1101
5276
  msgid "open-source forum on WordPress.org"
5277
  msgstr ""
5278
 
5279
+ #: src/Tribe/Main.php:1097
5280
  msgid "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays"
5281
  msgstr ""
5282
 
5283
+ #: src/Tribe/Main.php:1096 src/Tribe/Main.php:1104
5284
  msgid "premium support on our website"
5285
  msgstr ""
5286
 
5287
+ #: src/Tribe/Main.php:1094
5288
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5289
  msgstr ""
5290
 
5291
+ #: src/Tribe/Main.php:1093
5292
  msgid "Events Tickets"
5293
  msgstr ""
5294
 
5295
+ #: src/Tribe/Main.php:1078
5296
  msgid "Customizing the Events plugins"
5297
  msgstr ""
5298
 
5299
+ #: src/Tribe/Main.php:1078
5300
  msgid "%s: Code and guides for customizing your calendar in useful and interesting ways."
5301
  msgstr ""
5302
 
5303
+ #: src/Tribe/Main.php:1076
5304
  msgid "Troubleshooting common problems"
5305
  msgstr ""
5306
 
5307
+ #: src/Tribe/Main.php:1076
5308
  msgid "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5309
  msgstr ""
5310
 
5311
+ #: src/Tribe/Main.php:1074
5312
  msgid "Using stylesheets and page templates"
5313
  msgstr ""
5314
 
5315
+ #: src/Tribe/Main.php:1074
5316
  msgid "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5317
  msgstr ""
5318
 
5319
+ #: src/Tribe/Main.php:1072
5320
  msgid "Themer’s Guide"
5321
  msgstr ""
5322
 
5323
+ #: src/Tribe/Main.php:1072
5324
  msgid "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5325
  msgstr ""
5326
 
5327
+ #: src/Tribe/Main.php:1070
5328
  msgid "Features overview"
5329
  msgstr ""
5330
 
5331
+ #: src/Tribe/Main.php:1070
5332
  msgid "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5333
  msgstr ""
5334
 
5335
+ #: src/Tribe/Main.php:1068
5336
  msgid "Settings overview"
5337
  msgstr ""
5338
 
5339
+ #: src/Tribe/Main.php:1068
5340
  msgid "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5341
  msgstr ""
5342
 
5343
+ #: src/Tribe/Main.php:1065
5344
  msgid "Support for The Events Calendar"
5345
  msgstr ""
5346
 
5347
+ #: src/Tribe/Main.php:1054
5348
  msgid "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5349
  msgstr ""
5350
 
5351
+ #: src/Tribe/Main.php:1052
5352
  msgid "New User Primer"
5353
  msgstr ""
5354
 
5371
  msgid "CSV Import Settings"
5372
  msgstr ""
5373
 
5374
+ #: src/deprecated/Tribe__Events__Asset__Bootstrap_Datepicker.php:27
5375
  msgid "Clear"
5376
  msgstr "Esborrar"
5377
 
5383
  msgid "Create New %s"
5384
  msgstr "Crea nou(s) %s"
5385
 
5386
+ #: src/Tribe/Organizer.php:375
5387
  msgid "Unnamed %s"
5388
  msgstr ""
5389
 
5571
  msgid "%s must be a positive number or percent."
5572
  msgstr ""
5573
 
5574
+ #: src/Tribe/Main.php:999
5575
  msgid "%1$s or %2$s"
5576
  msgstr ""
5577
 
5628
  msgid "Day Navigation"
5629
  msgstr "Navegació per dia"
5630
 
5631
+ #: src/Tribe/Aggregator/Tabs/New.php:400
5632
  msgid "Import complete!"
5633
  msgstr "Importació completada!"
5634
 
5870
  msgstr "Més..."
5871
 
5872
  #: common/src/Tribe/Admin/Help_Page.php:194 common/src/Tribe/Plugins_API.php:43
5873
+ #: src/Tribe/Main.php:1105
5874
  msgid "Events Calendar PRO"
5875
  msgstr ""
5876
 
6309
  msgid "%s Website"
6310
  msgstr "Web de l'%s"
6311
 
6312
+ #: src/Tribe/Aggregator/Record/List_Table.php:509
6313
  msgid "Location:"
6314
  msgstr ""
6315
 
7714
  msgid "Template overrides should be moved to the correct subdirectory: %s"
7715
  msgstr "Las plantilles sobreescrites han de moure's al subdirectori correcte: %s"
7716
 
7717
+ #: src/Tribe/Template_Factory.php:237
7718
  msgid "No previous %s "
7719
  msgstr "Cap %s anterior"
7720
 
7721
+ #: src/Tribe/Template_Factory.php:235 src/Tribe/Template_Factory.php:240
7722
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7723
  msgstr ""
7724
 
7725
+ #: src/Tribe/Template_Factory.php:233
7726
  msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7727
  msgstr ""
7728
 
7730
  msgid "This %s has passed."
7731
  msgstr "Aquest %s ja ha passat."
7732
 
7733
+ #: src/Tribe/Template/Month.php:955
7734
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7735
  msgstr "La data sol·licitada \"%s\" no era vàlida &ndash; es mostra el mes actual en el seu lloc"
7736
 
7737
+ #: src/Tribe/Template/Month.php:464 src/Tribe/Template_Factory.php:242
7738
  msgid "There were no results found."
7739
  msgstr "No s'ha trobat cap resultat."
7740
 
7741
+ #: src/Tribe/Template/Month.php:462
7742
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7743
  msgstr ""
7744
 
7745
+ #: src/Tribe/Template/Day.php:152
7746
  msgid "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7747
  msgstr ""
7748
 
7749
+ #: src/Tribe/Template/Day.php:118 src/Tribe/Template/Day.php:134
7750
  msgid "Ongoing"
7751
  msgstr "En marxa"
7752
 
7753
+ #: src/Tribe/Aggregator/Page.php:82 src/Tribe/Template/Day.php:115
7754
+ #: src/Tribe/Template/Day.php:131
7755
  msgid "All Day"
7756
  msgstr "Tot el dia"
7757
 
7846
  msgid "Error"
7847
  msgstr "Error"
7848
 
7849
+ #: src/Tribe/Main.php:4198
7850
  msgid "Once Every 30 Mins"
7851
  msgstr "Un cop cada 30 minuts"
7852
 
7853
+ #: src/Tribe/Main.php:4118
7854
  msgid "Day Of"
7855
  msgstr "Dia de"
7856
 
7857
+ #: src/Tribe/Main.php:4116
7858
  msgid "%s From"
7859
  msgstr "%s de"
7860
 
7861
+ #: src/Tribe/Main.php:4112
7862
  msgid "%s In"
7863
  msgstr "%s a"
7864
 
7865
+ #: src/Tribe/Main.php:4107 src/Tribe/Main.php:4132
7866
  #: src/admin-views/aggregator/origins/refine.php:7
7867
  msgid "Date"
7868
  msgstr "Data"
7869
 
7870
+ #: src/Tribe/Main.php:4034
7871
  msgid "Search"
7872
  msgstr "Buscar"
7873
 
7874
+ #: src/Tribe/Main.php:4008 src/admin-views/aggregator/fields/schedule.php:44
7875
  #: src/admin-views/aggregator/fields/schedule.php:62
7876
  msgid "Day"
7877
  msgstr "Dia"
7878
 
7879
+ #: src/Tribe/Main.php:3991
7880
  msgid "Month"
7881
  msgstr "Mes"
7882
 
7883
+ #: src/Tribe/Main.php:3973
7884
  msgid "List"
7885
  msgstr "Llista"
7886
 
7887
+ #: src/Tribe/Main.php:3957
7888
  msgid "Calendar"
7889
  msgstr "Calendari"
7890
 
7891
  #: common/src/Tribe/Settings.php:254
7892
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:89 src/Tribe/Main.php:3956
7893
  msgid "Settings"
7894
  msgstr "Configuració"
7895
 
7903
  msgid "Add %s"
7904
  msgstr "Afegir %s"
7905
 
7906
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:45 src/Tribe/Main.php:3907
7907
  msgid "View Calendar"
7908
  msgstr "Veure calendari"
7909
 
7911
  msgid "%s"
7912
  msgstr "%s"
7913
 
7914
+ #: src/Tribe/Main.php:3854
7915
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7916
  msgstr "Busques funcionalitats addicionals com ara esdeveniments recurrents, venda de tiquets, esdeveniments afegits pel públic, vistes addicionals i més?"
7917
 
7918
+ #: src/Tribe/Main.php:3849
7919
  msgid "Additional Functionality"
7920
  msgstr "Funcionalitats addicionals"
7921
 
7922
+ #: src/Tribe/Main.php:3804
7923
  msgid "News from Modern Tribe"
7924
  msgstr "Notícies de Modern Tribe"
7925
 
7926
+ #: src/Tribe/Main.php:3784
7927
  msgid "View All Add-Ons"
7928
  msgstr "Veure tots els complements"
7929
 
7930
+ #: src/Tribe/Main.php:3781
7931
  msgid "Support"
7932
  msgstr "Suport"
7933
 
7934
+ #: src/Tribe/Main.php:3429 src/Tribe/Main.php:3442
7935
  msgid "%s Information"
7936
  msgstr "Informació de %s"
7937
 
7938
+ #: src/Tribe/Main.php:3420
7939
  msgid "%s Options"
7940
  msgstr "Opcions d'%s"
7941
 
7942
+ #: src/Tribe/Main.php:3343 src/Tribe/Main.php:3378
7943
  #: src/functions/template-tags/day.php:157
7944
  #: src/functions/template-tags/day.php:178
7945
  msgid "Date out of range."
7946
  msgstr "Data fora de rang."
7947
 
7948
+ #: src/Tribe/Main.php:2170
7949
  msgid "all"
7950
  msgstr ""
7951
 
7952
+ #: src/Tribe/Main.php:2169 src/functions/template-tags/general.php:111
7953
  msgid "events"
7954
  msgstr ""
7955
 
7956
+ #: src/Tribe/Main.php:2168 src/functions/template-tags/general.php:79
7957
  msgid "event"
7958
  msgstr ""
7959
 
7960
+ #: src/Tribe/Main.php:2167
7961
  msgid "page"
7962
  msgstr ""
7963
 
7969
  msgid "Done"
7970
  msgstr "Fet"
7971
 
7972
+ #: common/src/Tribe/Main.php:272
7973
+ #: src/deprecated/Tribe__Events__Asset__Bootstrap_Datepicker.php:28
7974
  #: src/functions/template-tags/day.php:104
7975
  msgid "Today"
7976
  msgstr "Avui"
7983
  msgid "Next"
7984
  msgstr "Següent"
7985
 
7986
+ #: src/Tribe/Linked_Posts.php:1138
7987
  msgid "No saved %s exists."
7988
  msgstr "No existeix cap %s guardat."
7989
 
7990
+ #: src/Tribe/Linked_Posts.php:964
7991
  msgid "Available %s"
7992
  msgstr "%s disponibles"
7993
 
7994
+ #: src/Tribe/Linked_Posts.php:960
7995
  msgid "My %s"
7996
  msgstr "El meu %s"
7997
 
7998
+ #: src/Tribe/Main.php:1858 src/Tribe/Main.php:1878
7999
  msgid "%s draft updated."
8000
  msgstr "%s esborrany actualitzat."
8001
 
8002
+ #: src/Tribe/Main.php:1851 src/Tribe/Main.php:1871
8003
  msgid "%s submitted."
8004
  msgstr "%s enviat."
8005
 
8006
+ #: src/Tribe/Main.php:1849 src/Tribe/Main.php:1869
8007
  msgid "%s published."
8008
  msgstr "%s publicat."
8009
 
8010
  #. translators: %s: date and time of the revision
8011
+ #: src/Tribe/Main.php:1868
8012
  msgid "%s restored to revision from %s"
8013
  msgstr "%s restaurat a la revisió de %s"
8014
 
8015
  #. translators: Publish box date format, see http://php.net/date
8016
+ #: src/Tribe/Main.php:1828 src/Tribe/Main.php:1856 src/Tribe/Main.php:1876
8017
  msgid "M j, Y @ G:i"
8018
  msgstr "M j, Y @ G:i"
8019
 
8020
+ #: src/Tribe/Main.php:1817 src/Tribe/Main.php:1850 src/Tribe/Main.php:1870
8021
  msgid "%s saved."
8022
  msgstr "%s guardat."
8023
 
8024
  #. translators: %s: date and time of the revision
8025
+ #: src/Tribe/Main.php:1810 src/Tribe/Main.php:1848
8026
  msgid "%1$s restored to revision from %2$s"
8027
  msgstr "%1$s restaurat amb la revisió de %2$s"
8028
 
8029
+ #: src/Tribe/Main.php:1808 src/Tribe/Main.php:1843 src/Tribe/Main.php:1846
8030
+ #: src/Tribe/Main.php:1863 src/Tribe/Main.php:1866
8031
  msgid "%s updated."
8032
  msgstr "%s actualitzat."
8033
 
8034
+ #: src/Tribe/Main.php:1807 src/Tribe/Main.php:1845 src/Tribe/Main.php:1865
8035
  msgid "Custom field deleted."
8036
  msgstr "Camp personalitzat eliminat."
8037
 
8038
+ #: src/Tribe/Main.php:1806 src/Tribe/Main.php:1844 src/Tribe/Main.php:1864
8039
  msgid "Custom field updated."
8040
  msgstr "Camp personalitzat actualitzat."
8041
 
8042
+ #: src/Tribe/Main.php:1784
8043
  msgid "New %s Category Name"
8044
  msgstr "Nom de la nova categoria d'%s"
8045
 
8046
+ #: src/Tribe/Main.php:1783
8047
  msgid "Add New %s Category"
8048
  msgstr "Afegir nova categoria d'%s"
8049
 
8050
+ #: src/Tribe/Main.php:1782
8051
  msgid "Update %s Category"
8052
  msgstr "Actualitzar categoria d'%s"
8053
 
8054
+ #: src/Tribe/Main.php:1781
8055
  msgid "Edit %s Category"
8056
  msgstr "Editar categoria d'%s"
8057
 
8058
+ #: src/Tribe/Main.php:1780
8059
  msgid "Parent %s Category:"
8060
  msgstr "Categoria d'%s superior:"
8061
 
8062
+ #: src/Tribe/Main.php:1779
8063
  msgid "Parent %s Category"
8064
  msgstr "Categoria d'%s superior"
8065
 
8066
+ #: src/Tribe/Main.php:1778
8067
  msgid "All %s Categories"
8068
  msgstr "Totes les categories d'%s"
8069
 
8070
+ #: src/Tribe/Main.php:1777
8071
  msgid "Search %s Categories"
8072
  msgstr "Busca categories d'%s"
8073
 
8074
+ #: src/Tribe/Main.php:1776
8075
  msgid "%s Category"
8076
  msgstr "Categoria d'%s"
8077
 
8078
+ #: src/Tribe/Main.php:1766 src/Tribe/Organizer.php:98 src/Tribe/Venue.php:117
8079
  msgid "No %s found in Trash"
8080
  msgstr "No s'han trobat %s a la paperera"
8081
 
8082
+ #: src/Tribe/Main.php:1765 src/Tribe/Organizer.php:97 src/Tribe/Venue.php:116
8083
  msgid "No %s found"
8084
  msgstr "No s'han trobat %s"
8085
 
8086
+ #: src/Tribe/Main.php:1764 src/Tribe/Organizer.php:96 src/Tribe/Venue.php:115
8087
  msgid "Search %s"
8088
  msgstr "Buscar %s"
8089
 
8090
+ #: src/Tribe/Main.php:1763 src/Tribe/Organizer.php:95 src/Tribe/Venue.php:114
8091
  #: src/views/month/single-day.php:26
8092
  msgid "View %s"
8093
  msgstr "Veure %s"
8094
 
8095
+ #: src/Tribe/Main.php:1762 src/Tribe/Organizer.php:94 src/Tribe/Venue.php:113
8096
  msgid "New %s"
8097
  msgstr "Nou %s"
8098
 
8099
+ #: src/Tribe/Main.php:1760 src/Tribe/Main.php:1892 src/Tribe/Main.php:1893
8100
  #: src/Tribe/Organizer.php:92 src/Tribe/Venue.php:111
8101
  msgid "Add New %s"
8102
  msgstr "Afegir nou %s"
8103
 
8104
+ #: src/Tribe/Main.php:1759 src/Tribe/Organizer.php:91 src/Tribe/Venue.php:110
8105
  msgid "Add New"
8106
  msgstr "Afegir nou"
8107
 
8108
+ #: src/Tribe/Main.php:1726 src/Tribe/Main.php:2165
8109
  msgid "tag"
8110
  msgstr "etiqueta"
8111
 
8112
+ #: src/Tribe/Main.php:1712 src/Tribe/Main.php:2166
8113
  msgid "category"
8114
  msgstr "categoria"
8115
 
8116
+ #: src/Tribe/Main.php:1464
8117
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8118
  msgstr "Ho sentim, The Events Calendar requereix PHP %s o superior. Parla amb el teu proveïdor d'allotjament web per que instal·li una versió de PHP superior."
8119
 
8120
+ #: src/Tribe/Main.php:1461
8121
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8122
  msgstr "Ho sentim, The Events Calendar requereix WordPress %s o superior. Si us plau, actualitza la teva instal·lació de WordPress."
8123
 
8135
  msgid "Display"
8136
  msgstr "Visualització"
8137
 
8138
+ #: src/Tribe/Main.php:1308
8139
  msgid "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8140
  msgstr ""
8141
 
8142
+ #: src/Tribe/Main.php:1296
8143
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8144
  msgstr "La teva versió de The Events Calendar no està al dia amb un dels teus complements. Si us plau, %sactualitza-la.%s"
8145
 
8146
+ #: src/Tribe/Main.php:786
8147
  msgid "Initializing Tribe Events on %s"
8148
  msgstr "Inicialitzant Tribe Events a %s"
8149
 
8150
+ #: src/Tribe/Main.php:761
8151
  msgid "today"
8152
  msgstr "avui"
8153
 
8154
+ #: src/Tribe/Main.php:760
8155
  msgid "day"
8156
  msgstr "dia"
8157
 
8158
+ #: src/Tribe/Main.php:759
8159
  msgid "past"
8160
  msgstr "passats"
8161
 
8162
+ #: src/Tribe/Main.php:758
8163
  msgid "upcoming"
8164
  msgstr "pròxims"
8165
 
8166
+ #: src/Tribe/Main.php:757
8167
  msgid "list"
8168
  msgstr "llista"
8169
 
8170
+ #: src/Tribe/Main.php:756
8171
  msgid "month"
8172
  msgstr "mes"
8173
 
8174
+ #. #-#-#-#-# the-events-calendar-code.pot (The Events Calendar 4.6.22.1)
8175
  #. #-#-#-#-#
8176
  #. Plugin Name of the plugin/theme
8177
  #: common/src/Tribe/Admin/Help_Page.php:59 common/src/Tribe/Customizer.php:569
8178
+ #: common/src/Tribe/Plugins_API.php:25 src/Tribe/Main.php:749
8179
+ #: src/Tribe/Main.php:1092 src/Tribe/Privacy.php:29
8180
  #: src/functions/template-tags/general.php:1345
8181
  msgid "The Events Calendar"
8182
  msgstr "The Events Calendar"
8183
 
8184
+ #: src/Tribe/Main.php:1162 src/admin-views/aggregator/tabs/import-form.php:185
8185
  #: src/admin-views/aggregator/tabs/import-form.php:197
8186
  #: src/functions/template-tags/general.php:63
8187
  msgid "Event"
8188
  msgstr "Esdeveniment"
8189
 
8190
  #: common/src/Tribe/Settings.php:177 common/src/Tribe/Settings.php:241
8191
+ #: common/src/Tribe/Settings.php:242 src/Tribe/Main.php:1154
8192
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:207
8193
  #: src/functions/template-tags/general.php:95
8194
  msgid "Events"
8195
  msgstr "Esdeveniments"
8196
 
8197
+ #: src/Tribe/Organizer.php:157 src/functions/template-tags/organizer.php:112
8198
  msgid "Organizer"
8199
  msgstr "Organitzador"
8200
 
8201
  #: src/Tribe/Organizer.php:171
8202
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:206
8203
+ #: src/functions/template-tags/organizer.php:123
8204
  msgid "Organizers"
8205
  msgstr "Organitzadors"
8206
 
8464
  msgid "End:"
8465
  msgstr "Finalització:"
8466
 
8467
+ #: src/Tribe/Aggregator/Record/List_Table.php:505
8468
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
8469
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
8470
  #: src/views/modules/meta/details.php:66 src/views/modules/meta/details.php:91
8483
  msgid "Start Date"
8484
  msgstr "Data d'inici"
8485
 
8486
+ #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1775
8487
  msgid "%s Categories"
8488
  msgstr "Categories d'%s"
8489
 
8494
  #: src/Tribe/Admin/Timezone_Updater.php:87
8495
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
8496
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:100
8497
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:210
8498
  msgid "%d%% complete"
8499
  msgstr ""
8500
 
8507
  msgstr ""
8508
 
8509
  #: src/Tribe/Admin/Bar/Default_Configurator.php:62
8510
+ #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:211 src/Tribe/Main.php:1761
8511
+ #: src/Tribe/Main.php:4843 src/Tribe/Main.php:4890 src/Tribe/Organizer.php:93
8512
  #: src/Tribe/Venue.php:112
8513
  msgid "Edit %s"
8514
  msgstr "Editar %s"
8515
 
8516
+ #: src/Tribe/Main.php:4827 src/Tribe/Main.php:4884
8517
  msgid "Use Saved %s:"
8518
  msgstr "Utilitza %s guardat:"
8519
 
8520
+ #: src/Tribe/Main.php:991
8521
  msgid " ask the site administrator set a different Events URL slug."
8522
  msgstr ""
8523
 
8524
+ #: src/Tribe/Main.php:985
8525
  msgid "Ask the site administrator to edit the %s slug"
8526
  msgstr ""
8527
 
8529
  msgid "Thanks for Updating The Events Calendar"
8530
  msgstr "Gràcies per actualitzar The Events Calendar"
8531
 
8532
+ #: src/Tribe/Main.php:844 src/Tribe/Main.php:846
8533
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
8534
  msgid "Welcome to The Events Calendar"
8535
  msgstr "Benvingut/da a The Events Calendar"
lang/the-events-calendar-cs_CZ.mo CHANGED
Binary file
lang/the-events-calendar-cs_CZ.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - The Events Calendar - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2018-08-03 08:59:09+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,6 +11,31 @@ msgstr ""
11
  "Language: cs_CZ\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: src/views/month/single-day.php:57
15
  msgid "%s for %s"
16
  msgstr "%s pro %s"
@@ -183,91 +208,91 @@ msgstr "Vědět více"
183
  msgid "Do more with Eventbrite Tickets"
184
  msgstr ""
185
 
186
- #: src/Tribe/Main.php:4513
187
  msgid "Search for %s by month. Please use the format %s."
188
  msgstr ""
189
 
190
- #: src/Tribe/Main.php:4508
191
  msgid "Search for %s by Date. Please use the format %s."
192
  msgstr ""
193
 
194
- #: src/Tribe/Main.php:4476 src/Tribe/Main.php:4477
195
  msgid "2 digit month dot 4 digit year"
196
  msgstr ""
197
 
198
- #: src/Tribe/Main.php:4475
199
  msgid "4 digit year dot 2 digit month"
200
  msgstr ""
201
 
202
- #: src/Tribe/Main.php:4474
203
  msgid "2 digit month hyphen 4 digit year"
204
  msgstr ""
205
 
206
- #: src/Tribe/Main.php:4471 src/Tribe/Main.php:4472 src/Tribe/Main.php:4473
207
  msgid "1 digit month hyphen 4 digit year"
208
  msgstr ""
209
 
210
- #: src/Tribe/Main.php:4468 src/Tribe/Main.php:4470
211
  msgid "2 digit month slash 4 digit year"
212
  msgstr ""
213
 
214
- #: src/Tribe/Main.php:4467 src/Tribe/Main.php:4469
215
  msgid "1 digit month slash 4 digit year"
216
  msgstr ""
217
 
218
- #: src/Tribe/Main.php:4466
219
  msgid "4 digit year hyphen 2 digit month"
220
  msgstr ""
221
 
222
- #: src/Tribe/Main.php:4462
223
  msgid "2 digit day dot 2 digit month dot 4 digit year"
224
  msgstr ""
225
 
226
- #: src/Tribe/Main.php:4461
227
  msgid "2 digit month dot 2 digit day dot 4 digit year"
228
  msgstr ""
229
 
230
- #: src/Tribe/Main.php:4460
231
  msgid "4 digit year dot 2 digit month dot 2 digit day"
232
  msgstr ""
233
 
234
- #: src/Tribe/Main.php:4459
235
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
236
  msgstr ""
237
 
238
- #: src/Tribe/Main.php:4458
239
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
240
  msgstr ""
241
 
242
- #: src/Tribe/Main.php:4457
243
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
244
  msgstr ""
245
 
246
- #: src/Tribe/Main.php:4456
247
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
248
  msgstr ""
249
 
250
- #: src/Tribe/Main.php:4455
251
  msgid "2 digit day slash 2 digit month slash 4 digit year"
252
  msgstr ""
253
 
254
- #: src/Tribe/Main.php:4454
255
  msgid "1 digit day slash 1 digit month slash 4 digit year"
256
  msgstr ""
257
 
258
- #: src/Tribe/Main.php:4453
259
  msgid "2 digit month slash 2 digit day slash 4 digit year"
260
  msgstr ""
261
 
262
- #: src/Tribe/Main.php:4452
263
  msgid "1 digit month slash 1 digit day slash 4 digit year"
264
  msgstr ""
265
 
266
- #: src/Tribe/Main.php:4451
267
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
268
  msgstr ""
269
 
270
- #: src/Tribe/Main.php:4430
271
  msgid "Search for %s by Keyword."
272
  msgstr ""
273
 
@@ -495,7 +520,7 @@ msgid "Search our support help desk"
495
  msgstr ""
496
 
497
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
498
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:369
499
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
500
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
501
  msgid "The requested page was not found."
@@ -509,12 +534,12 @@ msgstr "jeden měsíc"
509
  msgid "one week"
510
  msgstr "jeden týden"
511
 
512
- #: src/Tribe/Aggregator/Record/List_Table.php:570
513
  msgctxt "when the retry will happen, a date"
514
  msgid "retrying at %s"
515
  msgstr ""
516
 
517
- #: src/Tribe/Aggregator/Record/List_Table.php:567
518
  msgctxt "in human readable time"
519
  msgid "retrying in about %s"
520
  msgstr ""
@@ -596,7 +621,7 @@ msgid "Main %s Page"
596
  msgstr "Hlavní %s stránka"
597
 
598
  #: common/src/Tribe/Plugins_API.php:71
599
- msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Tickets have QR codes for easy check in at the door."
600
  msgstr ""
601
 
602
  #: src/admin-views/tribe-options-general.php:31
@@ -628,7 +653,7 @@ msgstr ""
628
  msgid "The event with the specified ID is not accessible."
629
  msgstr ""
630
 
631
- #: src/Tribe/Main.php:1813
632
  msgid "%1$s published. %2$sView %3$s"
633
  msgstr ""
634
 
@@ -712,11 +737,11 @@ msgstr ""
712
 
713
  #: src/Tribe/REST/V1/Messages.php:41
714
  msgid "The organizer could not be updated"
715
- msgstr ""
716
 
717
  #: src/Tribe/REST/V1/Messages.php:40
718
  msgid "The venue could not be updated"
719
- msgstr ""
720
 
721
  #: src/Tribe/REST/V1/Messages.php:39
722
  msgid "The event could not be updated"
@@ -979,11 +1004,11 @@ msgstr ""
979
  msgid "the event post name"
980
  msgstr ""
981
 
982
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:341
983
  msgid "The event organizer IDs or data"
984
  msgstr ""
985
 
986
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:333
987
  msgid "The event venue ID or data"
988
  msgstr ""
989
 
@@ -1226,32 +1251,32 @@ msgstr ""
1226
  msgid "Returns all the organizers matching the search criteria"
1227
  msgstr ""
1228
 
1229
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:478
1230
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1231
  msgstr ""
1232
 
1233
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:472
1234
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1235
  msgstr ""
1236
 
1237
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:466
1238
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1239
  msgstr ""
1240
 
1241
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:461
1242
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1243
  msgid "The event post status"
1244
  msgstr ""
1245
 
1246
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1247
  msgid "Events should be filtered by their featured status"
1248
  msgstr ""
1249
 
1250
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:446
1251
  msgid "Events should be assigned one of the specified organizer IDs"
1252
  msgstr ""
1253
 
1254
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
1255
  msgid "Events should be assigned one of the specified venue IDs"
1256
  msgstr ""
1257
 
@@ -1345,48 +1370,48 @@ msgstr ""
1345
  msgid "The event status"
1346
  msgstr ""
1347
 
1348
- #: src/Tribe/Linked_Posts.php:1126
1349
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1350
  msgid "Create or Find %s"
1351
  msgstr ""
1352
 
1353
- #: src/Tribe/Linked_Posts.php:1117
1354
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1355
  msgid "Find %1$s %2$s"
1356
  msgstr ""
1357
 
1358
- #: src/Tribe/Linked_Posts.php:1108
1359
  msgid "Find a Venue"
1360
  msgstr ""
1361
 
1362
- #: src/Tribe/Linked_Posts.php:1107
1363
  msgid "Create or Find a Venue"
1364
  msgstr ""
1365
 
1366
- #: src/Tribe/Linked_Posts.php:1100
1367
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1368
  msgid "Create or Find %s"
1369
  msgstr ""
1370
 
1371
- #: src/Tribe/Linked_Posts.php:1091
1372
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1373
  msgid "Find %1$s %2$s"
1374
  msgstr ""
1375
 
1376
- #: src/Tribe/Linked_Posts.php:1080
1377
  msgid "Find an Organizer"
1378
  msgstr ""
1379
 
1380
- #: src/Tribe/Linked_Posts.php:1079
1381
  msgid "Create or Find an Organizer"
1382
  msgstr ""
1383
 
1384
- #: src/Tribe/Linked_Posts.php:1072
1385
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1386
  msgid "Create or Find %s"
1387
  msgstr ""
1388
 
1389
- #: src/Tribe/Linked_Posts.php:1063
1390
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1391
  msgid "Find %1$s %2$s"
1392
  msgstr ""
@@ -1482,20 +1507,20 @@ msgstr ""
1482
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1483
  msgstr ""
1484
 
1485
- #: src/Tribe/Main.php:997
1486
  msgid "edit Events settings."
1487
  msgstr ""
1488
 
1489
- #: src/Tribe/Main.php:988
1490
  msgid "Edit the %s slug"
1491
  msgstr ""
1492
 
1493
- #: src/Tribe/Linked_Posts.php:1049
1494
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1495
  msgid "an"
1496
  msgstr ""
1497
 
1498
- #: src/Tribe/Linked_Posts.php:1042
1499
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1500
  msgid "a"
1501
  msgstr ""
@@ -1537,10 +1562,6 @@ msgstr ""
1537
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1538
  msgstr ""
1539
 
1540
- #: common/src/Tribe/Plugins_API.php:37
1541
- msgid "Import events from across the web! Event Aggregator makes it easy to run scheduled or manual imports from Facebook, Meetup, Eventbrite, Google Calendar, and iCalendar, along with uploads from CSV and ICS files. You can also import directly from other sites running The Events Calendar thanks to our built-in REST API support."
1542
- msgstr ""
1543
-
1544
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1545
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1546
  msgstr ""
@@ -1585,7 +1606,7 @@ msgstr ""
1585
  msgid "The event WordPress post ID"
1586
  msgstr ""
1587
 
1588
- #: src/Tribe/Aggregator/Record/Abstract.php:362
1589
  msgid "Something went wrong while inserting the record in the database."
1590
  msgstr ""
1591
 
@@ -1604,7 +1625,7 @@ msgstr[2] ""
1604
  msgid "Please refresh the page and try your request again."
1605
  msgstr ""
1606
 
1607
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:28
1608
  msgid "The image WordPress post ID"
1609
  msgstr ""
1610
 
@@ -1664,11 +1685,11 @@ msgstr ""
1664
  msgid "The event last modification date in UTC time"
1665
  msgstr ""
1666
 
1667
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:403
1668
  msgid "Events should start after the specified date"
1669
  msgstr ""
1670
 
1671
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:410
1672
  msgid "Events should start before the specified date"
1673
  msgstr ""
1674
 
@@ -1704,7 +1725,7 @@ msgstr ""
1704
  msgid "the event post ID"
1705
  msgstr ""
1706
 
1707
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:416
1708
  msgid "Events should contain the specified string in the title or description"
1709
  msgstr ""
1710
 
@@ -1877,7 +1898,7 @@ msgstr ""
1877
  #: src/Tribe/REST/V1/Documentation/Organizer_Definition_Provider.php:65
1878
  #: src/Tribe/REST/V1/Endpoints/Single_Organizer.php:248
1879
  msgid "The organizer name"
1880
- msgstr ""
1881
 
1882
  #: src/Tribe/REST/V1/Documentation/Organizer_Definition_Provider.php:69
1883
  msgid "The organizer long description"
@@ -2000,31 +2021,31 @@ msgid "The requested URL does not have any upcoming and published events matchin
2000
  msgstr ""
2001
 
2002
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2003
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:388
2004
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2005
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2006
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2007
  msgid "The archive page to return"
2008
  msgstr ""
2009
 
2010
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:396
2011
  msgid "The number of events to return on each page"
2012
  msgstr ""
2013
 
2014
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:422
2015
  msgid "Events should be assigned one of the specified categories slugs or IDs"
2016
  msgstr ""
2017
 
2018
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:430
2019
  msgid "Events should be assigned one of the specified tags slugs or IDs"
2020
  msgstr ""
2021
 
2022
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:358
2023
  msgid "Returns all the upcoming events matching the search criteria"
2024
  msgstr ""
2025
 
2026
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:36
2027
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:366
2028
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:64
2029
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:53
2030
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:61
@@ -2239,14 +2260,14 @@ msgstr ""
2239
  msgid "three months"
2240
  msgstr ""
2241
 
2242
- #: src/Tribe/Aggregator/Tabs/New.php:373
2243
  msgid "%1$d new event tag was created."
2244
  msgid_plural "%1$d new event tags were created."
2245
  msgstr[0] ""
2246
  msgstr[1] ""
2247
  msgstr[2] ""
2248
 
2249
- #: src/Tribe/Aggregator/Tabs/New.php:377
2250
  msgid "View your event tags"
2251
  msgstr ""
2252
 
@@ -2305,7 +2326,7 @@ msgstr "%1$s na měsíc %2$s"
2305
  msgid "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2306
  msgstr ""
2307
 
2308
- #: src/Tribe/Main.php:765
2309
  msgctxt "all events slug"
2310
  msgid "all"
2311
  msgstr "vše"
@@ -2346,7 +2367,7 @@ msgstr ""
2346
  msgid "The WordPress term ID"
2347
  msgstr ""
2348
 
2349
- #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:36
2350
  msgid "The link to the image in the specified size on the site"
2351
  msgstr ""
2352
 
@@ -2362,19 +2383,19 @@ msgstr ""
2362
  msgid "The image width in pixels in the specified size"
2363
  msgstr ""
2364
 
2365
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:44
2366
  msgid "The details about each size available for the image"
2367
  msgstr ""
2368
 
2369
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:40
2370
  msgid "The image natural height in pixels"
2371
  msgstr ""
2372
 
2373
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:36
2374
  msgid "The image natural width in pixels"
2375
  msgstr ""
2376
 
2377
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:32
2378
  msgid "The image file extension"
2379
  msgstr ""
2380
 
@@ -2382,7 +2403,7 @@ msgstr ""
2382
  msgid "The venue WordPress post ID"
2383
  msgstr ""
2384
 
2385
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:24
2386
  msgid "The URL to the full size version of the image"
2387
  msgstr ""
2388
 
@@ -2422,7 +2443,7 @@ msgstr ""
2422
  msgid "The cost currency symbol"
2423
  msgstr ""
2424
 
2425
- #: src/Tribe/Main.php:4434
2426
  msgid "Keyword"
2427
  msgstr "Klíčové slovo"
2428
 
@@ -2497,12 +2518,12 @@ msgstr ""
2497
  msgid "Export Events"
2498
  msgstr "Export akcí"
2499
 
2500
- #: src/Tribe/Main.php:764
2501
  msgctxt "featured events slug"
2502
  msgid "featured"
2503
  msgstr ""
2504
 
2505
- #: src/Tribe/Linked_Posts.php:1005
2506
  msgid "Create: <b><%= term %></b>"
2507
  msgstr ""
2508
 
@@ -2651,175 +2672,177 @@ msgstr ""
2651
  msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2652
  msgstr ""
2653
 
2654
- #: src/Tribe/Asset/Dynamic.php:77
2655
  msgid "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2656
  msgstr ""
2657
 
2658
- #: src/Tribe/Asset/Dynamic.php:76
2659
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2660
  msgstr ""
2661
 
2662
- #: src/Tribe/Asset/Dynamic.php:75
2663
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2664
  msgstr ""
2665
 
2666
- #: src/Tribe/Asset/Dynamic.php:74
2667
  msgid "This event is all day on %%startdatewithyear%%."
2668
  msgstr ""
2669
 
2670
- #: src/Tribe/Asset/Dynamic.php:73
2671
  msgid "This event is at %%starttime%% on %%startdatewithyear%%."
2672
  msgstr ""
2673
 
2674
- #: src/Tribe/Asset/Dynamic.php:72
2675
  msgid "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2676
  msgstr ""
2677
 
2678
- #: src/Tribe/Asset/Dynamic.php:69
2679
  msgid "Dec"
2680
  msgstr ""
2681
 
2682
- #: src/Tribe/Asset/Dynamic.php:68
2683
  msgid "Nov"
2684
  msgstr "Lis"
2685
 
2686
- #: src/Tribe/Asset/Dynamic.php:67
2687
  msgid "Oct"
2688
  msgstr "Říj"
2689
 
2690
- #: src/Tribe/Asset/Dynamic.php:66
2691
  msgid "Sep"
2692
  msgstr "Zář"
2693
 
2694
- #: src/Tribe/Asset/Dynamic.php:65
2695
  msgid "Aug"
2696
  msgstr "Srp"
2697
 
2698
- #: src/Tribe/Asset/Dynamic.php:64
2699
  msgid "Jul"
2700
  msgstr "Čvc"
2701
 
2702
- #: src/Tribe/Asset/Dynamic.php:63
2703
  msgid "Jun"
2704
  msgstr "Čvn"
2705
 
2706
- #: src/Tribe/Asset/Dynamic.php:61
2707
  msgid "Apr"
2708
  msgstr "Dub"
2709
 
2710
- #: src/Tribe/Asset/Dynamic.php:60
2711
  msgid "Mar"
2712
  msgstr "Bře"
2713
 
2714
- #: src/Tribe/Asset/Dynamic.php:59
2715
  msgid "Feb"
2716
  msgstr "Úno"
2717
 
2718
- #: src/Tribe/Asset/Dynamic.php:58
2719
  msgid "Jan"
2720
  msgstr "Led"
2721
 
2722
- #: src/Tribe/Asset/Dynamic.php:55
2723
  msgid "December"
2724
  msgstr "Prosinec"
2725
 
2726
- #: src/Tribe/Asset/Dynamic.php:54
2727
  msgid "November"
2728
  msgstr "Listopad"
2729
 
2730
- #: src/Tribe/Asset/Dynamic.php:53
2731
  msgid "October"
2732
  msgstr "Říjen"
2733
 
2734
- #: src/Tribe/Asset/Dynamic.php:52
2735
  msgid "September"
2736
  msgstr "Září"
2737
 
2738
- #: src/Tribe/Asset/Dynamic.php:51
2739
  msgid "August"
2740
  msgstr "Srpen"
2741
 
2742
- #: src/Tribe/Asset/Dynamic.php:50
2743
  msgid "July"
2744
  msgstr "Červenec"
2745
 
2746
- #: src/Tribe/Asset/Dynamic.php:49
2747
  msgid "June"
2748
  msgstr "Červen"
2749
 
2750
- #: src/Tribe/Asset/Dynamic.php:48 src/Tribe/Asset/Dynamic.php:62
 
 
2751
  msgid "May"
2752
  msgstr "Květen"
2753
 
2754
- #: src/Tribe/Asset/Dynamic.php:47
2755
  msgid "April"
2756
  msgstr "Duben"
2757
 
2758
- #: src/Tribe/Asset/Dynamic.php:46
2759
  msgid "March"
2760
  msgstr "Březen"
2761
 
2762
- #: src/Tribe/Asset/Dynamic.php:45
2763
  msgid "February"
2764
  msgstr "Únor"
2765
 
2766
- #: src/Tribe/Asset/Dynamic.php:44
2767
  msgid "January"
2768
  msgstr "Leden"
2769
 
2770
- #: src/Tribe/Asset/Dynamic.php:41
2771
  msgid "Sat"
2772
  msgstr "So"
2773
 
2774
- #: src/Tribe/Asset/Dynamic.php:40
2775
  msgid "Fri"
2776
  msgstr "Pá"
2777
 
2778
- #: src/Tribe/Asset/Dynamic.php:39
2779
  msgid "Thu"
2780
  msgstr "Čt"
2781
 
2782
- #: src/Tribe/Asset/Dynamic.php:38
2783
  msgid "Wed"
2784
  msgstr "St"
2785
 
2786
- #: src/Tribe/Asset/Dynamic.php:37
2787
  msgid "Tue"
2788
  msgstr "Út"
2789
 
2790
- #: src/Tribe/Asset/Dynamic.php:36
2791
  msgid "Mon"
2792
  msgstr "Po"
2793
 
2794
- #: src/Tribe/Asset/Dynamic.php:35
2795
  msgid "Sun"
2796
  msgstr "Ne"
2797
 
2798
- #: src/Tribe/Asset/Dynamic.php:32
2799
  msgid "Saturday"
2800
  msgstr "Sobota"
2801
 
2802
- #: src/Tribe/Asset/Dynamic.php:31
2803
  msgid "Friday"
2804
  msgstr "Pátek"
2805
 
2806
- #: src/Tribe/Asset/Dynamic.php:30
2807
  msgid "Thursday"
2808
  msgstr "Čtvrtek"
2809
 
2810
- #: src/Tribe/Asset/Dynamic.php:29
2811
  msgid "Wednesday"
2812
  msgstr "Středa"
2813
 
2814
- #: src/Tribe/Asset/Dynamic.php:28
2815
  msgid "Tuesday"
2816
  msgstr "Úterý"
2817
 
2818
- #: src/Tribe/Asset/Dynamic.php:27
2819
  msgid "Monday"
2820
  msgstr "Pondělí"
2821
 
2822
- #: src/Tribe/Asset/Dynamic.php:26
2823
  msgid "Sunday"
2824
  msgstr "Neděle"
2825
 
@@ -2900,11 +2923,11 @@ msgstr ""
2900
  msgid "Unknown service message"
2901
  msgstr ""
2902
 
2903
- #: src/Tribe/Aggregator/Record/List_Table.php:533
2904
  msgid "Unknown"
2905
  msgstr ""
2906
 
2907
- #: src/Tribe/Aggregator/Record/Abstract.php:1205
2908
  msgid "When this import was last scheduled to run, the daily limit for your Event Aggregator license had already been reached."
2909
  msgstr ""
2910
 
@@ -3196,7 +3219,7 @@ msgstr ""
3196
 
3197
  #: src/admin-views/aggregator/settings.php:688
3198
  msgid "Help page"
3199
- msgstr ""
3200
 
3201
  #: src/admin-views/aggregator/settings.php:684
3202
  msgid "Use the options below to configure your imports. Global Import Settings apply to all imports, but you can also override the global settings by adjusting the origin-specific options. Check your Event Aggregator Service Status on the %1$s."
@@ -3456,7 +3479,7 @@ msgstr ""
3456
 
3457
  #: src/admin-views/aggregator/origins/gcal.php:83
3458
  msgid "Enter the url for the Google Calendar feed you wish to import."
3459
- msgstr ""
3460
 
3461
  #: src/admin-views/aggregator/origins/gcal.php:82
3462
  msgid "https://calendar.google.com/calendar/ical/example/basic.ics"
@@ -3618,7 +3641,7 @@ msgstr ""
3618
 
3619
  #: src/admin-views/admin-welcome-message.php:29
3620
  msgid "News and Announcements"
3621
- msgstr ""
3622
 
3623
  #: src/admin-views/admin-welcome-message.php:28
3624
  msgid "Developer News"
@@ -3642,7 +3665,7 @@ msgctxt "Abbreviation for the miles unit of measure"
3642
  msgid "mi"
3643
  msgstr ""
3644
 
3645
- #: src/Tribe/Main.php:983
3646
  msgid "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3647
  msgstr ""
3648
 
@@ -3660,7 +3683,7 @@ msgstr[2] ""
3660
 
3661
  #: src/Tribe/Ignored_Events.php:919
3662
  msgid "Event %d: %s"
3663
- msgstr ""
3664
 
3665
  #: src/Tribe/Ignored_Events.php:907
3666
  msgid "Migration: %d Legacy Ignored Post failed to be migrated."
@@ -3809,7 +3832,7 @@ msgstr ""
3809
  #: src/Tribe/Ignored_Events.php:43 src/Tribe/Ignored_Events.php:59
3810
  #: src/Tribe/Ignored_Events.php:435
3811
  msgid "Delete Permanently"
3812
- msgstr ""
3813
 
3814
  #: src/Tribe/Aggregator.php:443
3815
  msgid "Renew your Event Aggregator Facebook token"
@@ -3865,7 +3888,7 @@ msgstr ""
3865
 
3866
  #: src/Tribe/Aggregator/Tabs/Scheduled.php:185
3867
  msgid "delete"
3868
- msgstr ""
3869
 
3870
  #: src/Tribe/Aggregator/Tabs/Scheduled.php:181
3871
  msgid "queued"
@@ -3875,139 +3898,139 @@ msgstr ""
3875
  msgid "Scheduled Imports"
3876
  msgstr ""
3877
 
3878
- #: src/Tribe/Aggregator/Tabs/New.php:603
3879
  msgid "Renew your Event Aggregator license"
3880
  msgstr ""
3881
 
3882
- #: src/Tribe/Aggregator/Tabs/New.php:600
3883
  msgid "Renew your license in order to import events from Facebook, iCalendar, Google, or Meetup."
3884
  msgstr ""
3885
 
3886
- #: src/Tribe/Aggregator/Tabs/New.php:599
3887
  msgid "Your Event Aggregator license is expired."
3888
  msgstr ""
3889
 
3890
- #: src/Tribe/Aggregator/Tabs/New.php:551
3891
  msgid "Learn More"
3892
  msgstr ""
3893
 
3894
- #: src/Tribe/Aggregator/Tabs/New.php:546 src/Tribe/Aggregator/Tabs/New.php:553
3895
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:19
3896
  msgid "opens in a new window"
3897
  msgstr ""
3898
 
3899
- #: src/Tribe/Aggregator/Tabs/New.php:544
3900
  msgid "Buy It Now"
3901
  msgstr ""
3902
 
3903
- #: src/Tribe/Aggregator/Tabs/New.php:541
3904
  msgid "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3905
  msgstr ""
3906
 
3907
- #: src/Tribe/Aggregator/Tabs/New.php:539
3908
  msgid "Import Using Event Aggregator"
3909
  msgstr ""
3910
 
3911
- #: src/Tribe/Aggregator/Tabs/New.php:452
3912
  msgid "Unable to save credentials"
3913
  msgstr ""
3914
 
3915
- #: src/Tribe/Aggregator/Tabs/New.php:445
3916
  msgid "Credentials have been saved"
3917
  msgstr ""
3918
 
3919
- #: src/Tribe/Aggregator/Tabs/New.php:436
3920
  msgid "The Meetup API key is required."
3921
  msgstr ""
3922
 
3923
- #: src/Tribe/Aggregator/Tabs/New.php:427
3924
  msgid "Invalid credential save nonce"
3925
  msgstr ""
3926
 
3927
- #: src/Tribe/Aggregator/Tabs/New.php:417
3928
  msgid "Invalid credential save request"
3929
  msgstr ""
3930
 
3931
- #: src/Tribe/Aggregator/Tabs/New.php:405
3932
  msgid "View your scheduled imports."
3933
  msgstr ""
3934
 
3935
- #: src/Tribe/Aggregator/Tabs/New.php:401
3936
  msgid "The next import is scheduled for %1$s."
3937
  msgstr ""
3938
 
3939
- #: src/Tribe/Aggregator/Tabs/New.php:394
3940
  msgctxt "separator between date and time"
3941
  msgid " at "
3942
  msgstr ""
3943
 
3944
- #: src/Tribe/Aggregator/Tabs/New.php:390
3945
  msgid "Your scheduled import was saved and the first import is complete!"
3946
  msgstr ""
3947
 
3948
- #: src/Tribe/Aggregator/Tabs/New.php:365
3949
  msgid "View your event categories"
3950
  msgstr ""
3951
 
3952
- #: src/Tribe/Aggregator/Tabs/New.php:361
3953
  msgid "%1$d new event category was created."
3954
  msgid_plural "%1$d new event categories were created."
3955
  msgstr[0] ""
3956
  msgstr[1] ""
3957
  msgstr[2] ""
3958
 
3959
- #: src/Tribe/Aggregator/Tabs/New.php:352
3960
  msgid "View your event organizers"
3961
  msgstr ""
3962
 
3963
- #: src/Tribe/Aggregator/Tabs/New.php:348
3964
  msgid "%1$d new organizer was imported."
3965
  msgid_plural "%1$d new organizers were imported."
3966
  msgstr[0] ""
3967
  msgstr[1] ""
3968
  msgstr[2] ""
3969
 
3970
- #: src/Tribe/Aggregator/Tabs/New.php:340
3971
  msgid "View your event venues"
3972
  msgstr ""
3973
 
3974
- #: src/Tribe/Aggregator/Tabs/New.php:336
3975
  msgid "%1$d new venue was imported."
3976
  msgid_plural "%1$d new venues were imported."
3977
  msgstr[0] ""
3978
  msgstr[1] ""
3979
  msgstr[2] ""
3980
 
3981
- #: src/Tribe/Aggregator/Tabs/New.php:326
3982
  msgid "View all %s"
3983
  msgstr "Zobrazit všechny %s"
3984
 
3985
- #: src/Tribe/Aggregator/Tabs/New.php:318
3986
  msgid "No %1$s were imported or updated."
3987
  msgstr ""
3988
 
3989
- #: src/Tribe/Aggregator/Tabs/New.php:311
3990
  msgid "%1$d new image was imported."
3991
  msgid_plural "%1$d new images were imported."
3992
  msgstr[0] ""
3993
  msgstr[1] ""
3994
  msgstr[2] ""
3995
 
3996
- #: src/Tribe/Aggregator/Tabs/New.php:302
3997
  msgid "%1$d already-imported %2$s was skipped."
3998
  msgid_plural "%1$d already-imported %2$s were skipped."
3999
  msgstr[0] ""
4000
  msgstr[1] ""
4001
  msgstr[2] ""
4002
 
4003
- #: src/Tribe/Aggregator/Tabs/New.php:291
4004
  msgid "%1$d existing %2$s was updated."
4005
  msgid_plural "%1$d existing %2$s were updated."
4006
  msgstr[0] ""
4007
  msgstr[1] ""
4008
  msgstr[2] ""
4009
 
4010
- #: src/Tribe/Aggregator/Tabs/New.php:279
4011
  msgid "%1$d new %2$s was imported."
4012
  msgid_plural "%1$d new %2$s were imported."
4013
  msgstr[0] ""
@@ -4020,7 +4043,7 @@ msgstr ""
4020
 
4021
  #: src/Tribe/Aggregator/Tabs/New.php:81
4022
  msgid "New Import"
4023
- msgstr ""
4024
 
4025
  #: src/Tribe/Aggregator/Tabs/History.php:93
4026
  msgid "History"
@@ -4277,7 +4300,7 @@ msgstr ""
4277
  msgid "Events Aggregator Record"
4278
  msgstr ""
4279
 
4280
- #: src/Tribe/Aggregator/Record/Queue_Realtime.php:178
4281
  msgid "Unable to continue inserting data. Please reload this page to continue/try again."
4282
  msgstr ""
4283
 
@@ -4297,87 +4320,87 @@ msgstr ""
4297
  msgid "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4298
  msgstr ""
4299
 
4300
- #: src/Tribe/Aggregator/Record/Queue_Processor.php:234
4301
  msgid "Could not process queue for Import Record %1$d: %2$s"
4302
  msgstr ""
4303
 
4304
- #: src/Tribe/Aggregator/Record/List_Table.php:657
4305
  msgid "Select %s"
4306
  msgstr ""
4307
 
4308
- #: src/Tribe/Aggregator/Record/List_Table.php:622
4309
- #: src/Tribe/Aggregator/Record/List_Table.php:631
4310
- #: src/Tribe/Aggregator/Record/List_Table.php:639
4311
  msgid "updated"
4312
  msgstr ""
4313
 
4314
- #: src/Tribe/Aggregator/Record/List_Table.php:620
4315
- #: src/Tribe/Aggregator/Record/List_Table.php:628
4316
- #: src/Tribe/Aggregator/Record/List_Table.php:636
4317
  msgid "new"
4318
  msgstr ""
4319
 
4320
- #: src/Tribe/Aggregator/Record/List_Table.php:617
4321
  msgid "Latest Import:"
4322
  msgstr ""
4323
 
4324
- #: src/Tribe/Aggregator/Record/List_Table.php:615
4325
  msgid "all time"
4326
  msgstr ""
4327
 
4328
- #: src/Tribe/Aggregator/Record/List_Table.php:589
4329
  msgid "One Time"
4330
  msgstr ""
4331
 
4332
- #: src/Tribe/Aggregator/Record/List_Table.php:586
4333
  msgid "Invalid Frequency"
4334
  msgstr ""
4335
 
4336
- #: src/Tribe/Aggregator/Record/List_Table.php:556 src/Tribe/Aggregator.php:426
4337
  #: src/Tribe/Ignored_Events.php:357
4338
  #: src/admin-views/tribe-options-addons-api.php:36
4339
  msgctxt "in human readable time"
4340
  msgid "in about %s"
4341
  msgstr ""
4342
 
4343
- #: src/Tribe/Aggregator/Record/List_Table.php:554 src/Tribe/Aggregator.php:424
4344
  #: src/Tribe/Ignored_Events.php:355
4345
  #: src/admin-views/tribe-options-addons-api.php:34
4346
  msgctxt "human readable time ago"
4347
  msgid "about %s ago"
4348
  msgstr ""
4349
 
4350
- #: src/Tribe/Aggregator/Record/List_Table.php:506
4351
  msgid "Radius:"
4352
  msgstr ""
4353
 
4354
- #: src/Tribe/Aggregator/Record/List_Table.php:489
4355
  msgid "Keywords:"
4356
  msgstr "Klíčová slova:"
4357
 
4358
- #: src/Tribe/Aggregator/Record/List_Table.php:476
4359
  #: src/Tribe/Ignored_Events.php:337
4360
  msgctxt "record via origin"
4361
  msgid "via "
4362
  msgstr ""
4363
 
4364
- #: src/Tribe/Aggregator/Record/List_Table.php:433
4365
  msgid "Import preview"
4366
  msgstr ""
4367
 
4368
- #: src/Tribe/Aggregator/Record/List_Table.php:429
4369
  msgid "Import pending"
4370
  msgstr ""
4371
 
4372
- #: src/Tribe/Aggregator/Record/List_Table.php:425
4373
  msgid "Import schedule"
4374
  msgstr ""
4375
 
4376
- #: src/Tribe/Aggregator/Record/List_Table.php:413
4377
  msgid "Import failed"
4378
  msgstr ""
4379
 
4380
- #: src/Tribe/Aggregator/Record/List_Table.php:409
4381
  msgid "Import completed"
4382
  msgstr ""
4383
 
@@ -4463,11 +4486,11 @@ msgstr ""
4463
  msgid "Eventbrite"
4464
  msgstr ""
4465
 
4466
- #: src/Tribe/Aggregator/Record/Abstract.php:1148
4467
  msgid "Deleted Attachment: %d"
4468
  msgstr ""
4469
 
4470
- #: src/Tribe/Aggregator/Record/Abstract.php:496
4471
  msgid "Record: "
4472
  msgstr ""
4473
 
@@ -4503,7 +4526,7 @@ msgid "Hide Filters"
4503
  msgstr ""
4504
 
4505
  #: src/Tribe/Aggregator/Page.php:96
4506
- #: src/Tribe/Aggregator/Record/List_Table.php:485
4507
  msgid "View Filters"
4508
  msgstr ""
4509
 
@@ -4863,7 +4886,7 @@ msgid "There is an update for %s. You'll need to %scheck your license%s to have
4863
  msgstr ""
4864
 
4865
  #: common/src/Tribe/PUE/Checker.php:961 common/src/Tribe/PUE/Notices.php:285
4866
- #: src/Tribe/Aggregator/Record/Abstract.php:1163
4867
  msgid " (opens in a new window)"
4868
  msgstr ""
4869
 
@@ -5164,7 +5187,7 @@ msgstr "Nové nebo aktualizované šablony v této verzi (%s):"
5164
  msgid "No notable changes detected"
5165
  msgstr "Nebyly zjištěny žádné významné změny"
5166
 
5167
- #: src/Tribe/Main.php:2735
5168
  msgid " (View Full %1$s Description Here: %2$s)"
5169
  msgstr " (úplný popis %1$s najdete zde: %2$s)"
5170
 
@@ -5212,147 +5235,147 @@ msgstr "%s nemůže zůstat prázdné"
5212
  msgid "Keep the Core Plugin %sFREE%s!"
5213
  msgstr "Zachovejte jádro pluginu %sZDARMA%s!"
5214
 
5215
- #: src/Tribe/Template_Factory.php:300
5216
  msgid "No results were found for %1$s in or near %2$s."
5217
  msgstr "Nebyly nalezeny žádné %1$s poblíž místa %2$s."
5218
 
5219
- #: src/Tribe/Template_Factory.php:298
5220
  msgid "There were no results found for %s."
5221
  msgstr "Nebyly nalezeny žádné záznamy pro %s."
5222
 
5223
- #: src/Tribe/Template/Month.php:456
5224
  msgid "There were no results found for %s this month. Try searching next month."
5225
  msgstr "Nebyly nalezeny žádné záznamy pro %s v tomto měsíci. Zkuste hledat v dalším měsíci."
5226
 
5227
- #: src/Tribe/Template/Day.php:153
5228
  msgid "No %1$s scheduled for %2$s. Please try another day."
5229
  msgstr "Nebyly nalezeny žádné %1$s naplánované na %2$s. Zkuste prosím zvolit jiný den."
5230
 
5231
- #: src/Tribe/Main.php:4254
5232
  msgid "Check out the %savailable add-ons%s."
5233
  msgstr "Podívejte se na %sdostupné doplňky%s."
5234
 
5235
- #: src/Tribe/Main.php:1923
5236
  msgid "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5237
  msgstr "Pokud nezadáte žádné místo, vaše akce se zobrazí ve výsledcích vyhledávání bez doplňujících údajů %sGoogle Rich Snippet%s."
5238
 
5239
- #: src/Tribe/Main.php:1854 src/Tribe/Main.php:1874
5240
  msgid "%1$s scheduled for: %2$s."
5241
  msgstr "%1$s – bude automaticky publikováno: %2$s."
5242
 
5243
- #: src/Tribe/Main.php:1835
5244
  msgid "%1$s draft updated. %2$sPreview %3$s"
5245
  msgstr "Koncept %1$s byl uložen. %2$sZobrazit náhled %3$s"
5246
 
5247
- #: src/Tribe/Main.php:1826
5248
  msgid "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5249
  msgstr "%1$s bude automaticky publikována: %2$s. %3$sZobrazit náhled %4$s"
5250
 
5251
- #: src/Tribe/Main.php:1820
5252
  msgid "%1$s submitted. %2$sPreview %3$s"
5253
  msgstr "%1$s byla odeslána ke schválení. %2$sZobrazit náhled %3$s"
5254
 
5255
- #: src/Tribe/Main.php:1802
5256
  msgid "%1$s updated. %2$sView %1$s%3$s"
5257
  msgstr "%1$s byla aktualizována. %2$sZobrazit stránku %1$s%3$s"
5258
 
5259
- #: src/Tribe/Main.php:1477
5260
  msgid "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5261
  msgstr "Vypadá to, že se nepodařilo nalézt knihovny tribe-common! Složka by se měla nacházet v podadresáři \"common/\" pluginu pro kalendář akcí."
5262
 
5263
- #: src/Tribe/Main.php:1112
5264
  msgid "If you have a valid license for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5265
  msgstr "Pokud máte platnou licenci pro některý z našich placených pluginů, můžete %s v našem prémiovém fóru podpory. Náš tým podpory sleduje toto fórum a odpoví na vaše dotazy během 24-48 hodin (v pracovní dny)."
5266
 
5267
- #: src/Tribe/Main.php:1111
5268
  msgid "post a thread"
5269
  msgstr "založit vlákno"
5270
 
5271
- #: src/Tribe/Main.php:1107
5272
  msgid "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays."
5273
  msgstr "<strong>Potřebujete okamžitou pomoc?</strong> Nabízíme %1$s při zakoupení některého z našich prémiových pluginů (jako např. %2$s). Získejte licenci a můžete očekávat odpověď na své dotazy během 24-48 hodin v pracovní dny."
5274
 
5275
- #: src/Tribe/Main.php:1103
5276
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5277
  msgstr "Pokud jste vyzkoušeli výše uvedené kroky a stále máte potíže, můžete navštívit naše %s a založit nové vlákno. Pracovníci naší podpory jednou týdně kontrolují tato fóra a rádi vám pomohou."
5278
 
5279
- #: src/Tribe/Main.php:1102
5280
  msgid "open-source forum on WordPress.org"
5281
  msgstr "open-source fórum na WordPress.org"
5282
 
5283
- #: src/Tribe/Main.php:1098
5284
  msgid "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays"
5285
  msgstr "<strong>Potřebujete okamžitou pomoc?</strong> Nabízíme %s při zakoupení některého z našich prémiových pluginů. Získejte licenci a můžete očekávat odpověď na své dotazy během 24-48 hodin v pracovní dny."
5286
 
5287
- #: src/Tribe/Main.php:1097 src/Tribe/Main.php:1105
5288
  msgid "premium support on our website"
5289
  msgstr "prémiovou podporu na našem webu"
5290
 
5291
- #: src/Tribe/Main.php:1095
5292
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5293
  msgstr "Pokud jste vyzkoušeli výše uvedené kroky a stále máte potíže, můžete založit nové vlákno na WordPress.org fórech pro plugin %1$s nebo %2$s. Pracovníci naší podpory jednou týdně kontrolují tato fóra a rádi vám pomohou."
5294
 
5295
- #: src/Tribe/Main.php:1094
5296
  msgid "Events Tickets"
5297
  msgstr "Events Tickets"
5298
 
5299
- #: src/Tribe/Main.php:1079
5300
  msgid "Customizing the Events plugins"
5301
  msgstr "Přizpůsobení pluginů pro Akce"
5302
 
5303
- #: src/Tribe/Main.php:1079
5304
  msgid "%s: Code and guides for customizing your calendar in useful and interesting ways."
5305
  msgstr "%s: Kód a návody pro přizpůsobení vašeho kalendáře užitečnými a zajímavými způsoby."
5306
 
5307
- #: src/Tribe/Main.php:1077
5308
  msgid "Troubleshooting common problems"
5309
  msgstr "Řešení obvyklých problémů"
5310
 
5311
- #: src/Tribe/Main.php:1077
5312
  msgid "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5313
  msgstr "%s: Máte problém s vaším kalendářem? Prvně zkuste zjistit zde, jaký je možný zdroj chyby a jak ji opravit."
5314
 
5315
- #: src/Tribe/Main.php:1075
5316
  msgid "Using stylesheets and page templates"
5317
  msgstr "Používání CSS stylů a šablon stránek"
5318
 
5319
- #: src/Tribe/Main.php:1075
5320
  msgid "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5321
  msgstr "%s: Přehled výchozích šablon a stylů, které jsou zahrnuty v pluginu, včetně postupů k jejich úpravě."
5322
 
5323
- #: src/Tribe/Main.php:1073
5324
  msgid "Themer’s Guide"
5325
  msgstr "Příručka šablonáře"
5326
 
5327
- #: src/Tribe/Main.php:1073
5328
  msgid "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5329
  msgstr "%s: Náš nejkomplexnější návod pro přizpůsobení kalendáře vašim potřebám, včetně vlastních rozvržení a stylů."
5330
 
5331
- #: src/Tribe/Main.php:1071
5332
  msgid "Features overview"
5333
  msgstr "Přehled funkcí"
5334
 
5335
- #: src/Tribe/Main.php:1071
5336
  msgid "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5337
  msgstr "%s: Kompletní přehled funkcí, které budete mít k dispozici ihned po instalaci, včetně popisu jak je používat. "
5338
 
5339
- #: src/Tribe/Main.php:1069
5340
  msgid "Settings overview"
5341
  msgstr "Přehled nastavení"
5342
 
5343
- #: src/Tribe/Main.php:1069
5344
  msgid "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5345
  msgstr "%s: Detailní průvodce pluginem The Events Calendar a všech jeho nastavení, která máte k dispozici."
5346
 
5347
- #: src/Tribe/Main.php:1066
5348
  msgid "Support for The Events Calendar"
5349
  msgstr "Podpora pro The Events Calendar"
5350
 
5351
- #: src/Tribe/Main.php:1055
5352
  msgid "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5353
  msgstr "Chceme vám pomoci udělat váš kalendář akcí působivým a k tomu pro vás máme dostatek informačních zdrojů. Pro začátek by se vám mohla hodit naše %s."
5354
 
5355
- #: src/Tribe/Main.php:1053
5356
  msgid "New User Primer"
5357
  msgstr "Příručka nového uživatele"
5358
 
@@ -5375,7 +5398,7 @@ msgstr "Výchozí stav pro importované akce"
5375
  msgid "CSV Import Settings"
5376
  msgstr "Nastavení CSV importu"
5377
 
5378
- #: src/Tribe/Asset/Bootstrap_Datepicker.php:26
5379
  msgid "Clear"
5380
  msgstr "Vymazat"
5381
 
@@ -5387,7 +5410,7 @@ msgstr "Přidat další záznam (%s)"
5387
  msgid "Create New %s"
5388
  msgstr "Vytvořit nový záznam (%s)"
5389
 
5390
- #: src/Tribe/Organizer.php:371
5391
  msgid "Unnamed %s"
5392
  msgstr "Neznámé %s"
5393
 
@@ -5576,7 +5599,7 @@ msgstr "Storno"
5576
  msgid "%s must be a positive number or percent."
5577
  msgstr "%s musí být kladné číslo nebo procento."
5578
 
5579
- #: src/Tribe/Main.php:1000
5580
  msgid "%1$s or %2$s"
5581
  msgstr "%1$s nebo %2$s"
5582
 
@@ -5633,7 +5656,7 @@ msgstr "Zobrazit více"
5633
  msgid "Day Navigation"
5634
  msgstr "Navigace pro dny"
5635
 
5636
- #: src/Tribe/Aggregator/Tabs/New.php:388
5637
  msgid "Import complete!"
5638
  msgstr "Importování bylo dokončeno!"
5639
 
@@ -5876,7 +5899,7 @@ msgid "More..."
5876
  msgstr "Více..."
5877
 
5878
  #: common/src/Tribe/Admin/Help_Page.php:194 common/src/Tribe/Plugins_API.php:43
5879
- #: src/Tribe/Main.php:1106
5880
  msgid "Events Calendar PRO"
5881
  msgstr "Events Calendar PRO"
5882
 
@@ -6315,7 +6338,7 @@ msgstr "URL adresa:"
6315
  msgid "%s Website"
6316
  msgstr "Webová stránka %s"
6317
 
6318
- #: src/Tribe/Aggregator/Record/List_Table.php:502
6319
  msgid "Location:"
6320
  msgstr "Místo:"
6321
 
@@ -7720,15 +7743,15 @@ msgstr "Přepisy šablon je třeba přemístit do správného podadresáře: tri
7720
  msgid "Template overrides should be moved to the correct subdirectory: %s"
7721
  msgstr "Přepisy šablon je třeba přemístit do správného podadresáře: %s"
7722
 
7723
- #: src/Tribe/Template_Factory.php:306
7724
  msgid "No previous %s "
7725
  msgstr "Žádné předchozí %s"
7726
 
7727
- #: src/Tribe/Template_Factory.php:304 src/Tribe/Template_Factory.php:309
7728
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7729
  msgstr "Nebyly nalezeny žádné %1$s v rubrice %2$s. Zkuste si zobrazit úplný kalendář a prohlédnout ostatní %3$s."
7730
 
7731
- #: src/Tribe/Template_Factory.php:302
7732
  msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7733
  msgstr "Žádné nadcházející %1$s v rubrice %2$s. Podívejte se na nadcházející %3$s z této rubriky nebo si zobrazte úplný kalendář."
7734
 
@@ -7736,28 +7759,28 @@ msgstr "Žádné nadcházející %1$s v rubrice %2$s. Podívejte se na nadcháze
7736
  msgid "This %s has passed."
7737
  msgstr "%s již proběhla."
7738
 
7739
- #: src/Tribe/Template/Month.php:953
7740
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7741
  msgstr "Požadované datum \"%s\" nebylo platné &ndash; místo toho se zobrazuje aktuální měsíc"
7742
 
7743
- #: src/Tribe/Template/Month.php:462 src/Tribe/Template_Factory.php:311
7744
  msgid "There were no results found."
7745
  msgstr "Nebyly nalezeny žádné záznamy."
7746
 
7747
- #: src/Tribe/Template/Month.php:460
7748
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7749
  msgstr "Nebyly nalezeny žádné %1$s v rubrice %2$s. Zkuste si prosím zobrazit úplný kalendář se seznamem všech akcí."
7750
 
7751
- #: src/Tribe/Template/Day.php:151
7752
  msgid "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7753
  msgstr "Nebyly nalezeny žádné %1$s v rubrice %2$s naplánované na %3$s. Zkuste prosím zvolit jiný den."
7754
 
7755
- #: src/Tribe/Template/Day.php:117 src/Tribe/Template/Day.php:133
7756
  msgid "Ongoing"
7757
  msgstr "Právě probíhající"
7758
 
7759
- #: src/Tribe/Aggregator/Page.php:82 src/Tribe/Template/Day.php:114
7760
- #: src/Tribe/Template/Day.php:130
7761
  msgid "All Day"
7762
  msgstr "Celý den"
7763
 
@@ -7853,50 +7876,50 @@ msgstr "Licenční klíč"
7853
  msgid "Error"
7854
  msgstr "Chyba"
7855
 
7856
- #: src/Tribe/Main.php:4597
7857
  msgid "Once Every 30 Mins"
7858
  msgstr "Jednou za 30 minut"
7859
 
7860
- #: src/Tribe/Main.php:4517
7861
  msgid "Day Of"
7862
  msgstr "Dne"
7863
 
7864
- #: src/Tribe/Main.php:4515
7865
  msgid "%s From"
7866
  msgstr "%s od"
7867
 
7868
- #: src/Tribe/Main.php:4511
7869
  msgid "%s In"
7870
  msgstr "%s v"
7871
 
7872
- #: src/Tribe/Main.php:4506 src/Tribe/Main.php:4531
7873
  #: src/admin-views/aggregator/origins/refine.php:7
7874
  msgid "Date"
7875
  msgstr "Datum"
7876
 
7877
- #: src/Tribe/Main.php:4433
7878
  msgid "Search"
7879
  msgstr "Hledat"
7880
 
7881
- #: src/Tribe/Main.php:4407 src/admin-views/aggregator/fields/schedule.php:44
7882
  #: src/admin-views/aggregator/fields/schedule.php:62
7883
  msgid "Day"
7884
  msgstr "Den"
7885
 
7886
- #: src/Tribe/Main.php:4390
7887
  msgid "Month"
7888
  msgstr "Měsíc"
7889
 
7890
- #: src/Tribe/Main.php:4372
7891
  msgid "List"
7892
  msgstr "Seznam"
7893
 
7894
- #: src/Tribe/Main.php:4356
7895
  msgid "Calendar"
7896
  msgstr "Kalendář"
7897
 
7898
  #: common/src/Tribe/Settings.php:254
7899
- #: src/Tribe/Admin/Bar/Default_Configurator.php:89 src/Tribe/Main.php:4355
7900
  msgid "Settings"
7901
  msgstr "Nastavení"
7902
 
@@ -7910,7 +7933,7 @@ msgstr "CSV"
7910
  msgid "Add %s"
7911
  msgstr "Vytvořit (%s)"
7912
 
7913
- #: src/Tribe/Admin/Bar/Default_Configurator.php:45 src/Tribe/Main.php:4306
7914
  msgid "View Calendar"
7915
  msgstr "Zobrazit kalendář"
7916
 
@@ -7918,53 +7941,53 @@ msgstr "Zobrazit kalendář"
7918
  msgid "%s"
7919
  msgstr "%s"
7920
 
7921
- #: src/Tribe/Main.php:4253
7922
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7923
  msgstr "Hledáte další funkce, včetně opakujících se akcí, prodeje vstupenek, veřejně přidávaných akcí, nových způsobů zobrazení a další?"
7924
 
7925
- #: src/Tribe/Main.php:4248
7926
  msgid "Additional Functionality"
7927
  msgstr "Další funkce"
7928
 
7929
- #: src/Tribe/Main.php:4203
7930
  msgid "News from Modern Tribe"
7931
  msgstr "Novinky od Modern Tribe"
7932
 
7933
- #: src/Tribe/Main.php:4183
7934
  msgid "View All Add-Ons"
7935
  msgstr "Prohlédnout všechny doplňky"
7936
 
7937
- #: src/Tribe/Main.php:4180
7938
  msgid "Support"
7939
  msgstr "Podpora"
7940
 
7941
- #: src/Tribe/Main.php:3828 src/Tribe/Main.php:3841
7942
  msgid "%s Information"
7943
  msgstr "%s – údaje"
7944
 
7945
- #: src/Tribe/Main.php:3819
7946
  msgid "%s Options"
7947
  msgstr "Nastavení %s"
7948
 
7949
- #: src/Tribe/Main.php:3742 src/Tribe/Main.php:3777
7950
  #: src/functions/template-tags/day.php:157
7951
  #: src/functions/template-tags/day.php:178
7952
  msgid "Date out of range."
7953
  msgstr "Datum je mimo platný rozsah."
7954
 
7955
- #: src/Tribe/Main.php:2344
7956
  msgid "all"
7957
  msgstr "vse"
7958
 
7959
- #: src/Tribe/Main.php:2343 src/functions/template-tags/general.php:111
7960
  msgid "events"
7961
  msgstr "kalendar-akci"
7962
 
7963
- #: src/Tribe/Main.php:2342 src/functions/template-tags/general.php:79
7964
  msgid "event"
7965
  msgstr "akce"
7966
 
7967
- #: src/Tribe/Main.php:2341
7968
  msgid "page"
7969
  msgstr "strana"
7970
 
@@ -7976,7 +7999,8 @@ msgstr "Síť webů"
7976
  msgid "Done"
7977
  msgstr "Hotovo"
7978
 
7979
- #: common/src/Tribe/Main.php:272 src/Tribe/Asset/Bootstrap_Datepicker.php:27
 
7980
  #: src/functions/template-tags/day.php:104
7981
  msgid "Today"
7982
  msgstr "Dnes"
@@ -7989,141 +8013,141 @@ msgstr "Předchozí"
7989
  msgid "Next"
7990
  msgstr "Další"
7991
 
7992
- #: src/Tribe/Linked_Posts.php:1010
7993
  msgid "No saved %s exists."
7994
  msgstr "Zatím nebyl uložen žádný záznam."
7995
 
7996
- #: src/Tribe/Linked_Posts.php:840
7997
  msgid "Available %s"
7998
  msgstr "%s k dispozici"
7999
 
8000
- #: src/Tribe/Linked_Posts.php:836
8001
  msgid "My %s"
8002
  msgstr "Moje záznamy"
8003
 
8004
- #: src/Tribe/Main.php:1859 src/Tribe/Main.php:1879
8005
  msgid "%s draft updated."
8006
  msgstr "Koncept (%s) byl uložen."
8007
 
8008
- #: src/Tribe/Main.php:1852 src/Tribe/Main.php:1872
8009
  msgid "%s submitted."
8010
  msgstr "%s – odesláno ke schválení."
8011
 
8012
- #: src/Tribe/Main.php:1850 src/Tribe/Main.php:1870
8013
  msgid "%s published."
8014
  msgstr "%s – publikováno."
8015
 
8016
  #. translators: %s: date and time of the revision
8017
- #: src/Tribe/Main.php:1869
8018
  msgid "%s restored to revision from %s"
8019
  msgstr "Následující verze (%s) byla úspěšně obnovena: %s"
8020
 
8021
  #. translators: Publish box date format, see http://php.net/date
8022
- #: src/Tribe/Main.php:1829 src/Tribe/Main.php:1857 src/Tribe/Main.php:1877
8023
  msgid "M j, Y @ G:i"
8024
  msgstr "j.n.Y, G:i"
8025
 
8026
- #: src/Tribe/Main.php:1818 src/Tribe/Main.php:1851 src/Tribe/Main.php:1871
8027
  msgid "%s saved."
8028
  msgstr "%s – uloženo."
8029
 
8030
  #. translators: %s: date and time of the revision
8031
- #: src/Tribe/Main.php:1811 src/Tribe/Main.php:1849
8032
  msgid "%1$s restored to revision from %2$s"
8033
  msgstr "Následující verze %1$s byla úspěšně obnovena: %2$s"
8034
 
8035
- #: src/Tribe/Main.php:1809 src/Tribe/Main.php:1844 src/Tribe/Main.php:1847
8036
- #: src/Tribe/Main.php:1864 src/Tribe/Main.php:1867
8037
  msgid "%s updated."
8038
  msgstr "%s – aktualizováno."
8039
 
8040
- #: src/Tribe/Main.php:1808 src/Tribe/Main.php:1846 src/Tribe/Main.php:1866
8041
  msgid "Custom field deleted."
8042
  msgstr "Uživatelské pole bylo smazáno."
8043
 
8044
- #: src/Tribe/Main.php:1807 src/Tribe/Main.php:1845 src/Tribe/Main.php:1865
8045
  msgid "Custom field updated."
8046
  msgstr "Uživatelské pole bylo aktualizováno."
8047
 
8048
- #: src/Tribe/Main.php:1785
8049
  msgid "New %s Category Name"
8050
  msgstr "Název nové rubriky %s"
8051
 
8052
- #: src/Tribe/Main.php:1784
8053
  msgid "Add New %s Category"
8054
  msgstr "Vytvořit novou rubriku %s"
8055
 
8056
- #: src/Tribe/Main.php:1783
8057
  msgid "Update %s Category"
8058
  msgstr "Aktualizovat rubriku %s"
8059
 
8060
- #: src/Tribe/Main.php:1782
8061
  msgid "Edit %s Category"
8062
  msgstr "Upravit rubriku %s"
8063
 
8064
- #: src/Tribe/Main.php:1781
8065
  msgid "Parent %s Category:"
8066
  msgstr "Nadřazená rubrika %s:"
8067
 
8068
- #: src/Tribe/Main.php:1780
8069
  msgid "Parent %s Category"
8070
  msgstr "Nadřazená rubrika %s"
8071
 
8072
- #: src/Tribe/Main.php:1779
8073
  msgid "All %s Categories"
8074
  msgstr "Všechny rubriky %s"
8075
 
8076
- #: src/Tribe/Main.php:1778
8077
  msgid "Search %s Categories"
8078
  msgstr "Hledat rubriky %s"
8079
 
8080
- #: src/Tribe/Main.php:1777
8081
  msgid "%s Category"
8082
  msgstr "Rubrika %s"
8083
 
8084
- #: src/Tribe/Main.php:1767 src/Tribe/Organizer.php:98 src/Tribe/Venue.php:117
8085
  msgid "No %s found in Trash"
8086
  msgstr "V koši nebyly nalezeny žádné záznamy (%s)"
8087
 
8088
- #: src/Tribe/Main.php:1766 src/Tribe/Organizer.php:97 src/Tribe/Venue.php:116
8089
  msgid "No %s found"
8090
  msgstr "Nebyly nalezeny žádné záznamy (%s)"
8091
 
8092
- #: src/Tribe/Main.php:1765 src/Tribe/Organizer.php:96 src/Tribe/Venue.php:115
8093
  msgid "Search %s"
8094
  msgstr "Hledat %s"
8095
 
8096
- #: src/Tribe/Main.php:1764 src/Tribe/Organizer.php:95 src/Tribe/Venue.php:114
8097
  #: src/views/month/single-day.php:26
8098
  msgid "View %s"
8099
  msgstr "Zobrazit (%s)"
8100
 
8101
- #: src/Tribe/Main.php:1763 src/Tribe/Organizer.php:94 src/Tribe/Venue.php:113
8102
  msgid "New %s"
8103
  msgstr "Vytvořit (%s)"
8104
 
8105
- #: src/Tribe/Main.php:1761 src/Tribe/Main.php:1893 src/Tribe/Main.php:1894
8106
  #: src/Tribe/Organizer.php:92 src/Tribe/Venue.php:111
8107
  msgid "Add New %s"
8108
  msgstr "Vytvořit nový záznam (%s)"
8109
 
8110
- #: src/Tribe/Main.php:1760 src/Tribe/Organizer.php:91 src/Tribe/Venue.php:110
8111
  msgid "Add New"
8112
  msgstr "Vytvořit"
8113
 
8114
- #: src/Tribe/Main.php:1727 src/Tribe/Main.php:2339
8115
  msgid "tag"
8116
  msgstr "stitek"
8117
 
8118
- #: src/Tribe/Main.php:1713 src/Tribe/Main.php:2340
8119
  msgid "category"
8120
  msgstr "rubrika"
8121
 
8122
- #: src/Tribe/Main.php:1465
8123
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8124
  msgstr "Omlouváme se, ale plugin The Events Calendar vyžaduje alespoň PHP %s. Požádejte svého poskytovatele webhostingu o přechod na novější verzi PHP."
8125
 
8126
- #: src/Tribe/Main.php:1462
8127
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8128
  msgstr "Omlouváme se, ale plugin The Events Calendar vyžaduje alespoň WordPress %s. Aktualizujte si prosím svůj WordPress."
8129
 
@@ -8141,72 +8165,72 @@ msgstr "Nápověda"
8141
  msgid "Display"
8142
  msgstr "Zobrazování"
8143
 
8144
- #: src/Tribe/Main.php:1309
8145
  msgid "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8146
  msgstr "Následující pluginy jsou zastaralé: %1$s. Všechny doplňky jsou závislé na pluginu The Events Calendar a nebudou fungovat správně, pokud nejsou spárovány se správnou verzí. %2$sPodrobnější informace%3$s."
8147
 
8148
- #: src/Tribe/Main.php:1297
8149
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8150
  msgstr "Vaše verze pluginu The Events Calendar není dostatečně aktuální s jedním z jeho doplňků. Proveďte prosím %saktualizaci.%s"
8151
 
8152
- #: src/Tribe/Main.php:788
8153
  msgid "Initializing Tribe Events on %s"
8154
  msgstr "Initializing Tribe Events on %s"
8155
 
8156
- #: src/Tribe/Main.php:763
8157
  msgid "today"
8158
  msgstr "dnes"
8159
 
8160
- #: src/Tribe/Main.php:762
8161
  msgid "day"
8162
  msgstr "den"
8163
 
8164
- #: src/Tribe/Main.php:761
8165
  msgid "past"
8166
  msgstr "uplynulé"
8167
 
8168
- #: src/Tribe/Main.php:760
8169
  msgid "upcoming"
8170
  msgstr "nadcházející"
8171
 
8172
- #: src/Tribe/Main.php:759
8173
  msgid "list"
8174
  msgstr "seznam"
8175
 
8176
- #: src/Tribe/Main.php:758
8177
  msgid "month"
8178
  msgstr "měsíc"
8179
 
8180
- #. #-#-#-#-# the-events-calendar-code.pot (The Events Calendar 4.6.20.1)
8181
  #. #-#-#-#-#
8182
  #. Plugin Name of the plugin/theme
8183
  #: common/src/Tribe/Admin/Help_Page.php:59 common/src/Tribe/Customizer.php:569
8184
- #: common/src/Tribe/Plugins_API.php:25 src/Tribe/Main.php:751
8185
- #: src/Tribe/Main.php:1093 src/Tribe/Privacy.php:29
8186
  #: src/functions/template-tags/general.php:1345
8187
  msgid "The Events Calendar"
8188
  msgstr "The Events Calendar"
8189
 
8190
- #: src/Tribe/Main.php:1163 src/admin-views/aggregator/tabs/import-form.php:185
8191
  #: src/admin-views/aggregator/tabs/import-form.php:197
8192
  #: src/functions/template-tags/general.php:63
8193
  msgid "Event"
8194
  msgstr "Akce"
8195
 
8196
  #: common/src/Tribe/Settings.php:177 common/src/Tribe/Settings.php:241
8197
- #: common/src/Tribe/Settings.php:242 src/Tribe/Main.php:1155
8198
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:207
8199
  #: src/functions/template-tags/general.php:95
8200
  msgid "Events"
8201
  msgstr "Akce"
8202
 
8203
- #: src/Tribe/Organizer.php:157 src/functions/template-tags/organizer.php:115
8204
  msgid "Organizer"
8205
  msgstr "Pořadatel"
8206
 
8207
  #: src/Tribe/Organizer.php:171
8208
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:206
8209
- #: src/functions/template-tags/organizer.php:126
8210
  msgid "Organizers"
8211
  msgstr "Pořadatelé"
8212
 
@@ -8470,7 +8494,7 @@ msgstr "Datum:"
8470
  msgid "End:"
8471
  msgstr "Ukončení:"
8472
 
8473
- #: src/Tribe/Aggregator/Record/List_Table.php:498
8474
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
8475
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
8476
  #: src/views/modules/meta/details.php:66 src/views/modules/meta/details.php:91
@@ -8489,7 +8513,7 @@ msgstr "Koncové datum"
8489
  msgid "Start Date"
8490
  msgstr "Počáteční datum"
8491
 
8492
- #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1776
8493
  msgid "%s Categories"
8494
  msgstr "Rubriky %s"
8495
 
@@ -8500,7 +8524,7 @@ msgstr "Došlo k chybě a proces aktualizace časových pásem neskončil v poř
8500
  #: src/Tribe/Admin/Timezone_Updater.php:87
8501
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
8502
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:100
8503
- #: src/Tribe/Aggregator/Record/Queue_Realtime.php:203
8504
  msgid "%d%% complete"
8505
  msgstr "Hotovo: %d%%"
8506
 
@@ -8513,21 +8537,21 @@ msgid "Please wait while time zone data is added to your events."
8513
  msgstr "Počkejte dokud se k vašim akcím nepřidají údaje o časovém pásmu."
8514
 
8515
  #: src/Tribe/Admin/Bar/Default_Configurator.php:62
8516
- #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:211 src/Tribe/Main.php:1762
8517
- #: src/Tribe/Main.php:4862 src/Tribe/Main.php:4909 src/Tribe/Organizer.php:93
8518
  #: src/Tribe/Venue.php:112
8519
  msgid "Edit %s"
8520
  msgstr "Upravit (%s)"
8521
 
8522
- #: src/Tribe/Main.php:4846 src/Tribe/Main.php:4903
8523
  msgid "Use Saved %s:"
8524
  msgstr "Použít dřívější hodnoty"
8525
 
8526
- #: src/Tribe/Main.php:992
8527
  msgid " ask the site administrator set a different Events URL slug."
8528
  msgstr "požádejte administrátora webu aby změnil název v URL u akcí."
8529
 
8530
- #: src/Tribe/Main.php:986
8531
  msgid "Ask the site administrator to edit the %s slug"
8532
  msgstr "Požádejte administrátora webu, aby upravil název v URL (%s)"
8533
 
@@ -8535,7 +8559,7 @@ msgstr "Požádejte administrátora webu, aby upravil název v URL (%s)"
8535
  msgid "Thanks for Updating The Events Calendar"
8536
  msgstr "Děkujeme za aktualizování pluginu The Events Calendar"
8537
 
8538
- #: src/Tribe/Main.php:846 src/Tribe/Main.php:848
8539
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
8540
  msgid "Welcome to The Events Calendar"
8541
  msgstr "Vítejte u pluginu The Events Calendar"
2
  # This file is distributed under the same license as the Plugins - The Events Calendar - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2018-09-03 08:18:30+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: cs_CZ\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
14
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:337
15
+ msgid "The event tag ID or name"
16
+ msgstr ""
17
+
18
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:331
19
+ msgid "The event category ID or name"
20
+ msgstr ""
21
+
22
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:508
23
+ msgid "Events should be filtered by their post_parent being the specified one."
24
+ msgstr ""
25
+
26
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:498
27
+ msgid "Include events with one of the post IDs specified in the array of CSV list, date filters will be ignored."
28
+ msgstr ""
29
+
30
+ #: src/Tribe/Aggregator/Record/Async_Queue.php:348
31
+ #: src/Tribe/Aggregator/Record/Void_Queue.php:122
32
+ msgid "Unable to process this import - a breakage or conflict may have resulted in the import halting."
33
+ msgstr ""
34
+
35
+ #: common/src/Tribe/Plugins_API.php:37
36
+ msgid "Event Aggregator adds massive import functionality to your calendar. Before you know it, you’ll be importing events from Meetup, Eventbrite, Google Calendar, iCalendar, and other URLs with ease. Schedule imports to run automatically behind-the-scenes or run them manually when you’re ready. Go ahead and import to your heart’s content—Event Aggregator hooks you up with a central dashboard in the admin to make managing your imports a breeze."
37
+ msgstr ""
38
+
39
  #: src/views/month/single-day.php:57
40
  msgid "%s for %s"
41
  msgstr "%s pro %s"
208
  msgid "Do more with Eventbrite Tickets"
209
  msgstr ""
210
 
211
+ #: src/Tribe/Main.php:4114
212
  msgid "Search for %s by month. Please use the format %s."
213
  msgstr ""
214
 
215
+ #: src/Tribe/Main.php:4109
216
  msgid "Search for %s by Date. Please use the format %s."
217
  msgstr ""
218
 
219
+ #: src/Tribe/Main.php:4077 src/Tribe/Main.php:4078
220
  msgid "2 digit month dot 4 digit year"
221
  msgstr ""
222
 
223
+ #: src/Tribe/Main.php:4076
224
  msgid "4 digit year dot 2 digit month"
225
  msgstr ""
226
 
227
+ #: src/Tribe/Main.php:4075
228
  msgid "2 digit month hyphen 4 digit year"
229
  msgstr ""
230
 
231
+ #: src/Tribe/Main.php:4072 src/Tribe/Main.php:4073 src/Tribe/Main.php:4074
232
  msgid "1 digit month hyphen 4 digit year"
233
  msgstr ""
234
 
235
+ #: src/Tribe/Main.php:4069 src/Tribe/Main.php:4071
236
  msgid "2 digit month slash 4 digit year"
237
  msgstr ""
238
 
239
+ #: src/Tribe/Main.php:4068 src/Tribe/Main.php:4070
240
  msgid "1 digit month slash 4 digit year"
241
  msgstr ""
242
 
243
+ #: src/Tribe/Main.php:4067
244
  msgid "4 digit year hyphen 2 digit month"
245
  msgstr ""
246
 
247
+ #: src/Tribe/Main.php:4063
248
  msgid "2 digit day dot 2 digit month dot 4 digit year"
249
  msgstr ""
250
 
251
+ #: src/Tribe/Main.php:4062
252
  msgid "2 digit month dot 2 digit day dot 4 digit year"
253
  msgstr ""
254
 
255
+ #: src/Tribe/Main.php:4061
256
  msgid "4 digit year dot 2 digit month dot 2 digit day"
257
  msgstr ""
258
 
259
+ #: src/Tribe/Main.php:4060
260
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
261
  msgstr ""
262
 
263
+ #: src/Tribe/Main.php:4059
264
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
265
  msgstr ""
266
 
267
+ #: src/Tribe/Main.php:4058
268
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
269
  msgstr ""
270
 
271
+ #: src/Tribe/Main.php:4057
272
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
273
  msgstr ""
274
 
275
+ #: src/Tribe/Main.php:4056
276
  msgid "2 digit day slash 2 digit month slash 4 digit year"
277
  msgstr ""
278
 
279
+ #: src/Tribe/Main.php:4055
280
  msgid "1 digit day slash 1 digit month slash 4 digit year"
281
  msgstr ""
282
 
283
+ #: src/Tribe/Main.php:4054
284
  msgid "2 digit month slash 2 digit day slash 4 digit year"
285
  msgstr ""
286
 
287
+ #: src/Tribe/Main.php:4053
288
  msgid "1 digit month slash 1 digit day slash 4 digit year"
289
  msgstr ""
290
 
291
+ #: src/Tribe/Main.php:4052
292
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
293
  msgstr ""
294
 
295
+ #: src/Tribe/Main.php:4031
296
  msgid "Search for %s by Keyword."
297
  msgstr ""
298
 
520
  msgstr ""
521
 
522
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
523
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:385
524
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
525
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
526
  msgid "The requested page was not found."
534
  msgid "one week"
535
  msgstr "jeden týden"
536
 
537
+ #: src/Tribe/Aggregator/Record/List_Table.php:577
538
  msgctxt "when the retry will happen, a date"
539
  msgid "retrying at %s"
540
  msgstr ""
541
 
542
+ #: src/Tribe/Aggregator/Record/List_Table.php:574
543
  msgctxt "in human readable time"
544
  msgid "retrying in about %s"
545
  msgstr ""
621
  msgstr "Hlavní %s stránka"
622
 
623
  #: common/src/Tribe/Plugins_API.php:71
624
+ msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Guest check in is easy with QR codes and our custom scanning app."
625
  msgstr ""
626
 
627
  #: src/admin-views/tribe-options-general.php:31
653
  msgid "The event with the specified ID is not accessible."
654
  msgstr ""
655
 
656
+ #: src/Tribe/Main.php:1812
657
  msgid "%1$s published. %2$sView %3$s"
658
  msgstr ""
659
 
737
 
738
  #: src/Tribe/REST/V1/Messages.php:41
739
  msgid "The organizer could not be updated"
740
+ msgstr "Pořadatel by neměl být upravován"
741
 
742
  #: src/Tribe/REST/V1/Messages.php:40
743
  msgid "The venue could not be updated"
744
+ msgstr "Místo konání by nemělo být upravováno"
745
 
746
  #: src/Tribe/REST/V1/Messages.php:39
747
  msgid "The event could not be updated"
1004
  msgid "the event post name"
1005
  msgstr ""
1006
 
1007
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:354
1008
  msgid "The event organizer IDs or data"
1009
  msgstr ""
1010
 
1011
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:346
1012
  msgid "The event venue ID or data"
1013
  msgstr ""
1014
 
1251
  msgid "Returns all the organizers matching the search criteria"
1252
  msgstr ""
1253
 
1254
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:494
1255
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1256
  msgstr ""
1257
 
1258
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:488
1259
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1260
  msgstr ""
1261
 
1262
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:482
1263
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1264
  msgstr ""
1265
 
1266
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:477
1267
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1268
  msgid "The event post status"
1269
  msgstr ""
1270
 
1271
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:470
1272
  msgid "Events should be filtered by their featured status"
1273
  msgstr ""
1274
 
1275
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:462
1276
  msgid "Events should be assigned one of the specified organizer IDs"
1277
  msgstr ""
1278
 
1279
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1280
  msgid "Events should be assigned one of the specified venue IDs"
1281
  msgstr ""
1282
 
1370
  msgid "The event status"
1371
  msgstr ""
1372
 
1373
+ #: src/Tribe/Linked_Posts.php:1254
1374
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1375
  msgid "Create or Find %s"
1376
  msgstr ""
1377
 
1378
+ #: src/Tribe/Linked_Posts.php:1245
1379
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1380
  msgid "Find %1$s %2$s"
1381
  msgstr ""
1382
 
1383
+ #: src/Tribe/Linked_Posts.php:1236
1384
  msgid "Find a Venue"
1385
  msgstr ""
1386
 
1387
+ #: src/Tribe/Linked_Posts.php:1235
1388
  msgid "Create or Find a Venue"
1389
  msgstr ""
1390
 
1391
+ #: src/Tribe/Linked_Posts.php:1228
1392
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1393
  msgid "Create or Find %s"
1394
  msgstr ""
1395
 
1396
+ #: src/Tribe/Linked_Posts.php:1219
1397
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1398
  msgid "Find %1$s %2$s"
1399
  msgstr ""
1400
 
1401
+ #: src/Tribe/Linked_Posts.php:1208
1402
  msgid "Find an Organizer"
1403
  msgstr ""
1404
 
1405
+ #: src/Tribe/Linked_Posts.php:1207
1406
  msgid "Create or Find an Organizer"
1407
  msgstr ""
1408
 
1409
+ #: src/Tribe/Linked_Posts.php:1200
1410
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1411
  msgid "Create or Find %s"
1412
  msgstr ""
1413
 
1414
+ #: src/Tribe/Linked_Posts.php:1191
1415
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1416
  msgid "Find %1$s %2$s"
1417
  msgstr ""
1507
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1508
  msgstr ""
1509
 
1510
+ #: src/Tribe/Main.php:996
1511
  msgid "edit Events settings."
1512
  msgstr ""
1513
 
1514
+ #: src/Tribe/Main.php:987
1515
  msgid "Edit the %s slug"
1516
  msgstr ""
1517
 
1518
+ #: src/Tribe/Linked_Posts.php:1177
1519
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1520
  msgid "an"
1521
  msgstr ""
1522
 
1523
+ #: src/Tribe/Linked_Posts.php:1170
1524
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1525
  msgid "a"
1526
  msgstr ""
1562
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1563
  msgstr ""
1564
 
 
 
 
 
1565
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1566
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1567
  msgstr ""
1606
  msgid "The event WordPress post ID"
1607
  msgstr ""
1608
 
1609
+ #: src/Tribe/Aggregator/Record/Abstract.php:363
1610
  msgid "Something went wrong while inserting the record in the database."
1611
  msgstr ""
1612
 
1625
  msgid "Please refresh the page and try your request again."
1626
  msgstr ""
1627
 
1628
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:29
1629
  msgid "The image WordPress post ID"
1630
  msgstr ""
1631
 
1685
  msgid "The event last modification date in UTC time"
1686
  msgstr ""
1687
 
1688
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:419
1689
  msgid "Events should start after the specified date"
1690
  msgstr ""
1691
 
1692
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:426
1693
  msgid "Events should start before the specified date"
1694
  msgstr ""
1695
 
1725
  msgid "the event post ID"
1726
  msgstr ""
1727
 
1728
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:432
1729
  msgid "Events should contain the specified string in the title or description"
1730
  msgstr ""
1731
 
1898
  #: src/Tribe/REST/V1/Documentation/Organizer_Definition_Provider.php:65
1899
  #: src/Tribe/REST/V1/Endpoints/Single_Organizer.php:248
1900
  msgid "The organizer name"
1901
+ msgstr "Jméno pořadatele"
1902
 
1903
  #: src/Tribe/REST/V1/Documentation/Organizer_Definition_Provider.php:69
1904
  msgid "The organizer long description"
2021
  msgstr ""
2022
 
2023
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2024
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:404
2025
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2026
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2027
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2028
  msgid "The archive page to return"
2029
  msgstr ""
2030
 
2031
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:412
2032
  msgid "The number of events to return on each page"
2033
  msgstr ""
2034
 
2035
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
2036
  msgid "Events should be assigned one of the specified categories slugs or IDs"
2037
  msgstr ""
2038
 
2039
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:446
2040
  msgid "Events should be assigned one of the specified tags slugs or IDs"
2041
  msgstr ""
2042
 
2043
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:374
2044
  msgid "Returns all the upcoming events matching the search criteria"
2045
  msgstr ""
2046
 
2047
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:36
2048
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:382
2049
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:64
2050
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:53
2051
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:61
2260
  msgid "three months"
2261
  msgstr ""
2262
 
2263
+ #: src/Tribe/Aggregator/Tabs/New.php:385
2264
  msgid "%1$d new event tag was created."
2265
  msgid_plural "%1$d new event tags were created."
2266
  msgstr[0] ""
2267
  msgstr[1] ""
2268
  msgstr[2] ""
2269
 
2270
+ #: src/Tribe/Aggregator/Tabs/New.php:389
2271
  msgid "View your event tags"
2272
  msgstr ""
2273
 
2326
  msgid "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2327
  msgstr ""
2328
 
2329
+ #: src/Tribe/Main.php:763
2330
  msgctxt "all events slug"
2331
  msgid "all"
2332
  msgstr "vše"
2367
  msgid "The WordPress term ID"
2368
  msgstr ""
2369
 
2370
+ #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:37
2371
  msgid "The link to the image in the specified size on the site"
2372
  msgstr ""
2373
 
2383
  msgid "The image width in pixels in the specified size"
2384
  msgstr ""
2385
 
2386
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:45
2387
  msgid "The details about each size available for the image"
2388
  msgstr ""
2389
 
2390
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:41
2391
  msgid "The image natural height in pixels"
2392
  msgstr ""
2393
 
2394
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:37
2395
  msgid "The image natural width in pixels"
2396
  msgstr ""
2397
 
2398
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:33
2399
  msgid "The image file extension"
2400
  msgstr ""
2401
 
2403
  msgid "The venue WordPress post ID"
2404
  msgstr ""
2405
 
2406
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:25
2407
  msgid "The URL to the full size version of the image"
2408
  msgstr ""
2409
 
2443
  msgid "The cost currency symbol"
2444
  msgstr ""
2445
 
2446
+ #: src/Tribe/Main.php:4035
2447
  msgid "Keyword"
2448
  msgstr "Klíčové slovo"
2449
 
2518
  msgid "Export Events"
2519
  msgstr "Export akcí"
2520
 
2521
+ #: src/Tribe/Main.php:762
2522
  msgctxt "featured events slug"
2523
  msgid "featured"
2524
  msgstr ""
2525
 
2526
+ #: src/Tribe/Linked_Posts.php:1133
2527
  msgid "Create: <b><%= term %></b>"
2528
  msgstr ""
2529
 
2672
  msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2673
  msgstr ""
2674
 
2675
+ #: src/Tribe/Assets.php:685 src/deprecated/Tribe__Events__Asset__Dynamic.php:77
2676
  msgid "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2677
  msgstr ""
2678
 
2679
+ #: src/Tribe/Assets.php:684 src/deprecated/Tribe__Events__Asset__Dynamic.php:76
2680
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2681
  msgstr ""
2682
 
2683
+ #: src/Tribe/Assets.php:683 src/deprecated/Tribe__Events__Asset__Dynamic.php:75
2684
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2685
  msgstr ""
2686
 
2687
+ #: src/Tribe/Assets.php:682 src/deprecated/Tribe__Events__Asset__Dynamic.php:74
2688
  msgid "This event is all day on %%startdatewithyear%%."
2689
  msgstr ""
2690
 
2691
+ #: src/Tribe/Assets.php:681 src/deprecated/Tribe__Events__Asset__Dynamic.php:73
2692
  msgid "This event is at %%starttime%% on %%startdatewithyear%%."
2693
  msgstr ""
2694
 
2695
+ #: src/Tribe/Assets.php:680 src/deprecated/Tribe__Events__Asset__Dynamic.php:72
2696
  msgid "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2697
  msgstr ""
2698
 
2699
+ #: src/Tribe/Assets.php:677 src/deprecated/Tribe__Events__Asset__Dynamic.php:69
2700
  msgid "Dec"
2701
  msgstr ""
2702
 
2703
+ #: src/Tribe/Assets.php:676 src/deprecated/Tribe__Events__Asset__Dynamic.php:68
2704
  msgid "Nov"
2705
  msgstr "Lis"
2706
 
2707
+ #: src/Tribe/Assets.php:675 src/deprecated/Tribe__Events__Asset__Dynamic.php:67
2708
  msgid "Oct"
2709
  msgstr "Říj"
2710
 
2711
+ #: src/Tribe/Assets.php:674 src/deprecated/Tribe__Events__Asset__Dynamic.php:66
2712
  msgid "Sep"
2713
  msgstr "Zář"
2714
 
2715
+ #: src/Tribe/Assets.php:673 src/deprecated/Tribe__Events__Asset__Dynamic.php:65
2716
  msgid "Aug"
2717
  msgstr "Srp"
2718
 
2719
+ #: src/Tribe/Assets.php:672 src/deprecated/Tribe__Events__Asset__Dynamic.php:64
2720
  msgid "Jul"
2721
  msgstr "Čvc"
2722
 
2723
+ #: src/Tribe/Assets.php:671 src/deprecated/Tribe__Events__Asset__Dynamic.php:63
2724
  msgid "Jun"
2725
  msgstr "Čvn"
2726
 
2727
+ #: src/Tribe/Assets.php:669 src/deprecated/Tribe__Events__Asset__Dynamic.php:61
2728
  msgid "Apr"
2729
  msgstr "Dub"
2730
 
2731
+ #: src/Tribe/Assets.php:668 src/deprecated/Tribe__Events__Asset__Dynamic.php:60
2732
  msgid "Mar"
2733
  msgstr "Bře"
2734
 
2735
+ #: src/Tribe/Assets.php:667 src/deprecated/Tribe__Events__Asset__Dynamic.php:59
2736
  msgid "Feb"
2737
  msgstr "Úno"
2738
 
2739
+ #: src/Tribe/Assets.php:666 src/deprecated/Tribe__Events__Asset__Dynamic.php:58
2740
  msgid "Jan"
2741
  msgstr "Led"
2742
 
2743
+ #: src/Tribe/Assets.php:663 src/deprecated/Tribe__Events__Asset__Dynamic.php:55
2744
  msgid "December"
2745
  msgstr "Prosinec"
2746
 
2747
+ #: src/Tribe/Assets.php:662 src/deprecated/Tribe__Events__Asset__Dynamic.php:54
2748
  msgid "November"
2749
  msgstr "Listopad"
2750
 
2751
+ #: src/Tribe/Assets.php:661 src/deprecated/Tribe__Events__Asset__Dynamic.php:53
2752
  msgid "October"
2753
  msgstr "Říjen"
2754
 
2755
+ #: src/Tribe/Assets.php:660 src/deprecated/Tribe__Events__Asset__Dynamic.php:52
2756
  msgid "September"
2757
  msgstr "Září"
2758
 
2759
+ #: src/Tribe/Assets.php:659 src/deprecated/Tribe__Events__Asset__Dynamic.php:51
2760
  msgid "August"
2761
  msgstr "Srpen"
2762
 
2763
+ #: src/Tribe/Assets.php:658 src/deprecated/Tribe__Events__Asset__Dynamic.php:50
2764
  msgid "July"
2765
  msgstr "Červenec"
2766
 
2767
+ #: src/Tribe/Assets.php:657 src/deprecated/Tribe__Events__Asset__Dynamic.php:49
2768
  msgid "June"
2769
  msgstr "Červen"
2770
 
2771
+ #: src/Tribe/Assets.php:656 src/Tribe/Assets.php:670
2772
+ #: src/deprecated/Tribe__Events__Asset__Dynamic.php:48
2773
+ #: src/deprecated/Tribe__Events__Asset__Dynamic.php:62
2774
  msgid "May"
2775
  msgstr "Květen"
2776
 
2777
+ #: src/Tribe/Assets.php:655 src/deprecated/Tribe__Events__Asset__Dynamic.php:47
2778
  msgid "April"
2779
  msgstr "Duben"
2780
 
2781
+ #: src/Tribe/Assets.php:654 src/deprecated/Tribe__Events__Asset__Dynamic.php:46
2782
  msgid "March"
2783
  msgstr "Březen"
2784
 
2785
+ #: src/Tribe/Assets.php:653 src/deprecated/Tribe__Events__Asset__Dynamic.php:45
2786
  msgid "February"
2787
  msgstr "Únor"
2788
 
2789
+ #: src/Tribe/Assets.php:652 src/deprecated/Tribe__Events__Asset__Dynamic.php:44
2790
  msgid "January"
2791
  msgstr "Leden"
2792
 
2793
+ #: src/Tribe/Assets.php:649 src/deprecated/Tribe__Events__Asset__Dynamic.php:41
2794
  msgid "Sat"
2795
  msgstr "So"
2796
 
2797
+ #: src/Tribe/Assets.php:648 src/deprecated/Tribe__Events__Asset__Dynamic.php:40
2798
  msgid "Fri"
2799
  msgstr "Pá"
2800
 
2801
+ #: src/Tribe/Assets.php:647 src/deprecated/Tribe__Events__Asset__Dynamic.php:39
2802
  msgid "Thu"
2803
  msgstr "Čt"
2804
 
2805
+ #: src/Tribe/Assets.php:646 src/deprecated/Tribe__Events__Asset__Dynamic.php:38
2806
  msgid "Wed"
2807
  msgstr "St"
2808
 
2809
+ #: src/Tribe/Assets.php:645 src/deprecated/Tribe__Events__Asset__Dynamic.php:37
2810
  msgid "Tue"
2811
  msgstr "Út"
2812
 
2813
+ #: src/Tribe/Assets.php:644 src/deprecated/Tribe__Events__Asset__Dynamic.php:36
2814
  msgid "Mon"
2815
  msgstr "Po"
2816
 
2817
+ #: src/Tribe/Assets.php:643 src/deprecated/Tribe__Events__Asset__Dynamic.php:35
2818
  msgid "Sun"
2819
  msgstr "Ne"
2820
 
2821
+ #: src/Tribe/Assets.php:640 src/deprecated/Tribe__Events__Asset__Dynamic.php:32
2822
  msgid "Saturday"
2823
  msgstr "Sobota"
2824
 
2825
+ #: src/Tribe/Assets.php:639 src/deprecated/Tribe__Events__Asset__Dynamic.php:31
2826
  msgid "Friday"
2827
  msgstr "Pátek"
2828
 
2829
+ #: src/Tribe/Assets.php:638 src/deprecated/Tribe__Events__Asset__Dynamic.php:30
2830
  msgid "Thursday"
2831
  msgstr "Čtvrtek"
2832
 
2833
+ #: src/Tribe/Assets.php:637 src/deprecated/Tribe__Events__Asset__Dynamic.php:29
2834
  msgid "Wednesday"
2835
  msgstr "Středa"
2836
 
2837
+ #: src/Tribe/Assets.php:636 src/deprecated/Tribe__Events__Asset__Dynamic.php:28
2838
  msgid "Tuesday"
2839
  msgstr "Úterý"
2840
 
2841
+ #: src/Tribe/Assets.php:635 src/deprecated/Tribe__Events__Asset__Dynamic.php:27
2842
  msgid "Monday"
2843
  msgstr "Pondělí"
2844
 
2845
+ #: src/Tribe/Assets.php:634 src/deprecated/Tribe__Events__Asset__Dynamic.php:26
2846
  msgid "Sunday"
2847
  msgstr "Neděle"
2848
 
2923
  msgid "Unknown service message"
2924
  msgstr ""
2925
 
2926
+ #: src/Tribe/Aggregator/Record/List_Table.php:540
2927
  msgid "Unknown"
2928
  msgstr ""
2929
 
2930
+ #: src/Tribe/Aggregator/Record/Abstract.php:1206
2931
  msgid "When this import was last scheduled to run, the daily limit for your Event Aggregator license had already been reached."
2932
  msgstr ""
2933
 
3219
 
3220
  #: src/admin-views/aggregator/settings.php:688
3221
  msgid "Help page"
3222
+ msgstr "Nápověda"
3223
 
3224
  #: src/admin-views/aggregator/settings.php:684
3225
  msgid "Use the options below to configure your imports. Global Import Settings apply to all imports, but you can also override the global settings by adjusting the origin-specific options. Check your Event Aggregator Service Status on the %1$s."
3479
 
3480
  #: src/admin-views/aggregator/origins/gcal.php:83
3481
  msgid "Enter the url for the Google Calendar feed you wish to import."
3482
+ msgstr "Vložte adresu Google kalendáře, který si přejete importovat."
3483
 
3484
  #: src/admin-views/aggregator/origins/gcal.php:82
3485
  msgid "https://calendar.google.com/calendar/ical/example/basic.ics"
3641
 
3642
  #: src/admin-views/admin-welcome-message.php:29
3643
  msgid "News and Announcements"
3644
+ msgstr "Novinky a oznámení"
3645
 
3646
  #: src/admin-views/admin-welcome-message.php:28
3647
  msgid "Developer News"
3665
  msgid "mi"
3666
  msgstr ""
3667
 
3668
+ #: src/Tribe/Main.php:982
3669
  msgid "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3670
  msgstr ""
3671
 
3683
 
3684
  #: src/Tribe/Ignored_Events.php:919
3685
  msgid "Event %d: %s"
3686
+ msgstr "Akce %d: %s"
3687
 
3688
  #: src/Tribe/Ignored_Events.php:907
3689
  msgid "Migration: %d Legacy Ignored Post failed to be migrated."
3832
  #: src/Tribe/Ignored_Events.php:43 src/Tribe/Ignored_Events.php:59
3833
  #: src/Tribe/Ignored_Events.php:435
3834
  msgid "Delete Permanently"
3835
+ msgstr "Smazat trvale"
3836
 
3837
  #: src/Tribe/Aggregator.php:443
3838
  msgid "Renew your Event Aggregator Facebook token"
3888
 
3889
  #: src/Tribe/Aggregator/Tabs/Scheduled.php:185
3890
  msgid "delete"
3891
+ msgstr "smazat"
3892
 
3893
  #: src/Tribe/Aggregator/Tabs/Scheduled.php:181
3894
  msgid "queued"
3898
  msgid "Scheduled Imports"
3899
  msgstr ""
3900
 
3901
+ #: src/Tribe/Aggregator/Tabs/New.php:615
3902
  msgid "Renew your Event Aggregator license"
3903
  msgstr ""
3904
 
3905
+ #: src/Tribe/Aggregator/Tabs/New.php:612
3906
  msgid "Renew your license in order to import events from Facebook, iCalendar, Google, or Meetup."
3907
  msgstr ""
3908
 
3909
+ #: src/Tribe/Aggregator/Tabs/New.php:611
3910
  msgid "Your Event Aggregator license is expired."
3911
  msgstr ""
3912
 
3913
+ #: src/Tribe/Aggregator/Tabs/New.php:563
3914
  msgid "Learn More"
3915
  msgstr ""
3916
 
3917
+ #: src/Tribe/Aggregator/Tabs/New.php:558 src/Tribe/Aggregator/Tabs/New.php:565
3918
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:19
3919
  msgid "opens in a new window"
3920
  msgstr ""
3921
 
3922
+ #: src/Tribe/Aggregator/Tabs/New.php:556
3923
  msgid "Buy It Now"
3924
  msgstr ""
3925
 
3926
+ #: src/Tribe/Aggregator/Tabs/New.php:553
3927
  msgid "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3928
  msgstr ""
3929
 
3930
+ #: src/Tribe/Aggregator/Tabs/New.php:551
3931
  msgid "Import Using Event Aggregator"
3932
  msgstr ""
3933
 
3934
+ #: src/Tribe/Aggregator/Tabs/New.php:464
3935
  msgid "Unable to save credentials"
3936
  msgstr ""
3937
 
3938
+ #: src/Tribe/Aggregator/Tabs/New.php:457
3939
  msgid "Credentials have been saved"
3940
  msgstr ""
3941
 
3942
+ #: src/Tribe/Aggregator/Tabs/New.php:448
3943
  msgid "The Meetup API key is required."
3944
  msgstr ""
3945
 
3946
+ #: src/Tribe/Aggregator/Tabs/New.php:439
3947
  msgid "Invalid credential save nonce"
3948
  msgstr ""
3949
 
3950
+ #: src/Tribe/Aggregator/Tabs/New.php:429
3951
  msgid "Invalid credential save request"
3952
  msgstr ""
3953
 
3954
+ #: src/Tribe/Aggregator/Tabs/New.php:417
3955
  msgid "View your scheduled imports."
3956
  msgstr ""
3957
 
3958
+ #: src/Tribe/Aggregator/Tabs/New.php:413
3959
  msgid "The next import is scheduled for %1$s."
3960
  msgstr ""
3961
 
3962
+ #: src/Tribe/Aggregator/Tabs/New.php:406
3963
  msgctxt "separator between date and time"
3964
  msgid " at "
3965
  msgstr ""
3966
 
3967
+ #: src/Tribe/Aggregator/Tabs/New.php:402
3968
  msgid "Your scheduled import was saved and the first import is complete!"
3969
  msgstr ""
3970
 
3971
+ #: src/Tribe/Aggregator/Tabs/New.php:377
3972
  msgid "View your event categories"
3973
  msgstr ""
3974
 
3975
+ #: src/Tribe/Aggregator/Tabs/New.php:373
3976
  msgid "%1$d new event category was created."
3977
  msgid_plural "%1$d new event categories were created."
3978
  msgstr[0] ""
3979
  msgstr[1] ""
3980
  msgstr[2] ""
3981
 
3982
+ #: src/Tribe/Aggregator/Tabs/New.php:364
3983
  msgid "View your event organizers"
3984
  msgstr ""
3985
 
3986
+ #: src/Tribe/Aggregator/Tabs/New.php:360
3987
  msgid "%1$d new organizer was imported."
3988
  msgid_plural "%1$d new organizers were imported."
3989
  msgstr[0] ""
3990
  msgstr[1] ""
3991
  msgstr[2] ""
3992
 
3993
+ #: src/Tribe/Aggregator/Tabs/New.php:352
3994
  msgid "View your event venues"
3995
  msgstr ""
3996
 
3997
+ #: src/Tribe/Aggregator/Tabs/New.php:348
3998
  msgid "%1$d new venue was imported."
3999
  msgid_plural "%1$d new venues were imported."
4000
  msgstr[0] ""
4001
  msgstr[1] ""
4002
  msgstr[2] ""
4003
 
4004
+ #: src/Tribe/Aggregator/Tabs/New.php:338
4005
  msgid "View all %s"
4006
  msgstr "Zobrazit všechny %s"
4007
 
4008
+ #: src/Tribe/Aggregator/Tabs/New.php:330
4009
  msgid "No %1$s were imported or updated."
4010
  msgstr ""
4011
 
4012
+ #: src/Tribe/Aggregator/Tabs/New.php:323
4013
  msgid "%1$d new image was imported."
4014
  msgid_plural "%1$d new images were imported."
4015
  msgstr[0] ""
4016
  msgstr[1] ""
4017
  msgstr[2] ""
4018
 
4019
+ #: src/Tribe/Aggregator/Tabs/New.php:314
4020
  msgid "%1$d already-imported %2$s was skipped."
4021
  msgid_plural "%1$d already-imported %2$s were skipped."
4022
  msgstr[0] ""
4023
  msgstr[1] ""
4024
  msgstr[2] ""
4025
 
4026
+ #: src/Tribe/Aggregator/Tabs/New.php:303
4027
  msgid "%1$d existing %2$s was updated."
4028
  msgid_plural "%1$d existing %2$s were updated."
4029
  msgstr[0] ""
4030
  msgstr[1] ""
4031
  msgstr[2] ""
4032
 
4033
+ #: src/Tribe/Aggregator/Tabs/New.php:291
4034
  msgid "%1$d new %2$s was imported."
4035
  msgid_plural "%1$d new %2$s were imported."
4036
  msgstr[0] ""
4043
 
4044
  #: src/Tribe/Aggregator/Tabs/New.php:81
4045
  msgid "New Import"
4046
+ msgstr "Nový import"
4047
 
4048
  #: src/Tribe/Aggregator/Tabs/History.php:93
4049
  msgid "History"
4300
  msgid "Events Aggregator Record"
4301
  msgstr ""
4302
 
4303
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:183
4304
  msgid "Unable to continue inserting data. Please reload this page to continue/try again."
4305
  msgstr ""
4306
 
4320
  msgid "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4321
  msgstr ""
4322
 
4323
+ #: src/Tribe/Aggregator/Record/Queue_Processor.php:233
4324
  msgid "Could not process queue for Import Record %1$d: %2$s"
4325
  msgstr ""
4326
 
4327
+ #: src/Tribe/Aggregator/Record/List_Table.php:664
4328
  msgid "Select %s"
4329
  msgstr ""
4330
 
4331
+ #: src/Tribe/Aggregator/Record/List_Table.php:629
4332
+ #: src/Tribe/Aggregator/Record/List_Table.php:638
4333
+ #: src/Tribe/Aggregator/Record/List_Table.php:646
4334
  msgid "updated"
4335
  msgstr ""
4336
 
4337
+ #: src/Tribe/Aggregator/Record/List_Table.php:627
4338
+ #: src/Tribe/Aggregator/Record/List_Table.php:635
4339
+ #: src/Tribe/Aggregator/Record/List_Table.php:643
4340
  msgid "new"
4341
  msgstr ""
4342
 
4343
+ #: src/Tribe/Aggregator/Record/List_Table.php:624
4344
  msgid "Latest Import:"
4345
  msgstr ""
4346
 
4347
+ #: src/Tribe/Aggregator/Record/List_Table.php:622
4348
  msgid "all time"
4349
  msgstr ""
4350
 
4351
+ #: src/Tribe/Aggregator/Record/List_Table.php:596
4352
  msgid "One Time"
4353
  msgstr ""
4354
 
4355
+ #: src/Tribe/Aggregator/Record/List_Table.php:593
4356
  msgid "Invalid Frequency"
4357
  msgstr ""
4358
 
4359
+ #: src/Tribe/Aggregator/Record/List_Table.php:563 src/Tribe/Aggregator.php:426
4360
  #: src/Tribe/Ignored_Events.php:357
4361
  #: src/admin-views/tribe-options-addons-api.php:36
4362
  msgctxt "in human readable time"
4363
  msgid "in about %s"
4364
  msgstr ""
4365
 
4366
+ #: src/Tribe/Aggregator/Record/List_Table.php:561 src/Tribe/Aggregator.php:424
4367
  #: src/Tribe/Ignored_Events.php:355
4368
  #: src/admin-views/tribe-options-addons-api.php:34
4369
  msgctxt "human readable time ago"
4370
  msgid "about %s ago"
4371
  msgstr ""
4372
 
4373
+ #: src/Tribe/Aggregator/Record/List_Table.php:513
4374
  msgid "Radius:"
4375
  msgstr ""
4376
 
4377
+ #: src/Tribe/Aggregator/Record/List_Table.php:496
4378
  msgid "Keywords:"
4379
  msgstr "Klíčová slova:"
4380
 
4381
+ #: src/Tribe/Aggregator/Record/List_Table.php:483
4382
  #: src/Tribe/Ignored_Events.php:337
4383
  msgctxt "record via origin"
4384
  msgid "via "
4385
  msgstr ""
4386
 
4387
+ #: src/Tribe/Aggregator/Record/List_Table.php:440
4388
  msgid "Import preview"
4389
  msgstr ""
4390
 
4391
+ #: src/Tribe/Aggregator/Record/List_Table.php:436
4392
  msgid "Import pending"
4393
  msgstr ""
4394
 
4395
+ #: src/Tribe/Aggregator/Record/List_Table.php:432
4396
  msgid "Import schedule"
4397
  msgstr ""
4398
 
4399
+ #: src/Tribe/Aggregator/Record/List_Table.php:420
4400
  msgid "Import failed"
4401
  msgstr ""
4402
 
4403
+ #: src/Tribe/Aggregator/Record/List_Table.php:416
4404
  msgid "Import completed"
4405
  msgstr ""
4406
 
4486
  msgid "Eventbrite"
4487
  msgstr ""
4488
 
4489
+ #: src/Tribe/Aggregator/Record/Abstract.php:1149
4490
  msgid "Deleted Attachment: %d"
4491
  msgstr ""
4492
 
4493
+ #: src/Tribe/Aggregator/Record/Abstract.php:497
4494
  msgid "Record: "
4495
  msgstr ""
4496
 
4526
  msgstr ""
4527
 
4528
  #: src/Tribe/Aggregator/Page.php:96
4529
+ #: src/Tribe/Aggregator/Record/List_Table.php:492
4530
  msgid "View Filters"
4531
  msgstr ""
4532
 
4886
  msgstr ""
4887
 
4888
  #: common/src/Tribe/PUE/Checker.php:961 common/src/Tribe/PUE/Notices.php:285
4889
+ #: src/Tribe/Aggregator/Record/Abstract.php:1164
4890
  msgid " (opens in a new window)"
4891
  msgstr ""
4892
 
5187
  msgid "No notable changes detected"
5188
  msgstr "Nebyly zjištěny žádné významné změny"
5189
 
5190
+ #: src/Tribe/Main.php:2561
5191
  msgid " (View Full %1$s Description Here: %2$s)"
5192
  msgstr " (úplný popis %1$s najdete zde: %2$s)"
5193
 
5235
  msgid "Keep the Core Plugin %sFREE%s!"
5236
  msgstr "Zachovejte jádro pluginu %sZDARMA%s!"
5237
 
5238
+ #: src/Tribe/Template_Factory.php:231
5239
  msgid "No results were found for %1$s in or near %2$s."
5240
  msgstr "Nebyly nalezeny žádné %1$s poblíž místa %2$s."
5241
 
5242
+ #: src/Tribe/Template_Factory.php:229
5243
  msgid "There were no results found for %s."
5244
  msgstr "Nebyly nalezeny žádné záznamy pro %s."
5245
 
5246
+ #: src/Tribe/Template/Month.php:458
5247
  msgid "There were no results found for %s this month. Try searching next month."
5248
  msgstr "Nebyly nalezeny žádné záznamy pro %s v tomto měsíci. Zkuste hledat v dalším měsíci."
5249
 
5250
+ #: src/Tribe/Template/Day.php:154
5251
  msgid "No %1$s scheduled for %2$s. Please try another day."
5252
  msgstr "Nebyly nalezeny žádné %1$s naplánované na %2$s. Zkuste prosím zvolit jiný den."
5253
 
5254
+ #: src/Tribe/Main.php:3855
5255
  msgid "Check out the %savailable add-ons%s."
5256
  msgstr "Podívejte se na %sdostupné doplňky%s."
5257
 
5258
+ #: src/Tribe/Main.php:1922
5259
  msgid "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5260
  msgstr "Pokud nezadáte žádné místo, vaše akce se zobrazí ve výsledcích vyhledávání bez doplňujících údajů %sGoogle Rich Snippet%s."
5261
 
5262
+ #: src/Tribe/Main.php:1853 src/Tribe/Main.php:1873
5263
  msgid "%1$s scheduled for: %2$s."
5264
  msgstr "%1$s – bude automaticky publikováno: %2$s."
5265
 
5266
+ #: src/Tribe/Main.php:1834
5267
  msgid "%1$s draft updated. %2$sPreview %3$s"
5268
  msgstr "Koncept %1$s byl uložen. %2$sZobrazit náhled %3$s"
5269
 
5270
+ #: src/Tribe/Main.php:1825
5271
  msgid "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5272
  msgstr "%1$s bude automaticky publikována: %2$s. %3$sZobrazit náhled %4$s"
5273
 
5274
+ #: src/Tribe/Main.php:1819
5275
  msgid "%1$s submitted. %2$sPreview %3$s"
5276
  msgstr "%1$s byla odeslána ke schválení. %2$sZobrazit náhled %3$s"
5277
 
5278
+ #: src/Tribe/Main.php:1801
5279
  msgid "%1$s updated. %2$sView %1$s%3$s"
5280
  msgstr "%1$s byla aktualizována. %2$sZobrazit stránku %1$s%3$s"
5281
 
5282
+ #: src/Tribe/Main.php:1476
5283
  msgid "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5284
  msgstr "Vypadá to, že se nepodařilo nalézt knihovny tribe-common! Složka by se měla nacházet v podadresáři \"common/\" pluginu pro kalendář akcí."
5285
 
5286
+ #: src/Tribe/Main.php:1111
5287
  msgid "If you have a valid license for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5288
  msgstr "Pokud máte platnou licenci pro některý z našich placených pluginů, můžete %s v našem prémiovém fóru podpory. Náš tým podpory sleduje toto fórum a odpoví na vaše dotazy během 24-48 hodin (v pracovní dny)."
5289
 
5290
+ #: src/Tribe/Main.php:1110
5291
  msgid "post a thread"
5292
  msgstr "založit vlákno"
5293
 
5294
+ #: src/Tribe/Main.php:1106
5295
  msgid "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays."
5296
  msgstr "<strong>Potřebujete okamžitou pomoc?</strong> Nabízíme %1$s při zakoupení některého z našich prémiových pluginů (jako např. %2$s). Získejte licenci a můžete očekávat odpověď na své dotazy během 24-48 hodin v pracovní dny."
5297
 
5298
+ #: src/Tribe/Main.php:1102
5299
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5300
  msgstr "Pokud jste vyzkoušeli výše uvedené kroky a stále máte potíže, můžete navštívit naše %s a založit nové vlákno. Pracovníci naší podpory jednou týdně kontrolují tato fóra a rádi vám pomohou."
5301
 
5302
+ #: src/Tribe/Main.php:1101
5303
  msgid "open-source forum on WordPress.org"
5304
  msgstr "open-source fórum na WordPress.org"
5305
 
5306
+ #: src/Tribe/Main.php:1097
5307
  msgid "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays"
5308
  msgstr "<strong>Potřebujete okamžitou pomoc?</strong> Nabízíme %s při zakoupení některého z našich prémiových pluginů. Získejte licenci a můžete očekávat odpověď na své dotazy během 24-48 hodin v pracovní dny."
5309
 
5310
+ #: src/Tribe/Main.php:1096 src/Tribe/Main.php:1104
5311
  msgid "premium support on our website"
5312
  msgstr "prémiovou podporu na našem webu"
5313
 
5314
+ #: src/Tribe/Main.php:1094
5315
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5316
  msgstr "Pokud jste vyzkoušeli výše uvedené kroky a stále máte potíže, můžete založit nové vlákno na WordPress.org fórech pro plugin %1$s nebo %2$s. Pracovníci naší podpory jednou týdně kontrolují tato fóra a rádi vám pomohou."
5317
 
5318
+ #: src/Tribe/Main.php:1093
5319
  msgid "Events Tickets"
5320
  msgstr "Events Tickets"
5321
 
5322
+ #: src/Tribe/Main.php:1078
5323
  msgid "Customizing the Events plugins"
5324
  msgstr "Přizpůsobení pluginů pro Akce"
5325
 
5326
+ #: src/Tribe/Main.php:1078
5327
  msgid "%s: Code and guides for customizing your calendar in useful and interesting ways."
5328
  msgstr "%s: Kód a návody pro přizpůsobení vašeho kalendáře užitečnými a zajímavými způsoby."
5329
 
5330
+ #: src/Tribe/Main.php:1076
5331
  msgid "Troubleshooting common problems"
5332
  msgstr "Řešení obvyklých problémů"
5333
 
5334
+ #: src/Tribe/Main.php:1076
5335
  msgid "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5336
  msgstr "%s: Máte problém s vaším kalendářem? Prvně zkuste zjistit zde, jaký je možný zdroj chyby a jak ji opravit."
5337
 
5338
+ #: src/Tribe/Main.php:1074
5339
  msgid "Using stylesheets and page templates"
5340
  msgstr "Používání CSS stylů a šablon stránek"
5341
 
5342
+ #: src/Tribe/Main.php:1074
5343
  msgid "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5344
  msgstr "%s: Přehled výchozích šablon a stylů, které jsou zahrnuty v pluginu, včetně postupů k jejich úpravě."
5345
 
5346
+ #: src/Tribe/Main.php:1072
5347
  msgid "Themer’s Guide"
5348
  msgstr "Příručka šablonáře"
5349
 
5350
+ #: src/Tribe/Main.php:1072
5351
  msgid "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5352
  msgstr "%s: Náš nejkomplexnější návod pro přizpůsobení kalendáře vašim potřebám, včetně vlastních rozvržení a stylů."
5353
 
5354
+ #: src/Tribe/Main.php:1070
5355
  msgid "Features overview"
5356
  msgstr "Přehled funkcí"
5357
 
5358
+ #: src/Tribe/Main.php:1070
5359
  msgid "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5360
  msgstr "%s: Kompletní přehled funkcí, které budete mít k dispozici ihned po instalaci, včetně popisu jak je používat. "
5361
 
5362
+ #: src/Tribe/Main.php:1068
5363
  msgid "Settings overview"
5364
  msgstr "Přehled nastavení"
5365
 
5366
+ #: src/Tribe/Main.php:1068
5367
  msgid "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5368
  msgstr "%s: Detailní průvodce pluginem The Events Calendar a všech jeho nastavení, která máte k dispozici."
5369
 
5370
+ #: src/Tribe/Main.php:1065
5371
  msgid "Support for The Events Calendar"
5372
  msgstr "Podpora pro The Events Calendar"
5373
 
5374
+ #: src/Tribe/Main.php:1054
5375
  msgid "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5376
  msgstr "Chceme vám pomoci udělat váš kalendář akcí působivým a k tomu pro vás máme dostatek informačních zdrojů. Pro začátek by se vám mohla hodit naše %s."
5377
 
5378
+ #: src/Tribe/Main.php:1052
5379
  msgid "New User Primer"
5380
  msgstr "Příručka nového uživatele"
5381
 
5398
  msgid "CSV Import Settings"
5399
  msgstr "Nastavení CSV importu"
5400
 
5401
+ #: src/deprecated/Tribe__Events__Asset__Bootstrap_Datepicker.php:27
5402
  msgid "Clear"
5403
  msgstr "Vymazat"
5404
 
5410
  msgid "Create New %s"
5411
  msgstr "Vytvořit nový záznam (%s)"
5412
 
5413
+ #: src/Tribe/Organizer.php:375
5414
  msgid "Unnamed %s"
5415
  msgstr "Neznámé %s"
5416
 
5599
  msgid "%s must be a positive number or percent."
5600
  msgstr "%s musí být kladné číslo nebo procento."
5601
 
5602
+ #: src/Tribe/Main.php:999
5603
  msgid "%1$s or %2$s"
5604
  msgstr "%1$s nebo %2$s"
5605
 
5656
  msgid "Day Navigation"
5657
  msgstr "Navigace pro dny"
5658
 
5659
+ #: src/Tribe/Aggregator/Tabs/New.php:400
5660
  msgid "Import complete!"
5661
  msgstr "Importování bylo dokončeno!"
5662
 
5899
  msgstr "Více..."
5900
 
5901
  #: common/src/Tribe/Admin/Help_Page.php:194 common/src/Tribe/Plugins_API.php:43
5902
+ #: src/Tribe/Main.php:1105
5903
  msgid "Events Calendar PRO"
5904
  msgstr "Events Calendar PRO"
5905
 
6338
  msgid "%s Website"
6339
  msgstr "Webová stránka %s"
6340
 
6341
+ #: src/Tribe/Aggregator/Record/List_Table.php:509
6342
  msgid "Location:"
6343
  msgstr "Místo:"
6344
 
7743
  msgid "Template overrides should be moved to the correct subdirectory: %s"
7744
  msgstr "Přepisy šablon je třeba přemístit do správného podadresáře: %s"
7745
 
7746
+ #: src/Tribe/Template_Factory.php:237
7747
  msgid "No previous %s "
7748
  msgstr "Žádné předchozí %s"
7749
 
7750
+ #: src/Tribe/Template_Factory.php:235 src/Tribe/Template_Factory.php:240
7751
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7752
  msgstr "Nebyly nalezeny žádné %1$s v rubrice %2$s. Zkuste si zobrazit úplný kalendář a prohlédnout ostatní %3$s."
7753
 
7754
+ #: src/Tribe/Template_Factory.php:233
7755
  msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7756
  msgstr "Žádné nadcházející %1$s v rubrice %2$s. Podívejte se na nadcházející %3$s z této rubriky nebo si zobrazte úplný kalendář."
7757
 
7759
  msgid "This %s has passed."
7760
  msgstr "%s již proběhla."
7761
 
7762
+ #: src/Tribe/Template/Month.php:955
7763
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7764
  msgstr "Požadované datum \"%s\" nebylo platné &ndash; místo toho se zobrazuje aktuální měsíc"
7765
 
7766
+ #: src/Tribe/Template/Month.php:464 src/Tribe/Template_Factory.php:242
7767
  msgid "There were no results found."
7768
  msgstr "Nebyly nalezeny žádné záznamy."
7769
 
7770
+ #: src/Tribe/Template/Month.php:462
7771
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7772
  msgstr "Nebyly nalezeny žádné %1$s v rubrice %2$s. Zkuste si prosím zobrazit úplný kalendář se seznamem všech akcí."
7773
 
7774
+ #: src/Tribe/Template/Day.php:152
7775
  msgid "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7776
  msgstr "Nebyly nalezeny žádné %1$s v rubrice %2$s naplánované na %3$s. Zkuste prosím zvolit jiný den."
7777
 
7778
+ #: src/Tribe/Template/Day.php:118 src/Tribe/Template/Day.php:134
7779
  msgid "Ongoing"
7780
  msgstr "Právě probíhající"
7781
 
7782
+ #: src/Tribe/Aggregator/Page.php:82 src/Tribe/Template/Day.php:115
7783
+ #: src/Tribe/Template/Day.php:131
7784
  msgid "All Day"
7785
  msgstr "Celý den"
7786
 
7876
  msgid "Error"
7877
  msgstr "Chyba"
7878
 
7879
+ #: src/Tribe/Main.php:4198
7880
  msgid "Once Every 30 Mins"
7881
  msgstr "Jednou za 30 minut"
7882
 
7883
+ #: src/Tribe/Main.php:4118
7884
  msgid "Day Of"
7885
  msgstr "Dne"
7886
 
7887
+ #: src/Tribe/Main.php:4116
7888
  msgid "%s From"
7889
  msgstr "%s od"
7890
 
7891
+ #: src/Tribe/Main.php:4112
7892
  msgid "%s In"
7893
  msgstr "%s v"
7894
 
7895
+ #: src/Tribe/Main.php:4107 src/Tribe/Main.php:4132
7896
  #: src/admin-views/aggregator/origins/refine.php:7
7897
  msgid "Date"
7898
  msgstr "Datum"
7899
 
7900
+ #: src/Tribe/Main.php:4034
7901
  msgid "Search"
7902
  msgstr "Hledat"
7903
 
7904
+ #: src/Tribe/Main.php:4008 src/admin-views/aggregator/fields/schedule.php:44
7905
  #: src/admin-views/aggregator/fields/schedule.php:62
7906
  msgid "Day"
7907
  msgstr "Den"
7908
 
7909
+ #: src/Tribe/Main.php:3991
7910
  msgid "Month"
7911
  msgstr "Měsíc"
7912
 
7913
+ #: src/Tribe/Main.php:3973
7914
  msgid "List"
7915
  msgstr "Seznam"
7916
 
7917
+ #: src/Tribe/Main.php:3957
7918
  msgid "Calendar"
7919
  msgstr "Kalendář"
7920
 
7921
  #: common/src/Tribe/Settings.php:254
7922
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:89 src/Tribe/Main.php:3956
7923
  msgid "Settings"
7924
  msgstr "Nastavení"
7925
 
7933
  msgid "Add %s"
7934
  msgstr "Vytvořit (%s)"
7935
 
7936
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:45 src/Tribe/Main.php:3907
7937
  msgid "View Calendar"
7938
  msgstr "Zobrazit kalendář"
7939
 
7941
  msgid "%s"
7942
  msgstr "%s"
7943
 
7944
+ #: src/Tribe/Main.php:3854
7945
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7946
  msgstr "Hledáte další funkce, včetně opakujících se akcí, prodeje vstupenek, veřejně přidávaných akcí, nových způsobů zobrazení a další?"
7947
 
7948
+ #: src/Tribe/Main.php:3849
7949
  msgid "Additional Functionality"
7950
  msgstr "Další funkce"
7951
 
7952
+ #: src/Tribe/Main.php:3804
7953
  msgid "News from Modern Tribe"
7954
  msgstr "Novinky od Modern Tribe"
7955
 
7956
+ #: src/Tribe/Main.php:3784
7957
  msgid "View All Add-Ons"
7958
  msgstr "Prohlédnout všechny doplňky"
7959
 
7960
+ #: src/Tribe/Main.php:3781
7961
  msgid "Support"
7962
  msgstr "Podpora"
7963
 
7964
+ #: src/Tribe/Main.php:3429 src/Tribe/Main.php:3442
7965
  msgid "%s Information"
7966
  msgstr "%s – údaje"
7967
 
7968
+ #: src/Tribe/Main.php:3420
7969
  msgid "%s Options"
7970
  msgstr "Nastavení %s"
7971
 
7972
+ #: src/Tribe/Main.php:3343 src/Tribe/Main.php:3378
7973
  #: src/functions/template-tags/day.php:157
7974
  #: src/functions/template-tags/day.php:178
7975
  msgid "Date out of range."
7976
  msgstr "Datum je mimo platný rozsah."
7977
 
7978
+ #: src/Tribe/Main.php:2170
7979
  msgid "all"
7980
  msgstr "vse"
7981
 
7982
+ #: src/Tribe/Main.php:2169 src/functions/template-tags/general.php:111
7983
  msgid "events"
7984
  msgstr "kalendar-akci"
7985
 
7986
+ #: src/Tribe/Main.php:2168 src/functions/template-tags/general.php:79
7987
  msgid "event"
7988
  msgstr "akce"
7989
 
7990
+ #: src/Tribe/Main.php:2167
7991
  msgid "page"
7992
  msgstr "strana"
7993
 
7999
  msgid "Done"
8000
  msgstr "Hotovo"
8001
 
8002
+ #: common/src/Tribe/Main.php:272
8003
+ #: src/deprecated/Tribe__Events__Asset__Bootstrap_Datepicker.php:28
8004
  #: src/functions/template-tags/day.php:104
8005
  msgid "Today"
8006
  msgstr "Dnes"
8013
  msgid "Next"
8014
  msgstr "Další"
8015
 
8016
+ #: src/Tribe/Linked_Posts.php:1138
8017
  msgid "No saved %s exists."
8018
  msgstr "Zatím nebyl uložen žádný záznam."
8019
 
8020
+ #: src/Tribe/Linked_Posts.php:964
8021
  msgid "Available %s"
8022
  msgstr "%s k dispozici"
8023
 
8024
+ #: src/Tribe/Linked_Posts.php:960
8025
  msgid "My %s"
8026
  msgstr "Moje záznamy"
8027
 
8028
+ #: src/Tribe/Main.php:1858 src/Tribe/Main.php:1878
8029
  msgid "%s draft updated."
8030
  msgstr "Koncept (%s) byl uložen."
8031
 
8032
+ #: src/Tribe/Main.php:1851 src/Tribe/Main.php:1871
8033
  msgid "%s submitted."
8034
  msgstr "%s – odesláno ke schválení."
8035
 
8036
+ #: src/Tribe/Main.php:1849 src/Tribe/Main.php:1869
8037
  msgid "%s published."
8038
  msgstr "%s – publikováno."
8039
 
8040
  #. translators: %s: date and time of the revision
8041
+ #: src/Tribe/Main.php:1868
8042
  msgid "%s restored to revision from %s"
8043
  msgstr "Následující verze (%s) byla úspěšně obnovena: %s"
8044
 
8045
  #. translators: Publish box date format, see http://php.net/date
8046
+ #: src/Tribe/Main.php:1828 src/Tribe/Main.php:1856 src/Tribe/Main.php:1876
8047
  msgid "M j, Y @ G:i"
8048
  msgstr "j.n.Y, G:i"
8049
 
8050
+ #: src/Tribe/Main.php:1817 src/Tribe/Main.php:1850 src/Tribe/Main.php:1870
8051
  msgid "%s saved."
8052
  msgstr "%s – uloženo."
8053
 
8054
  #. translators: %s: date and time of the revision
8055
+ #: src/Tribe/Main.php:1810 src/Tribe/Main.php:1848
8056
  msgid "%1$s restored to revision from %2$s"
8057
  msgstr "Následující verze %1$s byla úspěšně obnovena: %2$s"
8058
 
8059
+ #: src/Tribe/Main.php:1808 src/Tribe/Main.php:1843 src/Tribe/Main.php:1846
8060
+ #: src/Tribe/Main.php:1863 src/Tribe/Main.php:1866
8061
  msgid "%s updated."
8062
  msgstr "%s – aktualizováno."
8063
 
8064
+ #: src/Tribe/Main.php:1807 src/Tribe/Main.php:1845 src/Tribe/Main.php:1865
8065
  msgid "Custom field deleted."
8066
  msgstr "Uživatelské pole bylo smazáno."
8067
 
8068
+ #: src/Tribe/Main.php:1806 src/Tribe/Main.php:1844 src/Tribe/Main.php:1864
8069
  msgid "Custom field updated."
8070
  msgstr "Uživatelské pole bylo aktualizováno."
8071
 
8072
+ #: src/Tribe/Main.php:1784
8073
  msgid "New %s Category Name"
8074
  msgstr "Název nové rubriky %s"
8075
 
8076
+ #: src/Tribe/Main.php:1783
8077
  msgid "Add New %s Category"
8078
  msgstr "Vytvořit novou rubriku %s"
8079
 
8080
+ #: src/Tribe/Main.php:1782
8081
  msgid "Update %s Category"
8082
  msgstr "Aktualizovat rubriku %s"
8083
 
8084
+ #: src/Tribe/Main.php:1781
8085
  msgid "Edit %s Category"
8086
  msgstr "Upravit rubriku %s"
8087
 
8088
+ #: src/Tribe/Main.php:1780
8089
  msgid "Parent %s Category:"
8090
  msgstr "Nadřazená rubrika %s:"
8091
 
8092
+ #: src/Tribe/Main.php:1779
8093
  msgid "Parent %s Category"
8094
  msgstr "Nadřazená rubrika %s"
8095
 
8096
+ #: src/Tribe/Main.php:1778
8097
  msgid "All %s Categories"
8098
  msgstr "Všechny rubriky %s"
8099
 
8100
+ #: src/Tribe/Main.php:1777
8101
  msgid "Search %s Categories"
8102
  msgstr "Hledat rubriky %s"
8103
 
8104
+ #: src/Tribe/Main.php:1776
8105
  msgid "%s Category"
8106
  msgstr "Rubrika %s"
8107
 
8108
+ #: src/Tribe/Main.php:1766 src/Tribe/Organizer.php:98 src/Tribe/Venue.php:117
8109
  msgid "No %s found in Trash"
8110
  msgstr "V koši nebyly nalezeny žádné záznamy (%s)"
8111
 
8112
+ #: src/Tribe/Main.php:1765 src/Tribe/Organizer.php:97 src/Tribe/Venue.php:116
8113
  msgid "No %s found"
8114
  msgstr "Nebyly nalezeny žádné záznamy (%s)"
8115
 
8116
+ #: src/Tribe/Main.php:1764 src/Tribe/Organizer.php:96 src/Tribe/Venue.php:115
8117
  msgid "Search %s"
8118
  msgstr "Hledat %s"
8119
 
8120
+ #: src/Tribe/Main.php:1763 src/Tribe/Organizer.php:95 src/Tribe/Venue.php:114
8121
  #: src/views/month/single-day.php:26
8122
  msgid "View %s"
8123
  msgstr "Zobrazit (%s)"
8124
 
8125
+ #: src/Tribe/Main.php:1762 src/Tribe/Organizer.php:94 src/Tribe/Venue.php:113
8126
  msgid "New %s"
8127
  msgstr "Vytvořit (%s)"
8128
 
8129
+ #: src/Tribe/Main.php:1760 src/Tribe/Main.php:1892 src/Tribe/Main.php:1893
8130
  #: src/Tribe/Organizer.php:92 src/Tribe/Venue.php:111
8131
  msgid "Add New %s"
8132
  msgstr "Vytvořit nový záznam (%s)"
8133
 
8134
+ #: src/Tribe/Main.php:1759 src/Tribe/Organizer.php:91 src/Tribe/Venue.php:110
8135
  msgid "Add New"
8136
  msgstr "Vytvořit"
8137
 
8138
+ #: src/Tribe/Main.php:1726 src/Tribe/Main.php:2165
8139
  msgid "tag"
8140
  msgstr "stitek"
8141
 
8142
+ #: src/Tribe/Main.php:1712 src/Tribe/Main.php:2166
8143
  msgid "category"
8144
  msgstr "rubrika"
8145
 
8146
+ #: src/Tribe/Main.php:1464
8147
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8148
  msgstr "Omlouváme se, ale plugin The Events Calendar vyžaduje alespoň PHP %s. Požádejte svého poskytovatele webhostingu o přechod na novější verzi PHP."
8149
 
8150
+ #: src/Tribe/Main.php:1461
8151
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8152
  msgstr "Omlouváme se, ale plugin The Events Calendar vyžaduje alespoň WordPress %s. Aktualizujte si prosím svůj WordPress."
8153
 
8165
  msgid "Display"
8166
  msgstr "Zobrazování"
8167
 
8168
+ #: src/Tribe/Main.php:1308
8169
  msgid "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8170
  msgstr "Následující pluginy jsou zastaralé: %1$s. Všechny doplňky jsou závislé na pluginu The Events Calendar a nebudou fungovat správně, pokud nejsou spárovány se správnou verzí. %2$sPodrobnější informace%3$s."
8171
 
8172
+ #: src/Tribe/Main.php:1296
8173
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8174
  msgstr "Vaše verze pluginu The Events Calendar není dostatečně aktuální s jedním z jeho doplňků. Proveďte prosím %saktualizaci.%s"
8175
 
8176
+ #: src/Tribe/Main.php:786
8177
  msgid "Initializing Tribe Events on %s"
8178
  msgstr "Initializing Tribe Events on %s"
8179
 
8180
+ #: src/Tribe/Main.php:761
8181
  msgid "today"
8182
  msgstr "dnes"
8183
 
8184
+ #: src/Tribe/Main.php:760
8185
  msgid "day"
8186
  msgstr "den"
8187
 
8188
+ #: src/Tribe/Main.php:759
8189
  msgid "past"
8190
  msgstr "uplynulé"
8191
 
8192
+ #: src/Tribe/Main.php:758
8193
  msgid "upcoming"
8194
  msgstr "nadcházející"
8195
 
8196
+ #: src/Tribe/Main.php:757
8197
  msgid "list"
8198
  msgstr "seznam"
8199
 
8200
+ #: src/Tribe/Main.php:756
8201
  msgid "month"
8202
  msgstr "měsíc"
8203
 
8204
+ #. #-#-#-#-# the-events-calendar-code.pot (The Events Calendar 4.6.22.1)
8205
  #. #-#-#-#-#
8206
  #. Plugin Name of the plugin/theme
8207
  #: common/src/Tribe/Admin/Help_Page.php:59 common/src/Tribe/Customizer.php:569
8208
+ #: common/src/Tribe/Plugins_API.php:25 src/Tribe/Main.php:749
8209
+ #: src/Tribe/Main.php:1092 src/Tribe/Privacy.php:29
8210
  #: src/functions/template-tags/general.php:1345
8211
  msgid "The Events Calendar"
8212
  msgstr "The Events Calendar"
8213
 
8214
+ #: src/Tribe/Main.php:1162 src/admin-views/aggregator/tabs/import-form.php:185
8215
  #: src/admin-views/aggregator/tabs/import-form.php:197
8216
  #: src/functions/template-tags/general.php:63
8217
  msgid "Event"
8218
  msgstr "Akce"
8219
 
8220
  #: common/src/Tribe/Settings.php:177 common/src/Tribe/Settings.php:241
8221
+ #: common/src/Tribe/Settings.php:242 src/Tribe/Main.php:1154
8222
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:207
8223
  #: src/functions/template-tags/general.php:95
8224
  msgid "Events"
8225
  msgstr "Akce"
8226
 
8227
+ #: src/Tribe/Organizer.php:157 src/functions/template-tags/organizer.php:112
8228
  msgid "Organizer"
8229
  msgstr "Pořadatel"
8230
 
8231
  #: src/Tribe/Organizer.php:171
8232
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:206
8233
+ #: src/functions/template-tags/organizer.php:123
8234
  msgid "Organizers"
8235
  msgstr "Pořadatelé"
8236
 
8494
  msgid "End:"
8495
  msgstr "Ukončení:"
8496
 
8497
+ #: src/Tribe/Aggregator/Record/List_Table.php:505
8498
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
8499
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
8500
  #: src/views/modules/meta/details.php:66 src/views/modules/meta/details.php:91
8513
  msgid "Start Date"
8514
  msgstr "Počáteční datum"
8515
 
8516
+ #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1775
8517
  msgid "%s Categories"
8518
  msgstr "Rubriky %s"
8519
 
8524
  #: src/Tribe/Admin/Timezone_Updater.php:87
8525
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
8526
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:100
8527
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:210
8528
  msgid "%d%% complete"
8529
  msgstr "Hotovo: %d%%"
8530
 
8537
  msgstr "Počkejte dokud se k vašim akcím nepřidají údaje o časovém pásmu."
8538
 
8539
  #: src/Tribe/Admin/Bar/Default_Configurator.php:62
8540
+ #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:211 src/Tribe/Main.php:1761
8541
+ #: src/Tribe/Main.php:4843 src/Tribe/Main.php:4890 src/Tribe/Organizer.php:93
8542
  #: src/Tribe/Venue.php:112
8543
  msgid "Edit %s"
8544
  msgstr "Upravit (%s)"
8545
 
8546
+ #: src/Tribe/Main.php:4827 src/Tribe/Main.php:4884
8547
  msgid "Use Saved %s:"
8548
  msgstr "Použít dřívější hodnoty"
8549
 
8550
+ #: src/Tribe/Main.php:991
8551
  msgid " ask the site administrator set a different Events URL slug."
8552
  msgstr "požádejte administrátora webu aby změnil název v URL u akcí."
8553
 
8554
+ #: src/Tribe/Main.php:985
8555
  msgid "Ask the site administrator to edit the %s slug"
8556
  msgstr "Požádejte administrátora webu, aby upravil název v URL (%s)"
8557
 
8559
  msgid "Thanks for Updating The Events Calendar"
8560
  msgstr "Děkujeme za aktualizování pluginu The Events Calendar"
8561
 
8562
+ #: src/Tribe/Main.php:844 src/Tribe/Main.php:846
8563
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
8564
  msgid "Welcome to The Events Calendar"
8565
  msgstr "Vítejte u pluginu The Events Calendar"
lang/the-events-calendar-cy.po CHANGED
@@ -11,6 +11,31 @@ msgstr ""
11
  "Language: cy_GB\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: src/views/month/single-day.php:57
15
  msgid "%s for %s"
16
  msgstr ""
@@ -183,91 +208,91 @@ msgstr ""
183
  msgid "Do more with Eventbrite Tickets"
184
  msgstr ""
185
 
186
- #: src/Tribe/Main.php:4513
187
  msgid "Search for %s by month. Please use the format %s."
188
  msgstr ""
189
 
190
- #: src/Tribe/Main.php:4508
191
  msgid "Search for %s by Date. Please use the format %s."
192
  msgstr ""
193
 
194
- #: src/Tribe/Main.php:4476 src/Tribe/Main.php:4477
195
  msgid "2 digit month dot 4 digit year"
196
  msgstr ""
197
 
198
- #: src/Tribe/Main.php:4475
199
  msgid "4 digit year dot 2 digit month"
200
  msgstr ""
201
 
202
- #: src/Tribe/Main.php:4474
203
  msgid "2 digit month hyphen 4 digit year"
204
  msgstr ""
205
 
206
- #: src/Tribe/Main.php:4471 src/Tribe/Main.php:4472 src/Tribe/Main.php:4473
207
  msgid "1 digit month hyphen 4 digit year"
208
  msgstr ""
209
 
210
- #: src/Tribe/Main.php:4468 src/Tribe/Main.php:4470
211
  msgid "2 digit month slash 4 digit year"
212
  msgstr ""
213
 
214
- #: src/Tribe/Main.php:4467 src/Tribe/Main.php:4469
215
  msgid "1 digit month slash 4 digit year"
216
  msgstr ""
217
 
218
- #: src/Tribe/Main.php:4466
219
  msgid "4 digit year hyphen 2 digit month"
220
  msgstr ""
221
 
222
- #: src/Tribe/Main.php:4462
223
  msgid "2 digit day dot 2 digit month dot 4 digit year"
224
  msgstr ""
225
 
226
- #: src/Tribe/Main.php:4461
227
  msgid "2 digit month dot 2 digit day dot 4 digit year"
228
  msgstr ""
229
 
230
- #: src/Tribe/Main.php:4460
231
  msgid "4 digit year dot 2 digit month dot 2 digit day"
232
  msgstr ""
233
 
234
- #: src/Tribe/Main.php:4459
235
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
236
  msgstr ""
237
 
238
- #: src/Tribe/Main.php:4458
239
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
240
  msgstr ""
241
 
242
- #: src/Tribe/Main.php:4457
243
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
244
  msgstr ""
245
 
246
- #: src/Tribe/Main.php:4456
247
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
248
  msgstr ""
249
 
250
- #: src/Tribe/Main.php:4455
251
  msgid "2 digit day slash 2 digit month slash 4 digit year"
252
  msgstr ""
253
 
254
- #: src/Tribe/Main.php:4454
255
  msgid "1 digit day slash 1 digit month slash 4 digit year"
256
  msgstr ""
257
 
258
- #: src/Tribe/Main.php:4453
259
  msgid "2 digit month slash 2 digit day slash 4 digit year"
260
  msgstr ""
261
 
262
- #: src/Tribe/Main.php:4452
263
  msgid "1 digit month slash 1 digit day slash 4 digit year"
264
  msgstr ""
265
 
266
- #: src/Tribe/Main.php:4451
267
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
268
  msgstr ""
269
 
270
- #: src/Tribe/Main.php:4430
271
  msgid "Search for %s by Keyword."
272
  msgstr ""
273
 
@@ -495,7 +520,7 @@ msgid "Search our support help desk"
495
  msgstr ""
496
 
497
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
498
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:369
499
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
500
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
501
  msgid "The requested page was not found."
@@ -509,12 +534,12 @@ msgstr ""
509
  msgid "one week"
510
  msgstr ""
511
 
512
- #: src/Tribe/Aggregator/Record/List_Table.php:570
513
  msgctxt "when the retry will happen, a date"
514
  msgid "retrying at %s"
515
  msgstr ""
516
 
517
- #: src/Tribe/Aggregator/Record/List_Table.php:567
518
  msgctxt "in human readable time"
519
  msgid "retrying in about %s"
520
  msgstr ""
@@ -596,7 +621,7 @@ msgid "Main %s Page"
596
  msgstr ""
597
 
598
  #: common/src/Tribe/Plugins_API.php:71
599
- msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Tickets have QR codes for easy check in at the door."
600
  msgstr ""
601
 
602
  #: src/admin-views/tribe-options-general.php:31
@@ -628,7 +653,7 @@ msgstr ""
628
  msgid "The event with the specified ID is not accessible."
629
  msgstr ""
630
 
631
- #: src/Tribe/Main.php:1813
632
  msgid "%1$s published. %2$sView %3$s"
633
  msgstr ""
634
 
@@ -979,11 +1004,11 @@ msgstr ""
979
  msgid "the event post name"
980
  msgstr ""
981
 
982
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:341
983
  msgid "The event organizer IDs or data"
984
  msgstr ""
985
 
986
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:333
987
  msgid "The event venue ID or data"
988
  msgstr ""
989
 
@@ -1226,32 +1251,32 @@ msgstr ""
1226
  msgid "Returns all the organizers matching the search criteria"
1227
  msgstr ""
1228
 
1229
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:478
1230
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1231
  msgstr ""
1232
 
1233
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:472
1234
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1235
  msgstr ""
1236
 
1237
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:466
1238
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1239
  msgstr ""
1240
 
1241
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:461
1242
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1243
  msgid "The event post status"
1244
  msgstr ""
1245
 
1246
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1247
  msgid "Events should be filtered by their featured status"
1248
  msgstr ""
1249
 
1250
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:446
1251
  msgid "Events should be assigned one of the specified organizer IDs"
1252
  msgstr ""
1253
 
1254
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
1255
  msgid "Events should be assigned one of the specified venue IDs"
1256
  msgstr ""
1257
 
@@ -1345,48 +1370,48 @@ msgstr ""
1345
  msgid "The event status"
1346
  msgstr ""
1347
 
1348
- #: src/Tribe/Linked_Posts.php:1126
1349
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1350
  msgid "Create or Find %s"
1351
  msgstr ""
1352
 
1353
- #: src/Tribe/Linked_Posts.php:1117
1354
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1355
  msgid "Find %1$s %2$s"
1356
  msgstr ""
1357
 
1358
- #: src/Tribe/Linked_Posts.php:1108
1359
  msgid "Find a Venue"
1360
  msgstr ""
1361
 
1362
- #: src/Tribe/Linked_Posts.php:1107
1363
  msgid "Create or Find a Venue"
1364
  msgstr ""
1365
 
1366
- #: src/Tribe/Linked_Posts.php:1100
1367
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1368
  msgid "Create or Find %s"
1369
  msgstr ""
1370
 
1371
- #: src/Tribe/Linked_Posts.php:1091
1372
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1373
  msgid "Find %1$s %2$s"
1374
  msgstr ""
1375
 
1376
- #: src/Tribe/Linked_Posts.php:1080
1377
  msgid "Find an Organizer"
1378
  msgstr ""
1379
 
1380
- #: src/Tribe/Linked_Posts.php:1079
1381
  msgid "Create or Find an Organizer"
1382
  msgstr ""
1383
 
1384
- #: src/Tribe/Linked_Posts.php:1072
1385
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1386
  msgid "Create or Find %s"
1387
  msgstr ""
1388
 
1389
- #: src/Tribe/Linked_Posts.php:1063
1390
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1391
  msgid "Find %1$s %2$s"
1392
  msgstr ""
@@ -1482,20 +1507,20 @@ msgstr ""
1482
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1483
  msgstr ""
1484
 
1485
- #: src/Tribe/Main.php:997
1486
  msgid "edit Events settings."
1487
  msgstr ""
1488
 
1489
- #: src/Tribe/Main.php:988
1490
  msgid "Edit the %s slug"
1491
  msgstr ""
1492
 
1493
- #: src/Tribe/Linked_Posts.php:1049
1494
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1495
  msgid "an"
1496
  msgstr ""
1497
 
1498
- #: src/Tribe/Linked_Posts.php:1042
1499
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1500
  msgid "a"
1501
  msgstr ""
@@ -1537,10 +1562,6 @@ msgstr ""
1537
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1538
  msgstr ""
1539
 
1540
- #: common/src/Tribe/Plugins_API.php:37
1541
- msgid "Import events from across the web! Event Aggregator makes it easy to run scheduled or manual imports from Facebook, Meetup, Eventbrite, Google Calendar, and iCalendar, along with uploads from CSV and ICS files. You can also import directly from other sites running The Events Calendar thanks to our built-in REST API support."
1542
- msgstr ""
1543
-
1544
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1545
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1546
  msgstr ""
@@ -1585,7 +1606,7 @@ msgstr ""
1585
  msgid "The event WordPress post ID"
1586
  msgstr ""
1587
 
1588
- #: src/Tribe/Aggregator/Record/Abstract.php:362
1589
  msgid "Something went wrong while inserting the record in the database."
1590
  msgstr ""
1591
 
@@ -1605,7 +1626,7 @@ msgstr[3] ""
1605
  msgid "Please refresh the page and try your request again."
1606
  msgstr ""
1607
 
1608
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:28
1609
  msgid "The image WordPress post ID"
1610
  msgstr ""
1611
 
@@ -1665,11 +1686,11 @@ msgstr ""
1665
  msgid "The event last modification date in UTC time"
1666
  msgstr ""
1667
 
1668
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:403
1669
  msgid "Events should start after the specified date"
1670
  msgstr ""
1671
 
1672
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:410
1673
  msgid "Events should start before the specified date"
1674
  msgstr ""
1675
 
@@ -1705,7 +1726,7 @@ msgstr ""
1705
  msgid "the event post ID"
1706
  msgstr ""
1707
 
1708
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:416
1709
  msgid "Events should contain the specified string in the title or description"
1710
  msgstr ""
1711
 
@@ -2001,31 +2022,31 @@ msgid "The requested URL does not have any upcoming and published events matchin
2001
  msgstr ""
2002
 
2003
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2004
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:388
2005
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2006
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2007
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2008
  msgid "The archive page to return"
2009
  msgstr ""
2010
 
2011
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:396
2012
  msgid "The number of events to return on each page"
2013
  msgstr ""
2014
 
2015
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:422
2016
  msgid "Events should be assigned one of the specified categories slugs or IDs"
2017
  msgstr ""
2018
 
2019
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:430
2020
  msgid "Events should be assigned one of the specified tags slugs or IDs"
2021
  msgstr ""
2022
 
2023
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:358
2024
  msgid "Returns all the upcoming events matching the search criteria"
2025
  msgstr ""
2026
 
2027
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:36
2028
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:366
2029
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:64
2030
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:53
2031
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:61
@@ -2240,7 +2261,7 @@ msgstr ""
2240
  msgid "three months"
2241
  msgstr ""
2242
 
2243
- #: src/Tribe/Aggregator/Tabs/New.php:373
2244
  msgid "%1$d new event tag was created."
2245
  msgid_plural "%1$d new event tags were created."
2246
  msgstr[0] ""
@@ -2248,7 +2269,7 @@ msgstr[1] ""
2248
  msgstr[2] ""
2249
  msgstr[3] ""
2250
 
2251
- #: src/Tribe/Aggregator/Tabs/New.php:377
2252
  msgid "View your event tags"
2253
  msgstr ""
2254
 
@@ -2307,7 +2328,7 @@ msgstr ""
2307
  msgid "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2308
  msgstr ""
2309
 
2310
- #: src/Tribe/Main.php:765
2311
  msgctxt "all events slug"
2312
  msgid "all"
2313
  msgstr ""
@@ -2348,7 +2369,7 @@ msgstr ""
2348
  msgid "The WordPress term ID"
2349
  msgstr ""
2350
 
2351
- #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:36
2352
  msgid "The link to the image in the specified size on the site"
2353
  msgstr ""
2354
 
@@ -2364,19 +2385,19 @@ msgstr ""
2364
  msgid "The image width in pixels in the specified size"
2365
  msgstr ""
2366
 
2367
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:44
2368
  msgid "The details about each size available for the image"
2369
  msgstr ""
2370
 
2371
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:40
2372
  msgid "The image natural height in pixels"
2373
  msgstr ""
2374
 
2375
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:36
2376
  msgid "The image natural width in pixels"
2377
  msgstr ""
2378
 
2379
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:32
2380
  msgid "The image file extension"
2381
  msgstr ""
2382
 
@@ -2384,7 +2405,7 @@ msgstr ""
2384
  msgid "The venue WordPress post ID"
2385
  msgstr ""
2386
 
2387
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:24
2388
  msgid "The URL to the full size version of the image"
2389
  msgstr ""
2390
 
@@ -2424,7 +2445,7 @@ msgstr ""
2424
  msgid "The cost currency symbol"
2425
  msgstr ""
2426
 
2427
- #: src/Tribe/Main.php:4434
2428
  msgid "Keyword"
2429
  msgstr ""
2430
 
@@ -2499,12 +2520,12 @@ msgstr ""
2499
  msgid "Export Events"
2500
  msgstr ""
2501
 
2502
- #: src/Tribe/Main.php:764
2503
  msgctxt "featured events slug"
2504
  msgid "featured"
2505
  msgstr ""
2506
 
2507
- #: src/Tribe/Linked_Posts.php:1005
2508
  msgid "Create: <b><%= term %></b>"
2509
  msgstr ""
2510
 
@@ -2653,175 +2674,177 @@ msgstr ""
2653
  msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2654
  msgstr ""
2655
 
2656
- #: src/Tribe/Asset/Dynamic.php:77
2657
  msgid "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2658
  msgstr ""
2659
 
2660
- #: src/Tribe/Asset/Dynamic.php:76
2661
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2662
  msgstr ""
2663
 
2664
- #: src/Tribe/Asset/Dynamic.php:75
2665
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2666
  msgstr ""
2667
 
2668
- #: src/Tribe/Asset/Dynamic.php:74
2669
  msgid "This event is all day on %%startdatewithyear%%."
2670
  msgstr ""
2671
 
2672
- #: src/Tribe/Asset/Dynamic.php:73
2673
  msgid "This event is at %%starttime%% on %%startdatewithyear%%."
2674
  msgstr ""
2675
 
2676
- #: src/Tribe/Asset/Dynamic.php:72
2677
  msgid "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2678
  msgstr ""
2679
 
2680
- #: src/Tribe/Asset/Dynamic.php:69
2681
  msgid "Dec"
2682
  msgstr ""
2683
 
2684
- #: src/Tribe/Asset/Dynamic.php:68
2685
  msgid "Nov"
2686
  msgstr ""
2687
 
2688
- #: src/Tribe/Asset/Dynamic.php:67
2689
  msgid "Oct"
2690
  msgstr ""
2691
 
2692
- #: src/Tribe/Asset/Dynamic.php:66
2693
  msgid "Sep"
2694
  msgstr ""
2695
 
2696
- #: src/Tribe/Asset/Dynamic.php:65
2697
  msgid "Aug"
2698
  msgstr ""
2699
 
2700
- #: src/Tribe/Asset/Dynamic.php:64
2701
  msgid "Jul"
2702
  msgstr ""
2703
 
2704
- #: src/Tribe/Asset/Dynamic.php:63
2705
  msgid "Jun"
2706
  msgstr ""
2707
 
2708
- #: src/Tribe/Asset/Dynamic.php:61
2709
  msgid "Apr"
2710
  msgstr ""
2711
 
2712
- #: src/Tribe/Asset/Dynamic.php:60
2713
  msgid "Mar"
2714
  msgstr ""
2715
 
2716
- #: src/Tribe/Asset/Dynamic.php:59
2717
  msgid "Feb"
2718
  msgstr ""
2719
 
2720
- #: src/Tribe/Asset/Dynamic.php:58
2721
  msgid "Jan"
2722
  msgstr ""
2723
 
2724
- #: src/Tribe/Asset/Dynamic.php:55
2725
  msgid "December"
2726
  msgstr ""
2727
 
2728
- #: src/Tribe/Asset/Dynamic.php:54
2729
  msgid "November"
2730
  msgstr ""
2731
 
2732
- #: src/Tribe/Asset/Dynamic.php:53
2733
  msgid "October"
2734
  msgstr ""
2735
 
2736
- #: src/Tribe/Asset/Dynamic.php:52
2737
  msgid "September"
2738
  msgstr ""
2739
 
2740
- #: src/Tribe/Asset/Dynamic.php:51
2741
  msgid "August"
2742
  msgstr ""
2743
 
2744
- #: src/Tribe/Asset/Dynamic.php:50
2745
  msgid "July"
2746
  msgstr ""
2747
 
2748
- #: src/Tribe/Asset/Dynamic.php:49
2749
  msgid "June"
2750
  msgstr ""
2751
 
2752
- #: src/Tribe/Asset/Dynamic.php:48 src/Tribe/Asset/Dynamic.php:62
 
 
2753
  msgid "May"
2754
  msgstr ""
2755
 
2756
- #: src/Tribe/Asset/Dynamic.php:47
2757
  msgid "April"
2758
  msgstr ""
2759
 
2760
- #: src/Tribe/Asset/Dynamic.php:46
2761
  msgid "March"
2762
  msgstr ""
2763
 
2764
- #: src/Tribe/Asset/Dynamic.php:45
2765
  msgid "February"
2766
  msgstr ""
2767
 
2768
- #: src/Tribe/Asset/Dynamic.php:44
2769
  msgid "January"
2770
  msgstr ""
2771
 
2772
- #: src/Tribe/Asset/Dynamic.php:41
2773
  msgid "Sat"
2774
  msgstr ""
2775
 
2776
- #: src/Tribe/Asset/Dynamic.php:40
2777
  msgid "Fri"
2778
  msgstr ""
2779
 
2780
- #: src/Tribe/Asset/Dynamic.php:39
2781
  msgid "Thu"
2782
  msgstr ""
2783
 
2784
- #: src/Tribe/Asset/Dynamic.php:38
2785
  msgid "Wed"
2786
  msgstr ""
2787
 
2788
- #: src/Tribe/Asset/Dynamic.php:37
2789
  msgid "Tue"
2790
  msgstr ""
2791
 
2792
- #: src/Tribe/Asset/Dynamic.php:36
2793
  msgid "Mon"
2794
  msgstr ""
2795
 
2796
- #: src/Tribe/Asset/Dynamic.php:35
2797
  msgid "Sun"
2798
  msgstr ""
2799
 
2800
- #: src/Tribe/Asset/Dynamic.php:32
2801
  msgid "Saturday"
2802
  msgstr ""
2803
 
2804
- #: src/Tribe/Asset/Dynamic.php:31
2805
  msgid "Friday"
2806
  msgstr ""
2807
 
2808
- #: src/Tribe/Asset/Dynamic.php:30
2809
  msgid "Thursday"
2810
  msgstr ""
2811
 
2812
- #: src/Tribe/Asset/Dynamic.php:29
2813
  msgid "Wednesday"
2814
  msgstr ""
2815
 
2816
- #: src/Tribe/Asset/Dynamic.php:28
2817
  msgid "Tuesday"
2818
  msgstr ""
2819
 
2820
- #: src/Tribe/Asset/Dynamic.php:27
2821
  msgid "Monday"
2822
  msgstr ""
2823
 
2824
- #: src/Tribe/Asset/Dynamic.php:26
2825
  msgid "Sunday"
2826
  msgstr ""
2827
 
@@ -2902,11 +2925,11 @@ msgstr ""
2902
  msgid "Unknown service message"
2903
  msgstr ""
2904
 
2905
- #: src/Tribe/Aggregator/Record/List_Table.php:533
2906
  msgid "Unknown"
2907
  msgstr ""
2908
 
2909
- #: src/Tribe/Aggregator/Record/Abstract.php:1205
2910
  msgid "When this import was last scheduled to run, the daily limit for your Event Aggregator license had already been reached."
2911
  msgstr ""
2912
 
@@ -3645,7 +3668,7 @@ msgctxt "Abbreviation for the miles unit of measure"
3645
  msgid "mi"
3646
  msgstr ""
3647
 
3648
- #: src/Tribe/Main.php:983
3649
  msgid "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3650
  msgstr ""
3651
 
@@ -3886,81 +3909,81 @@ msgstr ""
3886
  msgid "Scheduled Imports"
3887
  msgstr ""
3888
 
3889
- #: src/Tribe/Aggregator/Tabs/New.php:603
3890
  msgid "Renew your Event Aggregator license"
3891
  msgstr ""
3892
 
3893
- #: src/Tribe/Aggregator/Tabs/New.php:600
3894
  msgid "Renew your license in order to import events from Facebook, iCalendar, Google, or Meetup."
3895
  msgstr ""
3896
 
3897
- #: src/Tribe/Aggregator/Tabs/New.php:599
3898
  msgid "Your Event Aggregator license is expired."
3899
  msgstr ""
3900
 
3901
- #: src/Tribe/Aggregator/Tabs/New.php:551
3902
  msgid "Learn More"
3903
  msgstr ""
3904
 
3905
- #: src/Tribe/Aggregator/Tabs/New.php:546 src/Tribe/Aggregator/Tabs/New.php:553
3906
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:19
3907
  msgid "opens in a new window"
3908
  msgstr ""
3909
 
3910
- #: src/Tribe/Aggregator/Tabs/New.php:544
3911
  msgid "Buy It Now"
3912
  msgstr ""
3913
 
3914
- #: src/Tribe/Aggregator/Tabs/New.php:541
3915
  msgid "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3916
  msgstr ""
3917
 
3918
- #: src/Tribe/Aggregator/Tabs/New.php:539
3919
  msgid "Import Using Event Aggregator"
3920
  msgstr ""
3921
 
3922
- #: src/Tribe/Aggregator/Tabs/New.php:452
3923
  msgid "Unable to save credentials"
3924
  msgstr ""
3925
 
3926
- #: src/Tribe/Aggregator/Tabs/New.php:445
3927
  msgid "Credentials have been saved"
3928
  msgstr ""
3929
 
3930
- #: src/Tribe/Aggregator/Tabs/New.php:436
3931
  msgid "The Meetup API key is required."
3932
  msgstr ""
3933
 
3934
- #: src/Tribe/Aggregator/Tabs/New.php:427
3935
  msgid "Invalid credential save nonce"
3936
  msgstr ""
3937
 
3938
- #: src/Tribe/Aggregator/Tabs/New.php:417
3939
  msgid "Invalid credential save request"
3940
  msgstr ""
3941
 
3942
- #: src/Tribe/Aggregator/Tabs/New.php:405
3943
  msgid "View your scheduled imports."
3944
  msgstr ""
3945
 
3946
- #: src/Tribe/Aggregator/Tabs/New.php:401
3947
  msgid "The next import is scheduled for %1$s."
3948
  msgstr ""
3949
 
3950
- #: src/Tribe/Aggregator/Tabs/New.php:394
3951
  msgctxt "separator between date and time"
3952
  msgid " at "
3953
  msgstr ""
3954
 
3955
- #: src/Tribe/Aggregator/Tabs/New.php:390
3956
  msgid "Your scheduled import was saved and the first import is complete!"
3957
  msgstr ""
3958
 
3959
- #: src/Tribe/Aggregator/Tabs/New.php:365
3960
  msgid "View your event categories"
3961
  msgstr ""
3962
 
3963
- #: src/Tribe/Aggregator/Tabs/New.php:361
3964
  msgid "%1$d new event category was created."
3965
  msgid_plural "%1$d new event categories were created."
3966
  msgstr[0] ""
@@ -3968,11 +3991,11 @@ msgstr[1] ""
3968
  msgstr[2] ""
3969
  msgstr[3] ""
3970
 
3971
- #: src/Tribe/Aggregator/Tabs/New.php:352
3972
  msgid "View your event organizers"
3973
  msgstr ""
3974
 
3975
- #: src/Tribe/Aggregator/Tabs/New.php:348
3976
  msgid "%1$d new organizer was imported."
3977
  msgid_plural "%1$d new organizers were imported."
3978
  msgstr[0] ""
@@ -3980,11 +4003,11 @@ msgstr[1] ""
3980
  msgstr[2] ""
3981
  msgstr[3] ""
3982
 
3983
- #: src/Tribe/Aggregator/Tabs/New.php:340
3984
  msgid "View your event venues"
3985
  msgstr ""
3986
 
3987
- #: src/Tribe/Aggregator/Tabs/New.php:336
3988
  msgid "%1$d new venue was imported."
3989
  msgid_plural "%1$d new venues were imported."
3990
  msgstr[0] ""
@@ -3992,15 +4015,15 @@ msgstr[1] ""
3992
  msgstr[2] ""
3993
  msgstr[3] ""
3994
 
3995
- #: src/Tribe/Aggregator/Tabs/New.php:326
3996
  msgid "View all %s"
3997
  msgstr ""
3998
 
3999
- #: src/Tribe/Aggregator/Tabs/New.php:318
4000
  msgid "No %1$s were imported or updated."
4001
  msgstr ""
4002
 
4003
- #: src/Tribe/Aggregator/Tabs/New.php:311
4004
  msgid "%1$d new image was imported."
4005
  msgid_plural "%1$d new images were imported."
4006
  msgstr[0] ""
@@ -4008,7 +4031,7 @@ msgstr[1] ""
4008
  msgstr[2] ""
4009
  msgstr[3] ""
4010
 
4011
- #: src/Tribe/Aggregator/Tabs/New.php:302
4012
  msgid "%1$d already-imported %2$s was skipped."
4013
  msgid_plural "%1$d already-imported %2$s were skipped."
4014
  msgstr[0] ""
@@ -4016,7 +4039,7 @@ msgstr[1] ""
4016
  msgstr[2] ""
4017
  msgstr[3] ""
4018
 
4019
- #: src/Tribe/Aggregator/Tabs/New.php:291
4020
  msgid "%1$d existing %2$s was updated."
4021
  msgid_plural "%1$d existing %2$s were updated."
4022
  msgstr[0] ""
@@ -4024,7 +4047,7 @@ msgstr[1] ""
4024
  msgstr[2] ""
4025
  msgstr[3] ""
4026
 
4027
- #: src/Tribe/Aggregator/Tabs/New.php:279
4028
  msgid "%1$d new %2$s was imported."
4029
  msgid_plural "%1$d new %2$s were imported."
4030
  msgstr[0] ""
@@ -4300,7 +4323,7 @@ msgstr ""
4300
  msgid "Events Aggregator Record"
4301
  msgstr ""
4302
 
4303
- #: src/Tribe/Aggregator/Record/Queue_Realtime.php:178
4304
  msgid "Unable to continue inserting data. Please reload this page to continue/try again."
4305
  msgstr ""
4306
 
@@ -4320,87 +4343,87 @@ msgstr ""
4320
  msgid "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4321
  msgstr ""
4322
 
4323
- #: src/Tribe/Aggregator/Record/Queue_Processor.php:234
4324
  msgid "Could not process queue for Import Record %1$d: %2$s"
4325
  msgstr ""
4326
 
4327
- #: src/Tribe/Aggregator/Record/List_Table.php:657
4328
  msgid "Select %s"
4329
  msgstr ""
4330
 
4331
- #: src/Tribe/Aggregator/Record/List_Table.php:622
4332
- #: src/Tribe/Aggregator/Record/List_Table.php:631
4333
- #: src/Tribe/Aggregator/Record/List_Table.php:639
4334
  msgid "updated"
4335
  msgstr ""
4336
 
4337
- #: src/Tribe/Aggregator/Record/List_Table.php:620
4338
- #: src/Tribe/Aggregator/Record/List_Table.php:628
4339
- #: src/Tribe/Aggregator/Record/List_Table.php:636
4340
  msgid "new"
4341
  msgstr ""
4342
 
4343
- #: src/Tribe/Aggregator/Record/List_Table.php:617
4344
  msgid "Latest Import:"
4345
  msgstr ""
4346
 
4347
- #: src/Tribe/Aggregator/Record/List_Table.php:615
4348
  msgid "all time"
4349
  msgstr ""
4350
 
4351
- #: src/Tribe/Aggregator/Record/List_Table.php:589
4352
  msgid "One Time"
4353
  msgstr ""
4354
 
4355
- #: src/Tribe/Aggregator/Record/List_Table.php:586
4356
  msgid "Invalid Frequency"
4357
  msgstr ""
4358
 
4359
- #: src/Tribe/Aggregator/Record/List_Table.php:556 src/Tribe/Aggregator.php:426
4360
  #: src/Tribe/Ignored_Events.php:357
4361
  #: src/admin-views/tribe-options-addons-api.php:36
4362
  msgctxt "in human readable time"
4363
  msgid "in about %s"
4364
  msgstr ""
4365
 
4366
- #: src/Tribe/Aggregator/Record/List_Table.php:554 src/Tribe/Aggregator.php:424
4367
  #: src/Tribe/Ignored_Events.php:355
4368
  #: src/admin-views/tribe-options-addons-api.php:34
4369
  msgctxt "human readable time ago"
4370
  msgid "about %s ago"
4371
  msgstr ""
4372
 
4373
- #: src/Tribe/Aggregator/Record/List_Table.php:506
4374
  msgid "Radius:"
4375
  msgstr ""
4376
 
4377
- #: src/Tribe/Aggregator/Record/List_Table.php:489
4378
  msgid "Keywords:"
4379
  msgstr ""
4380
 
4381
- #: src/Tribe/Aggregator/Record/List_Table.php:476
4382
  #: src/Tribe/Ignored_Events.php:337
4383
  msgctxt "record via origin"
4384
  msgid "via "
4385
  msgstr ""
4386
 
4387
- #: src/Tribe/Aggregator/Record/List_Table.php:433
4388
  msgid "Import preview"
4389
  msgstr ""
4390
 
4391
- #: src/Tribe/Aggregator/Record/List_Table.php:429
4392
  msgid "Import pending"
4393
  msgstr ""
4394
 
4395
- #: src/Tribe/Aggregator/Record/List_Table.php:425
4396
  msgid "Import schedule"
4397
  msgstr ""
4398
 
4399
- #: src/Tribe/Aggregator/Record/List_Table.php:413
4400
  msgid "Import failed"
4401
  msgstr ""
4402
 
4403
- #: src/Tribe/Aggregator/Record/List_Table.php:409
4404
  msgid "Import completed"
4405
  msgstr ""
4406
 
@@ -4487,11 +4510,11 @@ msgstr ""
4487
  msgid "Eventbrite"
4488
  msgstr ""
4489
 
4490
- #: src/Tribe/Aggregator/Record/Abstract.php:1148
4491
  msgid "Deleted Attachment: %d"
4492
  msgstr ""
4493
 
4494
- #: src/Tribe/Aggregator/Record/Abstract.php:496
4495
  msgid "Record: "
4496
  msgstr ""
4497
 
@@ -4528,7 +4551,7 @@ msgid "Hide Filters"
4528
  msgstr ""
4529
 
4530
  #: src/Tribe/Aggregator/Page.php:96
4531
- #: src/Tribe/Aggregator/Record/List_Table.php:485
4532
  msgid "View Filters"
4533
  msgstr ""
4534
 
@@ -4890,7 +4913,7 @@ msgid "There is an update for %s. You'll need to %scheck your license%s to have
4890
  msgstr ""
4891
 
4892
  #: common/src/Tribe/PUE/Checker.php:961 common/src/Tribe/PUE/Notices.php:285
4893
- #: src/Tribe/Aggregator/Record/Abstract.php:1163
4894
  msgid " (opens in a new window)"
4895
  msgstr ""
4896
 
@@ -5191,7 +5214,7 @@ msgstr ""
5191
  msgid "No notable changes detected"
5192
  msgstr ""
5193
 
5194
- #: src/Tribe/Main.php:2735
5195
  msgid " (View Full %1$s Description Here: %2$s)"
5196
  msgstr ""
5197
 
@@ -5239,147 +5262,147 @@ msgstr ""
5239
  msgid "Keep the Core Plugin %sFREE%s!"
5240
  msgstr ""
5241
 
5242
- #: src/Tribe/Template_Factory.php:300
5243
  msgid "No results were found for %1$s in or near %2$s."
5244
  msgstr ""
5245
 
5246
- #: src/Tribe/Template_Factory.php:298
5247
  msgid "There were no results found for %s."
5248
  msgstr ""
5249
 
5250
- #: src/Tribe/Template/Month.php:456
5251
  msgid "There were no results found for %s this month. Try searching next month."
5252
  msgstr ""
5253
 
5254
- #: src/Tribe/Template/Day.php:153
5255
  msgid "No %1$s scheduled for %2$s. Please try another day."
5256
  msgstr ""
5257
 
5258
- #: src/Tribe/Main.php:4254
5259
  msgid "Check out the %savailable add-ons%s."
5260
  msgstr ""
5261
 
5262
- #: src/Tribe/Main.php:1923
5263
  msgid "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5264
  msgstr ""
5265
 
5266
- #: src/Tribe/Main.php:1854 src/Tribe/Main.php:1874
5267
  msgid "%1$s scheduled for: %2$s."
5268
  msgstr ""
5269
 
5270
- #: src/Tribe/Main.php:1835
5271
  msgid "%1$s draft updated. %2$sPreview %3$s"
5272
  msgstr ""
5273
 
5274
- #: src/Tribe/Main.php:1826
5275
  msgid "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5276
  msgstr ""
5277
 
5278
- #: src/Tribe/Main.php:1820
5279
  msgid "%1$s submitted. %2$sPreview %3$s"
5280
  msgstr ""
5281
 
5282
- #: src/Tribe/Main.php:1802
5283
  msgid "%1$s updated. %2$sView %1$s%3$s"
5284
  msgstr ""
5285
 
5286
- #: src/Tribe/Main.php:1477
5287
  msgid "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5288
  msgstr ""
5289
 
5290
- #: src/Tribe/Main.php:1112
5291
  msgid "If you have a valid license for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5292
  msgstr ""
5293
 
5294
- #: src/Tribe/Main.php:1111
5295
  msgid "post a thread"
5296
  msgstr ""
5297
 
5298
- #: src/Tribe/Main.php:1107
5299
  msgid "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays."
5300
  msgstr ""
5301
 
5302
- #: src/Tribe/Main.php:1103
5303
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5304
  msgstr ""
5305
 
5306
- #: src/Tribe/Main.php:1102
5307
  msgid "open-source forum on WordPress.org"
5308
  msgstr ""
5309
 
5310
- #: src/Tribe/Main.php:1098
5311
  msgid "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays"
5312
  msgstr ""
5313
 
5314
- #: src/Tribe/Main.php:1097 src/Tribe/Main.php:1105
5315
  msgid "premium support on our website"
5316
  msgstr ""
5317
 
5318
- #: src/Tribe/Main.php:1095
5319
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5320
  msgstr ""
5321
 
5322
- #: src/Tribe/Main.php:1094
5323
  msgid "Events Tickets"
5324
  msgstr ""
5325
 
5326
- #: src/Tribe/Main.php:1079
5327
  msgid "Customizing the Events plugins"
5328
  msgstr ""
5329
 
5330
- #: src/Tribe/Main.php:1079
5331
  msgid "%s: Code and guides for customizing your calendar in useful and interesting ways."
5332
  msgstr ""
5333
 
5334
- #: src/Tribe/Main.php:1077
5335
  msgid "Troubleshooting common problems"
5336
  msgstr ""
5337
 
5338
- #: src/Tribe/Main.php:1077
5339
  msgid "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5340
  msgstr ""
5341
 
5342
- #: src/Tribe/Main.php:1075
5343
  msgid "Using stylesheets and page templates"
5344
  msgstr ""
5345
 
5346
- #: src/Tribe/Main.php:1075
5347
  msgid "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5348
  msgstr ""
5349
 
5350
- #: src/Tribe/Main.php:1073
5351
  msgid "Themer’s Guide"
5352
  msgstr ""
5353
 
5354
- #: src/Tribe/Main.php:1073
5355
  msgid "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5356
  msgstr ""
5357
 
5358
- #: src/Tribe/Main.php:1071
5359
  msgid "Features overview"
5360
  msgstr ""
5361
 
5362
- #: src/Tribe/Main.php:1071
5363
  msgid "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5364
  msgstr ""
5365
 
5366
- #: src/Tribe/Main.php:1069
5367
  msgid "Settings overview"
5368
  msgstr ""
5369
 
5370
- #: src/Tribe/Main.php:1069
5371
  msgid "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5372
  msgstr ""
5373
 
5374
- #: src/Tribe/Main.php:1066
5375
  msgid "Support for The Events Calendar"
5376
  msgstr ""
5377
 
5378
- #: src/Tribe/Main.php:1055
5379
  msgid "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5380
  msgstr ""
5381
 
5382
- #: src/Tribe/Main.php:1053
5383
  msgid "New User Primer"
5384
  msgstr ""
5385
 
@@ -5402,7 +5425,7 @@ msgstr ""
5402
  msgid "CSV Import Settings"
5403
  msgstr ""
5404
 
5405
- #: src/Tribe/Asset/Bootstrap_Datepicker.php:26
5406
  msgid "Clear"
5407
  msgstr "Clirio"
5408
 
@@ -5414,7 +5437,7 @@ msgstr ""
5414
  msgid "Create New %s"
5415
  msgstr ""
5416
 
5417
- #: src/Tribe/Organizer.php:371
5418
  msgid "Unnamed %s"
5419
  msgstr ""
5420
 
@@ -5604,7 +5627,7 @@ msgstr "Canslo"
5604
  msgid "%s must be a positive number or percent."
5605
  msgstr ""
5606
 
5607
- #: src/Tribe/Main.php:1000
5608
  msgid "%1$s or %2$s"
5609
  msgstr ""
5610
 
@@ -5661,7 +5684,7 @@ msgstr "Dysgu rhagor"
5661
  msgid "Day Navigation"
5662
  msgstr "Llywiwr Dydd"
5663
 
5664
- #: src/Tribe/Aggregator/Tabs/New.php:388
5665
  msgid "Import complete!"
5666
  msgstr "Mewnforio wedi gorffen!"
5667
 
@@ -5905,7 +5928,7 @@ msgid "More..."
5905
  msgstr "Mwy..."
5906
 
5907
  #: common/src/Tribe/Admin/Help_Page.php:194 common/src/Tribe/Plugins_API.php:43
5908
- #: src/Tribe/Main.php:1106
5909
  msgid "Events Calendar PRO"
5910
  msgstr ""
5911
 
@@ -6344,7 +6367,7 @@ msgstr "URL:"
6344
  msgid "%s Website"
6345
  msgstr ""
6346
 
6347
- #: src/Tribe/Aggregator/Record/List_Table.php:502
6348
  msgid "Location:"
6349
  msgstr ""
6350
 
@@ -7749,15 +7772,15 @@ msgstr "Dylid symud y camau diystyru templedi i'r is-gyfeiriadur cywir: tribe_ge
7749
  msgid "Template overrides should be moved to the correct subdirectory: %s"
7750
  msgstr "Dylid symud y camau diystyru templedi i'r is-gyfeiriadur cywir: %s"
7751
 
7752
- #: src/Tribe/Template_Factory.php:306
7753
  msgid "No previous %s "
7754
  msgstr ""
7755
 
7756
- #: src/Tribe/Template_Factory.php:304 src/Tribe/Template_Factory.php:309
7757
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7758
  msgstr ""
7759
 
7760
- #: src/Tribe/Template_Factory.php:302
7761
  msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7762
  msgstr ""
7763
 
@@ -7765,28 +7788,28 @@ msgstr ""
7765
  msgid "This %s has passed."
7766
  msgstr ""
7767
 
7768
- #: src/Tribe/Template/Month.php:953
7769
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7770
  msgstr ""
7771
 
7772
- #: src/Tribe/Template/Month.php:462 src/Tribe/Template_Factory.php:311
7773
  msgid "There were no results found."
7774
  msgstr "Ni ddaethpwyd o hyd i ganlyniadau."
7775
 
7776
- #: src/Tribe/Template/Month.php:460
7777
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7778
  msgstr ""
7779
 
7780
- #: src/Tribe/Template/Day.php:151
7781
  msgid "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7782
  msgstr ""
7783
 
7784
- #: src/Tribe/Template/Day.php:117 src/Tribe/Template/Day.php:133
7785
  msgid "Ongoing"
7786
  msgstr "Parhaus"
7787
 
7788
- #: src/Tribe/Aggregator/Page.php:82 src/Tribe/Template/Day.php:114
7789
- #: src/Tribe/Template/Day.php:130
7790
  msgid "All Day"
7791
  msgstr "Drwy'r Dydd"
7792
 
@@ -7883,50 +7906,50 @@ msgstr "Allwedd Trwydded"
7883
  msgid "Error"
7884
  msgstr "Gwall"
7885
 
7886
- #: src/Tribe/Main.php:4597
7887
  msgid "Once Every 30 Mins"
7888
  msgstr ""
7889
 
7890
- #: src/Tribe/Main.php:4517
7891
  msgid "Day Of"
7892
  msgstr "Dydd O"
7893
 
7894
- #: src/Tribe/Main.php:4515
7895
  msgid "%s From"
7896
  msgstr ""
7897
 
7898
- #: src/Tribe/Main.php:4511
7899
  msgid "%s In"
7900
  msgstr ""
7901
 
7902
- #: src/Tribe/Main.php:4506 src/Tribe/Main.php:4531
7903
  #: src/admin-views/aggregator/origins/refine.php:7
7904
  msgid "Date"
7905
  msgstr "Dyddiad"
7906
 
7907
- #: src/Tribe/Main.php:4433
7908
  msgid "Search"
7909
  msgstr "Chwilio"
7910
 
7911
- #: src/Tribe/Main.php:4407 src/admin-views/aggregator/fields/schedule.php:44
7912
  #: src/admin-views/aggregator/fields/schedule.php:62
7913
  msgid "Day"
7914
  msgstr "Diwrnod"
7915
 
7916
- #: src/Tribe/Main.php:4390
7917
  msgid "Month"
7918
  msgstr "Mis"
7919
 
7920
- #: src/Tribe/Main.php:4372
7921
  msgid "List"
7922
  msgstr "Rhestr"
7923
 
7924
- #: src/Tribe/Main.php:4356
7925
  msgid "Calendar"
7926
  msgstr "Calendr"
7927
 
7928
  #: common/src/Tribe/Settings.php:254
7929
- #: src/Tribe/Admin/Bar/Default_Configurator.php:89 src/Tribe/Main.php:4355
7930
  msgid "Settings"
7931
  msgstr "Gosodiadau"
7932
 
@@ -7940,7 +7963,7 @@ msgstr "CSV"
7940
  msgid "Add %s"
7941
  msgstr ""
7942
 
7943
- #: src/Tribe/Admin/Bar/Default_Configurator.php:45 src/Tribe/Main.php:4306
7944
  msgid "View Calendar"
7945
  msgstr "Gweld y Calendr"
7946
 
@@ -7948,53 +7971,53 @@ msgstr "Gweld y Calendr"
7948
  msgid "%s"
7949
  msgstr ""
7950
 
7951
- #: src/Tribe/Main.php:4253
7952
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7953
  msgstr "Ydych chi'n chwilio am swyddogaethau ychwanegol gan gynnwys digwyddiadau ailadroddus, gwerthiannau tocynnau, digwyddiadau a gyflwynwyd gan y cyhoedd, golygfeydd newydd a mwy?"
7954
 
7955
- #: src/Tribe/Main.php:4248
7956
  msgid "Additional Functionality"
7957
  msgstr "Swyddogaethau Ychwanegol"
7958
 
7959
- #: src/Tribe/Main.php:4203
7960
  msgid "News from Modern Tribe"
7961
  msgstr "Newyddion gan Modern Tribe"
7962
 
7963
- #: src/Tribe/Main.php:4183
7964
  msgid "View All Add-Ons"
7965
  msgstr "Gweld Pob Ychwanegyn"
7966
 
7967
- #: src/Tribe/Main.php:4180
7968
  msgid "Support"
7969
  msgstr "Cymorth"
7970
 
7971
- #: src/Tribe/Main.php:3828 src/Tribe/Main.php:3841
7972
  msgid "%s Information"
7973
  msgstr "Gwybodaeth am %s"
7974
 
7975
- #: src/Tribe/Main.php:3819
7976
  msgid "%s Options"
7977
  msgstr ""
7978
 
7979
- #: src/Tribe/Main.php:3742 src/Tribe/Main.php:3777
7980
  #: src/functions/template-tags/day.php:157
7981
  #: src/functions/template-tags/day.php:178
7982
  msgid "Date out of range."
7983
  msgstr "Dyddiad allan o'r ystod."
7984
 
7985
- #: src/Tribe/Main.php:2344
7986
  msgid "all"
7987
  msgstr ""
7988
 
7989
- #: src/Tribe/Main.php:2343 src/functions/template-tags/general.php:111
7990
  msgid "events"
7991
  msgstr ""
7992
 
7993
- #: src/Tribe/Main.php:2342 src/functions/template-tags/general.php:79
7994
  msgid "event"
7995
  msgstr ""
7996
 
7997
- #: src/Tribe/Main.php:2341
7998
  msgid "page"
7999
  msgstr ""
8000
 
@@ -8006,7 +8029,8 @@ msgstr "Rhwydwaith"
8006
  msgid "Done"
8007
  msgstr "Gorffen"
8008
 
8009
- #: common/src/Tribe/Main.php:272 src/Tribe/Asset/Bootstrap_Datepicker.php:27
 
8010
  #: src/functions/template-tags/day.php:104
8011
  msgid "Today"
8012
  msgstr "Heddiw"
@@ -8019,141 +8043,141 @@ msgstr "Blaenorol"
8019
  msgid "Next"
8020
  msgstr "Nesaf"
8021
 
8022
- #: src/Tribe/Linked_Posts.php:1010
8023
  msgid "No saved %s exists."
8024
  msgstr "Nid oes %s sydd wedi'i gadw'n bodoli."
8025
 
8026
- #: src/Tribe/Linked_Posts.php:840
8027
  msgid "Available %s"
8028
  msgstr "%s Ar Gael"
8029
 
8030
- #: src/Tribe/Linked_Posts.php:836
8031
  msgid "My %s"
8032
  msgstr "Fy %s"
8033
 
8034
- #: src/Tribe/Main.php:1859 src/Tribe/Main.php:1879
8035
  msgid "%s draft updated."
8036
  msgstr "Diweddarwyd drafft %s."
8037
 
8038
- #: src/Tribe/Main.php:1852 src/Tribe/Main.php:1872
8039
  msgid "%s submitted."
8040
  msgstr "Cyflwynwyd %s."
8041
 
8042
- #: src/Tribe/Main.php:1850 src/Tribe/Main.php:1870
8043
  msgid "%s published."
8044
  msgstr "Cyhoeddwyd %s."
8045
 
8046
  #. translators: %s: date and time of the revision
8047
- #: src/Tribe/Main.php:1869
8048
  msgid "%s restored to revision from %s"
8049
  msgstr "Ailosodwyd %s i'r un diwygiedig o %s"
8050
 
8051
  #. translators: Publish box date format, see http://php.net/date
8052
- #: src/Tribe/Main.php:1829 src/Tribe/Main.php:1857 src/Tribe/Main.php:1877
8053
  msgid "M j, Y @ G:i"
8054
  msgstr "M j, Y @ G:i"
8055
 
8056
- #: src/Tribe/Main.php:1818 src/Tribe/Main.php:1851 src/Tribe/Main.php:1871
8057
  msgid "%s saved."
8058
  msgstr "Cadwyd %s."
8059
 
8060
  #. translators: %s: date and time of the revision
8061
- #: src/Tribe/Main.php:1811 src/Tribe/Main.php:1849
8062
  msgid "%1$s restored to revision from %2$s"
8063
  msgstr ""
8064
 
8065
- #: src/Tribe/Main.php:1809 src/Tribe/Main.php:1844 src/Tribe/Main.php:1847
8066
- #: src/Tribe/Main.php:1864 src/Tribe/Main.php:1867
8067
  msgid "%s updated."
8068
  msgstr "Diweddarwyd %s."
8069
 
8070
- #: src/Tribe/Main.php:1808 src/Tribe/Main.php:1846 src/Tribe/Main.php:1866
8071
  msgid "Custom field deleted."
8072
  msgstr "Dilëwyd y maes cyfaddas."
8073
 
8074
- #: src/Tribe/Main.php:1807 src/Tribe/Main.php:1845 src/Tribe/Main.php:1865
8075
  msgid "Custom field updated."
8076
  msgstr "Diweddarwyd y maes cyfaddas."
8077
 
8078
- #: src/Tribe/Main.php:1785
8079
  msgid "New %s Category Name"
8080
  msgstr ""
8081
 
8082
- #: src/Tribe/Main.php:1784
8083
  msgid "Add New %s Category"
8084
  msgstr ""
8085
 
8086
- #: src/Tribe/Main.php:1783
8087
  msgid "Update %s Category"
8088
  msgstr ""
8089
 
8090
- #: src/Tribe/Main.php:1782
8091
  msgid "Edit %s Category"
8092
  msgstr ""
8093
 
8094
- #: src/Tribe/Main.php:1781
8095
  msgid "Parent %s Category:"
8096
  msgstr ""
8097
 
8098
- #: src/Tribe/Main.php:1780
8099
  msgid "Parent %s Category"
8100
  msgstr ""
8101
 
8102
- #: src/Tribe/Main.php:1779
8103
  msgid "All %s Categories"
8104
  msgstr ""
8105
 
8106
- #: src/Tribe/Main.php:1778
8107
  msgid "Search %s Categories"
8108
  msgstr ""
8109
 
8110
- #: src/Tribe/Main.php:1777
8111
  msgid "%s Category"
8112
  msgstr ""
8113
 
8114
- #: src/Tribe/Main.php:1767 src/Tribe/Organizer.php:98 src/Tribe/Venue.php:117
8115
  msgid "No %s found in Trash"
8116
  msgstr "Ni ddaethpwyd o hyd i %s yn y Bin Sbwriel"
8117
 
8118
- #: src/Tribe/Main.php:1766 src/Tribe/Organizer.php:97 src/Tribe/Venue.php:116
8119
  msgid "No %s found"
8120
  msgstr "Ni ddaethpwyd o hyd i %s"
8121
 
8122
- #: src/Tribe/Main.php:1765 src/Tribe/Organizer.php:96 src/Tribe/Venue.php:115
8123
  msgid "Search %s"
8124
  msgstr "Chwilio %s"
8125
 
8126
- #: src/Tribe/Main.php:1764 src/Tribe/Organizer.php:95 src/Tribe/Venue.php:114
8127
  #: src/views/month/single-day.php:26
8128
  msgid "View %s"
8129
  msgstr "Gweld %s"
8130
 
8131
- #: src/Tribe/Main.php:1763 src/Tribe/Organizer.php:94 src/Tribe/Venue.php:113
8132
  msgid "New %s"
8133
  msgstr "%s Newydd"
8134
 
8135
- #: src/Tribe/Main.php:1761 src/Tribe/Main.php:1893 src/Tribe/Main.php:1894
8136
  #: src/Tribe/Organizer.php:92 src/Tribe/Venue.php:111
8137
  msgid "Add New %s"
8138
  msgstr "Ychwanegu %s Newydd"
8139
 
8140
- #: src/Tribe/Main.php:1760 src/Tribe/Organizer.php:91 src/Tribe/Venue.php:110
8141
  msgid "Add New"
8142
  msgstr "Ychwanegu'n Newydd"
8143
 
8144
- #: src/Tribe/Main.php:1727 src/Tribe/Main.php:2339
8145
  msgid "tag"
8146
  msgstr "tag"
8147
 
8148
- #: src/Tribe/Main.php:1713 src/Tribe/Main.php:2340
8149
  msgid "category"
8150
  msgstr "categori"
8151
 
8152
- #: src/Tribe/Main.php:1465
8153
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8154
  msgstr "Mae angen PHP %s neu uwch ar The Events Calendar. Cysylltwch â'ch gweinydd i drafod eich symud i fersiwn PHP mwy newydd."
8155
 
8156
- #: src/Tribe/Main.php:1462
8157
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8158
  msgstr "Mae angen WordPress %s neu uwch ar The Events Calendar. Diweddarwch eich fersiwn o WordPress."
8159
 
@@ -8171,72 +8195,72 @@ msgstr "Cymorth"
8171
  msgid "Display"
8172
  msgstr "Dangos"
8173
 
8174
- #: src/Tribe/Main.php:1309
8175
  msgid "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8176
  msgstr ""
8177
 
8178
- #: src/Tribe/Main.php:1297
8179
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8180
  msgstr "Nid yw eich fersiwn chi o The Events Calendar yn gyfredol gyda un o'ch ychwanegion The Events Calendar. Dylech %sddiweddaru yn awr.%s"
8181
 
8182
- #: src/Tribe/Main.php:788
8183
  msgid "Initializing Tribe Events on %s"
8184
  msgstr "Dechrau Digwyddiadau Tribe ar %s"
8185
 
8186
- #: src/Tribe/Main.php:763
8187
  msgid "today"
8188
  msgstr "heddiw"
8189
 
8190
- #: src/Tribe/Main.php:762
8191
  msgid "day"
8192
  msgstr "diwrnod"
8193
 
8194
- #: src/Tribe/Main.php:761
8195
  msgid "past"
8196
  msgstr "yn y gorffennol"
8197
 
8198
- #: src/Tribe/Main.php:760
8199
  msgid "upcoming"
8200
  msgstr "ar y gweill"
8201
 
8202
- #: src/Tribe/Main.php:759
8203
  msgid "list"
8204
  msgstr "rhestr"
8205
 
8206
- #: src/Tribe/Main.php:758
8207
  msgid "month"
8208
  msgstr "mis"
8209
 
8210
- #. #-#-#-#-# the-events-calendar-code.pot (The Events Calendar 4.6.20.1)
8211
  #. #-#-#-#-#
8212
  #. Plugin Name of the plugin/theme
8213
  #: common/src/Tribe/Admin/Help_Page.php:59 common/src/Tribe/Customizer.php:569
8214
- #: common/src/Tribe/Plugins_API.php:25 src/Tribe/Main.php:751
8215
- #: src/Tribe/Main.php:1093 src/Tribe/Privacy.php:29
8216
  #: src/functions/template-tags/general.php:1345
8217
  msgid "The Events Calendar"
8218
  msgstr "The Events Calendar"
8219
 
8220
- #: src/Tribe/Main.php:1163 src/admin-views/aggregator/tabs/import-form.php:185
8221
  #: src/admin-views/aggregator/tabs/import-form.php:197
8222
  #: src/functions/template-tags/general.php:63
8223
  msgid "Event"
8224
  msgstr "Digwyddiad"
8225
 
8226
  #: common/src/Tribe/Settings.php:177 common/src/Tribe/Settings.php:241
8227
- #: common/src/Tribe/Settings.php:242 src/Tribe/Main.php:1155
8228
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:207
8229
  #: src/functions/template-tags/general.php:95
8230
  msgid "Events"
8231
  msgstr "Digwyddiadau"
8232
 
8233
- #: src/Tribe/Organizer.php:157 src/functions/template-tags/organizer.php:115
8234
  msgid "Organizer"
8235
  msgstr "Trefnydd"
8236
 
8237
  #: src/Tribe/Organizer.php:171
8238
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:206
8239
- #: src/functions/template-tags/organizer.php:126
8240
  msgid "Organizers"
8241
  msgstr "Trefnwyr"
8242
 
@@ -8500,7 +8524,7 @@ msgstr "Dyddiad:"
8500
  msgid "End:"
8501
  msgstr "Gorffen:"
8502
 
8503
- #: src/Tribe/Aggregator/Record/List_Table.php:498
8504
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
8505
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
8506
  #: src/views/modules/meta/details.php:66 src/views/modules/meta/details.php:91
@@ -8519,7 +8543,7 @@ msgstr "Dyddiad Gorffen"
8519
  msgid "Start Date"
8520
  msgstr "Dyddiad Cychwyn"
8521
 
8522
- #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1776
8523
  msgid "%s Categories"
8524
  msgstr ""
8525
 
@@ -8530,7 +8554,7 @@ msgstr ""
8530
  #: src/Tribe/Admin/Timezone_Updater.php:87
8531
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
8532
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:100
8533
- #: src/Tribe/Aggregator/Record/Queue_Realtime.php:203
8534
  msgid "%d%% complete"
8535
  msgstr ""
8536
 
@@ -8543,21 +8567,21 @@ msgid "Please wait while time zone data is added to your events."
8543
  msgstr ""
8544
 
8545
  #: src/Tribe/Admin/Bar/Default_Configurator.php:62
8546
- #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:211 src/Tribe/Main.php:1762
8547
- #: src/Tribe/Main.php:4862 src/Tribe/Main.php:4909 src/Tribe/Organizer.php:93
8548
  #: src/Tribe/Venue.php:112
8549
  msgid "Edit %s"
8550
  msgstr "Golygu %s"
8551
 
8552
- #: src/Tribe/Main.php:4846 src/Tribe/Main.php:4903
8553
  msgid "Use Saved %s:"
8554
  msgstr "Defnyddio %s sydd wedi'i Gadw:"
8555
 
8556
- #: src/Tribe/Main.php:992
8557
  msgid " ask the site administrator set a different Events URL slug."
8558
  msgstr ""
8559
 
8560
- #: src/Tribe/Main.php:986
8561
  msgid "Ask the site administrator to edit the %s slug"
8562
  msgstr ""
8563
 
@@ -8565,7 +8589,7 @@ msgstr ""
8565
  msgid "Thanks for Updating The Events Calendar"
8566
  msgstr "Diolch am Ddiweddaru The Events Calendar"
8567
 
8568
- #: src/Tribe/Main.php:846 src/Tribe/Main.php:848
8569
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
8570
  msgid "Welcome to The Events Calendar"
8571
  msgstr "Croeso i The Events Calendar"
11
  "Language: cy_GB\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
14
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:337
15
+ msgid "The event tag ID or name"
16
+ msgstr ""
17
+
18
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:331
19
+ msgid "The event category ID or name"
20
+ msgstr ""
21
+
22
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:508
23
+ msgid "Events should be filtered by their post_parent being the specified one."
24
+ msgstr ""
25
+
26
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:498
27
+ msgid "Include events with one of the post IDs specified in the array of CSV list, date filters will be ignored."
28
+ msgstr ""
29
+
30
+ #: src/Tribe/Aggregator/Record/Async_Queue.php:348
31
+ #: src/Tribe/Aggregator/Record/Void_Queue.php:122
32
+ msgid "Unable to process this import - a breakage or conflict may have resulted in the import halting."
33
+ msgstr ""
34
+
35
+ #: common/src/Tribe/Plugins_API.php:37
36
+ msgid "Event Aggregator adds massive import functionality to your calendar. Before you know it, you’ll be importing events from Meetup, Eventbrite, Google Calendar, iCalendar, and other URLs with ease. Schedule imports to run automatically behind-the-scenes or run them manually when you’re ready. Go ahead and import to your heart’s content—Event Aggregator hooks you up with a central dashboard in the admin to make managing your imports a breeze."
37
+ msgstr ""
38
+
39
  #: src/views/month/single-day.php:57
40
  msgid "%s for %s"
41
  msgstr ""
208
  msgid "Do more with Eventbrite Tickets"
209
  msgstr ""
210
 
211
+ #: src/Tribe/Main.php:4114
212
  msgid "Search for %s by month. Please use the format %s."
213
  msgstr ""
214
 
215
+ #: src/Tribe/Main.php:4109
216
  msgid "Search for %s by Date. Please use the format %s."
217
  msgstr ""
218
 
219
+ #: src/Tribe/Main.php:4077 src/Tribe/Main.php:4078
220
  msgid "2 digit month dot 4 digit year"
221
  msgstr ""
222
 
223
+ #: src/Tribe/Main.php:4076
224
  msgid "4 digit year dot 2 digit month"
225
  msgstr ""
226
 
227
+ #: src/Tribe/Main.php:4075
228
  msgid "2 digit month hyphen 4 digit year"
229
  msgstr ""
230
 
231
+ #: src/Tribe/Main.php:4072 src/Tribe/Main.php:4073 src/Tribe/Main.php:4074
232
  msgid "1 digit month hyphen 4 digit year"
233
  msgstr ""
234
 
235
+ #: src/Tribe/Main.php:4069 src/Tribe/Main.php:4071
236
  msgid "2 digit month slash 4 digit year"
237
  msgstr ""
238
 
239
+ #: src/Tribe/Main.php:4068 src/Tribe/Main.php:4070
240
  msgid "1 digit month slash 4 digit year"
241
  msgstr ""
242
 
243
+ #: src/Tribe/Main.php:4067
244
  msgid "4 digit year hyphen 2 digit month"
245
  msgstr ""
246
 
247
+ #: src/Tribe/Main.php:4063
248
  msgid "2 digit day dot 2 digit month dot 4 digit year"
249
  msgstr ""
250
 
251
+ #: src/Tribe/Main.php:4062
252
  msgid "2 digit month dot 2 digit day dot 4 digit year"
253
  msgstr ""
254
 
255
+ #: src/Tribe/Main.php:4061
256
  msgid "4 digit year dot 2 digit month dot 2 digit day"
257
  msgstr ""
258
 
259
+ #: src/Tribe/Main.php:4060
260
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
261
  msgstr ""
262
 
263
+ #: src/Tribe/Main.php:4059
264
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
265
  msgstr ""
266
 
267
+ #: src/Tribe/Main.php:4058
268
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
269
  msgstr ""
270
 
271
+ #: src/Tribe/Main.php:4057
272
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
273
  msgstr ""
274
 
275
+ #: src/Tribe/Main.php:4056
276
  msgid "2 digit day slash 2 digit month slash 4 digit year"
277
  msgstr ""
278
 
279
+ #: src/Tribe/Main.php:4055
280
  msgid "1 digit day slash 1 digit month slash 4 digit year"
281
  msgstr ""
282
 
283
+ #: src/Tribe/Main.php:4054
284
  msgid "2 digit month slash 2 digit day slash 4 digit year"
285
  msgstr ""
286
 
287
+ #: src/Tribe/Main.php:4053
288
  msgid "1 digit month slash 1 digit day slash 4 digit year"
289
  msgstr ""
290
 
291
+ #: src/Tribe/Main.php:4052
292
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
293
  msgstr ""
294
 
295
+ #: src/Tribe/Main.php:4031
296
  msgid "Search for %s by Keyword."
297
  msgstr ""
298
 
520
  msgstr ""
521
 
522
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
523
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:385
524
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
525
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
526
  msgid "The requested page was not found."
534
  msgid "one week"
535
  msgstr ""
536
 
537
+ #: src/Tribe/Aggregator/Record/List_Table.php:577
538
  msgctxt "when the retry will happen, a date"
539
  msgid "retrying at %s"
540
  msgstr ""
541
 
542
+ #: src/Tribe/Aggregator/Record/List_Table.php:574
543
  msgctxt "in human readable time"
544
  msgid "retrying in about %s"
545
  msgstr ""
621
  msgstr ""
622
 
623
  #: common/src/Tribe/Plugins_API.php:71
624
+ msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Guest check in is easy with QR codes and our custom scanning app."
625
  msgstr ""
626
 
627
  #: src/admin-views/tribe-options-general.php:31
653
  msgid "The event with the specified ID is not accessible."
654
  msgstr ""
655
 
656
+ #: src/Tribe/Main.php:1812
657
  msgid "%1$s published. %2$sView %3$s"
658
  msgstr ""
659
 
1004
  msgid "the event post name"
1005
  msgstr ""
1006
 
1007
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:354
1008
  msgid "The event organizer IDs or data"
1009
  msgstr ""
1010
 
1011
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:346
1012
  msgid "The event venue ID or data"
1013
  msgstr ""
1014
 
1251
  msgid "Returns all the organizers matching the search criteria"
1252
  msgstr ""
1253
 
1254
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:494
1255
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1256
  msgstr ""
1257
 
1258
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:488
1259
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1260
  msgstr ""
1261
 
1262
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:482
1263
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1264
  msgstr ""
1265
 
1266
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:477
1267
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1268
  msgid "The event post status"
1269
  msgstr ""
1270
 
1271
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:470
1272
  msgid "Events should be filtered by their featured status"
1273
  msgstr ""
1274
 
1275
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:462
1276
  msgid "Events should be assigned one of the specified organizer IDs"
1277
  msgstr ""
1278
 
1279
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1280
  msgid "Events should be assigned one of the specified venue IDs"
1281
  msgstr ""
1282
 
1370
  msgid "The event status"
1371
  msgstr ""
1372
 
1373
+ #: src/Tribe/Linked_Posts.php:1254
1374
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1375
  msgid "Create or Find %s"
1376
  msgstr ""
1377
 
1378
+ #: src/Tribe/Linked_Posts.php:1245
1379
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1380
  msgid "Find %1$s %2$s"
1381
  msgstr ""
1382
 
1383
+ #: src/Tribe/Linked_Posts.php:1236
1384
  msgid "Find a Venue"
1385
  msgstr ""
1386
 
1387
+ #: src/Tribe/Linked_Posts.php:1235
1388
  msgid "Create or Find a Venue"
1389
  msgstr ""
1390
 
1391
+ #: src/Tribe/Linked_Posts.php:1228
1392
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1393
  msgid "Create or Find %s"
1394
  msgstr ""
1395
 
1396
+ #: src/Tribe/Linked_Posts.php:1219
1397
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1398
  msgid "Find %1$s %2$s"
1399
  msgstr ""
1400
 
1401
+ #: src/Tribe/Linked_Posts.php:1208
1402
  msgid "Find an Organizer"
1403
  msgstr ""
1404
 
1405
+ #: src/Tribe/Linked_Posts.php:1207
1406
  msgid "Create or Find an Organizer"
1407
  msgstr ""
1408
 
1409
+ #: src/Tribe/Linked_Posts.php:1200
1410
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1411
  msgid "Create or Find %s"
1412
  msgstr ""
1413
 
1414
+ #: src/Tribe/Linked_Posts.php:1191
1415
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1416
  msgid "Find %1$s %2$s"
1417
  msgstr ""
1507
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1508
  msgstr ""
1509
 
1510
+ #: src/Tribe/Main.php:996
1511
  msgid "edit Events settings."
1512
  msgstr ""
1513
 
1514
+ #: src/Tribe/Main.php:987
1515
  msgid "Edit the %s slug"
1516
  msgstr ""
1517
 
1518
+ #: src/Tribe/Linked_Posts.php:1177
1519
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1520
  msgid "an"
1521
  msgstr ""
1522
 
1523
+ #: src/Tribe/Linked_Posts.php:1170
1524
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1525
  msgid "a"
1526
  msgstr ""
1562
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1563
  msgstr ""
1564
 
 
 
 
 
1565
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1566
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1567
  msgstr ""
1606
  msgid "The event WordPress post ID"
1607
  msgstr ""
1608
 
1609
+ #: src/Tribe/Aggregator/Record/Abstract.php:363
1610
  msgid "Something went wrong while inserting the record in the database."
1611
  msgstr ""
1612
 
1626
  msgid "Please refresh the page and try your request again."
1627
  msgstr ""
1628
 
1629
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:29
1630
  msgid "The image WordPress post ID"
1631
  msgstr ""
1632
 
1686
  msgid "The event last modification date in UTC time"
1687
  msgstr ""
1688
 
1689
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:419
1690
  msgid "Events should start after the specified date"
1691
  msgstr ""
1692
 
1693
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:426
1694
  msgid "Events should start before the specified date"
1695
  msgstr ""
1696
 
1726
  msgid "the event post ID"
1727
  msgstr ""
1728
 
1729
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:432
1730
  msgid "Events should contain the specified string in the title or description"
1731
  msgstr ""
1732
 
2022
  msgstr ""
2023
 
2024
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2025
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:404
2026
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2027
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2028
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2029
  msgid "The archive page to return"
2030
  msgstr ""
2031
 
2032
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:412
2033
  msgid "The number of events to return on each page"
2034
  msgstr ""
2035
 
2036
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
2037
  msgid "Events should be assigned one of the specified categories slugs or IDs"
2038
  msgstr ""
2039
 
2040
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:446
2041
  msgid "Events should be assigned one of the specified tags slugs or IDs"
2042
  msgstr ""
2043
 
2044
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:374
2045
  msgid "Returns all the upcoming events matching the search criteria"
2046
  msgstr ""
2047
 
2048
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:36
2049
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:382
2050
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:64
2051
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:53
2052
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:61
2261
  msgid "three months"
2262
  msgstr ""
2263
 
2264
+ #: src/Tribe/Aggregator/Tabs/New.php:385
2265
  msgid "%1$d new event tag was created."
2266
  msgid_plural "%1$d new event tags were created."
2267
  msgstr[0] ""
2269
  msgstr[2] ""
2270
  msgstr[3] ""
2271
 
2272
+ #: src/Tribe/Aggregator/Tabs/New.php:389
2273
  msgid "View your event tags"
2274
  msgstr ""
2275
 
2328
  msgid "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2329
  msgstr ""
2330
 
2331
+ #: src/Tribe/Main.php:763
2332
  msgctxt "all events slug"
2333
  msgid "all"
2334
  msgstr ""
2369
  msgid "The WordPress term ID"
2370
  msgstr ""
2371
 
2372
+ #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:37
2373
  msgid "The link to the image in the specified size on the site"
2374
  msgstr ""
2375
 
2385
  msgid "The image width in pixels in the specified size"
2386
  msgstr ""
2387
 
2388
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:45
2389
  msgid "The details about each size available for the image"
2390
  msgstr ""
2391
 
2392
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:41
2393
  msgid "The image natural height in pixels"
2394
  msgstr ""
2395
 
2396
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:37
2397
  msgid "The image natural width in pixels"
2398
  msgstr ""
2399
 
2400
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:33
2401
  msgid "The image file extension"
2402
  msgstr ""
2403
 
2405
  msgid "The venue WordPress post ID"
2406
  msgstr ""
2407
 
2408
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:25
2409
  msgid "The URL to the full size version of the image"
2410
  msgstr ""
2411
 
2445
  msgid "The cost currency symbol"
2446
  msgstr ""
2447
 
2448
+ #: src/Tribe/Main.php:4035
2449
  msgid "Keyword"
2450
  msgstr ""
2451
 
2520
  msgid "Export Events"
2521
  msgstr ""
2522
 
2523
+ #: src/Tribe/Main.php:762
2524
  msgctxt "featured events slug"
2525
  msgid "featured"
2526
  msgstr ""
2527
 
2528
+ #: src/Tribe/Linked_Posts.php:1133
2529
  msgid "Create: <b><%= term %></b>"
2530
  msgstr ""
2531
 
2674
  msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2675
  msgstr ""
2676
 
2677
+ #: src/Tribe/Assets.php:685 src/deprecated/Tribe__Events__Asset__Dynamic.php:77
2678
  msgid "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2679
  msgstr ""
2680
 
2681
+ #: src/Tribe/Assets.php:684 src/deprecated/Tribe__Events__Asset__Dynamic.php:76
2682
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2683
  msgstr ""
2684
 
2685
+ #: src/Tribe/Assets.php:683 src/deprecated/Tribe__Events__Asset__Dynamic.php:75
2686
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2687
  msgstr ""
2688
 
2689
+ #: src/Tribe/Assets.php:682 src/deprecated/Tribe__Events__Asset__Dynamic.php:74
2690
  msgid "This event is all day on %%startdatewithyear%%."
2691
  msgstr ""
2692
 
2693
+ #: src/Tribe/Assets.php:681 src/deprecated/Tribe__Events__Asset__Dynamic.php:73
2694
  msgid "This event is at %%starttime%% on %%startdatewithyear%%."
2695
  msgstr ""
2696
 
2697
+ #: src/Tribe/Assets.php:680 src/deprecated/Tribe__Events__Asset__Dynamic.php:72
2698
  msgid "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2699
  msgstr ""
2700
 
2701
+ #: src/Tribe/Assets.php:677 src/deprecated/Tribe__Events__Asset__Dynamic.php:69
2702
  msgid "Dec"
2703
  msgstr ""
2704
 
2705
+ #: src/Tribe/Assets.php:676 src/deprecated/Tribe__Events__Asset__Dynamic.php:68
2706
  msgid "Nov"
2707
  msgstr ""
2708
 
2709
+ #: src/Tribe/Assets.php:675 src/deprecated/Tribe__Events__Asset__Dynamic.php:67
2710
  msgid "Oct"
2711
  msgstr ""
2712
 
2713
+ #: src/Tribe/Assets.php:674 src/deprecated/Tribe__Events__Asset__Dynamic.php:66
2714
  msgid "Sep"
2715
  msgstr ""
2716
 
2717
+ #: src/Tribe/Assets.php:673 src/deprecated/Tribe__Events__Asset__Dynamic.php:65
2718
  msgid "Aug"
2719
  msgstr ""
2720
 
2721
+ #: src/Tribe/Assets.php:672 src/deprecated/Tribe__Events__Asset__Dynamic.php:64
2722
  msgid "Jul"
2723
  msgstr ""
2724
 
2725
+ #: src/Tribe/Assets.php:671 src/deprecated/Tribe__Events__Asset__Dynamic.php:63
2726
  msgid "Jun"
2727
  msgstr ""
2728
 
2729
+ #: src/Tribe/Assets.php:669 src/deprecated/Tribe__Events__Asset__Dynamic.php:61
2730
  msgid "Apr"
2731
  msgstr ""
2732
 
2733
+ #: src/Tribe/Assets.php:668 src/deprecated/Tribe__Events__Asset__Dynamic.php:60
2734
  msgid "Mar"
2735
  msgstr ""
2736
 
2737
+ #: src/Tribe/Assets.php:667 src/deprecated/Tribe__Events__Asset__Dynamic.php:59
2738
  msgid "Feb"
2739
  msgstr ""
2740
 
2741
+ #: src/Tribe/Assets.php:666 src/deprecated/Tribe__Events__Asset__Dynamic.php:58
2742
  msgid "Jan"
2743
  msgstr ""
2744
 
2745
+ #: src/Tribe/Assets.php:663 src/deprecated/Tribe__Events__Asset__Dynamic.php:55
2746
  msgid "December"
2747
  msgstr ""
2748
 
2749
+ #: src/Tribe/Assets.php:662 src/deprecated/Tribe__Events__Asset__Dynamic.php:54
2750
  msgid "November"
2751
  msgstr ""
2752
 
2753
+ #: src/Tribe/Assets.php:661 src/deprecated/Tribe__Events__Asset__Dynamic.php:53
2754
  msgid "October"
2755
  msgstr ""
2756
 
2757
+ #: src/Tribe/Assets.php:660 src/deprecated/Tribe__Events__Asset__Dynamic.php:52
2758
  msgid "September"
2759
  msgstr ""
2760
 
2761
+ #: src/Tribe/Assets.php:659 src/deprecated/Tribe__Events__Asset__Dynamic.php:51
2762
  msgid "August"
2763
  msgstr ""
2764
 
2765
+ #: src/Tribe/Assets.php:658 src/deprecated/Tribe__Events__Asset__Dynamic.php:50
2766
  msgid "July"
2767
  msgstr ""
2768
 
2769
+ #: src/Tribe/Assets.php:657 src/deprecated/Tribe__Events__Asset__Dynamic.php:49
2770
  msgid "June"
2771
  msgstr ""
2772
 
2773
+ #: src/Tribe/Assets.php:656 src/Tribe/Assets.php:670
2774
+ #: src/deprecated/Tribe__Events__Asset__Dynamic.php:48
2775
+ #: src/deprecated/Tribe__Events__Asset__Dynamic.php:62
2776
  msgid "May"
2777
  msgstr ""
2778
 
2779
+ #: src/Tribe/Assets.php:655 src/deprecated/Tribe__Events__Asset__Dynamic.php:47
2780
  msgid "April"
2781
  msgstr ""
2782
 
2783
+ #: src/Tribe/Assets.php:654 src/deprecated/Tribe__Events__Asset__Dynamic.php:46
2784
  msgid "March"
2785
  msgstr ""
2786
 
2787
+ #: src/Tribe/Assets.php:653 src/deprecated/Tribe__Events__Asset__Dynamic.php:45
2788
  msgid "February"
2789
  msgstr ""
2790
 
2791
+ #: src/Tribe/Assets.php:652 src/deprecated/Tribe__Events__Asset__Dynamic.php:44
2792
  msgid "January"
2793
  msgstr ""
2794
 
2795
+ #: src/Tribe/Assets.php:649 src/deprecated/Tribe__Events__Asset__Dynamic.php:41
2796
  msgid "Sat"
2797
  msgstr ""
2798
 
2799
+ #: src/Tribe/Assets.php:648 src/deprecated/Tribe__Events__Asset__Dynamic.php:40
2800
  msgid "Fri"
2801
  msgstr ""
2802
 
2803
+ #: src/Tribe/Assets.php:647 src/deprecated/Tribe__Events__Asset__Dynamic.php:39
2804
  msgid "Thu"
2805
  msgstr ""
2806
 
2807
+ #: src/Tribe/Assets.php:646 src/deprecated/Tribe__Events__Asset__Dynamic.php:38
2808
  msgid "Wed"
2809
  msgstr ""
2810
 
2811
+ #: src/Tribe/Assets.php:645 src/deprecated/Tribe__Events__Asset__Dynamic.php:37
2812
  msgid "Tue"
2813
  msgstr ""
2814
 
2815
+ #: src/Tribe/Assets.php:644 src/deprecated/Tribe__Events__Asset__Dynamic.php:36
2816
  msgid "Mon"
2817
  msgstr ""
2818
 
2819
+ #: src/Tribe/Assets.php:643 src/deprecated/Tribe__Events__Asset__Dynamic.php:35
2820
  msgid "Sun"
2821
  msgstr ""
2822
 
2823
+ #: src/Tribe/Assets.php:640 src/deprecated/Tribe__Events__Asset__Dynamic.php:32
2824
  msgid "Saturday"
2825
  msgstr ""
2826
 
2827
+ #: src/Tribe/Assets.php:639 src/deprecated/Tribe__Events__Asset__Dynamic.php:31
2828
  msgid "Friday"
2829
  msgstr ""
2830
 
2831
+ #: src/Tribe/Assets.php:638 src/deprecated/Tribe__Events__Asset__Dynamic.php:30
2832
  msgid "Thursday"
2833
  msgstr ""
2834
 
2835
+ #: src/Tribe/Assets.php:637 src/deprecated/Tribe__Events__Asset__Dynamic.php:29
2836
  msgid "Wednesday"
2837
  msgstr ""
2838
 
2839
+ #: src/Tribe/Assets.php:636 src/deprecated/Tribe__Events__Asset__Dynamic.php:28
2840
  msgid "Tuesday"
2841
  msgstr ""
2842
 
2843
+ #: src/Tribe/Assets.php:635 src/deprecated/Tribe__Events__Asset__Dynamic.php:27
2844
  msgid "Monday"
2845
  msgstr ""
2846
 
2847
+ #: src/Tribe/Assets.php:634 src/deprecated/Tribe__Events__Asset__Dynamic.php:26
2848
  msgid "Sunday"
2849
  msgstr ""
2850
 
2925
  msgid "Unknown service message"
2926
  msgstr ""
2927
 
2928
+ #: src/Tribe/Aggregator/Record/List_Table.php:540
2929
  msgid "Unknown"
2930
  msgstr ""
2931
 
2932
+ #: src/Tribe/Aggregator/Record/Abstract.php:1206
2933
  msgid "When this import was last scheduled to run, the daily limit for your Event Aggregator license had already been reached."
2934
  msgstr ""
2935
 
3668
  msgid "mi"
3669
  msgstr ""
3670
 
3671
+ #: src/Tribe/Main.php:982
3672
  msgid "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3673
  msgstr ""
3674
 
3909
  msgid "Scheduled Imports"
3910
  msgstr ""
3911
 
3912
+ #: src/Tribe/Aggregator/Tabs/New.php:615
3913
  msgid "Renew your Event Aggregator license"
3914
  msgstr ""
3915
 
3916
+ #: src/Tribe/Aggregator/Tabs/New.php:612
3917
  msgid "Renew your license in order to import events from Facebook, iCalendar, Google, or Meetup."
3918
  msgstr ""
3919
 
3920
+ #: src/Tribe/Aggregator/Tabs/New.php:611
3921
  msgid "Your Event Aggregator license is expired."
3922
  msgstr ""
3923
 
3924
+ #: src/Tribe/Aggregator/Tabs/New.php:563
3925
  msgid "Learn More"
3926
  msgstr ""
3927
 
3928
+ #: src/Tribe/Aggregator/Tabs/New.php:558 src/Tribe/Aggregator/Tabs/New.php:565
3929
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:19
3930
  msgid "opens in a new window"
3931
  msgstr ""
3932
 
3933
+ #: src/Tribe/Aggregator/Tabs/New.php:556
3934
  msgid "Buy It Now"
3935
  msgstr ""
3936
 
3937
+ #: src/Tribe/Aggregator/Tabs/New.php:553
3938
  msgid "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3939
  msgstr ""
3940
 
3941
+ #: src/Tribe/Aggregator/Tabs/New.php:551
3942
  msgid "Import Using Event Aggregator"
3943
  msgstr ""
3944
 
3945
+ #: src/Tribe/Aggregator/Tabs/New.php:464
3946
  msgid "Unable to save credentials"
3947
  msgstr ""
3948
 
3949
+ #: src/Tribe/Aggregator/Tabs/New.php:457
3950
  msgid "Credentials have been saved"
3951
  msgstr ""
3952
 
3953
+ #: src/Tribe/Aggregator/Tabs/New.php:448
3954
  msgid "The Meetup API key is required."
3955
  msgstr ""
3956
 
3957
+ #: src/Tribe/Aggregator/Tabs/New.php:439
3958
  msgid "Invalid credential save nonce"
3959
  msgstr ""
3960
 
3961
+ #: src/Tribe/Aggregator/Tabs/New.php:429
3962
  msgid "Invalid credential save request"
3963
  msgstr ""
3964
 
3965
+ #: src/Tribe/Aggregator/Tabs/New.php:417
3966
  msgid "View your scheduled imports."
3967
  msgstr ""
3968
 
3969
+ #: src/Tribe/Aggregator/Tabs/New.php:413
3970
  msgid "The next import is scheduled for %1$s."
3971
  msgstr ""
3972
 
3973
+ #: src/Tribe/Aggregator/Tabs/New.php:406
3974
  msgctxt "separator between date and time"
3975
  msgid " at "
3976
  msgstr ""
3977
 
3978
+ #: src/Tribe/Aggregator/Tabs/New.php:402
3979
  msgid "Your scheduled import was saved and the first import is complete!"
3980
  msgstr ""
3981
 
3982
+ #: src/Tribe/Aggregator/Tabs/New.php:377
3983
  msgid "View your event categories"
3984
  msgstr ""
3985
 
3986
+ #: src/Tribe/Aggregator/Tabs/New.php:373
3987
  msgid "%1$d new event category was created."
3988
  msgid_plural "%1$d new event categories were created."
3989
  msgstr[0] ""
3991
  msgstr[2] ""
3992
  msgstr[3] ""
3993
 
3994
+ #: src/Tribe/Aggregator/Tabs/New.php:364
3995
  msgid "View your event organizers"
3996
  msgstr ""
3997
 
3998
+ #: src/Tribe/Aggregator/Tabs/New.php:360
3999
  msgid "%1$d new organizer was imported."
4000
  msgid_plural "%1$d new organizers were imported."
4001
  msgstr[0] ""
4003
  msgstr[2] ""
4004
  msgstr[3] ""
4005
 
4006
+ #: src/Tribe/Aggregator/Tabs/New.php:352
4007
  msgid "View your event venues"
4008
  msgstr ""
4009
 
4010
+ #: src/Tribe/Aggregator/Tabs/New.php:348
4011
  msgid "%1$d new venue was imported."
4012
  msgid_plural "%1$d new venues were imported."
4013
  msgstr[0] ""
4015
  msgstr[2] ""
4016
  msgstr[3] ""
4017
 
4018
+ #: src/Tribe/Aggregator/Tabs/New.php:338
4019
  msgid "View all %s"
4020
  msgstr ""
4021
 
4022
+ #: src/Tribe/Aggregator/Tabs/New.php:330
4023
  msgid "No %1$s were imported or updated."
4024
  msgstr ""
4025
 
4026
+ #: src/Tribe/Aggregator/Tabs/New.php:323
4027
  msgid "%1$d new image was imported."
4028
  msgid_plural "%1$d new images were imported."
4029
  msgstr[0] ""
4031
  msgstr[2] ""
4032
  msgstr[3] ""
4033
 
4034
+ #: src/Tribe/Aggregator/Tabs/New.php:314
4035
  msgid "%1$d already-imported %2$s was skipped."
4036
  msgid_plural "%1$d already-imported %2$s were skipped."
4037
  msgstr[0] ""
4039
  msgstr[2] ""
4040
  msgstr[3] ""
4041
 
4042
+ #: src/Tribe/Aggregator/Tabs/New.php:303
4043
  msgid "%1$d existing %2$s was updated."
4044
  msgid_plural "%1$d existing %2$s were updated."
4045
  msgstr[0] ""
4047
  msgstr[2] ""
4048
  msgstr[3] ""
4049
 
4050
+ #: src/Tribe/Aggregator/Tabs/New.php:291
4051
  msgid "%1$d new %2$s was imported."
4052
  msgid_plural "%1$d new %2$s were imported."
4053
  msgstr[0] ""
4323
  msgid "Events Aggregator Record"
4324
  msgstr ""
4325
 
4326
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:183
4327
  msgid "Unable to continue inserting data. Please reload this page to continue/try again."
4328
  msgstr ""
4329
 
4343
  msgid "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4344
  msgstr ""
4345
 
4346
+ #: src/Tribe/Aggregator/Record/Queue_Processor.php:233
4347
  msgid "Could not process queue for Import Record %1$d: %2$s"
4348
  msgstr ""
4349
 
4350
+ #: src/Tribe/Aggregator/Record/List_Table.php:664
4351
  msgid "Select %s"
4352
  msgstr ""
4353
 
4354
+ #: src/Tribe/Aggregator/Record/List_Table.php:629
4355
+ #: src/Tribe/Aggregator/Record/List_Table.php:638
4356
+ #: src/Tribe/Aggregator/Record/List_Table.php:646
4357
  msgid "updated"
4358
  msgstr ""
4359
 
4360
+ #: src/Tribe/Aggregator/Record/List_Table.php:627
4361
+ #: src/Tribe/Aggregator/Record/List_Table.php:635
4362
+ #: src/Tribe/Aggregator/Record/List_Table.php:643
4363
  msgid "new"
4364
  msgstr ""
4365
 
4366
+ #: src/Tribe/Aggregator/Record/List_Table.php:624
4367
  msgid "Latest Import:"
4368
  msgstr ""
4369
 
4370
+ #: src/Tribe/Aggregator/Record/List_Table.php:622
4371
  msgid "all time"
4372
  msgstr ""
4373
 
4374
+ #: src/Tribe/Aggregator/Record/List_Table.php:596
4375
  msgid "One Time"
4376
  msgstr ""
4377
 
4378
+ #: src/Tribe/Aggregator/Record/List_Table.php:593
4379
  msgid "Invalid Frequency"
4380
  msgstr ""
4381
 
4382
+ #: src/Tribe/Aggregator/Record/List_Table.php:563 src/Tribe/Aggregator.php:426
4383
  #: src/Tribe/Ignored_Events.php:357
4384
  #: src/admin-views/tribe-options-addons-api.php:36
4385
  msgctxt "in human readable time"
4386
  msgid "in about %s"
4387
  msgstr ""
4388
 
4389
+ #: src/Tribe/Aggregator/Record/List_Table.php:561 src/Tribe/Aggregator.php:424
4390
  #: src/Tribe/Ignored_Events.php:355
4391
  #: src/admin-views/tribe-options-addons-api.php:34
4392
  msgctxt "human readable time ago"
4393
  msgid "about %s ago"
4394
  msgstr ""
4395
 
4396
+ #: src/Tribe/Aggregator/Record/List_Table.php:513
4397
  msgid "Radius:"
4398
  msgstr ""
4399
 
4400
+ #: src/Tribe/Aggregator/Record/List_Table.php:496
4401
  msgid "Keywords:"
4402
  msgstr ""
4403
 
4404
+ #: src/Tribe/Aggregator/Record/List_Table.php:483
4405
  #: src/Tribe/Ignored_Events.php:337
4406
  msgctxt "record via origin"
4407
  msgid "via "
4408
  msgstr ""
4409
 
4410
+ #: src/Tribe/Aggregator/Record/List_Table.php:440
4411
  msgid "Import preview"
4412
  msgstr ""
4413
 
4414
+ #: src/Tribe/Aggregator/Record/List_Table.php:436
4415
  msgid "Import pending"
4416
  msgstr ""
4417
 
4418
+ #: src/Tribe/Aggregator/Record/List_Table.php:432
4419
  msgid "Import schedule"
4420
  msgstr ""
4421
 
4422
+ #: src/Tribe/Aggregator/Record/List_Table.php:420
4423
  msgid "Import failed"
4424
  msgstr ""
4425
 
4426
+ #: src/Tribe/Aggregator/Record/List_Table.php:416
4427
  msgid "Import completed"
4428
  msgstr ""
4429
 
4510
  msgid "Eventbrite"
4511
  msgstr ""
4512
 
4513
+ #: src/Tribe/Aggregator/Record/Abstract.php:1149
4514
  msgid "Deleted Attachment: %d"
4515
  msgstr ""
4516
 
4517
+ #: src/Tribe/Aggregator/Record/Abstract.php:497
4518
  msgid "Record: "
4519
  msgstr ""
4520
 
4551
  msgstr ""
4552
 
4553
  #: src/Tribe/Aggregator/Page.php:96
4554
+ #: src/Tribe/Aggregator/Record/List_Table.php:492
4555
  msgid "View Filters"
4556
  msgstr ""
4557
 
4913
  msgstr ""
4914
 
4915
  #: common/src/Tribe/PUE/Checker.php:961 common/src/Tribe/PUE/Notices.php:285
4916
+ #: src/Tribe/Aggregator/Record/Abstract.php:1164
4917
  msgid " (opens in a new window)"
4918
  msgstr ""
4919
 
5214
  msgid "No notable changes detected"
5215
  msgstr ""
5216
 
5217
+ #: src/Tribe/Main.php:2561
5218
  msgid " (View Full %1$s Description Here: %2$s)"
5219
  msgstr ""
5220
 
5262
  msgid "Keep the Core Plugin %sFREE%s!"
5263
  msgstr ""
5264
 
5265
+ #: src/Tribe/Template_Factory.php:231
5266
  msgid "No results were found for %1$s in or near %2$s."
5267
  msgstr ""
5268
 
5269
+ #: src/Tribe/Template_Factory.php:229
5270
  msgid "There were no results found for %s."
5271
  msgstr ""
5272
 
5273
+ #: src/Tribe/Template/Month.php:458
5274
  msgid "There were no results found for %s this month. Try searching next month."
5275
  msgstr ""
5276
 
5277
+ #: src/Tribe/Template/Day.php:154
5278
  msgid "No %1$s scheduled for %2$s. Please try another day."
5279
  msgstr ""
5280
 
5281
+ #: src/Tribe/Main.php:3855
5282
  msgid "Check out the %savailable add-ons%s."
5283
  msgstr ""
5284
 
5285
+ #: src/Tribe/Main.php:1922
5286
  msgid "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5287
  msgstr ""
5288
 
5289
+ #: src/Tribe/Main.php:1853 src/Tribe/Main.php:1873
5290
  msgid "%1$s scheduled for: %2$s."
5291
  msgstr ""
5292
 
5293
+ #: src/Tribe/Main.php:1834
5294
  msgid "%1$s draft updated. %2$sPreview %3$s"
5295
  msgstr ""
5296
 
5297
+ #: src/Tribe/Main.php:1825
5298
  msgid "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5299
  msgstr ""
5300
 
5301
+ #: src/Tribe/Main.php:1819
5302
  msgid "%1$s submitted. %2$sPreview %3$s"
5303
  msgstr ""
5304
 
5305
+ #: src/Tribe/Main.php:1801
5306
  msgid "%1$s updated. %2$sView %1$s%3$s"
5307
  msgstr ""
5308
 
5309
+ #: src/Tribe/Main.php:1476
5310
  msgid "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5311
  msgstr ""
5312
 
5313
+ #: src/Tribe/Main.php:1111
5314
  msgid "If you have a valid license for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5315
  msgstr ""
5316
 
5317
+ #: src/Tribe/Main.php:1110
5318
  msgid "post a thread"
5319
  msgstr ""
5320
 
5321
+ #: src/Tribe/Main.php:1106
5322
  msgid "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays."
5323
  msgstr ""
5324
 
5325
+ #: src/Tribe/Main.php:1102
5326
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5327
  msgstr ""
5328
 
5329
+ #: src/Tribe/Main.php:1101
5330
  msgid "open-source forum on WordPress.org"
5331
  msgstr ""
5332
 
5333
+ #: src/Tribe/Main.php:1097
5334
  msgid "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays"
5335
  msgstr ""
5336
 
5337
+ #: src/Tribe/Main.php:1096 src/Tribe/Main.php:1104
5338
  msgid "premium support on our website"
5339
  msgstr ""
5340
 
5341
+ #: src/Tribe/Main.php:1094
5342
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5343
  msgstr ""
5344
 
5345
+ #: src/Tribe/Main.php:1093
5346
  msgid "Events Tickets"
5347
  msgstr ""
5348
 
5349
+ #: src/Tribe/Main.php:1078
5350
  msgid "Customizing the Events plugins"
5351
  msgstr ""
5352
 
5353
+ #: src/Tribe/Main.php:1078
5354
  msgid "%s: Code and guides for customizing your calendar in useful and interesting ways."
5355
  msgstr ""
5356
 
5357
+ #: src/Tribe/Main.php:1076
5358
  msgid "Troubleshooting common problems"
5359
  msgstr ""
5360
 
5361
+ #: src/Tribe/Main.php:1076
5362
  msgid "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5363
  msgstr ""
5364
 
5365
+ #: src/Tribe/Main.php:1074
5366
  msgid "Using stylesheets and page templates"
5367
  msgstr ""
5368
 
5369
+ #: src/Tribe/Main.php:1074
5370
  msgid "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5371
  msgstr ""
5372
 
5373
+ #: src/Tribe/Main.php:1072
5374
  msgid "Themer’s Guide"
5375
  msgstr ""
5376
 
5377
+ #: src/Tribe/Main.php:1072
5378
  msgid "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5379
  msgstr ""
5380
 
5381
+ #: src/Tribe/Main.php:1070
5382
  msgid "Features overview"
5383
  msgstr ""
5384
 
5385
+ #: src/Tribe/Main.php:1070
5386
  msgid "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5387
  msgstr ""
5388
 
5389
+ #: src/Tribe/Main.php:1068
5390
  msgid "Settings overview"
5391
  msgstr ""
5392
 
5393
+ #: src/Tribe/Main.php:1068
5394
  msgid "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5395
  msgstr ""
5396
 
5397
+ #: src/Tribe/Main.php:1065
5398
  msgid "Support for The Events Calendar"
5399
  msgstr ""
5400
 
5401
+ #: src/Tribe/Main.php:1054
5402
  msgid "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5403
  msgstr ""
5404
 
5405
+ #: src/Tribe/Main.php:1052
5406
  msgid "New User Primer"
5407
  msgstr ""
5408
 
5425
  msgid "CSV Import Settings"
5426
  msgstr ""
5427
 
5428
+ #: src/deprecated/Tribe__Events__Asset__Bootstrap_Datepicker.php:27
5429
  msgid "Clear"
5430
  msgstr "Clirio"
5431
 
5437
  msgid "Create New %s"
5438
  msgstr ""
5439
 
5440
+ #: src/Tribe/Organizer.php:375
5441
  msgid "Unnamed %s"
5442
  msgstr ""
5443
 
5627
  msgid "%s must be a positive number or percent."
5628
  msgstr ""
5629
 
5630
+ #: src/Tribe/Main.php:999
5631
  msgid "%1$s or %2$s"
5632
  msgstr ""
5633
 
5684
  msgid "Day Navigation"
5685
  msgstr "Llywiwr Dydd"
5686
 
5687
+ #: src/Tribe/Aggregator/Tabs/New.php:400
5688
  msgid "Import complete!"
5689
  msgstr "Mewnforio wedi gorffen!"
5690
 
5928
  msgstr "Mwy..."
5929
 
5930
  #: common/src/Tribe/Admin/Help_Page.php:194 common/src/Tribe/Plugins_API.php:43
5931
+ #: src/Tribe/Main.php:1105
5932
  msgid "Events Calendar PRO"
5933
  msgstr ""
5934
 
6367
  msgid "%s Website"
6368
  msgstr ""
6369
 
6370
+ #: src/Tribe/Aggregator/Record/List_Table.php:509
6371
  msgid "Location:"
6372
  msgstr ""
6373
 
7772
  msgid "Template overrides should be moved to the correct subdirectory: %s"
7773
  msgstr "Dylid symud y camau diystyru templedi i'r is-gyfeiriadur cywir: %s"
7774
 
7775
+ #: src/Tribe/Template_Factory.php:237
7776
  msgid "No previous %s "
7777
  msgstr ""
7778
 
7779
+ #: src/Tribe/Template_Factory.php:235 src/Tribe/Template_Factory.php:240
7780
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7781
  msgstr ""
7782
 
7783
+ #: src/Tribe/Template_Factory.php:233
7784
  msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7785
  msgstr ""
7786
 
7788
  msgid "This %s has passed."
7789
  msgstr ""
7790
 
7791
+ #: src/Tribe/Template/Month.php:955
7792
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7793
  msgstr ""
7794
 
7795
+ #: src/Tribe/Template/Month.php:464 src/Tribe/Template_Factory.php:242
7796
  msgid "There were no results found."
7797
  msgstr "Ni ddaethpwyd o hyd i ganlyniadau."
7798
 
7799
+ #: src/Tribe/Template/Month.php:462
7800
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7801
  msgstr ""
7802
 
7803
+ #: src/Tribe/Template/Day.php:152
7804
  msgid "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7805
  msgstr ""
7806
 
7807
+ #: src/Tribe/Template/Day.php:118 src/Tribe/Template/Day.php:134
7808
  msgid "Ongoing"
7809
  msgstr "Parhaus"
7810
 
7811
+ #: src/Tribe/Aggregator/Page.php:82 src/Tribe/Template/Day.php:115
7812
+ #: src/Tribe/Template/Day.php:131
7813
  msgid "All Day"
7814
  msgstr "Drwy'r Dydd"
7815
 
7906
  msgid "Error"
7907
  msgstr "Gwall"
7908
 
7909
+ #: src/Tribe/Main.php:4198
7910
  msgid "Once Every 30 Mins"
7911
  msgstr ""
7912
 
7913
+ #: src/Tribe/Main.php:4118
7914
  msgid "Day Of"
7915
  msgstr "Dydd O"
7916
 
7917
+ #: src/Tribe/Main.php:4116
7918
  msgid "%s From"
7919
  msgstr ""
7920
 
7921
+ #: src/Tribe/Main.php:4112
7922
  msgid "%s In"
7923
  msgstr ""
7924
 
7925
+ #: src/Tribe/Main.php:4107 src/Tribe/Main.php:4132
7926
  #: src/admin-views/aggregator/origins/refine.php:7
7927
  msgid "Date"
7928
  msgstr "Dyddiad"
7929
 
7930
+ #: src/Tribe/Main.php:4034
7931
  msgid "Search"
7932
  msgstr "Chwilio"
7933
 
7934
+ #: src/Tribe/Main.php:4008 src/admin-views/aggregator/fields/schedule.php:44
7935
  #: src/admin-views/aggregator/fields/schedule.php:62
7936
  msgid "Day"
7937
  msgstr "Diwrnod"
7938
 
7939
+ #: src/Tribe/Main.php:3991
7940
  msgid "Month"
7941
  msgstr "Mis"
7942
 
7943
+ #: src/Tribe/Main.php:3973
7944
  msgid "List"
7945
  msgstr "Rhestr"
7946
 
7947
+ #: src/Tribe/Main.php:3957
7948
  msgid "Calendar"
7949
  msgstr "Calendr"
7950
 
7951
  #: common/src/Tribe/Settings.php:254
7952
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:89 src/Tribe/Main.php:3956
7953
  msgid "Settings"
7954
  msgstr "Gosodiadau"
7955
 
7963
  msgid "Add %s"
7964
  msgstr ""
7965
 
7966
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:45 src/Tribe/Main.php:3907
7967
  msgid "View Calendar"
7968
  msgstr "Gweld y Calendr"
7969
 
7971
  msgid "%s"
7972
  msgstr ""
7973
 
7974
+ #: src/Tribe/Main.php:3854
7975
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7976
  msgstr "Ydych chi'n chwilio am swyddogaethau ychwanegol gan gynnwys digwyddiadau ailadroddus, gwerthiannau tocynnau, digwyddiadau a gyflwynwyd gan y cyhoedd, golygfeydd newydd a mwy?"
7977
 
7978
+ #: src/Tribe/Main.php:3849
7979
  msgid "Additional Functionality"
7980
  msgstr "Swyddogaethau Ychwanegol"
7981
 
7982
+ #: src/Tribe/Main.php:3804
7983
  msgid "News from Modern Tribe"
7984
  msgstr "Newyddion gan Modern Tribe"
7985
 
7986
+ #: src/Tribe/Main.php:3784
7987
  msgid "View All Add-Ons"
7988
  msgstr "Gweld Pob Ychwanegyn"
7989
 
7990
+ #: src/Tribe/Main.php:3781
7991
  msgid "Support"
7992
  msgstr "Cymorth"
7993
 
7994
+ #: src/Tribe/Main.php:3429 src/Tribe/Main.php:3442
7995
  msgid "%s Information"
7996
  msgstr "Gwybodaeth am %s"
7997
 
7998
+ #: src/Tribe/Main.php:3420
7999
  msgid "%s Options"
8000
  msgstr ""
8001
 
8002
+ #: src/Tribe/Main.php:3343 src/Tribe/Main.php:3378
8003
  #: src/functions/template-tags/day.php:157
8004
  #: src/functions/template-tags/day.php:178
8005
  msgid "Date out of range."
8006
  msgstr "Dyddiad allan o'r ystod."
8007
 
8008
+ #: src/Tribe/Main.php:2170
8009
  msgid "all"
8010
  msgstr ""
8011
 
8012
+ #: src/Tribe/Main.php:2169 src/functions/template-tags/general.php:111
8013
  msgid "events"
8014
  msgstr ""
8015
 
8016
+ #: src/Tribe/Main.php:2168 src/functions/template-tags/general.php:79
8017
  msgid "event"
8018
  msgstr ""
8019
 
8020
+ #: src/Tribe/Main.php:2167
8021
  msgid "page"
8022
  msgstr ""
8023
 
8029
  msgid "Done"
8030
  msgstr "Gorffen"
8031
 
8032
+ #: common/src/Tribe/Main.php:272
8033
+ #: src/deprecated/Tribe__Events__Asset__Bootstrap_Datepicker.php:28
8034
  #: src/functions/template-tags/day.php:104
8035
  msgid "Today"
8036
  msgstr "Heddiw"
8043
  msgid "Next"
8044
  msgstr "Nesaf"
8045
 
8046
+ #: src/Tribe/Linked_Posts.php:1138
8047
  msgid "No saved %s exists."
8048
  msgstr "Nid oes %s sydd wedi'i gadw'n bodoli."
8049
 
8050
+ #: src/Tribe/Linked_Posts.php:964
8051
  msgid "Available %s"
8052
  msgstr "%s Ar Gael"
8053
 
8054
+ #: src/Tribe/Linked_Posts.php:960
8055
  msgid "My %s"
8056
  msgstr "Fy %s"
8057
 
8058
+ #: src/Tribe/Main.php:1858 src/Tribe/Main.php:1878
8059
  msgid "%s draft updated."
8060
  msgstr "Diweddarwyd drafft %s."
8061
 
8062
+ #: src/Tribe/Main.php:1851 src/Tribe/Main.php:1871
8063
  msgid "%s submitted."
8064
  msgstr "Cyflwynwyd %s."
8065
 
8066
+ #: src/Tribe/Main.php:1849 src/Tribe/Main.php:1869
8067
  msgid "%s published."
8068
  msgstr "Cyhoeddwyd %s."
8069
 
8070
  #. translators: %s: date and time of the revision
8071
+ #: src/Tribe/Main.php:1868
8072
  msgid "%s restored to revision from %s"
8073
  msgstr "Ailosodwyd %s i'r un diwygiedig o %s"
8074
 
8075
  #. translators: Publish box date format, see http://php.net/date
8076
+ #: src/Tribe/Main.php:1828 src/Tribe/Main.php:1856 src/Tribe/Main.php:1876
8077
  msgid "M j, Y @ G:i"
8078
  msgstr "M j, Y @ G:i"
8079
 
8080
+ #: src/Tribe/Main.php:1817 src/Tribe/Main.php:1850 src/Tribe/Main.php:1870
8081
  msgid "%s saved."
8082
  msgstr "Cadwyd %s."
8083
 
8084
  #. translators: %s: date and time of the revision
8085
+ #: src/Tribe/Main.php:1810 src/Tribe/Main.php:1848
8086
  msgid "%1$s restored to revision from %2$s"
8087
  msgstr ""
8088
 
8089
+ #: src/Tribe/Main.php:1808 src/Tribe/Main.php:1843 src/Tribe/Main.php:1846
8090
+ #: src/Tribe/Main.php:1863 src/Tribe/Main.php:1866
8091
  msgid "%s updated."
8092
  msgstr "Diweddarwyd %s."
8093
 
8094
+ #: src/Tribe/Main.php:1807 src/Tribe/Main.php:1845 src/Tribe/Main.php:1865
8095
  msgid "Custom field deleted."
8096
  msgstr "Dilëwyd y maes cyfaddas."
8097
 
8098
+ #: src/Tribe/Main.php:1806 src/Tribe/Main.php:1844 src/Tribe/Main.php:1864
8099
  msgid "Custom field updated."
8100
  msgstr "Diweddarwyd y maes cyfaddas."
8101
 
8102
+ #: src/Tribe/Main.php:1784
8103
  msgid "New %s Category Name"
8104
  msgstr ""
8105
 
8106
+ #: src/Tribe/Main.php:1783
8107
  msgid "Add New %s Category"
8108
  msgstr ""
8109
 
8110
+ #: src/Tribe/Main.php:1782
8111
  msgid "Update %s Category"
8112
  msgstr ""
8113
 
8114
+ #: src/Tribe/Main.php:1781
8115
  msgid "Edit %s Category"
8116
  msgstr ""
8117
 
8118
+ #: src/Tribe/Main.php:1780
8119
  msgid "Parent %s Category:"
8120
  msgstr ""
8121
 
8122
+ #: src/Tribe/Main.php:1779
8123
  msgid "Parent %s Category"
8124
  msgstr ""
8125
 
8126
+ #: src/Tribe/Main.php:1778
8127
  msgid "All %s Categories"
8128
  msgstr ""
8129
 
8130
+ #: src/Tribe/Main.php:1777
8131
  msgid "Search %s Categories"
8132
  msgstr ""
8133
 
8134
+ #: src/Tribe/Main.php:1776
8135
  msgid "%s Category"
8136
  msgstr ""
8137
 
8138
+ #: src/Tribe/Main.php:1766 src/Tribe/Organizer.php:98 src/Tribe/Venue.php:117
8139
  msgid "No %s found in Trash"
8140
  msgstr "Ni ddaethpwyd o hyd i %s yn y Bin Sbwriel"
8141
 
8142
+ #: src/Tribe/Main.php:1765 src/Tribe/Organizer.php:97 src/Tribe/Venue.php:116
8143
  msgid "No %s found"
8144
  msgstr "Ni ddaethpwyd o hyd i %s"
8145
 
8146
+ #: src/Tribe/Main.php:1764 src/Tribe/Organizer.php:96 src/Tribe/Venue.php:115
8147
  msgid "Search %s"
8148
  msgstr "Chwilio %s"
8149
 
8150
+ #: src/Tribe/Main.php:1763 src/Tribe/Organizer.php:95 src/Tribe/Venue.php:114
8151
  #: src/views/month/single-day.php:26
8152
  msgid "View %s"
8153
  msgstr "Gweld %s"
8154
 
8155
+ #: src/Tribe/Main.php:1762 src/Tribe/Organizer.php:94 src/Tribe/Venue.php:113
8156
  msgid "New %s"
8157
  msgstr "%s Newydd"
8158
 
8159
+ #: src/Tribe/Main.php:1760 src/Tribe/Main.php:1892 src/Tribe/Main.php:1893
8160
  #: src/Tribe/Organizer.php:92 src/Tribe/Venue.php:111
8161
  msgid "Add New %s"
8162
  msgstr "Ychwanegu %s Newydd"
8163
 
8164
+ #: src/Tribe/Main.php:1759 src/Tribe/Organizer.php:91 src/Tribe/Venue.php:110
8165
  msgid "Add New"
8166
  msgstr "Ychwanegu'n Newydd"
8167
 
8168
+ #: src/Tribe/Main.php:1726 src/Tribe/Main.php:2165
8169
  msgid "tag"
8170
  msgstr "tag"
8171
 
8172
+ #: src/Tribe/Main.php:1712 src/Tribe/Main.php:2166
8173
  msgid "category"
8174
  msgstr "categori"
8175
 
8176
+ #: src/Tribe/Main.php:1464
8177
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8178
  msgstr "Mae angen PHP %s neu uwch ar The Events Calendar. Cysylltwch â'ch gweinydd i drafod eich symud i fersiwn PHP mwy newydd."
8179
 
8180
+ #: src/Tribe/Main.php:1461
8181
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8182
  msgstr "Mae angen WordPress %s neu uwch ar The Events Calendar. Diweddarwch eich fersiwn o WordPress."
8183
 
8195
  msgid "Display"
8196
  msgstr "Dangos"
8197
 
8198
+ #: src/Tribe/Main.php:1308
8199
  msgid "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8200
  msgstr ""
8201
 
8202
+ #: src/Tribe/Main.php:1296
8203
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8204
  msgstr "Nid yw eich fersiwn chi o The Events Calendar yn gyfredol gyda un o'ch ychwanegion The Events Calendar. Dylech %sddiweddaru yn awr.%s"
8205
 
8206
+ #: src/Tribe/Main.php:786
8207
  msgid "Initializing Tribe Events on %s"
8208
  msgstr "Dechrau Digwyddiadau Tribe ar %s"
8209
 
8210
+ #: src/Tribe/Main.php:761
8211
  msgid "today"
8212
  msgstr "heddiw"
8213
 
8214
+ #: src/Tribe/Main.php:760
8215
  msgid "day"
8216
  msgstr "diwrnod"
8217
 
8218
+ #: src/Tribe/Main.php:759
8219
  msgid "past"
8220
  msgstr "yn y gorffennol"
8221
 
8222
+ #: src/Tribe/Main.php:758
8223
  msgid "upcoming"
8224
  msgstr "ar y gweill"
8225
 
8226
+ #: src/Tribe/Main.php:757
8227
  msgid "list"
8228
  msgstr "rhestr"
8229
 
8230
+ #: src/Tribe/Main.php:756
8231
  msgid "month"
8232
  msgstr "mis"
8233
 
8234
+ #. #-#-#-#-# the-events-calendar-code.pot (The Events Calendar 4.6.22.1)
8235
  #. #-#-#-#-#
8236
  #. Plugin Name of the plugin/theme
8237
  #: common/src/Tribe/Admin/Help_Page.php:59 common/src/Tribe/Customizer.php:569
8238
+ #: common/src/Tribe/Plugins_API.php:25 src/Tribe/Main.php:749
8239
+ #: src/Tribe/Main.php:1092 src/Tribe/Privacy.php:29
8240
  #: src/functions/template-tags/general.php:1345
8241
  msgid "The Events Calendar"
8242
  msgstr "The Events Calendar"
8243
 
8244
+ #: src/Tribe/Main.php:1162 src/admin-views/aggregator/tabs/import-form.php:185
8245
  #: src/admin-views/aggregator/tabs/import-form.php:197
8246
  #: src/functions/template-tags/general.php:63
8247
  msgid "Event"
8248
  msgstr "Digwyddiad"
8249
 
8250
  #: common/src/Tribe/Settings.php:177 common/src/Tribe/Settings.php:241
8251
+ #: common/src/Tribe/Settings.php:242 src/Tribe/Main.php:1154
8252
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:207
8253
  #: src/functions/template-tags/general.php:95
8254
  msgid "Events"
8255
  msgstr "Digwyddiadau"
8256
 
8257
+ #: src/Tribe/Organizer.php:157 src/functions/template-tags/organizer.php:112
8258
  msgid "Organizer"
8259
  msgstr "Trefnydd"
8260
 
8261
  #: src/Tribe/Organizer.php:171
8262
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:206
8263
+ #: src/functions/template-tags/organizer.php:123
8264
  msgid "Organizers"
8265
  msgstr "Trefnwyr"
8266
 
8524
  msgid "End:"
8525
  msgstr "Gorffen:"
8526
 
8527
+ #: src/Tribe/Aggregator/Record/List_Table.php:505
8528
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
8529
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
8530
  #: src/views/modules/meta/details.php:66 src/views/modules/meta/details.php:91
8543
  msgid "Start Date"
8544
  msgstr "Dyddiad Cychwyn"
8545
 
8546
+ #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1775
8547
  msgid "%s Categories"
8548
  msgstr ""
8549
 
8554
  #: src/Tribe/Admin/Timezone_Updater.php:87
8555
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
8556
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:100
8557
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:210
8558
  msgid "%d%% complete"
8559
  msgstr ""
8560
 
8567
  msgstr ""
8568
 
8569
  #: src/Tribe/Admin/Bar/Default_Configurator.php:62
8570
+ #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:211 src/Tribe/Main.php:1761
8571
+ #: src/Tribe/Main.php:4843 src/Tribe/Main.php:4890 src/Tribe/Organizer.php:93
8572
  #: src/Tribe/Venue.php:112
8573
  msgid "Edit %s"
8574
  msgstr "Golygu %s"
8575
 
8576
+ #: src/Tribe/Main.php:4827 src/Tribe/Main.php:4884
8577
  msgid "Use Saved %s:"
8578
  msgstr "Defnyddio %s sydd wedi'i Gadw:"
8579
 
8580
+ #: src/Tribe/Main.php:991
8581
  msgid " ask the site administrator set a different Events URL slug."
8582
  msgstr ""
8583
 
8584
+ #: src/Tribe/Main.php:985
8585
  msgid "Ask the site administrator to edit the %s slug"
8586
  msgstr ""
8587
 
8589
  msgid "Thanks for Updating The Events Calendar"
8590
  msgstr "Diolch am Ddiweddaru The Events Calendar"
8591
 
8592
+ #: src/Tribe/Main.php:844 src/Tribe/Main.php:846
8593
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
8594
  msgid "Welcome to The Events Calendar"
8595
  msgstr "Croeso i The Events Calendar"
lang/the-events-calendar-da_DK.po CHANGED
@@ -11,6 +11,31 @@ msgstr ""
11
  "Language: da_DK\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: src/views/month/single-day.php:57
15
  msgid "%s for %s"
16
  msgstr ""
@@ -183,91 +208,91 @@ msgstr ""
183
  msgid "Do more with Eventbrite Tickets"
184
  msgstr ""
185
 
186
- #: src/Tribe/Main.php:4513
187
  msgid "Search for %s by month. Please use the format %s."
188
  msgstr ""
189
 
190
- #: src/Tribe/Main.php:4508
191
  msgid "Search for %s by Date. Please use the format %s."
192
  msgstr ""
193
 
194
- #: src/Tribe/Main.php:4476 src/Tribe/Main.php:4477
195
  msgid "2 digit month dot 4 digit year"
196
  msgstr ""
197
 
198
- #: src/Tribe/Main.php:4475
199
  msgid "4 digit year dot 2 digit month"
200
  msgstr ""
201
 
202
- #: src/Tribe/Main.php:4474
203
  msgid "2 digit month hyphen 4 digit year"
204
  msgstr ""
205
 
206
- #: src/Tribe/Main.php:4471 src/Tribe/Main.php:4472 src/Tribe/Main.php:4473
207
  msgid "1 digit month hyphen 4 digit year"
208
  msgstr ""
209
 
210
- #: src/Tribe/Main.php:4468 src/Tribe/Main.php:4470
211
  msgid "2 digit month slash 4 digit year"
212
  msgstr ""
213
 
214
- #: src/Tribe/Main.php:4467 src/Tribe/Main.php:4469
215
  msgid "1 digit month slash 4 digit year"
216
  msgstr ""
217
 
218
- #: src/Tribe/Main.php:4466
219
  msgid "4 digit year hyphen 2 digit month"
220
  msgstr ""
221
 
222
- #: src/Tribe/Main.php:4462
223
  msgid "2 digit day dot 2 digit month dot 4 digit year"
224
  msgstr ""
225
 
226
- #: src/Tribe/Main.php:4461
227
  msgid "2 digit month dot 2 digit day dot 4 digit year"
228
  msgstr ""
229
 
230
- #: src/Tribe/Main.php:4460
231
  msgid "4 digit year dot 2 digit month dot 2 digit day"
232
  msgstr ""
233
 
234
- #: src/Tribe/Main.php:4459
235
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
236
  msgstr ""
237
 
238
- #: src/Tribe/Main.php:4458
239
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
240
  msgstr ""
241
 
242
- #: src/Tribe/Main.php:4457
243
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
244
  msgstr ""
245
 
246
- #: src/Tribe/Main.php:4456
247
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
248
  msgstr ""
249
 
250
- #: src/Tribe/Main.php:4455
251
  msgid "2 digit day slash 2 digit month slash 4 digit year"
252
  msgstr ""
253
 
254
- #: src/Tribe/Main.php:4454
255
  msgid "1 digit day slash 1 digit month slash 4 digit year"
256
  msgstr ""
257
 
258
- #: src/Tribe/Main.php:4453
259
  msgid "2 digit month slash 2 digit day slash 4 digit year"
260
  msgstr ""
261
 
262
- #: src/Tribe/Main.php:4452
263
  msgid "1 digit month slash 1 digit day slash 4 digit year"
264
  msgstr ""
265
 
266
- #: src/Tribe/Main.php:4451
267
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
268
  msgstr ""
269
 
270
- #: src/Tribe/Main.php:4430
271
  msgid "Search for %s by Keyword."
272
  msgstr ""
273
 
@@ -495,7 +520,7 @@ msgid "Search our support help desk"
495
  msgstr ""
496
 
497
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
498
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:369
499
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
500
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
501
  msgid "The requested page was not found."
@@ -509,12 +534,12 @@ msgstr "en måned"
509
  msgid "one week"
510
  msgstr "en uge"
511
 
512
- #: src/Tribe/Aggregator/Record/List_Table.php:570
513
  msgctxt "when the retry will happen, a date"
514
  msgid "retrying at %s"
515
  msgstr "prøver igen %s"
516
 
517
- #: src/Tribe/Aggregator/Record/List_Table.php:567
518
  msgctxt "in human readable time"
519
  msgid "retrying in about %s"
520
  msgstr "prøver igen om %s"
@@ -596,7 +621,7 @@ msgid "Main %s Page"
596
  msgstr ""
597
 
598
  #: common/src/Tribe/Plugins_API.php:71
599
- msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Tickets have QR codes for easy check in at the door."
600
  msgstr ""
601
 
602
  #: src/admin-views/tribe-options-general.php:31
@@ -628,7 +653,7 @@ msgstr ""
628
  msgid "The event with the specified ID is not accessible."
629
  msgstr ""
630
 
631
- #: src/Tribe/Main.php:1813
632
  msgid "%1$s published. %2$sView %3$s"
633
  msgstr ""
634
 
@@ -979,11 +1004,11 @@ msgstr ""
979
  msgid "the event post name"
980
  msgstr ""
981
 
982
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:341
983
  msgid "The event organizer IDs or data"
984
  msgstr ""
985
 
986
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:333
987
  msgid "The event venue ID or data"
988
  msgstr ""
989
 
@@ -1226,32 +1251,32 @@ msgstr ""
1226
  msgid "Returns all the organizers matching the search criteria"
1227
  msgstr ""
1228
 
1229
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:478
1230
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1231
  msgstr ""
1232
 
1233
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:472
1234
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1235
  msgstr ""
1236
 
1237
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:466
1238
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1239
  msgstr ""
1240
 
1241
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:461
1242
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1243
  msgid "The event post status"
1244
  msgstr ""
1245
 
1246
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1247
  msgid "Events should be filtered by their featured status"
1248
  msgstr ""
1249
 
1250
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:446
1251
  msgid "Events should be assigned one of the specified organizer IDs"
1252
  msgstr ""
1253
 
1254
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
1255
  msgid "Events should be assigned one of the specified venue IDs"
1256
  msgstr ""
1257
 
@@ -1345,48 +1370,48 @@ msgstr ""
1345
  msgid "The event status"
1346
  msgstr ""
1347
 
1348
- #: src/Tribe/Linked_Posts.php:1126
1349
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1350
  msgid "Create or Find %s"
1351
  msgstr ""
1352
 
1353
- #: src/Tribe/Linked_Posts.php:1117
1354
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1355
  msgid "Find %1$s %2$s"
1356
  msgstr ""
1357
 
1358
- #: src/Tribe/Linked_Posts.php:1108
1359
  msgid "Find a Venue"
1360
  msgstr ""
1361
 
1362
- #: src/Tribe/Linked_Posts.php:1107
1363
  msgid "Create or Find a Venue"
1364
  msgstr ""
1365
 
1366
- #: src/Tribe/Linked_Posts.php:1100
1367
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1368
  msgid "Create or Find %s"
1369
  msgstr ""
1370
 
1371
- #: src/Tribe/Linked_Posts.php:1091
1372
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1373
  msgid "Find %1$s %2$s"
1374
  msgstr ""
1375
 
1376
- #: src/Tribe/Linked_Posts.php:1080
1377
  msgid "Find an Organizer"
1378
  msgstr ""
1379
 
1380
- #: src/Tribe/Linked_Posts.php:1079
1381
  msgid "Create or Find an Organizer"
1382
  msgstr ""
1383
 
1384
- #: src/Tribe/Linked_Posts.php:1072
1385
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1386
  msgid "Create or Find %s"
1387
  msgstr ""
1388
 
1389
- #: src/Tribe/Linked_Posts.php:1063
1390
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1391
  msgid "Find %1$s %2$s"
1392
  msgstr ""
@@ -1482,20 +1507,20 @@ msgstr ""
1482
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1483
  msgstr ""
1484
 
1485
- #: src/Tribe/Main.php:997
1486
  msgid "edit Events settings."
1487
  msgstr ""
1488
 
1489
- #: src/Tribe/Main.php:988
1490
  msgid "Edit the %s slug"
1491
  msgstr ""
1492
 
1493
- #: src/Tribe/Linked_Posts.php:1049
1494
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1495
  msgid "an"
1496
  msgstr ""
1497
 
1498
- #: src/Tribe/Linked_Posts.php:1042
1499
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1500
  msgid "a"
1501
  msgstr ""
@@ -1537,10 +1562,6 @@ msgstr "Farven til at fremhæve \"udvalge\""
1537
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1538
  msgstr ""
1539
 
1540
- #: common/src/Tribe/Plugins_API.php:37
1541
- msgid "Import events from across the web! Event Aggregator makes it easy to run scheduled or manual imports from Facebook, Meetup, Eventbrite, Google Calendar, and iCalendar, along with uploads from CSV and ICS files. You can also import directly from other sites running The Events Calendar thanks to our built-in REST API support."
1542
- msgstr ""
1543
-
1544
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1545
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1546
  msgstr "The Events Calendar kunne ikke oprette standard WPML konfigurations-fil: opret venligst filen manuelt"
@@ -1585,7 +1606,7 @@ msgstr ""
1585
  msgid "The event WordPress post ID"
1586
  msgstr ""
1587
 
1588
- #: src/Tribe/Aggregator/Record/Abstract.php:362
1589
  msgid "Something went wrong while inserting the record in the database."
1590
  msgstr ""
1591
 
@@ -1603,7 +1624,7 @@ msgstr[1] ""
1603
  msgid "Please refresh the page and try your request again."
1604
  msgstr ""
1605
 
1606
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:28
1607
  msgid "The image WordPress post ID"
1608
  msgstr ""
1609
 
@@ -1663,11 +1684,11 @@ msgstr ""
1663
  msgid "The event last modification date in UTC time"
1664
  msgstr ""
1665
 
1666
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:403
1667
  msgid "Events should start after the specified date"
1668
  msgstr ""
1669
 
1670
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:410
1671
  msgid "Events should start before the specified date"
1672
  msgstr ""
1673
 
@@ -1703,7 +1724,7 @@ msgstr ""
1703
  msgid "the event post ID"
1704
  msgstr ""
1705
 
1706
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:416
1707
  msgid "Events should contain the specified string in the title or description"
1708
  msgstr ""
1709
 
@@ -1999,31 +2020,31 @@ msgid "The requested URL does not have any upcoming and published events matchin
1999
  msgstr ""
2000
 
2001
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2002
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:388
2003
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2004
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2005
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2006
  msgid "The archive page to return"
2007
  msgstr ""
2008
 
2009
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:396
2010
  msgid "The number of events to return on each page"
2011
  msgstr ""
2012
 
2013
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:422
2014
  msgid "Events should be assigned one of the specified categories slugs or IDs"
2015
  msgstr ""
2016
 
2017
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:430
2018
  msgid "Events should be assigned one of the specified tags slugs or IDs"
2019
  msgstr ""
2020
 
2021
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:358
2022
  msgid "Returns all the upcoming events matching the search criteria"
2023
  msgstr ""
2024
 
2025
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:36
2026
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:366
2027
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:64
2028
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:53
2029
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:61
@@ -2238,13 +2259,13 @@ msgstr "Tre måneder"
2238
  msgid "three months"
2239
  msgstr "tre måneder"
2240
 
2241
- #: src/Tribe/Aggregator/Tabs/New.php:373
2242
  msgid "%1$d new event tag was created."
2243
  msgid_plural "%1$d new event tags were created."
2244
  msgstr[0] ""
2245
  msgstr[1] ""
2246
 
2247
- #: src/Tribe/Aggregator/Tabs/New.php:377
2248
  msgid "View your event tags"
2249
  msgstr ""
2250
 
@@ -2303,7 +2324,7 @@ msgstr ""
2303
  msgid "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2304
  msgstr ""
2305
 
2306
- #: src/Tribe/Main.php:765
2307
  msgctxt "all events slug"
2308
  msgid "all"
2309
  msgstr "alle"
@@ -2344,7 +2365,7 @@ msgstr ""
2344
  msgid "The WordPress term ID"
2345
  msgstr ""
2346
 
2347
- #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:36
2348
  msgid "The link to the image in the specified size on the site"
2349
  msgstr ""
2350
 
@@ -2360,19 +2381,19 @@ msgstr ""
2360
  msgid "The image width in pixels in the specified size"
2361
  msgstr ""
2362
 
2363
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:44
2364
  msgid "The details about each size available for the image"
2365
  msgstr ""
2366
 
2367
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:40
2368
  msgid "The image natural height in pixels"
2369
  msgstr ""
2370
 
2371
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:36
2372
  msgid "The image natural width in pixels"
2373
  msgstr ""
2374
 
2375
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:32
2376
  msgid "The image file extension"
2377
  msgstr ""
2378
 
@@ -2380,7 +2401,7 @@ msgstr ""
2380
  msgid "The venue WordPress post ID"
2381
  msgstr ""
2382
 
2383
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:24
2384
  msgid "The URL to the full size version of the image"
2385
  msgstr ""
2386
 
@@ -2420,7 +2441,7 @@ msgstr ""
2420
  msgid "The cost currency symbol"
2421
  msgstr ""
2422
 
2423
- #: src/Tribe/Main.php:4434
2424
  msgid "Keyword"
2425
  msgstr "Nøgleord"
2426
 
@@ -2495,12 +2516,12 @@ msgstr ""
2495
  msgid "Export Events"
2496
  msgstr "Eksporter begivenheder"
2497
 
2498
- #: src/Tribe/Main.php:764
2499
  msgctxt "featured events slug"
2500
  msgid "featured"
2501
  msgstr ""
2502
 
2503
- #: src/Tribe/Linked_Posts.php:1005
2504
  msgid "Create: <b><%= term %></b>"
2505
  msgstr ""
2506
 
@@ -2649,175 +2670,177 @@ msgstr ""
2649
  msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2650
  msgstr ""
2651
 
2652
- #: src/Tribe/Asset/Dynamic.php:77
2653
  msgid "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2654
  msgstr ""
2655
 
2656
- #: src/Tribe/Asset/Dynamic.php:76
2657
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2658
  msgstr ""
2659
 
2660
- #: src/Tribe/Asset/Dynamic.php:75
2661
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2662
  msgstr ""
2663
 
2664
- #: src/Tribe/Asset/Dynamic.php:74
2665
  msgid "This event is all day on %%startdatewithyear%%."
2666
  msgstr ""
2667
 
2668
- #: src/Tribe/Asset/Dynamic.php:73
2669
  msgid "This event is at %%starttime%% on %%startdatewithyear%%."
2670
  msgstr ""
2671
 
2672
- #: src/Tribe/Asset/Dynamic.php:72
2673
  msgid "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2674
  msgstr ""
2675
 
2676
- #: src/Tribe/Asset/Dynamic.php:69
2677
  msgid "Dec"
2678
  msgstr ""
2679
 
2680
- #: src/Tribe/Asset/Dynamic.php:68
2681
  msgid "Nov"
2682
  msgstr ""
2683
 
2684
- #: src/Tribe/Asset/Dynamic.php:67
2685
  msgid "Oct"
2686
  msgstr ""
2687
 
2688
- #: src/Tribe/Asset/Dynamic.php:66
2689
  msgid "Sep"
2690
  msgstr ""
2691
 
2692
- #: src/Tribe/Asset/Dynamic.php:65
2693
  msgid "Aug"
2694
  msgstr ""
2695
 
2696
- #: src/Tribe/Asset/Dynamic.php:64
2697
  msgid "Jul"
2698
  msgstr ""
2699
 
2700
- #: src/Tribe/Asset/Dynamic.php:63
2701
  msgid "Jun"
2702
  msgstr ""
2703
 
2704
- #: src/Tribe/Asset/Dynamic.php:61
2705
  msgid "Apr"
2706
  msgstr ""
2707
 
2708
- #: src/Tribe/Asset/Dynamic.php:60
2709
  msgid "Mar"
2710
  msgstr ""
2711
 
2712
- #: src/Tribe/Asset/Dynamic.php:59
2713
  msgid "Feb"
2714
  msgstr ""
2715
 
2716
- #: src/Tribe/Asset/Dynamic.php:58
2717
  msgid "Jan"
2718
  msgstr ""
2719
 
2720
- #: src/Tribe/Asset/Dynamic.php:55
2721
  msgid "December"
2722
  msgstr ""
2723
 
2724
- #: src/Tribe/Asset/Dynamic.php:54
2725
  msgid "November"
2726
  msgstr ""
2727
 
2728
- #: src/Tribe/Asset/Dynamic.php:53
2729
  msgid "October"
2730
  msgstr ""
2731
 
2732
- #: src/Tribe/Asset/Dynamic.php:52
2733
  msgid "September"
2734
  msgstr ""
2735
 
2736
- #: src/Tribe/Asset/Dynamic.php:51
2737
  msgid "August"
2738
  msgstr ""
2739
 
2740
- #: src/Tribe/Asset/Dynamic.php:50
2741
  msgid "July"
2742
  msgstr ""
2743
 
2744
- #: src/Tribe/Asset/Dynamic.php:49
2745
  msgid "June"
2746
  msgstr ""
2747
 
2748
- #: src/Tribe/Asset/Dynamic.php:48 src/Tribe/Asset/Dynamic.php:62
 
 
2749
  msgid "May"
2750
  msgstr ""
2751
 
2752
- #: src/Tribe/Asset/Dynamic.php:47
2753
  msgid "April"
2754
  msgstr ""
2755
 
2756
- #: src/Tribe/Asset/Dynamic.php:46
2757
  msgid "March"
2758
  msgstr ""
2759
 
2760
- #: src/Tribe/Asset/Dynamic.php:45
2761
  msgid "February"
2762
  msgstr ""
2763
 
2764
- #: src/Tribe/Asset/Dynamic.php:44
2765
  msgid "January"
2766
  msgstr ""
2767
 
2768
- #: src/Tribe/Asset/Dynamic.php:41
2769
  msgid "Sat"
2770
  msgstr ""
2771
 
2772
- #: src/Tribe/Asset/Dynamic.php:40
2773
  msgid "Fri"
2774
  msgstr ""
2775
 
2776
- #: src/Tribe/Asset/Dynamic.php:39
2777
  msgid "Thu"
2778
  msgstr ""
2779
 
2780
- #: src/Tribe/Asset/Dynamic.php:38
2781
  msgid "Wed"
2782
  msgstr ""
2783
 
2784
- #: src/Tribe/Asset/Dynamic.php:37
2785
  msgid "Tue"
2786
  msgstr ""
2787
 
2788
- #: src/Tribe/Asset/Dynamic.php:36
2789
  msgid "Mon"
2790
  msgstr ""
2791
 
2792
- #: src/Tribe/Asset/Dynamic.php:35
2793
  msgid "Sun"
2794
  msgstr ""
2795
 
2796
- #: src/Tribe/Asset/Dynamic.php:32
2797
  msgid "Saturday"
2798
  msgstr ""
2799
 
2800
- #: src/Tribe/Asset/Dynamic.php:31
2801
  msgid "Friday"
2802
  msgstr ""
2803
 
2804
- #: src/Tribe/Asset/Dynamic.php:30
2805
  msgid "Thursday"
2806
  msgstr ""
2807
 
2808
- #: src/Tribe/Asset/Dynamic.php:29
2809
  msgid "Wednesday"
2810
  msgstr ""
2811
 
2812
- #: src/Tribe/Asset/Dynamic.php:28
2813
  msgid "Tuesday"
2814
  msgstr ""
2815
 
2816
- #: src/Tribe/Asset/Dynamic.php:27
2817
  msgid "Monday"
2818
  msgstr ""
2819
 
2820
- #: src/Tribe/Asset/Dynamic.php:26
2821
  msgid "Sunday"
2822
  msgstr ""
2823
 
@@ -2898,11 +2921,11 @@ msgstr "For at bruge %1$s skal du installere og aktivere den seneste version af
2898
  msgid "Unknown service message"
2899
  msgstr "Ukendt servicebesked"
2900
 
2901
- #: src/Tribe/Aggregator/Record/List_Table.php:533
2902
  msgid "Unknown"
2903
  msgstr "Ukendt"
2904
 
2905
- #: src/Tribe/Aggregator/Record/Abstract.php:1205
2906
  msgid "When this import was last scheduled to run, the daily limit for your Event Aggregator license had already been reached."
2907
  msgstr "Da denne import var sat til at køre sidst, var den daglige grænse for dine Event Aggregator licens allerede nået"
2908
 
@@ -3639,7 +3662,7 @@ msgctxt "Abbreviation for the miles unit of measure"
3639
  msgid "mi"
3640
  msgstr ""
3641
 
3642
- #: src/Tribe/Main.php:983
3643
  msgid "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3644
  msgstr ""
3645
 
@@ -3864,133 +3887,133 @@ msgstr ""
3864
  msgid "Scheduled Imports"
3865
  msgstr ""
3866
 
3867
- #: src/Tribe/Aggregator/Tabs/New.php:603
3868
  msgid "Renew your Event Aggregator license"
3869
  msgstr ""
3870
 
3871
- #: src/Tribe/Aggregator/Tabs/New.php:600
3872
  msgid "Renew your license in order to import events from Facebook, iCalendar, Google, or Meetup."
3873
  msgstr ""
3874
 
3875
- #: src/Tribe/Aggregator/Tabs/New.php:599
3876
  msgid "Your Event Aggregator license is expired."
3877
  msgstr ""
3878
 
3879
- #: src/Tribe/Aggregator/Tabs/New.php:551
3880
  msgid "Learn More"
3881
  msgstr ""
3882
 
3883
- #: src/Tribe/Aggregator/Tabs/New.php:546 src/Tribe/Aggregator/Tabs/New.php:553
3884
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:19
3885
  msgid "opens in a new window"
3886
  msgstr ""
3887
 
3888
- #: src/Tribe/Aggregator/Tabs/New.php:544
3889
  msgid "Buy It Now"
3890
  msgstr ""
3891
 
3892
- #: src/Tribe/Aggregator/Tabs/New.php:541
3893
  msgid "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3894
  msgstr ""
3895
 
3896
- #: src/Tribe/Aggregator/Tabs/New.php:539
3897
  msgid "Import Using Event Aggregator"
3898
  msgstr ""
3899
 
3900
- #: src/Tribe/Aggregator/Tabs/New.php:452
3901
  msgid "Unable to save credentials"
3902
  msgstr ""
3903
 
3904
- #: src/Tribe/Aggregator/Tabs/New.php:445
3905
  msgid "Credentials have been saved"
3906
  msgstr ""
3907
 
3908
- #: src/Tribe/Aggregator/Tabs/New.php:436
3909
  msgid "The Meetup API key is required."
3910
  msgstr ""
3911
 
3912
- #: src/Tribe/Aggregator/Tabs/New.php:427
3913
  msgid "Invalid credential save nonce"
3914
  msgstr ""
3915
 
3916
- #: src/Tribe/Aggregator/Tabs/New.php:417
3917
  msgid "Invalid credential save request"
3918
  msgstr ""
3919
 
3920
- #: src/Tribe/Aggregator/Tabs/New.php:405
3921
  msgid "View your scheduled imports."
3922
  msgstr ""
3923
 
3924
- #: src/Tribe/Aggregator/Tabs/New.php:401
3925
  msgid "The next import is scheduled for %1$s."
3926
  msgstr ""
3927
 
3928
- #: src/Tribe/Aggregator/Tabs/New.php:394
3929
  msgctxt "separator between date and time"
3930
  msgid " at "
3931
  msgstr ""
3932
 
3933
- #: src/Tribe/Aggregator/Tabs/New.php:390
3934
  msgid "Your scheduled import was saved and the first import is complete!"
3935
  msgstr ""
3936
 
3937
- #: src/Tribe/Aggregator/Tabs/New.php:365
3938
  msgid "View your event categories"
3939
  msgstr ""
3940
 
3941
- #: src/Tribe/Aggregator/Tabs/New.php:361
3942
  msgid "%1$d new event category was created."
3943
  msgid_plural "%1$d new event categories were created."
3944
  msgstr[0] ""
3945
  msgstr[1] ""
3946
 
3947
- #: src/Tribe/Aggregator/Tabs/New.php:352
3948
  msgid "View your event organizers"
3949
  msgstr ""
3950
 
3951
- #: src/Tribe/Aggregator/Tabs/New.php:348
3952
  msgid "%1$d new organizer was imported."
3953
  msgid_plural "%1$d new organizers were imported."
3954
  msgstr[0] ""
3955
  msgstr[1] ""
3956
 
3957
- #: src/Tribe/Aggregator/Tabs/New.php:340
3958
  msgid "View your event venues"
3959
  msgstr ""
3960
 
3961
- #: src/Tribe/Aggregator/Tabs/New.php:336
3962
  msgid "%1$d new venue was imported."
3963
  msgid_plural "%1$d new venues were imported."
3964
  msgstr[0] ""
3965
  msgstr[1] ""
3966
 
3967
- #: src/Tribe/Aggregator/Tabs/New.php:326
3968
  msgid "View all %s"
3969
  msgstr ""
3970
 
3971
- #: src/Tribe/Aggregator/Tabs/New.php:318
3972
  msgid "No %1$s were imported or updated."
3973
  msgstr ""
3974
 
3975
- #: src/Tribe/Aggregator/Tabs/New.php:311
3976
  msgid "%1$d new image was imported."
3977
  msgid_plural "%1$d new images were imported."
3978
  msgstr[0] ""
3979
  msgstr[1] ""
3980
 
3981
- #: src/Tribe/Aggregator/Tabs/New.php:302
3982
  msgid "%1$d already-imported %2$s was skipped."
3983
  msgid_plural "%1$d already-imported %2$s were skipped."
3984
  msgstr[0] ""
3985
  msgstr[1] ""
3986
 
3987
- #: src/Tribe/Aggregator/Tabs/New.php:291
3988
  msgid "%1$d existing %2$s was updated."
3989
  msgid_plural "%1$d existing %2$s were updated."
3990
  msgstr[0] ""
3991
  msgstr[1] ""
3992
 
3993
- #: src/Tribe/Aggregator/Tabs/New.php:279
3994
  msgid "%1$d new %2$s was imported."
3995
  msgid_plural "%1$d new %2$s were imported."
3996
  msgstr[0] ""
@@ -4254,7 +4277,7 @@ msgstr ""
4254
  msgid "Events Aggregator Record"
4255
  msgstr ""
4256
 
4257
- #: src/Tribe/Aggregator/Record/Queue_Realtime.php:178
4258
  msgid "Unable to continue inserting data. Please reload this page to continue/try again."
4259
  msgstr ""
4260
 
@@ -4274,87 +4297,87 @@ msgstr ""
4274
  msgid "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4275
  msgstr ""
4276
 
4277
- #: src/Tribe/Aggregator/Record/Queue_Processor.php:234
4278
  msgid "Could not process queue for Import Record %1$d: %2$s"
4279
  msgstr ""
4280
 
4281
- #: src/Tribe/Aggregator/Record/List_Table.php:657
4282
  msgid "Select %s"
4283
  msgstr ""
4284
 
4285
- #: src/Tribe/Aggregator/Record/List_Table.php:622
4286
- #: src/Tribe/Aggregator/Record/List_Table.php:631
4287
- #: src/Tribe/Aggregator/Record/List_Table.php:639
4288
  msgid "updated"
4289
  msgstr ""
4290
 
4291
- #: src/Tribe/Aggregator/Record/List_Table.php:620
4292
- #: src/Tribe/Aggregator/Record/List_Table.php:628
4293
- #: src/Tribe/Aggregator/Record/List_Table.php:636
4294
  msgid "new"
4295
  msgstr ""
4296
 
4297
- #: src/Tribe/Aggregator/Record/List_Table.php:617
4298
  msgid "Latest Import:"
4299
  msgstr ""
4300
 
4301
- #: src/Tribe/Aggregator/Record/List_Table.php:615
4302
  msgid "all time"
4303
  msgstr ""
4304
 
4305
- #: src/Tribe/Aggregator/Record/List_Table.php:589
4306
  msgid "One Time"
4307
  msgstr ""
4308
 
4309
- #: src/Tribe/Aggregator/Record/List_Table.php:586
4310
  msgid "Invalid Frequency"
4311
  msgstr ""
4312
 
4313
- #: src/Tribe/Aggregator/Record/List_Table.php:556 src/Tribe/Aggregator.php:426
4314
  #: src/Tribe/Ignored_Events.php:357
4315
  #: src/admin-views/tribe-options-addons-api.php:36
4316
  msgctxt "in human readable time"
4317
  msgid "in about %s"
4318
  msgstr ""
4319
 
4320
- #: src/Tribe/Aggregator/Record/List_Table.php:554 src/Tribe/Aggregator.php:424
4321
  #: src/Tribe/Ignored_Events.php:355
4322
  #: src/admin-views/tribe-options-addons-api.php:34
4323
  msgctxt "human readable time ago"
4324
  msgid "about %s ago"
4325
  msgstr ""
4326
 
4327
- #: src/Tribe/Aggregator/Record/List_Table.php:506
4328
  msgid "Radius:"
4329
  msgstr ""
4330
 
4331
- #: src/Tribe/Aggregator/Record/List_Table.php:489
4332
  msgid "Keywords:"
4333
  msgstr ""
4334
 
4335
- #: src/Tribe/Aggregator/Record/List_Table.php:476
4336
  #: src/Tribe/Ignored_Events.php:337
4337
  msgctxt "record via origin"
4338
  msgid "via "
4339
  msgstr ""
4340
 
4341
- #: src/Tribe/Aggregator/Record/List_Table.php:433
4342
  msgid "Import preview"
4343
  msgstr ""
4344
 
4345
- #: src/Tribe/Aggregator/Record/List_Table.php:429
4346
  msgid "Import pending"
4347
  msgstr ""
4348
 
4349
- #: src/Tribe/Aggregator/Record/List_Table.php:425
4350
  msgid "Import schedule"
4351
  msgstr ""
4352
 
4353
- #: src/Tribe/Aggregator/Record/List_Table.php:413
4354
  msgid "Import failed"
4355
  msgstr ""
4356
 
4357
- #: src/Tribe/Aggregator/Record/List_Table.php:409
4358
  msgid "Import completed"
4359
  msgstr ""
4360
 
@@ -4439,11 +4462,11 @@ msgstr ""
4439
  msgid "Eventbrite"
4440
  msgstr ""
4441
 
4442
- #: src/Tribe/Aggregator/Record/Abstract.php:1148
4443
  msgid "Deleted Attachment: %d"
4444
  msgstr ""
4445
 
4446
- #: src/Tribe/Aggregator/Record/Abstract.php:496
4447
  msgid "Record: "
4448
  msgstr ""
4449
 
@@ -4478,7 +4501,7 @@ msgid "Hide Filters"
4478
  msgstr ""
4479
 
4480
  #: src/Tribe/Aggregator/Page.php:96
4481
- #: src/Tribe/Aggregator/Record/List_Table.php:485
4482
  msgid "View Filters"
4483
  msgstr ""
4484
 
@@ -4836,7 +4859,7 @@ msgid "There is an update for %s. You'll need to %scheck your license%s to have
4836
  msgstr ""
4837
 
4838
  #: common/src/Tribe/PUE/Checker.php:961 common/src/Tribe/PUE/Notices.php:285
4839
- #: src/Tribe/Aggregator/Record/Abstract.php:1163
4840
  msgid " (opens in a new window)"
4841
  msgstr ""
4842
 
@@ -5137,7 +5160,7 @@ msgstr "Skabeloner introduceret eller opdateret i denne udgivelse (%s):"
5137
  msgid "No notable changes detected"
5138
  msgstr "Ingen bemærkelsesværdige ændringer fundet"
5139
 
5140
- #: src/Tribe/Main.php:2735
5141
  msgid " (View Full %1$s Description Here: %2$s)"
5142
  msgstr "(Se fuld %1$s beskrivelse her: %2$s)"
5143
 
@@ -5185,147 +5208,147 @@ msgstr ""
5185
  msgid "Keep the Core Plugin %sFREE%s!"
5186
  msgstr ""
5187
 
5188
- #: src/Tribe/Template_Factory.php:300
5189
  msgid "No results were found for %1$s in or near %2$s."
5190
  msgstr ""
5191
 
5192
- #: src/Tribe/Template_Factory.php:298
5193
  msgid "There were no results found for %s."
5194
  msgstr ""
5195
 
5196
- #: src/Tribe/Template/Month.php:456
5197
  msgid "There were no results found for %s this month. Try searching next month."
5198
  msgstr ""
5199
 
5200
- #: src/Tribe/Template/Day.php:153
5201
  msgid "No %1$s scheduled for %2$s. Please try another day."
5202
  msgstr ""
5203
 
5204
- #: src/Tribe/Main.php:4254
5205
  msgid "Check out the %savailable add-ons%s."
5206
  msgstr ""
5207
 
5208
- #: src/Tribe/Main.php:1923
5209
  msgid "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5210
  msgstr ""
5211
 
5212
- #: src/Tribe/Main.php:1854 src/Tribe/Main.php:1874
5213
  msgid "%1$s scheduled for: %2$s."
5214
  msgstr ""
5215
 
5216
- #: src/Tribe/Main.php:1835
5217
  msgid "%1$s draft updated. %2$sPreview %3$s"
5218
  msgstr ""
5219
 
5220
- #: src/Tribe/Main.php:1826
5221
  msgid "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5222
  msgstr ""
5223
 
5224
- #: src/Tribe/Main.php:1820
5225
  msgid "%1$s submitted. %2$sPreview %3$s"
5226
  msgstr ""
5227
 
5228
- #: src/Tribe/Main.php:1802
5229
  msgid "%1$s updated. %2$sView %1$s%3$s"
5230
  msgstr ""
5231
 
5232
- #: src/Tribe/Main.php:1477
5233
  msgid "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5234
  msgstr ""
5235
 
5236
- #: src/Tribe/Main.php:1112
5237
  msgid "If you have a valid license for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5238
  msgstr ""
5239
 
5240
- #: src/Tribe/Main.php:1111
5241
  msgid "post a thread"
5242
  msgstr ""
5243
 
5244
- #: src/Tribe/Main.php:1107
5245
  msgid "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays."
5246
  msgstr ""
5247
 
5248
- #: src/Tribe/Main.php:1103
5249
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5250
  msgstr ""
5251
 
5252
- #: src/Tribe/Main.php:1102
5253
  msgid "open-source forum on WordPress.org"
5254
  msgstr ""
5255
 
5256
- #: src/Tribe/Main.php:1098
5257
  msgid "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays"
5258
  msgstr ""
5259
 
5260
- #: src/Tribe/Main.php:1097 src/Tribe/Main.php:1105
5261
  msgid "premium support on our website"
5262
  msgstr ""
5263
 
5264
- #: src/Tribe/Main.php:1095
5265
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5266
  msgstr ""
5267
 
5268
- #: src/Tribe/Main.php:1094
5269
  msgid "Events Tickets"
5270
  msgstr ""
5271
 
5272
- #: src/Tribe/Main.php:1079
5273
  msgid "Customizing the Events plugins"
5274
  msgstr ""
5275
 
5276
- #: src/Tribe/Main.php:1079
5277
  msgid "%s: Code and guides for customizing your calendar in useful and interesting ways."
5278
  msgstr ""
5279
 
5280
- #: src/Tribe/Main.php:1077
5281
  msgid "Troubleshooting common problems"
5282
  msgstr ""
5283
 
5284
- #: src/Tribe/Main.php:1077
5285
  msgid "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5286
  msgstr ""
5287
 
5288
- #: src/Tribe/Main.php:1075
5289
  msgid "Using stylesheets and page templates"
5290
  msgstr ""
5291
 
5292
- #: src/Tribe/Main.php:1075
5293
  msgid "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5294
  msgstr ""
5295
 
5296
- #: src/Tribe/Main.php:1073
5297
  msgid "Themer’s Guide"
5298
  msgstr ""
5299
 
5300
- #: src/Tribe/Main.php:1073
5301
  msgid "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5302
  msgstr ""
5303
 
5304
- #: src/Tribe/Main.php:1071
5305
  msgid "Features overview"
5306
  msgstr ""
5307
 
5308
- #: src/Tribe/Main.php:1071
5309
  msgid "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5310
  msgstr ""
5311
 
5312
- #: src/Tribe/Main.php:1069
5313
  msgid "Settings overview"
5314
  msgstr ""
5315
 
5316
- #: src/Tribe/Main.php:1069
5317
  msgid "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5318
  msgstr ""
5319
 
5320
- #: src/Tribe/Main.php:1066
5321
  msgid "Support for The Events Calendar"
5322
  msgstr ""
5323
 
5324
- #: src/Tribe/Main.php:1055
5325
  msgid "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5326
  msgstr ""
5327
 
5328
- #: src/Tribe/Main.php:1053
5329
  msgid "New User Primer"
5330
  msgstr ""
5331
 
@@ -5348,7 +5371,7 @@ msgstr ""
5348
  msgid "CSV Import Settings"
5349
  msgstr ""
5350
 
5351
- #: src/Tribe/Asset/Bootstrap_Datepicker.php:26
5352
  msgid "Clear"
5353
  msgstr "Klart"
5354
 
@@ -5360,7 +5383,7 @@ msgstr ""
5360
  msgid "Create New %s"
5361
  msgstr "Dan ny %s"
5362
 
5363
- #: src/Tribe/Organizer.php:371
5364
  msgid "Unnamed %s"
5365
  msgstr ""
5366
 
@@ -5548,7 +5571,7 @@ msgstr "Fortryd"
5548
  msgid "%s must be a positive number or percent."
5549
  msgstr ""
5550
 
5551
- #: src/Tribe/Main.php:1000
5552
  msgid "%1$s or %2$s"
5553
  msgstr "%1$s eller %2$s"
5554
 
@@ -5605,7 +5628,7 @@ msgstr "Læs mere"
5605
  msgid "Day Navigation"
5606
  msgstr "Begivenhedsvisning"
5607
 
5608
- #: src/Tribe/Aggregator/Tabs/New.php:388
5609
  msgid "Import complete!"
5610
  msgstr "Import fuldført!"
5611
 
@@ -5847,7 +5870,7 @@ msgid "More..."
5847
  msgstr "Mere…"
5848
 
5849
  #: common/src/Tribe/Admin/Help_Page.php:194 common/src/Tribe/Plugins_API.php:43
5850
- #: src/Tribe/Main.php:1106
5851
  msgid "Events Calendar PRO"
5852
  msgstr "Events Calendar PRO"
5853
 
@@ -6286,7 +6309,7 @@ msgstr "URL:"
6286
  msgid "%s Website"
6287
  msgstr "%s hjemmeside"
6288
 
6289
- #: src/Tribe/Aggregator/Record/List_Table.php:502
6290
  msgid "Location:"
6291
  msgstr "Lokation"
6292
 
@@ -7691,15 +7714,15 @@ msgstr "Skabelon-tilsidesættelser bør flyttes til den korrekte undermappe: tri
7691
  msgid "Template overrides should be moved to the correct subdirectory: %s"
7692
  msgstr "Skabelon-tilsidesættelser bør flyttes til den korrekte undermappe: %s"
7693
 
7694
- #: src/Tribe/Template_Factory.php:306
7695
  msgid "No previous %s "
7696
  msgstr "Ingen tidligere %s "
7697
 
7698
- #: src/Tribe/Template_Factory.php:304 src/Tribe/Template_Factory.php:309
7699
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7700
  msgstr "Ingen matchende %1$s opført under%2$s. Prøv at vise den fulde kalender for at se en komplet liste over %3$s."
7701
 
7702
- #: src/Tribe/Template_Factory.php:302
7703
  msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7704
  msgstr "Ingen kommende %1$s opført under %2$s. Tjek kommende %3$s for denne kategori eller se den fulde kalender."
7705
 
@@ -7707,28 +7730,28 @@ msgstr "Ingen kommende %1$s opført under %2$s. Tjek kommende %3$s for denne kat
7707
  msgid "This %s has passed."
7708
  msgstr "Denne %s er allerede afholdt. "
7709
 
7710
- #: src/Tribe/Template/Month.php:953
7711
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7712
  msgstr "Den ønskede dato \"%s\" er ikke valid &ndash; viser den nuværende måned i stedet. "
7713
 
7714
- #: src/Tribe/Template/Month.php:462 src/Tribe/Template_Factory.php:311
7715
  msgid "There were no results found."
7716
  msgstr "Ingen resultater fundet."
7717
 
7718
- #: src/Tribe/Template/Month.php:460
7719
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7720
  msgstr "Ingen matchende %1$s opført under%2$s. Prøv at vise den fulde kalender for en komplet liste over begivenheder."
7721
 
7722
- #: src/Tribe/Template/Day.php:151
7723
  msgid "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7724
  msgstr "Ingen matchende %1$s er anført under %2$s planlagt for %3$s. Prøv venligst en anden dag."
7725
 
7726
- #: src/Tribe/Template/Day.php:117 src/Tribe/Template/Day.php:133
7727
  msgid "Ongoing"
7728
  msgstr "Fortsætter"
7729
 
7730
- #: src/Tribe/Aggregator/Page.php:82 src/Tribe/Template/Day.php:114
7731
- #: src/Tribe/Template/Day.php:130
7732
  msgid "All Day"
7733
  msgstr "Heldagsbegivenhed "
7734
 
@@ -7823,50 +7846,50 @@ msgstr "Licensnøgle"
7823
  msgid "Error"
7824
  msgstr "Fejl"
7825
 
7826
- #: src/Tribe/Main.php:4597
7827
  msgid "Once Every 30 Mins"
7828
  msgstr "Hver halve time"
7829
 
7830
- #: src/Tribe/Main.php:4517
7831
  msgid "Day Of"
7832
  msgstr "Dag"
7833
 
7834
- #: src/Tribe/Main.php:4515
7835
  msgid "%s From"
7836
  msgstr "%s fra"
7837
 
7838
- #: src/Tribe/Main.php:4511
7839
  msgid "%s In"
7840
  msgstr "%s i"
7841
 
7842
- #: src/Tribe/Main.php:4506 src/Tribe/Main.php:4531
7843
  #: src/admin-views/aggregator/origins/refine.php:7
7844
  msgid "Date"
7845
  msgstr "Dato"
7846
 
7847
- #: src/Tribe/Main.php:4433
7848
  msgid "Search"
7849
  msgstr "Søg efter begivenheder"
7850
 
7851
- #: src/Tribe/Main.php:4407 src/admin-views/aggregator/fields/schedule.php:44
7852
  #: src/admin-views/aggregator/fields/schedule.php:62
7853
  msgid "Day"
7854
  msgstr "Dag"
7855
 
7856
- #: src/Tribe/Main.php:4390
7857
  msgid "Month"
7858
  msgstr "Måned"
7859
 
7860
- #: src/Tribe/Main.php:4372
7861
  msgid "List"
7862
  msgstr "Liste"
7863
 
7864
- #: src/Tribe/Main.php:4356
7865
  msgid "Calendar"
7866
  msgstr "Kalender"
7867
 
7868
  #: common/src/Tribe/Settings.php:254
7869
- #: src/Tribe/Admin/Bar/Default_Configurator.php:89 src/Tribe/Main.php:4355
7870
  msgid "Settings"
7871
  msgstr "Indstillinger"
7872
 
@@ -7880,7 +7903,7 @@ msgstr "CSV"
7880
  msgid "Add %s"
7881
  msgstr "Tilføj %s"
7882
 
7883
- #: src/Tribe/Admin/Bar/Default_Configurator.php:45 src/Tribe/Main.php:4306
7884
  msgid "View Calendar"
7885
  msgstr "Se kalenderen"
7886
 
@@ -7888,53 +7911,53 @@ msgstr "Se kalenderen"
7888
  msgid "%s"
7889
  msgstr "%s"
7890
 
7891
- #: src/Tribe/Main.php:4253
7892
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7893
  msgstr "Leder du efter yderligere funktionaliteter, såsom gentagende begivenheder, custom meta, community begivenheder og billetsalg?"
7894
 
7895
- #: src/Tribe/Main.php:4248
7896
  msgid "Additional Functionality"
7897
  msgstr "Yderligere funktionaliteter,"
7898
 
7899
- #: src/Tribe/Main.php:4203
7900
  msgid "News from Modern Tribe"
7901
  msgstr "Nyheder fra Modern Tribe"
7902
 
7903
- #: src/Tribe/Main.php:4183
7904
  msgid "View All Add-Ons"
7905
  msgstr "Se alle Add-ons"
7906
 
7907
- #: src/Tribe/Main.php:4180
7908
  msgid "Support"
7909
  msgstr "Support"
7910
 
7911
- #: src/Tribe/Main.php:3828 src/Tribe/Main.php:3841
7912
  msgid "%s Information"
7913
  msgstr "%s Information"
7914
 
7915
- #: src/Tribe/Main.php:3819
7916
  msgid "%s Options"
7917
  msgstr "%s muligheder"
7918
 
7919
- #: src/Tribe/Main.php:3742 src/Tribe/Main.php:3777
7920
  #: src/functions/template-tags/day.php:157
7921
  #: src/functions/template-tags/day.php:178
7922
  msgid "Date out of range."
7923
  msgstr "Dato uden for interval."
7924
 
7925
- #: src/Tribe/Main.php:2344
7926
  msgid "all"
7927
  msgstr "alle"
7928
 
7929
- #: src/Tribe/Main.php:2343 src/functions/template-tags/general.php:111
7930
  msgid "events"
7931
  msgstr "begivenheder"
7932
 
7933
- #: src/Tribe/Main.php:2342 src/functions/template-tags/general.php:79
7934
  msgid "event"
7935
  msgstr "begivenhed"
7936
 
7937
- #: src/Tribe/Main.php:2341
7938
  msgid "page"
7939
  msgstr "side"
7940
 
@@ -7946,7 +7969,8 @@ msgstr "Netværk"
7946
  msgid "Done"
7947
  msgstr "Færdig"
7948
 
7949
- #: common/src/Tribe/Main.php:272 src/Tribe/Asset/Bootstrap_Datepicker.php:27
 
7950
  #: src/functions/template-tags/day.php:104
7951
  msgid "Today"
7952
  msgstr "I dag"
@@ -7959,141 +7983,141 @@ msgstr "Forrige"
7959
  msgid "Next"
7960
  msgstr "Næste"
7961
 
7962
- #: src/Tribe/Linked_Posts.php:1010
7963
  msgid "No saved %s exists."
7964
  msgstr "%s er ikke gemt noget sted."
7965
 
7966
- #: src/Tribe/Linked_Posts.php:840
7967
  msgid "Available %s"
7968
  msgstr "Tilgængelig %s"
7969
 
7970
- #: src/Tribe/Linked_Posts.php:836
7971
  msgid "My %s"
7972
  msgstr "Min %s"
7973
 
7974
- #: src/Tribe/Main.php:1859 src/Tribe/Main.php:1879
7975
  msgid "%s draft updated."
7976
  msgstr "%s kladde er opdateret."
7977
 
7978
- #: src/Tribe/Main.php:1852 src/Tribe/Main.php:1872
7979
  msgid "%s submitted."
7980
  msgstr "%s tilføjet."
7981
 
7982
- #: src/Tribe/Main.php:1850 src/Tribe/Main.php:1870
7983
  msgid "%s published."
7984
  msgstr "%s udgivet."
7985
 
7986
  #. translators: %s: date and time of the revision
7987
- #: src/Tribe/Main.php:1869
7988
  msgid "%s restored to revision from %s"
7989
  msgstr "%s er genskabt til den gemte version fra %s"
7990
 
7991
  #. translators: Publish box date format, see http://php.net/date
7992
- #: src/Tribe/Main.php:1829 src/Tribe/Main.php:1857 src/Tribe/Main.php:1877
7993
  msgid "M j, Y @ G:i"
7994
  msgstr "M j, Y @ G:i"
7995
 
7996
- #: src/Tribe/Main.php:1818 src/Tribe/Main.php:1851 src/Tribe/Main.php:1871
7997
  msgid "%s saved."
7998
  msgstr "%s blev gemt."
7999
 
8000
  #. translators: %s: date and time of the revision
8001
- #: src/Tribe/Main.php:1811 src/Tribe/Main.php:1849
8002
  msgid "%1$s restored to revision from %2$s"
8003
  msgstr "%1$s gendannet til revision fra %2$s"
8004
 
8005
- #: src/Tribe/Main.php:1809 src/Tribe/Main.php:1844 src/Tribe/Main.php:1847
8006
- #: src/Tribe/Main.php:1864 src/Tribe/Main.php:1867
8007
  msgid "%s updated."
8008
  msgstr "%s er opdateret."
8009
 
8010
- #: src/Tribe/Main.php:1808 src/Tribe/Main.php:1846 src/Tribe/Main.php:1866
8011
  msgid "Custom field deleted."
8012
  msgstr "Custom field slettet."
8013
 
8014
- #: src/Tribe/Main.php:1807 src/Tribe/Main.php:1845 src/Tribe/Main.php:1865
8015
  msgid "Custom field updated."
8016
  msgstr "Custom field opdateret."
8017
 
8018
- #: src/Tribe/Main.php:1785
8019
  msgid "New %s Category Name"
8020
  msgstr "Nyt %s Kategori-navn"
8021
 
8022
- #: src/Tribe/Main.php:1784
8023
  msgid "Add New %s Category"
8024
  msgstr "Tilføj ny %s Kategori"
8025
 
8026
- #: src/Tribe/Main.php:1783
8027
  msgid "Update %s Category"
8028
  msgstr "Opdater %s Kategori"
8029
 
8030
- #: src/Tribe/Main.php:1782
8031
  msgid "Edit %s Category"
8032
  msgstr "Rediger %s Kategori"
8033
 
8034
- #: src/Tribe/Main.php:1781
8035
  msgid "Parent %s Category:"
8036
  msgstr "Forælder %s Kategori:"
8037
 
8038
- #: src/Tribe/Main.php:1780
8039
  msgid "Parent %s Category"
8040
  msgstr "Forælder %s Kategori"
8041
 
8042
- #: src/Tribe/Main.php:1779
8043
  msgid "All %s Categories"
8044
  msgstr "Alle %s Kategorier"
8045
 
8046
- #: src/Tribe/Main.php:1778
8047
  msgid "Search %s Categories"
8048
  msgstr "Søg %s kategorier"
8049
 
8050
- #: src/Tribe/Main.php:1777
8051
  msgid "%s Category"
8052
  msgstr "%s Kategori"
8053
 
8054
- #: src/Tribe/Main.php:1767 src/Tribe/Organizer.php:98 src/Tribe/Venue.php:117
8055
  msgid "No %s found in Trash"
8056
  msgstr "Ingen %s fundet i papirkurven"
8057
 
8058
- #: src/Tribe/Main.php:1766 src/Tribe/Organizer.php:97 src/Tribe/Venue.php:116
8059
  msgid "No %s found"
8060
  msgstr "Ingen %s fundet"
8061
 
8062
- #: src/Tribe/Main.php:1765 src/Tribe/Organizer.php:96 src/Tribe/Venue.php:115
8063
  msgid "Search %s"
8064
  msgstr "Søg efter %s"
8065
 
8066
- #: src/Tribe/Main.php:1764 src/Tribe/Organizer.php:95 src/Tribe/Venue.php:114
8067
  #: src/views/month/single-day.php:26
8068
  msgid "View %s"
8069
  msgstr "Vis %s"
8070
 
8071
- #: src/Tribe/Main.php:1763 src/Tribe/Organizer.php:94 src/Tribe/Venue.php:113
8072
  msgid "New %s"
8073
  msgstr "Ny %s"
8074
 
8075
- #: src/Tribe/Main.php:1761 src/Tribe/Main.php:1893 src/Tribe/Main.php:1894
8076
  #: src/Tribe/Organizer.php:92 src/Tribe/Venue.php:111
8077
  msgid "Add New %s"
8078
  msgstr "Tilføj ny %s"
8079
 
8080
- #: src/Tribe/Main.php:1760 src/Tribe/Organizer.php:91 src/Tribe/Venue.php:110
8081
  msgid "Add New"
8082
  msgstr "Tilføj ny"
8083
 
8084
- #: src/Tribe/Main.php:1727 src/Tribe/Main.php:2339
8085
  msgid "tag"
8086
  msgstr "tag"
8087
 
8088
- #: src/Tribe/Main.php:1713 src/Tribe/Main.php:2340
8089
  msgid "category"
8090
  msgstr "kategori"
8091
 
8092
- #: src/Tribe/Main.php:1465
8093
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8094
  msgstr "The Events Calendar kræver PHP %s eller nyere. Spørg eventuelt din Web host om du kan blive opgraderet til en nyere version af PHP."
8095
 
8096
- #: src/Tribe/Main.php:1462
8097
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8098
  msgstr "The Events Calendar kræver WordPress %s eller nyere. Venligst opgrader din WordPress installation."
8099
 
@@ -8111,72 +8135,72 @@ msgstr "Hjælp"
8111
  msgid "Display"
8112
  msgstr "Vis"
8113
 
8114
- #: src/Tribe/Main.php:1309
8115
  msgid "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8116
  msgstr "Følgende plugins er ikke opdaterede: %1$s. Alle add-ons er afhængige af The Events Calendar og vil ikke virke korrekt, så længe de ikke er opdateret til den rette version. %2$sLæs mere%3$s."
8117
 
8118
- #: src/Tribe/Main.php:1297
8119
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8120
  msgstr "Din version af The Events Calendar er ikke kompatible med dine The Events Calendar Add-ons. %sOpdater venligst%s."
8121
 
8122
- #: src/Tribe/Main.php:788
8123
  msgid "Initializing Tribe Events on %s"
8124
  msgstr "Indlæser Tribe Events på %s"
8125
 
8126
- #: src/Tribe/Main.php:763
8127
  msgid "today"
8128
  msgstr "I dag"
8129
 
8130
- #: src/Tribe/Main.php:762
8131
  msgid "day"
8132
  msgstr "I dag"
8133
 
8134
- #: src/Tribe/Main.php:761
8135
  msgid "past"
8136
  msgstr "tidligere"
8137
 
8138
- #: src/Tribe/Main.php:760
8139
  msgid "upcoming"
8140
  msgstr "kommende"
8141
 
8142
- #: src/Tribe/Main.php:759
8143
  msgid "list"
8144
  msgstr "liste"
8145
 
8146
- #: src/Tribe/Main.php:758
8147
  msgid "month"
8148
  msgstr "måned"
8149
 
8150
- #. #-#-#-#-# the-events-calendar-code.pot (The Events Calendar 4.6.20.1)
8151
  #. #-#-#-#-#
8152
  #. Plugin Name of the plugin/theme
8153
  #: common/src/Tribe/Admin/Help_Page.php:59 common/src/Tribe/Customizer.php:569
8154
- #: common/src/Tribe/Plugins_API.php:25 src/Tribe/Main.php:751
8155
- #: src/Tribe/Main.php:1093 src/Tribe/Privacy.php:29
8156
  #: src/functions/template-tags/general.php:1345
8157
  msgid "The Events Calendar"
8158
  msgstr "The Events Calendar"
8159
 
8160
- #: src/Tribe/Main.php:1163 src/admin-views/aggregator/tabs/import-form.php:185
8161
  #: src/admin-views/aggregator/tabs/import-form.php:197
8162
  #: src/functions/template-tags/general.php:63
8163
  msgid "Event"
8164
  msgstr "Begivenhed"
8165
 
8166
  #: common/src/Tribe/Settings.php:177 common/src/Tribe/Settings.php:241
8167
- #: common/src/Tribe/Settings.php:242 src/Tribe/Main.php:1155
8168
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:207
8169
  #: src/functions/template-tags/general.php:95
8170
  msgid "Events"
8171
  msgstr "Begivenheder"
8172
 
8173
- #: src/Tribe/Organizer.php:157 src/functions/template-tags/organizer.php:115
8174
  msgid "Organizer"
8175
  msgstr "Arrangør"
8176
 
8177
  #: src/Tribe/Organizer.php:171
8178
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:206
8179
- #: src/functions/template-tags/organizer.php:126
8180
  msgid "Organizers"
8181
  msgstr "Arrangører"
8182
 
@@ -8440,7 +8464,7 @@ msgstr "Dato:"
8440
  msgid "End:"
8441
  msgstr "Slut:"
8442
 
8443
- #: src/Tribe/Aggregator/Record/List_Table.php:498
8444
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
8445
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
8446
  #: src/views/modules/meta/details.php:66 src/views/modules/meta/details.php:91
@@ -8459,7 +8483,7 @@ msgstr "Slutdato"
8459
  msgid "Start Date"
8460
  msgstr "Startdato"
8461
 
8462
- #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1776
8463
  msgid "%s Categories"
8464
  msgstr "%s Kategorier"
8465
 
@@ -8470,7 +8494,7 @@ msgstr ""
8470
  #: src/Tribe/Admin/Timezone_Updater.php:87
8471
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
8472
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:100
8473
- #: src/Tribe/Aggregator/Record/Queue_Realtime.php:203
8474
  msgid "%d%% complete"
8475
  msgstr "%d%% fuldført"
8476
 
@@ -8483,21 +8507,21 @@ msgid "Please wait while time zone data is added to your events."
8483
  msgstr ""
8484
 
8485
  #: src/Tribe/Admin/Bar/Default_Configurator.php:62
8486
- #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:211 src/Tribe/Main.php:1762
8487
- #: src/Tribe/Main.php:4862 src/Tribe/Main.php:4909 src/Tribe/Organizer.php:93
8488
  #: src/Tribe/Venue.php:112
8489
  msgid "Edit %s"
8490
  msgstr "Rediger i %s"
8491
 
8492
- #: src/Tribe/Main.php:4846 src/Tribe/Main.php:4903
8493
  msgid "Use Saved %s:"
8494
  msgstr "Brug gemt %s:"
8495
 
8496
- #: src/Tribe/Main.php:992
8497
  msgid " ask the site administrator set a different Events URL slug."
8498
  msgstr "bed administratoren om at angive en anden kort titel for begivenheder."
8499
 
8500
- #: src/Tribe/Main.php:986
8501
  msgid "Ask the site administrator to edit the %s slug"
8502
  msgstr "Bed administratoren om at redigere korte titel for %s"
8503
 
@@ -8505,7 +8529,7 @@ msgstr "Bed administratoren om at redigere korte titel for %s"
8505
  msgid "Thanks for Updating The Events Calendar"
8506
  msgstr "Tak for at du opdaterede The Events Calendar"
8507
 
8508
- #: src/Tribe/Main.php:846 src/Tribe/Main.php:848
8509
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
8510
  msgid "Welcome to The Events Calendar"
8511
  msgstr "Velkommen til The Events Calendar"
11
  "Language: da_DK\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
14
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:337
15
+ msgid "The event tag ID or name"
16
+ msgstr ""
17
+
18
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:331
19
+ msgid "The event category ID or name"
20
+ msgstr ""
21
+
22
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:508
23
+ msgid "Events should be filtered by their post_parent being the specified one."
24
+ msgstr ""
25
+
26
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:498
27
+ msgid "Include events with one of the post IDs specified in the array of CSV list, date filters will be ignored."
28
+ msgstr ""
29
+
30
+ #: src/Tribe/Aggregator/Record/Async_Queue.php:348
31
+ #: src/Tribe/Aggregator/Record/Void_Queue.php:122
32
+ msgid "Unable to process this import - a breakage or conflict may have resulted in the import halting."
33
+ msgstr ""
34
+
35
+ #: common/src/Tribe/Plugins_API.php:37
36
+ msgid "Event Aggregator adds massive import functionality to your calendar. Before you know it, you’ll be importing events from Meetup, Eventbrite, Google Calendar, iCalendar, and other URLs with ease. Schedule imports to run automatically behind-the-scenes or run them manually when you’re ready. Go ahead and import to your heart’s content—Event Aggregator hooks you up with a central dashboard in the admin to make managing your imports a breeze."
37
+ msgstr ""
38
+
39
  #: src/views/month/single-day.php:57
40
  msgid "%s for %s"
41
  msgstr ""
208
  msgid "Do more with Eventbrite Tickets"
209
  msgstr ""
210
 
211
+ #: src/Tribe/Main.php:4114
212
  msgid "Search for %s by month. Please use the format %s."
213
  msgstr ""
214
 
215
+ #: src/Tribe/Main.php:4109
216
  msgid "Search for %s by Date. Please use the format %s."
217
  msgstr ""
218
 
219
+ #: src/Tribe/Main.php:4077 src/Tribe/Main.php:4078
220
  msgid "2 digit month dot 4 digit year"
221
  msgstr ""
222
 
223
+ #: src/Tribe/Main.php:4076
224
  msgid "4 digit year dot 2 digit month"
225
  msgstr ""
226
 
227
+ #: src/Tribe/Main.php:4075
228
  msgid "2 digit month hyphen 4 digit year"
229
  msgstr ""
230
 
231
+ #: src/Tribe/Main.php:4072 src/Tribe/Main.php:4073 src/Tribe/Main.php:4074
232
  msgid "1 digit month hyphen 4 digit year"
233
  msgstr ""
234
 
235
+ #: src/Tribe/Main.php:4069 src/Tribe/Main.php:4071
236
  msgid "2 digit month slash 4 digit year"
237
  msgstr ""
238
 
239
+ #: src/Tribe/Main.php:4068 src/Tribe/Main.php:4070
240
  msgid "1 digit month slash 4 digit year"
241
  msgstr ""
242
 
243
+ #: src/Tribe/Main.php:4067
244
  msgid "4 digit year hyphen 2 digit month"
245
  msgstr ""
246
 
247
+ #: src/Tribe/Main.php:4063
248
  msgid "2 digit day dot 2 digit month dot 4 digit year"
249
  msgstr ""
250
 
251
+ #: src/Tribe/Main.php:4062
252
  msgid "2 digit month dot 2 digit day dot 4 digit year"
253
  msgstr ""
254
 
255
+ #: src/Tribe/Main.php:4061
256
  msgid "4 digit year dot 2 digit month dot 2 digit day"
257
  msgstr ""
258
 
259
+ #: src/Tribe/Main.php:4060
260
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
261
  msgstr ""
262
 
263
+ #: src/Tribe/Main.php:4059
264
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
265
  msgstr ""
266
 
267
+ #: src/Tribe/Main.php:4058
268
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
269
  msgstr ""
270
 
271
+ #: src/Tribe/Main.php:4057
272
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
273
  msgstr ""
274
 
275
+ #: src/Tribe/Main.php:4056
276
  msgid "2 digit day slash 2 digit month slash 4 digit year"
277
  msgstr ""
278
 
279
+ #: src/Tribe/Main.php:4055
280
  msgid "1 digit day slash 1 digit month slash 4 digit year"
281
  msgstr ""
282
 
283
+ #: src/Tribe/Main.php:4054
284
  msgid "2 digit month slash 2 digit day slash 4 digit year"
285
  msgstr ""
286
 
287
+ #: src/Tribe/Main.php:4053
288
  msgid "1 digit month slash 1 digit day slash 4 digit year"
289
  msgstr ""
290
 
291
+ #: src/Tribe/Main.php:4052
292
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
293
  msgstr ""
294
 
295
+ #: src/Tribe/Main.php:4031
296
  msgid "Search for %s by Keyword."
297
  msgstr ""
298
 
520
  msgstr ""
521
 
522
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
523
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:385
524
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
525
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
526
  msgid "The requested page was not found."
534
  msgid "one week"
535
  msgstr "en uge"
536
 
537
+ #: src/Tribe/Aggregator/Record/List_Table.php:577
538
  msgctxt "when the retry will happen, a date"
539
  msgid "retrying at %s"
540
  msgstr "prøver igen %s"
541
 
542
+ #: src/Tribe/Aggregator/Record/List_Table.php:574
543
  msgctxt "in human readable time"
544
  msgid "retrying in about %s"
545
  msgstr "prøver igen om %s"
621
  msgstr ""
622
 
623
  #: common/src/Tribe/Plugins_API.php:71
624
+ msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Guest check in is easy with QR codes and our custom scanning app."
625
  msgstr ""
626
 
627
  #: src/admin-views/tribe-options-general.php:31
653
  msgid "The event with the specified ID is not accessible."
654
  msgstr ""
655
 
656
+ #: src/Tribe/Main.php:1812
657
  msgid "%1$s published. %2$sView %3$s"
658
  msgstr ""
659
 
1004
  msgid "the event post name"
1005
  msgstr ""
1006
 
1007
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:354
1008
  msgid "The event organizer IDs or data"
1009
  msgstr ""
1010
 
1011
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:346
1012
  msgid "The event venue ID or data"
1013
  msgstr ""
1014
 
1251
  msgid "Returns all the organizers matching the search criteria"
1252
  msgstr ""
1253
 
1254
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:494
1255
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1256
  msgstr ""
1257
 
1258
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:488
1259
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1260
  msgstr ""
1261
 
1262
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:482
1263
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1264
  msgstr ""
1265
 
1266
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:477
1267
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1268
  msgid "The event post status"
1269
  msgstr ""
1270
 
1271
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:470
1272
  msgid "Events should be filtered by their featured status"
1273
  msgstr ""
1274
 
1275
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:462
1276
  msgid "Events should be assigned one of the specified organizer IDs"
1277
  msgstr ""
1278
 
1279
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1280
  msgid "Events should be assigned one of the specified venue IDs"
1281
  msgstr ""
1282
 
1370
  msgid "The event status"
1371
  msgstr ""
1372
 
1373
+ #: src/Tribe/Linked_Posts.php:1254
1374
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1375
  msgid "Create or Find %s"
1376
  msgstr ""
1377
 
1378
+ #: src/Tribe/Linked_Posts.php:1245
1379
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1380
  msgid "Find %1$s %2$s"
1381
  msgstr ""
1382
 
1383
+ #: src/Tribe/Linked_Posts.php:1236
1384
  msgid "Find a Venue"
1385
  msgstr ""
1386
 
1387
+ #: src/Tribe/Linked_Posts.php:1235
1388
  msgid "Create or Find a Venue"
1389
  msgstr ""
1390
 
1391
+ #: src/Tribe/Linked_Posts.php:1228
1392
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1393
  msgid "Create or Find %s"
1394
  msgstr ""
1395
 
1396
+ #: src/Tribe/Linked_Posts.php:1219
1397
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1398
  msgid "Find %1$s %2$s"
1399
  msgstr ""
1400
 
1401
+ #: src/Tribe/Linked_Posts.php:1208
1402
  msgid "Find an Organizer"
1403
  msgstr ""
1404
 
1405
+ #: src/Tribe/Linked_Posts.php:1207
1406
  msgid "Create or Find an Organizer"
1407
  msgstr ""
1408
 
1409
+ #: src/Tribe/Linked_Posts.php:1200
1410
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1411
  msgid "Create or Find %s"
1412
  msgstr ""
1413
 
1414
+ #: src/Tribe/Linked_Posts.php:1191
1415
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1416
  msgid "Find %1$s %2$s"
1417
  msgstr ""
1507
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1508
  msgstr ""
1509
 
1510
+ #: src/Tribe/Main.php:996
1511
  msgid "edit Events settings."
1512
  msgstr ""
1513
 
1514
+ #: src/Tribe/Main.php:987
1515
  msgid "Edit the %s slug"
1516
  msgstr ""
1517
 
1518
+ #: src/Tribe/Linked_Posts.php:1177
1519
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1520
  msgid "an"
1521
  msgstr ""
1522
 
1523
+ #: src/Tribe/Linked_Posts.php:1170
1524
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1525
  msgid "a"
1526
  msgstr ""
1562
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1563
  msgstr ""
1564
 
 
 
 
 
1565
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1566
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1567
  msgstr "The Events Calendar kunne ikke oprette standard WPML konfigurations-fil: opret venligst filen manuelt"
1606
  msgid "The event WordPress post ID"
1607
  msgstr ""
1608
 
1609
+ #: src/Tribe/Aggregator/Record/Abstract.php:363
1610
  msgid "Something went wrong while inserting the record in the database."
1611
  msgstr ""
1612
 
1624
  msgid "Please refresh the page and try your request again."
1625
  msgstr ""
1626
 
1627
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:29
1628
  msgid "The image WordPress post ID"
1629
  msgstr ""
1630
 
1684
  msgid "The event last modification date in UTC time"
1685
  msgstr ""
1686
 
1687
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:419
1688
  msgid "Events should start after the specified date"
1689
  msgstr ""
1690
 
1691
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:426
1692
  msgid "Events should start before the specified date"
1693
  msgstr ""
1694
 
1724
  msgid "the event post ID"
1725
  msgstr ""
1726
 
1727
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:432
1728
  msgid "Events should contain the specified string in the title or description"
1729
  msgstr ""
1730
 
2020
  msgstr ""
2021
 
2022
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2023
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:404
2024
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2025
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2026
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2027
  msgid "The archive page to return"
2028
  msgstr ""
2029
 
2030
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:412
2031
  msgid "The number of events to return on each page"
2032
  msgstr ""
2033
 
2034
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
2035
  msgid "Events should be assigned one of the specified categories slugs or IDs"
2036
  msgstr ""
2037
 
2038
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:446
2039
  msgid "Events should be assigned one of the specified tags slugs or IDs"
2040
  msgstr ""
2041
 
2042
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:374
2043
  msgid "Returns all the upcoming events matching the search criteria"
2044
  msgstr ""
2045
 
2046
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:36
2047
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:382
2048
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:64
2049
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:53
2050
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:61
2259
  msgid "three months"
2260
  msgstr "tre måneder"
2261
 
2262
+ #: src/Tribe/Aggregator/Tabs/New.php:385
2263
  msgid "%1$d new event tag was created."
2264
  msgid_plural "%1$d new event tags were created."
2265
  msgstr[0] ""
2266
  msgstr[1] ""
2267
 
2268
+ #: src/Tribe/Aggregator/Tabs/New.php:389
2269
  msgid "View your event tags"
2270
  msgstr ""
2271
 
2324
  msgid "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2325
  msgstr ""
2326
 
2327
+ #: src/Tribe/Main.php:763
2328
  msgctxt "all events slug"
2329
  msgid "all"
2330
  msgstr "alle"
2365
  msgid "The WordPress term ID"
2366
  msgstr ""
2367
 
2368
+ #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:37
2369
  msgid "The link to the image in the specified size on the site"
2370
  msgstr ""
2371
 
2381
  msgid "The image width in pixels in the specified size"
2382
  msgstr ""
2383
 
2384
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:45
2385
  msgid "The details about each size available for the image"
2386
  msgstr ""
2387
 
2388
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:41
2389
  msgid "The image natural height in pixels"
2390
  msgstr ""
2391
 
2392
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:37
2393
  msgid "The image natural width in pixels"
2394
  msgstr ""
2395
 
2396
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:33
2397
  msgid "The image file extension"
2398
  msgstr ""
2399
 
2401
  msgid "The venue WordPress post ID"
2402
  msgstr ""
2403
 
2404
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:25
2405
  msgid "The URL to the full size version of the image"
2406
  msgstr ""
2407
 
2441
  msgid "The cost currency symbol"
2442
  msgstr ""
2443
 
2444
+ #: src/Tribe/Main.php:4035
2445
  msgid "Keyword"
2446
  msgstr "Nøgleord"
2447
 
2516
  msgid "Export Events"
2517
  msgstr "Eksporter begivenheder"
2518
 
2519
+ #: src/Tribe/Main.php:762
2520
  msgctxt "featured events slug"
2521
  msgid "featured"
2522
  msgstr ""
2523
 
2524
+ #: src/Tribe/Linked_Posts.php:1133
2525
  msgid "Create: <b><%= term %></b>"
2526
  msgstr ""
2527
 
2670
  msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2671
  msgstr ""
2672
 
2673
+ #: src/Tribe/Assets.php:685 src/deprecated/Tribe__Events__Asset__Dynamic.php:77
2674
  msgid "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2675
  msgstr ""
2676
 
2677
+ #: src/Tribe/Assets.php:684 src/deprecated/Tribe__Events__Asset__Dynamic.php:76
2678
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2679
  msgstr ""
2680
 
2681
+ #: src/Tribe/Assets.php:683 src/deprecated/Tribe__Events__Asset__Dynamic.php:75
2682
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2683
  msgstr ""
2684
 
2685
+ #: src/Tribe/Assets.php:682 src/deprecated/Tribe__Events__Asset__Dynamic.php:74
2686
  msgid "This event is all day on %%startdatewithyear%%."
2687
  msgstr ""
2688
 
2689
+ #: src/Tribe/Assets.php:681 src/deprecated/Tribe__Events__Asset__Dynamic.php:73
2690
  msgid "This event is at %%starttime%% on %%startdatewithyear%%."
2691
  msgstr ""
2692
 
2693
+ #: src/Tribe/Assets.php:680 src/deprecated/Tribe__Events__Asset__Dynamic.php:72
2694
  msgid "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2695
  msgstr ""
2696
 
2697
+ #: src/Tribe/Assets.php:677 src/deprecated/Tribe__Events__Asset__Dynamic.php:69
2698
  msgid "Dec"
2699
  msgstr ""
2700
 
2701
+ #: src/Tribe/Assets.php:676 src/deprecated/Tribe__Events__Asset__Dynamic.php:68
2702
  msgid "Nov"
2703
  msgstr ""
2704
 
2705
+ #: src/Tribe/Assets.php:675 src/deprecated/Tribe__Events__Asset__Dynamic.php:67
2706
  msgid "Oct"
2707
  msgstr ""
2708
 
2709
+ #: src/Tribe/Assets.php:674 src/deprecated/Tribe__Events__Asset__Dynamic.php:66
2710
  msgid "Sep"
2711
  msgstr ""
2712
 
2713
+ #: src/Tribe/Assets.php:673 src/deprecated/Tribe__Events__Asset__Dynamic.php:65
2714
  msgid "Aug"
2715
  msgstr ""
2716
 
2717
+ #: src/Tribe/Assets.php:672 src/deprecated/Tribe__Events__Asset__Dynamic.php:64
2718
  msgid "Jul"
2719
  msgstr ""
2720
 
2721
+ #: src/Tribe/Assets.php:671 src/deprecated/Tribe__Events__Asset__Dynamic.php:63
2722
  msgid "Jun"
2723
  msgstr ""
2724
 
2725
+ #: src/Tribe/Assets.php:669 src/deprecated/Tribe__Events__Asset__Dynamic.php:61
2726
  msgid "Apr"
2727
  msgstr ""
2728
 
2729
+ #: src/Tribe/Assets.php:668 src/deprecated/Tribe__Events__Asset__Dynamic.php:60
2730
  msgid "Mar"
2731
  msgstr ""
2732
 
2733
+ #: src/Tribe/Assets.php:667 src/deprecated/Tribe__Events__Asset__Dynamic.php:59
2734
  msgid "Feb"
2735
  msgstr ""
2736
 
2737
+ #: src/Tribe/Assets.php:666 src/deprecated/Tribe__Events__Asset__Dynamic.php:58
2738
  msgid "Jan"
2739
  msgstr ""
2740
 
2741
+ #: src/Tribe/Assets.php:663 src/deprecated/Tribe__Events__Asset__Dynamic.php:55
2742
  msgid "December"
2743
  msgstr ""
2744
 
2745
+ #: src/Tribe/Assets.php:662 src/deprecated/Tribe__Events__Asset__Dynamic.php:54
2746
  msgid "November"
2747
  msgstr ""
2748
 
2749
+ #: src/Tribe/Assets.php:661 src/deprecated/Tribe__Events__Asset__Dynamic.php:53
2750
  msgid "October"
2751
  msgstr ""
2752
 
2753
+ #: src/Tribe/Assets.php:660 src/deprecated/Tribe__Events__Asset__Dynamic.php:52
2754
  msgid "September"
2755
  msgstr ""
2756
 
2757
+ #: src/Tribe/Assets.php:659 src/deprecated/Tribe__Events__Asset__Dynamic.php:51
2758
  msgid "August"
2759
  msgstr ""
2760
 
2761
+ #: src/Tribe/Assets.php:658 src/deprecated/Tribe__Events__Asset__Dynamic.php:50
2762
  msgid "July"
2763
  msgstr ""
2764
 
2765
+ #: src/Tribe/Assets.php:657 src/deprecated/Tribe__Events__Asset__Dynamic.php:49
2766
  msgid "June"
2767
  msgstr ""
2768
 
2769
+ #: src/Tribe/Assets.php:656 src/Tribe/Assets.php:670
2770
+ #: src/deprecated/Tribe__Events__Asset__Dynamic.php:48
2771
+ #: src/deprecated/Tribe__Events__Asset__Dynamic.php:62
2772
  msgid "May"
2773
  msgstr ""
2774
 
2775
+ #: src/Tribe/Assets.php:655 src/deprecated/Tribe__Events__Asset__Dynamic.php:47
2776
  msgid "April"
2777
  msgstr ""
2778
 
2779
+ #: src/Tribe/Assets.php:654 src/deprecated/Tribe__Events__Asset__Dynamic.php:46
2780
  msgid "March"
2781
  msgstr ""
2782
 
2783
+ #: src/Tribe/Assets.php:653 src/deprecated/Tribe__Events__Asset__Dynamic.php:45
2784
  msgid "February"
2785
  msgstr ""
2786
 
2787
+ #: src/Tribe/Assets.php:652 src/deprecated/Tribe__Events__Asset__Dynamic.php:44
2788
  msgid "January"
2789
  msgstr ""
2790
 
2791
+ #: src/Tribe/Assets.php:649 src/deprecated/Tribe__Events__Asset__Dynamic.php:41
2792
  msgid "Sat"
2793
  msgstr ""
2794
 
2795
+ #: src/Tribe/Assets.php:648 src/deprecated/Tribe__Events__Asset__Dynamic.php:40
2796
  msgid "Fri"
2797
  msgstr ""
2798
 
2799
+ #: src/Tribe/Assets.php:647 src/deprecated/Tribe__Events__Asset__Dynamic.php:39
2800
  msgid "Thu"
2801
  msgstr ""
2802
 
2803
+ #: src/Tribe/Assets.php:646 src/deprecated/Tribe__Events__Asset__Dynamic.php:38
2804
  msgid "Wed"
2805
  msgstr ""
2806
 
2807
+ #: src/Tribe/Assets.php:645 src/deprecated/Tribe__Events__Asset__Dynamic.php:37
2808
  msgid "Tue"
2809
  msgstr ""
2810
 
2811
+ #: src/Tribe/Assets.php:644 src/deprecated/Tribe__Events__Asset__Dynamic.php:36
2812
  msgid "Mon"
2813
  msgstr ""
2814
 
2815
+ #: src/Tribe/Assets.php:643 src/deprecated/Tribe__Events__Asset__Dynamic.php:35
2816
  msgid "Sun"
2817
  msgstr ""
2818
 
2819
+ #: src/Tribe/Assets.php:640 src/deprecated/Tribe__Events__Asset__Dynamic.php:32
2820
  msgid "Saturday"
2821
  msgstr ""
2822
 
2823
+ #: src/Tribe/Assets.php:639 src/deprecated/Tribe__Events__Asset__Dynamic.php:31
2824
  msgid "Friday"
2825
  msgstr ""
2826
 
2827
+ #: src/Tribe/Assets.php:638 src/deprecated/Tribe__Events__Asset__Dynamic.php:30
2828
  msgid "Thursday"
2829
  msgstr ""
2830
 
2831
+ #: src/Tribe/Assets.php:637 src/deprecated/Tribe__Events__Asset__Dynamic.php:29
2832
  msgid "Wednesday"
2833
  msgstr ""
2834
 
2835
+ #: src/Tribe/Assets.php:636 src/deprecated/Tribe__Events__Asset__Dynamic.php:28
2836
  msgid "Tuesday"
2837
  msgstr ""
2838
 
2839
+ #: src/Tribe/Assets.php:635 src/deprecated/Tribe__Events__Asset__Dynamic.php:27
2840
  msgid "Monday"
2841
  msgstr ""
2842
 
2843
+ #: src/Tribe/Assets.php:634 src/deprecated/Tribe__Events__Asset__Dynamic.php:26
2844
  msgid "Sunday"
2845
  msgstr ""
2846
 
2921
  msgid "Unknown service message"
2922
  msgstr "Ukendt servicebesked"
2923
 
2924
+ #: src/Tribe/Aggregator/Record/List_Table.php:540
2925
  msgid "Unknown"
2926
  msgstr "Ukendt"
2927
 
2928
+ #: src/Tribe/Aggregator/Record/Abstract.php:1206
2929
  msgid "When this import was last scheduled to run, the daily limit for your Event Aggregator license had already been reached."
2930
  msgstr "Da denne import var sat til at køre sidst, var den daglige grænse for dine Event Aggregator licens allerede nået"
2931
 
3662
  msgid "mi"
3663
  msgstr ""
3664
 
3665
+ #: src/Tribe/Main.php:982
3666
  msgid "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3667
  msgstr ""
3668
 
3887
  msgid "Scheduled Imports"
3888
  msgstr ""
3889
 
3890
+ #: src/Tribe/Aggregator/Tabs/New.php:615
3891
  msgid "Renew your Event Aggregator license"
3892
  msgstr ""
3893
 
3894
+ #: src/Tribe/Aggregator/Tabs/New.php:612
3895
  msgid "Renew your license in order to import events from Facebook, iCalendar, Google, or Meetup."
3896
  msgstr ""
3897
 
3898
+ #: src/Tribe/Aggregator/Tabs/New.php:611
3899
  msgid "Your Event Aggregator license is expired."
3900
  msgstr ""
3901
 
3902
+ #: src/Tribe/Aggregator/Tabs/New.php:563
3903
  msgid "Learn More"
3904
  msgstr ""
3905
 
3906
+ #: src/Tribe/Aggregator/Tabs/New.php:558 src/Tribe/Aggregator/Tabs/New.php:565
3907
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:19
3908
  msgid "opens in a new window"
3909
  msgstr ""
3910
 
3911
+ #: src/Tribe/Aggregator/Tabs/New.php:556
3912
  msgid "Buy It Now"
3913
  msgstr ""
3914
 
3915
+ #: src/Tribe/Aggregator/Tabs/New.php:553
3916
  msgid "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3917
  msgstr ""
3918
 
3919
+ #: src/Tribe/Aggregator/Tabs/New.php:551
3920
  msgid "Import Using Event Aggregator"
3921
  msgstr ""
3922
 
3923
+ #: src/Tribe/Aggregator/Tabs/New.php:464
3924
  msgid "Unable to save credentials"
3925
  msgstr ""
3926
 
3927
+ #: src/Tribe/Aggregator/Tabs/New.php:457
3928
  msgid "Credentials have been saved"
3929
  msgstr ""
3930
 
3931
+ #: src/Tribe/Aggregator/Tabs/New.php:448
3932
  msgid "The Meetup API key is required."
3933
  msgstr ""
3934
 
3935
+ #: src/Tribe/Aggregator/Tabs/New.php:439
3936
  msgid "Invalid credential save nonce"
3937
  msgstr ""
3938
 
3939
+ #: src/Tribe/Aggregator/Tabs/New.php:429
3940
  msgid "Invalid credential save request"
3941
  msgstr ""
3942
 
3943
+ #: src/Tribe/Aggregator/Tabs/New.php:417
3944
  msgid "View your scheduled imports."
3945
  msgstr ""
3946
 
3947
+ #: src/Tribe/Aggregator/Tabs/New.php:413
3948
  msgid "The next import is scheduled for %1$s."
3949
  msgstr ""
3950
 
3951
+ #: src/Tribe/Aggregator/Tabs/New.php:406
3952
  msgctxt "separator between date and time"
3953
  msgid " at "
3954
  msgstr ""
3955
 
3956
+ #: src/Tribe/Aggregator/Tabs/New.php:402
3957
  msgid "Your scheduled import was saved and the first import is complete!"
3958
  msgstr ""
3959
 
3960
+ #: src/Tribe/Aggregator/Tabs/New.php:377
3961
  msgid "View your event categories"
3962
  msgstr ""
3963
 
3964
+ #: src/Tribe/Aggregator/Tabs/New.php:373
3965
  msgid "%1$d new event category was created."
3966
  msgid_plural "%1$d new event categories were created."
3967
  msgstr[0] ""
3968
  msgstr[1] ""
3969
 
3970
+ #: src/Tribe/Aggregator/Tabs/New.php:364
3971
  msgid "View your event organizers"
3972
  msgstr ""
3973
 
3974
+ #: src/Tribe/Aggregator/Tabs/New.php:360
3975
  msgid "%1$d new organizer was imported."
3976
  msgid_plural "%1$d new organizers were imported."
3977
  msgstr[0] ""
3978
  msgstr[1] ""
3979
 
3980
+ #: src/Tribe/Aggregator/Tabs/New.php:352
3981
  msgid "View your event venues"
3982
  msgstr ""
3983
 
3984
+ #: src/Tribe/Aggregator/Tabs/New.php:348
3985
  msgid "%1$d new venue was imported."
3986
  msgid_plural "%1$d new venues were imported."
3987
  msgstr[0] ""
3988
  msgstr[1] ""
3989
 
3990
+ #: src/Tribe/Aggregator/Tabs/New.php:338
3991
  msgid "View all %s"
3992
  msgstr ""
3993
 
3994
+ #: src/Tribe/Aggregator/Tabs/New.php:330
3995
  msgid "No %1$s were imported or updated."
3996
  msgstr ""
3997
 
3998
+ #: src/Tribe/Aggregator/Tabs/New.php:323
3999
  msgid "%1$d new image was imported."
4000
  msgid_plural "%1$d new images were imported."
4001
  msgstr[0] ""
4002
  msgstr[1] ""
4003
 
4004
+ #: src/Tribe/Aggregator/Tabs/New.php:314
4005
  msgid "%1$d already-imported %2$s was skipped."
4006
  msgid_plural "%1$d already-imported %2$s were skipped."
4007
  msgstr[0] ""
4008
  msgstr[1] ""
4009
 
4010
+ #: src/Tribe/Aggregator/Tabs/New.php:303
4011
  msgid "%1$d existing %2$s was updated."
4012
  msgid_plural "%1$d existing %2$s were updated."
4013
  msgstr[0] ""
4014
  msgstr[1] ""
4015
 
4016
+ #: src/Tribe/Aggregator/Tabs/New.php:291
4017
  msgid "%1$d new %2$s was imported."
4018
  msgid_plural "%1$d new %2$s were imported."
4019
  msgstr[0] ""
4277
  msgid "Events Aggregator Record"
4278
  msgstr ""
4279
 
4280
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:183
4281
  msgid "Unable to continue inserting data. Please reload this page to continue/try again."
4282
  msgstr ""
4283
 
4297
  msgid "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4298
  msgstr ""
4299
 
4300
+ #: src/Tribe/Aggregator/Record/Queue_Processor.php:233
4301
  msgid "Could not process queue for Import Record %1$d: %2$s"
4302
  msgstr ""
4303
 
4304
+ #: src/Tribe/Aggregator/Record/List_Table.php:664
4305
  msgid "Select %s"
4306
  msgstr ""
4307
 
4308
+ #: src/Tribe/Aggregator/Record/List_Table.php:629
4309
+ #: src/Tribe/Aggregator/Record/List_Table.php:638
4310
+ #: src/Tribe/Aggregator/Record/List_Table.php:646
4311
  msgid "updated"
4312
  msgstr ""
4313
 
4314
+ #: src/Tribe/Aggregator/Record/List_Table.php:627
4315
+ #: src/Tribe/Aggregator/Record/List_Table.php:635
4316
+ #: src/Tribe/Aggregator/Record/List_Table.php:643
4317
  msgid "new"
4318
  msgstr ""
4319
 
4320
+ #: src/Tribe/Aggregator/Record/List_Table.php:624
4321
  msgid "Latest Import:"
4322
  msgstr ""
4323
 
4324
+ #: src/Tribe/Aggregator/Record/List_Table.php:622
4325
  msgid "all time"
4326
  msgstr ""
4327
 
4328
+ #: src/Tribe/Aggregator/Record/List_Table.php:596
4329
  msgid "One Time"
4330
  msgstr ""
4331
 
4332
+ #: src/Tribe/Aggregator/Record/List_Table.php:593
4333
  msgid "Invalid Frequency"
4334
  msgstr ""
4335
 
4336
+ #: src/Tribe/Aggregator/Record/List_Table.php:563 src/Tribe/Aggregator.php:426
4337
  #: src/Tribe/Ignored_Events.php:357
4338
  #: src/admin-views/tribe-options-addons-api.php:36
4339
  msgctxt "in human readable time"
4340
  msgid "in about %s"
4341
  msgstr ""
4342
 
4343
+ #: src/Tribe/Aggregator/Record/List_Table.php:561 src/Tribe/Aggregator.php:424
4344
  #: src/Tribe/Ignored_Events.php:355
4345
  #: src/admin-views/tribe-options-addons-api.php:34
4346
  msgctxt "human readable time ago"
4347
  msgid "about %s ago"
4348
  msgstr ""
4349
 
4350
+ #: src/Tribe/Aggregator/Record/List_Table.php:513
4351
  msgid "Radius:"
4352
  msgstr ""
4353
 
4354
+ #: src/Tribe/Aggregator/Record/List_Table.php:496
4355
  msgid "Keywords:"
4356
  msgstr ""
4357
 
4358
+ #: src/Tribe/Aggregator/Record/List_Table.php:483
4359
  #: src/Tribe/Ignored_Events.php:337
4360
  msgctxt "record via origin"
4361
  msgid "via "
4362
  msgstr ""
4363
 
4364
+ #: src/Tribe/Aggregator/Record/List_Table.php:440
4365
  msgid "Import preview"
4366
  msgstr ""
4367
 
4368
+ #: src/Tribe/Aggregator/Record/List_Table.php:436
4369
  msgid "Import pending"
4370
  msgstr ""
4371
 
4372
+ #: src/Tribe/Aggregator/Record/List_Table.php:432
4373
  msgid "Import schedule"
4374
  msgstr ""
4375
 
4376
+ #: src/Tribe/Aggregator/Record/List_Table.php:420
4377
  msgid "Import failed"
4378
  msgstr ""
4379
 
4380
+ #: src/Tribe/Aggregator/Record/List_Table.php:416
4381
  msgid "Import completed"
4382
  msgstr ""
4383
 
4462
  msgid "Eventbrite"
4463
  msgstr ""
4464
 
4465
+ #: src/Tribe/Aggregator/Record/Abstract.php:1149
4466
  msgid "Deleted Attachment: %d"
4467
  msgstr ""
4468
 
4469
+ #: src/Tribe/Aggregator/Record/Abstract.php:497
4470
  msgid "Record: "
4471
  msgstr ""
4472
 
4501
  msgstr ""
4502
 
4503
  #: src/Tribe/Aggregator/Page.php:96
4504
+ #: src/Tribe/Aggregator/Record/List_Table.php:492
4505
  msgid "View Filters"
4506
  msgstr ""
4507
 
4859
  msgstr ""
4860
 
4861
  #: common/src/Tribe/PUE/Checker.php:961 common/src/Tribe/PUE/Notices.php:285
4862
+ #: src/Tribe/Aggregator/Record/Abstract.php:1164
4863
  msgid " (opens in a new window)"
4864
  msgstr ""
4865
 
5160
  msgid "No notable changes detected"
5161
  msgstr "Ingen bemærkelsesværdige ændringer fundet"
5162
 
5163
+ #: src/Tribe/Main.php:2561
5164
  msgid " (View Full %1$s Description Here: %2$s)"
5165
  msgstr "(Se fuld %1$s beskrivelse her: %2$s)"
5166
 
5208
  msgid "Keep the Core Plugin %sFREE%s!"
5209
  msgstr ""
5210
 
5211
+ #: src/Tribe/Template_Factory.php:231
5212
  msgid "No results were found for %1$s in or near %2$s."
5213
  msgstr ""
5214
 
5215
+ #: src/Tribe/Template_Factory.php:229
5216
  msgid "There were no results found for %s."
5217
  msgstr ""
5218
 
5219
+ #: src/Tribe/Template/Month.php:458
5220
  msgid "There were no results found for %s this month. Try searching next month."
5221
  msgstr ""
5222
 
5223
+ #: src/Tribe/Template/Day.php:154
5224
  msgid "No %1$s scheduled for %2$s. Please try another day."
5225
  msgstr ""
5226
 
5227
+ #: src/Tribe/Main.php:3855
5228
  msgid "Check out the %savailable add-ons%s."
5229
  msgstr ""
5230
 
5231
+ #: src/Tribe/Main.php:1922
5232
  msgid "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5233
  msgstr ""
5234
 
5235
+ #: src/Tribe/Main.php:1853 src/Tribe/Main.php:1873
5236
  msgid "%1$s scheduled for: %2$s."
5237
  msgstr ""
5238
 
5239
+ #: src/Tribe/Main.php:1834
5240
  msgid "%1$s draft updated. %2$sPreview %3$s"
5241
  msgstr ""
5242
 
5243
+ #: src/Tribe/Main.php:1825
5244
  msgid "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5245
  msgstr ""
5246
 
5247
+ #: src/Tribe/Main.php:1819
5248
  msgid "%1$s submitted. %2$sPreview %3$s"
5249
  msgstr ""
5250
 
5251
+ #: src/Tribe/Main.php:1801
5252
  msgid "%1$s updated. %2$sView %1$s%3$s"
5253
  msgstr ""
5254
 
5255
+ #: src/Tribe/Main.php:1476
5256
  msgid "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5257
  msgstr ""
5258
 
5259
+ #: src/Tribe/Main.php:1111
5260
  msgid "If you have a valid license for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5261
  msgstr ""
5262
 
5263
+ #: src/Tribe/Main.php:1110
5264
  msgid "post a thread"
5265
  msgstr ""
5266
 
5267
+ #: src/Tribe/Main.php:1106
5268
  msgid "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays."
5269
  msgstr ""
5270
 
5271
+ #: src/Tribe/Main.php:1102
5272
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5273
  msgstr ""
5274
 
5275
+ #: src/Tribe/Main.php:1101
5276
  msgid "open-source forum on WordPress.org"
5277
  msgstr ""
5278
 
5279
+ #: src/Tribe/Main.php:1097
5280
  msgid "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays"
5281
  msgstr ""
5282
 
5283
+ #: src/Tribe/Main.php:1096 src/Tribe/Main.php:1104
5284
  msgid "premium support on our website"
5285
  msgstr ""
5286
 
5287
+ #: src/Tribe/Main.php:1094
5288
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5289
  msgstr ""
5290
 
5291
+ #: src/Tribe/Main.php:1093
5292
  msgid "Events Tickets"
5293
  msgstr ""
5294
 
5295
+ #: src/Tribe/Main.php:1078
5296
  msgid "Customizing the Events plugins"
5297
  msgstr ""
5298
 
5299
+ #: src/Tribe/Main.php:1078
5300
  msgid "%s: Code and guides for customizing your calendar in useful and interesting ways."
5301
  msgstr ""
5302
 
5303
+ #: src/Tribe/Main.php:1076
5304
  msgid "Troubleshooting common problems"
5305
  msgstr ""
5306
 
5307
+ #: src/Tribe/Main.php:1076
5308
  msgid "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5309
  msgstr ""
5310
 
5311
+ #: src/Tribe/Main.php:1074
5312
  msgid "Using stylesheets and page templates"
5313
  msgstr ""
5314
 
5315
+ #: src/Tribe/Main.php:1074
5316
  msgid "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5317
  msgstr ""
5318
 
5319
+ #: src/Tribe/Main.php:1072
5320
  msgid "Themer’s Guide"
5321
  msgstr ""
5322
 
5323
+ #: src/Tribe/Main.php:1072
5324
  msgid "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5325
  msgstr ""
5326
 
5327
+ #: src/Tribe/Main.php:1070
5328
  msgid "Features overview"
5329
  msgstr ""
5330
 
5331
+ #: src/Tribe/Main.php:1070
5332
  msgid "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5333
  msgstr ""
5334
 
5335
+ #: src/Tribe/Main.php:1068
5336
  msgid "Settings overview"
5337
  msgstr ""
5338
 
5339
+ #: src/Tribe/Main.php:1068
5340
  msgid "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5341
  msgstr ""
5342
 
5343
+ #: src/Tribe/Main.php:1065
5344
  msgid "Support for The Events Calendar"
5345
  msgstr ""
5346
 
5347
+ #: src/Tribe/Main.php:1054
5348
  msgid "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5349
  msgstr ""
5350
 
5351
+ #: src/Tribe/Main.php:1052
5352
  msgid "New User Primer"
5353
  msgstr ""
5354
 
5371
  msgid "CSV Import Settings"
5372
  msgstr ""
5373
 
5374
+ #: src/deprecated/Tribe__Events__Asset__Bootstrap_Datepicker.php:27
5375
  msgid "Clear"
5376
  msgstr "Klart"
5377
 
5383
  msgid "Create New %s"
5384
  msgstr "Dan ny %s"
5385
 
5386
+ #: src/Tribe/Organizer.php:375
5387
  msgid "Unnamed %s"
5388
  msgstr ""
5389
 
5571
  msgid "%s must be a positive number or percent."
5572
  msgstr ""
5573
 
5574
+ #: src/Tribe/Main.php:999
5575
  msgid "%1$s or %2$s"
5576
  msgstr "%1$s eller %2$s"
5577
 
5628
  msgid "Day Navigation"
5629
  msgstr "Begivenhedsvisning"
5630
 
5631
+ #: src/Tribe/Aggregator/Tabs/New.php:400
5632
  msgid "Import complete!"
5633
  msgstr "Import fuldført!"
5634
 
5870
  msgstr "Mere…"
5871
 
5872
  #: common/src/Tribe/Admin/Help_Page.php:194 common/src/Tribe/Plugins_API.php:43
5873
+ #: src/Tribe/Main.php:1105
5874
  msgid "Events Calendar PRO"
5875
  msgstr "Events Calendar PRO"
5876
 
6309
  msgid "%s Website"
6310
  msgstr "%s hjemmeside"
6311
 
6312
+ #: src/Tribe/Aggregator/Record/List_Table.php:509
6313
  msgid "Location:"
6314
  msgstr "Lokation"
6315
 
7714
  msgid "Template overrides should be moved to the correct subdirectory: %s"
7715
  msgstr "Skabelon-tilsidesættelser bør flyttes til den korrekte undermappe: %s"
7716
 
7717
+ #: src/Tribe/Template_Factory.php:237
7718
  msgid "No previous %s "
7719
  msgstr "Ingen tidligere %s "
7720
 
7721
+ #: src/Tribe/Template_Factory.php:235 src/Tribe/Template_Factory.php:240
7722
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7723
  msgstr "Ingen matchende %1$s opført under%2$s. Prøv at vise den fulde kalender for at se en komplet liste over %3$s."
7724
 
7725
+ #: src/Tribe/Template_Factory.php:233
7726
  msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7727
  msgstr "Ingen kommende %1$s opført under %2$s. Tjek kommende %3$s for denne kategori eller se den fulde kalender."
7728
 
7730
  msgid "This %s has passed."
7731
  msgstr "Denne %s er allerede afholdt. "
7732
 
7733
+ #: src/Tribe/Template/Month.php:955
7734
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7735
  msgstr "Den ønskede dato \"%s\" er ikke valid &ndash; viser den nuværende måned i stedet. "
7736
 
7737
+ #: src/Tribe/Template/Month.php:464 src/Tribe/Template_Factory.php:242
7738
  msgid "There were no results found."
7739
  msgstr "Ingen resultater fundet."
7740
 
7741
+ #: src/Tribe/Template/Month.php:462
7742
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7743
  msgstr "Ingen matchende %1$s opført under%2$s. Prøv at vise den fulde kalender for en komplet liste over begivenheder."
7744
 
7745
+ #: src/Tribe/Template/Day.php:152
7746
  msgid "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7747
  msgstr "Ingen matchende %1$s er anført under %2$s planlagt for %3$s. Prøv venligst en anden dag."
7748
 
7749
+ #: src/Tribe/Template/Day.php:118 src/Tribe/Template/Day.php:134
7750
  msgid "Ongoing"
7751
  msgstr "Fortsætter"
7752
 
7753
+ #: src/Tribe/Aggregator/Page.php:82 src/Tribe/Template/Day.php:115
7754
+ #: src/Tribe/Template/Day.php:131
7755
  msgid "All Day"
7756
  msgstr "Heldagsbegivenhed "
7757
 
7846
  msgid "Error"
7847
  msgstr "Fejl"
7848
 
7849
+ #: src/Tribe/Main.php:4198
7850
  msgid "Once Every 30 Mins"
7851
  msgstr "Hver halve time"
7852
 
7853
+ #: src/Tribe/Main.php:4118
7854
  msgid "Day Of"
7855
  msgstr "Dag"
7856
 
7857
+ #: src/Tribe/Main.php:4116
7858
  msgid "%s From"
7859
  msgstr "%s fra"
7860
 
7861
+ #: src/Tribe/Main.php:4112
7862
  msgid "%s In"
7863
  msgstr "%s i"
7864
 
7865
+ #: src/Tribe/Main.php:4107 src/Tribe/Main.php:4132
7866
  #: src/admin-views/aggregator/origins/refine.php:7
7867
  msgid "Date"
7868
  msgstr "Dato"
7869
 
7870
+ #: src/Tribe/Main.php:4034
7871
  msgid "Search"
7872
  msgstr "Søg efter begivenheder"
7873
 
7874
+ #: src/Tribe/Main.php:4008 src/admin-views/aggregator/fields/schedule.php:44
7875
  #: src/admin-views/aggregator/fields/schedule.php:62
7876
  msgid "Day"
7877
  msgstr "Dag"
7878
 
7879
+ #: src/Tribe/Main.php:3991
7880
  msgid "Month"
7881
  msgstr "Måned"
7882
 
7883
+ #: src/Tribe/Main.php:3973
7884
  msgid "List"
7885
  msgstr "Liste"
7886
 
7887
+ #: src/Tribe/Main.php:3957
7888
  msgid "Calendar"
7889
  msgstr "Kalender"
7890
 
7891
  #: common/src/Tribe/Settings.php:254
7892
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:89 src/Tribe/Main.php:3956
7893
  msgid "Settings"
7894
  msgstr "Indstillinger"
7895
 
7903
  msgid "Add %s"
7904
  msgstr "Tilføj %s"
7905
 
7906
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:45 src/Tribe/Main.php:3907
7907
  msgid "View Calendar"
7908
  msgstr "Se kalenderen"
7909
 
7911
  msgid "%s"
7912
  msgstr "%s"
7913
 
7914
+ #: src/Tribe/Main.php:3854
7915
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7916
  msgstr "Leder du efter yderligere funktionaliteter, såsom gentagende begivenheder, custom meta, community begivenheder og billetsalg?"
7917
 
7918
+ #: src/Tribe/Main.php:3849
7919
  msgid "Additional Functionality"
7920
  msgstr "Yderligere funktionaliteter,"
7921
 
7922
+ #: src/Tribe/Main.php:3804
7923
  msgid "News from Modern Tribe"
7924
  msgstr "Nyheder fra Modern Tribe"
7925
 
7926
+ #: src/Tribe/Main.php:3784
7927
  msgid "View All Add-Ons"
7928
  msgstr "Se alle Add-ons"
7929
 
7930
+ #: src/Tribe/Main.php:3781
7931
  msgid "Support"
7932
  msgstr "Support"
7933
 
7934
+ #: src/Tribe/Main.php:3429 src/Tribe/Main.php:3442
7935
  msgid "%s Information"
7936
  msgstr "%s Information"
7937
 
7938
+ #: src/Tribe/Main.php:3420
7939
  msgid "%s Options"
7940
  msgstr "%s muligheder"
7941
 
7942
+ #: src/Tribe/Main.php:3343 src/Tribe/Main.php:3378
7943
  #: src/functions/template-tags/day.php:157
7944
  #: src/functions/template-tags/day.php:178
7945
  msgid "Date out of range."
7946
  msgstr "Dato uden for interval."
7947
 
7948
+ #: src/Tribe/Main.php:2170
7949
  msgid "all"
7950
  msgstr "alle"
7951
 
7952
+ #: src/Tribe/Main.php:2169 src/functions/template-tags/general.php:111
7953
  msgid "events"
7954
  msgstr "begivenheder"
7955
 
7956
+ #: src/Tribe/Main.php:2168 src/functions/template-tags/general.php:79
7957
  msgid "event"
7958
  msgstr "begivenhed"
7959
 
7960
+ #: src/Tribe/Main.php:2167
7961
  msgid "page"
7962
  msgstr "side"
7963
 
7969
  msgid "Done"
7970
  msgstr "Færdig"
7971
 
7972
+ #: common/src/Tribe/Main.php:272
7973
+ #: src/deprecated/Tribe__Events__Asset__Bootstrap_Datepicker.php:28
7974
  #: src/functions/template-tags/day.php:104
7975
  msgid "Today"
7976
  msgstr "I dag"
7983
  msgid "Next"
7984
  msgstr "Næste"
7985
 
7986
+ #: src/Tribe/Linked_Posts.php:1138
7987
  msgid "No saved %s exists."
7988
  msgstr "%s er ikke gemt noget sted."
7989
 
7990
+ #: src/Tribe/Linked_Posts.php:964
7991
  msgid "Available %s"
7992
  msgstr "Tilgængelig %s"
7993
 
7994
+ #: src/Tribe/Linked_Posts.php:960
7995
  msgid "My %s"
7996
  msgstr "Min %s"
7997
 
7998
+ #: src/Tribe/Main.php:1858 src/Tribe/Main.php:1878
7999
  msgid "%s draft updated."
8000
  msgstr "%s kladde er opdateret."
8001
 
8002
+ #: src/Tribe/Main.php:1851 src/Tribe/Main.php:1871
8003
  msgid "%s submitted."
8004
  msgstr "%s tilføjet."
8005
 
8006
+ #: src/Tribe/Main.php:1849 src/Tribe/Main.php:1869
8007
  msgid "%s published."
8008
  msgstr "%s udgivet."
8009
 
8010
  #. translators: %s: date and time of the revision
8011
+ #: src/Tribe/Main.php:1868
8012
  msgid "%s restored to revision from %s"
8013
  msgstr "%s er genskabt til den gemte version fra %s"
8014
 
8015
  #. translators: Publish box date format, see http://php.net/date
8016
+ #: src/Tribe/Main.php:1828 src/Tribe/Main.php:1856 src/Tribe/Main.php:1876
8017
  msgid "M j, Y @ G:i"
8018
  msgstr "M j, Y @ G:i"
8019
 
8020
+ #: src/Tribe/Main.php:1817 src/Tribe/Main.php:1850 src/Tribe/Main.php:1870
8021
  msgid "%s saved."
8022
  msgstr "%s blev gemt."
8023
 
8024
  #. translators: %s: date and time of the revision
8025
+ #: src/Tribe/Main.php:1810 src/Tribe/Main.php:1848
8026
  msgid "%1$s restored to revision from %2$s"
8027
  msgstr "%1$s gendannet til revision fra %2$s"
8028
 
8029
+ #: src/Tribe/Main.php:1808 src/Tribe/Main.php:1843 src/Tribe/Main.php:1846
8030
+ #: src/Tribe/Main.php:1863 src/Tribe/Main.php:1866
8031
  msgid "%s updated."
8032
  msgstr "%s er opdateret."
8033
 
8034
+ #: src/Tribe/Main.php:1807 src/Tribe/Main.php:1845 src/Tribe/Main.php:1865
8035
  msgid "Custom field deleted."
8036
  msgstr "Custom field slettet."
8037
 
8038
+ #: src/Tribe/Main.php:1806 src/Tribe/Main.php:1844 src/Tribe/Main.php:1864
8039
  msgid "Custom field updated."
8040
  msgstr "Custom field opdateret."
8041
 
8042
+ #: src/Tribe/Main.php:1784
8043
  msgid "New %s Category Name"
8044
  msgstr "Nyt %s Kategori-navn"
8045
 
8046
+ #: src/Tribe/Main.php:1783
8047
  msgid "Add New %s Category"
8048
  msgstr "Tilføj ny %s Kategori"
8049
 
8050
+ #: src/Tribe/Main.php:1782
8051
  msgid "Update %s Category"
8052
  msgstr "Opdater %s Kategori"
8053
 
8054
+ #: src/Tribe/Main.php:1781
8055
  msgid "Edit %s Category"
8056
  msgstr "Rediger %s Kategori"
8057
 
8058
+ #: src/Tribe/Main.php:1780
8059
  msgid "Parent %s Category:"
8060
  msgstr "Forælder %s Kategori:"
8061
 
8062
+ #: src/Tribe/Main.php:1779
8063
  msgid "Parent %s Category"
8064
  msgstr "Forælder %s Kategori"
8065
 
8066
+ #: src/Tribe/Main.php:1778
8067
  msgid "All %s Categories"
8068
  msgstr "Alle %s Kategorier"
8069
 
8070
+ #: src/Tribe/Main.php:1777
8071
  msgid "Search %s Categories"
8072
  msgstr "Søg %s kategorier"
8073
 
8074
+ #: src/Tribe/Main.php:1776
8075
  msgid "%s Category"
8076
  msgstr "%s Kategori"
8077
 
8078
+ #: src/Tribe/Main.php:1766 src/Tribe/Organizer.php:98 src/Tribe/Venue.php:117
8079
  msgid "No %s found in Trash"
8080
  msgstr "Ingen %s fundet i papirkurven"
8081
 
8082
+ #: src/Tribe/Main.php:1765 src/Tribe/Organizer.php:97 src/Tribe/Venue.php:116
8083
  msgid "No %s found"
8084
  msgstr "Ingen %s fundet"
8085
 
8086
+ #: src/Tribe/Main.php:1764 src/Tribe/Organizer.php:96 src/Tribe/Venue.php:115
8087
  msgid "Search %s"
8088
  msgstr "Søg efter %s"
8089
 
8090
+ #: src/Tribe/Main.php:1763 src/Tribe/Organizer.php:95 src/Tribe/Venue.php:114
8091
  #: src/views/month/single-day.php:26
8092
  msgid "View %s"
8093
  msgstr "Vis %s"
8094
 
8095
+ #: src/Tribe/Main.php:1762 src/Tribe/Organizer.php:94 src/Tribe/Venue.php:113
8096
  msgid "New %s"
8097
  msgstr "Ny %s"
8098
 
8099
+ #: src/Tribe/Main.php:1760 src/Tribe/Main.php:1892 src/Tribe/Main.php:1893
8100
  #: src/Tribe/Organizer.php:92 src/Tribe/Venue.php:111
8101
  msgid "Add New %s"
8102
  msgstr "Tilføj ny %s"
8103
 
8104
+ #: src/Tribe/Main.php:1759 src/Tribe/Organizer.php:91 src/Tribe/Venue.php:110
8105
  msgid "Add New"
8106
  msgstr "Tilføj ny"
8107
 
8108
+ #: src/Tribe/Main.php:1726 src/Tribe/Main.php:2165
8109
  msgid "tag"
8110
  msgstr "tag"
8111
 
8112
+ #: src/Tribe/Main.php:1712 src/Tribe/Main.php:2166
8113
  msgid "category"
8114
  msgstr "kategori"
8115
 
8116
+ #: src/Tribe/Main.php:1464
8117
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8118
  msgstr "The Events Calendar kræver PHP %s eller nyere. Spørg eventuelt din Web host om du kan blive opgraderet til en nyere version af PHP."
8119
 
8120
+ #: src/Tribe/Main.php:1461
8121
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8122
  msgstr "The Events Calendar kræver WordPress %s eller nyere. Venligst opgrader din WordPress installation."
8123
 
8135
  msgid "Display"
8136
  msgstr "Vis"
8137
 
8138
+ #: src/Tribe/Main.php:1308
8139
  msgid "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8140
  msgstr "Følgende plugins er ikke opdaterede: %1$s. Alle add-ons er afhængige af The Events Calendar og vil ikke virke korrekt, så længe de ikke er opdateret til den rette version. %2$sLæs mere%3$s."
8141
 
8142
+ #: src/Tribe/Main.php:1296
8143
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8144
  msgstr "Din version af The Events Calendar er ikke kompatible med dine The Events Calendar Add-ons. %sOpdater venligst%s."
8145
 
8146
+ #: src/Tribe/Main.php:786
8147
  msgid "Initializing Tribe Events on %s"
8148
  msgstr "Indlæser Tribe Events på %s"
8149
 
8150
+ #: src/Tribe/Main.php:761
8151
  msgid "today"
8152
  msgstr "I dag"
8153
 
8154
+ #: src/Tribe/Main.php:760
8155
  msgid "day"
8156
  msgstr "I dag"
8157
 
8158
+ #: src/Tribe/Main.php:759
8159
  msgid "past"
8160
  msgstr "tidligere"
8161
 
8162
+ #: src/Tribe/Main.php:758
8163
  msgid "upcoming"
8164
  msgstr "kommende"
8165
 
8166
+ #: src/Tribe/Main.php:757
8167
  msgid "list"
8168
  msgstr "liste"
8169
 
8170
+ #: src/Tribe/Main.php:756
8171
  msgid "month"
8172
  msgstr "måned"
8173
 
8174
+ #. #-#-#-#-# the-events-calendar-code.pot (The Events Calendar 4.6.22.1)
8175
  #. #-#-#-#-#
8176
  #. Plugin Name of the plugin/theme
8177
  #: common/src/Tribe/Admin/Help_Page.php:59 common/src/Tribe/Customizer.php:569
8178
+ #: common/src/Tribe/Plugins_API.php:25 src/Tribe/Main.php:749
8179
+ #: src/Tribe/Main.php:1092 src/Tribe/Privacy.php:29
8180
  #: src/functions/template-tags/general.php:1345
8181
  msgid "The Events Calendar"
8182
  msgstr "The Events Calendar"
8183
 
8184
+ #: src/Tribe/Main.php:1162 src/admin-views/aggregator/tabs/import-form.php:185
8185
  #: src/admin-views/aggregator/tabs/import-form.php:197
8186
  #: src/functions/template-tags/general.php:63
8187
  msgid "Event"
8188
  msgstr "Begivenhed"
8189
 
8190
  #: common/src/Tribe/Settings.php:177 common/src/Tribe/Settings.php:241
8191
+ #: common/src/Tribe/Settings.php:242 src/Tribe/Main.php:1154
8192
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:207
8193
  #: src/functions/template-tags/general.php:95
8194
  msgid "Events"
8195
  msgstr "Begivenheder"
8196
 
8197
+ #: src/Tribe/Organizer.php:157 src/functions/template-tags/organizer.php:112
8198
  msgid "Organizer"
8199
  msgstr "Arrangør"
8200
 
8201
  #: src/Tribe/Organizer.php:171
8202
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:206
8203
+ #: src/functions/template-tags/organizer.php:123
8204
  msgid "Organizers"
8205
  msgstr "Arrangører"
8206
 
8464
  msgid "End:"
8465
  msgstr "Slut:"
8466
 
8467
+ #: src/Tribe/Aggregator/Record/List_Table.php:505
8468
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
8469
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
8470
  #: src/views/modules/meta/details.php:66 src/views/modules/meta/details.php:91
8483
  msgid "Start Date"
8484
  msgstr "Startdato"
8485
 
8486
+ #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1775
8487
  msgid "%s Categories"
8488
  msgstr "%s Kategorier"
8489
 
8494
  #: src/Tribe/Admin/Timezone_Updater.php:87
8495
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
8496
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:100
8497
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:210
8498
  msgid "%d%% complete"
8499
  msgstr "%d%% fuldført"
8500
 
8507
  msgstr ""
8508
 
8509
  #: src/Tribe/Admin/Bar/Default_Configurator.php:62
8510
+ #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:211 src/Tribe/Main.php:1761
8511
+ #: src/Tribe/Main.php:4843 src/Tribe/Main.php:4890 src/Tribe/Organizer.php:93
8512
  #: src/Tribe/Venue.php:112
8513
  msgid "Edit %s"
8514
  msgstr "Rediger i %s"
8515
 
8516
+ #: src/Tribe/Main.php:4827 src/Tribe/Main.php:4884
8517
  msgid "Use Saved %s:"
8518
  msgstr "Brug gemt %s:"
8519
 
8520
+ #: src/Tribe/Main.php:991
8521
  msgid " ask the site administrator set a different Events URL slug."
8522
  msgstr "bed administratoren om at angive en anden kort titel for begivenheder."
8523
 
8524
+ #: src/Tribe/Main.php:985
8525
  msgid "Ask the site administrator to edit the %s slug"
8526
  msgstr "Bed administratoren om at redigere korte titel for %s"
8527
 
8529
  msgid "Thanks for Updating The Events Calendar"
8530
  msgstr "Tak for at du opdaterede The Events Calendar"
8531
 
8532
+ #: src/Tribe/Main.php:844 src/Tribe/Main.php:846
8533
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
8534
  msgid "Welcome to The Events Calendar"
8535
  msgstr "Velkommen til The Events Calendar"
lang/the-events-calendar-de_DE.mo CHANGED
Binary file
lang/the-events-calendar-de_DE.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - The Events Calendar - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2018-08-24 15:30:58+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,309 +11,334 @@ msgstr ""
11
  "Language: de\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: src/views/month/single-day.php:57
15
  msgid "%s for %s"
16
- msgstr "%s für %s"
17
 
18
  #: src/views/month/loop-grid.php:25 src/views/month/loop-grid.php:28
19
  msgid "Calendar of %s"
20
- msgstr "Kalender von %s"
21
 
22
  #: src/views/modules/bar.php:80
23
  msgid "Submit %s search"
24
- msgstr "Suche %s absenden"
25
 
26
  #: src/views/modules/bar.php:68
27
  msgid "%s Search"
28
- msgstr "%s Suche"
29
 
30
  #: src/views/modules/bar.php:48
31
  msgid "View %s As"
32
- msgstr "%s ansehen als"
33
 
34
  #: src/views/modules/bar.php:43
35
  msgid "%s Views Navigation"
36
- msgstr "%s Ansichtennavigation"
37
 
38
  #: src/views/modules/bar.php:29
39
  msgid "%s Search and Views Navigation"
40
- msgstr "%s Such- und Ansichtennavigation "
41
 
42
  #: src/admin-views/privacy.php:63
43
  msgid "If you have extended our plugin(s) to send data to a third-party service such as Eventbrite, Google Maps, or PayPal, user information may be passed to these external services. These services may be located abroad."
44
- msgstr "Wenn Du unsere Plugins so erweitert hast, dass sie Daten an einen Drittanbieter-Service wie Eventbrite, Google Maps oder PayPal senden, können Benutzerinformationen an diese externen Services weitergegeben werden. Diese Dienste können sich im Ausland befinden."
45
 
46
  #: src/admin-views/privacy.php:61
47
  msgid "Modern Tribe does not send any user data outside of your website by default."
48
- msgstr "Modern Tribe sendet standardmäßig keine Userdaten ausserhalb von deiner Webseite."
49
 
50
  #: src/admin-views/privacy.php:59
51
  msgid "Where We Send Your Data"
52
- msgstr "Wohin wir deine Daten senden"
53
 
54
  #: src/admin-views/privacy.php:57
55
  msgid "Certain data may be exported or removed upon users’ requests via the existing Exporter or Eraser. Please note, however, that several “edge cases” exist in which we are unable to perfect the gathering and export of all data for your end users. We suggest running a search in your local database, as well as within the WordPress Dashboard, in order to identify all data collected and stored for your specific user requests."
56
- msgstr "Bestimmte Daten können auf Wunsch der Benutzer über den vorhandenen Exporter oder Papierkorb exportiert oder entfernt werden. Bitte beachte jedoch, dass es mehrere \"Ausnahme Fälle\" gibt, in denen wir das Sammeln und den Export aller Daten für Ihre Endnutzer nicht nachkommen können. Wir empfehlen, in Deiner lokalen Datenbank sowie im WordPress Dashboard eine Suche durchzuführen, um alle gesammelten und gespeicherten Daten für Deine spezifischen Benutzeranforderungen zu identifizieren."
57
 
58
  #: src/admin-views/privacy.php:55
59
  msgid "All information (data) is retained in the local database indefinitely, unless otherwise deleted."
60
- msgstr "Alle Informationen (data) bleiben auf unbestimmte Zeit in der lokalen Datenbank erhalten, sofern sie nicht anderweitig gelöscht werden."
61
 
62
  #: src/admin-views/privacy.php:53
63
  msgid "How Long You Retain this Data"
64
- msgstr "Wie lange Du diese Daten behältst"
65
 
66
  #: src/admin-views/privacy.php:51
67
  msgid "These API keys may include the following third party services: Google Maps, Facebook, Meetup, PayPal, and Eventbrite (API key, auth URL and Client Secret)."
68
- msgstr "Diese API-Schlüssel können die folgenden Dienste von Drittanbietern enthalten: Google Maps, Facebook, Meetup, PayPal und Eventbrite (API-Schlüssel, Authentifizierungs-URL und Client Secret)."
69
 
70
  #: src/admin-views/privacy.php:49
71
  msgid "We make use of certain API keys, in order to provide specific features."
72
- msgstr "Wir verwenden bestimmte API-Keys, um bestimmte Funktionen bereitzustellen."
73
 
74
  #: src/admin-views/privacy.php:45
75
  msgid "The Events Calendar suite offers the use of third-party API keys. The primary functions are to enhance the features we've built in, some of which use Google Maps, PayPal, Eventbrite, Meetup, and Facebook. These API keys are not supplied by Modern Tribe."
76
- msgstr "Die Veranstaltungskalender-Suite bietet die Verwendung von API-Schlüsseln von Drittanbietern. Die Hauptfunktionen sind die Verbesserung der Funktionen, die wir eingebaut haben, von denen einige Google Maps, PayPal, Eventbrite, Meetup und Facebook verwenden. Diese API-Schlüssel werden nicht von Modern Tribe bereitgestellt."
77
 
78
  #: src/admin-views/privacy.php:43
79
  msgid "API Keys"
80
- msgstr "API-Schlüssel"
81
 
82
  #: src/admin-views/privacy.php:41
83
  msgid "When purchasing Eventbrite Tickets, attendee, purchaser, and order information are stored and managed by Eventbrite."
84
- msgstr "Beim Kauf von Eventbrite-Tickets werden Teilnehmer-, Käufer- und Bestellinformationen von Eventbrite gespeichert und verwaltet."
85
 
86
  #: src/admin-views/privacy.php:39
87
  msgid "Please note that to create new events through the Community Events submission form, a user must hold a website account on this domain. This information is retained in the local database. It is also possible to create events anonymously, if the site owner has this option enabled."
88
- msgstr "Bitte beachten, dass ein Nutzer ein Website-Konto für diese Domain besitzen muss, um über das Anmeldeformular für Community-Events neue Events zu erstellen. Diese Information wird in der lokalen Datenbank beibehalten. Es ist auch möglich, Ereignisse anonym zu erstellen, wenn der Websitebesitzer diese Option aktiviert hat."
89
 
90
  #: src/admin-views/privacy.php:36
91
  msgid "Eventbrite Ticket information: name, description, cost, type, quantity"
92
- msgstr "Eventbrite Ticketinformationen: Name, Beschreibung, Kosten, Art, Menge"
93
 
94
  #: src/admin-views/privacy.php:35
95
  msgid "Import origin data (URL from where events are being imported—such as Eventbrite, MeetUp, other compatible URL sources, and more, which can include similar or same data as listed above)"
96
- msgstr "Import von Ursprungsdaten (URL, von der Ereignisse importiert werden - wie Eventbrite, MeetUp, andere kompatible URL-Quellen und mehr, die ähnliche oder dieselben Daten wie oben aufgeführt enthalten können)"
97
 
98
  #: src/admin-views/privacy.php:34
99
  msgid "All data present within a CSV or ICS file and external URLs (for events, venues, organizers, and tickets)"
100
- msgstr "Alle Daten in einer CSV- oder ICS-Datei und externen URLs (für Veranstaltungen, Veranstaltungsorte, Veranstalter und Tickets)"
101
 
102
  #: src/admin-views/privacy.php:31
103
  msgid "Importing Events, Venues, and Organizers:"
104
- msgstr "Importieren von Veranstaltungen, Veranstaltungsorten und Veranstaltern:"
105
 
106
  #: src/admin-views/privacy.php:28
107
  msgid "Event information: website, cost, description, date, time, image"
108
- msgstr "Veranstaltungsinformationen: Website, Eintritt, Beschreibung, Datum, Uhrzeit, Bild"
109
 
110
  #: src/admin-views/privacy.php:27
111
  msgid "Organizer information: name, phone, website, email"
112
- msgstr "Informationen zum Veranstalter: Name, Telefon, Website, E-Mail"
113
 
114
  #: src/admin-views/privacy.php:26
115
  msgid "Venue information: name, address, city, country, state, postal code, phone, website, geographical coordinates (latitude and longitude)"
116
- msgstr "Angaben zum Veranstaltungsort: Name, Adresse, Stadt, Land, Bundesland, Postleitzahl, Telefon, Website, geografische Koordinaten (Längen- und Breitengrad)"
117
 
118
  #: src/admin-views/privacy.php:23
119
  msgid "If you create, submit, import, save, or publish Event, Venue, or Organizer information, such information is retained in the local database:"
120
- msgstr "Wenn Du Veranstaltungs-, Tagungsort- oder Organisatorinformationen erstellst, sendest, importierst, speicherst oder veröffentlichst, werden diese Informationen in der lokalen Datenbank gespeichert:"
121
 
122
  #: src/admin-views/privacy.php:22 src/admin-views/privacy.php:47
123
  msgid "Suggested text:"
124
- msgstr "Vorgeschlagener Text:"
125
 
126
  #: src/admin-views/privacy.php:21
127
  msgid "Through the usage of The Events Calendar, Events Calendar PRO, The Events Calendar Filter Bar, Eventbrite Tickets, and Community Events plugins, as well as our Event Aggregator Import service (contained within The Events Calendar plugin), information may be collected and stored within your website’s database."
128
- msgstr "Durch die Verwendung des Ereigniskalenders, des Ereigniskalenders PRO, der Ereigniskalender-Filterleiste, der Eventbrite-Tickets und der Community-Ereignisse-Plugins sowie unseres Ereignisaggregator-Importdienstes (im Ereigniskalender-Plugin enthalten) können Informationen gesammelt und gespeichert werden die Datenbank Deiner Website."
129
 
130
  #: src/admin-views/privacy.php:20
131
  msgid "Event, Venue, and Organizer Information"
132
- msgstr "Informationen zu Veranstaltung, Veranstaltungsort und Veranstalter"
133
 
134
  #: src/admin-views/privacy.php:18
135
  msgid "What personal data we collect and why we collect it"
136
- msgstr "Welche persönlichen Daten sammeln wir und warum sammeln wir diese?"
137
 
138
  #: src/admin-views/privacy.php:16
139
  msgid "This information is only for guidance and not to be considered as legal advice."
140
- msgstr "Diese Informationen dienen nur zur Orientierung und sind nicht als Rechtsberatung zu betrachten."
141
 
142
  #: src/admin-views/privacy.php:16
143
  msgid "Disclaimer:"
144
- msgstr "Haftungsausschluss (Disclaimer):"
145
 
146
  #: src/admin-views/privacy.php:15
147
  msgid "You should include the information below in the correct sections of you privacy policy."
148
- msgstr "Du solltest die folgenden Informationen in die richtigen Abschnitte Deiner Datenschutzerklärung aufnehmen."
149
 
150
  #: src/admin-views/privacy.php:14
151
  msgid "This information serves as a guide on what sections need to be modified due to usage of The Events Calendar and its Add-ons."
152
- msgstr "Diese Informationen dienen als Richtlinie, welche Abschnitte aufgrund der Verwendung des Veranstaltungskalenders und seiner Add-Ons geändert werden müssen."
153
 
154
  #: src/admin-views/privacy.php:13
155
  msgid "Hello,"
156
- msgstr "Hallo,"
157
 
158
  #: src/admin-views/aggregator/settings.php:531
159
  msgid "The default event category for events imported via Eventbrite"
160
- msgstr "Die Standard-Ereigniskategorie für Ereignisse, die über Eventbrite importiert werden"
161
 
162
  #: src/admin-views/aggregator/settings.php:519
163
  msgid "The default post status for events imported via Eventbrite"
164
- msgstr "Der Standard Beitragsstatus für aus Eventbrite importierte Veranstaltungen"
165
 
166
  #: src/admin-views/aggregator/settings.php:513
167
  msgid "Eventbrite Import Settings"
168
- msgstr "Eventbrite Importeinstellungen"
169
 
170
  #: src/admin-views/aggregator/settings.php:26
171
  msgid "None"
172
- msgstr "Keine"
173
 
174
  #: src/admin-views/aggregator/origins/eventbrite.php:13
175
  msgid "Import from Eventbrite"
176
- msgstr "Von Eventbrite importieren"
177
 
178
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:17
179
  msgid "Learn more"
180
- msgstr "Mehr erfahren"
181
 
182
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:14
183
  msgid "Do more with Eventbrite Tickets"
184
- msgstr "Mach mehr mit Eventbrite Tickets"
185
 
186
- #: src/Tribe/Main.php:4513
187
  msgid "Search for %s by month. Please use the format %s."
188
- msgstr "Nach %s nach Monat durchsuchen. Bitte das Format %s verwenden."
189
 
190
- #: src/Tribe/Main.php:4508
191
  msgid "Search for %s by Date. Please use the format %s."
192
- msgstr "Nach %s nach Datum durchsuchen. Bitte das Format %s verwenden."
193
 
194
- #: src/Tribe/Main.php:4476 src/Tribe/Main.php:4477
195
  msgid "2 digit month dot 4 digit year"
196
- msgstr "Datumsformat: MM.JJJJ"
197
 
198
- #: src/Tribe/Main.php:4475
199
  msgid "4 digit year dot 2 digit month"
200
- msgstr "Datumsformat: JJJJ.MM"
201
 
202
- #: src/Tribe/Main.php:4474
203
  msgid "2 digit month hyphen 4 digit year"
204
- msgstr "Datumsformat: MM-JJJJ"
205
 
206
- #: src/Tribe/Main.php:4471 src/Tribe/Main.php:4472 src/Tribe/Main.php:4473
207
  msgid "1 digit month hyphen 4 digit year"
208
- msgstr "Datumsformat: M-JJJJ"
209
 
210
- #: src/Tribe/Main.php:4468 src/Tribe/Main.php:4470
211
  msgid "2 digit month slash 4 digit year"
212
- msgstr "Datumsformat: MM/JJJJ"
213
 
214
- #: src/Tribe/Main.php:4467 src/Tribe/Main.php:4469
215
  msgid "1 digit month slash 4 digit year"
216
- msgstr "Datumsformat: M/JJJJ"
217
 
218
- #: src/Tribe/Main.php:4466
219
  msgid "4 digit year hyphen 2 digit month"
220
- msgstr "Datumsformat: JJJJ-MM"
221
 
222
- #: src/Tribe/Main.php:4462
223
  msgid "2 digit day dot 2 digit month dot 4 digit year"
224
- msgstr "Datumsformat: TT.MM.JJJJ"
225
 
226
- #: src/Tribe/Main.php:4461
227
  msgid "2 digit month dot 2 digit day dot 4 digit year"
228
- msgstr "Datumsformat: MM.TT.JJJJ"
229
 
230
- #: src/Tribe/Main.php:4460
231
  msgid "4 digit year dot 2 digit month dot 2 digit day"
232
- msgstr "Datumsformat: JJJJ.MM.TT"
233
 
234
- #: src/Tribe/Main.php:4459
235
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
236
- msgstr "Datumsformat: TT-MM-JJJJ"
237
 
238
- #: src/Tribe/Main.php:4458
239
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
240
- msgstr "Datumsformat: T-M-JJJJ"
241
 
242
- #: src/Tribe/Main.php:4457
243
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
244
- msgstr "Datumsformat: M-TT-JJJJ"
245
 
246
- #: src/Tribe/Main.php:4456
247
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
248
- msgstr "Datumsformat: M-T-JJJJ"
249
 
250
- #: src/Tribe/Main.php:4455
251
  msgid "2 digit day slash 2 digit month slash 4 digit year"
252
- msgstr "Datumsformat: TT/MM/JJJJ"
253
 
254
- #: src/Tribe/Main.php:4454
255
  msgid "1 digit day slash 1 digit month slash 4 digit year"
256
- msgstr "Datumsformat: T/M/JJJJ"
257
 
258
- #: src/Tribe/Main.php:4453
259
  msgid "2 digit month slash 2 digit day slash 4 digit year"
260
- msgstr "Datumsformat: MM/TT/JJJJ"
261
 
262
- #: src/Tribe/Main.php:4452
263
  msgid "1 digit month slash 1 digit day slash 4 digit year"
264
- msgstr "Datumsformat: M/T/JJJJ"
265
 
266
- #: src/Tribe/Main.php:4451
267
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
268
- msgstr "Datumsformat: JJJJ-MM-TT"
269
 
270
- #: src/Tribe/Main.php:4430
271
  msgid "Search for %s by Keyword."
272
- msgstr "Suche nach %s als Schlüsselwort."
273
 
274
  #: src/Tribe/API.php:826 src/Tribe/API.php:837
275
  msgid "An event having a post meta value of `%s` minutes is not valid. Make sure it is from 0 to 59."
276
- msgstr "Ein Ereignis mit einem Post-Meta-Wert von `%s` Minuten ist nicht gültig. Stelle sicher, dass es von 0 bis 59 ist."
277
 
278
  #: src/Tribe/API.php:796
279
  msgid "An event having a post meta value of `%s` hour (24-hour) is not valid. Make sure it is from 0 to 23."
280
- msgstr "Eine Veranstaltung mit einem Post-Meta-Wert von `%s` Stunde (24-Stunden) ist nicht gültig. Stelle sicher, dass es von 0 bis 23 ist."
281
 
282
  #: src/Tribe/API.php:789
283
  msgid "An event having a post meta value of `%s` hour (12-hour) is not valid. Make sure it is from 1 to 12."
284
- msgstr "Eine Veranstaltung mit einem Post-Meta-Wert von `%s` Stunde (12-Stunden) ist nicht gültig. Stelle sicher, dass es von 1 bis 12 ist."
285
 
286
  #: src/Tribe/API.php:772
287
  msgid "An event having a post meta value of `%s` hour (am/pm) is not valid. Make sure it is from 1 to 12."
288
- msgstr "Eine Veranstaltung mit einem Post-Meta-Wert von `%s` Stunde (am / pm) ist nicht gültig. Stelle sicher, dass es von 1 bis 12 ist."
289
 
290
  #: src/Tribe/API.php:744
291
  msgid "An event having a post meta value of `%s` meridian is not valid. Make sure it is either `am` or `pm`, or remove it entirely if using the 24-hour format."
292
- msgstr "Eine Veranstaltung mit einem Post-Meta-Wert von `%s` Meridian ist nicht gültig. Bitte sicherstellen, dass es entweder \"am\" oder \"pm\" ist, oder vollständig entfernen, wenn das 24-Stunden-Format verwendet wird."
293
 
294
  #: common/src/Tribe/Admin/Notice/Php_Version.php:101
295
  msgid "Starting March 2019, %1$s will no longer work with versions prior to PHP 5.4. Currently your site is using PHP version %2$s. For best results, we recommend using PHP 5.6 or above."
296
- msgstr "Ab März 2019 funktioniert %1$s nicht mehr mit Versionen vor PHP 5.4. Derzeit verwendet Deine Site die PHP-Version %2$s. Für beste Ergebnisse empfehlen wir PHP 5.6 oder höher."
297
 
298
  #: common/src/Tribe/Admin/Notice/Php_Version.php:98
299
  msgid "Starting March 2019, %1$s will no longer support versions prior to PHP 5.6. Your site is currently using PHP version %2$s which will no longer be supported by %1$s. For best results, we recommend using PHP 5.6 or above."
300
- msgstr "Ab März 2019 unterstützt %1$s keine Versionen vor PHP 5.6. Deine Website verwendet derzeit die PHP-Version %2$s, die von %1$s. nicht mehr unterstützt wird. Für beste Ergebnisse empfehlen wir PHP 5.6 oder höher."
301
 
302
  #: src/admin-views/tribe-options-addons-api.php:152
303
  msgid "You need to connect Event Aggregator to Eventbrite to import your events from Eventbrite."
304
- msgstr "Event Aggregator muss mit Eventbrite verbunden werden, um Events von Eventbrite importieren zu können."
305
 
306
  #: src/admin-views/tribe-options-addons-api.php:130
307
  msgid "Refresh your connection to Eventbrite"
308
- msgstr "Die Verbindung zu Eventbrite aktualisieren"
309
 
310
  #: src/admin-views/tribe-options-addons-api.php:128
311
  msgid "Connect to Eventbrite"
312
- msgstr "Mit Eventbrite verbinden"
313
 
314
  #: src/admin-views/tribe-options-addons-api.php:127
315
  msgid "You need to connect to Eventbrite for Event Aggregator to work properly"
316
- msgstr "Es muss eine Verbindung zu Eventbrite hergestellt werden, damit der Ereignisaggregator ordnungsgemäß funktioniert"
317
 
318
  #: src/admin-views/tribe-options-addons-api.php:123
319
  msgid "Eventbrite Token"
@@ -321,117 +346,117 @@ msgstr "Eventbrite Token"
321
 
322
  #: src/admin-views/aggregator/tabs/import-form.php:297
323
  msgid "Settings > General"
324
- msgstr "Einstellungen > Allgemein"
325
 
326
  #: src/admin-views/aggregator/tabs/import-form.php:286
327
  msgid "The number of events available in the preview may be limited by your %1$sImport Settings.%2$s"
328
- msgstr "Die Anzahl der in der Vorschau verfügbaren Veranstaltungen kann durch Deine %1$s Import-Einstellungen eingeschränkt sein. %2$s"
329
 
330
  #: src/admin-views/aggregator/tabs/import-form.php:279
331
  msgid "to change how the actual time is displayed on your calendar."
332
- msgstr "um zu ändern, wie die tatsächliche Zeit in Deinem Kalender angezeigt wird."
333
 
334
  #: src/admin-views/aggregator/tabs/import-form.php:277
335
  msgid "timezone settings"
336
- msgstr "Zeitzoneneinstellungen"
337
 
338
  #: src/admin-views/aggregator/tabs/import-form.php:275
339
  msgid "Events will be imported with the same timezone as defined on eventbrite.com. You can make use of The Events Calendar's"
340
- msgstr "Veranstaltungen werden in derselben Zeitzone importiert, wie auf eventbrite.com festgelegt. Du kannst den Event Kalender verwenden"
341
 
342
  #: src/admin-views/aggregator/tabs/import-form.php:268
343
  msgid "Eventbrite imports can fetch up to 50 events from your source."
344
- msgstr "Eventbrite Importe können bis zu 50 Veranstaltungen aus deiner Quelle laden."
345
 
346
  #: src/admin-views/aggregator/status.php:202
347
  msgid "Limited connectivity with Eventbrite"
348
- msgstr "Begrenzte Konnektivität mit Eventbrite"
349
 
350
  #: src/admin-views/aggregator/status.php:198
351
  msgctxt "link for connecting eventbrite"
352
  msgid "Connect to Eventbrite"
353
- msgstr "Mit Eventbrite verbinden"
354
 
355
  #: src/admin-views/aggregator/status.php:196
356
  msgid "You have not connected Event Aggregator to Eventbrite"
357
- msgstr "Event Aggregator ist nicht mit Eventbrite verbunden"
358
 
359
  #: src/admin-views/aggregator/origins/refine.php:32
360
  msgid "Use the filters to narrow down which events are fetched from Eventbrite."
361
- msgstr "Verwenden den Filter, um einzugrenzen, welche Veranstaltungen von Eventbrite abgerufen werden."
362
 
363
  #: src/admin-views/aggregator/origins/meetup.php:154
364
  msgid "Invalid Meetup URL"
365
- msgstr "Invalide Meetup URL"
366
 
367
  #: src/admin-views/aggregator/origins/facebook.php:126
368
  msgid "Invalid Facebook URL"
369
- msgstr "Invalide Facebook URL"
370
 
371
  #: src/admin-views/aggregator/origins/eventbrite.php:183
372
  msgid "Invalid Eventbrite URL"
373
- msgstr "Invalide Eventbrite URL"
374
 
375
  #: src/admin-views/aggregator/origins/eventbrite.php:153
376
  msgid "eventbrite.com/e/example-12345"
377
- msgstr "eventbrite.com/e/example-12345"
378
 
379
  #: src/admin-views/aggregator/origins/eventbrite.php:127
380
  msgid "Import from Eventbrite.com url"
381
- msgstr "Import von Eventbrite.com URL"
382
 
383
  #: src/admin-views/aggregator/origins/eventbrite.php:116
384
  msgid "Import events directly from your connected Eventbrite.com account or from a public Eventbrite.com url."
385
- msgstr "Importiere Veranstaltungen direkt von Ihrem verbundenen Eventbrite.com-Konto oder von einer öffentlichen Eventbrite.com-URL."
386
 
387
  #: src/admin-views/aggregator/origins/eventbrite.php:115
388
  msgid "Select Source"
389
- msgstr "Quelle auswählen"
390
 
391
  #: src/admin-views/aggregator/origins/eventbrite.php:114
392
  msgid "Import Source"
393
- msgstr "Quelle importieren"
394
 
395
  #: src/admin-views/aggregator/origins/eventbrite.php:44
396
  msgid "Log into Eventbrite"
397
- msgstr "Bei Eventbrite einloggen"
398
 
399
  #: src/admin-views/aggregator/origins/eventbrite.php:38
400
  msgid "Please log in to enable event imports from Eventbrite."
401
- msgstr "Bitte anmelden, um Veranstaltungs-Importe von Eventbrite zu ermöglichen."
402
 
403
  #: src/admin-views/aggregator/origins/eventbrite.php:15
404
  #: src/admin-views/aggregator/origins/eventbrite.php:121
405
  msgid "Import from your Eventbrite account"
406
- msgstr "Von Deinem Eventbrite-Konto importieren"
407
 
408
  #: src/admin-views/aggregator/origins/eventbrite.php:8
409
  msgid "One-time imports include all currently listed events, while scheduled imports automatically grab new events and updates from Eventbrite on a set schedule. Single events can be added via a one-time import."
410
- msgstr "Einmalige Importe umfassen alle derzeit aufgelisteten Veranstaltungen, während geplante Importe automatisch neue Veranstaltungen und Updates von Eventbrite nach einem festgelegten Zeitplan erfassen. Einzelne Veranstaltungen können über einen einmaligen Import hinzugefügt werden."
411
 
412
  #: src/Tribe/Aggregator/Tabs/Abstract.php:190
413
  msgid "Please provide a Eventbrite URL when importing from Eventbrite."
414
- msgstr "Neim Import von Eventbrite eine Eventbrite-URL angeben."
415
 
416
  #: src/Tribe/Aggregator/Service.php:693
417
  msgid "Successfully fetched Eventbrite Token"
418
- msgstr "Eventbrite Token wurde erfolgreich abgerufen"
419
 
420
  #: src/Tribe/Aggregator/Service.php:677
421
  msgid "No upcoming Eventbrite events found."
422
- msgstr "Keine Events von Eventbrite gefunden."
423
 
424
  #: src/Tribe/Aggregator/Service.php:676
425
  msgid "Events cannot be imported because Eventbrite has returned an error. This could mean that the event ID does not exist, the event or source is marked as Private, or the event or source has been otherwise restricted by Eventbrite. You can <a href=\"https://theeventscalendar.com/knowledgebase/import-errors/\" target=\"_blank\">read more about Eventbrite restrictions in our knowledgebase</a>."
426
- msgstr "Veranstaltungen können nicht importiert werden, da Eventbrite einen Fehler zurückgegeben hat. Dies kann bedeuten, dass die Veranstaltungs-ID nicht existiert, die Veranstaltung oder die Quelle als privat markiert ist oder die Veranstaltungen oder die Quelle anderweitig von Eventbrite eingeschränkt wurde. Du kannst <a href=\"https://theeventscalendar.com/knowledgebase/import-errors/\" target=\"_blank\">in unserer Knowledgebase mehr über Eventbrite-Einschränkungen erfahren</a>."
427
 
428
  #: src/Tribe/Aggregator/REST/V1/Endpoints/State.php:78
429
  msgid "The new status message slug, to allow for localized messages."
430
- msgstr "Die neue Statusmeldung-URL (slug), um lokalisierte Nachrichten zu ermöglichen."
431
 
432
  #: src/Tribe/Aggregator/REST/V1/Endpoints/State.php:73
433
  msgid "The new status message for the user, not localized."
434
- msgstr "Die neue Statusnachricht für den Benutzer, nicht lokalisiert."
435
 
436
  #: src/Tribe/Aggregator/REST/V1/Endpoints/State.php:68
437
  msgid "The new status of the import."
@@ -439,16 +464,16 @@ msgstr "Der neue Status des Imports."
439
 
440
  #: src/Tribe/Aggregator/REST/V1/Endpoints/Batch.php:138
441
  msgid "The current interval, in seconds, between the end of a batch process and the start of the next; as set on the server."
442
- msgstr "Das aktuelle Intervall in Sekunden zwischen dem Ende eines Batch-Prozesses und dem Beginn des nächsten; wie auf dem Server eingestellt."
443
 
444
  #: src/Tribe/Aggregator/REST/V1/Endpoints/Batch.php:132
445
  #: src/Tribe/Aggregator/REST/V1/Endpoints/State.php:84
446
  msgid "The percentage of import completed."
447
- msgstr "Der prozentuale Anteil der abgeschlossenen Importen."
448
 
449
  #: src/Tribe/Aggregator/REST/V1/Endpoints/Batch.php:126
450
  msgid "The current status of the import."
451
- msgstr "Der aktuelle Status des Imports."
452
 
453
  #: src/Tribe/Aggregator/REST/V1/Endpoints/Batch.php:120
454
  #: src/Tribe/Aggregator/REST/V1/Endpoints/State.php:62
@@ -462,7 +487,7 @@ msgstr "Die eindeutige ID des Imports, wie vom Event-Aggregator-Service bereitge
462
 
463
  #: src/Tribe/Aggregator/Errors.php:66
464
  msgid "There is an JSON error with the Event Aggregator server. Please try your import again later."
465
- msgstr "Es liegt ein JSON-Fehler beim Event Aggregator-Server vor. Bitte später erneut versuchen."
466
 
467
  #: src/Tribe/Aggregator/CLI/Service_Provider.php:22
468
  msgid "If required the commands will use the API keys and licenses set for the current site."
@@ -470,32 +495,32 @@ msgstr "Bei Bedarf verwenden die Befehle die API-Schlüssel und Lizenzen, die f
470
 
471
  #: src/Tribe/Aggregator/CLI/Service_Provider.php:21
472
  msgid "Create, run and manage Event Aggregator imports."
473
- msgstr "Erstellen, Ausführen und Verwalten von Event Aggregator Imports."
474
 
475
  #: src/Tribe/Admin/Notice/Timezones.php:76
476
  msgid "When using The Events Calendar, we recommend that you choose a city in your timezone and avoid using a UTC timezone offset. Choosing a UTC timezone may cause problems when importing events or with Day Light Savings time. %1$s"
477
- msgstr "Beim Verwenden des Veranstaltungskalenders empfehlen wir, eine Stadt in Deiner Zeitzone auszuwählen und auf die Verwendung eines UTC-Zeitzonenoffsets zu verzichten. Die Auswahl einer UTC-Zeitzone kann zu Problemen beim Importieren von Ereignissen oder bei der Verwendung von Tageslichtzeit führen. %1$s"
478
 
479
  #: src/Tribe/Admin/Notice/Timezones.php:74
480
  msgid "Read more"
481
- msgstr "Weiterlesen"
482
 
483
  #: src/Tribe/Admin/Notice/Marketing.php:52
484
  msgctxt "2018 user survey"
485
  msgid "<strong>The Events Calendar Annual Survey:</strong> share your feedback with our team—%1$s!"
486
- msgstr "<strong>Jährliche Umfrage zum Veranstaltungskalender:</strong> Teile Dein Feedback mit unserem Team—%1$s!"
487
 
488
  #: src/Tribe/Admin/Notice/Marketing.php:48
489
  msgctxt "2018 user survey"
490
  msgid "take the survey now"
491
- msgstr "Jetzt die Umfrage ausfüllen"
492
 
493
  #: common/src/admin-views/tribe-options-help.php:33
494
  msgid "Search our support help desk"
495
- msgstr "Jetzt unseren Support Helpdesk durchsuchen"
496
 
497
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
498
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:369
499
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
500
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
501
  msgid "The requested page was not found."
@@ -503,21 +528,21 @@ msgstr "Die angeforderte Seite wurde nicht gefunden."
503
 
504
  #: src/Tribe/Aggregator/Settings.php:491
505
  msgid "one month"
506
- msgstr "Ein Monat"
507
 
508
  #: src/Tribe/Aggregator/Settings.php:479
509
  msgid "one week"
510
- msgstr "Eine Woche"
511
 
512
- #: src/Tribe/Aggregator/Record/List_Table.php:570
513
  msgctxt "when the retry will happen, a date"
514
  msgid "retrying at %s"
515
- msgstr "neu versuchen am %s"
516
 
517
- #: src/Tribe/Aggregator/Record/List_Table.php:567
518
  msgctxt "in human readable time"
519
  msgid "retrying in about %s"
520
- msgstr "neu versuchen in etwa %s"
521
 
522
  #: common/vendor/a5hleyrich/wp-background-processing/classes/wp-background-process.php:425
523
  msgid "Every %d Minutes"
@@ -525,11 +550,11 @@ msgstr "Alle %d Minuten"
525
 
526
  #: src/admin-views/tribe-options-general.php:183
527
  msgid "This option allows you to bulk delete past events. Be careful and backup your database before removing your events as there is no way to reverse the changes."
528
- msgstr "Mit dieser Option kannst Du vergangene Ereignisse löschen. Sei vorsichtig und sicher Deine Datenbank, bevor Du Ereignisse entfernst, da es keine Möglichkeit gibt, die Änderungen rückgängig zu machen."
529
 
530
  #: src/admin-views/tribe-options-general.php:182
531
  msgid "Permanently delete events older than"
532
- msgstr "Lösche Veranstaltungen permanent älter als"
533
 
534
  #: src/admin-views/tribe-options-general.php:177
535
  #: src/admin-views/tribe-options-general.php:194
@@ -563,19 +588,19 @@ msgstr "3 Monate"
563
 
564
  #: src/admin-views/tribe-options-general.php:166
565
  msgid "This option allows you to automatically move past events to trash."
566
- msgstr "Diese Option erlaubt automatisch vergangene Veranstaltungen zu löschen."
567
 
568
  #: src/admin-views/tribe-options-general.php:165
569
  msgid "Move to trash events older than"
570
- msgstr "Verschiebe Veranstaltungen in den Papierkorb älter als"
571
 
572
  #: src/admin-views/tribe-options-general.php:53
573
  msgid "Instantly updates the calendar view when searching for or filtering events."
574
- msgstr "Aktualisiere die Kalenderansicht wenn nach Veranstaltungen gefiltert oder gesucht wird."
575
 
576
  #: src/admin-views/tribe-options-general.php:52
577
  msgid "Enable live refresh"
578
- msgstr "Aktiviere Live Aktualisierung"
579
 
580
  #: src/admin-views/events-meta-box.php:129
581
  msgid "Time Zone:"
@@ -583,21 +608,21 @@ msgstr "Zeitzone:"
583
 
584
  #: src/Tribe/Gutenberg.php:84
585
  msgid "Looks like you are using Gutenberg on this WordPress installation. %1$s"
586
- msgstr "Schaut so aus, als ob Gutenberg auf dieser WordPress Installation verwendet wird. %1$s"
587
 
588
  #: src/Tribe/Gutenberg.php:82
589
  msgid "Download our Events Gutenberg extension and start using the block editor on your events!"
590
- msgstr "Lade unsere Events Gutenberg extension herunter und verwende den Blockeditor für Deine Veranstaltungen!"
591
 
592
  #: src/Tribe/Front_Page_View.php:238
593
  #: src/deprecated/Tribe__Events__Customizer__Front_Page_View.php:55
594
  msgctxt "Customizer static front page setting"
595
  msgid "Main %s Page"
596
- msgstr "Hauptseite %s"
597
 
598
  #: common/src/Tribe/Plugins_API.php:71
599
- msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Tickets have QR codes for easy check in at the door."
600
- msgstr "Mit Event Tickets Plus kannst du Tickets für deine Veranstaltungen mit WooCommerce, Easy Digital Downloads oder unserem integrierten Tool Tribe Commerce verkaufen. Füge Tickets zu deinen Beiträgen und Seiten hinzu oder füge %1$sThe Events Calendar%2$s hinzu und verkaufe Tickets aus deinen Veranstaltungslisten. Erstelle benutzerdefinierte Registrierungsformulare, verwalte Teilnehmer, verwende benutzerdefinierte Kapazitätsoptionen und vieles mehr. Tickets haben QR-Codes für einen einfache Einlasskontrolle an der Tür."
601
 
602
  #: src/admin-views/tribe-options-general.php:31
603
  msgid "The number of events per page on the List, Photo, and Map Views. Does not affect other views."
@@ -622,23 +647,23 @@ msgstr "Der Veranstalter mit der angegebenen ID ist nicht erreichbar."
622
 
623
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:130
624
  msgid "An event with the specified ID does not exist."
625
- msgstr "Ein Veranstalter mit der angegebenen ID existiert nicht."
626
 
627
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:127
628
  msgid "The event with the specified ID is not accessible."
629
- msgstr "Auf die Veranstaltung mit der angegebenen ID kann nicht zugegriffen werden."
630
 
631
- #: src/Tribe/Main.php:1813
632
  msgid "%1$s published. %2$sView %3$s"
633
  msgstr "%1$s veröffentlicht. %2$s %3$s anzeigen"
634
 
635
  #: src/Tribe/Google/Maps_API_Key.php:56
636
  msgid "our guide"
637
- msgstr "Unser Handbuch"
638
 
639
  #: src/Tribe/Google/Maps_API_Key.php:51
640
  msgid "We highly recommend that you specify a valid %1$s for The Events Calendar to use. Doing this will help prevent problems with maps, especially for sites that receive a lot of traffic. Visit %2$s for a detailed explanation in how to do it."
641
- msgstr "Es wird dringend empfohlen, dass einen gültigen %1$s für den zu verwendenden Veranstaltungskalender anzugeben. Auf diese Weise können Probleme mit Karten vermieden werden, insbesondere bei Websites mit hohem Datenverkehr. %2$s für eine detaillierte Erklärung besuchen."
642
 
643
  #: common/src/Tribe/Validate.php:184
644
  msgid "%s must not be empty"
@@ -650,19 +675,19 @@ msgstr "Kalender präsentiert von %s"
650
 
651
  #: src/admin-views/tribe-options-general.php:78
652
  msgid "The current URL for your events page is %1$s. <br><br> You cannot edit the slug for your events page as you do not have pretty permalinks enabled. In order to edit the slug here, <a href=\"%2$s\">enable pretty permalinks</a>."
653
- msgstr "Die aktuelle URL für Deine Veranstaltungsseite ist %1$s. <br><br> Du kannst die Titelform für Deine Veranstaltungsseite nicht bearbeiten, da Du keine Pretty Permalinks aktiviert hast. Um den Slug hier zu bearbeiten, <a href=\"%2$s\"> aktiviere Pretty Permalinks </a>."
654
 
655
  #: src/admin-views/tribe-options-display.php:52
656
  msgid "There are going to be situations where no out-of-the-box template is 100&#37; perfect. Check out our <a href=\"%s\">our themer's guide</a> for instructions on custom modifications."
657
- msgstr "Es wird Situationen geben, in denen keine Out-of-the-Box-Vorlage zu 100&#37; perfekt ist. In unserem <a href=\"%s\">Benutzerhandbuch</a> findest Du Anleitungen für benutzerdefinierte Anpassungen."
658
 
659
  #: src/admin-views/tribe-options-display.php:49
660
  msgid "The settings below control the display of your calendar. If things don't look right, try switching between the three style sheet options or pick a page template from your theme."
661
- msgstr "Die folgenden Einstellungen steuern die Anzeige Deines Kalenders. Wenn die Anzeige nicht richtig aussieht, wechsle zwischen den drei Style-Sheet-Optionen oder wähle eine Seitenvorlage aus Deinem Theme."
662
 
663
  #: src/admin-views/aggregator/settings.php:194
664
  msgid "When importing from an event source, this is the maximum number of events that will be imported; on slower websites this may impact the success of imports. Setting this to a smaller number may improve results."
665
- msgstr "Beim Importieren aus einer Quelle ist dies die maximale Anzahl von Veranstaltungen, die importiert werden. Auf langsameren Websites kann sich dies auf den Erfolg des Imports auswirken. Wenn Du eine kleinere Zahl einstellst, kann dies die Importergebnisse verbessern."
666
 
667
  #: src/admin-views/aggregator/settings.php:193
668
  msgid "Import Quantity Limit"
@@ -679,7 +704,7 @@ msgstr "Begrenzung Datumsbereich beim Import"
679
 
680
  #: src/admin-views/aggregator/settings.php:164
681
  msgid "Limit the number of imported events by number, date range, or not at all; on slower websites this may impact the success of imports. Selecting a shorter time period or a smaller number of events may improve results."
682
- msgstr "Begrenze die Anzahl der importierten Ereignisse nach Anzahl, Datumsbereich oder einfach überhaupt nicht. Auf langsameren Websites kann sich dies auf den Erfolg von Importen auswirken. Die Auswahl eines kürzeren Zeitraums oder einer kleineren Anzahl von Veranstaltungen kann die Ergebnisse verbessern."
683
 
684
  #: src/admin-views/aggregator/settings.php:163
685
  msgid "Import Limit Type"
@@ -687,7 +712,7 @@ msgstr "Import Limit Typ"
687
 
688
  #: src/admin-views/aggregator/origins/refine.php:27
689
  msgid "Use the filters to narrow down which events are fetched from Facebook."
690
- msgstr "Verwende die Filter, um einzugrenzen, welche Veranstaltungen von Facebook abgerufen werden."
691
 
692
  #: src/admin-views/aggregator/origins/limit.php:20
693
  msgid "Event Aggregator will try to fetch %s events starting from the current date or the specified date;"
@@ -708,7 +733,7 @@ msgstr "Die angeforderte Veranstalter Archivseite existiert nicht"
708
 
709
  #: src/Tribe/REST/V1/Messages.php:42
710
  msgid "The requested venue archive page does not exist"
711
- msgstr "Die angeforderte Archivseite für diesen Veranstaltungsort existiert nicht"
712
 
713
  #: src/Tribe/REST/V1/Messages.php:41
714
  msgid "The organizer could not be updated"
@@ -852,23 +877,23 @@ msgstr "Gibt die Daten des Veranstaltungsortes mit der angegebenen Beitrags-ID z
852
 
853
  #: src/Tribe/REST/V1/Endpoints/Single_Tag.php:142
854
  msgid "the event tag term ID"
855
- msgstr "die Begriffs-ID des Veranstaltungsschlagwortes"
856
 
857
  #: src/Tribe/REST/V1/Endpoints/Single_Tag.php:122
858
  msgid "The event tag with the specified term ID could not be deleted."
859
- msgstr "Das Veranstaltungsschlagwort mit der angegebenen Begriffs-ID konnte nicht gelöscht werden."
860
 
861
  #: src/Tribe/REST/V1/Endpoints/Single_Tag.php:119
862
  msgid "The event tag with the specified term ID has been deleted already."
863
- msgstr "Das Veranstaltungsschlagwort mit der angegebenen Begriffs-ID wurde bereits gelöscht."
864
 
865
  #: src/Tribe/REST/V1/Endpoints/Single_Tag.php:116
866
  msgid "The current user cannot delete the event tag with the specified term ID."
867
- msgstr "Der aktuelle Benutzer kann das Veranstaltungsschlagwort mit der angegebenen Begriffs-ID nicht löschen."
868
 
869
  #: src/Tribe/REST/V1/Endpoints/Single_Tag.php:113
870
  msgid "The event tag term ID is missing or does not exist."
871
- msgstr "Die Begriffs-ID des Veranstaltungsschlagwortes fehlt oder existiert nicht."
872
 
873
  #: src/Tribe/REST/V1/Endpoints/Single_Tag.php:107
874
  msgid "Deletes an event tag and returns its data"
@@ -892,7 +917,7 @@ msgstr "Die ID für den Schlagwortbegriff der Veranstaltungen fehlt."
892
 
893
  #: src/Tribe/REST/V1/Endpoints/Single_Tag.php:66
894
  msgid "Returns the data of the event tag with the specified term ID"
895
- msgstr "Zeigt die Daten zu dem Schlagwort bei Veranstaltungen mit der angegebenen Begriffs-ID"
896
 
897
  #: src/Tribe/REST/V1/Endpoints/Single_Tag.php:37
898
  msgid "The event tag slug"
@@ -941,7 +966,7 @@ msgstr "Die Beitrags ID des Veranstalters"
941
 
942
  #: src/Tribe/REST/V1/Endpoints/Single_Organizer.php:184
943
  msgid "The organizer with the specified ID could not be deleted."
944
- msgstr "Der Veranstalter mit dieser ID kann nicht gelöscht werden."
945
 
946
  #: src/Tribe/REST/V1/Endpoints/Single_Organizer.php:181
947
  msgid "The organizer with the specified ID has been deleted already."
@@ -949,7 +974,7 @@ msgstr "Der Veranstalter mit dieser ID wurde schon gelöscht."
949
 
950
  #: src/Tribe/REST/V1/Endpoints/Single_Organizer.php:178
951
  msgid "The current user cannot delete the organizer with the specified ID."
952
- msgstr "Der aktuelle Benutzer kann den Veranstalter mit dieser ID nicht löschen"
953
 
954
  #: src/Tribe/REST/V1/Endpoints/Single_Organizer.php:175
955
  msgid "The organizer post ID is missing or does not exist."
@@ -961,11 +986,11 @@ msgstr "Löscht einen Veranstalter und gibt seine Daten zurück"
961
 
962
  #: src/Tribe/REST/V1/Endpoints/Single_Organizer.php:161
963
  msgid "The user is not authorized to create organizers"
964
- msgstr "Gibt die Daten des erstellten Veranstalters zurück"
965
 
966
  #: src/Tribe/REST/V1/Endpoints/Single_Organizer.php:152
967
  msgid "Returns the data of the created organizer"
968
- msgstr "Zeigt die Daten des eingegebenen Veranstalters"
969
 
970
  #: src/Tribe/REST/V1/Endpoints/Single_Organizer.php:137
971
  msgid "The organizer post ID is missing."
@@ -973,19 +998,19 @@ msgstr "Die Beitrags-ID des Veranstalters fehlt."
973
 
974
  #: src/Tribe/REST/V1/Endpoints/Single_Organizer.php:131
975
  msgid "Returns the data of the organizer with the specified post ID"
976
- msgstr "Gibt die Daten des erstellten Veranstalter zurück"
977
 
978
  #: src/Tribe/REST/V1/Endpoints/Single_Event_Slug.php:36
979
  msgid "the event post name"
980
  msgstr "Der Beitragsname der Veranstaltung"
981
 
982
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:341
983
  msgid "The event organizer IDs or data"
984
  msgstr "Die ID oder die Daten des Veranstalters für diese Veranstaltung"
985
 
986
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:333
987
  msgid "The event venue ID or data"
988
- msgstr "Die ID oder Daten zum Veranstaltungsort "
989
 
990
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:324
991
  msgid "Whether the event should be featured on the site or not"
@@ -1001,7 +1026,7 @@ msgstr "Ob Veranstaltungen in der Kalenderansicht versteckt werden sollen oder n
1001
 
1002
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:309
1003
  msgid "Whether the event should show a map link or not"
1004
- msgstr "Ob das Ereignis einen Kartenlink anzeigen soll oder nicht"
1005
 
1006
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:304
1007
  msgid "Whether the event should show a map or not"
@@ -1065,7 +1090,7 @@ msgstr "Die Veranstaltung mit der angegebenen ID wurde bereits gelöscht."
1065
 
1066
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:171
1067
  msgid "The current user cannot delete the event with the specified ID."
1068
- msgstr "Der aktuelle Nutzer kann die Veranstaltung mit der angegebenen ID nicht löschen.en."
1069
 
1070
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:168
1071
  msgid "The event post ID is missing or does not exist."
@@ -1089,23 +1114,23 @@ msgstr "Zeigt die Daten der aktualisierten Veranstaltung"
1089
 
1090
  #: src/Tribe/REST/V1/Endpoints/Single_Category.php:148
1091
  msgid "the event category term ID"
1092
- msgstr "Die ID der Veranstaltungskategorie"
1093
 
1094
  #: src/Tribe/REST/V1/Endpoints/Single_Category.php:128
1095
  msgid "The event category with the specified term ID could not be deleted."
1096
- msgstr "Die Veranstaltungskategorie mit der angegebenen Begriffs-ID konnte nicht gelöscht werden."
1097
 
1098
  #: src/Tribe/REST/V1/Endpoints/Single_Category.php:125
1099
  msgid "The event category with the specified term ID has been deleted already."
1100
- msgstr "Die Veranstaltungskategorie mit der angegebenen Begriffs-ID wurde schon gelöscht."
1101
 
1102
  #: src/Tribe/REST/V1/Endpoints/Single_Category.php:122
1103
  msgid "The current user cannot delete the event category with the specified term ID."
1104
- msgstr "Der aktuelle Benutzer kann nicht die Veranstaltungskategorie mit der angegebenen Begriffs-ID löschen."
1105
 
1106
  #: src/Tribe/REST/V1/Endpoints/Single_Category.php:119
1107
  msgid "The event category term ID is missing or does not exist."
1108
- msgstr "Die angegebene ID der Veranstaltungskategorie fehlt."
1109
 
1110
  #: src/Tribe/REST/V1/Endpoints/Single_Category.php:113
1111
  msgid "Deletes an event category and returns its data"
@@ -1133,7 +1158,7 @@ msgstr "Zeigt die Daten der aktualisierten Veranstaltungskategorie"
1133
 
1134
  #: src/Tribe/REST/V1/Endpoints/Single_Category.php:81
1135
  msgid "An event category with the specified term ID does not exist."
1136
- msgstr "Eine Veranstaltungskategorie mit der eingegebenen Begriffs-ID existiert nicht."
1137
 
1138
  #: src/Tribe/REST/V1/Endpoints/Single_Category.php:78
1139
  msgid "The event category term ID is missing."
@@ -1141,7 +1166,7 @@ msgstr "Die ID der Veranstaltungskategorie fehlt."
1141
 
1142
  #: src/Tribe/REST/V1/Endpoints/Single_Category.php:72
1143
  msgid "Returns the data of the event category with the specified term ID"
1144
- msgstr "Zeigt die Daten zu der Veranstaltungskategorie mit der angegebenen Begriffs-ID"
1145
 
1146
  #: src/Tribe/REST/V1/Endpoints/Single_Category.php:37
1147
  #: src/Tribe/REST/V1/Endpoints/Single_Category.php:43
@@ -1158,7 +1183,7 @@ msgstr "Der Name der Veranstaltungskategorie"
1158
 
1159
  #: src/Tribe/REST/V1/Endpoints/Base.php:38
1160
  msgid "No description provided"
1161
- msgstr "Keine Beschreibung vorhanden"
1162
 
1163
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:221
1164
  msgid "Venues should have upcoming events associated to them"
@@ -1178,11 +1203,11 @@ msgstr "Veranstaltungsorte sollten die angegebene Zeichenkette im Titel, in der
1178
 
1179
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:199
1180
  msgid "The number of venues to return on each page"
1181
- msgstr "Die Anzahl der Orte, die auf jeder Seite zurückgegeben werden"
1182
 
1183
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:53
1184
  msgid "Returns all the venues matching the search criteria"
1185
- msgstr "Gibt alle Orte zurück, die den Suchkriterien entsprechen"
1186
 
1187
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:118
1188
  msgid "The number of event tags to return on each page"
@@ -1194,13 +1219,13 @@ msgstr "Keine Veranstaltungsschlagworte stimmen mit der Abfrage überein oder di
1194
 
1195
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:45
1196
  msgid "Returns all the event tags matching the search criteria"
1197
- msgstr "Zeigt alle Veranstaltungs-Schlagwörter zu diesem Suchbegriff"
1198
 
1199
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:233
1200
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:230
1201
  #: src/Tribe/REST/V1/Endpoints/Single_Organizer.php:262
1202
  msgid "The organizer post status"
1203
- msgstr "Der Veranstalter Beitragsstatus"
1204
 
1205
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:224
1206
  msgid "Organizers should have upcoming events associated to them"
@@ -1226,34 +1251,34 @@ msgstr "Die Anzahl der Veranstalter, die pro Seite zurückgegeben werden sollen"
1226
  msgid "Returns all the organizers matching the search criteria"
1227
  msgstr "Gibt alle Veranstalter zurück, die den Suchkriterien entsprechen"
1228
 
1229
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:478
1230
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1231
  msgstr "Dafür ist Events Calendar Pro erforderlich. Veranstaltungen, die über den Längengrad des Veranstaltungsortes gefiltert werden sollen, müssen eine geoloc_lng beinhalten"
1232
 
1233
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:472
1234
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1235
  msgstr "Dafür ist Events Calendar Pro erforderlich. Veranstaltungen, die über den Breitengrad des Veranstaltungsortes gefiltert werden sollen, müssen eine geoloc_lng beinhalten"
1236
 
1237
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:466
1238
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1239
  msgstr "Dafür ist Events Calendar Pro erforderlich. Veranstaltungen können nur gefiltert werden, wenn der Veranstaltungsort entsprechende Geolocationdaten beinhaltet."
1240
 
1241
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:461
1242
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1243
  msgid "The event post status"
1244
  msgstr "Der Beitragsstatus der Veranstaltung"
1245
 
1246
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1247
  msgid "Events should be filtered by their featured status"
1248
  msgstr "Veranstaltungen sollten über den hervorgehobenen Status gefiltert werden"
1249
 
1250
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:446
1251
  msgid "Events should be assigned one of the specified organizer IDs"
1252
  msgstr "Veranstaltungen sollten einer spezifischen Veranstalter ID zugeordnet werden"
1253
 
1254
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
1255
  msgid "Events should be assigned one of the specified venue IDs"
1256
- msgstr "Veranstaltungen sollten einer spezifischen Veranstaltungsort ID zugeordnet werden"
1257
 
1258
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:164
1259
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:175
@@ -1272,7 +1297,7 @@ msgstr "Das Ergebnis wird auf Bedingungen beschränkt, die einem bestimmten Beit
1272
 
1273
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:145
1274
  msgid "Limit result set to terms assigned to a specific parent"
1275
- msgstr "Das Ergebnis auf Bedingungen beschränken, die einem bestimmten übergeordneten Element zugewiesen sind"
1276
 
1277
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:138
1278
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:155
@@ -1292,7 +1317,7 @@ msgstr "Sortierung der Attribute auf- oder absteigend"
1292
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:120
1293
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:137
1294
  msgid "Limit result set to specific IDs"
1295
- msgstr "Die Veranstaltung auf bestimmte IDs beschränken"
1296
 
1297
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:113
1298
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:130
@@ -1302,7 +1327,7 @@ msgstr "Sicherstellen, dass bestimmte IDs aus der Ergebnismenge ausgeschlossen w
1302
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:107
1303
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:124
1304
  msgid "Limit results to those matching a string"
1305
- msgstr "Die Veranstaltungen auf diejenigen beschränken, die mit einer Zeichenfolge übereinstimmen"
1306
 
1307
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:101
1308
  msgid "The number of event categories to return on each page"
@@ -1310,7 +1335,7 @@ msgstr "Die Anzahl der Veranstaltungkategorien, die pro Seite zurückgegeben wer
1310
 
1311
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:28
1312
  msgid "Returns all the event categories matching the search criteria"
1313
- msgstr "Keine Ereigniskategorien stimmen mit der Abfrage überein oder die angeforderte Seite wurde nicht gefunden."
1314
 
1315
  #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:136
1316
  msgid "The venue geo longitude"
@@ -1334,7 +1359,7 @@ msgstr "Die Titelform des Veranstalters"
1334
 
1335
  #: src/Tribe/REST/V1/Documentation/Organizer_Definition_Provider.php:57
1336
  msgid "The organizer status"
1337
- msgstr "Der Veranstalter Status"
1338
 
1339
  #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:81
1340
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:244
@@ -1345,48 +1370,48 @@ msgstr "Die Titelform der Veranstaltung"
1345
  msgid "The event status"
1346
  msgstr "Der Status der Veranstaltung"
1347
 
1348
- #: src/Tribe/Linked_Posts.php:1126
1349
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1350
  msgid "Create or Find %s"
1351
  msgstr "Erstelle oder finde %s"
1352
 
1353
- #: src/Tribe/Linked_Posts.php:1117
1354
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1355
  msgid "Find %1$s %2$s"
1356
  msgstr "Finde %1$s %2$s"
1357
 
1358
- #: src/Tribe/Linked_Posts.php:1108
1359
  msgid "Find a Venue"
1360
  msgstr "Finde einen Veranstaltungsort"
1361
 
1362
- #: src/Tribe/Linked_Posts.php:1107
1363
  msgid "Create or Find a Venue"
1364
- msgstr "Erstelle oder finde einen Ort"
1365
 
1366
- #: src/Tribe/Linked_Posts.php:1100
1367
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1368
  msgid "Create or Find %s"
1369
  msgstr "Erstelle oder finde %s"
1370
 
1371
- #: src/Tribe/Linked_Posts.php:1091
1372
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1373
  msgid "Find %1$s %2$s"
1374
  msgstr "Finde %1$s %2$s"
1375
 
1376
- #: src/Tribe/Linked_Posts.php:1080
1377
  msgid "Find an Organizer"
1378
  msgstr "Finde einen Veranstalter"
1379
 
1380
- #: src/Tribe/Linked_Posts.php:1079
1381
  msgid "Create or Find an Organizer"
1382
- msgstr "Erstelle oder finde einen Veranstalter"
1383
 
1384
- #: src/Tribe/Linked_Posts.php:1072
1385
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1386
  msgid "Create or Find %s"
1387
  msgstr "Erstelle oder finde %s"
1388
 
1389
- #: src/Tribe/Linked_Posts.php:1063
1390
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1391
  msgid "Find %1$s %2$s"
1392
  msgstr "Finde %1$s %2$s"
@@ -1397,7 +1422,7 @@ msgstr "Ein Datensatz existiert bereits mit diesen Einstellungen, %1$s."
1397
 
1398
  #: src/Tribe/Aggregator/Tabs/Abstract.php:144
1399
  msgid "click here to edit it"
1400
- msgstr "zum bearbeiten hier klicken"
1401
 
1402
  #: src/Tribe/Aggregator/Settings.php:443
1403
  msgid "Do not limit (not recommended)"
@@ -1414,12 +1439,12 @@ msgstr "Nach Datumsbereich"
1414
  #: src/Tribe/Aggregator/Service.php:708
1415
  msgctxt "The placeholder is for the localized version of the iCal UID specification link"
1416
  msgid "Some events at the requested source are missing the UID attribute required by the iCalendar Specification. One-Time and ICS File imports are allowed but successive imports will create duplicated events on your site. Please contact the source provider to fix the UID issue; linking them to %s may help them more quickly resolve their feed's UID issue."
1417
- msgstr "Bei einigen Veranstaltung der angeforderten Quelle fehlt das UID-Attribut, das für die iCalendar-Spezifikation erforderlich ist. Einmalige und ICS-Datei-Importe sind erlaubt, aber aufeinanderfolgende Importe erstellen doppelte Veranstaltungen auf Ihrer Website. Bitte an den Quellanbieter wenden, um das UID-Problem zu beheben. Durch die Verknüpfung mit %s kann das UID-Problem Deines Feeds ggfs. schneller behoben werden."
1418
 
1419
  #: src/Tribe/Aggregator/Service.php:700
1420
  msgctxt "The placeholder is for the localized version of the iCal UID specification link"
1421
  msgid "Some events at the requested source are missing the UID attribute required by the iCalendar Specification. Creating a scheduled import would generate duplicate events on each import. Instead, please use a One-Time import or contact the source provider to fix the UID issue; linking them to %s may help them more quickly resolve their feed's UID issue."
1422
- msgstr "Bei einigen Veranstaltungen der angeforderten Quelle fehlt das UID-Attribut, das für die iCalendar-Spezifikation erforderlich ist. Beim Erstellen eines geplanten Imports würden bei jedem Import doppelte Ereignisse generiert. Verwende stattdessen einen Einmalimport, oder wende Dich an den Quellanbieter, um das UID-Problem zu beheben. Durch die Verknüpfung mit %s kannst Du das UID-Problem Deines Feeds schneller beheben."
1423
 
1424
  #: src/Tribe/Aggregator/Service.php:668
1425
  msgid "the UID part of the iCalendar Specification"
@@ -1427,23 +1452,23 @@ msgstr "der UID-Teil der iCalendar-Spezifikation"
1427
 
1428
  #: src/Tribe/Aggregator/Page.php:87
1429
  msgid "A warning was generated while fetching the results from your import:"
1430
- msgstr "Beim Abrufen der Veranstaltungen des Imports wurde eine Warnung erzeugt:"
1431
 
1432
  #: common/src/admin-views/tribe-options-help.php:20
1433
  msgid "Check out our %s for developers."
1434
- msgstr "Sieh Dir unsere %s für Entwickler an."
1435
 
1436
  #: common/src/admin-views/tribe-options-help.php:18
1437
  msgid "Want to dive deeper?"
1438
- msgstr "Willst Du tiefer eintauchen?"
1439
 
1440
  #: common/src/admin-views/tribe-options-display.php:28
1441
  msgid "The following three fields accept the date format options available to the PHP %1$s function. <a href=\"%2$s\" target=\"_blank\">Learn how to make your own date format here</a>."
1442
- msgstr "Die folgenden drei Felder akzeptieren die Datumsformat Optionen, die für die PHP %1$s-Funktion verfügbar sind. <a href=\"%2$s\" target=\"_blank\">Hier erfährst Du, wie Du Dein eigenes Datumsformat erstellen kannst</a>."
1443
 
1444
  #: common/src/Tribe/Validate.php:545
1445
  msgid "%s must be an email address."
1446
- msgstr "%s muss eine E-Mail Adresse sein."
1447
 
1448
  #: common/src/Tribe/Languages/Locations.php:252
1449
  msgid "Sint Maarten"
@@ -1482,20 +1507,20 @@ msgstr "Eine Liste von Links zu den term own, Archiven und der übergeordneten R
1482
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1483
  msgstr "Die E-Mail Adresse wird auf der Website verschleiert, um sie gegen Spam zu schützen."
1484
 
1485
- #: src/Tribe/Main.php:997
1486
  msgid "edit Events settings."
1487
  msgstr "bearbeite Veranstaltungseinstellungen."
1488
 
1489
- #: src/Tribe/Main.php:988
1490
  msgid "Edit the %s slug"
1491
- msgstr "Bearbeite den %s Slug (Permanlink)"
1492
 
1493
- #: src/Tribe/Linked_Posts.php:1049
1494
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1495
  msgid "an"
1496
  msgstr "einen"
1497
 
1498
- #: src/Tribe/Linked_Posts.php:1042
1499
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1500
  msgid "a"
1501
  msgstr "einen"
@@ -1503,7 +1528,7 @@ msgstr "einen"
1503
  #. translators: %s: post title
1504
  #: src/Tribe/Ignored_Events.php:396
1505
  msgid "Hide and Ignore &#8220;%s&#8221;"
1506
- msgstr "&#8222;%s&#8220; verstecken und ignorieren"
1507
 
1508
  #: common/src/Tribe/Main.php:251
1509
  msgid "Clear Selection."
@@ -1515,7 +1540,7 @@ msgstr "Alle Seiten selektieren"
1515
 
1516
  #: common/src/Tribe/Main.php:249
1517
  msgid "All items on this page were selected. "
1518
- msgstr "Alle Objekte auf dieser Seite wurden selektiert"
1519
 
1520
  #: src/admin-views/aggregator/tabs/import-form.php:101
1521
  msgid "Add more sources"
@@ -1523,11 +1548,11 @@ msgstr "Weitere Quellen hinzufügen"
1523
 
1524
  #: src/Tribe/Aggregator/Service.php:675
1525
  msgid "No upcoming Facebook events found."
1526
- msgstr "Keine anstehenden Facebook-Veranstaltungen gefunden."
1527
 
1528
  #: src/Tribe/Aggregator/Service.php:202
1529
  msgid "Event Aggregator server has blocked your request. Please try your import again later or contact support to know why."
1530
- msgstr "Event Aggregator Server hat Deine Anfrage gesperrt. Bitte versuche es später erneut zu importieren oder wende Dich an den Support, um die Ursache zu klären."
1531
 
1532
  #: src/Tribe/Customizer/General_Theme.php:311
1533
  msgid "Featured Highlight Color"
@@ -1537,25 +1562,21 @@ msgstr "Farbe für hervorgehobene Veranstaltungen"
1537
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1538
  msgstr "Die Antwort des Event Aggregator Servers war nicht eindeutig und konnte nicht verstanden werden. Bitte erneut versuchen."
1539
 
1540
- #: common/src/Tribe/Plugins_API.php:37
1541
- msgid "Import events from across the web! Event Aggregator makes it easy to run scheduled or manual imports from Facebook, Meetup, Eventbrite, Google Calendar, and iCalendar, along with uploads from CSV and ICS files. You can also import directly from other sites running The Events Calendar thanks to our built-in REST API support."
1542
- msgstr "Importiere Veranstaltungen aus dem ganzen Web! Der Event Aggregator ermöglicht es automatisch und manuell Veranstaltungen aus Facebook, Meetup, Google Calendar, and iCalendar zu importieren. Ebenso sind Uploads via CSV und ICS Dateien möglich. Du kannst auch Veranstaltungen direkt aus anderen Websites dank der REST API importieren."
1543
-
1544
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1545
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1546
- msgstr "Der Veranstaltungskalender konnte keine WPML-Standard-Konfigurationsdatei schreiben: Bitte erstelle die Datei manuell."
1547
 
1548
  #: common/src/Tribe/Plugins_API.php:94
1549
  msgid "Accept user-submitted events on your site! With Community Events, you can accept public submissions or require account sign-on. Settings give you the options to save as a draft or publish automatically, enable categories and tags, and choose whether users can edit/manage their own events or simply submit. Best of all - setup is easy! Just activate, configure the options, and off you go."
1550
- msgstr "Akzeptiere Veranstaltungen von Deinen Nutzern auf Deiner Seite! Mit Community Events Kannst Du Übermittlungen öffentlich oder per vorheriger Anmeldung akzeptieren. Die übermittelten Veranstaltungen können als Entwürfe gespeichert oder automatisch veröffentlicht werden. Du kannst außerdem Kategorien und Schlagworte verwenden und wählen, ob Benutzer ihre eigenen Veranstaltungen bearbeiten oder verwalten können. Das Beste von allem - das Setup ist einfach! Einfach aktivieren, die Optionen konfigurieren und los geht's."
1551
 
1552
  #: common/src/Tribe/Plugins_API.php:60
1553
  msgid "Event Tickets provides a simple way for visitors to RSVP to your events. As a standalone plugin, it enables you to add RSVP functionality to posts or pages. When paired with The Events Calendar, you can add that same RSVP functionality directly to your event listings."
1554
- msgstr "Event Tickets bieten eine einfache Möglichkeit für Besucher sich zu einer Veranstaltungen zu registrieren. Als eigenständiges Plugin ermöglicht es, RSVP-Funktionalität zu Beiträgen oder Seiten hinzuzufügen. Wenn Du den Events Calendar gleichzeitig nutzt, kannst Du die gleiche RSVP-Funktionalität direkt zu Deinen Veranstaltungslisten hinzufügen."
1555
 
1556
  #: common/src/Tribe/Plugins_API.php:28
1557
  msgid "Create an events calendar and manage it with ease. The Events Calendar plugin provides professional-level quality and features backed by a team you can trust."
1558
- msgstr "Erstelle einen Veranstaltungskalender und verwalte ihn mit Leichtigkeit. Das Events Calendar-Plugin bietet professionelle Qualität und Funktionen, die von einem Team unterstützt werden, dem Du vertrauen kannst."
1559
 
1560
  #: common/src/Tribe/PUE/Checker.php:1095
1561
  msgid "There is a new version of %1$s available. %2$s"
@@ -1563,7 +1584,7 @@ msgstr "Es gibt eine neue Version von %1$s. %2$s"
1563
 
1564
  #: common/src/Tribe/PUE/Checker.php:1084
1565
  msgid "Update now to version %s."
1566
- msgstr "Aktualisiere jetzt auf Version %s."
1567
 
1568
  #: common/src/Tribe/Ajax/Dropdown.php:243
1569
  msgid "The \"%s\" source is invalid and cannot be reached on \"%s\" instance."
@@ -1585,31 +1606,31 @@ msgstr "Kann keine Begriffe ohne Taxonomie suchen"
1585
  msgid "The event WordPress post ID"
1586
  msgstr "Die Wordpress Beitrags ID der Veranstaltung"
1587
 
1588
- #: src/Tribe/Aggregator/Record/Abstract.php:362
1589
  msgid "Something went wrong while inserting the record in the database."
1590
  msgstr "Beim Einfügen des Datensatzes in der Datenbank ist etwas schief gegangen."
1591
 
1592
  #: common/src/Tribe/PUE/Notices.php:340
1593
  msgid "You can always check the status of your licenses by logging in to %1$syour account on theeventscalendar.com%2$s."
1594
- msgstr "Du kannst den Status Deiner Lizenz jederzeit überprüfen, in dem Du Dich auf %1$s in Deinem Account auf theeventscalendar.com%2$s einloggst."
1595
 
1596
  #: common/src/Tribe/PUE/Notices.php:225
1597
  msgid "It looks like you're using %1$s, but the license key is invalid. Please download the latest version %2$sfrom your account%3$s."
1598
  msgid_plural "It looks like you're using %1$s, but the license keys are invalid. Please download the latest versions %2$sfrom your account%3$s."
1599
- msgstr[0] "Anscheinend verwendest Du %1$s, aber der Lizenzschlüssel ist ungültig. Bitte laden die neuste Version %2$svon Deinem Konto%3$s herunter."
1600
- msgstr[1] "Anscheinend verwendest Du %1$s, aber die Lizenzschlüssel sind ungültig. Bitte laden die neuste Versionen %2$svon Deinem Konto%3$s herunter."
1601
 
1602
  #: common/src/Tribe/PUE/Checker.php:976
1603
  msgid "Please refresh the page and try your request again."
1604
- msgstr "Bitte aktualisiere die Seite und versuchen es erneut."
1605
 
1606
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:28
1607
  msgid "The image WordPress post ID"
1608
  msgstr "Die Wordpress Beitrags ID des Bildes"
1609
 
1610
  #: common/src/Tribe/Plugins_API.php:129
1611
  msgid "Take your image widgets to the next level with Image Widget Plus! We've taken the simple functionality of our basic Image Widget and amped it up with several popular feature requests - multiple image support, slideshow, lightbox, and random image - all backed by a full year of premium support."
1612
- msgstr "Nutze Image Widget Plus, um Deine Bilder noch eleganter zu präsentieren. Nutze Slideshows, Lightbox, Unterstützung mehrer Bilder oder die Anzeige zufälliger Bilder - alles mit einem Jahr Unterstützung durch unseren Premium Support."
1613
 
1614
  #: common/src/Tribe/Plugins_API.php:125
1615
  msgid "Image Widget Plus"
@@ -1633,11 +1654,11 @@ msgstr "Beim Importieren von einer Website, die den Veranstaltungskalender verwe
1633
 
1634
  #: src/admin-views/aggregator/origins/url.php:84
1635
  msgid "Enter the url for the calendar, website, or event you would like to import. Event Aggregator will attempt to import events at that location."
1636
- msgstr "Gebe die URL für den Kalender, die Website oder die Veranstaltung ein, die Du importieren möchtest. Event Aggregator wird versuchen, Veranstaltungen von dieser Quelle zu importieren."
1637
 
1638
  #: src/Tribe/REST/V1/Messages.php:23
1639
  msgid "The 'categories' parameter contains invalid category slugs or IDs"
1640
- msgstr "Der Parameter 'Kategorien' enthält ungültige Kategorie-Slugs oder IDs"
1641
 
1642
  #: src/Tribe/REST/V1/Messages.php:14
1643
  msgid "The requested post ID does not exist or is not an event"
@@ -1663,17 +1684,17 @@ msgstr "Die angeforderte Beitrags-ID existiert nicht oder ist kein Veranstalter"
1663
  msgid "The event last modification date in UTC time"
1664
  msgstr "Das letzte Änderungsdatum in UTC-Zeit"
1665
 
1666
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:403
1667
  msgid "Events should start after the specified date"
1668
  msgstr "Veranstaltungen sollten nach dem angegebenen Datum beginnen"
1669
 
1670
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:410
1671
  msgid "Events should start before the specified date"
1672
  msgstr "Veranstaltungen sollten vor dem angegebenen Datum beginnen"
1673
 
1674
  #: src/Tribe/REST/V1/Endpoints/Single_Tag.php:75
1675
  msgid "An event tag with the specified term ID does not exist."
1676
- msgstr "Eine Veranstaltung mit der angegeben ID existiert nicht"
1677
 
1678
  #: src/Tribe/REST/V1/Endpoints/Swagger_Documentation.php:91
1679
  msgid "The Events Calendar REST API"
@@ -1703,13 +1724,13 @@ msgstr "Der Parameter 'search' muss eine Zeichenkette sein"
1703
  msgid "the event post ID"
1704
  msgstr "Die Beitrags-ID der Veranstaltung"
1705
 
1706
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:416
1707
  msgid "Events should contain the specified string in the title or description"
1708
- msgstr "Veranstaltungen sollten die angegebene Zeichenkette im Titel oder der Beschreibung enthalten"
1709
 
1710
  #: src/Tribe/REST/V1/Messages.php:24
1711
  msgid "The 'tags' parameter contains invalid tag slugs or IDs"
1712
- msgstr "Der 'tags' Parameter enthält ungültige Schlagwörter oder IDs"
1713
 
1714
  #: src/Tribe/REST/V1/Messages.php:25
1715
  msgid "The requested event archive page does not exist"
@@ -1723,7 +1744,7 @@ msgstr "ungefähr um"
1723
  #: src/admin-views/aggregator/origins/limit.php:19
1724
  #: src/admin-views/aggregator/origins/url.php:89
1725
  msgid "Event Aggregator will try to fetch events starting within the next %s from the current date or the specified date;"
1726
- msgstr "Event Aggregator wird versuchen, Veranstaltungen, die innerhalb %s ab dem aktuellen Datum oder dem angegebenen Datum beginnen, abzurufen;"
1727
 
1728
  #: src/admin-views/aggregator/origins/url.php:83
1729
  msgid "example.com/"
@@ -1797,7 +1818,7 @@ msgstr "Die abgekürzte Zeitzonen-Zeichenkette der Veranstaltung"
1797
 
1798
  #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:138
1799
  msgid "The event cost including the currency symbol"
1800
- msgstr "Die Veranstaltungskosten inklusive der Währung"
1801
 
1802
  #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:142
1803
  msgid "The event cost details"
@@ -1968,7 +1989,7 @@ msgstr "Event Aggregator kann keine Veranstaltungen von dieser Seite importieren
1968
 
1969
  #: src/Tribe/REST/V1/EA_Messages.php:11
1970
  msgid "The Events Calendar is API is not providing the site origin correctly."
1971
- msgstr "Die Events Calendar REST API stellt den Websiteursprung nicht korrekt bereit."
1972
 
1973
  #: src/Tribe/REST/V1/EA_Messages.php:14
1974
  msgid "Events could not be imported. The URL provided could be reached and has The Events Calendar REST API enabled, but returned malformed data."
@@ -1999,31 +2020,31 @@ msgid "The requested URL does not have any upcoming and published events matchin
1999
  msgstr "Die angeforderte URL hat keine anstehenden und veröffentlichten Veranstaltungen, die den Suchkriterien entsprechen."
2000
 
2001
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2002
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:388
2003
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2004
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2005
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2006
  msgid "The archive page to return"
2007
  msgstr "Die zurückzugebende Archivseite"
2008
 
2009
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:396
2010
  msgid "The number of events to return on each page"
2011
  msgstr "Die Anzahl der Veranstaltungen, die auf jeder Seite zurückgegeben werden sollen"
2012
 
2013
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:422
2014
  msgid "Events should be assigned one of the specified categories slugs or IDs"
2015
- msgstr "Veranstaltungen sollten einer der angegebenen Kategorien oder IDs zugewiesen werden."
2016
 
2017
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:430
2018
  msgid "Events should be assigned one of the specified tags slugs or IDs"
2019
  msgstr "Veranstaltungen sollten eines der angegebenen Schlagwörter oder IDs zugewiesen werden."
2020
 
2021
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:358
2022
  msgid "Returns all the upcoming events matching the search criteria"
2023
  msgstr "Gibt alle zukünftigen Veranstaltungen, die dem Suchkriterium entsprechen, zurück"
2024
 
2025
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:36
2026
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:366
2027
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:64
2028
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:53
2029
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:61
@@ -2060,7 +2081,7 @@ msgstr "Der Import läuft monatlich am Tag"
2060
 
2061
  #: src/admin-views/aggregator/origins/refine.php:23
2062
  msgid "Use the filters to narrow down which events are fetched from this site."
2063
- msgstr "Verwende die Filter, um zu einzugrenzen, welche Veranstaltungen von dieser Seite abgerufen werden."
2064
 
2065
  #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:45
2066
  msgid "The event creation date in UTC time"
@@ -2139,7 +2160,7 @@ msgstr "Event Aggregator kann keine Veranstaltungen importieren, da diese Websit
2139
 
2140
  #: src/Tribe/REST/V1/EA_Messages.php:12
2141
  msgid "Events could not be imported. Event Aggregator does not yet support events from that URL. We have noted your request and will review it for support in the future."
2142
- msgstr "Veranstaltungen konnten nicht importiert werden. Event Aggregator unterstützt noch keine Veranstaltungen von dieser URL. Wir haben Deine Anfrage festgestellt und werden sie in Zukunft für die Unterstützung überprüfen."
2143
 
2144
  #: src/Tribe/REST/V1/EA_Messages.php:13
2145
  msgid "Events could not be imported. The Events Calendar REST API is disabled on the requested URL."
@@ -2238,15 +2259,15 @@ msgstr "Drei Monate"
2238
  msgid "three months"
2239
  msgstr "drei Monate"
2240
 
2241
- #: src/Tribe/Aggregator/Tabs/New.php:373
2242
  msgid "%1$d new event tag was created."
2243
  msgid_plural "%1$d new event tags were created."
2244
  msgstr[0] "%1$d neues Veranstaltungs - Schlagwort wurde erstellt."
2245
  msgstr[1] "%1$d neue Veranstaltungs - Schlagwörter wurden erstellt."
2246
 
2247
- #: src/Tribe/Aggregator/Tabs/New.php:377
2248
  msgid "View your event tags"
2249
- msgstr "Die Schlagwörter Deiner Veranstaltung anzeigen"
2250
 
2251
  #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:28
2252
  msgid "The event ID used to globally identify in Event Aggregator"
@@ -2287,7 +2308,7 @@ msgstr "Veranstaltungen importieren, aber lokale Änderungen in Veranstaltungsfe
2287
 
2288
  #: common/src/Tribe/PUE/Checker.php:497
2289
  msgid "%1$sBuy a license%2$s for the Event Aggregator service to access additional import features."
2290
- msgstr "%1$sKaufe eine Lizenz%2$s für den Event Aggregator Service, um weitere Importfunktionen freizuschalten."
2291
 
2292
  #: src/functions/template-tags/loop.php:218
2293
  msgctxt "day_view"
@@ -2303,7 +2324,7 @@ msgstr "%1$s für %2$s"
2303
  msgid "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2304
  msgstr "Ändere den aktuellen Standard von 3 Veranstaltungen pro Tag in der Monatsübersicht. Um kein Limit festzulegen gib bitte -1 ein. Achtung! Es können Performance Probleme auftreten wenn zu viele Veranstaltungen an einem Tag stattfinden <a href=\"%s\">Mehr lesen</a>."
2305
 
2306
- #: src/Tribe/Main.php:765
2307
  msgctxt "all events slug"
2308
  msgid "all"
2309
  msgstr "alle"
@@ -2342,9 +2363,9 @@ msgstr "Der Begriffsname "
2342
 
2343
  #: common/src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:24
2344
  msgid "The WordPress term ID"
2345
- msgstr "Die WordPress Begriffs-ID"
2346
 
2347
- #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:36
2348
  msgid "The link to the image in the specified size on the site"
2349
  msgstr "Der Link auf das Bild in der angegebenen Größe auf der Website"
2350
 
@@ -2360,19 +2381,19 @@ msgstr "Die Bildhöhe in Pixel in der angegebenen Größe"
2360
  msgid "The image width in pixels in the specified size"
2361
  msgstr "Die Bildbreite in Pixel in der angegebenen Größe"
2362
 
2363
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:44
2364
  msgid "The details about each size available for the image"
2365
  msgstr "Die Details zu jeder Größe für das Bild"
2366
 
2367
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:40
2368
  msgid "The image natural height in pixels"
2369
  msgstr "Die Bildhöhe in Pixel"
2370
 
2371
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:36
2372
  msgid "The image natural width in pixels"
2373
  msgstr "Die Bildbreite in Pixel"
2374
 
2375
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:32
2376
  msgid "The image file extension"
2377
  msgstr "Die Bild Dateierweiterung"
2378
 
@@ -2380,7 +2401,7 @@ msgstr "Die Bild Dateierweiterung"
2380
  msgid "The venue WordPress post ID"
2381
  msgstr "Die WordPress Post ID des Veranstaltungsortes"
2382
 
2383
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:24
2384
  msgid "The URL to the full size version of the image"
2385
  msgstr "Die URL zum Bildes mit der höchsten Auflösung"
2386
 
@@ -2420,7 +2441,7 @@ msgstr "Die Position der Währung beim Eintrittspreis"
2420
  msgid "The cost currency symbol"
2421
  msgstr "Die Währung des Eintrittspreises"
2422
 
2423
- #: src/Tribe/Main.php:4434
2424
  msgid "Keyword"
2425
  msgstr "Begriff"
2426
 
@@ -2495,12 +2516,12 @@ msgstr "Event Aggregator Steuerung"
2495
  msgid "Export Events"
2496
  msgstr "Veranstaltungen exportieren"
2497
 
2498
- #: src/Tribe/Main.php:764
2499
  msgctxt "featured events slug"
2500
  msgid "featured"
2501
  msgstr "hervorgehoben"
2502
 
2503
- #: src/Tribe/Linked_Posts.php:1005
2504
  msgid "Create: <b><%= term %></b>"
2505
  msgstr "Erstelle: <b><%= term %></b>"
2506
 
@@ -2649,182 +2670,184 @@ msgstr "Diese Einstellungen wirken sich auf alle listenänliche Ansichten inklus
2649
  msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2650
  msgstr "Hier gewählte Optionen überschreiben die Einstellungen in \"Allgemeine Einstellungen\" und \"Globale Elemente\"."
2651
 
2652
- #: src/Tribe/Asset/Dynamic.php:77
2653
  msgid "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2654
  msgstr "Diese ganztägige Veranstaltung beginnt am %%startdatenoyear%% und endet am %%enddatewithyear%%."
2655
 
2656
- #: src/Tribe/Asset/Dynamic.php:76
2657
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2658
  msgstr "Diese Veranstaltung beginnt um %%starttime%% am %%startdatenoyear%% und endet am %%enddatewithyear%%."
2659
 
2660
- #: src/Tribe/Asset/Dynamic.php:75
2661
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2662
  msgstr "Diese Veranstaltung beginnt um %%starttime%% am %%startdatenoyear%% und endet um %%endtime%% am %%enddatewithyear%%."
2663
 
2664
- #: src/Tribe/Asset/Dynamic.php:74
2665
  msgid "This event is all day on %%startdatewithyear%%."
2666
  msgstr "Diese ganztägige Veranstaltung findet am %%startdatenoyear%% statt."
2667
 
2668
- #: src/Tribe/Asset/Dynamic.php:73
2669
  msgid "This event is at %%starttime%% on %%startdatewithyear%%."
2670
  msgstr "Diese Veranstaltung findet um %%starttime%% am %%startdatenoyear%% statt."
2671
 
2672
- #: src/Tribe/Asset/Dynamic.php:72
2673
  msgid "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2674
  msgstr "Diese Veranstaltung findet von %%starttime%% bis %%endtime%% am %%startdatenoyear%% statt."
2675
 
2676
- #: src/Tribe/Asset/Dynamic.php:69
2677
  msgid "Dec"
2678
  msgstr "Dez"
2679
 
2680
- #: src/Tribe/Asset/Dynamic.php:68
2681
  msgid "Nov"
2682
  msgstr "Nov"
2683
 
2684
- #: src/Tribe/Asset/Dynamic.php:67
2685
  msgid "Oct"
2686
  msgstr "Okt"
2687
 
2688
- #: src/Tribe/Asset/Dynamic.php:66
2689
  msgid "Sep"
2690
  msgstr "Sep"
2691
 
2692
- #: src/Tribe/Asset/Dynamic.php:65
2693
  msgid "Aug"
2694
  msgstr "Aug"
2695
 
2696
- #: src/Tribe/Asset/Dynamic.php:64
2697
  msgid "Jul"
2698
  msgstr "Jul"
2699
 
2700
- #: src/Tribe/Asset/Dynamic.php:63
2701
  msgid "Jun"
2702
  msgstr "Jun"
2703
 
2704
- #: src/Tribe/Asset/Dynamic.php:61
2705
  msgid "Apr"
2706
  msgstr "Apr"
2707
 
2708
- #: src/Tribe/Asset/Dynamic.php:60
2709
  msgid "Mar"
2710
  msgstr "Mrz"
2711
 
2712
- #: src/Tribe/Asset/Dynamic.php:59
2713
  msgid "Feb"
2714
  msgstr "Feb"
2715
 
2716
- #: src/Tribe/Asset/Dynamic.php:58
2717
  msgid "Jan"
2718
  msgstr "Jan"
2719
 
2720
- #: src/Tribe/Asset/Dynamic.php:55
2721
  msgid "December"
2722
  msgstr "Dezember"
2723
 
2724
- #: src/Tribe/Asset/Dynamic.php:54
2725
  msgid "November"
2726
  msgstr "November"
2727
 
2728
- #: src/Tribe/Asset/Dynamic.php:53
2729
  msgid "October"
2730
  msgstr "Oktober"
2731
 
2732
- #: src/Tribe/Asset/Dynamic.php:52
2733
  msgid "September"
2734
  msgstr "September"
2735
 
2736
- #: src/Tribe/Asset/Dynamic.php:51
2737
  msgid "August"
2738
  msgstr "August"
2739
 
2740
- #: src/Tribe/Asset/Dynamic.php:50
2741
  msgid "July"
2742
  msgstr "Juli"
2743
 
2744
- #: src/Tribe/Asset/Dynamic.php:49
2745
  msgid "June"
2746
  msgstr "Juni"
2747
 
2748
- #: src/Tribe/Asset/Dynamic.php:48 src/Tribe/Asset/Dynamic.php:62
 
 
2749
  msgid "May"
2750
  msgstr "Mai"
2751
 
2752
- #: src/Tribe/Asset/Dynamic.php:47
2753
  msgid "April"
2754
  msgstr "April"
2755
 
2756
- #: src/Tribe/Asset/Dynamic.php:46
2757
  msgid "March"
2758
  msgstr "März"
2759
 
2760
- #: src/Tribe/Asset/Dynamic.php:45
2761
  msgid "February"
2762
  msgstr "Februar"
2763
 
2764
- #: src/Tribe/Asset/Dynamic.php:44
2765
  msgid "January"
2766
  msgstr "Januar"
2767
 
2768
- #: src/Tribe/Asset/Dynamic.php:41
2769
  msgid "Sat"
2770
  msgstr "Sa"
2771
 
2772
- #: src/Tribe/Asset/Dynamic.php:40
2773
  msgid "Fri"
2774
  msgstr "Fr"
2775
 
2776
- #: src/Tribe/Asset/Dynamic.php:39
2777
  msgid "Thu"
2778
  msgstr "Do"
2779
 
2780
- #: src/Tribe/Asset/Dynamic.php:38
2781
  msgid "Wed"
2782
  msgstr "Mi"
2783
 
2784
- #: src/Tribe/Asset/Dynamic.php:37
2785
  msgid "Tue"
2786
  msgstr "Di"
2787
 
2788
- #: src/Tribe/Asset/Dynamic.php:36
2789
  msgid "Mon"
2790
  msgstr "Mo"
2791
 
2792
- #: src/Tribe/Asset/Dynamic.php:35
2793
  msgid "Sun"
2794
  msgstr "So"
2795
 
2796
- #: src/Tribe/Asset/Dynamic.php:32
2797
  msgid "Saturday"
2798
  msgstr "Samstag"
2799
 
2800
- #: src/Tribe/Asset/Dynamic.php:31
2801
  msgid "Friday"
2802
  msgstr "Freitag"
2803
 
2804
- #: src/Tribe/Asset/Dynamic.php:30
2805
  msgid "Thursday"
2806
  msgstr "Donnerstag"
2807
 
2808
- #: src/Tribe/Asset/Dynamic.php:29
2809
  msgid "Wednesday"
2810
  msgstr "Mittwoch"
2811
 
2812
- #: src/Tribe/Asset/Dynamic.php:28
2813
  msgid "Tuesday"
2814
  msgstr "Dienstag"
2815
 
2816
- #: src/Tribe/Asset/Dynamic.php:27
2817
  msgid "Monday"
2818
  msgstr "Montag"
2819
 
2820
- #: src/Tribe/Asset/Dynamic.php:26
2821
  msgid "Sunday"
2822
  msgstr "Sonntag"
2823
 
2824
  #: src/deprecated/Tribe__Events__Admin__Front_Page_View.php:20
2825
  msgctxt "Static front page setting"
2826
  msgid "Main %s Page"
2827
- msgstr "Hauptseite Veranstaltungen"
2828
 
2829
  #: common/src/Tribe/Settings.php:281 common/src/Tribe/Settings.php:282
2830
  msgid "Events Help"
@@ -2832,15 +2855,15 @@ msgstr "Veranstaltungen Hilfe"
2832
 
2833
  #: common/src/Tribe/PUE/Checker.php:1670
2834
  msgid "Expired license. Consult your network administrator."
2835
- msgstr "Lizenz abgelaufen. Bitte informiere den Administrator."
2836
 
2837
  #: common/src/Tribe/PUE/Checker.php:1669
2838
  msgid "No license entered. Consult your network administrator."
2839
- msgstr "Kein Lizenzschlüssel eingegeben. Bitte informiere den Administrator."
2840
 
2841
  #: common/src/Tribe/PUE/Checker.php:1668
2842
  msgid "A valid license has been entered by your network administrator."
2843
- msgstr "Ein gültiger Lizenzschlüssel wurde von Deinem Netzwerk Administrator eingegeben."
2844
 
2845
  #: common/src/Tribe/PUE/Checker.php:550
2846
  msgid "Site License Key"
@@ -2848,7 +2871,7 @@ msgstr "Seiten Lizenzschlüssel"
2848
 
2849
  #: common/src/Tribe/PUE/Checker.php:539
2850
  msgid "Check this box if you wish to override the network license key with your own"
2851
- msgstr "Aktiviere diese Option, um den Netzwerk Lizenzschlüssel mit Deinem eigenen zu überschreiben."
2852
 
2853
  #: common/src/Tribe/PUE/Checker.php:538
2854
  msgid "Override network license key"
@@ -2860,7 +2883,7 @@ msgstr "Status Lizenzschlüssel:"
2860
 
2861
  #: common/src/Tribe/Customizer.php:570
2862
  msgid "Use the following panel of your customizer to change the styling of your Calendar and Event pages."
2863
- msgstr "Nutze den folgenden Bereich, um das Design des Kalenders und der Veranstaltungsseiten anzupassen."
2864
 
2865
  #: common/src/admin-views/app-shop.php:31
2866
  msgid "Installed"
@@ -2872,7 +2895,7 @@ msgstr "Installierte Add-Ons"
2872
 
2873
  #: common/src/Tribe/Extension.php:368
2874
  msgid "Unable to run Tribe Extensions. Your website host is running PHP 5.2 or older, and has likely disabled or misconfigured debug_backtrace(). You, or your website host, will need to upgrade PHP or properly configure debug_backtrace() for Tribe Extensions to work."
2875
- msgstr "Die Tribe Extensions können nicht ausgeführt werden. Deine Website nutzt PHP 5.2 oder älter und hat vermutlich debug_backtrace() nicht aktiviert bzw. falsch konfiguriert. Bitte upgrade (oder Dein Website Host) auf eine neuere PHP Version oder konfiguriere debug_backtrace() korrekt, damit die Tribe Extensions ausgeführt werden können."
2876
 
2877
  #: common/src/Tribe/Extension.php:144
2878
  msgid "Tutorial"
@@ -2892,19 +2915,19 @@ msgstr ","
2892
 
2893
  #: common/src/Tribe/Admin/Notice/Plugin_Download.php:75
2894
  msgid "To begin using %1$s, please install and activate the latest version of %2$s."
2895
- msgstr "Um mit %1$s zu nutzen, installiere und aktiviere bitte die aktuelle Version von %2$s."
2896
 
2897
  #: src/Tribe/Aggregator/Service.php:730
2898
  msgid "Unknown service message"
2899
  msgstr "Unbekannte Service Meldung"
2900
 
2901
- #: src/Tribe/Aggregator/Record/List_Table.php:533
2902
  msgid "Unknown"
2903
  msgstr "Unbekannt"
2904
 
2905
- #: src/Tribe/Aggregator/Record/Abstract.php:1205
2906
  msgid "When this import was last scheduled to run, the daily limit for your Event Aggregator license had already been reached."
2907
- msgstr "Als dieser Import zuletzt ausgeführt wurde, wurde das Tageslimit für Deine Event Aggregator-Lizenz bereits erreicht."
2908
 
2909
  #: src/admin-views/aggregator/origins/refine.php:5
2910
  msgid "Location"
@@ -2912,11 +2935,11 @@ msgstr "Standort"
2912
 
2913
  #: src/admin-views/admin-welcome-message.php:26
2914
  msgid "Stay in touch with The Events Calendar team. We send out periodic updates, key developer notices, and even the occasional discount."
2915
- msgstr "Bleibe in Kontakt mit dem Events Calendar Team. Wir senden regelmäßig Updates, wichtige Entwickler Hinweise, und sogar gelegentlich Rabatte."
2916
 
2917
  #: src/admin-views/admin-welcome-message.php:20
2918
  msgid "Your ratings help us bring The Events Calendar to more users. More happy users mean more support, more features, and more of everything you know and love about The Events Calendar. We couldn't do this without your support."
2919
- msgstr "Deine Bewertungen helfen uns, den Veranstaltungskalender zu mehr Nutzern zu bringen. Mehr glückliche Benutzer bedeuten mehr Unterstützung, mehr Funktionen und mehr von allem, das Du kennst und liebst am Events Calendar. Das geht nicht ohne Deine Unterstützung."
2920
 
2921
  #: src/views/single-event.php:28
2922
  msgctxt "%s Events plural label"
@@ -2933,7 +2956,7 @@ msgstr "Manche Funktionen und Add-Ons erfordern die Eingabe eines API Schlüssel
2933
 
2934
  #: src/admin-views/tribe-options-addons-api.php:99
2935
  msgid "%s to view your Meetup API Key"
2936
- msgstr "%s, um Deinen Meetup API-Schlüssel anzuzeigen"
2937
 
2938
  #: src/admin-views/tribe-options-addons-api.php:98
2939
  msgid "Meetup API Key"
@@ -2941,7 +2964,7 @@ msgstr "Meetup API Schlüssel"
2941
 
2942
  #: src/admin-views/tribe-options-addons-api.php:94
2943
  msgid "You need a Meetup API Key to import your events from Meetup."
2944
- msgstr "Du benötigst einen Meetup API Schlüssel, um Veranstaltungen von Meetup zu importieren."
2945
 
2946
  #: src/admin-views/tribe-options-addons-api.php:82
2947
  msgid "You need to connect Event Aggregator to Facebook to import your events from Facebook."
@@ -2958,11 +2981,11 @@ msgstr "Verbindung zu Facebook aktualisieren"
2958
 
2959
  #: src/admin-views/tribe-options-addons-api.php:57
2960
  msgid "Your Event Aggregator Facebook connection will expire %s."
2961
- msgstr "Deine Event Aggregator Facebook Verbindung wird am %s auslaufen."
2962
 
2963
  #: src/admin-views/tribe-options-addons-api.php:55
2964
  msgid "Your Event Aggregator Facebook connection has expired %s."
2965
- msgstr "Deine Event Aggregator Facebook Verbindung ist am %s ausgelaufen."
2966
 
2967
  #: src/admin-views/tribe-options-addons-api.php:52
2968
  msgid "Connect to Facebook"
@@ -2970,7 +2993,7 @@ msgstr "Mit Facebook verbinden"
2970
 
2971
  #: src/admin-views/tribe-options-addons-api.php:51
2972
  msgid "You need to connect to Facebook for Event Aggregator to work properly"
2973
- msgstr "Du musst Dich mit Facebook verbinden, damit der Event Aggregator richtig arbeiten kann"
2974
 
2975
  #: src/admin-views/tribe-options-addons-api.php:46
2976
  msgid "Facebook Token"
@@ -2978,7 +3001,7 @@ msgstr "Facebook Token"
2978
 
2979
  #: src/admin-views/aggregator/tabs/import-form.php:295
2980
  msgid "Events will be imported with the time zone defined by the source. If no time zone is specified, events will be assigned your site's default time zone ( see"
2981
- msgstr "Veranstaltungen werden mit der von der Quelle definierten Zeitzone importiert. Wenn keine Zeitzone angegeben ist, wird den Veranstaltungen die Standardzeitzone Deiner Website zugewiesen (%1$sEinstellungen> Allgemein%2$s)."
2982
 
2983
  #: src/admin-views/aggregator/tabs/import-form.php:215
2984
  msgid "Category:"
@@ -3000,7 +3023,7 @@ msgstr "Alle auswählen"
3000
 
3001
  #: src/admin-views/aggregator/tabs/import-form.php:169
3002
  msgid "The following preview does not necessarily contain all of the data from your CSV file. The data displayed below is meant as a guide to help you map your CSV file's columns to the appropriate Event fields."
3003
- msgstr "Die folgende Vorschau enthält nicht unbedingt alle Daten aus Deiner CSV-Datei. Die unten angezeigten Daten dienen als Leitfaden für die Zuordnung der Spalten der CSV-Datei zu den entsprechenden Ereignisfeldern."
3004
 
3005
  #: src/admin-views/aggregator/tabs/import-form.php:163
3006
  msgid "Column Mapping:"
@@ -3008,15 +3031,15 @@ msgstr "Spalten Zuordnung:"
3008
 
3009
  #: src/admin-views/aggregator/tabs/import-form.php:160
3010
  msgid "This is a preview of the type of content you will be getting in during the import based on what is on the calendar now."
3011
- msgstr "Dies ist eine Vorschau der Inhalte, die Du während des Imports erhalten wirst, basierend auf dem, was im Kalender jetzt vorhanden ist."
3012
 
3013
  #: src/admin-views/aggregator/tabs/import-form.php:149
3014
  msgid "When you save this scheduled import, the events above will begin importing."
3015
- msgstr "Wenn Du diesen geplanten Import speicherst, werden der Import für die oben genannten Veranstaltungen gestartet."
3016
 
3017
  #: src/admin-views/aggregator/tabs/import-form.php:147
3018
  msgid "Select the Event Field that best matches your CSV file column. The contents of that column will then be mapped to the specified event field when the event is created."
3019
- msgstr "Wähle das Veranstaltungsfeld aus, das am besten zu Deiner CSV-Dateispalte passt. Der Inhalt dieser Spalte wird dann beim Erzeugen der Veranstaltung dem angegebenen Veranstaltungsfeld zugeordnet."
3020
 
3021
  #: src/admin-views/aggregator/tabs/import-form.php:145
3022
  msgid "These settings will also apply to events imported in the future via this scheduled import."
@@ -3024,7 +3047,7 @@ msgstr "Diese Einstellungen gelten auch für Ereignisse, die über diesen geplan
3024
 
3025
  #: src/admin-views/aggregator/tabs/import-form.php:144
3026
  msgid "Choose a status for the event(s) to be imported with and/or define an Event Category to automatically assign. An assigned category will be added to the event in addition to any Event Categories from the import source."
3027
- msgstr "Wähle einen Status für die zu importierenden Veranstaltungen aus und / oder definiere eine Veranstaltungskategorie, die automatisch zugewiesen werden soll. Eine zugeordnete Kategorie wird der Veranstaltung zusätzlich zu Veranstaltungskategorien aus der Importquelle hinzugefügt."
3028
 
3029
  #: src/admin-views/aggregator/tabs/import-form.php:104
3030
  msgid "Access more event sources and automatic imports!"
@@ -3036,7 +3059,7 @@ msgstr "Event Aggregator kaufen"
3036
 
3037
  #: src/admin-views/aggregator/tabs/import-form.php:40
3038
  msgid "Choose where you are importing from."
3039
- msgstr "Wähle aus, von wo aus Du importierst."
3040
 
3041
  #: src/admin-views/aggregator/tabs/import-form.php:39
3042
  msgid "Select Origin"
@@ -3056,7 +3079,7 @@ msgstr "API Schlüssel eingeben"
3056
 
3057
  #: src/admin-views/aggregator/status.php:222
3058
  msgid "You have not entered a Meetup API key"
3059
- msgstr "Du hast keinen Meetup API-Schlüssel eingegeben"
3060
 
3061
  #: src/admin-views/aggregator/status.php:218
3062
  msgid "API key entered"
@@ -3078,7 +3101,7 @@ msgstr "Mit Facebook verbinden"
3078
 
3079
  #: src/admin-views/aggregator/status.php:169
3080
  msgid "You have not connected Event Aggregator to Facebook"
3081
- msgstr "Du hast Event Aggregator nicht mit Facebook verbunden"
3082
 
3083
  #: src/admin-views/aggregator/status.php:156
3084
  msgid "Third Party Accounts"
@@ -3139,31 +3162,31 @@ msgstr[1] "%1$d von %2$d Importen heute verfügbar"
3139
 
3140
  #: src/admin-views/aggregator/status.php:66
3141
  msgid "You are approaching your daily import limit. You may want to adjust your Scheduled Import frequencies."
3142
- msgstr "Du näherst Dich Deiner täglichen Importgrenze. Eventuell möchtest Du die geplanten Importhäufigkeiten anpassen."
3143
 
3144
  #: src/admin-views/aggregator/status.php:63
3145
  msgid "You have reached your daily import limit. Scheduled imports will be paused until tomorrow."
3146
- msgstr "Du hast Deine tägliche Importgrenze erreicht. Geplante Importe werden bis morgen pausiert."
3147
 
3148
  #: src/admin-views/aggregator/status.php:36
3149
  msgid "Check your license key"
3150
- msgstr "Überprüfe Deinen Lizenzschlüssel"
3151
 
3152
  #: src/admin-views/aggregator/status.php:35
3153
  msgid "Your license is invalid"
3154
- msgstr "Dein Lizenz ist ungültig"
3155
 
3156
  #: src/admin-views/aggregator/status.php:32
3157
  msgid "Buy Event Aggregator to access more event sources and automatic imports!"
3158
- msgstr "Erwerbe Event Aggregator, um auf weitere Veranstaltungsquellen und automatische Importe zuzugreifen!"
3159
 
3160
  #: src/admin-views/aggregator/status.php:30
3161
  msgid "You do not have a license"
3162
- msgstr "Du besitzt keine Lizenz"
3163
 
3164
  #: src/admin-views/aggregator/status.php:23
3165
  msgid "Your license is valid"
3166
- msgstr "Deine Lizenz ist gültig"
3167
 
3168
  #: src/admin-views/aggregator/status.php:14
3169
  msgid "License &amp; Usage"
@@ -3181,7 +3204,7 @@ msgstr "Mehr über Event Aggregator erfahren"
3181
 
3182
  #: src/admin-views/aggregator/settings.php:708
3183
  msgid "Use the options below to configure your imports. Looking for more ways to import events from other websites?"
3184
- msgstr "Verwende die folgenden Optionen, um Deine Importe zu konfigurieren. Suchst Du nach weiteren Möglichkeiten, Veranstaltungen von anderen Websites zu importieren?"
3185
 
3186
  #: src/admin-views/aggregator/settings.php:608
3187
  msgid "Global"
@@ -3197,7 +3220,7 @@ msgstr "Hilfe Seite"
3197
 
3198
  #: src/admin-views/aggregator/settings.php:684
3199
  msgid "Use the options below to configure your imports. Global Import Settings apply to all imports, but you can also override the global settings by adjusting the origin-specific options. Check your Event Aggregator Service Status on the %1$s."
3200
- msgstr "Verwende die folgenden Optionen, um Deine Importe zu konfigurieren. Die globalen Importeinstellungen gelten für alle Importe, Du kannst aber auch die globalen Einstellungen überschreiben, indem Du die spezifischen Optionen anpasst. Überprüfe den Status des Event Aggregator Dienstes auf %1$s."
3201
 
3202
  #: src/admin-views/aggregator/settings.php:419
3203
  msgid "The default event category for events imported via Meetup"
@@ -3209,7 +3232,7 @@ msgstr "Der Standard Beitragsstatus für Veranstaltungen, die über Meetup impor
3209
 
3210
  #: src/admin-views/aggregator/settings.php:395
3211
  msgid "To import Meetup events, please be sure to add your Meetup API key on %1$sEvents > Settings > APIs%2$s"
3212
- msgstr "Um Meetup-Ereignisse zu importieren, füge Deinen Meetup-API-Schlüssel unter %1$sVeranstaltungen > Einstellungen > APIs %2$s hinzu."
3213
 
3214
  #: src/admin-views/aggregator/settings.php:389
3215
  msgid "Meetup Import Settings"
@@ -3272,7 +3295,7 @@ msgstr "Einstellungen für iCalendar Import"
3272
  #: src/admin-views/aggregator/settings.php:475
3273
  #: src/admin-views/aggregator/settings.php:543
3274
  msgid "Show Google Map by default on imported event and venues"
3275
- msgstr "Zeige Google-Karten standardmäßig auf importierten Veranstaltungen und Veranstaltungsorten an"
3276
 
3277
  #: src/admin-views/aggregator/settings.php:151
3278
  #: src/admin-views/aggregator/settings.php:242
@@ -3335,11 +3358,11 @@ msgstr "Ereignisse nicht erneut importieren. Änderungen werden lokal beibehalte
3335
 
3336
  #: src/admin-views/aggregator/settings.php:59
3337
  msgid "Overwrite my event with any changes from the original source."
3338
- msgstr "Überschreibe meine Veranstaltung mit Änderungen der ursprünglichen Quelle."
3339
 
3340
  #: src/admin-views/aggregator/settings.php:49
3341
  msgid "You can make changes to imported events via The Events Calendar and see those changes reflected on your site’s calendar. The owner of the original event source (e.g. the iCalendar feed or Facebook group) might also make changes to their event. If you choose to re-import an altered event (manually or via a scheduled import), any changes made at the source or on your calendar will need to be addressed."
3342
- msgstr "Du kannst Änderungen an importierten Veranstaltungen über The Events Calendar vornehmen und die Änderungen anzeigen, die im Kalender Deiner Website angezeigt werden. Der Eigentümer der ursprünglichen Veranstaltungsquelle (z. B. der iCalendar-Feed oder die Facebook-Gruppe) kann ebenfalls Änderungen an deren Veranstaltung vornehmen. Wenn Du eine veränderte Veranstaltung (manuell oder über einen geplanten Import) erneut importierst, müssen alle Änderungen an der Quelle oder an Deinem Kalender adressiert werden."
3343
 
3344
  #: src/admin-views/aggregator/settings.php:44
3345
  #: src/admin-views/aggregator/settings.php:54
@@ -3356,7 +3379,7 @@ msgstr "Keine Standardkategorie"
3356
 
3357
  #: src/admin-views/aggregator/settings.php:7
3358
  msgid "Use global import settings"
3359
- msgstr "Globale Importeinstellungen verwenden"
3360
 
3361
  #: src/admin-views/aggregator/origins/refine.php:82
3362
  msgid "Events on or after"
@@ -3368,15 +3391,15 @@ msgstr "Verfeinern:"
3368
 
3369
  #: src/admin-views/aggregator/origins/refine.php:42
3370
  msgid "Use the filters to narrow down which events are fetched from this iCalendar feed."
3371
- msgstr "Verwende die Filter, um festzulegen, welche Ereignisse aus diesem iCalendar-Feed abgerufen werden."
3372
 
3373
  #: src/admin-views/aggregator/origins/refine.php:19
3374
  msgid "Use the filters to narrow down which events are fetched from this Google Calendar."
3375
- msgstr "Verwende die Filter, um festzulegen, welche Ereignisse aus diesem Google Kalender abgerufen werden."
3376
 
3377
  #: src/admin-views/aggregator/origins/refine.php:15
3378
  msgid "Use the filters to narrow down which events are fetched from your ICS file."
3379
- msgstr "Verwende die Filter, um festzulegen, welche Ereignisse aus Deiner ICS-Datei abgerufen werden."
3380
 
3381
  #: src/admin-views/aggregator/origins/refine.php:9
3382
  msgctxt "Radius with abbreviation"
@@ -3389,7 +3412,7 @@ msgstr "Schlüssel"
3389
 
3390
  #: src/admin-views/aggregator/origins/meetup.php:139
3391
  msgid "Enter the url for a Meetup group, page, or individual. You can also enter the url of a single Meetup event."
3392
- msgstr "Gebe die URL für eine Meetup Gruppe, eine Seite oder eine Person ein. Du kannst auch die URL einer einzelnen Meetup Veranstaltung eingeben."
3393
 
3394
  #: src/admin-views/aggregator/origins/meetup.php:138
3395
  msgid "meetup.com/example"
@@ -3405,11 +3428,11 @@ msgstr "Meetup API Schlüssel:"
3405
 
3406
  #: src/admin-views/aggregator/origins/meetup.php:47
3407
  msgid "Your Meetup API key has been saved to %1$sEvents &gt; Settings &gt; APIs%2$s"
3408
- msgstr "Dein Meetup API-Schlüssel wurde in %1$s Veranstaltungen &gt; Einstellungen &gt; APIs%2$s gespeichert"
3409
 
3410
  #: src/admin-views/aggregator/origins/meetup.php:32
3411
  msgid "Enter your Meetup API key to import Meetup events. %1$sClick here to get your Meetup API key%2$s. You only need to do this once, it will be saved under %3$sEvents &gt; Settings &gt; APIs%4$s"
3412
- msgstr "Geben Deine Meetup API-Schlüssel ein, um Meetup-Veranstaltungen zu importieren. %1$sKlicke hier, um Deinen Meetup API-Schlüssel%2$s zu erhalten. Du musst dies nur einmal tun, es wird unter%3$sVeranstaltungen &gt; Einstellungen &gt; APIs%4$s gespeichert"
3413
 
3414
  #: src/admin-views/aggregator/origins/meetup.php:7
3415
  msgid "One-time imports include all currently listed events, while scheduled imports automatically grab new events and updates from Meetup on a set schedule. Single events can be added via a one-time import."
@@ -3421,7 +3444,7 @@ msgstr "ICS Datei hochladen"
3421
 
3422
  #: src/admin-views/aggregator/origins/ics.php:7
3423
  msgid "Select your ICS file from the WordPress media library. You may need to first upload the file from your computer to the library."
3424
- msgstr "Wählen Deine ICS-Datei aus der WordPress-Medienbibliothek aus. Möglicherweise musst Du die Datei vorher von Deinem Computer in die Bibliothek hochladen."
3425
 
3426
  #: src/admin-views/aggregator/origins/ics.php:6
3427
  msgid "Choose File"
@@ -3429,7 +3452,7 @@ msgstr "Datei auswählen"
3429
 
3430
  #: src/admin-views/aggregator/origins/ical.php:84
3431
  msgid "Enter the url for the iCalendar feed you wish to import, e.g. https://central.wordcamp.org/calendar.ics"
3432
- msgstr "Geben die URL für den iCalendar-Feed ein, den Du importieren möchtest, z.B. https://central.wordcamp.org/calendar.ics"
3433
 
3434
  #: src/admin-views/aggregator/origins/ical.php:83
3435
  msgid "example.com/url.ics"
@@ -3437,23 +3460,23 @@ msgstr "example.com/url.ics"
3437
 
3438
  #: src/admin-views/aggregator/origins/gcal.php:89
3439
  msgid "Copy the provided url into this field to import the events into your WordPress site."
3440
- msgstr "Kopieren die bereitgestellte URL in dieses Feld, um die Veranstaltungen in Deine WordPress-Website zu importieren."
3441
 
3442
  #: src/admin-views/aggregator/origins/gcal.php:88
3443
  msgid "Scroll down to Calendar Address and click the iCal button (note: if your calendar is private, you'll need to click the iCal button next to the Private Address header instead)."
3444
- msgstr "Scrolle nach unten zur Kalenderadresse und klicke auf die iCal-Schaltfläche (Hinweis: Wenn Dein Kalender privat ist, muust Du statt dessen auf die Schaltfläche iCal neben dem privaten Adresskopf klicken)."
3445
 
3446
  #: src/admin-views/aggregator/origins/gcal.php:87
3447
  msgid "Go to Settings &gt; Calendars and select the calendar you wish to import."
3448
- msgstr "Gehe zu Einstellungen > Kalender und wähle den Kalender aus, den Du importieren möchtest."
3449
 
3450
  #: src/admin-views/aggregator/origins/gcal.php:85
3451
  msgid "You can find the url you need in your Google Calendar settings."
3452
- msgstr "Du findest die URL, die Du in Deinem Google Kalender-Einstellungen benötigst."
3453
 
3454
  #: src/admin-views/aggregator/origins/gcal.php:83
3455
  msgid "Enter the url for the Google Calendar feed you wish to import."
3456
- msgstr "Gib die URL für den Google Kalender-Feed ein, den Du importieren möchtest."
3457
 
3458
  #: src/admin-views/aggregator/origins/gcal.php:82
3459
  msgid "https://calendar.google.com/calendar/ical/example/basic.ics"
@@ -3466,7 +3489,7 @@ msgstr "Einmalige Importe umfassen alle Ereignisse im aktuellen Feed, während g
3466
 
3467
  #: src/admin-views/aggregator/origins/facebook.php:111
3468
  msgid "Enter the url for a Facebook group or page. You can also enter the url of a single Facebook event."
3469
- msgstr "Gebe die URL für eine Facebook-Gruppe oder -Seite ein. Du kannst auch die URL einer einzelnen Facebook Veranstaltung eingeben."
3470
 
3471
  #: src/admin-views/aggregator/origins/facebook.php:110
3472
  msgid "facebook.com/example"
@@ -3502,7 +3525,7 @@ msgstr "Bei Facebook anmelden"
3502
 
3503
  #: src/admin-views/aggregator/origins/facebook.php:33
3504
  msgid "Please log in to enable event imports from Facebook."
3505
- msgstr "Bitte melde Dich an, um Veranstaltungsimporte von Facebook zu ermöglichen."
3506
 
3507
  #: src/admin-views/aggregator/origins/eventbrite.php:17
3508
  #: src/admin-views/aggregator/origins/facebook.php:12
@@ -3511,7 +3534,7 @@ msgstr "Bitte melde Dich an, um Veranstaltungsimporte von Facebook zu ermöglich
3511
  #: src/admin-views/aggregator/origins/meetup.php:12
3512
  #: src/admin-views/aggregator/origins/url.php:12
3513
  msgid "Select how often you would like events to be automatically imported."
3514
- msgstr "Wähle aus, wie oft die Veranstaltungen automatisch importiert werden sollen."
3515
 
3516
  #: src/admin-views/aggregator/origins/facebook.php:11
3517
  #: src/admin-views/aggregator/origins/gcal.php:11
@@ -3536,7 +3559,7 @@ msgstr "Wähle Import Typ"
3536
 
3537
  #: src/admin-views/aggregator/origins/eventbrite.php:154
3538
  msgid "Enter an Eventbrite event URL, e.g. https://www.eventbrite.com/e/example-12345"
3539
- msgstr "Gebe eine Eventbrite Veranstaltungs-URL ein, z.B. https://www.eventbrite.com/e/example-12345"
3540
 
3541
  #: src/admin-views/aggregator/origins/csv.php:76
3542
  #: src/admin-views/aggregator/origins/eventbrite.php:193
@@ -3565,7 +3588,7 @@ msgstr "Hochladen"
3565
 
3566
  #: src/admin-views/aggregator/origins/csv.php:41
3567
  msgid "Select your .CSV file from the WordPress media library. You may need to first upload the file from your computer to the library."
3568
- msgstr "Wähle Deine .CSV-Datei aus der WordPress-Medienbibliothek aus. Möglicherweise musst Du die Datei vorher von Deinem Computer in die Bibliothek hochladen."
3569
 
3570
  #: src/admin-views/aggregator/origins/csv.php:40
3571
  msgid "Choose a CSV file"
@@ -3578,11 +3601,11 @@ msgstr "Wähle Datei:"
3578
 
3579
  #: src/admin-views/aggregator/origins/csv.php:8
3580
  msgid "For the best results, import venue and organizer files before importing event files."
3581
- msgstr "Um beste Ergebnisse zu erhalten, importiere zuerst Veranstaltungsorte und Veranstalter, bevor Du Veranstaltungen importierst."
3582
 
3583
  #: src/admin-views/aggregator/origins/csv.php:6
3584
  msgid "Specify the type of content you wish to import, e.g. events."
3585
- msgstr "Wähle den Typ des Inhalt, welchen Du importieren willst, z.B. Veranstaltungen."
3586
 
3587
  #: src/admin-views/aggregator/origins/csv.php:5
3588
  msgid "Select Content Type"
@@ -3594,7 +3617,7 @@ msgstr "Inhaltstyp:"
3594
 
3595
  #: src/admin-views/aggregator/meta-box.php:56
3596
  msgid "Change Event Update Authority"
3597
- msgstr "Ändere die Berechtigung für die Veranstaltungsaktualisierung"
3598
 
3599
  #: src/admin-views/aggregator/meta-box.php:36
3600
  msgid "This event will not be re-imported and changes made locally will be preserved."
@@ -3623,11 +3646,11 @@ msgstr "Entwickler-News"
3623
 
3624
  #: src/admin-views/admin-welcome-message.php:21
3625
  msgid "Rate us today!"
3626
- msgstr "Bewerte uns jetzt!"
3627
 
3628
  #: src/admin-views/admin-welcome-message.php:19
3629
  msgid "We Need Your Help"
3630
- msgstr "Wir brauchen Deine Hilfe"
3631
 
3632
  #: src/Tribe/Utils/Radius.php:55
3633
  msgctxt "Abbreviation for the kilometers unit of measure"
@@ -3639,9 +3662,9 @@ msgctxt "Abbreviation for the miles unit of measure"
3639
  msgid "mi"
3640
  msgstr "mi"
3641
 
3642
- #: src/Tribe/Main.php:983
3643
  msgid "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3644
- msgstr "Die %3$s \"%1$s\" verwendet die Titelform \"/%2$s\": das Events Calendar Plugin zeigt seinen Kalender anstelle der Seite an."
3645
 
3646
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:77
3647
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:78
@@ -3651,8 +3674,8 @@ msgstr "Altsystem Import"
3651
  #: src/Tribe/Ignored_Events.php:926
3652
  msgid "Migration: %d Legacy Ignored Post was migrated successfully. To see the migrated event you will first need to refresh this screen."
3653
  msgid_plural "Migration: %d Legacy Ignored Posts were migrated successfully. To see the migrated events you will first need to refresh this screen."
3654
- msgstr[0] "Migration: %d ignorierter Beitrag aus dem Altsystem wurde erfolgreich migriert. Um die migrierte Veranstaltung zu sehen, musst Du zuerst diese Ansicht aktualisieren."
3655
- msgstr[1] "Migration: %d ignorierte Beiträge aus dem Altsystem wurden erfolgreich migriert. Um die migrierten Veranstaltungen zu sehen, musst Du zuerst diese Ansicht aktualisieren."
3656
 
3657
  #: src/Tribe/Ignored_Events.php:919
3658
  msgid "Event %d: %s"
@@ -3667,20 +3690,20 @@ msgstr[1] "Migration: %d ignorierte Beiträge aus dem Altsystem konnten nicht mi
3667
  #: src/Tribe/Ignored_Events.php:895
3668
  msgid "Migration: %d Legacy Ignored Post was migrated but %d failed. To see the migrated event you will first need to refresh this screen."
3669
  msgid_plural "Migration: %d Legacy Ignored Posts were migrated but %d failed. To see the migrated events you will first need to refresh this screen."
3670
- msgstr[0] "Migration: %d ignorierter Beitrag aus dem Altsystem wurde migriert, aber %d ist fehlgeschlagen. Um die migrierte Veranstaltung zu sehen, musst Du zuerst diese Ansicht aktualisieren."
3671
- msgstr[1] "Migration: %d ignorierte Beiträge aus dem Altsystem wurden migriert, aber %d sind fehlgeschlagen. Um die migrierte Veranstaltung zu sehen, musst Du zuerst diese Ansicht aktualisieren."
3672
 
3673
  #: src/Tribe/Ignored_Events.php:871
3674
  msgid "There were no Legacy Events to be Migrated, you are ready to rock!"
3675
- msgstr "Es wurden keine Veranstaltungen aus dem Altsystem migriert. Du kannst durchstarten!"
3676
 
3677
  #: src/Tribe/Ignored_Events.php:864
3678
  msgid "You do not have permission to migrate Legacy Ignored Events"
3679
- msgstr "Du hast keine Berechtigung zum Migrieren von ignorierten Veranstaltungen aus dem Altsystem"
3680
 
3681
  #: src/Tribe/Ignored_Events.php:857
3682
  msgid "Error, a unknown bug happened and it was impossible to migrate the Legacy Ignored Events, try again later."
3683
- msgstr "Ein unbekannter Fehler ist aufgetreten und es war unmöglich, die ignorierten Veranstaltungen aus dem Altsystem zu migrieren. Versuche es später erneut."
3684
 
3685
  #: src/Tribe/Ignored_Events.php:745
3686
  msgid "Ignored <span class=\"count\">(%s)</span>"
@@ -3731,7 +3754,7 @@ msgstr "Fehler beim Wiederherstellen von ignorierten Veranstaltungen."
3731
 
3732
  #: src/Tribe/Ignored_Events.php:227 src/Tribe/Ignored_Events.php:269
3733
  msgid "You do not have permission to restore this post."
3734
- msgstr "Du bist nicht berechtigt, diesen Beitrag wiederherzustellen."
3735
 
3736
  #: src/Tribe/Ignored_Events.php:173
3737
  msgid "Migrate Legacy Ignored Events"
@@ -3740,11 +3763,11 @@ msgstr "Ignorierte Veranstaltungen aus dem Altsystem migrieren"
3740
  #: src/Tribe/Ignored_Events.php:172
3741
  msgctxt "link to knowlegebase article"
3742
  msgid "Read more about Ignored Events."
3743
- msgstr "Lies mehr über ignorierte Veranstaltungen."
3744
 
3745
  #: src/Tribe/Ignored_Events.php:171
3746
  msgid "Event Aggregator includes a new, better system for removing unwanted imported events from your calendar. Click the button below to transition previously deleted events. This process will remove unwanted records from your database and include recent or upcoming trashed events in your Ignored archive."
3747
- msgstr "Event Aggregator enthält ein neues, besseres System zum Entfernen unerwünschter importierter Veranstaltungen aus Deinem Kalender. Klicke auf die Schaltfläche unten, um zuvor gelöschte Veranstaltungen zu übernehmen. Dieser Vorgang entfernt unerwünschte Datensätze aus Deiner Datenbank und enthält aktuelle oder kommende gelöschte Veranstaltungen in Deinem Ignorieren-Archiv."
3748
 
3749
  #: src/Tribe/Utils/Radius.php:28
3750
  msgctxt "X (kilometers abbreviation)"
@@ -3802,15 +3825,15 @@ msgstr "Endgültig löschen"
3802
 
3803
  #: src/Tribe/Aggregator.php:443
3804
  msgid "Renew your Event Aggregator Facebook token"
3805
- msgstr "Erneuere Dein Event Aggregator Facebook-Token"
3806
 
3807
  #: src/Tribe/Aggregator.php:438
3808
  msgid "Your Event Aggregator Facebook token will expire %s."
3809
- msgstr "Dein Event Aggregator Facebook-Token läuft am %s ab."
3810
 
3811
  #: src/Tribe/Aggregator.php:436
3812
  msgid "Your Event Aggregator Facebook token expired %s."
3813
- msgstr "Dein Event Aggregator Facebook-Token ist %s abgelaufen."
3814
 
3815
  #: src/Tribe/Aggregator.php:388
3816
  msgid "Successfully connected Event Aggregator to Facebook"
@@ -3818,7 +3841,7 @@ msgstr "Event Aggregator erfolgreich mit Facebook verbunden"
3818
 
3819
  #: src/Tribe/Aggregator.php:358
3820
  msgid "You must use an integer to reduce the daily import limit"
3821
- msgstr "Du musst eine Ganzzahl verwenden, um die tägliche Importgrenze zu reduzieren"
3822
 
3823
  #: src/Tribe/Aggregator.php:93
3824
  msgid "Event Aggregator System Status"
@@ -3826,11 +3849,11 @@ msgstr "Event Aggregator System Status"
3826
 
3827
  #: src/Tribe/Aggregator/Tabs/Scheduled.php:378
3828
  msgid "Enter Event Aggregator License"
3829
- msgstr "Gib die Event Aggregator Lizenz ein"
3830
 
3831
  #: src/Tribe/Aggregator/Tabs/Scheduled.php:372
3832
  msgid "To continue using scheduled imports, please enter a valid Event Aggregator license key under %1$sEvents > Settings > Licenses%2$s."
3833
- msgstr "Um weiterhin geplante Importe verwenden zu können, gib unter %1$sVeranstaltungen > Einstellungen > Lizenzen%2$s einen gültigen Lizenzschlüssel für den Event Aggregator ein."
3834
 
3835
  #: src/Tribe/Aggregator/Tabs/Scheduled.php:367
3836
  msgid "All scheduled imports are currently suspended, and no events will be imported."
@@ -3864,133 +3887,133 @@ msgstr "anstehend: "
3864
  msgid "Scheduled Imports"
3865
  msgstr "Geplante Importe"
3866
 
3867
- #: src/Tribe/Aggregator/Tabs/New.php:603
3868
  msgid "Renew your Event Aggregator license"
3869
- msgstr "Erneuere Deine Event Aggregator Lizenz"
3870
 
3871
- #: src/Tribe/Aggregator/Tabs/New.php:600
3872
  msgid "Renew your license in order to import events from Facebook, iCalendar, Google, or Meetup."
3873
- msgstr "Erneuer Deine Lizenz, um Ereignisse von Facebook, iCalendar, Google oder Meetup zu importieren."
3874
 
3875
- #: src/Tribe/Aggregator/Tabs/New.php:599
3876
  msgid "Your Event Aggregator license is expired."
3877
- msgstr "Deine Event Aggregator Lizenz ist abgelaufen."
3878
 
3879
- #: src/Tribe/Aggregator/Tabs/New.php:551
3880
  msgid "Learn More"
3881
  msgstr "Mehr erfahren"
3882
 
3883
- #: src/Tribe/Aggregator/Tabs/New.php:546 src/Tribe/Aggregator/Tabs/New.php:553
3884
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:19
3885
  msgid "opens in a new window"
3886
  msgstr "öffnet sich in einem neuen Fenster"
3887
 
3888
- #: src/Tribe/Aggregator/Tabs/New.php:544
3889
  msgid "Buy It Now"
3890
  msgstr "Jetzt kaufen"
3891
 
3892
- #: src/Tribe/Aggregator/Tabs/New.php:541
3893
  msgid "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3894
- msgstr "Mit Event Aggregator kannst Du sehr einfach Veranstaltungen von Facebook, iCalendar, Google und Meetup.com importieren."
3895
 
3896
- #: src/Tribe/Aggregator/Tabs/New.php:539
3897
  msgid "Import Using Event Aggregator"
3898
  msgstr "Importieren mit Event Aggregator"
3899
 
3900
- #: src/Tribe/Aggregator/Tabs/New.php:452
3901
  msgid "Unable to save credentials"
3902
  msgstr "Anmeldeinformationen konnten nicht gespeichert werden"
3903
 
3904
- #: src/Tribe/Aggregator/Tabs/New.php:445
3905
  msgid "Credentials have been saved"
3906
  msgstr "Anmeldeinformationen wurden gespeichert"
3907
 
3908
- #: src/Tribe/Aggregator/Tabs/New.php:436
3909
  msgid "The Meetup API key is required."
3910
  msgstr "Der Meetup API Schlüssel ist erforderlich."
3911
 
3912
- #: src/Tribe/Aggregator/Tabs/New.php:427
3913
  msgid "Invalid credential save nonce"
3914
  msgstr "Ungültiger Berechtigungsnachweis (save nonce)"
3915
 
3916
- #: src/Tribe/Aggregator/Tabs/New.php:417
3917
  msgid "Invalid credential save request"
3918
  msgstr "Ungültiger Berechtigungsnachweis (save request)"
3919
 
3920
- #: src/Tribe/Aggregator/Tabs/New.php:405
3921
  msgid "View your scheduled imports."
3922
- msgstr "Deine geplanten Importe anzeigen."
3923
 
3924
- #: src/Tribe/Aggregator/Tabs/New.php:401
3925
  msgid "The next import is scheduled for %1$s."
3926
  msgstr "Der nächste Import ist für %1$s geplant."
3927
 
3928
- #: src/Tribe/Aggregator/Tabs/New.php:394
3929
  msgctxt "separator between date and time"
3930
  msgid " at "
3931
  msgstr "um"
3932
 
3933
- #: src/Tribe/Aggregator/Tabs/New.php:390
3934
  msgid "Your scheduled import was saved and the first import is complete!"
3935
- msgstr "Dein geplanter Import wurde gespeichert und der erste Import abgeschlossen!"
3936
 
3937
- #: src/Tribe/Aggregator/Tabs/New.php:365
3938
  msgid "View your event categories"
3939
  msgstr "Veranstaltungskategorien anzeigen"
3940
 
3941
- #: src/Tribe/Aggregator/Tabs/New.php:361
3942
  msgid "%1$d new event category was created."
3943
  msgid_plural "%1$d new event categories were created."
3944
  msgstr[0] "%1$d neue Ereigniskategorie wurde erstellt."
3945
  msgstr[1] "%1$d neue Ereigniskategorien wurden erstellt."
3946
 
3947
- #: src/Tribe/Aggregator/Tabs/New.php:352
3948
  msgid "View your event organizers"
3949
- msgstr "Deine Veranstalter anzeigen"
3950
 
3951
- #: src/Tribe/Aggregator/Tabs/New.php:348
3952
  msgid "%1$d new organizer was imported."
3953
  msgid_plural "%1$d new organizers were imported."
3954
  msgstr[0] "%1$d neuer Veranstalter wurde importiert."
3955
  msgstr[1] "%1$d neue Veranstalter wurden importiert."
3956
 
3957
- #: src/Tribe/Aggregator/Tabs/New.php:340
3958
  msgid "View your event venues"
3959
  msgstr "Veranstaltungsorte anzeigen"
3960
 
3961
- #: src/Tribe/Aggregator/Tabs/New.php:336
3962
  msgid "%1$d new venue was imported."
3963
  msgid_plural "%1$d new venues were imported."
3964
  msgstr[0] "%1$d neuer Veranstaltungsort wurde importiert."
3965
  msgstr[1] "%1$d neue Veranstaltungsorte wurden importiert."
3966
 
3967
- #: src/Tribe/Aggregator/Tabs/New.php:326
3968
  msgid "View all %s"
3969
  msgstr "Alle %s ansehen"
3970
 
3971
- #: src/Tribe/Aggregator/Tabs/New.php:318
3972
  msgid "No %1$s were imported or updated."
3973
  msgstr "Es wurden keine %1$s importiert oder aktualisiert."
3974
 
3975
- #: src/Tribe/Aggregator/Tabs/New.php:311
3976
  msgid "%1$d new image was imported."
3977
  msgid_plural "%1$d new images were imported."
3978
  msgstr[0] " %1$d neues Bild importiert."
3979
  msgstr[1] " %1$d neue Bilder importiert."
3980
 
3981
- #: src/Tribe/Aggregator/Tabs/New.php:302
3982
  msgid "%1$d already-imported %2$s was skipped."
3983
  msgid_plural "%1$d already-imported %2$s were skipped."
3984
  msgstr[0] "%1$d bereits importierte %2$s wurde übersprungen."
3985
  msgstr[1] "%1$d bereits importierten %2$s wurden übersprungen."
3986
 
3987
- #: src/Tribe/Aggregator/Tabs/New.php:291
3988
  msgid "%1$d existing %2$s was updated."
3989
  msgid_plural "%1$d existing %2$s were updated."
3990
  msgstr[0] "%1$d vorhandene %2$s wurde aktualisiert."
3991
  msgstr[1] "%1$d vorhandene %2$s wurden aktualisiert."
3992
 
3993
- #: src/Tribe/Aggregator/Tabs/New.php:279
3994
  msgid "%1$d new %2$s was imported."
3995
  msgid_plural "%1$d new %2$s were imported."
3996
  msgstr[0] "%1$d neuer %2$s wurde importiert."
@@ -4019,7 +4042,7 @@ msgstr "Bevorzugte Importe"
4019
 
4020
  #: src/Tribe/Aggregator/Tabs/Edit.php:143
4021
  msgid "Your Scheduled Import has been updated!"
4022
- msgstr "Dein geplanter Import wurde aktualisiert!"
4023
 
4024
  #: src/Tribe/Aggregator/Tabs/Edit.php:137
4025
  msgid "View All Scheduled Imports"
@@ -4035,27 +4058,27 @@ msgstr "Bearbeite Import"
4035
 
4036
  #: src/Tribe/Aggregator/Tabs/Abstract.php:195
4037
  msgid "Please provide a Meetup URL when importing from Meetup."
4038
- msgstr "Bitte gib die Meetup URL an, um von Meetup zu importieren."
4039
 
4040
  #: src/Tribe/Aggregator/Tabs/Abstract.php:185
4041
  msgid "Please provide a Facebook URL when importing from Facebook."
4042
- msgstr "Bitte gib die Facebook URL an, um von Facebook zu importieren."
4043
 
4044
  #: src/Tribe/Aggregator/Tabs/Abstract.php:239
4045
  msgid "Please provide the URL that you wish to import."
4046
- msgstr "Bitte gib die URL an, die Du importieren möchtest."
4047
 
4048
  #: src/Tribe/Aggregator/Tabs/Abstract.php:180
4049
  msgid "Please provide the file that you wish to import."
4050
- msgstr "Bitte gib die Datei an, die Du importieren möchten."
4051
 
4052
  #: src/Tribe/Aggregator/Tabs/Abstract.php:59
4053
  msgid "There was a problem processing your import. Please try again."
4054
- msgstr "Beim Bearbeiten Deines Imports ist ein Problem aufgetreten. Bitte erneut versuchen."
4055
 
4056
  #: src/Tribe/Aggregator/Service.php:193
4057
  msgid "Connection timed out while transferring the feed. If you are dealing with large feeds you may need to customize the tribe_aggregator_connection_timeout filter."
4058
- msgstr "Zeitüberschreitung beim Übertragen des Feeds. Wenn Du mit großen Feeds zu tun haben, musst Du möglicherweise den tribe aggregator connection_timeout Filter anpassen."
4059
 
4060
  #: src/Tribe/Aggregator/Service.php:696
4061
  msgid "Import queued"
@@ -4091,27 +4114,27 @@ msgstr "Der Import ist in Arbeit."
4091
 
4092
  #: src/Tribe/Aggregator/Service.php:686
4093
  msgid "Event Aggregator cannot reach Meetup.com because you exceeded the request limit for your Meetup API key."
4094
- msgstr "Event Aggregator kann Meetup.com nicht erreichen, da Du das Anforderungslimit für Deinen Meetup API-Schlüssel überschritten haben."
4095
 
4096
  #: src/Tribe/Aggregator/Service.php:685
4097
  msgid "Your Meetup API key is invalid."
4098
- msgstr "Dein Meetup API Schlüssel ist ungültig."
4099
 
4100
  #: src/Tribe/Aggregator/Service.php:684
4101
  msgid "The file provided could not be opened. Please confirm that it is a properly formatted .ics file."
4102
- msgstr "Die bereitgestellte Datei konnte nicht geöffnet werden. Bitte bestätige, dass es sich um richtig formatierte ICS Datei handelt."
4103
 
4104
  #: src/Tribe/Aggregator/Service.php:682
4105
  msgid "The import failed for an unknown reason. Please try again. If the problem persists, please contact support."
4106
- msgstr "Der Import ist aus einem unbekannten Grund fehlgeschlagen. Bitte erneut versuchen. Wenn das Problem weiter existiert kontaktiere den Support."
4107
 
4108
  #: src/Tribe/Aggregator/Service.php:681
4109
  msgid "The image associated with your event is not accessible with your API key."
4110
- msgstr "Das mit Deiner Veranstaltung verknüpfte Bild ist nicht mit Deinem API-Schlüssel zugänglich."
4111
 
4112
  #: src/Tribe/Aggregator/Service.php:680
4113
  msgid "The image associated with your event could not be imported."
4114
- msgstr "Die Grafik, welche mit Deiner Veranstaltung verknüpft ist, konnte nicht importiert werden."
4115
 
4116
  #: src/Tribe/Aggregator/Service.php:679
4117
  msgid "The URL provided failed to load."
@@ -4123,7 +4146,7 @@ msgstr "Die zur Verfügung gestellte URL konnte nicht erreicht werden."
4123
 
4124
  #: src/Tribe/Aggregator/Service.php:674
4125
  msgid "Events cannot be imported because Facebook has returned an error. This could mean that the event ID does not exist, the event or source is marked as Private, or the event or source has been otherwise restricted by Facebook. You can <a href=\"https://theeventscalendar.com/knowledgebase/import-errors/\" target=\"_blank\">read more about Facebook restrictions in our knowledgebase</a>."
4126
- msgstr "Veranstaltungen können nicht importiert werden, da Facebook einen Fehler zurückgegeben hat. Dies kann bedeuten, dass die Veranstaltungs-ID nicht vorhanden ist, die Veranstaltung oder die Quelle als privat markiert ist oder die Veranstaltung oder die Quelle ansonsten durch Facebook eingeschränkt wurde. Lies mehr über <a href=\"https://theeventscalendar.com/knowledgebase/import-errors/\" target=\"_blank\">Facebook-Einschränkungen in unserer Wissensdatenbank</a>."
4127
 
4128
  #: src/Tribe/Aggregator/Service.php:672
4129
  msgid "Sorry, but something went wrong. Please try again."
@@ -4254,9 +4277,9 @@ msgstr "Aggregator Datensätze"
4254
  msgid "Events Aggregator Record"
4255
  msgstr "Veranstaltungen Aggregator Datensatz "
4256
 
4257
- #: src/Tribe/Aggregator/Record/Queue_Realtime.php:178
4258
  msgid "Unable to continue inserting data. Please reload this page to continue/try again."
4259
- msgstr "Es ist nicht möglich Daten einzufügen. Bitte lade diese Seite, um fortzufahren bzw. es erneut zu versuchen."
4260
 
4261
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:97
4262
  msgid "Skipped:"
@@ -4272,89 +4295,89 @@ msgstr "Erstellt:"
4272
 
4273
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:91
4274
  msgid "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4275
- msgstr "Dein Import wird gerade ausgeführt. Mache Dir keine Sorgen, Du kannst sicher weg navigieren; der Import wird im Hintergrund fortgesetzt"
4276
 
4277
- #: src/Tribe/Aggregator/Record/Queue_Processor.php:234
4278
  msgid "Could not process queue for Import Record %1$d: %2$s"
4279
  msgstr "Die Warteschlange für Import-Datensatz %1$d (%2$s) konnte nicht verarbeitet werden"
4280
 
4281
- #: src/Tribe/Aggregator/Record/List_Table.php:657
4282
  msgid "Select %s"
4283
  msgstr "%s auswählen"
4284
 
4285
- #: src/Tribe/Aggregator/Record/List_Table.php:622
4286
- #: src/Tribe/Aggregator/Record/List_Table.php:631
4287
- #: src/Tribe/Aggregator/Record/List_Table.php:639
4288
  msgid "updated"
4289
  msgstr "aktualisiert"
4290
 
4291
- #: src/Tribe/Aggregator/Record/List_Table.php:620
4292
- #: src/Tribe/Aggregator/Record/List_Table.php:628
4293
- #: src/Tribe/Aggregator/Record/List_Table.php:636
4294
  msgid "new"
4295
  msgstr "neu"
4296
 
4297
- #: src/Tribe/Aggregator/Record/List_Table.php:617
4298
  msgid "Latest Import:"
4299
  msgstr "Letzter Import:"
4300
 
4301
- #: src/Tribe/Aggregator/Record/List_Table.php:615
4302
  msgid "all time"
4303
  msgstr "Jedes Mal"
4304
 
4305
- #: src/Tribe/Aggregator/Record/List_Table.php:589
4306
  msgid "One Time"
4307
  msgstr "Einmalig"
4308
 
4309
- #: src/Tribe/Aggregator/Record/List_Table.php:586
4310
  msgid "Invalid Frequency"
4311
  msgstr "Ungültige Häufigkeit"
4312
 
4313
- #: src/Tribe/Aggregator/Record/List_Table.php:556 src/Tribe/Aggregator.php:426
4314
  #: src/Tribe/Ignored_Events.php:357
4315
  #: src/admin-views/tribe-options-addons-api.php:36
4316
  msgctxt "in human readable time"
4317
  msgid "in about %s"
4318
  msgstr "in etwa %s"
4319
 
4320
- #: src/Tribe/Aggregator/Record/List_Table.php:554 src/Tribe/Aggregator.php:424
4321
  #: src/Tribe/Ignored_Events.php:355
4322
  #: src/admin-views/tribe-options-addons-api.php:34
4323
  msgctxt "human readable time ago"
4324
  msgid "about %s ago"
4325
  msgstr "etwa vor %s"
4326
 
4327
- #: src/Tribe/Aggregator/Record/List_Table.php:506
4328
  msgid "Radius:"
4329
  msgstr "Radius:"
4330
 
4331
- #: src/Tribe/Aggregator/Record/List_Table.php:489
4332
  msgid "Keywords:"
4333
  msgstr "Schlüsselbegriffe:"
4334
 
4335
- #: src/Tribe/Aggregator/Record/List_Table.php:476
4336
  #: src/Tribe/Ignored_Events.php:337
4337
  msgctxt "record via origin"
4338
  msgid "via "
4339
  msgstr "via "
4340
 
4341
- #: src/Tribe/Aggregator/Record/List_Table.php:433
4342
  msgid "Import preview"
4343
  msgstr "Import Vorschau"
4344
 
4345
- #: src/Tribe/Aggregator/Record/List_Table.php:429
4346
  msgid "Import pending"
4347
  msgstr "Import ausstehend"
4348
 
4349
- #: src/Tribe/Aggregator/Record/List_Table.php:425
4350
  msgid "Import schedule"
4351
  msgstr "Import Zeitplan"
4352
 
4353
- #: src/Tribe/Aggregator/Record/List_Table.php:413
4354
  msgid "Import failed"
4355
  msgstr "Import fehlgeschlagen"
4356
 
4357
- #: src/Tribe/Aggregator/Record/List_Table.php:409
4358
  msgid "Import completed"
4359
  msgstr "Import abgeschlossen"
4360
 
@@ -4439,11 +4462,11 @@ msgstr "ICS"
4439
  msgid "Eventbrite"
4440
  msgstr "Eventbrite"
4441
 
4442
- #: src/Tribe/Aggregator/Record/Abstract.php:1148
4443
  msgid "Deleted Attachment: %d"
4444
  msgstr "Gelöschter Anhang:%d"
4445
 
4446
- #: src/Tribe/Aggregator/Record/Abstract.php:496
4447
  msgid "Record: "
4448
  msgstr "Datensatz:"
4449
 
@@ -4454,31 +4477,31 @@ msgstr "Aktive Plugins verwalten"
4454
  #: src/Tribe/Aggregator/Page.php:412
4455
  msgid "It looks like you are using our legacy plugin, %1$s, along with our new Event Aggregator service. Event Aggregator includes all the features of the legacy plugin plus enhanced functionality. For best results, please deactivate %1$s."
4456
  msgid_plural "It looks like you are using our legacy plugins, %1$s and %2$s, along with our new Event Aggregator service. Event Aggregator includes all the features of the legacy plugins plus enhanced functionality. For best results, please deactivate %1$s and %2$s."
4457
- msgstr[0] "Es sieht so aus, als ob Du unser veraltetes Plugin, %1$s zusammen mit unserem neuen Event Aggregator Dienst verwendest. Event Aggregator enthält alle Funktionen des alten Plugins und verbesserte Funktionalität. Für beste Ergebnisse deaktiviere bitte %1$s."
4458
- msgstr[1] "Es sieht so aus, als ob Du unser veraltetes Plugin, %1$s und %2$s zusammen mit unserem neuen Event Aggregator Dienst verwendest. Event Aggregator enthält alle Funktionen des alten Plugins und verbesserte Funktionalität. Für beste Ergebnisse deaktiviere bitte %1$s und %2$s."
4459
 
4460
  #: src/Tribe/Aggregator/Page.php:102
4461
  msgid "Your preview is taking a bit longer than expected, but it <i>is</i> still being generated."
4462
- msgstr "Deine Vorschau dauert ein bisschen länger als erwartet, aber sie <i>wird</i> immer noch erzeugt."
4463
 
4464
  #: src/Tribe/Aggregator/Page.php:101
4465
  msgid "If all goes according to plan, you will have your preview in a few moments."
4466
- msgstr "Wenn alles nach Plan geht, siehst Du die Vorschau in wenigen Augenblicken."
4467
 
4468
  #: src/Tribe/Aggregator/Page.php:100
4469
  msgid "Please continue to wait while your preview is generated."
4470
- msgstr "Bitte weiter warten, während Deine Vorschau erstellt wird."
4471
 
4472
  #: src/Tribe/Aggregator/Page.php:99
4473
  msgid "Please wait while your preview is fetched."
4474
- msgstr "Bitte warten, während Deine Vorschau abgerufen wird."
4475
 
4476
  #: src/Tribe/Aggregator/Page.php:97
4477
  msgid "Hide Filters"
4478
  msgstr "Filter verstecken"
4479
 
4480
  #: src/Tribe/Aggregator/Page.php:96
4481
- #: src/Tribe/Aggregator/Record/List_Table.php:485
4482
  msgid "View Filters"
4483
  msgstr "Filter anzeigen"
4484
 
@@ -4488,11 +4511,11 @@ msgstr "Durch das Entfernen dieses geplanten Importvorgangs werden automatische
4488
 
4489
  #: src/Tribe/Aggregator/Page.php:94
4490
  msgid "Your preview doesn't have any records to import."
4491
- msgstr "Deine Vorschau enthält keine Datensätze, die importiert werden könnten."
4492
 
4493
  #: src/Tribe/Aggregator/Page.php:93
4494
  msgid "Your import must include at least one event"
4495
- msgstr "Dein Import muss mindestens eine Veranstaltung enthalten"
4496
 
4497
  #: src/Tribe/Aggregator/Page.php:91
4498
  msgid "Save Scheduled Import"
@@ -4512,11 +4535,11 @@ msgstr "Importiere alle (%d)"
4512
 
4513
  #: src/Tribe/Aggregator/Page.php:86
4514
  msgid "There was an error fetching the results from your import:"
4515
- msgstr "Es gab einen Fehler beim Abrufen der Ergebnisse aus Deinem Import:"
4516
 
4517
  #: src/Tribe/Aggregator/Page.php:85
4518
  msgid "The preview is taking longer than expected. Please try again in a moment."
4519
- msgstr "Die Vorschau dauert länger als erwartet. Bitte versuche es später nochmal."
4520
 
4521
  #: src/Tribe/Aggregator/Page.php:84
4522
  msgctxt "Meridian: pm"
@@ -4530,7 +4553,7 @@ msgstr "AM"
4530
 
4531
  #: src/Tribe/Aggregator/Migrate.php:435
4532
  msgid "Success! The settings from iCal Importer have been migrated to Event Aggregator. You can view your migrated imports on the Scheduled Imports tab."
4533
- msgstr "Die Einstellungen des iCal Importers wurden erfolgreich in den Event Aggregator importiert. Du kannst Deine migrierten Importe im geplanten Importe Register anschauen."
4534
 
4535
  #: src/Tribe/Aggregator/Migrate.php:379
4536
  msgid "We did not find any iCal Importer settings to migrate."
@@ -4538,15 +4561,15 @@ msgstr "Es wurden keine iCal Importer Einstellungen gefunden, die migriert werde
4538
 
4539
  #: src/Tribe/Aggregator/Migrate.php:372
4540
  msgid "You do not have permission to migrate iCal Importer settings to Event Aggregator"
4541
- msgstr "Du bist nicht berechtigt, die Einstellungen von iCal Importer auf Event Aggregator zu migrieren"
4542
 
4543
  #: src/Tribe/Aggregator/Migrate.php:365
4544
  msgid "Error: we were not able to migrate your iCal Importer settings to Event Aggregator. Please try again later."
4545
- msgstr "Fehler: Deine iCal Importer-Einstellungen konnten nicht auf Event Aggregator migriert werden. Bitte versuche es später erneut."
4546
 
4547
  #: src/Tribe/Aggregator/Migrate.php:348
4548
  msgid "Success! The settings from Facebook Events have been migrated to Event Aggregator. You can view your migrated imports on the Scheduled Imports tab."
4549
- msgstr "Erfolgreich abgeschlossen! Die Einstellungen von Facebook Events wurden zu Event Aggregator migriert. Du kannst Deine migrierten Importe auf der Registerkarte Geplante Importe anzeigen."
4550
 
4551
  #: src/Tribe/Aggregator/Migrate.php:294
4552
  msgid "We did not find any Facebook Events settings to migrate."
@@ -4554,11 +4577,11 @@ msgstr "Es wurden keine Facebook Events-Einstellungen gefunden, die migriert wer
4554
 
4555
  #: src/Tribe/Aggregator/Migrate.php:287
4556
  msgid "You do not have permission to migrate Facebook Events settings to Event Aggregator"
4557
- msgstr "Du hast keine Berechtigung, die Facebook Veranstaltungseinstellungen zu Event Aggregator zu migrieren"
4558
 
4559
  #: src/Tribe/Aggregator/Migrate.php:280
4560
  msgid "Error: we were not able to migrate your Facebook Events settings to Event Aggregator. Please try again later."
4561
- msgstr "Fehler: Wir konnten Deine Facebook Veranstaltungseinstellungen nicht zu Event Aggregator migrieren. Bitte versuche es später erneut."
4562
 
4563
  #: src/Tribe/Aggregator/Migrate.php:80
4564
  msgid "Migrate iCal Importer settings"
@@ -4578,7 +4601,7 @@ msgstr "Importierte Veranstaltung"
4578
 
4579
  #: src/Tribe/Aggregator/Errors.php:73
4580
  msgid "The records you were attempting to import were still not available when this queue was processed. Please try again."
4581
- msgstr "Die Datensätze, die Du importieren wollten, waren noch nicht verfügbar, als diese Warteschlange verarbeitet wurde. Bitte erneut versuchen."
4582
 
4583
  #: src/Tribe/Aggregator/Errors.php:72
4584
  msgid "Unable to save scheduled import. Please try again."
@@ -4594,20 +4617,20 @@ msgstr "Import-Datensätze müssen finalisiert werden, bevor Beiträge eingefüg
4594
 
4595
  #: src/Tribe/Aggregator/Errors.php:69
4596
  msgid "The CSV file cannot be found. You may need to re-upload the file."
4597
- msgstr "Die CSV Datei wurde nicht gefunden. Du musst die Datei erneut hochladen."
4598
 
4599
  #: src/Tribe/Aggregator/Errors.php:68
4600
  msgid "You must map columns from the CSV file to specific fields in order to perform a CSV import."
4601
- msgstr "Du musst Spalten aus der CSV-Datei bestimmten Feldern zuordnen, um einen CSV-Import durchzuführen."
4602
 
4603
  #: src/Tribe/Aggregator/Errors.php:65 src/Tribe/Aggregator/Service.php:210
4604
  #: src/Tribe/Aggregator/Service.php:217
4605
  msgid "There may be an issue with the Event Aggregator server. Please try your import again later."
4606
- msgstr "Möglicherweise liegt ein Problem mit dem Event Aggregator-Server vor. Bitte versuche den Import später erneut."
4607
 
4608
  #: src/Tribe/Aggregator/Errors.php:64
4609
  msgid "You must enter an Event Aggregator license key in Events > Settings > Licenses before using this service."
4610
- msgstr "Du musst einen Event Aggregator Lizenzschlüssel in Veranstaltungen > Einstellungen > Lizenzen eingeben, bevor Du diesen Dienst verwenden kannst."
4611
 
4612
  #: src/Tribe/Aggregator/Errors.php:63
4613
  msgid "Unable to get a post of the correct type."
@@ -4639,7 +4662,7 @@ msgstr "Es wurde ein ungültiger Facebook Token vom Service empfangen."
4639
 
4640
  #: src/Tribe/Aggregator/Errors.php:56
4641
  msgid "The Event Aggregator API responded with bad data. Please <a href=\"https://theeventscalendar.com/support/post/\" target=\"_blank\">contact support</a>."
4642
- msgstr "Die Aggregator-API reagierte mit fehlerhaften Daten. Bitte <a href=\"https://theeventscalendar.com/support/post/\" target=\"_blank\">kontaktiere den Support</a>."
4643
 
4644
  #: src/Tribe/Aggregator/Errors.php:55
4645
  msgid "Unable to find an event with the ID of %s."
@@ -4655,7 +4678,7 @@ msgstr "Es wurden ungültige Daten für den CSV Import bereitgestellt."
4655
 
4656
  #: src/Tribe/Aggregator/Errors.php:52
4657
  msgid "You must provide a valid CSV file to perform a CSV import."
4658
- msgstr "Du musst eine gültige CSV Datei bereitstellen, um einen CSV Import durchzuführen."
4659
 
4660
  #: src/Tribe/Aggregator/Errors.php:51
4661
  msgid "An invalid import type was used when trying to create this import record."
@@ -4667,15 +4690,15 @@ msgstr "Beim geplanten Import wurde das Limit von HTTP-Anfragen erreicht und der
4667
 
4668
  #: src/Tribe/Aggregator/Errors.php:48
4669
  msgid "You do not have permission to delete this record."
4670
- msgstr "Du hast keine Berechtigung, um diesen Datensatz zu löschen."
4671
 
4672
  #: src/Tribe/Aggregator/Errors.php:47
4673
  msgid "You cannot delete a history record (ID: \"%d\"). "
4674
- msgstr "Du kannst einen Verlaufsdatensatz nicht löschen (ID: \"%d\")."
4675
 
4676
  #: src/Tribe/Aggregator/Errors.php:46 src/Tribe/Aggregator/Service.php:687
4677
  msgid "The daily limit of %d import requests to the Event Aggregator service has been reached. Please try again later."
4678
- msgstr "Das Tageslimit von %d Importanforderungen an den Event Aggregator Service wurde erreicht. Bitte versuche es später erneut."
4679
 
4680
  #: src/Tribe/Aggregator/Errors.php:45
4681
  msgid "The image associated with your event could not be attached to the event."
@@ -4747,19 +4770,19 @@ msgstr "Alle %s"
4747
 
4748
  #: common/src/admin-views/tribe-options-licenses.php:30
4749
  msgid "Not seeing an update but expecting one? In WordPress, go to %1$sDashboard > Updates%2$s and click \"Check Again\"."
4750
- msgstr "Du erwartest ein Update, aber es erscheint keines? Gehe in WordPress zu %1$sDashboard > Update%2$s und klicke auf \"Erneut prüfen\"."
4751
 
4752
  #: common/src/admin-views/tribe-options-licenses.php:25
4753
  msgid "If you're seeing a red message telling you that your key isn't valid or is out of installs, visit %1$s to manage your installs or renew / upgrade your license."
4754
- msgstr "Wenn Du eine rote Meldung siehst, dass Dein Schlüssel nicht gültig ist oder nicht installiert ist, besuche %1$s, um Deine Installationen zu verwalten oder Deine Lizenz zu aktualisieren."
4755
 
4756
  #: common/src/admin-views/tribe-options-licenses.php:22
4757
  msgid "Each paid add-on has its own unique license key. Simply paste the key into its appropriate field below, and give it a moment to validate. You know you're set when a green expiration date appears alongside a \"valid\" message."
4758
- msgstr "Jedes bezahlte Add-On hat seinen eigenen Lizenzschlüssel. Füge einfach den Schlüssel in das entsprechende Feld unten ein und gib ihm einen Moment zu validieren. Wenn es funktioniert hat, erscheint ein grünes Ablaufdatum neben einer gültigen Meldung."
4759
 
4760
  #: common/src/admin-views/tribe-options-licenses.php:15
4761
  msgid "The license key you received when completing your purchase from %1$s will grant you access to support and updates until it expires. You do not need to enter the key below for the plugins to work, but you will need to enter it to get automatic updates. %3$sFind your license keys at %2$s%4$s."
4762
- msgstr "Der Lizenzschlüssel, den Du nach Abschluss des Kaufs von %1$s erhalten hast, gewährt Dir Zugriff auf Support und Updates, bis er abläuft. Du musst den Schlüssel unten nicht eingeben, damit die Plugins funktionieren, aber Du musst ihn eingeben, um automatische Updates zu erhalten. %3$sDu findest Deine Lizenzschlüssel unter %2$s%4$s."
4763
 
4764
  #: common/src/admin-views/tribe-options-licenses.php:11
4765
  #: common/src/admin-views/tribe-options-licenses.php:16
@@ -4772,11 +4795,11 @@ msgstr "Veranstaltungsprotokoll"
4772
 
4773
  #: common/src/admin-views/tribe-options-help.php:42
4774
  msgid "The details of your calendar plugin and settings is often needed for you or our staff to help troubleshoot an issue. Please opt-in below to automatically share your system information with our support team. This will allow us to assist you faster if you post in our help desk."
4775
- msgstr "Die Details Deines Kalender-Plugins und die Einstellungen werden oft für Dich oder unsere Mitarbeiter benötigt, um ein Problem zu beheben. Bitte melde Dich an, um Deine Systeminformationen automatisch mit unserem Support-Team zu teilen. Dieses erlaubt uns, Dich schneller zu unterstützen, wenn Du in unseren Foren postest."
4776
 
4777
  #: common/src/admin-views/app-shop.php:26
4778
  msgid "Buy This Add-On"
4779
- msgstr "Kaufe dieses Add-On"
4780
 
4781
  #: common/src/admin-views/app-shop.php:5
4782
  msgid "Browse All Add-Ons"
@@ -4804,7 +4827,7 @@ msgstr "Ungültiger Schlüssel"
4804
 
4805
  #: common/src/Tribe/Support.php:306
4806
  msgid "Your system information will only be used by the Modern Tribe support team. All information is stored securely. We do not share this information with any third parties."
4807
- msgstr "Deine Systeminformationen werden nur vom Modern Tribe Support Team verwendet. Alle Informationen werden sicher gespeichert. Wir geben diese Informationen nicht an Dritte weiter."
4808
 
4809
  #: common/src/Tribe/Support.php:305
4810
  msgid "Yes, automatically share my system information with the Modern Tribe support team"
@@ -4818,25 +4841,25 @@ msgstr "%1$s und %2$s"
4818
  #: common/src/Tribe/PUE/Notices.php:302
4819
  msgid "You have a license key for %1$s but the key is out of installs. %2$sVisit the Events Calendar website%3$s to manage your installs, upgrade your license, or purchase a new one."
4820
  msgid_plural "You have license keys for %1$s but your keys are out of installs. %2$sVisit the Events Calendar website%3$s to manage your installs, upgrade your licenses, or purchase new ones."
4821
- msgstr[0] "Du hast einen Lizenzschlüssel für %1$s eingegeben, aber der Schlüssel wird schon verwendet. %2$sBesuche die Events Calendar Website%3$s, um Deine Installationen zu verwalten, Deine Lizenz zu aktualisieren oder eine neue zu kaufen."
4822
- msgstr[1] "Du hast Lizenzschlüssel für %1$s eingegeben, aber der Schlüssel wird schon verwendet. %2$sBesuche die Events Calendar Website%3$s, um Deine Installationen zu verwalten, Deine Lizenz zu aktualisieren oder eine neue zu kaufen."
4823
 
4824
  #: common/src/Tribe/PUE/Notices.php:270
4825
  msgid "There is an update available for %1$s but your license has expired. %2$sVisit the Events Calendar website to renew your license.%3$s"
4826
  msgid_plural "Updates are available for %1$s but your license keys have expired. %2$sVisit the Events Calendar website to renew your licenses.%3$s"
4827
- msgstr[0] "Für %1$s steht ein Update zur Verfügung, aber Dein Lizenzschlüssel ist abgelaufen. %2$sBesuche die Events Calendar Website, um Deine Lizenz zu verlängern.%3$s"
4828
- msgstr[1] "Für %1$s steht ein Update zur Verfügung, aber Dein Lizenzschlüssel ist abgelaufen. %2$sBesuche die Events Calendar Website, um DeineLizenz zu verlängern.%3$s"
4829
 
4830
  #: common/src/Tribe/PUE/Checker.php:1054
4831
  msgid "There is an update for %s. %sRenew your license%s to get access to bug fixes, security updates, and new features."
4832
- msgstr "Es gibt ein Update für %s. %sErneuer Deine Lizenz%s, um Zugriff auf Fehlerkorrekturen, Sicherheitsupdates und neue Funktionen zu erhalten."
4833
 
4834
  #: common/src/Tribe/PUE/Checker.php:997
4835
  msgid "There is an update for %s. You'll need to %scheck your license%s to have access to updates, downloads, and support."
4836
- msgstr "Es gibt ein Update für %s. Bitte %süberprüfe Deine Lizenz%s, um Zugriff auf Fehlerkorrekturen, Sicherheitsupdates und neue Funktionen zu erhalten."
4837
 
4838
  #: common/src/Tribe/PUE/Checker.php:961 common/src/Tribe/PUE/Notices.php:285
4839
- #: src/Tribe/Aggregator/Record/Abstract.php:1163
4840
  msgid " (opens in a new window)"
4841
  msgstr "(öffnet in einem neuen Fenster)"
4842
 
@@ -4928,7 +4951,7 @@ msgstr "iCal Importer"
4928
 
4929
  #: common/src/Tribe/Plugins_API.php:116
4930
  msgid "The Eventbrite Tickets add-on allows you to create & sell tickets through The Events Calendar using the power of %1$sEventbrite%2$s. Whether you’re creating your ticket on the WordPress dashboard or importing the details of an already-existing event from %1$sEventbrite.com%2$s, this add-on brings the power of the Eventbrite API to your calendar."
4931
- msgstr "Das %1$sEventbrite Ticket Add-On%2$s ermöglicht das Erstellen und Verkaufen von Karten mit The Events Calendar. Egal ob Du eine Karte im Wordpress Dashboard erstellst oder die Details einer bereits bestehenden Veranstaltung von %1$sEventbrite.com%2$s importierst, die Eventbrite Schnittstelle hilft dabei."
4932
 
4933
  #: common/src/Tribe/Plugins_API.php:105
4934
  msgctxt "Names of required plugins for Community Tickets"
@@ -4937,7 +4960,7 @@ msgstr "Event Tickets Plus and Community Events"
4937
 
4938
  #: common/src/Tribe/Plugins_API.php:104
4939
  msgid "Enable Community Events organizers to offer tickets to their events. You can set flexible payment and fee options. They can even check-in attendees to their events! All of this managed from the front-end of your site without ever needing to grant access to your admin"
4940
- msgstr "Aktiviere Community Events Tickets, um Karten für Deine Veranstaltungen zu verkaufen. Du kannst flexible Zahlungs- und Gebührenoptionen verwenden. Du kannst sogar die Teilnehmer zu Deinen Veranstaltungen einchecken! Dies ist alles vom Front-End Deiner Website möglich, ohne jemandem Admin Zugang zu Deiner Website zu gewähren."
4941
 
4942
  #: common/src/Tribe/Plugins_API.php:48
4943
  msgid "The Events Calendar PRO is a paid Add-On to our open source WordPress plugin %1$sThe Events Calendar%2$s. PRO offers a whole host of calendar features including recurring events, custom event attributes, saved venues and organizers, venue pages, advanced event admin and lots more."
@@ -4945,7 +4968,7 @@ msgstr "Der Events Calendar PRO ist ein kostenpflichtiges Add-On für unser Open
4945
 
4946
  #: common/src/Tribe/Plugins_API.php:84
4947
  msgid "It is awesome that your calendar is <em>THE PLACE</em> to get hooked up with prime choice ways to spend time. You have more events than Jabba the Hutt has rolls. Too bad visitors are hiring a personal assistant to go through all the choices. Ever wish you could just filter the calendar to only show events in walking distance, on a weekend, that are free? BOOM. Now you can. Introducing… the Filter Bar."
4948
- msgstr "Es ist großartig, dass Dein Kalender <em>DER PLATZ</em> für Premium Verkäufe ist. Du hast mehr Veranstaltungen als Rihanna? Schade nur, dass Besucher einen persönlichen Assistenten benötigen, um sich durch die ganzen Angebote zu wühlen. Willst Du Deine Veranstaltungen filtern, z.B. nach Entfernung, nur am Wochenende oder kostenlose Events? Dann nutze The Filter Bar!"
4949
 
4950
  #: common/src/Tribe/Admin/Help_Page.php:227 common/src/Tribe/Plugins_API.php:80
4951
  msgid "Filter Bar"
@@ -4953,11 +4976,11 @@ msgstr "Filter Bar"
4953
 
4954
  #: common/src/Tribe/Credits.php:64
4955
  msgid "Rate %1$sEvent Tickets%2$s %3$s"
4956
- msgstr "Bewerte %1$sEvent Tickets%2$s %3$s"
4957
 
4958
  #: common/src/Tribe/Credits.php:55
4959
  msgid "Rate %1$sThe Events Calendar%2$s %3$s"
4960
- msgstr "Bewerte %1$sThe Events Calendar%2$s %3$s"
4961
 
4962
  #: src/Tribe/Organizer.php:184
4963
  msgid "organizer"
@@ -5036,7 +5059,7 @@ msgstr "Hier klicken"
5036
 
5037
  #: src/Tribe/Google/Maps_API_Key.php:63
5038
  msgid "<p>%s to create your Google Maps API key."
5039
- msgstr "<p>%s um Deinen Google Maps API Schlüssel zu erstellen."
5040
 
5041
  #: src/Tribe/Google/Maps_API_Key.php:55 src/Tribe/Google/Maps_API_Key.php:62
5042
  msgid "Google Maps API key"
@@ -5137,7 +5160,7 @@ msgstr "Vorlagen eingeführt oder aktualisiert mit dieser Version (%s):"
5137
  msgid "No notable changes detected"
5138
  msgstr "Keine nennenswerten Änderungen erkannt"
5139
 
5140
- #: src/Tribe/Main.php:2735
5141
  msgid " (View Full %1$s Description Here: %2$s)"
5142
  msgstr "(Komplette %1$s Beschreibung anschauen: %2$s)"
5143
 
@@ -5183,149 +5206,149 @@ msgstr "%s Name darf nicht leer sein"
5183
 
5184
  #: src/admin-views/admin-update-message.php:32
5185
  msgid "Keep the Core Plugin %sFREE%s!"
5186
- msgstr "Halte das Plugin 'The Events Calendar' %skostenlos%s!"
5187
 
5188
- #: src/Tribe/Template_Factory.php:300
5189
  msgid "No results were found for %1$s in or near %2$s."
5190
  msgstr "Es wurden keine Ergebnisse für %1$s in oder in der Nähe von %2$s gefunden."
5191
 
5192
- #: src/Tribe/Template_Factory.php:298
5193
  msgid "There were no results found for %s."
5194
  msgstr "Es wurden keine Ergebnisse für %s gefunden."
5195
 
5196
- #: src/Tribe/Template/Month.php:456
5197
  msgid "There were no results found for %s this month. Try searching next month."
5198
  msgstr "Es gibt keine Ergebnisse für %s für diesen Monat. Bitte den nächsten Monat durchsuchen."
5199
 
5200
- #: src/Tribe/Template/Day.php:153
5201
  msgid "No %1$s scheduled for %2$s. Please try another day."
5202
  msgstr "Es sind keine %1$s für den %2$s geplant. Bitte einen anderen Tag wählen."
5203
 
5204
- #: src/Tribe/Main.php:4254
5205
  msgid "Check out the %savailable add-ons%s."
5206
- msgstr "Schaue Dir die %sverfügbaren Add-Ons%s an."
5207
 
5208
- #: src/Tribe/Main.php:1923
5209
  msgid "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5210
- msgstr "Ohne einen definierten Ort werden Deine Veranstaltungen nicht als %sGoogle Rich Snippet%s in den Suchergebnissen angezeigt"
5211
 
5212
- #: src/Tribe/Main.php:1854 src/Tribe/Main.php:1874
5213
  msgid "%1$s scheduled for: %2$s."
5214
  msgstr "%1$s geplant für: %2$s."
5215
 
5216
- #: src/Tribe/Main.php:1835
5217
  msgid "%1$s draft updated. %2$sPreview %3$s"
5218
  msgstr "%1$s Entwurf aktualisiert.. %2$sVorschau %3$s"
5219
 
5220
- #: src/Tribe/Main.php:1826
5221
  msgid "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5222
  msgstr "%1$s geplant für: %2$s. %3$sVorschau %4$s"
5223
 
5224
- #: src/Tribe/Main.php:1820
5225
  msgid "%1$s submitted. %2$sPreview %3$s"
5226
  msgstr "%1$s übermittelt. %2$sVorschau %3$s"
5227
 
5228
- #: src/Tribe/Main.php:1802
5229
  msgid "%1$s updated. %2$sView %1$s%3$s"
5230
  msgstr "%1$s aktualisiert. %2$s%1$s anzeigen%3$s"
5231
 
5232
- #: src/Tribe/Main.php:1477
5233
  msgid "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5234
  msgstr "Die tribe-common Bibliotheken konnten nicht gefunden werden! Das Verzeichnis sollte im \"common/\" Verzeichnis im Events Calendar Plugin sein."
5235
 
5236
- #: src/Tribe/Main.php:1112
5237
  msgid "If you have a valid license for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5238
- msgstr "Wenn Du eine gültige Lizenz für eines unserer Bezahl-Plugins haben, kannst Du in unserem Support Forum %s. Unser Support Team prüft die Foren und wird wochentags innerhalb von 24-48 Stunden auf Deine Anfrage reagieren."
5239
 
5240
- #: src/Tribe/Main.php:1111
5241
  msgid "post a thread"
5242
  msgstr "Diskutiere mit"
5243
 
5244
- #: src/Tribe/Main.php:1107
5245
  msgid "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays."
5246
- msgstr "<strong>Du benötigst schnelle Unterstützung?</strong> Wir bieten %1$s mit dem Kauf eines unserer Premium Plugins (wie %2$s). Erwirb eine Lizenz und Du kannst direkt hier eine Anfrage stellen. Wochentags reagieren wir innerhalb von 24-48 Stunden."
5247
 
5248
- #: src/Tribe/Main.php:1103
5249
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5250
- msgstr "Wenn Du die Schritte oben versucht hast und immer noch Probleme auftreten, kannst Du eine Anfrage in unserem %s stellen. Unser Support Team prüft diese Foren einmal wöchentlich und hilft Dir gerne weiter"
5251
 
5252
- #: src/Tribe/Main.php:1102
5253
  msgid "open-source forum on WordPress.org"
5254
  msgstr "Open Source Forum auf WordPress.org"
5255
 
5256
- #: src/Tribe/Main.php:1098
5257
  msgid "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays"
5258
- msgstr "<strong>Benötigst Du eine schnellere Unterstützung?</strong> Wir bieten %s mit dem Kauf eines unserer Premium Plugins. Wähle eine Lizenz und Du kannst dort direkt Deine Frage stellen und erhältst innerhalb von 24-48 Stunden wochentags eine Antwort"
5259
 
5260
- #: src/Tribe/Main.php:1097 src/Tribe/Main.php:1105
5261
  msgid "premium support on our website"
5262
  msgstr "Premium Support auf unserer Website"
5263
 
5264
- #: src/Tribe/Main.php:1095
5265
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5266
- msgstr "Wenn Du die Schritte oben schon versucht und immer noch Probleme hast, kannst Du eine neue Anfrage in unseren Wordpress.org Foren für %1$s und %2$s stellen. Unser Support Team überprüft diese Foren einmal wöchentlich und hilft Dir gerne weiter."
5267
 
5268
- #: src/Tribe/Main.php:1094
5269
  msgid "Events Tickets"
5270
  msgstr "Events Tickets"
5271
 
5272
- #: src/Tribe/Main.php:1079
5273
  msgid "Customizing the Events plugins"
5274
  msgstr "Die Veranstaltung Plugins anpassen"
5275
 
5276
- #: src/Tribe/Main.php:1079
5277
  msgid "%s: Code and guides for customizing your calendar in useful and interesting ways."
5278
- msgstr "%s: Code und Anleitungen, um Deinen Kalender auf sinnvolle und interessante Weise anzupassen"
5279
 
5280
- #: src/Tribe/Main.php:1077
5281
  msgid "Troubleshooting common problems"
5282
  msgstr "Lösung allgemeiner Probleme"
5283
 
5284
- #: src/Tribe/Main.php:1077
5285
  msgid "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5286
- msgstr "%s: Hast Du einen Fehler in unserem Kalender entdeckt? Klicke hier um herauszufinden, woher er kommt und wie er gelöst werden kann."
5287
 
5288
- #: src/Tribe/Main.php:1075
5289
  msgid "Using stylesheets and page templates"
5290
  msgstr "Nutze Stylesheets und Seitenvorlagen"
5291
 
5292
- #: src/Tribe/Main.php:1075
5293
  msgid "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5294
  msgstr "%s: Ein Überblick über die Standard Vorlagen und Designs, welche im Plugin enthalten sind und wie man diese anpassen kann."
5295
 
5296
- #: src/Tribe/Main.php:1073
5297
  msgid "Themer’s Guide"
5298
  msgstr "Themer’s Guide"
5299
 
5300
- #: src/Tribe/Main.php:1073
5301
  msgid "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5302
- msgstr "%s: Unser umfassendster Führer, um den Kalender an Deine Bedürfnisse anzupassen, inklusive individuellen Layouts und Designs."
5303
 
5304
- #: src/Tribe/Main.php:1071
5305
  msgid "Features overview"
5306
  msgstr "Übersicht der Features"
5307
 
5308
- #: src/Tribe/Main.php:1071
5309
  msgid "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5310
- msgstr "%s: Eine komplette Übersicht der Funktionen, welche Dich erwarten und wie sie benutzt werden können."
5311
 
5312
- #: src/Tribe/Main.php:1069
5313
  msgid "Settings overview"
5314
  msgstr "Übersicht Einstellungen"
5315
 
5316
- #: src/Tribe/Main.php:1069
5317
  msgid "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5318
- msgstr "%s: Eine uneingeschränkte Besichtigung des Events Calendar und seiner Einstellungen sind für Dich verfügbar."
5319
 
5320
- #: src/Tribe/Main.php:1066
5321
  msgid "Support for The Events Calendar"
5322
  msgstr "Unterstützung für The Events Calendar"
5323
 
5324
- #: src/Tribe/Main.php:1055
5325
  msgid "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5326
- msgstr "Wir möchten, dass Dein Kalender spektakulär wird und haben viele Hilfmittel dafür verfügbar, inklusive bequeme %s um Deinen Kalender in Gang zu bringen."
5327
 
5328
- #: src/Tribe/Main.php:1053
5329
  msgid "New User Primer"
5330
  msgstr "Primer für neue Nutzer"
5331
 
@@ -5348,9 +5371,9 @@ msgstr "Standard Status für importierte Veranstaltungen"
5348
  msgid "CSV Import Settings"
5349
  msgstr "CSV Import Einstellungen"
5350
 
5351
- #: src/Tribe/Asset/Bootstrap_Datepicker.php:26
5352
  msgid "Clear"
5353
- msgstr "Klar"
5354
 
5355
  #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:257
5356
  msgid "Add another %s"
@@ -5360,7 +5383,7 @@ msgstr "Weitere %s hinzufügen"
5360
  msgid "Create New %s"
5361
  msgstr "Neue %s erstellen"
5362
 
5363
- #: src/Tribe/Organizer.php:371
5364
  msgid "Unnamed %s"
5365
  msgstr "Unbenannte(r) %s"
5366
 
@@ -5370,15 +5393,15 @@ msgstr "Nur Lizenzen für %1$sNetzwerk aktivierte%2$s Plugins werden auf dieser
5370
 
5371
  #: common/src/admin-views/tribe-options-help.php:38
5372
  msgid "Read more about our support policy"
5373
- msgstr "Erfahre mehr über unsere Support Richtlinien "
5374
 
5375
  #: common/src/admin-views/tribe-options-help.php:37
5376
  msgid "Please note that all hands-on support is provided via the help desk. You can email or tweet at us… ​but we will probably point you back to the help desk 😄"
5377
- msgstr "Bitte beachte, dass jeglicher Support über das Forum erfolgt. Du kannst uns mailen oder tweeten ... aber wir werden Dich wieder auf das Forum verweisen 😄"
5378
 
5379
  #: common/src/admin-views/tribe-options-help.php:33
5380
  msgid "%s. There are very few issues we haven’t seen and it’s likely another user has already asked your question and gotten an answer from our support staff. While posting to the help desk is open only to paid customers, they are open for anyone to search and review."
5381
- msgstr "%s. Es gibt wenige Probleme, welche wir noch nicht gesehen haben und es ist sehr wahrscheinlich, dass Deine Frage schon gestellt und von unserem Supportpersonal beantwortet wurde. Auch wenn neue Fragen nur durch zahlende Kunden gestellt werden können, kann es von jedem durchsucht und angeschaut werden."
5382
 
5383
  #: common/src/admin-views/tribe-options-help.php:32
5384
  msgid "Test for a theme or plugin conflict"
@@ -5386,7 +5409,7 @@ msgstr "Auf einen Theme oder Plugin Konflikt prüfen."
5386
 
5387
  #: common/src/admin-views/tribe-options-help.php:32
5388
  msgid "%s. Testing for an existing conflict is the best start for in-depth troubleshooting. We will often ask you to follow these steps when opening a new thread, so doing this ahead of time will be super helpful."
5389
- msgstr "%s. Auf einen besteheneden Konflikt zu überprüfen ist der beste Start für eine gründliche Untersuchung. Wir werden Dich oft bitten diesen Schritte durchzuführen, wenn Du eine neue Anfrage stellst. Daher ist es sehr hilfreich, wenn Du dies schon im voraus erledigst."
5390
 
5391
  #: common/src/admin-views/tribe-options-help.php:31
5392
  msgid "Check our Knowledgebase"
@@ -5398,7 +5421,7 @@ msgstr "%s. Alle allgemeinen (und weniger allgemeinen) Antworten auf Fragen sind
5398
 
5399
  #: common/src/admin-views/tribe-options-help.php:27
5400
  msgid "While the resources above help solve a majority of the issues we see, there are times you might be looking for extra support. If you need assistance using our plugins and would like us to take a look, please follow these steps:"
5401
- msgstr "Während die Hilfmittel oben eine Vielzahl von Problemen, die wir kennen, lösen, wird manchmal zusätzlicher Support benötigt. Wenn Du Unterstützung beim Nutzen unserer Plugins benötigst und wir helfen sollen, folge bitte diesen Schritten:"
5402
 
5403
  #: common/src/admin-views/tribe-options-help.php:26
5404
  msgid "Getting More Help"
@@ -5422,19 +5445,19 @@ msgstr "Unterstützung erhalten"
5422
 
5423
  #: common/src/admin-views/tribe-options-help.php:11
5424
  msgid "Thank you for using %s! All of us at Modern Tribe sincerely appreciate your support and we’re excited to see you using our plugins."
5425
- msgstr "Danke, dass Du %s nutzt! Wir von Modern Tribe freuen uns über Deine Unterstützung und dass Du unsere Plugins nutzt."
5426
 
5427
  #: common/src/admin-views/tribe-options-general.php:15
5428
  msgid "Optimize your site's event listings with %1$sThe Events Calendar%2$s, our free calendar plugin. Looking for additional functionality including recurring events, user-submission, advanced ticket sales and more? Check out our %3$spremium add-ons%4$s."
5429
- msgstr "Optimiere die Anzeige Deiner Veranstaltungen mit %1$sThe Events Calendar%2$s, unserem kostenfreien Kalender Plugin. Benötigst Du weitere Funktionen inklusive Serientermine, Kartenverkauf, öffentliche Veranstaltungserstellung, neue Ansichten und mehr? Schaue Dir unsere %3$sPremium Add-Ons%4$s an."
5430
 
5431
  #: common/src/admin-views/tribe-options-general.php:10
5432
  msgid "Thank you for using Event Tickets! All of us at Modern Tribe sincerely appreciate your support and we're excited to see you using our plugins. Check out our handy %1$sNew User Primer%2$s to get started."
5433
- msgstr "Danke, dass Du Event Tickets nutzt! Wir schätzen Deine Unterstützung sehr und freuen uns, dass Du unsere Plugins nutzt. Schaue Dir unseren praktischen %1$sNew User Primer%2$s an, um durchzustarten."
5434
 
5435
  #: src/admin-views/tribe-options-display.php:72
5436
  msgid "Enter the format to use for displaying dates with the year. Used when displaying a date in a future year."
5437
- msgstr "Gib das Format für die Anzeige eines Datum inkl. Jahr ein. Wird verwendet, wenn ein Datum in einem zukünftigen Jahr angezeigt wird."
5438
 
5439
  #: common/src/Tribe/PUE/Checker.php:932
5440
  msgid "Thanks for setting up a valid key. It will expire on %s"
@@ -5504,7 +5527,7 @@ msgstr "und"
5504
 
5505
  #: common/src/Tribe/Admin/Help_Page.php:95
5506
  msgid "Turbo charge your posts admin for any custom post type with sortable filters and columns, and auto-registration of metaboxes."
5507
- msgstr "Versehe Deine individuellen Artikel Typen mit sortierbaren Filtern und Spalten und Auto-Registrierung von Metaboxen."
5508
 
5509
  #: common/src/Tribe/Admin/Help_Page.php:91
5510
  msgid "Advanced Post Manager"
@@ -5512,7 +5535,7 @@ msgstr "Advanced Post Manager"
5512
 
5513
  #: common/src/Tribe/Admin/Help_Page.php:79
5514
  msgid "Events Tickets is a carefully crafted, extensible plugin that lets you easily sell tickets for your events."
5515
- msgstr "Events Tickets ist ein sorgfältig ausgearbeitetes, erweiterbares Plugin, dass dich auf einfach Weise Tickets für deine Veranstaltungen verkaufen lässt."
5516
 
5517
  #: common/src/Tribe/Admin/Help_Page.php:75 common/src/Tribe/Plugins_API.php:57
5518
  msgid "Event Tickets"
@@ -5520,7 +5543,7 @@ msgstr "Event Tickets"
5520
 
5521
  #: common/src/Tribe/Admin/Help_Page.php:63
5522
  msgid "The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events."
5523
- msgstr "The Events Calendar ist ein sorgfältig entwickeltes, erweiterbares Plugin, mit dem du leicht deine Veranstaltungen teilen kannst."
5524
 
5525
  #: src/views/month/single-day.php:47
5526
  msgid "View %1$s %2$s"
@@ -5548,7 +5571,7 @@ msgstr "Abbrechen"
5548
  msgid "%s must be a positive number or percent."
5549
  msgstr "%s muss eine positive Zahl oder ein Prozentwert sein."
5550
 
5551
- #: src/Tribe/Main.php:1000
5552
  msgid "%1$s or %2$s"
5553
  msgstr "%1$s von %2$s"
5554
 
@@ -5562,7 +5585,7 @@ msgstr "Modern Tribe, Inc."
5562
 
5563
  #. Description of the plugin/theme
5564
  msgid "The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events. Beautiful. Solid. Awesome."
5565
- msgstr "The Events Calendar ist ein sorgfältig entwickeltes, erweiterbares Plugin, mit dem du leicht deine Veranstaltungen teilen kannst. Schön. Stabil. Beeindruckend."
5566
 
5567
  #: src/views/widgets/list-widget.php:118
5568
  msgid "There are no upcoming %s at this time."
@@ -5599,13 +5622,13 @@ msgstr "%s Listen Navigation"
5599
  #: src/views/day/single-event.php:82 src/views/day/single-featured.php:76
5600
  #: src/views/list/single-event.php:92 src/views/list/single-featured.php:78
5601
  msgid "Find out more"
5602
- msgstr "Mehr erfahren"
5603
 
5604
  #: src/views/day/nav.php:17
5605
  msgid "Day Navigation"
5606
  msgstr "Tagesnavigation"
5607
 
5608
- #: src/Tribe/Aggregator/Tabs/New.php:388
5609
  msgid "Import complete!"
5610
  msgstr "Import abgeschlossen!"
5611
 
@@ -5640,11 +5663,11 @@ msgstr "Einstellungen importieren"
5640
 
5641
  #: src/functions/template-tags/options.php:29
5642
  msgid "You %1$scannot%2$s use the same slug as above. The above should ideally be plural, and this singular.%3$sYour single Event URL is like: %4$s"
5643
- msgstr "Du %1$skannst nicht%2$s die gleiche URL wie oben nutzen. Idealerweise sollte die obere im Plural und diese im Singular stehen.%3$sDeine Einzelveranstaltungs-URL lautet: %4$s"
5644
 
5645
  #: src/functions/template-tags/options.php:20
5646
  msgid "Your current Events URL is %s"
5647
- msgstr "Deine aktuelle Veranstaltungs-URL ist %s"
5648
 
5649
  #: src/functions/template-tags/loop.php:204
5650
  msgid "Past %s"
@@ -5687,8 +5710,8 @@ msgstr "Schlagworte:"
5687
  msgctxt "category list label"
5688
  msgid "%s Category"
5689
  msgid_plural "%s Categories"
5690
- msgstr[0] "%skategorie"
5691
- msgstr[1] "%skategorien"
5692
 
5693
  #: src/functions/template-tags/deprecated.php:1299
5694
  msgid "Category"
@@ -5720,7 +5743,7 @@ msgstr "Details"
5720
 
5721
  #: src/admin-views/widget-admin-list.php:31
5722
  msgid "Show widget only if there are upcoming events"
5723
- msgstr "Das Widget nur anzeigen, wenn es bevorstehende Veranstaltungen gibt"
5724
 
5725
  #: src/admin-views/widget-admin-list.php:18
5726
  msgid "Show:"
@@ -5779,11 +5802,11 @@ msgstr "Zeitzone anzeigen"
5779
 
5780
  #: src/admin-views/tribe-options-timezones.php:43
5781
  msgid "Use the site-wide time zone everywhere"
5782
- msgstr "Nutze überall die seitenweite Zeitzone"
5783
 
5784
  #: src/admin-views/tribe-options-timezones.php:42
5785
  msgid "Use manual time zones for each event"
5786
- msgstr "Nutze die lokalen Zeitzonen für jede Veranstaltung"
5787
 
5788
  #: src/admin-views/tribe-options-timezones.php:38
5789
  msgid "Time zone mode"
@@ -5795,7 +5818,7 @@ msgstr "Zeitzonen Einstellung"
5795
 
5796
  #: src/admin-views/tribe-options-timezones.php:10
5797
  msgid "Click this button to update your database and take advantage of additional time zone capabilities. Please <a href=\"%s\" target=\"_blank\">configure WordPress</a> to use the correct time zone before clicking this button!"
5798
- msgstr "Klicke diesen Button an, um mehrere Zeitzonen (u.a. im Formular für die Übermittlung von neuen Veranstaltungen) in Deinem Kalender nutzen zu können. Bitte <a href=\"%s\" target=\"_blank\">konfiguriere in WordPress</a> die korrekte Zeitzone, bevor Du diesen Button anklickst!"
5799
 
5800
  #: src/admin-views/tribe-options-timezones.php:9
5801
  msgid "Update Time Zone Data"
@@ -5819,7 +5842,7 @@ msgstr "Netzwerkeinstellungen"
5819
 
5820
  #: common/src/admin-views/tribe-options-licenses.php:38
5821
  msgid "%1$s Using our plugins in a multisite network? %2$s Please note that your license key will be applied to the entire network, not just this site."
5822
- msgstr "%1$s Nutze unser Plugin in einem Multisite Netzwerk? %2$s Bitte beachte, dass der Lizenzschlüssel für das gesamte Netzwerk angewendet wird, nicht nur für diese Seite."
5823
 
5824
  #: common/src/admin-views/tribe-options-help.php:74
5825
  msgid "News and Tutorials"
@@ -5847,18 +5870,18 @@ msgid "More..."
5847
  msgstr "Mehr..."
5848
 
5849
  #: common/src/Tribe/Admin/Help_Page.php:194 common/src/Tribe/Plugins_API.php:43
5850
- #: src/Tribe/Main.php:1106
5851
  msgid "Events Calendar PRO"
5852
  msgstr "Events Calendar PRO"
5853
 
5854
  #: common/src/Tribe/Admin/Help_Page.php:413
5855
  #: common/src/Tribe/Admin/Help_Page.php:788
5856
  msgid "You are up to date!"
5857
- msgstr "Du bist auf dem neuesten Stand!"
5858
 
5859
  #: common/src/Tribe/Admin/Help_Page.php:413
5860
  msgid "You need to upgrade!"
5861
- msgstr "Du musst updaten!"
5862
 
5863
  #: common/src/Tribe/Admin/Help_Page.php:405
5864
  msgctxt "not available"
@@ -5871,7 +5894,7 @@ msgstr "Debug Bar Plugin"
5871
 
5872
  #: common/src/admin-views/tribe-options-general.php:59
5873
  msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the %s and look for the \"Tribe\" tab in the debug output."
5874
- msgstr "Aktiviere die Option, um Debuginformationen mit zu loggen. Standardmäßig werden die Informationen in Dein PHP Server Error Log geschrieben. Wenn Du die Debuginfos in Deinem Browser sehen möchten, empfehlen wir das %s zu installieren. Die Ausgabe der Debuginfos findest Du im \"Tribe\" Tab."
5875
 
5876
  #: common/src/admin-views/tribe-options-general.php:53
5877
  msgid "Debug mode"
@@ -5897,7 +5920,7 @@ msgstr "Willkommensseite anzeigen"
5897
 
5898
  #: src/admin-views/tribe-options-general.php:161
5899
  msgid "You might find duplicate venues and organizers when updating The Events Calendar from a pre-3.0 version. Click this button to automatically merge identical venues and organizers."
5900
- msgstr "Du kannst nach Duplikaten von Veranstaltungsorten und Veranstaltern suchen. Klicke den Button und es werden exakt gleiche (!) Veranstaltungsorte und Veranstalter (alle Felder werden vollständig verglichen!) zusammengeführt."
5901
 
5902
  #: src/admin-views/tribe-options-general.php:161
5903
  msgid "Duplicate Venues &amp; Organizers"
@@ -5937,7 +5960,7 @@ msgstr "Währung nach dem Betrag anzeigen"
5937
 
5938
  #: src/admin-views/tribe-options-general.php:147
5939
  msgid "Set the default currency symbol for event costs. Note that this only impacts future events, and changes made will not apply retroactively."
5940
- msgstr "Lege die Standard Währung für die Veranstaltungspreise fest. Bitte beachte, dass dies nur zukünftige Veranstaltungen betrifft und nicht vergangene Verstaltungen beeinflußt."
5941
 
5942
  #: src/admin-views/tribe-options-general.php:146
5943
  msgid "Default currency symbol"
@@ -5945,7 +5968,7 @@ msgstr "Standard Währung"
5945
 
5946
  #: src/admin-views/tribe-options-general.php:141
5947
  msgid "Have an event that runs past midnight? Select a time after that event's end to avoid showing the event on the next day's calendar."
5948
- msgstr "Hast Du Veranstaltungen, die nach Mitternacht enden? Wähle eine Zeit nach dem Veranstaltungsende, um zu vermeiden, dass die Veranstaltung im Kalender des nächsten Tages angezeigt wird."
5949
 
5950
  #: src/admin-views/tribe-options-general.php:120
5951
  msgid "End of day cutoff"
@@ -5953,7 +5976,7 @@ msgstr "Neuer Tag ab"
5953
 
5954
  #: src/admin-views/tribe-options-general.php:115
5955
  msgid "The above should ideally be plural, and this singular.<br />Your single event URL is: %s"
5956
- msgstr "Die obere sollte idealer Weise im Plural geschrieben werden, diese im Singular.<br />Deine URL für einzelne Veranstaltungen lautet: %s"
5957
 
5958
  #: src/admin-views/tribe-options-general.php:108
5959
  msgid "Single event URL slug"
@@ -5962,7 +5985,7 @@ msgstr "Die URL für einzelne Veranstaltungen"
5962
  #: src/admin-views/tribe-options-general.php:103
5963
  #: src/functions/template-tags/options.php:39
5964
  msgid "Here is the iCal feed URL for your events:"
5965
- msgstr "Hier befindet sich die iCal Feed URL für Deine Veranstaltungen:"
5966
 
5967
  #: src/admin-views/tribe-options-general.php:98
5968
  msgid "Your current events URL is: %s"
@@ -5971,12 +5994,12 @@ msgstr "Die aktuelle URL für Veranstaltungen ist: %s"
5971
  #: src/admin-views/tribe-options-general.php:98
5972
  #: src/functions/template-tags/options.php:20
5973
  msgid "The slug used for building the events URL."
5974
- msgstr "Die Titelform (Permalink) für die Veranstaltungs-URL."
5975
 
5976
  #: src/admin-views/tribe-options-general.php:75
5977
  #: src/admin-views/tribe-options-general.php:91
5978
  msgid "Events URL slug"
5979
- msgstr "URL-Titelform (Permalink) für Veranstaltungen"
5980
 
5981
  #: src/admin-views/tribe-options-general.php:69
5982
  msgid "Show events with the site's other posts. When this box is checked, events will also continue to appear on the default events page."
@@ -6016,7 +6039,7 @@ msgstr "Dies ist ein Beispiellink"
6016
 
6017
  #: common/src/admin-views/tribe-options-general.php:30
6018
  msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text-only link at the bottom of your calendar pointing to The Events Calendar project."
6019
- msgstr "Du findest: \"Wow, das Plugin ist fantastisch! Ich sollte Modern Tribe dafür danken!\" Der beste Dank ist ein kleiner Textlink zu uns am unteren Ende des Veranstaltungskalenders."
6020
 
6021
  #: common/src/admin-views/tribe-options-general.php:25
6022
  msgid "We hope our plugin is helping you out."
@@ -6024,11 +6047,11 @@ msgstr "Wir hoffen, das Plugin gefällt Ihnen."
6024
 
6025
  #: common/src/admin-views/tribe-options-general.php:20
6026
  msgid "Check out the available add-ons"
6027
- msgstr "Schaue Dir die verfügbaren Erweiterungen an"
6028
 
6029
  #: common/src/admin-views/tribe-options-general.php:20
6030
  msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
6031
- msgstr "Wünschst Du Dir erweiterte Funktionalität, einschließlich wiederkehrender Veranstaltungen, benutzerdefinierten Meta-Informationen, Community-Veranstaltungen, Ticketverkäufen und mehr?"
6032
 
6033
  #: src/admin-views/tribe-options-general.php:23
6034
  msgid "Right here"
@@ -6040,15 +6063,15 @@ msgstr "Wo ist mein Kalender?"
6040
 
6041
  #: src/admin-views/tribe-options-general.php:18
6042
  msgid "Finding your calendar."
6043
- msgstr "Deinen Kalender finden."
6044
 
6045
  #: src/admin-views/tribe-options-general.php:13
6046
  msgid "Finding & extending your calendar."
6047
- msgstr "Deinen Kalender finden und erweitern."
6048
 
6049
  #: src/admin-views/tribe-options-display.php:221
6050
  msgid "If you are familiar with HTML, you can add additional code after the event template. Some themes may require this to help with styling or layout."
6051
- msgstr "Wenn Du mit HTML vertraut bist, kannst Du Code HINTER der Veranstaltungsvorlage einfügen. Bei einigen Themes kann dies für Anpassungen am Layout und Design notwendig sein."
6052
 
6053
  #: src/admin-views/tribe-options-display.php:220
6054
  msgid "Add HTML after event content"
@@ -6056,7 +6079,7 @@ msgstr "Folgender HTML-Code wird NACH der Veranstaltung hinzugefügt"
6056
 
6057
  #: src/admin-views/tribe-options-display.php:215
6058
  msgid "If you are familiar with HTML, you can add additional code before the event template. Some themes may require this to help with styling or layout."
6059
- msgstr "Wenn Du mit HTML vertraut bist, kannst Du Code VOR der Veranstaltungsvorlage einfügen. Bei einigen Themes kann dies für Anpassungen am Layout und Design notwendig sein."
6060
 
6061
  #: src/admin-views/tribe-options-display.php:214
6062
  msgid "Add HTML before event content"
@@ -6068,7 +6091,7 @@ msgstr "Erweiterte Vorlagen Einstellungen"
6068
 
6069
  #: common/src/admin-views/tribe-options-display.php:37
6070
  msgid "Select the date format to use in datepickers"
6071
- msgstr "Wähle das Datumsformat, welches bei der Datumwahl (\"Datepicker\") verwendet wird."
6072
 
6073
  #: common/src/admin-views/tribe-options-display.php:36
6074
  msgid "Datepicker Date Format"
@@ -6076,7 +6099,7 @@ msgstr "Datumswahl Format (\"Datepicker\")"
6076
 
6077
  #: src/admin-views/tribe-options-display.php:118
6078
  msgid "Enter the separator that will be used between the start and end time of an event."
6079
- msgstr "Gib das Trennzeichen ein, das die Start- und Ende Uhrzeit einer Veranstaltung trennt."
6080
 
6081
  #: src/admin-views/tribe-options-display.php:117
6082
  msgid "Time range separator"
@@ -6084,7 +6107,7 @@ msgstr "Zeitraum Trennzeichen"
6084
 
6085
  #: src/admin-views/tribe-options-display.php:80
6086
  msgid "Enter the separator that will be placed between the date and time, when both are shown."
6087
- msgstr "Gib das Trennzeichen ein, das Datum und Uhrzeit trennt, wenn beides angezeigt wird."
6088
 
6089
  #: src/admin-views/tribe-options-display.php:79
6090
  msgid "Date time separator"
@@ -6092,7 +6115,7 @@ msgstr "Datum Zeit Trennzeichen"
6092
 
6093
  #: src/admin-views/tribe-options-display.php:103
6094
  msgid "Enter the format to use for dates that show a month and year only. Used on month view."
6095
- msgstr "Gib das Format ein, das für die Anzeige eines Datum, bei dem nur der Monat und das Jahr angezeigt wird. Wird bei der Monatsansicht verwendet."
6096
 
6097
  #: src/admin-views/tribe-options-display.php:102
6098
  msgid "Month and year format"
@@ -6100,7 +6123,7 @@ msgstr "Monat und Jahr Format"
6100
 
6101
  #: src/admin-views/tribe-options-display.php:95
6102
  msgid "Enter the format to use for displaying dates without a year. Used when showing an event from the current year."
6103
- msgstr "Gib das Format ein, das für die Anzeige eines Datum ohne Jahresangabe verwendet werden soll. Wird benutzt, wenn eine aktuelle Veranstaltung angezeigt wird."
6104
 
6105
  #: src/admin-views/tribe-options-display.php:94
6106
  msgid "Date without year"
@@ -6148,7 +6171,7 @@ msgstr "Veranstaltungsansicht wählen"
6148
 
6149
  #: src/admin-views/tribe-options-display.php:157
6150
  msgid "Choose a page template to control the appearance of your calendar and event content."
6151
- msgstr "Wähle eine Seitenvorlage für die Darstellung des Veranstaltungskalenders."
6152
 
6153
  #: src/admin-views/tribe-options-display.php:156
6154
  msgid "Events template"
@@ -6156,7 +6179,7 @@ msgstr "Veranstaltungsvorlage"
6156
 
6157
  #: src/admin-views/tribe-options-display.php:149
6158
  msgid "A fully designed and styled theme for your events pages."
6159
- msgstr "Ein komplett designter Theme für Deine Veranstaltungsseite."
6160
 
6161
  #: src/admin-views/tribe-options-display.php:147
6162
  msgid "Tribe Events Styles"
@@ -6164,7 +6187,7 @@ msgstr "Tribe Event Style"
6164
 
6165
  #: src/admin-views/tribe-options-display.php:145
6166
  msgid "More detailed styling, tries to grab styles from your theme."
6167
- msgstr "Aufwändigere Darstellung. Nutzt CSS Deines Themes."
6168
 
6169
  #: src/admin-views/tribe-options-display.php:143
6170
  msgid "Full Styles"
@@ -6286,7 +6309,7 @@ msgstr "URL:"
6286
  msgid "%s Website"
6287
  msgstr "%s Website"
6288
 
6289
- #: src/Tribe/Aggregator/Record/List_Table.php:502
6290
  msgid "Location:"
6291
  msgstr "Ort:"
6292
 
@@ -6297,7 +6320,7 @@ msgstr "TT.MM.JJJJ"
6297
 
6298
  #: src/admin-views/events-meta-box.php:69
6299
  msgid "You have changed the recurrence rules of this %1$s. Saving the %1$s will update all future %2$s. If you did not mean to change all %2$s, then please refresh the page."
6300
- msgstr "Du hast die Wiederholrate dieser %1$s geändert. Wenn Du die %1$s speicherst, werden alle zukünftigen %2$s ebenfalls geändert. Wenn alle zukünftigen %2$s NICHT geändert werden sollen, bitte die Seite neu laden."
6301
 
6302
  #: src/admin-views/events-meta-box.php:52
6303
  msgid "Time &amp; Date"
@@ -6321,7 +6344,7 @@ msgstr "Produkt Releases, Tutorials und Community Aktivitäten"
6321
 
6322
  #: src/admin-views/admin-welcome-message.php:51
6323
  msgid "Get the Skinny on the Latest Updates"
6324
- msgstr "Erhalte Infos über die aktuellen Updates"
6325
 
6326
  #: src/admin-views/admin-welcome-message.php:50
6327
  msgid "Release Notes"
@@ -6345,7 +6368,7 @@ msgstr "Auf der Suche nach neuen Funktionen?"
6345
 
6346
  #: src/admin-views/admin-welcome-message.php:41
6347
  msgid "Check out the New User Primer &amp; Tutorials"
6348
- msgstr "Schaue in das Handbuch für neue Nutzer."
6349
 
6350
  #: src/admin-views/admin-welcome-message.php:40
6351
  msgid "Getting Started"
@@ -6396,7 +6419,7 @@ msgstr "Wir versenden Rabatte an unsere Stammkunden via Newsletter."
6396
 
6397
  #: src/admin-views/admin-update-message.php:37
6398
  msgid "PSST... Want a Discount?"
6399
- msgstr "Psst - willst Du einen Rabatt erhalten?"
6400
 
6401
  #: src/admin-views/admin-update-message.php:34
6402
  #: src/admin-views/admin-welcome-message.php:22
@@ -6405,12 +6428,12 @@ msgstr "Bewerten"
6405
 
6406
  #: src/admin-views/admin-update-message.php:33
6407
  msgid "Every time you rate %s5 stars%s, a fairy is born. Okay maybe not, but more happy users mean more contributions and help on the forums. The community NEEDS your voice."
6408
- msgstr "Jedes Mal, wenn Du eine %s5 Sterne%s Bewertung abgibst wird eine Fee geboren. Vielleicht auch nicht, aber mehr glückliche Nutzer bedeuten mehr Unterstützung und Hilfe in den Foren. Die Community BENÖTIGT Deine Stimme."
6409
 
6410
  #: src/admin-views/admin-update-message.php:9
6411
  #: src/admin-views/admin-welcome-message.php:11
6412
  msgid "You are running Version %s and deserve a hug :-)"
6413
- msgstr "Du nutzt Version %s - herzlichen Dank! :-)"
6414
 
6415
  #: src/Tribe/iCal.php:142
6416
  msgid "Use this to share calendar data with Google Calendar, Apple iCal and other compatible apps"
@@ -6661,7 +6684,7 @@ msgstr "Westsahara"
6661
 
6662
  #: common/src/Tribe/Languages/Locations.php:293
6663
  msgid "Wallis and Futuna Islands"
6664
- msgstr "Wallis und Futuna"
6665
 
6666
  #: common/src/Tribe/Languages/Locations.php:292
6667
  msgid "Virgin Islands (U.S.)"
@@ -6781,7 +6804,7 @@ msgstr "Swasiland"
6781
 
6782
  #: common/src/Tribe/Languages/Locations.php:263
6783
  msgid "Svalbard and Jan Mayen Islands"
6784
- msgstr "Svalbard und Jan Mayen Islands"
6785
 
6786
  #: common/src/Tribe/Languages/Locations.php:262
6787
  msgid "Suriname"
@@ -7691,44 +7714,44 @@ msgstr "Template Overrides müssen in das richtige Unterverzeichnis verschoben w
7691
  msgid "Template overrides should be moved to the correct subdirectory: %s"
7692
  msgstr "Vorlage sollte in das richtige Unterverzeichnis verschoben werden: %s"
7693
 
7694
- #: src/Tribe/Template_Factory.php:306
7695
  msgid "No previous %s "
7696
  msgstr "Keine vorherige %s"
7697
 
7698
- #: src/Tribe/Template_Factory.php:304 src/Tribe/Template_Factory.php:309
7699
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7700
- msgstr "Keine anstehenden %1$s für %2$s gefunden. Versuche alle Veranstaltungen anzuzeigen (Filter aufheben) für eine komplette Anzeige von %3$s."
7701
 
7702
- #: src/Tribe/Template_Factory.php:302
7703
  msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7704
- msgstr "Keine anstehenden %1$s für %2$s gefunden. Versuche anstehende %3$s für diese Kategorie oder zeige alle Veranstaltungen an (Filter aufheben)."
7705
 
7706
  #: src/Tribe/Template/Embed.php:59 src/Tribe/Template/Single_Event.php:119
7707
  msgid "This %s has passed."
7708
  msgstr "Diese %s hat bereits stattgefunden."
7709
 
7710
- #: src/Tribe/Template/Month.php:953
7711
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7712
  msgstr "Das abgefragte Datum \"%s\" war nicht g&uuml;ltig &ndash; der aktuelle Monat wird stattdessen angezeigt"
7713
 
7714
- #: src/Tribe/Template/Month.php:462 src/Tribe/Template_Factory.php:311
7715
  msgid "There were no results found."
7716
  msgstr "Es wurden keine Ergebnisse gefunden."
7717
 
7718
- #: src/Tribe/Template/Month.php:460
7719
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7720
- msgstr "Keine passenden %1$s gefunden für %2$s. Bitte versuche alle Veranstaltungen anzuzeigen (Filter aufheben)."
7721
 
7722
- #: src/Tribe/Template/Day.php:151
7723
  msgid "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7724
- msgstr "Keine passenden %1$s gefunden am %2$s für %3$s. Wähle bitte einen anderen Tag."
7725
 
7726
- #: src/Tribe/Template/Day.php:117 src/Tribe/Template/Day.php:133
7727
  msgid "Ongoing"
7728
  msgstr "laufend"
7729
 
7730
- #: src/Tribe/Aggregator/Page.php:82 src/Tribe/Template/Day.php:114
7731
- #: src/Tribe/Template/Day.php:130
7732
  msgid "All Day"
7733
  msgstr "Ganztägig"
7734
 
@@ -7756,11 +7779,11 @@ msgstr[1] "Die obigen Einstellungen wurde nicht gespeichert. Andere Einstellunge
7756
 
7757
  #: common/src/Tribe/Settings.php:620
7758
  msgid "None of your settings were saved. Please try again."
7759
- msgstr "Die Eintellungen konnten gespeichert werden. Versuche es erneut."
7760
 
7761
  #: common/src/Tribe/Settings.php:610
7762
  msgid "Your form had the following errors:"
7763
- msgstr "Dein Formular hat folgende Fehler:"
7764
 
7765
  #: common/src/Tribe/Settings.php:431
7766
  msgid "The request wasn't sent from this tab."
@@ -7772,7 +7795,7 @@ msgstr "Die Anfrage wurde unverschlüsselt gesendet."
7772
 
7773
  #: common/src/Tribe/Settings.php:419
7774
  msgid "You don't have permission to do that."
7775
- msgstr "Du besitzt nicht die nötigen Rechte dafür."
7776
 
7777
  #: common/src/Tribe/Settings.php:371 src/Tribe/Aggregator/Page.php:92
7778
  msgid "Save Changes"
@@ -7780,7 +7803,7 @@ msgstr "Änderungen speichern"
7780
 
7781
  #: common/src/Tribe/Settings.php:363
7782
  msgid "You've requested a non-existent tab."
7783
- msgstr "Du willst einen nicht vorhandenen Reiter anzeigen."
7784
 
7785
  #: common/src/Tribe/Settings.php:349
7786
  msgid "%s Settings"
@@ -7792,7 +7815,7 @@ msgstr "Veranstaltungseinstellungen"
7792
 
7793
  #: common/src/Tribe/PUE/Checker.php:888
7794
  msgid "Hmmm... something's wrong with this validator. Please contact %ssupport%s."
7795
- msgstr "Hmmm... irgendetwas stimmt mit diesem Validator nicht. Bitte kontaktiere den %sSupport%s."
7796
 
7797
  #: common/src/Tribe/PUE/Checker.php:927
7798
  msgid "Valid Key! Expires on %s"
@@ -7823,50 +7846,50 @@ msgstr "Lizenzschlüssel"
7823
  msgid "Error"
7824
  msgstr "Fehler"
7825
 
7826
- #: src/Tribe/Main.php:4597
7827
  msgid "Once Every 30 Mins"
7828
  msgstr "Alle 30 Minuten"
7829
 
7830
- #: src/Tribe/Main.php:4517
7831
  msgid "Day Of"
7832
  msgstr "Tag"
7833
 
7834
- #: src/Tribe/Main.php:4515
7835
  msgid "%s From"
7836
  msgstr "%s am"
7837
 
7838
- #: src/Tribe/Main.php:4511
7839
  msgid "%s In"
7840
  msgstr "%s in"
7841
 
7842
- #: src/Tribe/Main.php:4506 src/Tribe/Main.php:4531
7843
  #: src/admin-views/aggregator/origins/refine.php:7
7844
  msgid "Date"
7845
  msgstr "Datum"
7846
 
7847
- #: src/Tribe/Main.php:4433
7848
  msgid "Search"
7849
  msgstr "Suche"
7850
 
7851
- #: src/Tribe/Main.php:4407 src/admin-views/aggregator/fields/schedule.php:44
7852
  #: src/admin-views/aggregator/fields/schedule.php:62
7853
  msgid "Day"
7854
  msgstr "Tag"
7855
 
7856
- #: src/Tribe/Main.php:4390
7857
  msgid "Month"
7858
  msgstr "Monat"
7859
 
7860
- #: src/Tribe/Main.php:4372
7861
  msgid "List"
7862
  msgstr "Liste"
7863
 
7864
- #: src/Tribe/Main.php:4356
7865
  msgid "Calendar"
7866
  msgstr "Kalender"
7867
 
7868
  #: common/src/Tribe/Settings.php:254
7869
- #: src/Tribe/Admin/Bar/Default_Configurator.php:89 src/Tribe/Main.php:4355
7870
  msgid "Settings"
7871
  msgstr "Einstellungen"
7872
 
@@ -7880,7 +7903,7 @@ msgstr "CSV"
7880
  msgid "Add %s"
7881
  msgstr "%s hinzufügen"
7882
 
7883
- #: src/Tribe/Admin/Bar/Default_Configurator.php:45 src/Tribe/Main.php:4306
7884
  msgid "View Calendar"
7885
  msgstr "Kalenderansicht"
7886
 
@@ -7888,53 +7911,53 @@ msgstr "Kalenderansicht"
7888
  msgid "%s"
7889
  msgstr "%s"
7890
 
7891
- #: src/Tribe/Main.php:4253
7892
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7893
- msgstr "Benötigst Du weitere Funktionen inklusive Serientermine, Kartenverkauf, öffentliche Veranstaltungserstellung, neue Ansichten und mehr?"
7894
 
7895
- #: src/Tribe/Main.php:4248
7896
  msgid "Additional Functionality"
7897
  msgstr "Erweiterte Funktionalität"
7898
 
7899
- #: src/Tribe/Main.php:4203
7900
  msgid "News from Modern Tribe"
7901
  msgstr "Neues von Modern Tribe"
7902
 
7903
- #: src/Tribe/Main.php:4183
7904
  msgid "View All Add-Ons"
7905
  msgstr "Alle Erweiterungen (Add-Ons) anzeigen"
7906
 
7907
- #: src/Tribe/Main.php:4180
7908
  msgid "Support"
7909
  msgstr "Unterstützung"
7910
 
7911
- #: src/Tribe/Main.php:3828 src/Tribe/Main.php:3841
7912
  msgid "%s Information"
7913
  msgstr "%s Information"
7914
 
7915
- #: src/Tribe/Main.php:3819
7916
  msgid "%s Options"
7917
  msgstr "%s-Optionen"
7918
 
7919
- #: src/Tribe/Main.php:3742 src/Tribe/Main.php:3777
7920
  #: src/functions/template-tags/day.php:157
7921
  #: src/functions/template-tags/day.php:178
7922
  msgid "Date out of range."
7923
  msgstr "Datum außerhalb des Bereichs."
7924
 
7925
- #: src/Tribe/Main.php:2344
7926
  msgid "all"
7927
  msgstr "Alle"
7928
 
7929
- #: src/Tribe/Main.php:2343 src/functions/template-tags/general.php:111
7930
  msgid "events"
7931
  msgstr "Veranstaltungen"
7932
 
7933
- #: src/Tribe/Main.php:2342 src/functions/template-tags/general.php:79
7934
  msgid "event"
7935
  msgstr "Veranstaltung"
7936
 
7937
- #: src/Tribe/Main.php:2341
7938
  msgid "page"
7939
  msgstr "Seite"
7940
 
@@ -7946,7 +7969,8 @@ msgstr "Netzwerk"
7946
  msgid "Done"
7947
  msgstr "Erledigt"
7948
 
7949
- #: common/src/Tribe/Main.php:272 src/Tribe/Asset/Bootstrap_Datepicker.php:27
 
7950
  #: src/functions/template-tags/day.php:104
7951
  msgid "Today"
7952
  msgstr "Heute"
@@ -7959,143 +7983,143 @@ msgstr "Zurück"
7959
  msgid "Next"
7960
  msgstr "Weiter"
7961
 
7962
- #: src/Tribe/Linked_Posts.php:1010
7963
  msgid "No saved %s exists."
7964
  msgstr "Es existiert kein gespeicherter %s."
7965
 
7966
- #: src/Tribe/Linked_Posts.php:840
7967
  msgid "Available %s"
7968
  msgstr "Verfügbare %s"
7969
 
7970
- #: src/Tribe/Linked_Posts.php:836
7971
  msgid "My %s"
7972
  msgstr "Meine %s"
7973
 
7974
- #: src/Tribe/Main.php:1859 src/Tribe/Main.php:1879
7975
  msgid "%s draft updated."
7976
  msgstr "%s Entwurf aktualisiert."
7977
 
7978
- #: src/Tribe/Main.php:1852 src/Tribe/Main.php:1872
7979
  msgid "%s submitted."
7980
  msgstr "%s eingereicht."
7981
 
7982
- #: src/Tribe/Main.php:1850 src/Tribe/Main.php:1870
7983
  msgid "%s published."
7984
  msgstr "%s veröffentlicht."
7985
 
7986
  #. translators: %s: date and time of the revision
7987
- #: src/Tribe/Main.php:1869
7988
  msgid "%s restored to revision from %s"
7989
  msgstr "%s wieder hergestellt zu Revisionen von %s"
7990
 
7991
  #. translators: Publish box date format, see http://php.net/date
7992
- #: src/Tribe/Main.php:1829 src/Tribe/Main.php:1857 src/Tribe/Main.php:1877
7993
  msgid "M j, Y @ G:i"
7994
  msgstr "M j, Y @ G:i"
7995
 
7996
- #: src/Tribe/Main.php:1818 src/Tribe/Main.php:1851 src/Tribe/Main.php:1871
7997
  msgid "%s saved."
7998
  msgstr "%s gespeichert."
7999
 
8000
  #. translators: %s: date and time of the revision
8001
- #: src/Tribe/Main.php:1811 src/Tribe/Main.php:1849
8002
  msgid "%1$s restored to revision from %2$s"
8003
  msgstr "%1$s wieder hergestellt zu der Version vom %2$s"
8004
 
8005
- #: src/Tribe/Main.php:1809 src/Tribe/Main.php:1844 src/Tribe/Main.php:1847
8006
- #: src/Tribe/Main.php:1864 src/Tribe/Main.php:1867
8007
  msgid "%s updated."
8008
  msgstr "%s aktualisiert."
8009
 
8010
- #: src/Tribe/Main.php:1808 src/Tribe/Main.php:1846 src/Tribe/Main.php:1866
8011
  msgid "Custom field deleted."
8012
  msgstr "Benutzerdefiniertes Feld gel&ouml;scht."
8013
 
8014
- #: src/Tribe/Main.php:1807 src/Tribe/Main.php:1845 src/Tribe/Main.php:1865
8015
  msgid "Custom field updated."
8016
  msgstr "Benutzerdefiniertes Feld aktualisiert."
8017
 
8018
- #: src/Tribe/Main.php:1785
8019
  msgid "New %s Category Name"
8020
  msgstr "Neuer %s Kategorie-Name"
8021
 
8022
- #: src/Tribe/Main.php:1784
8023
  msgid "Add New %s Category"
8024
  msgstr "Neue %s Kategorie hinzufügen"
8025
 
8026
- #: src/Tribe/Main.php:1783
8027
  msgid "Update %s Category"
8028
  msgstr "Aktualisiere %s-Kategorie"
8029
 
8030
- #: src/Tribe/Main.php:1782
8031
  msgid "Edit %s Category"
8032
  msgstr "%s Kategorie bearbeiten"
8033
 
8034
- #: src/Tribe/Main.php:1781
8035
  msgid "Parent %s Category:"
8036
  msgstr "Übergeordnete %s-Kategorie:"
8037
 
8038
- #: src/Tribe/Main.php:1780
8039
  msgid "Parent %s Category"
8040
  msgstr "Übergeordnete %s-Kategorie"
8041
 
8042
- #: src/Tribe/Main.php:1779
8043
  msgid "All %s Categories"
8044
  msgstr "Alle %s Kategorien"
8045
 
8046
- #: src/Tribe/Main.php:1778
8047
  msgid "Search %s Categories"
8048
  msgstr "Suche %ss-Kategorien"
8049
 
8050
- #: src/Tribe/Main.php:1777
8051
  msgid "%s Category"
8052
  msgstr "%s Kategorie"
8053
 
8054
- #: src/Tribe/Main.php:1767 src/Tribe/Organizer.php:98 src/Tribe/Venue.php:117
8055
  msgid "No %s found in Trash"
8056
  msgstr "%s im Papierkorb nicht gefunden"
8057
 
8058
- #: src/Tribe/Main.php:1766 src/Tribe/Organizer.php:97 src/Tribe/Venue.php:116
8059
  msgid "No %s found"
8060
  msgstr "Keine %s gefunden"
8061
 
8062
- #: src/Tribe/Main.php:1765 src/Tribe/Organizer.php:96 src/Tribe/Venue.php:115
8063
  msgid "Search %s"
8064
  msgstr "%s suchen"
8065
 
8066
- #: src/Tribe/Main.php:1764 src/Tribe/Organizer.php:95 src/Tribe/Venue.php:114
8067
  #: src/views/month/single-day.php:26
8068
  msgid "View %s"
8069
  msgstr "%s anzeigen"
8070
 
8071
- #: src/Tribe/Main.php:1763 src/Tribe/Organizer.php:94 src/Tribe/Venue.php:113
8072
  msgid "New %s"
8073
  msgstr "%s neu erstellen"
8074
 
8075
- #: src/Tribe/Main.php:1761 src/Tribe/Main.php:1893 src/Tribe/Main.php:1894
8076
  #: src/Tribe/Organizer.php:92 src/Tribe/Venue.php:111
8077
  msgid "Add New %s"
8078
  msgstr "%s hinzufügen"
8079
 
8080
- #: src/Tribe/Main.php:1760 src/Tribe/Organizer.php:91 src/Tribe/Venue.php:110
8081
  msgid "Add New"
8082
  msgstr "Hinzufügen"
8083
 
8084
- #: src/Tribe/Main.php:1727 src/Tribe/Main.php:2339
8085
  msgid "tag"
8086
  msgstr "Schlagwort"
8087
 
8088
- #: src/Tribe/Main.php:1713 src/Tribe/Main.php:2340
8089
  msgid "category"
8090
  msgstr "Kategorie"
8091
 
8092
- #: src/Tribe/Main.php:1465
8093
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8094
- msgstr "Das The Events Calendar Plugin erfordert PHP Version %s oder höher. Kontaktiere Deinen Webhosting-Anbieter, um auf eine höhere PHP-Version aktualisieren zu können."
8095
 
8096
- #: src/Tribe/Main.php:1462
8097
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8098
- msgstr "Das The Events Calendar Plugin erfordert WordPress Version %s oder höher. Bitte aktualisiere Deine WordPress-Installation entsprechend, bevor Du fortfährst."
8099
 
8100
  #: common/src/Tribe/Settings_Manager.php:253
8101
  #: common/src/admin-views/tribe-options-licenses.php:66
@@ -8111,72 +8135,72 @@ msgstr "Hilfe"
8111
  msgid "Display"
8112
  msgstr "Darstellung"
8113
 
8114
- #: src/Tribe/Main.php:1309
8115
  msgid "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8116
  msgstr "Die folgenden Plugins sind nicht mehr aktuell: %1$s. Alle Add-Ons enthalten Abhängigkeiten zu The Events Calendar und werden nicht korrekt funktionieren, solange sie nicht mit der richtigen Version verwendet werden. %2$sMehr erfahren%3$s."
8117
 
8118
- #: src/Tribe/Main.php:1297
8119
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8120
- msgstr "Deine Version des Events Calendar ist nicht aktuell genug, um dieses Add-On zu nutzen. Bitte %supdate jetzt.%s."
8121
 
8122
- #: src/Tribe/Main.php:788
8123
  msgid "Initializing Tribe Events on %s"
8124
  msgstr "Tribe Events wird eingerichtet für %s"
8125
 
8126
- #: src/Tribe/Main.php:763
8127
  msgid "today"
8128
  msgstr "heute"
8129
 
8130
- #: src/Tribe/Main.php:762
8131
  msgid "day"
8132
  msgstr "Tag"
8133
 
8134
- #: src/Tribe/Main.php:761
8135
  msgid "past"
8136
  msgstr "vergangen"
8137
 
8138
- #: src/Tribe/Main.php:760
8139
  msgid "upcoming"
8140
  msgstr "anstehende"
8141
 
8142
- #: src/Tribe/Main.php:759
8143
  msgid "list"
8144
  msgstr "list"
8145
 
8146
- #: src/Tribe/Main.php:758
8147
  msgid "month"
8148
  msgstr "Monat"
8149
 
8150
- #. #-#-#-#-# the-events-calendar-code.pot (The Events Calendar 4.6.20.1)
8151
  #. #-#-#-#-#
8152
  #. Plugin Name of the plugin/theme
8153
  #: common/src/Tribe/Admin/Help_Page.php:59 common/src/Tribe/Customizer.php:569
8154
- #: common/src/Tribe/Plugins_API.php:25 src/Tribe/Main.php:751
8155
- #: src/Tribe/Main.php:1093 src/Tribe/Privacy.php:29
8156
  #: src/functions/template-tags/general.php:1345
8157
  msgid "The Events Calendar"
8158
  msgstr "The Events Calendar"
8159
 
8160
- #: src/Tribe/Main.php:1163 src/admin-views/aggregator/tabs/import-form.php:185
8161
  #: src/admin-views/aggregator/tabs/import-form.php:197
8162
  #: src/functions/template-tags/general.php:63
8163
  msgid "Event"
8164
  msgstr "Veranstaltung"
8165
 
8166
  #: common/src/Tribe/Settings.php:177 common/src/Tribe/Settings.php:241
8167
- #: common/src/Tribe/Settings.php:242 src/Tribe/Main.php:1155
8168
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:207
8169
  #: src/functions/template-tags/general.php:95
8170
  msgid "Events"
8171
  msgstr "Veranstaltungen"
8172
 
8173
- #: src/Tribe/Organizer.php:157 src/functions/template-tags/organizer.php:115
8174
  msgid "Organizer"
8175
  msgstr "Veranstalter"
8176
 
8177
  #: src/Tribe/Organizer.php:171
8178
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:206
8179
- #: src/functions/template-tags/organizer.php:126
8180
  msgid "Organizers"
8181
  msgstr "Veranstalter"
8182
 
@@ -8301,7 +8325,266 @@ msgstr "Veranstaltungsschlagworte"
8301
 
8302
  #: src/Tribe/Importer/Column_Mapper.php:83
8303
  msgid "Event Category"
8304
- msgstr "Veranstaltungskategorie"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8305
 
8306
  #: src/Tribe/Importer/Column_Mapper.php:82
8307
  msgid "Event Currency Position"
@@ -8440,7 +8723,7 @@ msgstr "Datum:"
8440
  msgid "End:"
8441
  msgstr "Ende:"
8442
 
8443
- #: src/Tribe/Aggregator/Record/List_Table.php:498
8444
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
8445
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
8446
  #: src/views/modules/meta/details.php:66 src/views/modules/meta/details.php:91
@@ -8459,7 +8742,7 @@ msgstr "Enddatum"
8459
  msgid "Start Date"
8460
  msgstr "Anfangsdatum"
8461
 
8462
- #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1776
8463
  msgid "%s Categories"
8464
  msgstr "%ss-Kategorien"
8465
 
@@ -8470,7 +8753,7 @@ msgstr "Aufgrund eines Problems wurde das Zeitzonen Update gestoppt. Bitte aktua
8470
  #: src/Tribe/Admin/Timezone_Updater.php:87
8471
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
8472
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:100
8473
- #: src/Tribe/Aggregator/Record/Queue_Realtime.php:203
8474
  msgid "%d%% complete"
8475
  msgstr "%d%% abgeschlossen"
8476
 
@@ -8483,21 +8766,21 @@ msgid "Please wait while time zone data is added to your events."
8483
  msgstr "Bitte warten während die Zeitzonen Daten zu Deinen Veranstaltungen hinzugefügt werden."
8484
 
8485
  #: src/Tribe/Admin/Bar/Default_Configurator.php:62
8486
- #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:211 src/Tribe/Main.php:1762
8487
- #: src/Tribe/Main.php:4862 src/Tribe/Main.php:4909 src/Tribe/Organizer.php:93
8488
  #: src/Tribe/Venue.php:112
8489
  msgid "Edit %s"
8490
  msgstr "%s bearbeiten"
8491
 
8492
- #: src/Tribe/Main.php:4846 src/Tribe/Main.php:4903
8493
  msgid "Use Saved %s:"
8494
  msgstr "Benutze gespeicherten %s:"
8495
 
8496
- #: src/Tribe/Main.php:992
8497
  msgid " ask the site administrator set a different Events URL slug."
8498
  msgstr "Frage den Seitenadministrator eine andere Seiten Titelform (URL) festzulegen."
8499
 
8500
- #: src/Tribe/Main.php:986
8501
  msgid "Ask the site administrator to edit the %s slug"
8502
  msgstr "Frage den Seitenadministrator die %s Titelform (URL) zu bearbeiten"
8503
 
@@ -8505,7 +8788,7 @@ msgstr "Frage den Seitenadministrator die %s Titelform (URL) zu bearbeiten"
8505
  msgid "Thanks for Updating The Events Calendar"
8506
  msgstr "Danke für das Aktualisieren von 'The Events Calendar' (kostenlose Version)"
8507
 
8508
- #: src/Tribe/Main.php:846 src/Tribe/Main.php:848
8509
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
8510
  msgid "Welcome to The Events Calendar"
8511
  msgstr "Willkommen beim Plugin 'The Events Calendar'"
2
  # This file is distributed under the same license as the Plugins - The Events Calendar - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2018-09-02 20:12:30+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: de\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
14
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:337
15
+ msgid "The event tag ID or name"
16
+ msgstr ""
17
+
18
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:331
19
+ msgid "The event category ID or name"
20
+ msgstr ""
21
+
22
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:508
23
+ msgid "Events should be filtered by their post_parent being the specified one."
24
+ msgstr ""
25
+
26
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:498
27
+ msgid "Include events with one of the post IDs specified in the array of CSV list, date filters will be ignored."
28
+ msgstr ""
29
+
30
+ #: src/Tribe/Aggregator/Record/Async_Queue.php:348
31
+ #: src/Tribe/Aggregator/Record/Void_Queue.php:122
32
+ msgid "Unable to process this import - a breakage or conflict may have resulted in the import halting."
33
+ msgstr ""
34
+
35
+ #: common/src/Tribe/Plugins_API.php:37
36
+ msgid "Event Aggregator adds massive import functionality to your calendar. Before you know it, you’ll be importing events from Meetup, Eventbrite, Google Calendar, iCalendar, and other URLs with ease. Schedule imports to run automatically behind-the-scenes or run them manually when you’re ready. Go ahead and import to your heart’s content—Event Aggregator hooks you up with a central dashboard in the admin to make managing your imports a breeze."
37
+ msgstr ""
38
+
39
  #: src/views/month/single-day.php:57
40
  msgid "%s for %s"
41
+ msgstr ""
42
 
43
  #: src/views/month/loop-grid.php:25 src/views/month/loop-grid.php:28
44
  msgid "Calendar of %s"
45
+ msgstr ""
46
 
47
  #: src/views/modules/bar.php:80
48
  msgid "Submit %s search"
49
+ msgstr ""
50
 
51
  #: src/views/modules/bar.php:68
52
  msgid "%s Search"
53
+ msgstr ""
54
 
55
  #: src/views/modules/bar.php:48
56
  msgid "View %s As"
57
+ msgstr ""
58
 
59
  #: src/views/modules/bar.php:43
60
  msgid "%s Views Navigation"
61
+ msgstr ""
62
 
63
  #: src/views/modules/bar.php:29
64
  msgid "%s Search and Views Navigation"
65
+ msgstr ""
66
 
67
  #: src/admin-views/privacy.php:63
68
  msgid "If you have extended our plugin(s) to send data to a third-party service such as Eventbrite, Google Maps, or PayPal, user information may be passed to these external services. These services may be located abroad."
69
+ msgstr ""
70
 
71
  #: src/admin-views/privacy.php:61
72
  msgid "Modern Tribe does not send any user data outside of your website by default."
73
+ msgstr ""
74
 
75
  #: src/admin-views/privacy.php:59
76
  msgid "Where We Send Your Data"
77
+ msgstr ""
78
 
79
  #: src/admin-views/privacy.php:57
80
  msgid "Certain data may be exported or removed upon users’ requests via the existing Exporter or Eraser. Please note, however, that several “edge cases” exist in which we are unable to perfect the gathering and export of all data for your end users. We suggest running a search in your local database, as well as within the WordPress Dashboard, in order to identify all data collected and stored for your specific user requests."
81
+ msgstr ""
82
 
83
  #: src/admin-views/privacy.php:55
84
  msgid "All information (data) is retained in the local database indefinitely, unless otherwise deleted."
85
+ msgstr ""
86
 
87
  #: src/admin-views/privacy.php:53
88
  msgid "How Long You Retain this Data"
89
+ msgstr ""
90
 
91
  #: src/admin-views/privacy.php:51
92
  msgid "These API keys may include the following third party services: Google Maps, Facebook, Meetup, PayPal, and Eventbrite (API key, auth URL and Client Secret)."
93
+ msgstr ""
94
 
95
  #: src/admin-views/privacy.php:49
96
  msgid "We make use of certain API keys, in order to provide specific features."
97
+ msgstr ""
98
 
99
  #: src/admin-views/privacy.php:45
100
  msgid "The Events Calendar suite offers the use of third-party API keys. The primary functions are to enhance the features we've built in, some of which use Google Maps, PayPal, Eventbrite, Meetup, and Facebook. These API keys are not supplied by Modern Tribe."
101
+ msgstr ""
102
 
103
  #: src/admin-views/privacy.php:43
104
  msgid "API Keys"
105
+ msgstr ""
106
 
107
  #: src/admin-views/privacy.php:41
108
  msgid "When purchasing Eventbrite Tickets, attendee, purchaser, and order information are stored and managed by Eventbrite."
109
+ msgstr ""
110
 
111
  #: src/admin-views/privacy.php:39
112
  msgid "Please note that to create new events through the Community Events submission form, a user must hold a website account on this domain. This information is retained in the local database. It is also possible to create events anonymously, if the site owner has this option enabled."
113
+ msgstr ""
114
 
115
  #: src/admin-views/privacy.php:36
116
  msgid "Eventbrite Ticket information: name, description, cost, type, quantity"
117
+ msgstr ""
118
 
119
  #: src/admin-views/privacy.php:35
120
  msgid "Import origin data (URL from where events are being imported—such as Eventbrite, MeetUp, other compatible URL sources, and more, which can include similar or same data as listed above)"
121
+ msgstr ""
122
 
123
  #: src/admin-views/privacy.php:34
124
  msgid "All data present within a CSV or ICS file and external URLs (for events, venues, organizers, and tickets)"
125
+ msgstr ""
126
 
127
  #: src/admin-views/privacy.php:31
128
  msgid "Importing Events, Venues, and Organizers:"
129
+ msgstr ""
130
 
131
  #: src/admin-views/privacy.php:28
132
  msgid "Event information: website, cost, description, date, time, image"
133
+ msgstr ""
134
 
135
  #: src/admin-views/privacy.php:27
136
  msgid "Organizer information: name, phone, website, email"
137
+ msgstr ""
138
 
139
  #: src/admin-views/privacy.php:26
140
  msgid "Venue information: name, address, city, country, state, postal code, phone, website, geographical coordinates (latitude and longitude)"
141
+ msgstr ""
142
 
143
  #: src/admin-views/privacy.php:23
144
  msgid "If you create, submit, import, save, or publish Event, Venue, or Organizer information, such information is retained in the local database:"
145
+ msgstr ""
146
 
147
  #: src/admin-views/privacy.php:22 src/admin-views/privacy.php:47
148
  msgid "Suggested text:"
149
+ msgstr ""
150
 
151
  #: src/admin-views/privacy.php:21
152
  msgid "Through the usage of The Events Calendar, Events Calendar PRO, The Events Calendar Filter Bar, Eventbrite Tickets, and Community Events plugins, as well as our Event Aggregator Import service (contained within The Events Calendar plugin), information may be collected and stored within your website’s database."
153
+ msgstr ""
154
 
155
  #: src/admin-views/privacy.php:20
156
  msgid "Event, Venue, and Organizer Information"
157
+ msgstr ""
158
 
159
  #: src/admin-views/privacy.php:18
160
  msgid "What personal data we collect and why we collect it"
161
+ msgstr ""
162
 
163
  #: src/admin-views/privacy.php:16
164
  msgid "This information is only for guidance and not to be considered as legal advice."
165
+ msgstr ""
166
 
167
  #: src/admin-views/privacy.php:16
168
  msgid "Disclaimer:"
169
+ msgstr ""
170
 
171
  #: src/admin-views/privacy.php:15
172
  msgid "You should include the information below in the correct sections of you privacy policy."
173
+ msgstr ""
174
 
175
  #: src/admin-views/privacy.php:14
176
  msgid "This information serves as a guide on what sections need to be modified due to usage of The Events Calendar and its Add-ons."
177
+ msgstr ""
178
 
179
  #: src/admin-views/privacy.php:13
180
  msgid "Hello,"
181
+ msgstr ""
182
 
183
  #: src/admin-views/aggregator/settings.php:531
184
  msgid "The default event category for events imported via Eventbrite"
185
+ msgstr ""
186
 
187
  #: src/admin-views/aggregator/settings.php:519
188
  msgid "The default post status for events imported via Eventbrite"
189
+ msgstr ""
190
 
191
  #: src/admin-views/aggregator/settings.php:513
192
  msgid "Eventbrite Import Settings"
193
+ msgstr ""
194
 
195
  #: src/admin-views/aggregator/settings.php:26
196
  msgid "None"
197
+ msgstr ""
198
 
199
  #: src/admin-views/aggregator/origins/eventbrite.php:13
200
  msgid "Import from Eventbrite"
201
+ msgstr ""
202
 
203
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:17
204
  msgid "Learn more"
205
+ msgstr ""
206
 
207
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:14
208
  msgid "Do more with Eventbrite Tickets"
209
+ msgstr ""
210
 
211
+ #: src/Tribe/Main.php:4114
212
  msgid "Search for %s by month. Please use the format %s."
213
+ msgstr ""
214
 
215
+ #: src/Tribe/Main.php:4109
216
  msgid "Search for %s by Date. Please use the format %s."
217
+ msgstr ""
218
 
219
+ #: src/Tribe/Main.php:4077 src/Tribe/Main.php:4078
220
  msgid "2 digit month dot 4 digit year"
221
+ msgstr ""
222
 
223
+ #: src/Tribe/Main.php:4076
224
  msgid "4 digit year dot 2 digit month"
225
+ msgstr ""
226
 
227
+ #: src/Tribe/Main.php:4075
228
  msgid "2 digit month hyphen 4 digit year"
229
+ msgstr ""
230
 
231
+ #: src/Tribe/Main.php:4072 src/Tribe/Main.php:4073 src/Tribe/Main.php:4074
232
  msgid "1 digit month hyphen 4 digit year"
233
+ msgstr ""
234
 
235
+ #: src/Tribe/Main.php:4069 src/Tribe/Main.php:4071
236
  msgid "2 digit month slash 4 digit year"
237
+ msgstr ""
238
 
239
+ #: src/Tribe/Main.php:4068 src/Tribe/Main.php:4070
240
  msgid "1 digit month slash 4 digit year"
241
+ msgstr ""
242
 
243
+ #: src/Tribe/Main.php:4067
244
  msgid "4 digit year hyphen 2 digit month"
245
+ msgstr ""
246
 
247
+ #: src/Tribe/Main.php:4063
248
  msgid "2 digit day dot 2 digit month dot 4 digit year"
249
+ msgstr ""
250
 
251
+ #: src/Tribe/Main.php:4062
252
  msgid "2 digit month dot 2 digit day dot 4 digit year"
253
+ msgstr ""
254
 
255
+ #: src/Tribe/Main.php:4061
256
  msgid "4 digit year dot 2 digit month dot 2 digit day"
257
+ msgstr ""
258
 
259
+ #: src/Tribe/Main.php:4060
260
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
261
+ msgstr ""
262
 
263
+ #: src/Tribe/Main.php:4059
264
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
265
+ msgstr ""
266
 
267
+ #: src/Tribe/Main.php:4058
268
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
269
+ msgstr ""
270
 
271
+ #: src/Tribe/Main.php:4057
272
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
273
+ msgstr ""
274
 
275
+ #: src/Tribe/Main.php:4056
276
  msgid "2 digit day slash 2 digit month slash 4 digit year"
277
+ msgstr ""
278
 
279
+ #: src/Tribe/Main.php:4055
280
  msgid "1 digit day slash 1 digit month slash 4 digit year"
281
+ msgstr ""
282
 
283
+ #: src/Tribe/Main.php:4054
284
  msgid "2 digit month slash 2 digit day slash 4 digit year"
285
+ msgstr ""
286
 
287
+ #: src/Tribe/Main.php:4053
288
  msgid "1 digit month slash 1 digit day slash 4 digit year"
289
+ msgstr ""
290
 
291
+ #: src/Tribe/Main.php:4052
292
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
293
+ msgstr ""
294
 
295
+ #: src/Tribe/Main.php:4031
296
  msgid "Search for %s by Keyword."
297
+ msgstr ""
298
 
299
  #: src/Tribe/API.php:826 src/Tribe/API.php:837
300
  msgid "An event having a post meta value of `%s` minutes is not valid. Make sure it is from 0 to 59."
301
+ msgstr ""
302
 
303
  #: src/Tribe/API.php:796
304
  msgid "An event having a post meta value of `%s` hour (24-hour) is not valid. Make sure it is from 0 to 23."
305
+ msgstr ""
306
 
307
  #: src/Tribe/API.php:789
308
  msgid "An event having a post meta value of `%s` hour (12-hour) is not valid. Make sure it is from 1 to 12."
309
+ msgstr ""
310
 
311
  #: src/Tribe/API.php:772
312
  msgid "An event having a post meta value of `%s` hour (am/pm) is not valid. Make sure it is from 1 to 12."
313
+ msgstr ""
314
 
315
  #: src/Tribe/API.php:744
316
  msgid "An event having a post meta value of `%s` meridian is not valid. Make sure it is either `am` or `pm`, or remove it entirely if using the 24-hour format."
317
+ msgstr ""
318
 
319
  #: common/src/Tribe/Admin/Notice/Php_Version.php:101
320
  msgid "Starting March 2019, %1$s will no longer work with versions prior to PHP 5.4. Currently your site is using PHP version %2$s. For best results, we recommend using PHP 5.6 or above."
321
+ msgstr ""
322
 
323
  #: common/src/Tribe/Admin/Notice/Php_Version.php:98
324
  msgid "Starting March 2019, %1$s will no longer support versions prior to PHP 5.6. Your site is currently using PHP version %2$s which will no longer be supported by %1$s. For best results, we recommend using PHP 5.6 or above."
325
+ msgstr ""
326
 
327
  #: src/admin-views/tribe-options-addons-api.php:152
328
  msgid "You need to connect Event Aggregator to Eventbrite to import your events from Eventbrite."
329
+ msgstr "Sie müssen Event Aggregator mit dem Eventbrite verbinden, um Ihre Veranstaltungen von Eventbrite importieren zu können."
330
 
331
  #: src/admin-views/tribe-options-addons-api.php:130
332
  msgid "Refresh your connection to Eventbrite"
333
+ msgstr "Verbindung zu Eventbrite aktualisieren"
334
 
335
  #: src/admin-views/tribe-options-addons-api.php:128
336
  msgid "Connect to Eventbrite"
337
+ msgstr "Verbindung zu Eventbrite erstellen"
338
 
339
  #: src/admin-views/tribe-options-addons-api.php:127
340
  msgid "You need to connect to Eventbrite for Event Aggregator to work properly"
341
+ msgstr "Sie müssen eine Verbindung zu Eventbrite erstellen, damit Event Aggregator richtig funktionieren kann."
342
 
343
  #: src/admin-views/tribe-options-addons-api.php:123
344
  msgid "Eventbrite Token"
346
 
347
  #: src/admin-views/aggregator/tabs/import-form.php:297
348
  msgid "Settings > General"
349
+ msgstr "Einstellungen -> Allgemein"
350
 
351
  #: src/admin-views/aggregator/tabs/import-form.php:286
352
  msgid "The number of events available in the preview may be limited by your %1$sImport Settings.%2$s"
353
+ msgstr ""
354
 
355
  #: src/admin-views/aggregator/tabs/import-form.php:279
356
  msgid "to change how the actual time is displayed on your calendar."
357
+ msgstr ""
358
 
359
  #: src/admin-views/aggregator/tabs/import-form.php:277
360
  msgid "timezone settings"
361
+ msgstr "Zeitzonen Einstellungen"
362
 
363
  #: src/admin-views/aggregator/tabs/import-form.php:275
364
  msgid "Events will be imported with the same timezone as defined on eventbrite.com. You can make use of The Events Calendar's"
365
+ msgstr ""
366
 
367
  #: src/admin-views/aggregator/tabs/import-form.php:268
368
  msgid "Eventbrite imports can fetch up to 50 events from your source."
369
+ msgstr ""
370
 
371
  #: src/admin-views/aggregator/status.php:202
372
  msgid "Limited connectivity with Eventbrite"
373
+ msgstr ""
374
 
375
  #: src/admin-views/aggregator/status.php:198
376
  msgctxt "link for connecting eventbrite"
377
  msgid "Connect to Eventbrite"
378
+ msgstr ""
379
 
380
  #: src/admin-views/aggregator/status.php:196
381
  msgid "You have not connected Event Aggregator to Eventbrite"
382
+ msgstr ""
383
 
384
  #: src/admin-views/aggregator/origins/refine.php:32
385
  msgid "Use the filters to narrow down which events are fetched from Eventbrite."
386
+ msgstr ""
387
 
388
  #: src/admin-views/aggregator/origins/meetup.php:154
389
  msgid "Invalid Meetup URL"
390
+ msgstr ""
391
 
392
  #: src/admin-views/aggregator/origins/facebook.php:126
393
  msgid "Invalid Facebook URL"
394
+ msgstr ""
395
 
396
  #: src/admin-views/aggregator/origins/eventbrite.php:183
397
  msgid "Invalid Eventbrite URL"
398
+ msgstr ""
399
 
400
  #: src/admin-views/aggregator/origins/eventbrite.php:153
401
  msgid "eventbrite.com/e/example-12345"
402
+ msgstr ""
403
 
404
  #: src/admin-views/aggregator/origins/eventbrite.php:127
405
  msgid "Import from Eventbrite.com url"
406
+ msgstr ""
407
 
408
  #: src/admin-views/aggregator/origins/eventbrite.php:116
409
  msgid "Import events directly from your connected Eventbrite.com account or from a public Eventbrite.com url."
410
+ msgstr ""
411
 
412
  #: src/admin-views/aggregator/origins/eventbrite.php:115
413
  msgid "Select Source"
414
+ msgstr "Wähle Quelle"
415
 
416
  #: src/admin-views/aggregator/origins/eventbrite.php:114
417
  msgid "Import Source"
418
+ msgstr "Importiere Quelle"
419
 
420
  #: src/admin-views/aggregator/origins/eventbrite.php:44
421
  msgid "Log into Eventbrite"
422
+ msgstr "Bei Eventbrite anmelden"
423
 
424
  #: src/admin-views/aggregator/origins/eventbrite.php:38
425
  msgid "Please log in to enable event imports from Eventbrite."
426
+ msgstr ""
427
 
428
  #: src/admin-views/aggregator/origins/eventbrite.php:15
429
  #: src/admin-views/aggregator/origins/eventbrite.php:121
430
  msgid "Import from your Eventbrite account"
431
+ msgstr ""
432
 
433
  #: src/admin-views/aggregator/origins/eventbrite.php:8
434
  msgid "One-time imports include all currently listed events, while scheduled imports automatically grab new events and updates from Eventbrite on a set schedule. Single events can be added via a one-time import."
435
+ msgstr ""
436
 
437
  #: src/Tribe/Aggregator/Tabs/Abstract.php:190
438
  msgid "Please provide a Eventbrite URL when importing from Eventbrite."
439
+ msgstr ""
440
 
441
  #: src/Tribe/Aggregator/Service.php:693
442
  msgid "Successfully fetched Eventbrite Token"
443
+ msgstr ""
444
 
445
  #: src/Tribe/Aggregator/Service.php:677
446
  msgid "No upcoming Eventbrite events found."
447
+ msgstr ""
448
 
449
  #: src/Tribe/Aggregator/Service.php:676
450
  msgid "Events cannot be imported because Eventbrite has returned an error. This could mean that the event ID does not exist, the event or source is marked as Private, or the event or source has been otherwise restricted by Eventbrite. You can <a href=\"https://theeventscalendar.com/knowledgebase/import-errors/\" target=\"_blank\">read more about Eventbrite restrictions in our knowledgebase</a>."
451
+ msgstr ""
452
 
453
  #: src/Tribe/Aggregator/REST/V1/Endpoints/State.php:78
454
  msgid "The new status message slug, to allow for localized messages."
455
+ msgstr ""
456
 
457
  #: src/Tribe/Aggregator/REST/V1/Endpoints/State.php:73
458
  msgid "The new status message for the user, not localized."
459
+ msgstr "Der neue Status für den Nutzer, nicht lokalisiert."
460
 
461
  #: src/Tribe/Aggregator/REST/V1/Endpoints/State.php:68
462
  msgid "The new status of the import."
464
 
465
  #: src/Tribe/Aggregator/REST/V1/Endpoints/Batch.php:138
466
  msgid "The current interval, in seconds, between the end of a batch process and the start of the next; as set on the server."
467
+ msgstr ""
468
 
469
  #: src/Tribe/Aggregator/REST/V1/Endpoints/Batch.php:132
470
  #: src/Tribe/Aggregator/REST/V1/Endpoints/State.php:84
471
  msgid "The percentage of import completed."
472
+ msgstr ""
473
 
474
  #: src/Tribe/Aggregator/REST/V1/Endpoints/Batch.php:126
475
  msgid "The current status of the import."
476
+ msgstr ""
477
 
478
  #: src/Tribe/Aggregator/REST/V1/Endpoints/Batch.php:120
479
  #: src/Tribe/Aggregator/REST/V1/Endpoints/State.php:62
487
 
488
  #: src/Tribe/Aggregator/Errors.php:66
489
  msgid "There is an JSON error with the Event Aggregator server. Please try your import again later."
490
+ msgstr "Es liegt ein JSON-Fehler beim Event Aggregator-Server vor. Bitte versuchen Sie es später erneut."
491
 
492
  #: src/Tribe/Aggregator/CLI/Service_Provider.php:22
493
  msgid "If required the commands will use the API keys and licenses set for the current site."
495
 
496
  #: src/Tribe/Aggregator/CLI/Service_Provider.php:21
497
  msgid "Create, run and manage Event Aggregator imports."
498
+ msgstr "Erstellen, Ausführen und Verwalten von Event Aggregator Importen."
499
 
500
  #: src/Tribe/Admin/Notice/Timezones.php:76
501
  msgid "When using The Events Calendar, we recommend that you choose a city in your timezone and avoid using a UTC timezone offset. Choosing a UTC timezone may cause problems when importing events or with Day Light Savings time. %1$s"
502
+ msgstr ""
503
 
504
  #: src/Tribe/Admin/Notice/Timezones.php:74
505
  msgid "Read more"
506
+ msgstr "Mehr lesen"
507
 
508
  #: src/Tribe/Admin/Notice/Marketing.php:52
509
  msgctxt "2018 user survey"
510
  msgid "<strong>The Events Calendar Annual Survey:</strong> share your feedback with our team—%1$s!"
511
+ msgstr ""
512
 
513
  #: src/Tribe/Admin/Notice/Marketing.php:48
514
  msgctxt "2018 user survey"
515
  msgid "take the survey now"
516
+ msgstr "Führen Sie die Umfrage jetzt durch"
517
 
518
  #: common/src/admin-views/tribe-options-help.php:33
519
  msgid "Search our support help desk"
520
+ msgstr ""
521
 
522
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
523
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:385
524
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
525
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
526
  msgid "The requested page was not found."
528
 
529
  #: src/Tribe/Aggregator/Settings.php:491
530
  msgid "one month"
531
+ msgstr "ein Monat"
532
 
533
  #: src/Tribe/Aggregator/Settings.php:479
534
  msgid "one week"
535
+ msgstr "eine Woche"
536
 
537
+ #: src/Tribe/Aggregator/Record/List_Table.php:577
538
  msgctxt "when the retry will happen, a date"
539
  msgid "retrying at %s"
540
+ msgstr "am %s erneut versuchen"
541
 
542
+ #: src/Tribe/Aggregator/Record/List_Table.php:574
543
  msgctxt "in human readable time"
544
  msgid "retrying in about %s"
545
+ msgstr "in ungefähr %s erneut versuchen "
546
 
547
  #: common/vendor/a5hleyrich/wp-background-processing/classes/wp-background-process.php:425
548
  msgid "Every %d Minutes"
550
 
551
  #: src/admin-views/tribe-options-general.php:183
552
  msgid "This option allows you to bulk delete past events. Be careful and backup your database before removing your events as there is no way to reverse the changes."
553
+ msgstr "Mit Hilfe dieser Option können vergangene Veranstaltungen gesammelt gelöscht werden. Seien Sie vorsichtig und sichern Sie die Datenbank, bevor Sie diese Option ausführen, da diese Änderungen nicht rückgängig gemacht werden können."
554
 
555
  #: src/admin-views/tribe-options-general.php:182
556
  msgid "Permanently delete events older than"
557
+ msgstr "Veranstaltungen endgültig löschen, die älter sind als "
558
 
559
  #: src/admin-views/tribe-options-general.php:177
560
  #: src/admin-views/tribe-options-general.php:194
588
 
589
  #: src/admin-views/tribe-options-general.php:166
590
  msgid "This option allows you to automatically move past events to trash."
591
+ msgstr "Diese Option ermöglicht es, vergangene Veranstaltungen automatisch in den Mülleimer zu verschieben."
592
 
593
  #: src/admin-views/tribe-options-general.php:165
594
  msgid "Move to trash events older than"
595
+ msgstr "Alle Veranstaltungen in den Mülleimer verschieben, die älter sind als "
596
 
597
  #: src/admin-views/tribe-options-general.php:53
598
  msgid "Instantly updates the calendar view when searching for or filtering events."
599
+ msgstr "Aktualisiert die Kalenderansicht sofort, wenn nach Veranstaltungen gesucht oder gefiltert wird."
600
 
601
  #: src/admin-views/tribe-options-general.php:52
602
  msgid "Enable live refresh"
603
+ msgstr "Echtzeit-Aktualisierung aktivieren"
604
 
605
  #: src/admin-views/events-meta-box.php:129
606
  msgid "Time Zone:"
608
 
609
  #: src/Tribe/Gutenberg.php:84
610
  msgid "Looks like you are using Gutenberg on this WordPress installation. %1$s"
611
+ msgstr "Es sieht so aus, als ob Gutenberg auf dieser WordPress-Seite verwendet wird. %1$s"
612
 
613
  #: src/Tribe/Gutenberg.php:82
614
  msgid "Download our Events Gutenberg extension and start using the block editor on your events!"
615
+ msgstr "Laden Sie die Events Gutenberg Extension herunter und nutzen Sie den Block Editor bei Ihren Veranstaltungen!"
616
 
617
  #: src/Tribe/Front_Page_View.php:238
618
  #: src/deprecated/Tribe__Events__Customizer__Front_Page_View.php:55
619
  msgctxt "Customizer static front page setting"
620
  msgid "Main %s Page"
621
+ msgstr "Haupt %s Seite"
622
 
623
  #: common/src/Tribe/Plugins_API.php:71
624
+ msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Guest check in is easy with QR codes and our custom scanning app."
625
+ msgstr "Mit Event Tickets Plus können Sie Tickets für Ihre Veranstaltungen mit WooCommerce, Easy Digital Downloads oder unserem integrierten Tool Tribe Commerce verkaufen. Fügen Sie Tickets zu Ihren Beiträgen und Seiten hinzu oder fügen Sie %1$sThe Events Calendar%2$s hinzu und verkaufen Sie Tickets aus Ihren Veranstaltungslisten. Erstellen Sie benutzerdefinierte Registrierungsformulare, verwalten Sie Teilnehmer, verwenden Sie benutzerdefinierte Kapazitätsoptionen und vieles mehr. Tickets haben QR-Codes für einen einfachen Check-in vor der Tür."
626
 
627
  #: src/admin-views/tribe-options-general.php:31
628
  msgid "The number of events per page on the List, Photo, and Map Views. Does not affect other views."
647
 
648
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:130
649
  msgid "An event with the specified ID does not exist."
650
+ msgstr "Eine Veranstaltungskategorie mit dieser ID existiert nicht."
651
 
652
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:127
653
  msgid "The event with the specified ID is not accessible."
654
+ msgstr "Die Veranstaltung mit der angegebenen ID ist nicht erreichbar."
655
 
656
+ #: src/Tribe/Main.php:1812
657
  msgid "%1$s published. %2$sView %3$s"
658
  msgstr "%1$s veröffentlicht. %2$s %3$s anzeigen"
659
 
660
  #: src/Tribe/Google/Maps_API_Key.php:56
661
  msgid "our guide"
662
+ msgstr "unser Handbuch"
663
 
664
  #: src/Tribe/Google/Maps_API_Key.php:51
665
  msgid "We highly recommend that you specify a valid %1$s for The Events Calendar to use. Doing this will help prevent problems with maps, especially for sites that receive a lot of traffic. Visit %2$s for a detailed explanation in how to do it."
666
+ msgstr "Es wird dringend empfohlen, dass Sie einen gültigen %1$s für den zu verwendenden Veranstaltungskalender angeben. Auf diese Weise können Probleme mit Karten vermieden werden, insbesondere bei Websites mit hohem Datenverkehr. Besuchen Sie %2$s für eine detaillierte Erklärung."
667
 
668
  #: common/src/Tribe/Validate.php:184
669
  msgid "%s must not be empty"
675
 
676
  #: src/admin-views/tribe-options-general.php:78
677
  msgid "The current URL for your events page is %1$s. <br><br> You cannot edit the slug for your events page as you do not have pretty permalinks enabled. In order to edit the slug here, <a href=\"%2$s\">enable pretty permalinks</a>."
678
+ msgstr "Die aktuelle URL für Ihre Veranstaltungsseite ist %1$s. <br><br> Sie können den Slug für Ihre Veranstaltungsseite nicht bearbeiten, da Sie keine Pretty Permalinks aktiviert haben. Um die Titelform hier zu bearbeiten, <a href=\"%2$s\"> aktivieren Sie Pretty Permalinks </a>."
679
 
680
  #: src/admin-views/tribe-options-display.php:52
681
  msgid "There are going to be situations where no out-of-the-box template is 100&#37; perfect. Check out our <a href=\"%s\">our themer's guide</a> for instructions on custom modifications."
682
+ msgstr "Es wird Situationen geben, in denen keine Out-of-the-Box-Vorlage zu 100&#37; perfekt ist. In unserem <a href=\"%s\">Benutzerhandbuch</a> finden Sie Anleitungen für benutzerdefinierte Anpassungen."
683
 
684
  #: src/admin-views/tribe-options-display.php:49
685
  msgid "The settings below control the display of your calendar. If things don't look right, try switching between the three style sheet options or pick a page template from your theme."
686
+ msgstr "Die folgenden Einstellungen steuern die Anzeige Ihres Kalenders. Wenn die Anzeige nicht richtig aussieht, wechseln Sie zwischen den drei Style-Sheet-Optionen oder wählen Sie eine Seitenvorlage aus Ihrem Theme."
687
 
688
  #: src/admin-views/aggregator/settings.php:194
689
  msgid "When importing from an event source, this is the maximum number of events that will be imported; on slower websites this may impact the success of imports. Setting this to a smaller number may improve results."
690
+ msgstr "Beim Importieren aus einer Quelle ist dies die maximale Anzahl von Veranstaltungen, die importiert werden. Auf langsameren Websites kann sich dies auf den Erfolg des Imports auswirken. Wenn Sie eine kleinere Zahl einstellen, kann dies die Importergebnisse verbessern."
691
 
692
  #: src/admin-views/aggregator/settings.php:193
693
  msgid "Import Quantity Limit"
704
 
705
  #: src/admin-views/aggregator/settings.php:164
706
  msgid "Limit the number of imported events by number, date range, or not at all; on slower websites this may impact the success of imports. Selecting a shorter time period or a smaller number of events may improve results."
707
+ msgstr "Begrenzen Sie die Anzahl der importierten Ereignisse nach Anzahl, Datumsbereich oder überhaupt nicht. Auf langsameren Websites kann sich dies auf den Erfolg von Importen auswirken. Die Auswahl eines kürzeren Zeitraums oder einer kleineren Anzahl von Veranstaltungen kann die Ergebnisse verbessern."
708
 
709
  #: src/admin-views/aggregator/settings.php:163
710
  msgid "Import Limit Type"
712
 
713
  #: src/admin-views/aggregator/origins/refine.php:27
714
  msgid "Use the filters to narrow down which events are fetched from Facebook."
715
+ msgstr "Verwenden Sie die Filter, um einzugrenzen, welche Veranstaltungen von Facebook abgerufen werden."
716
 
717
  #: src/admin-views/aggregator/origins/limit.php:20
718
  msgid "Event Aggregator will try to fetch %s events starting from the current date or the specified date;"
733
 
734
  #: src/Tribe/REST/V1/Messages.php:42
735
  msgid "The requested venue archive page does not exist"
736
+ msgstr "Die angeforderte Archivseite für den Veranstaltungsort existiert nicht"
737
 
738
  #: src/Tribe/REST/V1/Messages.php:41
739
  msgid "The organizer could not be updated"
877
 
878
  #: src/Tribe/REST/V1/Endpoints/Single_Tag.php:142
879
  msgid "the event tag term ID"
880
+ msgstr "die ID des Veranstaltungsschlagwortes"
881
 
882
  #: src/Tribe/REST/V1/Endpoints/Single_Tag.php:122
883
  msgid "The event tag with the specified term ID could not be deleted."
884
+ msgstr "Das Veranstaltungsschlagwort mit der angegebenen ID konnte nicht gelöscht werden."
885
 
886
  #: src/Tribe/REST/V1/Endpoints/Single_Tag.php:119
887
  msgid "The event tag with the specified term ID has been deleted already."
888
+ msgstr "Das Veranstaltungsschlagwort mit der angegebenen ID wurde bereits gelöscht."
889
 
890
  #: src/Tribe/REST/V1/Endpoints/Single_Tag.php:116
891
  msgid "The current user cannot delete the event tag with the specified term ID."
892
+ msgstr "Der aktuelle Benutzer kann das Veranstaltungsschlagwort mit der angegebenen ID nicht löschen."
893
 
894
  #: src/Tribe/REST/V1/Endpoints/Single_Tag.php:113
895
  msgid "The event tag term ID is missing or does not exist."
896
+ msgstr "Die ID des Veranstaltungsschlagwortes fehlt oder existiert nicht."
897
 
898
  #: src/Tribe/REST/V1/Endpoints/Single_Tag.php:107
899
  msgid "Deletes an event tag and returns its data"
917
 
918
  #: src/Tribe/REST/V1/Endpoints/Single_Tag.php:66
919
  msgid "Returns the data of the event tag with the specified term ID"
920
+ msgstr "Zeigt die Daten zu dem Schlagwort bei Veranstaltungen mit der angegebenen ID"
921
 
922
  #: src/Tribe/REST/V1/Endpoints/Single_Tag.php:37
923
  msgid "The event tag slug"
966
 
967
  #: src/Tribe/REST/V1/Endpoints/Single_Organizer.php:184
968
  msgid "The organizer with the specified ID could not be deleted."
969
+ msgstr "Der Veranstalter mit dieser ID kann nicht gelöscht werden"
970
 
971
  #: src/Tribe/REST/V1/Endpoints/Single_Organizer.php:181
972
  msgid "The organizer with the specified ID has been deleted already."
974
 
975
  #: src/Tribe/REST/V1/Endpoints/Single_Organizer.php:178
976
  msgid "The current user cannot delete the organizer with the specified ID."
977
+ msgstr "Der aktuelle Benutzer kann den Veranstalter mit dieser ID nicht löschen."
978
 
979
  #: src/Tribe/REST/V1/Endpoints/Single_Organizer.php:175
980
  msgid "The organizer post ID is missing or does not exist."
986
 
987
  #: src/Tribe/REST/V1/Endpoints/Single_Organizer.php:161
988
  msgid "The user is not authorized to create organizers"
989
+ msgstr "Der Benutzer ist nicht berechtigt Veranstalter zu erstellen"
990
 
991
  #: src/Tribe/REST/V1/Endpoints/Single_Organizer.php:152
992
  msgid "Returns the data of the created organizer"
993
+ msgstr "Gibt die Daten des erstellten Veranstalter zurück"
994
 
995
  #: src/Tribe/REST/V1/Endpoints/Single_Organizer.php:137
996
  msgid "The organizer post ID is missing."
998
 
999
  #: src/Tribe/REST/V1/Endpoints/Single_Organizer.php:131
1000
  msgid "Returns the data of the organizer with the specified post ID"
1001
+ msgstr "Zeigt die Daten zu dem Schlagwort bei Veranstaltungen mit der angegebenen Beitrags-ID"
1002
 
1003
  #: src/Tribe/REST/V1/Endpoints/Single_Event_Slug.php:36
1004
  msgid "the event post name"
1005
  msgstr "Der Beitragsname der Veranstaltung"
1006
 
1007
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:354
1008
  msgid "The event organizer IDs or data"
1009
  msgstr "Die ID oder die Daten des Veranstalters für diese Veranstaltung"
1010
 
1011
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:346
1012
  msgid "The event venue ID or data"
1013
+ msgstr "Die Veranstalter ID oder -daten des Events"
1014
 
1015
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:324
1016
  msgid "Whether the event should be featured on the site or not"
1026
 
1027
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:309
1028
  msgid "Whether the event should show a map link or not"
1029
+ msgstr "Ob die Veranstaltung einen Kartenlink anzeigen soll oder nicht"
1030
 
1031
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:304
1032
  msgid "Whether the event should show a map or not"
1090
 
1091
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:171
1092
  msgid "The current user cannot delete the event with the specified ID."
1093
+ msgstr "Der aktuelle Nutzer kann die Veranstaltung mit der angegebenen ID nicht löschen."
1094
 
1095
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:168
1096
  msgid "The event post ID is missing or does not exist."
1114
 
1115
  #: src/Tribe/REST/V1/Endpoints/Single_Category.php:148
1116
  msgid "the event category term ID"
1117
+ msgstr "die Kategorie ID der Veranstaltung"
1118
 
1119
  #: src/Tribe/REST/V1/Endpoints/Single_Category.php:128
1120
  msgid "The event category with the specified term ID could not be deleted."
1121
+ msgstr "Die Veranstaltungskategorie mit der angegebenen ID konnte nicht gelöscht werden."
1122
 
1123
  #: src/Tribe/REST/V1/Endpoints/Single_Category.php:125
1124
  msgid "The event category with the specified term ID has been deleted already."
1125
+ msgstr "Die Veranstaltungskategorie mit der angegebenen ID wurde schon gelöscht."
1126
 
1127
  #: src/Tribe/REST/V1/Endpoints/Single_Category.php:122
1128
  msgid "The current user cannot delete the event category with the specified term ID."
1129
+ msgstr "Der aktuelle Benutzer kann die Veranstaltungskategorie mit der angegebenen ID nicht löschen."
1130
 
1131
  #: src/Tribe/REST/V1/Endpoints/Single_Category.php:119
1132
  msgid "The event category term ID is missing or does not exist."
1133
+ msgstr "Die ID der Veranstaltungskategorie fehlt."
1134
 
1135
  #: src/Tribe/REST/V1/Endpoints/Single_Category.php:113
1136
  msgid "Deletes an event category and returns its data"
1158
 
1159
  #: src/Tribe/REST/V1/Endpoints/Single_Category.php:81
1160
  msgid "An event category with the specified term ID does not exist."
1161
+ msgstr "Eine Veranstaltungskategorie mit der angegebenen ID existiert nicht."
1162
 
1163
  #: src/Tribe/REST/V1/Endpoints/Single_Category.php:78
1164
  msgid "The event category term ID is missing."
1166
 
1167
  #: src/Tribe/REST/V1/Endpoints/Single_Category.php:72
1168
  msgid "Returns the data of the event category with the specified term ID"
1169
+ msgstr "Zeigt die Daten zu der Veranstaltungskategorie mit der angegebenen ID"
1170
 
1171
  #: src/Tribe/REST/V1/Endpoints/Single_Category.php:37
1172
  #: src/Tribe/REST/V1/Endpoints/Single_Category.php:43
1183
 
1184
  #: src/Tribe/REST/V1/Endpoints/Base.php:38
1185
  msgid "No description provided"
1186
+ msgstr "Keine Beschreibung verfügbar"
1187
 
1188
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:221
1189
  msgid "Venues should have upcoming events associated to them"
1203
 
1204
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:199
1205
  msgid "The number of venues to return on each page"
1206
+ msgstr "Die Anzahl der Veranstaltungsorte, die auf jeder Seite zurückgegeben werden"
1207
 
1208
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:53
1209
  msgid "Returns all the venues matching the search criteria"
1210
+ msgstr "Gibt alle Veranstaltungsorte zurück, die den Suchkriterien entsprechen"
1211
 
1212
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:118
1213
  msgid "The number of event tags to return on each page"
1219
 
1220
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:45
1221
  msgid "Returns all the event tags matching the search criteria"
1222
+ msgstr "Zeigt die Daten der erstellten Veranstaltung"
1223
 
1224
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:233
1225
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:230
1226
  #: src/Tribe/REST/V1/Endpoints/Single_Organizer.php:262
1227
  msgid "The organizer post status"
1228
+ msgstr "Die Beitragsstatus des Veranstalters"
1229
 
1230
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:224
1231
  msgid "Organizers should have upcoming events associated to them"
1251
  msgid "Returns all the organizers matching the search criteria"
1252
  msgstr "Gibt alle Veranstalter zurück, die den Suchkriterien entsprechen"
1253
 
1254
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:494
1255
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1256
  msgstr "Dafür ist Events Calendar Pro erforderlich. Veranstaltungen, die über den Längengrad des Veranstaltungsortes gefiltert werden sollen, müssen eine geoloc_lng beinhalten"
1257
 
1258
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:488
1259
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1260
  msgstr "Dafür ist Events Calendar Pro erforderlich. Veranstaltungen, die über den Breitengrad des Veranstaltungsortes gefiltert werden sollen, müssen eine geoloc_lng beinhalten"
1261
 
1262
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:482
1263
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1264
  msgstr "Dafür ist Events Calendar Pro erforderlich. Veranstaltungen können nur gefiltert werden, wenn der Veranstaltungsort entsprechende Geolocationdaten beinhaltet."
1265
 
1266
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:477
1267
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1268
  msgid "The event post status"
1269
  msgstr "Der Beitragsstatus der Veranstaltung"
1270
 
1271
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:470
1272
  msgid "Events should be filtered by their featured status"
1273
  msgstr "Veranstaltungen sollten über den hervorgehobenen Status gefiltert werden"
1274
 
1275
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:462
1276
  msgid "Events should be assigned one of the specified organizer IDs"
1277
  msgstr "Veranstaltungen sollten einer spezifischen Veranstalter ID zugeordnet werden"
1278
 
1279
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1280
  msgid "Events should be assigned one of the specified venue IDs"
1281
+ msgstr "Veranstaltungen sollten einer angegebenen Veranstaltungsort ID zugeordnet werden"
1282
 
1283
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:164
1284
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:175
1297
 
1298
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:145
1299
  msgid "Limit result set to terms assigned to a specific parent"
1300
+ msgstr "Beschränken Sie das Ergebnis auf Bedingungen, die einem bestimmten übergeordneten Element zugewiesen sind"
1301
 
1302
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:138
1303
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:155
1317
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:120
1318
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:137
1319
  msgid "Limit result set to specific IDs"
1320
+ msgstr "Beschränken Sie die Veranstaltung auf bestimmte IDs"
1321
 
1322
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:113
1323
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:130
1327
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:107
1328
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:124
1329
  msgid "Limit results to those matching a string"
1330
+ msgstr "Beschränken Sie die Veranstaltungen auf diejenigen, die mit einer Zeichenfolge übereinstimmen"
1331
 
1332
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:101
1333
  msgid "The number of event categories to return on each page"
1335
 
1336
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:28
1337
  msgid "Returns all the event categories matching the search criteria"
1338
+ msgstr "Zeigt alle Veranstaltungs-Schlagwörter zu diesem Suchbegriff"
1339
 
1340
  #: src/Tribe/REST/V1/Documentation/Venue_Definition_Provider.php:136
1341
  msgid "The venue geo longitude"
1359
 
1360
  #: src/Tribe/REST/V1/Documentation/Organizer_Definition_Provider.php:57
1361
  msgid "The organizer status"
1362
+ msgstr "Die Beitragsstatus des Veranstalters"
1363
 
1364
  #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:81
1365
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:244
1370
  msgid "The event status"
1371
  msgstr "Der Status der Veranstaltung"
1372
 
1373
+ #: src/Tribe/Linked_Posts.php:1254
1374
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1375
  msgid "Create or Find %s"
1376
  msgstr "Erstelle oder finde %s"
1377
 
1378
+ #: src/Tribe/Linked_Posts.php:1245
1379
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1380
  msgid "Find %1$s %2$s"
1381
  msgstr "Finde %1$s %2$s"
1382
 
1383
+ #: src/Tribe/Linked_Posts.php:1236
1384
  msgid "Find a Venue"
1385
  msgstr "Finde einen Veranstaltungsort"
1386
 
1387
+ #: src/Tribe/Linked_Posts.php:1235
1388
  msgid "Create or Find a Venue"
1389
+ msgstr "Erstelle oder finde einen Veranstaltungsort"
1390
 
1391
+ #: src/Tribe/Linked_Posts.php:1228
1392
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1393
  msgid "Create or Find %s"
1394
  msgstr "Erstelle oder finde %s"
1395
 
1396
+ #: src/Tribe/Linked_Posts.php:1219
1397
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1398
  msgid "Find %1$s %2$s"
1399
  msgstr "Finde %1$s %2$s"
1400
 
1401
+ #: src/Tribe/Linked_Posts.php:1208
1402
  msgid "Find an Organizer"
1403
  msgstr "Finde einen Veranstalter"
1404
 
1405
+ #: src/Tribe/Linked_Posts.php:1207
1406
  msgid "Create or Find an Organizer"
1407
+ msgstr "Erstellen oder suchen Sie einen Veranstalter"
1408
 
1409
+ #: src/Tribe/Linked_Posts.php:1200
1410
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1411
  msgid "Create or Find %s"
1412
  msgstr "Erstelle oder finde %s"
1413
 
1414
+ #: src/Tribe/Linked_Posts.php:1191
1415
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1416
  msgid "Find %1$s %2$s"
1417
  msgstr "Finde %1$s %2$s"
1422
 
1423
  #: src/Tribe/Aggregator/Tabs/Abstract.php:144
1424
  msgid "click here to edit it"
1425
+ msgstr "hier klicken um es zu bearbeiten"
1426
 
1427
  #: src/Tribe/Aggregator/Settings.php:443
1428
  msgid "Do not limit (not recommended)"
1439
  #: src/Tribe/Aggregator/Service.php:708
1440
  msgctxt "The placeholder is for the localized version of the iCal UID specification link"
1441
  msgid "Some events at the requested source are missing the UID attribute required by the iCalendar Specification. One-Time and ICS File imports are allowed but successive imports will create duplicated events on your site. Please contact the source provider to fix the UID issue; linking them to %s may help them more quickly resolve their feed's UID issue."
1442
+ msgstr "Bei einigen Veranstaltung der angeforderten Quelle fehlt das UID-Attribut, das für die iCalendar-Spezifikation erforderlich ist. Einmalige und ICS-Datei-Importe sind erlaubt, aber aufeinanderfolgende Importe erstellen doppelte Veranstaltungen auf Ihrer Website. Bitte wenden Sie sich an den Quellanbieter, um das UID-Problem zu beheben. Durch die Verknüpfung mit %s können Sie das UID-Problem ihres Feeds schneller beheben."
1443
 
1444
  #: src/Tribe/Aggregator/Service.php:700
1445
  msgctxt "The placeholder is for the localized version of the iCal UID specification link"
1446
  msgid "Some events at the requested source are missing the UID attribute required by the iCalendar Specification. Creating a scheduled import would generate duplicate events on each import. Instead, please use a One-Time import or contact the source provider to fix the UID issue; linking them to %s may help them more quickly resolve their feed's UID issue."
1447
+ msgstr "Bei einigen Veranstaltungen der angeforderten Quelle fehlt das UID-Attribut, das für die iCalendar-Spezifikation erforderlich ist. Beim Erstellen eines geplanten Imports würden bei jedem Import doppelte Ereignisse generiert. Verwenden Sie stattdessen einen Einmalimport, oder wenden Sie sich an den Quellanbieter, um das UID-Problem zu beheben. Durch die Verknüpfung mit %s können Sie das UID-Problem ihres Feeds schneller beheben."
1448
 
1449
  #: src/Tribe/Aggregator/Service.php:668
1450
  msgid "the UID part of the iCalendar Specification"
1452
 
1453
  #: src/Tribe/Aggregator/Page.php:87
1454
  msgid "A warning was generated while fetching the results from your import:"
1455
+ msgstr "Beim Abrufen der Veranstaltungen Ihres Imports wurde eine Warnung erzeugt:"
1456
 
1457
  #: common/src/admin-views/tribe-options-help.php:20
1458
  msgid "Check out our %s for developers."
1459
+ msgstr "Sehen Sie sich unsere %s für Entwickler an."
1460
 
1461
  #: common/src/admin-views/tribe-options-help.php:18
1462
  msgid "Want to dive deeper?"
1463
+ msgstr "Wollen Sie tiefer eintauchen?"
1464
 
1465
  #: common/src/admin-views/tribe-options-display.php:28
1466
  msgid "The following three fields accept the date format options available to the PHP %1$s function. <a href=\"%2$s\" target=\"_blank\">Learn how to make your own date format here</a>."
1467
+ msgstr "Die folgenden drei Felder akzeptieren die Datumsformat Optionen, die für die PHP %1$s-Funktion verfügbar sind. <a href=\"%2$s\" target=\"_blank\">Hier erfahren Sie, wie Sie Ihr eigenes Datumsformat erstellen können</a>."
1468
 
1469
  #: common/src/Tribe/Validate.php:545
1470
  msgid "%s must be an email address."
1471
+ msgstr "%s muss eine E-Mail-Adresse sein."
1472
 
1473
  #: common/src/Tribe/Languages/Locations.php:252
1474
  msgid "Sint Maarten"
1507
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1508
  msgstr "Die E-Mail Adresse wird auf der Website verschleiert, um sie gegen Spam zu schützen."
1509
 
1510
+ #: src/Tribe/Main.php:996
1511
  msgid "edit Events settings."
1512
  msgstr "bearbeite Veranstaltungseinstellungen."
1513
 
1514
+ #: src/Tribe/Main.php:987
1515
  msgid "Edit the %s slug"
1516
+ msgstr "Die %s Titelform (Permanlink) bearbeiten"
1517
 
1518
+ #: src/Tribe/Linked_Posts.php:1177
1519
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1520
  msgid "an"
1521
  msgstr "einen"
1522
 
1523
+ #: src/Tribe/Linked_Posts.php:1170
1524
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1525
  msgid "a"
1526
  msgstr "einen"
1528
  #. translators: %s: post title
1529
  #: src/Tribe/Ignored_Events.php:396
1530
  msgid "Hide and Ignore &#8220;%s&#8221;"
1531
+ msgstr "Verstecke und ignoriere &#8220;%s&#8221;"
1532
 
1533
  #: common/src/Tribe/Main.php:251
1534
  msgid "Clear Selection."
1540
 
1541
  #: common/src/Tribe/Main.php:249
1542
  msgid "All items on this page were selected. "
1543
+ msgstr "Alle Objekte auf diese Seite wurden selektiert."
1544
 
1545
  #: src/admin-views/aggregator/tabs/import-form.php:101
1546
  msgid "Add more sources"
1548
 
1549
  #: src/Tribe/Aggregator/Service.php:675
1550
  msgid "No upcoming Facebook events found."
1551
+ msgstr "Keine anstehenden Facebook Veranstaltungen gefunden."
1552
 
1553
  #: src/Tribe/Aggregator/Service.php:202
1554
  msgid "Event Aggregator server has blocked your request. Please try your import again later or contact support to know why."
1555
+ msgstr "Event Aggregator Server hat Ihre Anfrage gesperrt. Bitte versuchen Sie es später erneut zu importieren oder wenden Sie sich an den Support, um zu wissen, warum."
1556
 
1557
  #: src/Tribe/Customizer/General_Theme.php:311
1558
  msgid "Featured Highlight Color"
1562
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1563
  msgstr "Die Antwort des Event Aggregator Servers war nicht eindeutig und konnte nicht verstanden werden. Bitte erneut versuchen."
1564
 
 
 
 
 
1565
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1566
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1567
+ msgstr "Der Veranstaltungskalender konnte keine WPML-Standard-Konfigurationsdatei schreiben: Bitte erstellen Sie die Datei manuell."
1568
 
1569
  #: common/src/Tribe/Plugins_API.php:94
1570
  msgid "Accept user-submitted events on your site! With Community Events, you can accept public submissions or require account sign-on. Settings give you the options to save as a draft or publish automatically, enable categories and tags, and choose whether users can edit/manage their own events or simply submit. Best of all - setup is easy! Just activate, configure the options, and off you go."
1571
+ msgstr "Akzeptieren Sie Veranstaltungen Ihrer Nutzer auf Ihrer Seite! Mit Community Events können Sie Übermittlungen öffentlich oder per vorheriger Anmeldung akzeptieren. Sie können die übermittelten Veranstaltungen als Entwürfe speichern oder automatisch veröffentlichen. Sie können außerdem Kategorien und Schlagworte verwenden und wählen, ob Benutzer ihre eigenen Veranstaltungen bearbeiten oder verwalten können. Das Beste von allem - das Setup ist einfach! Einfach aktivieren, die Optionen konfigurieren und los geht's."
1572
 
1573
  #: common/src/Tribe/Plugins_API.php:60
1574
  msgid "Event Tickets provides a simple way for visitors to RSVP to your events. As a standalone plugin, it enables you to add RSVP functionality to posts or pages. When paired with The Events Calendar, you can add that same RSVP functionality directly to your event listings."
1575
+ msgstr "Event Tickets bieten eine einfache Möglichkeit für Besucher zu RSVP zu Ihren Veranstaltungen. Als eigenständiges Plugin ermöglicht es Ihnen, RSVP-Funktionalität zu Beiträgen oder Seiten hinzuzufügen. Wenn Sie den Events Calendar gleichzeitig nutzen, können Sie dieselbe RSVP-Funktionalität direkt zu Ihren Veranstaltungslisten hinzufügen."
1576
 
1577
  #: common/src/Tribe/Plugins_API.php:28
1578
  msgid "Create an events calendar and manage it with ease. The Events Calendar plugin provides professional-level quality and features backed by a team you can trust."
1579
+ msgstr "Erstellen Sie einen Veranstaltungskalender und verwalten Sie ihn mit Leichtigkeit. Das Events Calendar-Plugin bietet professionelle Qualität und Funktionen, die von einem Team unterstützt werden, dem Sie vertrauen können."
1580
 
1581
  #: common/src/Tribe/PUE/Checker.php:1095
1582
  msgid "There is a new version of %1$s available. %2$s"
1584
 
1585
  #: common/src/Tribe/PUE/Checker.php:1084
1586
  msgid "Update now to version %s."
1587
+ msgstr "Aktualisieren Sie jetzt auf Version %s."
1588
 
1589
  #: common/src/Tribe/Ajax/Dropdown.php:243
1590
  msgid "The \"%s\" source is invalid and cannot be reached on \"%s\" instance."
1606
  msgid "The event WordPress post ID"
1607
  msgstr "Die Wordpress Beitrags ID der Veranstaltung"
1608
 
1609
+ #: src/Tribe/Aggregator/Record/Abstract.php:363
1610
  msgid "Something went wrong while inserting the record in the database."
1611
  msgstr "Beim Einfügen des Datensatzes in der Datenbank ist etwas schief gegangen."
1612
 
1613
  #: common/src/Tribe/PUE/Notices.php:340
1614
  msgid "You can always check the status of your licenses by logging in to %1$syour account on theeventscalendar.com%2$s."
1615
+ msgstr "Sie können den Status Ihrer Lizenz jederzeit überprüfen, in dem Sie sich auf %1$s in Ihrem Account auf theeventscalendar.com%2$s einloggen."
1616
 
1617
  #: common/src/Tribe/PUE/Notices.php:225
1618
  msgid "It looks like you're using %1$s, but the license key is invalid. Please download the latest version %2$sfrom your account%3$s."
1619
  msgid_plural "It looks like you're using %1$s, but the license keys are invalid. Please download the latest versions %2$sfrom your account%3$s."
1620
+ msgstr[0] "Anscheinend verwenden Sie %1$s, aber der Lizenzschlüssel ist ungültig. Bitte laden Sie die neuste Version %2$svon Ihrem Konto %3$s runter."
1621
+ msgstr[1] "Anscheinend verwenden Sie %1$s, aber die Lizenzschlüssel sind ungültig. Bitte laden Sie die neuste Version %2$svon Ihrem Konto %3$s runter."
1622
 
1623
  #: common/src/Tribe/PUE/Checker.php:976
1624
  msgid "Please refresh the page and try your request again."
1625
+ msgstr "Bitte aktualisieren Sie die Seite und versuchen Sie es erneut."
1626
 
1627
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:29
1628
  msgid "The image WordPress post ID"
1629
  msgstr "Die Wordpress Beitrags ID des Bildes"
1630
 
1631
  #: common/src/Tribe/Plugins_API.php:129
1632
  msgid "Take your image widgets to the next level with Image Widget Plus! We've taken the simple functionality of our basic Image Widget and amped it up with several popular feature requests - multiple image support, slideshow, lightbox, and random image - all backed by a full year of premium support."
1633
+ msgstr "Nutzen Sie Image Widget Plus, um Ihre Bilder noch eleganter zu präsentieren. Nutzen Sie Slideshows, Lightbox, Unterstützung mehrer Bilder oder die Anzeige zufälliger Bilder - alles mit einem Jahr Unterstützung durch unseren Premium Support."
1634
 
1635
  #: common/src/Tribe/Plugins_API.php:125
1636
  msgid "Image Widget Plus"
1654
 
1655
  #: src/admin-views/aggregator/origins/url.php:84
1656
  msgid "Enter the url for the calendar, website, or event you would like to import. Event Aggregator will attempt to import events at that location."
1657
+ msgstr "Geben Sie die URL für den Kalender, die Website oder das Ereignis ein, das Sie importieren möchten. Event Aggregator wird versuchen, Ereignisse von diesem Ort zu importieren."
1658
 
1659
  #: src/Tribe/REST/V1/Messages.php:23
1660
  msgid "The 'categories' parameter contains invalid category slugs or IDs"
1661
+ msgstr "Der Parameter 'Kategorien' enthält ungültige Kategorie-Titelformen oder IDs"
1662
 
1663
  #: src/Tribe/REST/V1/Messages.php:14
1664
  msgid "The requested post ID does not exist or is not an event"
1684
  msgid "The event last modification date in UTC time"
1685
  msgstr "Das letzte Änderungsdatum in UTC-Zeit"
1686
 
1687
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:419
1688
  msgid "Events should start after the specified date"
1689
  msgstr "Veranstaltungen sollten nach dem angegebenen Datum beginnen"
1690
 
1691
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:426
1692
  msgid "Events should start before the specified date"
1693
  msgstr "Veranstaltungen sollten vor dem angegebenen Datum beginnen"
1694
 
1695
  #: src/Tribe/REST/V1/Endpoints/Single_Tag.php:75
1696
  msgid "An event tag with the specified term ID does not exist."
1697
+ msgstr "Eine Veranstaltung-Schlagwort mit der angegebenen ID existiert nicht"
1698
 
1699
  #: src/Tribe/REST/V1/Endpoints/Swagger_Documentation.php:91
1700
  msgid "The Events Calendar REST API"
1724
  msgid "the event post ID"
1725
  msgstr "Die Beitrags-ID der Veranstaltung"
1726
 
1727
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:432
1728
  msgid "Events should contain the specified string in the title or description"
1729
+ msgstr "Veranstaltungen sollten die spezifizierte Zeichenkette im Titel oder der Beschreibung enthalten"
1730
 
1731
  #: src/Tribe/REST/V1/Messages.php:24
1732
  msgid "The 'tags' parameter contains invalid tag slugs or IDs"
1733
+ msgstr "Der 'tags' Parameter enthält ungültige Schlagwörter Titelformen oder IDs"
1734
 
1735
  #: src/Tribe/REST/V1/Messages.php:25
1736
  msgid "The requested event archive page does not exist"
1744
  #: src/admin-views/aggregator/origins/limit.php:19
1745
  #: src/admin-views/aggregator/origins/url.php:89
1746
  msgid "Event Aggregator will try to fetch events starting within the next %s from the current date or the specified date;"
1747
+ msgstr "Der Event Aggregator versucht, Veranstaltungen ab dem aktuellen Datum oder dem angegebenen Datum innerhalb der nächsten %s abzurufen."
1748
 
1749
  #: src/admin-views/aggregator/origins/url.php:83
1750
  msgid "example.com/"
1818
 
1819
  #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:138
1820
  msgid "The event cost including the currency symbol"
1821
+ msgstr "Der Eintrittspreis inklusive der Währung"
1822
 
1823
  #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:142
1824
  msgid "The event cost details"
1989
 
1990
  #: src/Tribe/REST/V1/EA_Messages.php:11
1991
  msgid "The Events Calendar is API is not providing the site origin correctly."
1992
+ msgstr "Die Events Calendar REST-API stellt den Website-Ursprung nicht korrekt bereit."
1993
 
1994
  #: src/Tribe/REST/V1/EA_Messages.php:14
1995
  msgid "Events could not be imported. The URL provided could be reached and has The Events Calendar REST API enabled, but returned malformed data."
2020
  msgstr "Die angeforderte URL hat keine anstehenden und veröffentlichten Veranstaltungen, die den Suchkriterien entsprechen."
2021
 
2022
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2023
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:404
2024
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2025
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2026
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2027
  msgid "The archive page to return"
2028
  msgstr "Die zurückzugebende Archivseite"
2029
 
2030
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:412
2031
  msgid "The number of events to return on each page"
2032
  msgstr "Die Anzahl der Veranstaltungen, die auf jeder Seite zurückgegeben werden sollen"
2033
 
2034
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
2035
  msgid "Events should be assigned one of the specified categories slugs or IDs"
2036
+ msgstr "Veranstaltungen sollten einer der angegebenen Kategorie Titelformen oder IDs zugewiesen werden."
2037
 
2038
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:446
2039
  msgid "Events should be assigned one of the specified tags slugs or IDs"
2040
  msgstr "Veranstaltungen sollten eines der angegebenen Schlagwörter oder IDs zugewiesen werden."
2041
 
2042
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:374
2043
  msgid "Returns all the upcoming events matching the search criteria"
2044
  msgstr "Gibt alle zukünftigen Veranstaltungen, die dem Suchkriterium entsprechen, zurück"
2045
 
2046
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:36
2047
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:382
2048
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:64
2049
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:53
2050
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:61
2081
 
2082
  #: src/admin-views/aggregator/origins/refine.php:23
2083
  msgid "Use the filters to narrow down which events are fetched from this site."
2084
+ msgstr "Verwenden Sie die Filter, um zu einzugrenzen, welche Veranstaltungen von dieser Seite abgerufen werden."
2085
 
2086
  #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:45
2087
  msgid "The event creation date in UTC time"
2160
 
2161
  #: src/Tribe/REST/V1/EA_Messages.php:12
2162
  msgid "Events could not be imported. Event Aggregator does not yet support events from that URL. We have noted your request and will review it for support in the future."
2163
+ msgstr "Veranstaltungen konnten nicht importiert werden. Event Aggregator unterstützt noch keine Veranstaltungen von dieser URL. Wir haben Ihre Anfrage festgestellt und werden sie in Zukunft für die Unterstützung überprüfen."
2164
 
2165
  #: src/Tribe/REST/V1/EA_Messages.php:13
2166
  msgid "Events could not be imported. The Events Calendar REST API is disabled on the requested URL."
2259
  msgid "three months"
2260
  msgstr "drei Monate"
2261
 
2262
+ #: src/Tribe/Aggregator/Tabs/New.php:385
2263
  msgid "%1$d new event tag was created."
2264
  msgid_plural "%1$d new event tags were created."
2265
  msgstr[0] "%1$d neues Veranstaltungs - Schlagwort wurde erstellt."
2266
  msgstr[1] "%1$d neue Veranstaltungs - Schlagwörter wurden erstellt."
2267
 
2268
+ #: src/Tribe/Aggregator/Tabs/New.php:389
2269
  msgid "View your event tags"
2270
+ msgstr "Ihre Veranstaltungs - Schlagwörter anzeigen"
2271
 
2272
  #: src/Tribe/REST/V1/Documentation/Event_Definition_Provider.php:28
2273
  msgid "The event ID used to globally identify in Event Aggregator"
2308
 
2309
  #: common/src/Tribe/PUE/Checker.php:497
2310
  msgid "%1$sBuy a license%2$s for the Event Aggregator service to access additional import features."
2311
+ msgstr "%1$sKaufen Sie ine Lizenz%2$s für den Event Aggregator Service um weitere Importfunktionen freizuschalten."
2312
 
2313
  #: src/functions/template-tags/loop.php:218
2314
  msgctxt "day_view"
2324
  msgid "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2325
  msgstr "Ändere den aktuellen Standard von 3 Veranstaltungen pro Tag in der Monatsübersicht. Um kein Limit festzulegen gib bitte -1 ein. Achtung! Es können Performance Probleme auftreten wenn zu viele Veranstaltungen an einem Tag stattfinden <a href=\"%s\">Mehr lesen</a>."
2326
 
2327
+ #: src/Tribe/Main.php:763
2328
  msgctxt "all events slug"
2329
  msgid "all"
2330
  msgstr "alle"
2363
 
2364
  #: common/src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:24
2365
  msgid "The WordPress term ID"
2366
+ msgstr "Die WordPress ID"
2367
 
2368
+ #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:37
2369
  msgid "The link to the image in the specified size on the site"
2370
  msgstr "Der Link auf das Bild in der angegebenen Größe auf der Website"
2371
 
2381
  msgid "The image width in pixels in the specified size"
2382
  msgstr "Die Bildbreite in Pixel in der angegebenen Größe"
2383
 
2384
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:45
2385
  msgid "The details about each size available for the image"
2386
  msgstr "Die Details zu jeder Größe für das Bild"
2387
 
2388
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:41
2389
  msgid "The image natural height in pixels"
2390
  msgstr "Die Bildhöhe in Pixel"
2391
 
2392
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:37
2393
  msgid "The image natural width in pixels"
2394
  msgstr "Die Bildbreite in Pixel"
2395
 
2396
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:33
2397
  msgid "The image file extension"
2398
  msgstr "Die Bild Dateierweiterung"
2399
 
2401
  msgid "The venue WordPress post ID"
2402
  msgstr "Die WordPress Post ID des Veranstaltungsortes"
2403
 
2404
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:25
2405
  msgid "The URL to the full size version of the image"
2406
  msgstr "Die URL zum Bildes mit der höchsten Auflösung"
2407
 
2441
  msgid "The cost currency symbol"
2442
  msgstr "Die Währung des Eintrittspreises"
2443
 
2444
+ #: src/Tribe/Main.php:4035
2445
  msgid "Keyword"
2446
  msgstr "Begriff"
2447
 
2516
  msgid "Export Events"
2517
  msgstr "Veranstaltungen exportieren"
2518
 
2519
+ #: src/Tribe/Main.php:762
2520
  msgctxt "featured events slug"
2521
  msgid "featured"
2522
  msgstr "hervorgehoben"
2523
 
2524
+ #: src/Tribe/Linked_Posts.php:1133
2525
  msgid "Create: <b><%= term %></b>"
2526
  msgstr "Erstelle: <b><%= term %></b>"
2527
 
2670
  msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2671
  msgstr "Hier gewählte Optionen überschreiben die Einstellungen in \"Allgemeine Einstellungen\" und \"Globale Elemente\"."
2672
 
2673
+ #: src/Tribe/Assets.php:685 src/deprecated/Tribe__Events__Asset__Dynamic.php:77
2674
  msgid "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2675
  msgstr "Diese ganztägige Veranstaltung beginnt am %%startdatenoyear%% und endet am %%enddatewithyear%%."
2676
 
2677
+ #: src/Tribe/Assets.php:684 src/deprecated/Tribe__Events__Asset__Dynamic.php:76
2678
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2679
  msgstr "Diese Veranstaltung beginnt um %%starttime%% am %%startdatenoyear%% und endet am %%enddatewithyear%%."
2680
 
2681
+ #: src/Tribe/Assets.php:683 src/deprecated/Tribe__Events__Asset__Dynamic.php:75
2682
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2683
  msgstr "Diese Veranstaltung beginnt um %%starttime%% am %%startdatenoyear%% und endet um %%endtime%% am %%enddatewithyear%%."
2684
 
2685
+ #: src/Tribe/Assets.php:682 src/deprecated/Tribe__Events__Asset__Dynamic.php:74
2686
  msgid "This event is all day on %%startdatewithyear%%."
2687
  msgstr "Diese ganztägige Veranstaltung findet am %%startdatenoyear%% statt."
2688
 
2689
+ #: src/Tribe/Assets.php:681 src/deprecated/Tribe__Events__Asset__Dynamic.php:73
2690
  msgid "This event is at %%starttime%% on %%startdatewithyear%%."
2691
  msgstr "Diese Veranstaltung findet um %%starttime%% am %%startdatenoyear%% statt."
2692
 
2693
+ #: src/Tribe/Assets.php:680 src/deprecated/Tribe__Events__Asset__Dynamic.php:72
2694
  msgid "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2695
  msgstr "Diese Veranstaltung findet von %%starttime%% bis %%endtime%% am %%startdatenoyear%% statt."
2696
 
2697
+ #: src/Tribe/Assets.php:677 src/deprecated/Tribe__Events__Asset__Dynamic.php:69
2698
  msgid "Dec"
2699
  msgstr "Dez"
2700
 
2701
+ #: src/Tribe/Assets.php:676 src/deprecated/Tribe__Events__Asset__Dynamic.php:68
2702
  msgid "Nov"
2703
  msgstr "Nov"
2704
 
2705
+ #: src/Tribe/Assets.php:675 src/deprecated/Tribe__Events__Asset__Dynamic.php:67
2706
  msgid "Oct"
2707
  msgstr "Okt"
2708
 
2709
+ #: src/Tribe/Assets.php:674 src/deprecated/Tribe__Events__Asset__Dynamic.php:66
2710
  msgid "Sep"
2711
  msgstr "Sep"
2712
 
2713
+ #: src/Tribe/Assets.php:673 src/deprecated/Tribe__Events__Asset__Dynamic.php:65
2714
  msgid "Aug"
2715
  msgstr "Aug"
2716
 
2717
+ #: src/Tribe/Assets.php:672 src/deprecated/Tribe__Events__Asset__Dynamic.php:64
2718
  msgid "Jul"
2719
  msgstr "Jul"
2720
 
2721
+ #: src/Tribe/Assets.php:671 src/deprecated/Tribe__Events__Asset__Dynamic.php:63
2722
  msgid "Jun"
2723
  msgstr "Jun"
2724
 
2725
+ #: src/Tribe/Assets.php:669 src/deprecated/Tribe__Events__Asset__Dynamic.php:61
2726
  msgid "Apr"
2727
  msgstr "Apr"
2728
 
2729
+ #: src/Tribe/Assets.php:668 src/deprecated/Tribe__Events__Asset__Dynamic.php:60
2730
  msgid "Mar"
2731
  msgstr "Mrz"
2732
 
2733
+ #: src/Tribe/Assets.php:667 src/deprecated/Tribe__Events__Asset__Dynamic.php:59
2734
  msgid "Feb"
2735
  msgstr "Feb"
2736
 
2737
+ #: src/Tribe/Assets.php:666 src/deprecated/Tribe__Events__Asset__Dynamic.php:58
2738
  msgid "Jan"
2739
  msgstr "Jan"
2740
 
2741
+ #: src/Tribe/Assets.php:663 src/deprecated/Tribe__Events__Asset__Dynamic.php:55
2742
  msgid "December"
2743
  msgstr "Dezember"
2744
 
2745
+ #: src/Tribe/Assets.php:662 src/deprecated/Tribe__Events__Asset__Dynamic.php:54
2746
  msgid "November"
2747
  msgstr "November"
2748
 
2749
+ #: src/Tribe/Assets.php:661 src/deprecated/Tribe__Events__Asset__Dynamic.php:53
2750
  msgid "October"
2751
  msgstr "Oktober"
2752
 
2753
+ #: src/Tribe/Assets.php:660 src/deprecated/Tribe__Events__Asset__Dynamic.php:52
2754
  msgid "September"
2755
  msgstr "September"
2756
 
2757
+ #: src/Tribe/Assets.php:659 src/deprecated/Tribe__Events__Asset__Dynamic.php:51
2758
  msgid "August"
2759
  msgstr "August"
2760
 
2761
+ #: src/Tribe/Assets.php:658 src/deprecated/Tribe__Events__Asset__Dynamic.php:50
2762
  msgid "July"
2763
  msgstr "Juli"
2764
 
2765
+ #: src/Tribe/Assets.php:657 src/deprecated/Tribe__Events__Asset__Dynamic.php:49
2766
  msgid "June"
2767
  msgstr "Juni"
2768
 
2769
+ #: src/Tribe/Assets.php:656 src/Tribe/Assets.php:670
2770
+ #: src/deprecated/Tribe__Events__Asset__Dynamic.php:48
2771
+ #: src/deprecated/Tribe__Events__Asset__Dynamic.php:62
2772
  msgid "May"
2773
  msgstr "Mai"
2774
 
2775
+ #: src/Tribe/Assets.php:655 src/deprecated/Tribe__Events__Asset__Dynamic.php:47
2776
  msgid "April"
2777
  msgstr "April"
2778
 
2779
+ #: src/Tribe/Assets.php:654 src/deprecated/Tribe__Events__Asset__Dynamic.php:46
2780
  msgid "March"
2781
  msgstr "März"
2782
 
2783
+ #: src/Tribe/Assets.php:653 src/deprecated/Tribe__Events__Asset__Dynamic.php:45
2784
  msgid "February"
2785
  msgstr "Februar"
2786
 
2787
+ #: src/Tribe/Assets.php:652 src/deprecated/Tribe__Events__Asset__Dynamic.php:44
2788
  msgid "January"
2789
  msgstr "Januar"
2790
 
2791
+ #: src/Tribe/Assets.php:649 src/deprecated/Tribe__Events__Asset__Dynamic.php:41
2792
  msgid "Sat"
2793
  msgstr "Sa"
2794
 
2795
+ #: src/Tribe/Assets.php:648 src/deprecated/Tribe__Events__Asset__Dynamic.php:40
2796
  msgid "Fri"
2797
  msgstr "Fr"
2798
 
2799
+ #: src/Tribe/Assets.php:647 src/deprecated/Tribe__Events__Asset__Dynamic.php:39
2800
  msgid "Thu"
2801
  msgstr "Do"
2802
 
2803
+ #: src/Tribe/Assets.php:646 src/deprecated/Tribe__Events__Asset__Dynamic.php:38
2804
  msgid "Wed"
2805
  msgstr "Mi"
2806
 
2807
+ #: src/Tribe/Assets.php:645 src/deprecated/Tribe__Events__Asset__Dynamic.php:37
2808
  msgid "Tue"
2809
  msgstr "Di"
2810
 
2811
+ #: src/Tribe/Assets.php:644 src/deprecated/Tribe__Events__Asset__Dynamic.php:36
2812
  msgid "Mon"
2813
  msgstr "Mo"
2814
 
2815
+ #: src/Tribe/Assets.php:643 src/deprecated/Tribe__Events__Asset__Dynamic.php:35
2816
  msgid "Sun"
2817
  msgstr "So"
2818
 
2819
+ #: src/Tribe/Assets.php:640 src/deprecated/Tribe__Events__Asset__Dynamic.php:32
2820
  msgid "Saturday"
2821
  msgstr "Samstag"
2822
 
2823
+ #: src/Tribe/Assets.php:639 src/deprecated/Tribe__Events__Asset__Dynamic.php:31
2824
  msgid "Friday"
2825
  msgstr "Freitag"
2826
 
2827
+ #: src/Tribe/Assets.php:638 src/deprecated/Tribe__Events__Asset__Dynamic.php:30
2828
  msgid "Thursday"
2829
  msgstr "Donnerstag"
2830
 
2831
+ #: src/Tribe/Assets.php:637 src/deprecated/Tribe__Events__Asset__Dynamic.php:29
2832
  msgid "Wednesday"
2833
  msgstr "Mittwoch"
2834
 
2835
+ #: src/Tribe/Assets.php:636 src/deprecated/Tribe__Events__Asset__Dynamic.php:28
2836
  msgid "Tuesday"
2837
  msgstr "Dienstag"
2838
 
2839
+ #: src/Tribe/Assets.php:635 src/deprecated/Tribe__Events__Asset__Dynamic.php:27
2840
  msgid "Monday"
2841
  msgstr "Montag"
2842
 
2843
+ #: src/Tribe/Assets.php:634 src/deprecated/Tribe__Events__Asset__Dynamic.php:26
2844
  msgid "Sunday"
2845
  msgstr "Sonntag"
2846
 
2847
  #: src/deprecated/Tribe__Events__Admin__Front_Page_View.php:20
2848
  msgctxt "Static front page setting"
2849
  msgid "Main %s Page"
2850
+ msgstr "Hauptseite %s"
2851
 
2852
  #: common/src/Tribe/Settings.php:281 common/src/Tribe/Settings.php:282
2853
  msgid "Events Help"
2855
 
2856
  #: common/src/Tribe/PUE/Checker.php:1670
2857
  msgid "Expired license. Consult your network administrator."
2858
+ msgstr "Lizenz abgelaufen. Bitte informieren Sie den Administrator."
2859
 
2860
  #: common/src/Tribe/PUE/Checker.php:1669
2861
  msgid "No license entered. Consult your network administrator."
2862
+ msgstr "Kein Lizenzschlüssel eingegeben. Bitte informieren Sie den Administrator."
2863
 
2864
  #: common/src/Tribe/PUE/Checker.php:1668
2865
  msgid "A valid license has been entered by your network administrator."
2866
+ msgstr "Ein gültiger Lizenzschlüssel wurde von Ihrem Netzwerk Administrator eingegeben."
2867
 
2868
  #: common/src/Tribe/PUE/Checker.php:550
2869
  msgid "Site License Key"
2871
 
2872
  #: common/src/Tribe/PUE/Checker.php:539
2873
  msgid "Check this box if you wish to override the network license key with your own"
2874
+ msgstr "Aktivieren Sie diese Option, um den Netzwerk Lizenzschlüssel mit Ihrem eigenen zu überschreiben."
2875
 
2876
  #: common/src/Tribe/PUE/Checker.php:538
2877
  msgid "Override network license key"
2883
 
2884
  #: common/src/Tribe/Customizer.php:570
2885
  msgid "Use the following panel of your customizer to change the styling of your Calendar and Event pages."
2886
+ msgstr "Nutzen Sie den folgenden Bereich um das Design Ihres Kalenders und Veranstaltungsseiten anzupassen."
2887
 
2888
  #: common/src/admin-views/app-shop.php:31
2889
  msgid "Installed"
2895
 
2896
  #: common/src/Tribe/Extension.php:368
2897
  msgid "Unable to run Tribe Extensions. Your website host is running PHP 5.2 or older, and has likely disabled or misconfigured debug_backtrace(). You, or your website host, will need to upgrade PHP or properly configure debug_backtrace() for Tribe Extensions to work."
2898
+ msgstr "Die Tribe Extensions können nicht ausgeführt werden. Ihre Website nutzt PHP 5.2 oder älter und hat vermutlich debug_backtrace() nicht aktiviert bzw. falsch konfiguriert. Bitte upgraden Sie (oder Ihr Website Host) auf eine neuere PHP Version oder konfigurieren Sie debug_backtrace() korrekt, damit die Tribe Extensions ausgeführt werden können."
2899
 
2900
  #: common/src/Tribe/Extension.php:144
2901
  msgid "Tutorial"
2915
 
2916
  #: common/src/Tribe/Admin/Notice/Plugin_Download.php:75
2917
  msgid "To begin using %1$s, please install and activate the latest version of %2$s."
2918
+ msgstr "Um mit %1$s zu nutzen, installieren und aktivieren Sie bitte die aktuelle Version von %2$s."
2919
 
2920
  #: src/Tribe/Aggregator/Service.php:730
2921
  msgid "Unknown service message"
2922
  msgstr "Unbekannte Service Meldung"
2923
 
2924
+ #: src/Tribe/Aggregator/Record/List_Table.php:540
2925
  msgid "Unknown"
2926
  msgstr "Unbekannt"
2927
 
2928
+ #: src/Tribe/Aggregator/Record/Abstract.php:1206
2929
  msgid "When this import was last scheduled to run, the daily limit for your Event Aggregator license had already been reached."
2930
+ msgstr "Als dieser Import zuletzt ausgeführt wurde, wurde das Tageslimit für Ihre Event Aggregator-Lizenz bereits erreicht."
2931
 
2932
  #: src/admin-views/aggregator/origins/refine.php:5
2933
  msgid "Location"
2935
 
2936
  #: src/admin-views/admin-welcome-message.php:26
2937
  msgid "Stay in touch with The Events Calendar team. We send out periodic updates, key developer notices, and even the occasional discount."
2938
+ msgstr "Bleiben Sie in Kontakt mit dem Events Calendar Team. Wir senden regelmäßig Updates, wichtige Entwickler Hinweise, und sogar gelegentlich Rabatte."
2939
 
2940
  #: src/admin-views/admin-welcome-message.php:20
2941
  msgid "Your ratings help us bring The Events Calendar to more users. More happy users mean more support, more features, and more of everything you know and love about The Events Calendar. We couldn't do this without your support."
2942
+ msgstr "Ihre Bewertungen helfen uns, den Veranstaltungskalender zu mehr Benutzern zu bringen. Mehr glückliche Benutzer bedeuten mehr Unterstützung, mehr Funktionen und mehr von allem, das Sie kennen und lieben am Events Calendar. Das geht nicht ohne Ihre Unterstützung."
2943
 
2944
  #: src/views/single-event.php:28
2945
  msgctxt "%s Events plural label"
2956
 
2957
  #: src/admin-views/tribe-options-addons-api.php:99
2958
  msgid "%s to view your Meetup API Key"
2959
+ msgstr "%s, um Ihren Meetup API-Schlüssel anzuzeigen"
2960
 
2961
  #: src/admin-views/tribe-options-addons-api.php:98
2962
  msgid "Meetup API Key"
2964
 
2965
  #: src/admin-views/tribe-options-addons-api.php:94
2966
  msgid "You need a Meetup API Key to import your events from Meetup."
2967
+ msgstr "Sie benötigen einen Meetup API Schlüssel, um Veranstaltungen von Meetup zu importieren."
2968
 
2969
  #: src/admin-views/tribe-options-addons-api.php:82
2970
  msgid "You need to connect Event Aggregator to Facebook to import your events from Facebook."
2981
 
2982
  #: src/admin-views/tribe-options-addons-api.php:57
2983
  msgid "Your Event Aggregator Facebook connection will expire %s."
2984
+ msgstr "Ihre Event Aggregator Facebook Verbindung wird %s auslaufen."
2985
 
2986
  #: src/admin-views/tribe-options-addons-api.php:55
2987
  msgid "Your Event Aggregator Facebook connection has expired %s."
2988
+ msgstr "Ihre Event Aggregator Facebook Verbindung ist am %s ausgelaufen."
2989
 
2990
  #: src/admin-views/tribe-options-addons-api.php:52
2991
  msgid "Connect to Facebook"
2993
 
2994
  #: src/admin-views/tribe-options-addons-api.php:51
2995
  msgid "You need to connect to Facebook for Event Aggregator to work properly"
2996
+ msgstr "Sie müssen sich mit Facebook verbinden, damit der Event Aggregator richtig arbeiten kann"
2997
 
2998
  #: src/admin-views/tribe-options-addons-api.php:46
2999
  msgid "Facebook Token"
3001
 
3002
  #: src/admin-views/aggregator/tabs/import-form.php:295
3003
  msgid "Events will be imported with the time zone defined by the source. If no time zone is specified, events will be assigned your site's default time zone ( see"
3004
+ msgstr "Veranstaltungen werden mit der von der Quelle definierten Zeitzone importiert. Wenn keine Zeitzone angegeben ist, wird den Veranstaltungen die Standardzeitzone Ihrer Website zugewiesen (%1$sEinstellungen> Allgemein%2$s)."
3005
 
3006
  #: src/admin-views/aggregator/tabs/import-form.php:215
3007
  msgid "Category:"
3023
 
3024
  #: src/admin-views/aggregator/tabs/import-form.php:169
3025
  msgid "The following preview does not necessarily contain all of the data from your CSV file. The data displayed below is meant as a guide to help you map your CSV file's columns to the appropriate Event fields."
3026
+ msgstr "Die folgende Vorschau enthält nicht unbedingt alle Daten aus Ihrer CSV-Datei. Die unten angezeigten Daten dienen als Leitfaden für die Zuordnung der Spalten der CSV-Datei zu den entsprechenden Ereignisfeldern."
3027
 
3028
  #: src/admin-views/aggregator/tabs/import-form.php:163
3029
  msgid "Column Mapping:"
3031
 
3032
  #: src/admin-views/aggregator/tabs/import-form.php:160
3033
  msgid "This is a preview of the type of content you will be getting in during the import based on what is on the calendar now."
3034
+ msgstr "Dies ist eine Vorschau der Art der Inhalte, die Sie während des Imports erhalten werden, basierend auf dem, was im Kalender jetzt vorhanden ist."
3035
 
3036
  #: src/admin-views/aggregator/tabs/import-form.php:149
3037
  msgid "When you save this scheduled import, the events above will begin importing."
3038
+ msgstr "Wenn Sie diesen geplanten Import speichern, werden die oben genannten Veranstaltungen begonnen zu importieren."
3039
 
3040
  #: src/admin-views/aggregator/tabs/import-form.php:147
3041
  msgid "Select the Event Field that best matches your CSV file column. The contents of that column will then be mapped to the specified event field when the event is created."
3042
+ msgstr "Wählen Sie das Veranstaltungsfeld aus, das am besten zu Ihrer CSV-Dateispalte passt. Der Inhalt dieser Spalte wird dann beim Erzeugen der Veranstaltung dem angegebenen Veranstaltungsfeld zugeordnet."
3043
 
3044
  #: src/admin-views/aggregator/tabs/import-form.php:145
3045
  msgid "These settings will also apply to events imported in the future via this scheduled import."
3047
 
3048
  #: src/admin-views/aggregator/tabs/import-form.php:144
3049
  msgid "Choose a status for the event(s) to be imported with and/or define an Event Category to automatically assign. An assigned category will be added to the event in addition to any Event Categories from the import source."
3050
+ msgstr "Wählen Sie einen Status für die zu importierenden Veranstaltungen aus und / oder definieren Sie eine Veranstaltungskategorie, die automatisch zugewiesen werden soll. Eine zugeordnete Kategorie wird der Veranstaltung zusätzlich zu Veranstaltungskategorien aus der Importquelle hinzugefügt."
3051
 
3052
  #: src/admin-views/aggregator/tabs/import-form.php:104
3053
  msgid "Access more event sources and automatic imports!"
3059
 
3060
  #: src/admin-views/aggregator/tabs/import-form.php:40
3061
  msgid "Choose where you are importing from."
3062
+ msgstr "Wählen Sie aus, von wo aus Sie importieren."
3063
 
3064
  #: src/admin-views/aggregator/tabs/import-form.php:39
3065
  msgid "Select Origin"
3079
 
3080
  #: src/admin-views/aggregator/status.php:222
3081
  msgid "You have not entered a Meetup API key"
3082
+ msgstr "Sie haben keinen Meetup API-Schlüssel eingegeben"
3083
 
3084
  #: src/admin-views/aggregator/status.php:218
3085
  msgid "API key entered"
3101
 
3102
  #: src/admin-views/aggregator/status.php:169
3103
  msgid "You have not connected Event Aggregator to Facebook"
3104
+ msgstr "Sie haben Event Aggregator nicht mit Facebook verbunden"
3105
 
3106
  #: src/admin-views/aggregator/status.php:156
3107
  msgid "Third Party Accounts"
3162
 
3163
  #: src/admin-views/aggregator/status.php:66
3164
  msgid "You are approaching your daily import limit. You may want to adjust your Scheduled Import frequencies."
3165
+ msgstr "Sie nähern sich Ihrer täglichen Importgrenze. Sie können Ihre geplanten Importhäufigkeiten anpassen."
3166
 
3167
  #: src/admin-views/aggregator/status.php:63
3168
  msgid "You have reached your daily import limit. Scheduled imports will be paused until tomorrow."
3169
+ msgstr "Sie haben Ihre tägliches Importgrenze erreicht. Geplante Importe werden bis morgen pausiert."
3170
 
3171
  #: src/admin-views/aggregator/status.php:36
3172
  msgid "Check your license key"
3173
+ msgstr "Überprüfen Sie Ihren Lizenzschlüssel"
3174
 
3175
  #: src/admin-views/aggregator/status.php:35
3176
  msgid "Your license is invalid"
3177
+ msgstr "Ihr Lizenzschlüssel in ungültig"
3178
 
3179
  #: src/admin-views/aggregator/status.php:32
3180
  msgid "Buy Event Aggregator to access more event sources and automatic imports!"
3181
+ msgstr "Kaufen Sie Event Aggregator, um auf weitere Veranstaltungsquellen und automatische Importe zuzugreifen!"
3182
 
3183
  #: src/admin-views/aggregator/status.php:30
3184
  msgid "You do not have a license"
3185
+ msgstr "Sie haben keine Lizenz"
3186
 
3187
  #: src/admin-views/aggregator/status.php:23
3188
  msgid "Your license is valid"
3189
+ msgstr "Ihre Lizenz ist gültig"
3190
 
3191
  #: src/admin-views/aggregator/status.php:14
3192
  msgid "License &amp; Usage"
3204
 
3205
  #: src/admin-views/aggregator/settings.php:708
3206
  msgid "Use the options below to configure your imports. Looking for more ways to import events from other websites?"
3207
+ msgstr "Verwenden Sie die folgenden Optionen, um Ihre Importe zu konfigurieren. Suchen Sie nach weiteren Möglichkeiten, Veranstaltungen von anderen Websites zu importieren?"
3208
 
3209
  #: src/admin-views/aggregator/settings.php:608
3210
  msgid "Global"
3220
 
3221
  #: src/admin-views/aggregator/settings.php:684
3222
  msgid "Use the options below to configure your imports. Global Import Settings apply to all imports, but you can also override the global settings by adjusting the origin-specific options. Check your Event Aggregator Service Status on the %1$s."
3223
+ msgstr "Verwenden Sie die folgenden Optionen, um Ihre Importe zu konfigurieren. Die globalen Importeinstellungen gelten für alle Importe, Sie können aber auch die globalen Einstellungen überschreiben, indem Sie die spezifischen Optionen anpassen. Überprüfen Sie den Status des Event Aggregator Dienstes auf %1$s."
3224
 
3225
  #: src/admin-views/aggregator/settings.php:419
3226
  msgid "The default event category for events imported via Meetup"
3232
 
3233
  #: src/admin-views/aggregator/settings.php:395
3234
  msgid "To import Meetup events, please be sure to add your Meetup API key on %1$sEvents > Settings > APIs%2$s"
3235
+ msgstr "Um Meetup-Ereignisse zu importieren, fügen Sie Ihren Meetup-API-Schlüssel unter %1$sVeranstaltungen > Einstellungen > APIs %2$s hinzu."
3236
 
3237
  #: src/admin-views/aggregator/settings.php:389
3238
  msgid "Meetup Import Settings"
3295
  #: src/admin-views/aggregator/settings.php:475
3296
  #: src/admin-views/aggregator/settings.php:543
3297
  msgid "Show Google Map by default on imported event and venues"
3298
+ msgstr "Zeigen Sie Google-Karten standardmäßig auf importierten Veranstaltungen und Veranstaltungsorten an"
3299
 
3300
  #: src/admin-views/aggregator/settings.php:151
3301
  #: src/admin-views/aggregator/settings.php:242
3358
 
3359
  #: src/admin-views/aggregator/settings.php:59
3360
  msgid "Overwrite my event with any changes from the original source."
3361
+ msgstr "Überschreiben Sie meine Veranstaltung mit Änderungen der ursprünglichen Quelle."
3362
 
3363
  #: src/admin-views/aggregator/settings.php:49
3364
  msgid "You can make changes to imported events via The Events Calendar and see those changes reflected on your site’s calendar. The owner of the original event source (e.g. the iCalendar feed or Facebook group) might also make changes to their event. If you choose to re-import an altered event (manually or via a scheduled import), any changes made at the source or on your calendar will need to be addressed."
3365
+ msgstr "Sie können Änderungen an importierten Veranstaltungen über The Events Calendar vornehmen und die Änderungen anzeigen, die im Kalender Ihrer Website angezeigt werden. Der Eigentümer der ursprünglichen Veranstaltungsquelle (z. B. der iCalendar-Feed oder die Facebook-Gruppe) kann ebenfalls Änderungen an deren Veranstaltung vornehmen. Wenn Sie eine veränderte Veranstaltung (manuell oder über einen geplanten Import) erneut importieren, müssen alle Änderungen an der Quelle oder an Ihrem Kalender adressiert werden."
3366
 
3367
  #: src/admin-views/aggregator/settings.php:44
3368
  #: src/admin-views/aggregator/settings.php:54
3379
 
3380
  #: src/admin-views/aggregator/settings.php:7
3381
  msgid "Use global import settings"
3382
+ msgstr "Verwenden Sie globale Importeinstellungen"
3383
 
3384
  #: src/admin-views/aggregator/origins/refine.php:82
3385
  msgid "Events on or after"
3391
 
3392
  #: src/admin-views/aggregator/origins/refine.php:42
3393
  msgid "Use the filters to narrow down which events are fetched from this iCalendar feed."
3394
+ msgstr "Verwenden Sie die Filter, um festzulegen, welche Ereignisse aus diesem iCalendar-Feed abgerufen werden."
3395
 
3396
  #: src/admin-views/aggregator/origins/refine.php:19
3397
  msgid "Use the filters to narrow down which events are fetched from this Google Calendar."
3398
+ msgstr "Verwenden Sie die Filter, um festzulegen, welche Ereignisse aus diesem Google Kalender abgerufen werden."
3399
 
3400
  #: src/admin-views/aggregator/origins/refine.php:15
3401
  msgid "Use the filters to narrow down which events are fetched from your ICS file."
3402
+ msgstr "Verwenden Sie die Filter, um festzulegen, welche Ereignisse aus Ihrer ICS-Datei abgerufen werden."
3403
 
3404
  #: src/admin-views/aggregator/origins/refine.php:9
3405
  msgctxt "Radius with abbreviation"
3412
 
3413
  #: src/admin-views/aggregator/origins/meetup.php:139
3414
  msgid "Enter the url for a Meetup group, page, or individual. You can also enter the url of a single Meetup event."
3415
+ msgstr "Geben Sie die URL für eine Meetup Gruppe, eine Seite oder eine Person ein. Sie können auch die URL einer einzelnen Meetup Veranstaltung eingeben."
3416
 
3417
  #: src/admin-views/aggregator/origins/meetup.php:138
3418
  msgid "meetup.com/example"
3428
 
3429
  #: src/admin-views/aggregator/origins/meetup.php:47
3430
  msgid "Your Meetup API key has been saved to %1$sEvents &gt; Settings &gt; APIs%2$s"
3431
+ msgstr "Ihr Meetup API-Schlüssel wurde in %1$s Veranstaltungen &gt; Einstellungen &gt; APIs%2$s gespeichert"
3432
 
3433
  #: src/admin-views/aggregator/origins/meetup.php:32
3434
  msgid "Enter your Meetup API key to import Meetup events. %1$sClick here to get your Meetup API key%2$s. You only need to do this once, it will be saved under %3$sEvents &gt; Settings &gt; APIs%4$s"
3435
+ msgstr "Geben Sie Ihren Meetup API-Schlüssel ein, um Meetup-Veranstaltungen zu importieren. %1$sKlicken Sie hier, um Ihren Meetup API-Schlüssel%2$s zu erhalten. Sie müssen dies nur einmal tun, es wird unter%3$sVeranstaltungen &gt; Einstellungen &gt; APIs%4$s gespeichert"
3436
 
3437
  #: src/admin-views/aggregator/origins/meetup.php:7
3438
  msgid "One-time imports include all currently listed events, while scheduled imports automatically grab new events and updates from Meetup on a set schedule. Single events can be added via a one-time import."
3444
 
3445
  #: src/admin-views/aggregator/origins/ics.php:7
3446
  msgid "Select your ICS file from the WordPress media library. You may need to first upload the file from your computer to the library."
3447
+ msgstr "Wählen Sie Ihre ICS-Datei aus der WordPress-Medienbibliothek aus. Möglicherweise müssen Sie die Datei vorher von Ihrem Computer in die Bibliothek hochladen."
3448
 
3449
  #: src/admin-views/aggregator/origins/ics.php:6
3450
  msgid "Choose File"
3452
 
3453
  #: src/admin-views/aggregator/origins/ical.php:84
3454
  msgid "Enter the url for the iCalendar feed you wish to import, e.g. https://central.wordcamp.org/calendar.ics"
3455
+ msgstr "Geben Sie die URL für den iCalendar-Feed ein, den Sie importieren möchten, z.B. https://central.wordcamp.org/calendar.ics"
3456
 
3457
  #: src/admin-views/aggregator/origins/ical.php:83
3458
  msgid "example.com/url.ics"
3460
 
3461
  #: src/admin-views/aggregator/origins/gcal.php:89
3462
  msgid "Copy the provided url into this field to import the events into your WordPress site."
3463
+ msgstr "Kopieren Sie die bereitgestellte URL in dieses Feld, um die Veranstaltungen in Ihre WordPress-Website zu importieren."
3464
 
3465
  #: src/admin-views/aggregator/origins/gcal.php:88
3466
  msgid "Scroll down to Calendar Address and click the iCal button (note: if your calendar is private, you'll need to click the iCal button next to the Private Address header instead)."
3467
+ msgstr "Scrollen Sie nach unten zur Kalenderadresse und klicken Sie auf die iCal-Schaltfläche (Hinweis: Wenn Ihr Kalender privat ist, müssen Sie statt dessen auf die Schaltfläche iCal neben dem privaten Adresskopf klicken)."
3468
 
3469
  #: src/admin-views/aggregator/origins/gcal.php:87
3470
  msgid "Go to Settings &gt; Calendars and select the calendar you wish to import."
3471
+ msgstr "Gehen Sie zu Einstellungen > Kalender und wählen Sie den Kalender aus, den Sie importieren möchten."
3472
 
3473
  #: src/admin-views/aggregator/origins/gcal.php:85
3474
  msgid "You can find the url you need in your Google Calendar settings."
3475
+ msgstr "Sie finden die URL, die Sie in Ihren Google Kalender-Einstellungen benötigen."
3476
 
3477
  #: src/admin-views/aggregator/origins/gcal.php:83
3478
  msgid "Enter the url for the Google Calendar feed you wish to import."
3479
+ msgstr "Geben Sie die URL für den Google Kalender-Feed ein, den Sie importieren möchten."
3480
 
3481
  #: src/admin-views/aggregator/origins/gcal.php:82
3482
  msgid "https://calendar.google.com/calendar/ical/example/basic.ics"
3489
 
3490
  #: src/admin-views/aggregator/origins/facebook.php:111
3491
  msgid "Enter the url for a Facebook group or page. You can also enter the url of a single Facebook event."
3492
+ msgstr "Geben Sie die URL für eine Facebook-Gruppe oder -Seite ein. Sie können auch die URL einer einzelnen Facebook Veranstaltung eingeben."
3493
 
3494
  #: src/admin-views/aggregator/origins/facebook.php:110
3495
  msgid "facebook.com/example"
3525
 
3526
  #: src/admin-views/aggregator/origins/facebook.php:33
3527
  msgid "Please log in to enable event imports from Facebook."
3528
+ msgstr "Bitte melden Sie sich an, um Veranstaltungsimporte von Facebook zu ermöglichen."
3529
 
3530
  #: src/admin-views/aggregator/origins/eventbrite.php:17
3531
  #: src/admin-views/aggregator/origins/facebook.php:12
3534
  #: src/admin-views/aggregator/origins/meetup.php:12
3535
  #: src/admin-views/aggregator/origins/url.php:12
3536
  msgid "Select how often you would like events to be automatically imported."
3537
+ msgstr "Wählen Sie aus, wie oft die Veranstaltungen automatisch importiert werden sollen."
3538
 
3539
  #: src/admin-views/aggregator/origins/facebook.php:11
3540
  #: src/admin-views/aggregator/origins/gcal.php:11
3559
 
3560
  #: src/admin-views/aggregator/origins/eventbrite.php:154
3561
  msgid "Enter an Eventbrite event URL, e.g. https://www.eventbrite.com/e/example-12345"
3562
+ msgstr "Geben Sie eine Eventbrite Veranstaltungs-URL ein, z.B. https://www.eventbrite.com/e/example-12345"
3563
 
3564
  #: src/admin-views/aggregator/origins/csv.php:76
3565
  #: src/admin-views/aggregator/origins/eventbrite.php:193
3588
 
3589
  #: src/admin-views/aggregator/origins/csv.php:41
3590
  msgid "Select your .CSV file from the WordPress media library. You may need to first upload the file from your computer to the library."
3591
+ msgstr "Wählen Sie Ihre .CSV-Datei aus der WordPress-Medienbibliothek aus. Möglicherweise müssen Sie die Datei vorher von Ihrem Computer in die Bibliothek hochladen."
3592
 
3593
  #: src/admin-views/aggregator/origins/csv.php:40
3594
  msgid "Choose a CSV file"
3601
 
3602
  #: src/admin-views/aggregator/origins/csv.php:8
3603
  msgid "For the best results, import venue and organizer files before importing event files."
3604
+ msgstr "Um beste Ergebnisse zu erhalten, importieren Sie zuerst Veranstaltungsorte und Veranstalter, bevor Sie Veranstaltungen importieren."
3605
 
3606
  #: src/admin-views/aggregator/origins/csv.php:6
3607
  msgid "Specify the type of content you wish to import, e.g. events."
3608
+ msgstr "Wählen Sie den Typ des Inhalt, welchen Sie importieren wollen, z.B. Veranstaltungen."
3609
 
3610
  #: src/admin-views/aggregator/origins/csv.php:5
3611
  msgid "Select Content Type"
3617
 
3618
  #: src/admin-views/aggregator/meta-box.php:56
3619
  msgid "Change Event Update Authority"
3620
+ msgstr "Ändern Sie die Veranstaltungsaktualisierungsberechtigung"
3621
 
3622
  #: src/admin-views/aggregator/meta-box.php:36
3623
  msgid "This event will not be re-imported and changes made locally will be preserved."
3646
 
3647
  #: src/admin-views/admin-welcome-message.php:21
3648
  msgid "Rate us today!"
3649
+ msgstr "Bewerten Sie uns jetzt!"
3650
 
3651
  #: src/admin-views/admin-welcome-message.php:19
3652
  msgid "We Need Your Help"
3653
+ msgstr "Wir brauchen Ihre Hilfe"
3654
 
3655
  #: src/Tribe/Utils/Radius.php:55
3656
  msgctxt "Abbreviation for the kilometers unit of measure"
3662
  msgid "mi"
3663
  msgstr "mi"
3664
 
3665
+ #: src/Tribe/Main.php:982
3666
  msgid "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3667
+ msgstr "Der %3$s \"%1$s\" verwendet den \"/%2$s\" slug (URL): das Events Calendar Plugin zeigt seinen Kalender anstelle der Seite an."
3668
 
3669
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:77
3670
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:78
3674
  #: src/Tribe/Ignored_Events.php:926
3675
  msgid "Migration: %d Legacy Ignored Post was migrated successfully. To see the migrated event you will first need to refresh this screen."
3676
  msgid_plural "Migration: %d Legacy Ignored Posts were migrated successfully. To see the migrated events you will first need to refresh this screen."
3677
+ msgstr[0] "Migration: %d ignorierter Beitrag aus dem Altsystem wurde erfolgreich migriert. Um die migrierte Veranstaltung zu sehen, müssen Sie zuerst diese Ansicht aktualisieren."
3678
+ msgstr[1] "Migration: %d ignorierte Beiträge aus dem Altsystem wurden erfolgreich migriert. Um die migrierten Veranstaltungen zu sehen, müssen Sie zuerst diese Ansicht aktualisieren."
3679
 
3680
  #: src/Tribe/Ignored_Events.php:919
3681
  msgid "Event %d: %s"
3690
  #: src/Tribe/Ignored_Events.php:895
3691
  msgid "Migration: %d Legacy Ignored Post was migrated but %d failed. To see the migrated event you will first need to refresh this screen."
3692
  msgid_plural "Migration: %d Legacy Ignored Posts were migrated but %d failed. To see the migrated events you will first need to refresh this screen."
3693
+ msgstr[0] "Migration: %d ignorierter Beitrag aus dem Altsystem wurde migriert, aber %d ist fehlgeschlagen. Um die migrierte Veranstaltung zu sehen, müssen Sie zuerst diese Ansicht aktualisieren."
3694
+ msgstr[1] "Migration: %d ignorierte Beiträge aus dem Altsystem wurden migriert, aber %d sind fehlgeschlagen. Um die migrierte Veranstaltung zu sehen, müssen Sie zuerst diese Ansicht aktualisieren."
3695
 
3696
  #: src/Tribe/Ignored_Events.php:871
3697
  msgid "There were no Legacy Events to be Migrated, you are ready to rock!"
3698
+ msgstr "Es wurden keine Veranstaltungen aus dem Altsystem migriert. Sie können durchstarten!"
3699
 
3700
  #: src/Tribe/Ignored_Events.php:864
3701
  msgid "You do not have permission to migrate Legacy Ignored Events"
3702
+ msgstr "Sie haben keine Berechtigung zum Migrieren von ignorierten Veranstaltungen aus dem Altsystem"
3703
 
3704
  #: src/Tribe/Ignored_Events.php:857
3705
  msgid "Error, a unknown bug happened and it was impossible to migrate the Legacy Ignored Events, try again later."
3706
+ msgstr "Ein unbekannter Fehler ist aufgetreten und es war unmöglich, die ignorierten Veranstaltungen aus dem Altsystem zu migrieren. Versuchen Sie es später erneut."
3707
 
3708
  #: src/Tribe/Ignored_Events.php:745
3709
  msgid "Ignored <span class=\"count\">(%s)</span>"
3754
 
3755
  #: src/Tribe/Ignored_Events.php:227 src/Tribe/Ignored_Events.php:269
3756
  msgid "You do not have permission to restore this post."
3757
+ msgstr "Sie sind nicht berechtigt, diesen Beitrag wiederherzustellen."
3758
 
3759
  #: src/Tribe/Ignored_Events.php:173
3760
  msgid "Migrate Legacy Ignored Events"
3763
  #: src/Tribe/Ignored_Events.php:172
3764
  msgctxt "link to knowlegebase article"
3765
  msgid "Read more about Ignored Events."
3766
+ msgstr "Lesen Sie mehr über ignorierte Veranstaltungen."
3767
 
3768
  #: src/Tribe/Ignored_Events.php:171
3769
  msgid "Event Aggregator includes a new, better system for removing unwanted imported events from your calendar. Click the button below to transition previously deleted events. This process will remove unwanted records from your database and include recent or upcoming trashed events in your Ignored archive."
3770
+ msgstr "Event Aggregator enthält ein neues, besseres System zum Entfernen unerwünschter importierter Veranstaltungen aus Ihrem Kalender. Klicken Sie auf die Schaltfläche unten, um zuvor gelöschte Veranstaltungen zu übernehmen. Dieser Vorgang entfernt unerwünschte Datensätze aus Ihrer Datenbank und enthält aktuelle oder kommende gelöschte Veranstaltungen in Ihrem Ignorieren-Archiv."
3771
 
3772
  #: src/Tribe/Utils/Radius.php:28
3773
  msgctxt "X (kilometers abbreviation)"
3825
 
3826
  #: src/Tribe/Aggregator.php:443
3827
  msgid "Renew your Event Aggregator Facebook token"
3828
+ msgstr "Erneuern Sie Ihr Event Aggregator Facebook-Token"
3829
 
3830
  #: src/Tribe/Aggregator.php:438
3831
  msgid "Your Event Aggregator Facebook token will expire %s."
3832
+ msgstr "Ihr Event Aggregator Facebook-Token läuft %s ab."
3833
 
3834
  #: src/Tribe/Aggregator.php:436
3835
  msgid "Your Event Aggregator Facebook token expired %s."
3836
+ msgstr "Ihr Event Aggregator Facebook-Token ist %s abgelaufen."
3837
 
3838
  #: src/Tribe/Aggregator.php:388
3839
  msgid "Successfully connected Event Aggregator to Facebook"
3841
 
3842
  #: src/Tribe/Aggregator.php:358
3843
  msgid "You must use an integer to reduce the daily import limit"
3844
+ msgstr "Sie müssen eine Ganzzahl verwenden, um die tägliche Importgrenze zu reduzieren"
3845
 
3846
  #: src/Tribe/Aggregator.php:93
3847
  msgid "Event Aggregator System Status"
3849
 
3850
  #: src/Tribe/Aggregator/Tabs/Scheduled.php:378
3851
  msgid "Enter Event Aggregator License"
3852
+ msgstr "Geben Sie die Event Aggregator Lizenz ein"
3853
 
3854
  #: src/Tribe/Aggregator/Tabs/Scheduled.php:372
3855
  msgid "To continue using scheduled imports, please enter a valid Event Aggregator license key under %1$sEvents > Settings > Licenses%2$s."
3856
+ msgstr "Um weiterhin geplante Importe verwenden zu können, geben Sie unter %1$sVeranstaltungen > Einstellungen > Lizenzen%2$s einen gültigen Lizenzschlüssel für den Event Aggregator ein."
3857
 
3858
  #: src/Tribe/Aggregator/Tabs/Scheduled.php:367
3859
  msgid "All scheduled imports are currently suspended, and no events will be imported."
3887
  msgid "Scheduled Imports"
3888
  msgstr "Geplante Importe"
3889
 
3890
+ #: src/Tribe/Aggregator/Tabs/New.php:615
3891
  msgid "Renew your Event Aggregator license"
3892
+ msgstr "Erneuern Sie Ihre Event Aggregator Lizenz"
3893
 
3894
+ #: src/Tribe/Aggregator/Tabs/New.php:612
3895
  msgid "Renew your license in order to import events from Facebook, iCalendar, Google, or Meetup."
3896
+ msgstr "Erneuern Sie Ihre Lizenz, um Ereignisse von Facebook, iCalendar, Google oder Meetup zu importieren."
3897
 
3898
+ #: src/Tribe/Aggregator/Tabs/New.php:611
3899
  msgid "Your Event Aggregator license is expired."
3900
+ msgstr "Ihre Event Aggregator Lizenz ist abgelaufen."
3901
 
3902
+ #: src/Tribe/Aggregator/Tabs/New.php:563
3903
  msgid "Learn More"
3904
  msgstr "Mehr erfahren"
3905
 
3906
+ #: src/Tribe/Aggregator/Tabs/New.php:558 src/Tribe/Aggregator/Tabs/New.php:565
3907
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:19
3908
  msgid "opens in a new window"
3909
  msgstr "öffnet sich in einem neuen Fenster"
3910
 
3911
+ #: src/Tribe/Aggregator/Tabs/New.php:556
3912
  msgid "Buy It Now"
3913
  msgstr "Jetzt kaufen"
3914
 
3915
+ #: src/Tribe/Aggregator/Tabs/New.php:553
3916
  msgid "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3917
+ msgstr "Mit Event Aggregator können Sie sehr einfach Veranstaltungen von Facebook, iCalendar, Google und Meetup.com importieren."
3918
 
3919
+ #: src/Tribe/Aggregator/Tabs/New.php:551
3920
  msgid "Import Using Event Aggregator"
3921
  msgstr "Importieren mit Event Aggregator"
3922
 
3923
+ #: src/Tribe/Aggregator/Tabs/New.php:464
3924
  msgid "Unable to save credentials"
3925
  msgstr "Anmeldeinformationen konnten nicht gespeichert werden"
3926
 
3927
+ #: src/Tribe/Aggregator/Tabs/New.php:457
3928
  msgid "Credentials have been saved"
3929
  msgstr "Anmeldeinformationen wurden gespeichert"
3930
 
3931
+ #: src/Tribe/Aggregator/Tabs/New.php:448
3932
  msgid "The Meetup API key is required."
3933
  msgstr "Der Meetup API Schlüssel ist erforderlich."
3934
 
3935
+ #: src/Tribe/Aggregator/Tabs/New.php:439
3936
  msgid "Invalid credential save nonce"
3937
  msgstr "Ungültiger Berechtigungsnachweis (save nonce)"
3938
 
3939
+ #: src/Tribe/Aggregator/Tabs/New.php:429
3940
  msgid "Invalid credential save request"
3941
  msgstr "Ungültiger Berechtigungsnachweis (save request)"
3942
 
3943
+ #: src/Tribe/Aggregator/Tabs/New.php:417
3944
  msgid "View your scheduled imports."
3945
+ msgstr "Ihre geplanten Importe anzeigen."
3946
 
3947
+ #: src/Tribe/Aggregator/Tabs/New.php:413
3948
  msgid "The next import is scheduled for %1$s."
3949
  msgstr "Der nächste Import ist für %1$s geplant."
3950
 
3951
+ #: src/Tribe/Aggregator/Tabs/New.php:406
3952
  msgctxt "separator between date and time"
3953
  msgid " at "
3954
  msgstr "um"
3955
 
3956
+ #: src/Tribe/Aggregator/Tabs/New.php:402
3957
  msgid "Your scheduled import was saved and the first import is complete!"
3958
+ msgstr "Ihr geplanter Import wurde gespeichert und der erste Import abgeschlossen!"
3959
 
3960
+ #: src/Tribe/Aggregator/Tabs/New.php:377
3961
  msgid "View your event categories"
3962
  msgstr "Veranstaltungskategorien anzeigen"
3963
 
3964
+ #: src/Tribe/Aggregator/Tabs/New.php:373
3965
  msgid "%1$d new event category was created."
3966
  msgid_plural "%1$d new event categories were created."
3967
  msgstr[0] "%1$d neue Ereigniskategorie wurde erstellt."
3968
  msgstr[1] "%1$d neue Ereigniskategorien wurden erstellt."
3969
 
3970
+ #: src/Tribe/Aggregator/Tabs/New.php:364
3971
  msgid "View your event organizers"
3972
+ msgstr "Ihre Veranstalter anzeigen"
3973
 
3974
+ #: src/Tribe/Aggregator/Tabs/New.php:360
3975
  msgid "%1$d new organizer was imported."
3976
  msgid_plural "%1$d new organizers were imported."
3977
  msgstr[0] "%1$d neuer Veranstalter wurde importiert."
3978
  msgstr[1] "%1$d neue Veranstalter wurden importiert."
3979
 
3980
+ #: src/Tribe/Aggregator/Tabs/New.php:352
3981
  msgid "View your event venues"
3982
  msgstr "Veranstaltungsorte anzeigen"
3983
 
3984
+ #: src/Tribe/Aggregator/Tabs/New.php:348
3985
  msgid "%1$d new venue was imported."
3986
  msgid_plural "%1$d new venues were imported."
3987
  msgstr[0] "%1$d neuer Veranstaltungsort wurde importiert."
3988
  msgstr[1] "%1$d neue Veranstaltungsorte wurden importiert."
3989
 
3990
+ #: src/Tribe/Aggregator/Tabs/New.php:338
3991
  msgid "View all %s"
3992
  msgstr "Alle %s ansehen"
3993
 
3994
+ #: src/Tribe/Aggregator/Tabs/New.php:330
3995
  msgid "No %1$s were imported or updated."
3996
  msgstr "Es wurden keine %1$s importiert oder aktualisiert."
3997
 
3998
+ #: src/Tribe/Aggregator/Tabs/New.php:323
3999
  msgid "%1$d new image was imported."
4000
  msgid_plural "%1$d new images were imported."
4001
  msgstr[0] " %1$d neues Bild importiert."
4002
  msgstr[1] " %1$d neue Bilder importiert."
4003
 
4004
+ #: src/Tribe/Aggregator/Tabs/New.php:314
4005
  msgid "%1$d already-imported %2$s was skipped."
4006
  msgid_plural "%1$d already-imported %2$s were skipped."
4007
  msgstr[0] "%1$d bereits importierte %2$s wurde übersprungen."
4008
  msgstr[1] "%1$d bereits importierten %2$s wurden übersprungen."
4009
 
4010
+ #: src/Tribe/Aggregator/Tabs/New.php:303
4011
  msgid "%1$d existing %2$s was updated."
4012
  msgid_plural "%1$d existing %2$s were updated."
4013
  msgstr[0] "%1$d vorhandene %2$s wurde aktualisiert."
4014
  msgstr[1] "%1$d vorhandene %2$s wurden aktualisiert."
4015
 
4016
+ #: src/Tribe/Aggregator/Tabs/New.php:291
4017
  msgid "%1$d new %2$s was imported."
4018
  msgid_plural "%1$d new %2$s were imported."
4019
  msgstr[0] "%1$d neuer %2$s wurde importiert."
4042
 
4043
  #: src/Tribe/Aggregator/Tabs/Edit.php:143
4044
  msgid "Your Scheduled Import has been updated!"
4045
+ msgstr "Ihr geplanter Import wurde aktualisiert!"
4046
 
4047
  #: src/Tribe/Aggregator/Tabs/Edit.php:137
4048
  msgid "View All Scheduled Imports"
4058
 
4059
  #: src/Tribe/Aggregator/Tabs/Abstract.php:195
4060
  msgid "Please provide a Meetup URL when importing from Meetup."
4061
+ msgstr "Bitte geben Sie die Meetup URL an, um von Meetup zu importieren."
4062
 
4063
  #: src/Tribe/Aggregator/Tabs/Abstract.php:185
4064
  msgid "Please provide a Facebook URL when importing from Facebook."
4065
+ msgstr "Bitte geben Sie die Facebook URL an, um von Facebook zu importieren."
4066
 
4067
  #: src/Tribe/Aggregator/Tabs/Abstract.php:239
4068
  msgid "Please provide the URL that you wish to import."
4069
+ msgstr "Bitte geben Sie die URL an, die Sie importieren möchten."
4070
 
4071
  #: src/Tribe/Aggregator/Tabs/Abstract.php:180
4072
  msgid "Please provide the file that you wish to import."
4073
+ msgstr "Bitte geben Sie die Datei an, die Sie importieren möchten."
4074
 
4075
  #: src/Tribe/Aggregator/Tabs/Abstract.php:59
4076
  msgid "There was a problem processing your import. Please try again."
4077
+ msgstr "Beim Bearbeiten Ihres Imports ist ein Problem aufgetreten. Bitte erneut versuchen."
4078
 
4079
  #: src/Tribe/Aggregator/Service.php:193
4080
  msgid "Connection timed out while transferring the feed. If you are dealing with large feeds you may need to customize the tribe_aggregator_connection_timeout filter."
4081
+ msgstr "Zeitüberschreitung beim Übertragen des Feeds. Wenn Sie mit großen Feeds zu tun haben, müssen Sie möglicherweise den tribe aggregator connection_timeout Filter anpassen."
4082
 
4083
  #: src/Tribe/Aggregator/Service.php:696
4084
  msgid "Import queued"
4114
 
4115
  #: src/Tribe/Aggregator/Service.php:686
4116
  msgid "Event Aggregator cannot reach Meetup.com because you exceeded the request limit for your Meetup API key."
4117
+ msgstr "Event Aggregator kann Meetup.com nicht erreichen, da Sie das Anforderungslimit für Ihren Meetup API-Schlüssel überschritten haben."
4118
 
4119
  #: src/Tribe/Aggregator/Service.php:685
4120
  msgid "Your Meetup API key is invalid."
4121
+ msgstr "Ihr Meetup API Schlüssel ist ungültig."
4122
 
4123
  #: src/Tribe/Aggregator/Service.php:684
4124
  msgid "The file provided could not be opened. Please confirm that it is a properly formatted .ics file."
4125
+ msgstr "Die bereitgestellte Datei konnte nicht geöffnet werden. Bitte bestätigen Sie, dass es sich um richtig formatierte ICS Datei handelt."
4126
 
4127
  #: src/Tribe/Aggregator/Service.php:682
4128
  msgid "The import failed for an unknown reason. Please try again. If the problem persists, please contact support."
4129
+ msgstr "Der Import ist aus einem unbekannten Grund fehlgeschlagen. Bitte erneut versuchen. Wenn das Problem weiter existiert kontaktieren Sie den Support."
4130
 
4131
  #: src/Tribe/Aggregator/Service.php:681
4132
  msgid "The image associated with your event is not accessible with your API key."
4133
+ msgstr "Das mit Ihrer Veranstaltung verknüpfte Bild ist nicht mit Ihrem API-Schlüssel zugänglich."
4134
 
4135
  #: src/Tribe/Aggregator/Service.php:680
4136
  msgid "The image associated with your event could not be imported."
4137
+ msgstr "Die Grafik, welche mit Ihrer Veranstaltung verknüpft ist, konnte nicht importiert werden."
4138
 
4139
  #: src/Tribe/Aggregator/Service.php:679
4140
  msgid "The URL provided failed to load."
4146
 
4147
  #: src/Tribe/Aggregator/Service.php:674
4148
  msgid "Events cannot be imported because Facebook has returned an error. This could mean that the event ID does not exist, the event or source is marked as Private, or the event or source has been otherwise restricted by Facebook. You can <a href=\"https://theeventscalendar.com/knowledgebase/import-errors/\" target=\"_blank\">read more about Facebook restrictions in our knowledgebase</a>."
4149
+ msgstr "Veranstaltungen können nicht importiert werden, da Facebook einen Fehler zurückgegeben hat. Dies kann bedeuten, dass die Veranstaltungs-ID nicht vorhanden ist, die Veranstaltung oder die Quelle als privat markiert ist oder die Veranstaltung oder die Quelle ansonsten durch Facebook eingeschränkt wurde. Lesen Sie mehr über <a href=\"https://theeventscalendar.com/knowledgebase/import-errors/\" target=\"_blank\">Facebook-Einschränkungen in unserer Wissensdatenbank</a>."
4150
 
4151
  #: src/Tribe/Aggregator/Service.php:672
4152
  msgid "Sorry, but something went wrong. Please try again."
4277
  msgid "Events Aggregator Record"
4278
  msgstr "Veranstaltungen Aggregator Datensatz "
4279
 
4280
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:183
4281
  msgid "Unable to continue inserting data. Please reload this page to continue/try again."
4282
+ msgstr "Es ist nicht möglich Daten einzufügen. Bitte laden Sie diese Seite um fortzufahren bzw. es erneut zu versuchen."
4283
 
4284
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:97
4285
  msgid "Skipped:"
4295
 
4296
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:91
4297
  msgid "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4298
+ msgstr "Ihr Import wird gerade ausgeführt. Sie können jetzt auf eine andere Seite navigieren; der Import wird im Hintergrund fortgesetzt."
4299
 
4300
+ #: src/Tribe/Aggregator/Record/Queue_Processor.php:233
4301
  msgid "Could not process queue for Import Record %1$d: %2$s"
4302
  msgstr "Die Warteschlange für Import-Datensatz %1$d (%2$s) konnte nicht verarbeitet werden"
4303
 
4304
+ #: src/Tribe/Aggregator/Record/List_Table.php:664
4305
  msgid "Select %s"
4306
  msgstr "%s auswählen"
4307
 
4308
+ #: src/Tribe/Aggregator/Record/List_Table.php:629
4309
+ #: src/Tribe/Aggregator/Record/List_Table.php:638
4310
+ #: src/Tribe/Aggregator/Record/List_Table.php:646
4311
  msgid "updated"
4312
  msgstr "aktualisiert"
4313
 
4314
+ #: src/Tribe/Aggregator/Record/List_Table.php:627
4315
+ #: src/Tribe/Aggregator/Record/List_Table.php:635
4316
+ #: src/Tribe/Aggregator/Record/List_Table.php:643
4317
  msgid "new"
4318
  msgstr "neu"
4319
 
4320
+ #: src/Tribe/Aggregator/Record/List_Table.php:624
4321
  msgid "Latest Import:"
4322
  msgstr "Letzter Import:"
4323
 
4324
+ #: src/Tribe/Aggregator/Record/List_Table.php:622
4325
  msgid "all time"
4326
  msgstr "Jedes Mal"
4327
 
4328
+ #: src/Tribe/Aggregator/Record/List_Table.php:596
4329
  msgid "One Time"
4330
  msgstr "Einmalig"
4331
 
4332
+ #: src/Tribe/Aggregator/Record/List_Table.php:593
4333
  msgid "Invalid Frequency"
4334
  msgstr "Ungültige Häufigkeit"
4335
 
4336
+ #: src/Tribe/Aggregator/Record/List_Table.php:563 src/Tribe/Aggregator.php:426
4337
  #: src/Tribe/Ignored_Events.php:357
4338
  #: src/admin-views/tribe-options-addons-api.php:36
4339
  msgctxt "in human readable time"
4340
  msgid "in about %s"
4341
  msgstr "in etwa %s"
4342
 
4343
+ #: src/Tribe/Aggregator/Record/List_Table.php:561 src/Tribe/Aggregator.php:424
4344
  #: src/Tribe/Ignored_Events.php:355
4345
  #: src/admin-views/tribe-options-addons-api.php:34
4346
  msgctxt "human readable time ago"
4347
  msgid "about %s ago"
4348
  msgstr "etwa vor %s"
4349
 
4350
+ #: src/Tribe/Aggregator/Record/List_Table.php:513
4351
  msgid "Radius:"
4352
  msgstr "Radius:"
4353
 
4354
+ #: src/Tribe/Aggregator/Record/List_Table.php:496
4355
  msgid "Keywords:"
4356
  msgstr "Schlüsselbegriffe:"
4357
 
4358
+ #: src/Tribe/Aggregator/Record/List_Table.php:483
4359
  #: src/Tribe/Ignored_Events.php:337
4360
  msgctxt "record via origin"
4361
  msgid "via "
4362
  msgstr "via "
4363
 
4364
+ #: src/Tribe/Aggregator/Record/List_Table.php:440
4365
  msgid "Import preview"
4366
  msgstr "Import Vorschau"
4367
 
4368
+ #: src/Tribe/Aggregator/Record/List_Table.php:436
4369
  msgid "Import pending"
4370
  msgstr "Import ausstehend"
4371
 
4372
+ #: src/Tribe/Aggregator/Record/List_Table.php:432
4373
  msgid "Import schedule"
4374
  msgstr "Import Zeitplan"
4375
 
4376
+ #: src/Tribe/Aggregator/Record/List_Table.php:420
4377
  msgid "Import failed"
4378
  msgstr "Import fehlgeschlagen"
4379
 
4380
+ #: src/Tribe/Aggregator/Record/List_Table.php:416
4381
  msgid "Import completed"
4382
  msgstr "Import abgeschlossen"
4383
 
4462
  msgid "Eventbrite"
4463
  msgstr "Eventbrite"
4464
 
4465
+ #: src/Tribe/Aggregator/Record/Abstract.php:1149
4466
  msgid "Deleted Attachment: %d"
4467
  msgstr "Gelöschter Anhang:%d"
4468
 
4469
+ #: src/Tribe/Aggregator/Record/Abstract.php:497
4470
  msgid "Record: "
4471
  msgstr "Datensatz:"
4472
 
4477
  #: src/Tribe/Aggregator/Page.php:412
4478
  msgid "It looks like you are using our legacy plugin, %1$s, along with our new Event Aggregator service. Event Aggregator includes all the features of the legacy plugin plus enhanced functionality. For best results, please deactivate %1$s."
4479
  msgid_plural "It looks like you are using our legacy plugins, %1$s and %2$s, along with our new Event Aggregator service. Event Aggregator includes all the features of the legacy plugins plus enhanced functionality. For best results, please deactivate %1$s and %2$s."
4480
+ msgstr[0] "Es sieht so aus, als ob Sie unser veraltetes Plugin, %1$s zusammen mit unserem neuen Event Aggregator Dienst verwenden. Event Aggregator enthält alle Funktionen des alten Plugins und verbesserte Funktionalität. Für beste Ergebnisse deaktivieren Sie bitte %1$s."
4481
+ msgstr[1] "Es sieht so aus, als ob Sie unser veraltete Plugins, %1$s und %2$s zusammen mit unserem neuen Event Aggregator Dienst verwenden. Event Aggregator enthält alle Funktionen des alten Plugins und verbesserte Funktionalität. Für beste Ergebnisse deaktivieren Sie bitte %1$s und %2$s."
4482
 
4483
  #: src/Tribe/Aggregator/Page.php:102
4484
  msgid "Your preview is taking a bit longer than expected, but it <i>is</i> still being generated."
4485
+ msgstr "Ihre Vorschau dauert ein bisschen länger als erwartet, aber sie <i>wird</i> immer noch erzeugt."
4486
 
4487
  #: src/Tribe/Aggregator/Page.php:101
4488
  msgid "If all goes according to plan, you will have your preview in a few moments."
4489
+ msgstr "Wenn alles nach Plan geht, sehen Sie Ihre Vorschau in wenigen Augenblicken."
4490
 
4491
  #: src/Tribe/Aggregator/Page.php:100
4492
  msgid "Please continue to wait while your preview is generated."
4493
+ msgstr "Bitte weiter warten, während Ihre Vorschau erstellt wird."
4494
 
4495
  #: src/Tribe/Aggregator/Page.php:99
4496
  msgid "Please wait while your preview is fetched."
4497
+ msgstr "Bitte warten, während Ihre Vorschau abgerufen wird."
4498
 
4499
  #: src/Tribe/Aggregator/Page.php:97
4500
  msgid "Hide Filters"
4501
  msgstr "Filter verstecken"
4502
 
4503
  #: src/Tribe/Aggregator/Page.php:96
4504
+ #: src/Tribe/Aggregator/Record/List_Table.php:492
4505
  msgid "View Filters"
4506
  msgstr "Filter anzeigen"
4507
 
4511
 
4512
  #: src/Tribe/Aggregator/Page.php:94
4513
  msgid "Your preview doesn't have any records to import."
4514
+ msgstr "Ihre Vorschau enthält keine Datensätze, die importiert werden könnten."
4515
 
4516
  #: src/Tribe/Aggregator/Page.php:93
4517
  msgid "Your import must include at least one event"
4518
+ msgstr "Ihr Import muss mindestens eine Veranstaltung enthalten"
4519
 
4520
  #: src/Tribe/Aggregator/Page.php:91
4521
  msgid "Save Scheduled Import"
4535
 
4536
  #: src/Tribe/Aggregator/Page.php:86
4537
  msgid "There was an error fetching the results from your import:"
4538
+ msgstr "Es gab einen Fehler beim Abrufen der Ergebnisse aus Ihrem Import:"
4539
 
4540
  #: src/Tribe/Aggregator/Page.php:85
4541
  msgid "The preview is taking longer than expected. Please try again in a moment."
4542
+ msgstr "Die Vorschau dauert länger als erwartet. Bitte versuchen Sie es in einem Moment nochmal."
4543
 
4544
  #: src/Tribe/Aggregator/Page.php:84
4545
  msgctxt "Meridian: pm"
4553
 
4554
  #: src/Tribe/Aggregator/Migrate.php:435
4555
  msgid "Success! The settings from iCal Importer have been migrated to Event Aggregator. You can view your migrated imports on the Scheduled Imports tab."
4556
+ msgstr "Die Einstellungen des iCal Importers wurden erfolgreich in den Event Aggregator importiert. Sie können Ihre migrierten Importe im Geplanten Importe Register anschauen."
4557
 
4558
  #: src/Tribe/Aggregator/Migrate.php:379
4559
  msgid "We did not find any iCal Importer settings to migrate."
4561
 
4562
  #: src/Tribe/Aggregator/Migrate.php:372
4563
  msgid "You do not have permission to migrate iCal Importer settings to Event Aggregator"
4564
+ msgstr "Sie sind nicht berechtigt, die Einstellungen von iCal Importer auf Event Aggregator zu migrieren"
4565
 
4566
  #: src/Tribe/Aggregator/Migrate.php:365
4567
  msgid "Error: we were not able to migrate your iCal Importer settings to Event Aggregator. Please try again later."
4568
+ msgstr "Fehler: Ihre iCal Importer-Einstellungen konnten nicht auf Event Aggregator migriert werden. Bitte versuchen Sie es später erneut."
4569
 
4570
  #: src/Tribe/Aggregator/Migrate.php:348
4571
  msgid "Success! The settings from Facebook Events have been migrated to Event Aggregator. You can view your migrated imports on the Scheduled Imports tab."
4572
+ msgstr "Erfolgreich abgeschlossen! Die Einstellungen von Facebook Events wurden zu Event Aggregator migriert. Sie können Ihre migrierten Importe auf der Registerkarte Geplante Importe anzeigen."
4573
 
4574
  #: src/Tribe/Aggregator/Migrate.php:294
4575
  msgid "We did not find any Facebook Events settings to migrate."
4577
 
4578
  #: src/Tribe/Aggregator/Migrate.php:287
4579
  msgid "You do not have permission to migrate Facebook Events settings to Event Aggregator"
4580
+ msgstr "Sie haben keine Berechtigung, die Facebook Veranstaltungseinstellungen zu Event Aggregator zu migrieren"
4581
 
4582
  #: src/Tribe/Aggregator/Migrate.php:280
4583
  msgid "Error: we were not able to migrate your Facebook Events settings to Event Aggregator. Please try again later."
4584
+ msgstr "Fehler: Wir konnten Ihre Facebook Veranstaltungseinstellungen nicht zu Event Aggregator migrieren. Bitte versuchen Sie es später erneut."
4585
 
4586
  #: src/Tribe/Aggregator/Migrate.php:80
4587
  msgid "Migrate iCal Importer settings"
4601
 
4602
  #: src/Tribe/Aggregator/Errors.php:73
4603
  msgid "The records you were attempting to import were still not available when this queue was processed. Please try again."
4604
+ msgstr "Die Datensätze, die Sie importieren wollten, waren noch nicht verfügbar, als diese Warteschlange verarbeitet wurde. Bitte erneut versuchen."
4605
 
4606
  #: src/Tribe/Aggregator/Errors.php:72
4607
  msgid "Unable to save scheduled import. Please try again."
4617
 
4618
  #: src/Tribe/Aggregator/Errors.php:69
4619
  msgid "The CSV file cannot be found. You may need to re-upload the file."
4620
+ msgstr "Die CSV Datei wurde nicht gefunden. Sie müssen die Datei erneut hochladen."
4621
 
4622
  #: src/Tribe/Aggregator/Errors.php:68
4623
  msgid "You must map columns from the CSV file to specific fields in order to perform a CSV import."
4624
+ msgstr "Sie müssen Spalten aus der CSV-Datei bestimmten Feldern zuordnen, um einen CSV-Import durchzuführen."
4625
 
4626
  #: src/Tribe/Aggregator/Errors.php:65 src/Tribe/Aggregator/Service.php:210
4627
  #: src/Tribe/Aggregator/Service.php:217
4628
  msgid "There may be an issue with the Event Aggregator server. Please try your import again later."
4629
+ msgstr "Möglicherweise liegt ein Problem mit dem Event Aggregator-Server vor. Bitte versuchen Sie den Import später erneut."
4630
 
4631
  #: src/Tribe/Aggregator/Errors.php:64
4632
  msgid "You must enter an Event Aggregator license key in Events > Settings > Licenses before using this service."
4633
+ msgstr "Sie müssen einen Event Aggregator Lizenzschlüssel in Veranstaltungen > Einstellungen > Lizenzen eingeben, bevor Sie diesen Dienst verwenden können."
4634
 
4635
  #: src/Tribe/Aggregator/Errors.php:63
4636
  msgid "Unable to get a post of the correct type."
4662
 
4663
  #: src/Tribe/Aggregator/Errors.php:56
4664
  msgid "The Event Aggregator API responded with bad data. Please <a href=\"https://theeventscalendar.com/support/post/\" target=\"_blank\">contact support</a>."
4665
+ msgstr "Die Aggregator-API reagierte mit fehlerhaften Daten. Bitte <a href=\"https://theeventscalendar.com/support/post/\" target=\"_blank\">kontaktieren Sie den Support</a>."
4666
 
4667
  #: src/Tribe/Aggregator/Errors.php:55
4668
  msgid "Unable to find an event with the ID of %s."
4678
 
4679
  #: src/Tribe/Aggregator/Errors.php:52
4680
  msgid "You must provide a valid CSV file to perform a CSV import."
4681
+ msgstr "Sie müssen eine gültige CSV Datei bereitstellen, um einen CSV Import durchzuführen."
4682
 
4683
  #: src/Tribe/Aggregator/Errors.php:51
4684
  msgid "An invalid import type was used when trying to create this import record."
4690
 
4691
  #: src/Tribe/Aggregator/Errors.php:48
4692
  msgid "You do not have permission to delete this record."
4693
+ msgstr "Sie haben keine Berechtigung, um diesen Datensatz zu löschen."
4694
 
4695
  #: src/Tribe/Aggregator/Errors.php:47
4696
  msgid "You cannot delete a history record (ID: \"%d\"). "
4697
+ msgstr "Sie können einen Verlaufsdatensatz nicht löschen (ID: \"%d\")."
4698
 
4699
  #: src/Tribe/Aggregator/Errors.php:46 src/Tribe/Aggregator/Service.php:687
4700
  msgid "The daily limit of %d import requests to the Event Aggregator service has been reached. Please try again later."
4701
+ msgstr "Das Tageslimit von %d Importanforderungen an den Event Aggregator Service wurde erreicht. Bitte versuchen Sie es später erneut."
4702
 
4703
  #: src/Tribe/Aggregator/Errors.php:45
4704
  msgid "The image associated with your event could not be attached to the event."
4770
 
4771
  #: common/src/admin-views/tribe-options-licenses.php:30
4772
  msgid "Not seeing an update but expecting one? In WordPress, go to %1$sDashboard > Updates%2$s and click \"Check Again\"."
4773
+ msgstr "Sie erwarten ein Update, aber es erscheint keines? Gehen Sie in WordPress zu %1$sDashboard > Update%2$s und klicken Sie auf \"Erneut prüfen\"."
4774
 
4775
  #: common/src/admin-views/tribe-options-licenses.php:25
4776
  msgid "If you're seeing a red message telling you that your key isn't valid or is out of installs, visit %1$s to manage your installs or renew / upgrade your license."
4777
+ msgstr "Wenn Sie eine rote Meldung sehen, dass Ihr Schlüssel nicht gültig ist oder nicht installiert ist, besuchen Sie %1$s, um Ihre Installationen zu verwalten oder Ihre Lizenz zu aktualisieren."
4778
 
4779
  #: common/src/admin-views/tribe-options-licenses.php:22
4780
  msgid "Each paid add-on has its own unique license key. Simply paste the key into its appropriate field below, and give it a moment to validate. You know you're set when a green expiration date appears alongside a \"valid\" message."
4781
+ msgstr "Jedes bezahlte Add-On hat seinen eigenen Lizenzschlüssel. Fügen Sie einfach den Schlüssel in das entsprechende Feld unten ein, und geben Sie ihm einen Moment zu validieren. Wenn es funktioniert hat, erscheint ein grünes Ablaufdatum neben einer gültigen Meldung."
4782
 
4783
  #: common/src/admin-views/tribe-options-licenses.php:15
4784
  msgid "The license key you received when completing your purchase from %1$s will grant you access to support and updates until it expires. You do not need to enter the key below for the plugins to work, but you will need to enter it to get automatic updates. %3$sFind your license keys at %2$s%4$s."
4785
+ msgstr "Der Lizenzschlüssel, den Sie nach Abschluss des Kaufs von %1$s erhalten haben, gewährt Ihnen Zugriff auf Support und Updates, bis er abläuft. Sie müssen den Schlüssel unten nicht eingeben, damit die Plugins funktionieren, aber Sie müssen ihn eingeben, um automatische Updates zu erhalten. %3$sSie finden Ihre Lizenzschlüssel unter %2$s%4$s."
4786
 
4787
  #: common/src/admin-views/tribe-options-licenses.php:11
4788
  #: common/src/admin-views/tribe-options-licenses.php:16
4795
 
4796
  #: common/src/admin-views/tribe-options-help.php:42
4797
  msgid "The details of your calendar plugin and settings is often needed for you or our staff to help troubleshoot an issue. Please opt-in below to automatically share your system information with our support team. This will allow us to assist you faster if you post in our help desk."
4798
+ msgstr "Die Details Ihres Kalender-Plugins und die Einstellungen werden oft für Sie oder unsere Mitarbeiter benötigt, um ein Problem zu beheben. Bitte melden Sie sich an, um Ihre Systeminformationen automatisch mit unserem Support-Team zu teilen. Dieses erlaubt uns, Sie schneller zu unterstützen, wenn Sie in unseren Foren posten."
4799
 
4800
  #: common/src/admin-views/app-shop.php:26
4801
  msgid "Buy This Add-On"
4802
+ msgstr "Kaufen Sie dieses Add-On"
4803
 
4804
  #: common/src/admin-views/app-shop.php:5
4805
  msgid "Browse All Add-Ons"
4827
 
4828
  #: common/src/Tribe/Support.php:306
4829
  msgid "Your system information will only be used by the Modern Tribe support team. All information is stored securely. We do not share this information with any third parties."
4830
+ msgstr "Ihre Systeminformationen werden nur vom Modern Tribe Support Team verwendet. Alle Informationen werden sicher gespeichert. Wir geben diese Informationen nicht an Dritte weiter."
4831
 
4832
  #: common/src/Tribe/Support.php:305
4833
  msgid "Yes, automatically share my system information with the Modern Tribe support team"
4841
  #: common/src/Tribe/PUE/Notices.php:302
4842
  msgid "You have a license key for %1$s but the key is out of installs. %2$sVisit the Events Calendar website%3$s to manage your installs, upgrade your license, or purchase a new one."
4843
  msgid_plural "You have license keys for %1$s but your keys are out of installs. %2$sVisit the Events Calendar website%3$s to manage your installs, upgrade your licenses, or purchase new ones."
4844
+ msgstr[0] "Sie haben einen Lizenzschlüssel für %1$s eingegeben, aber der Schlüssel wird schon verwendet. %2$sBesuchen Sie die Events Calendar Website%3$s, um Ihre Installationen zu verwalten, Ihre Lizenz zu aktualisieren oder eine neue zu kaufen."
4845
+ msgstr[1] "Sie haben Lizenzschlüssel für %1$s eingegeben, aber der Schlüssel wird schon verwendet. %2$sBesuchen Sie die Events Calendar Website%3$s, um Ihre Installationen zu verwalten, Ihre Lizenz zu aktualisieren oder eine neue zu kaufen."
4846
 
4847
  #: common/src/Tribe/PUE/Notices.php:270
4848
  msgid "There is an update available for %1$s but your license has expired. %2$sVisit the Events Calendar website to renew your license.%3$s"
4849
  msgid_plural "Updates are available for %1$s but your license keys have expired. %2$sVisit the Events Calendar website to renew your licenses.%3$s"
4850
+ msgstr[0] "Für %1$s steht ein Update zur Verfügung, aber Ihre Lizenzschlüssel ist abgelaufen. %2$sBesuchen Sie die Events Calendar Website, um Ihre Lizenz zu verlängern.%3$s"
4851
+ msgstr[1] "Für %1$s steht ein Update zur Verfügung, aber Ihre Lizenzschlüssel sind abgelaufen. %2$sBesuchen Sie die Events Calendar Website, um Ihre Lizenz zu verlängern.%3$s"
4852
 
4853
  #: common/src/Tribe/PUE/Checker.php:1054
4854
  msgid "There is an update for %s. %sRenew your license%s to get access to bug fixes, security updates, and new features."
4855
+ msgstr "Es gibt ein Update für %s. %sErneuern Sie Ihre Lizenz%s, um Zugriff auf Fehlerkorrekturen, Sicherheitsupdates und neue Funktionen zu erhalten."
4856
 
4857
  #: common/src/Tribe/PUE/Checker.php:997
4858
  msgid "There is an update for %s. You'll need to %scheck your license%s to have access to updates, downloads, and support."
4859
+ msgstr "Es gibt ein Update für %s. Bitte %süberprüfen Sie Ihre Lizenz%s, um Zugriff auf Fehlerkorrekturen, Sicherheitsupdates und neue Funktionen zu erhalten."
4860
 
4861
  #: common/src/Tribe/PUE/Checker.php:961 common/src/Tribe/PUE/Notices.php:285
4862
+ #: src/Tribe/Aggregator/Record/Abstract.php:1164
4863
  msgid " (opens in a new window)"
4864
  msgstr "(öffnet in einem neuen Fenster)"
4865
 
4951
 
4952
  #: common/src/Tribe/Plugins_API.php:116
4953
  msgid "The Eventbrite Tickets add-on allows you to create & sell tickets through The Events Calendar using the power of %1$sEventbrite%2$s. Whether you’re creating your ticket on the WordPress dashboard or importing the details of an already-existing event from %1$sEventbrite.com%2$s, this add-on brings the power of the Eventbrite API to your calendar."
4954
+ msgstr "Das %1$sEventbrite Ticket Add-On%2$s ermöglicht das Erstellen und Verkaufen von Karten mit The Events Calendar. Egal ob Sie eine Karte im Wordpress Dashboard erstellen oder die Details einer bereits bestehenden Veranstaltung von %1$sEventbrite.com%2$s importieren, die Eventbrite Schnittstelle hilft dabei."
4955
 
4956
  #: common/src/Tribe/Plugins_API.php:105
4957
  msgctxt "Names of required plugins for Community Tickets"
4960
 
4961
  #: common/src/Tribe/Plugins_API.php:104
4962
  msgid "Enable Community Events organizers to offer tickets to their events. You can set flexible payment and fee options. They can even check-in attendees to their events! All of this managed from the front-end of your site without ever needing to grant access to your admin"
4963
+ msgstr "Aktivieren Sie Community Events Tickets, um Karten für ihre Veranstaltungen zu verkaufen. Sie können flexible Zahlungs und Gebührenoptionen verwenden. Sie können sogar die Teilnehmer zu ihren Veranstaltungen einchecken! Dies ist alles vom Front-End Ihrer Website möglich, ohne jemandem Admin Zugang zu Ihrer Website zu gewähren."
4964
 
4965
  #: common/src/Tribe/Plugins_API.php:48
4966
  msgid "The Events Calendar PRO is a paid Add-On to our open source WordPress plugin %1$sThe Events Calendar%2$s. PRO offers a whole host of calendar features including recurring events, custom event attributes, saved venues and organizers, venue pages, advanced event admin and lots more."
4968
 
4969
  #: common/src/Tribe/Plugins_API.php:84
4970
  msgid "It is awesome that your calendar is <em>THE PLACE</em> to get hooked up with prime choice ways to spend time. You have more events than Jabba the Hutt has rolls. Too bad visitors are hiring a personal assistant to go through all the choices. Ever wish you could just filter the calendar to only show events in walking distance, on a weekend, that are free? BOOM. Now you can. Introducing… the Filter Bar."
4971
+ msgstr "Es ist großartig, dass Ihr Kalender <em>DER PLATZ</em> für Premium Verkäufe ist. Sie haben mehr Events als Rihanna? Schade nur, dass Besucher einen persönlichen Assistenten benötigen, um sich durch die ganzen Angebote zu wühlen. Wollen Sie Ihre Veranstaltungen filtern, z.B. nach Entfernung, nur am Wochenende oder kostenlose Events? Dann nutzen Sie The Filter Bar!"
4972
 
4973
  #: common/src/Tribe/Admin/Help_Page.php:227 common/src/Tribe/Plugins_API.php:80
4974
  msgid "Filter Bar"
4976
 
4977
  #: common/src/Tribe/Credits.php:64
4978
  msgid "Rate %1$sEvent Tickets%2$s %3$s"
4979
+ msgstr "Bewerten Sie %1$sEvent Tickets%2$s %3$s"
4980
 
4981
  #: common/src/Tribe/Credits.php:55
4982
  msgid "Rate %1$sThe Events Calendar%2$s %3$s"
4983
+ msgstr "Bewerten Sie %1$sThe Events Calendar%2$s %3$s"
4984
 
4985
  #: src/Tribe/Organizer.php:184
4986
  msgid "organizer"
5059
 
5060
  #: src/Tribe/Google/Maps_API_Key.php:63
5061
  msgid "<p>%s to create your Google Maps API key."
5062
+ msgstr "<p>%s um Ihren Google Maps API Schlüssel zu erstellen."
5063
 
5064
  #: src/Tribe/Google/Maps_API_Key.php:55 src/Tribe/Google/Maps_API_Key.php:62
5065
  msgid "Google Maps API key"
5160
  msgid "No notable changes detected"
5161
  msgstr "Keine nennenswerten Änderungen erkannt"
5162
 
5163
+ #: src/Tribe/Main.php:2561
5164
  msgid " (View Full %1$s Description Here: %2$s)"
5165
  msgstr "(Komplette %1$s Beschreibung anschauen: %2$s)"
5166
 
5206
 
5207
  #: src/admin-views/admin-update-message.php:32
5208
  msgid "Keep the Core Plugin %sFREE%s!"
5209
+ msgstr "Halten Sie das Plugin 'The Events Calendar' %skostenlos%s!"
5210
 
5211
+ #: src/Tribe/Template_Factory.php:231
5212
  msgid "No results were found for %1$s in or near %2$s."
5213
  msgstr "Es wurden keine Ergebnisse für %1$s in oder in der Nähe von %2$s gefunden."
5214
 
5215
+ #: src/Tribe/Template_Factory.php:229
5216
  msgid "There were no results found for %s."
5217
  msgstr "Es wurden keine Ergebnisse für %s gefunden."
5218
 
5219
+ #: src/Tribe/Template/Month.php:458
5220
  msgid "There were no results found for %s this month. Try searching next month."
5221
  msgstr "Es gibt keine Ergebnisse für %s für diesen Monat. Bitte den nächsten Monat durchsuchen."
5222
 
5223
+ #: src/Tribe/Template/Day.php:154
5224
  msgid "No %1$s scheduled for %2$s. Please try another day."
5225
  msgstr "Es sind keine %1$s für den %2$s geplant. Bitte einen anderen Tag wählen."
5226
 
5227
+ #: src/Tribe/Main.php:3855
5228
  msgid "Check out the %savailable add-ons%s."
5229
+ msgstr "Schauen Sie sich die %sverfügbaren Add-Ons%s an."
5230
 
5231
+ #: src/Tribe/Main.php:1922
5232
  msgid "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5233
+ msgstr "Ohne einen definierten Ort werden Ihre Veranstaltungen nicht als %sGoogle Rich Snippet%s in den Suchergebnissen angezeigt"
5234
 
5235
+ #: src/Tribe/Main.php:1853 src/Tribe/Main.php:1873
5236
  msgid "%1$s scheduled for: %2$s."
5237
  msgstr "%1$s geplant für: %2$s."
5238
 
5239
+ #: src/Tribe/Main.php:1834
5240
  msgid "%1$s draft updated. %2$sPreview %3$s"
5241
  msgstr "%1$s Entwurf aktualisiert.. %2$sVorschau %3$s"
5242
 
5243
+ #: src/Tribe/Main.php:1825
5244
  msgid "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5245
  msgstr "%1$s geplant für: %2$s. %3$sVorschau %4$s"
5246
 
5247
+ #: src/Tribe/Main.php:1819
5248
  msgid "%1$s submitted. %2$sPreview %3$s"
5249
  msgstr "%1$s übermittelt. %2$sVorschau %3$s"
5250
 
5251
+ #: src/Tribe/Main.php:1801
5252
  msgid "%1$s updated. %2$sView %1$s%3$s"
5253
  msgstr "%1$s aktualisiert. %2$s%1$s anzeigen%3$s"
5254
 
5255
+ #: src/Tribe/Main.php:1476
5256
  msgid "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5257
  msgstr "Die tribe-common Bibliotheken konnten nicht gefunden werden! Das Verzeichnis sollte im \"common/\" Verzeichnis im Events Calendar Plugin sein."
5258
 
5259
+ #: src/Tribe/Main.php:1111
5260
  msgid "If you have a valid license for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5261
+ msgstr "Wenn Sie eine gültige Lizenz für eines unserer Bezahl-Plugins haben, können Sie in unserem Support Forum %s. Unser Support Team prüft die Foren und wird innerhalb wochentags von 24-48 Stunden auf Ihre Anfrage reagieren."
5262
 
5263
+ #: src/Tribe/Main.php:1110
5264
  msgid "post a thread"
5265
  msgstr "Diskutiere mit"
5266
 
5267
+ #: src/Tribe/Main.php:1106
5268
  msgid "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays."
5269
+ msgstr "<strong>Benötigen Sie schnelle Unterstützung?</strong> Wir bieten %1$s mit dem Kauf eines unserer Premium Plugins (wie %2$s). Erwerben Sie eine Lizenz und Sie können direkt hier eine Anfrage stellen. Wochentags reagieren wir innerhalb von 24-48 Stunden."
5270
 
5271
+ #: src/Tribe/Main.php:1102
5272
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5273
+ msgstr "Wenn Sie die Schritte oben versucht haben und immer noch Probleme auftreten, können Sie eine Anfrage in unserem %s stellen. Unser Support Team prüft diese Foren einmal wöchentlich und hilft Ihnen gerne weiter"
5274
 
5275
+ #: src/Tribe/Main.php:1101
5276
  msgid "open-source forum on WordPress.org"
5277
  msgstr "Open Source Forum auf WordPress.org"
5278
 
5279
+ #: src/Tribe/Main.php:1097
5280
  msgid "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays"
5281
+ msgstr "<strong>Benötigen Sie einen schnellere Unterstützung?</strong> Wir bieten %s mit dem Kauf eines unserer Premium Plugins. Wählen Sie eine Lizenz und Sie können dort direkt ihre Frage stellen und erhalten innerhalb von 24-48 Stunden wochentags eine Antwort"
5282
 
5283
+ #: src/Tribe/Main.php:1096 src/Tribe/Main.php:1104
5284
  msgid "premium support on our website"
5285
  msgstr "Premium Support auf unserer Website"
5286
 
5287
+ #: src/Tribe/Main.php:1094
5288
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5289
+ msgstr "Wenn Sie die Schritte oben schon versucht und immer noch Probleme haben, können Sie einen neue Anfrage in unseren Wordpress.org Foren für %1$s und %2$s stellen. Unser Support Team überprüft diese Foren einmal wöchentlich und hilft Ihnen gerne weiter."
5290
 
5291
+ #: src/Tribe/Main.php:1093
5292
  msgid "Events Tickets"
5293
  msgstr "Events Tickets"
5294
 
5295
+ #: src/Tribe/Main.php:1078
5296
  msgid "Customizing the Events plugins"
5297
  msgstr "Die Veranstaltung Plugins anpassen"
5298
 
5299
+ #: src/Tribe/Main.php:1078
5300
  msgid "%s: Code and guides for customizing your calendar in useful and interesting ways."
5301
+ msgstr "%s: Code und Anleitungen, um Ihren Kalender auf sinnvolle und interessante Weise anzupassen"
5302
 
5303
+ #: src/Tribe/Main.php:1076
5304
  msgid "Troubleshooting common problems"
5305
  msgstr "Lösung allgemeiner Probleme"
5306
 
5307
+ #: src/Tribe/Main.php:1076
5308
  msgid "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5309
+ msgstr "%s: Haben Sie einen Fehler in unserem Kalender entdeckt? Klicken Sie hier um herauszufinden, woher er kommt und wie er gelöst werden kann."
5310
 
5311
+ #: src/Tribe/Main.php:1074
5312
  msgid "Using stylesheets and page templates"
5313
  msgstr "Nutze Stylesheets und Seitenvorlagen"
5314
 
5315
+ #: src/Tribe/Main.php:1074
5316
  msgid "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5317
  msgstr "%s: Ein Überblick über die Standard Vorlagen und Designs, welche im Plugin enthalten sind und wie man diese anpassen kann."
5318
 
5319
+ #: src/Tribe/Main.php:1072
5320
  msgid "Themer’s Guide"
5321
  msgstr "Themer’s Guide"
5322
 
5323
+ #: src/Tribe/Main.php:1072
5324
  msgid "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5325
+ msgstr "%s: Unser umfassendster Führer, um den Kalender an Ihre Bedürfnisse anzupassen, inklusive individuellen Layouts und Designs."
5326
 
5327
+ #: src/Tribe/Main.php:1070
5328
  msgid "Features overview"
5329
  msgstr "Übersicht der Features"
5330
 
5331
+ #: src/Tribe/Main.php:1070
5332
  msgid "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5333
+ msgstr "%s: Eine komplette Übersicht der Funktionen, welche Sie erwarten und wie sie benutzt werden können."
5334
 
5335
+ #: src/Tribe/Main.php:1068
5336
  msgid "Settings overview"
5337
  msgstr "Übersicht Einstellungen"
5338
 
5339
+ #: src/Tribe/Main.php:1068
5340
  msgid "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5341
+ msgstr "%s: Eine uneingeschränkte Besichtigung des Events Calendar und seiner Einstellungen sind für Sie verfügbar."
5342
 
5343
+ #: src/Tribe/Main.php:1065
5344
  msgid "Support for The Events Calendar"
5345
  msgstr "Unterstützung für The Events Calendar"
5346
 
5347
+ #: src/Tribe/Main.php:1054
5348
  msgid "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5349
+ msgstr "Wir möchten, dass Ihr Kalender spektakulär wird und haben viele Hilfmittel dafür verfügbar, inklusive praktische %s um Ihren Kalender in Gang zu bringen."
5350
 
5351
+ #: src/Tribe/Main.php:1052
5352
  msgid "New User Primer"
5353
  msgstr "Primer für neue Nutzer"
5354
 
5371
  msgid "CSV Import Settings"
5372
  msgstr "CSV Import Einstellungen"
5373
 
5374
+ #: src/deprecated/Tribe__Events__Asset__Bootstrap_Datepicker.php:27
5375
  msgid "Clear"
5376
+ msgstr "Leeren"
5377
 
5378
  #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:257
5379
  msgid "Add another %s"
5383
  msgid "Create New %s"
5384
  msgstr "Neue %s erstellen"
5385
 
5386
+ #: src/Tribe/Organizer.php:375
5387
  msgid "Unnamed %s"
5388
  msgstr "Unbenannte(r) %s"
5389
 
5393
 
5394
  #: common/src/admin-views/tribe-options-help.php:38
5395
  msgid "Read more about our support policy"
5396
+ msgstr "Erfahren Sie mehr über unsere Support Richtlinien "
5397
 
5398
  #: common/src/admin-views/tribe-options-help.php:37
5399
  msgid "Please note that all hands-on support is provided via the help desk. You can email or tweet at us… ​but we will probably point you back to the help desk 😄"
5400
+ msgstr "Bitte beachten Sie, dass jeglicher Support über das Forum erfolgt. Sie können uns mailen oder tweeten ... aber wir werden Sie wieder auf das Forum verweisen 😄"
5401
 
5402
  #: common/src/admin-views/tribe-options-help.php:33
5403
  msgid "%s. There are very few issues we haven’t seen and it’s likely another user has already asked your question and gotten an answer from our support staff. While posting to the help desk is open only to paid customers, they are open for anyone to search and review."
5404
+ msgstr "%s. Es gibt wenige Probleme, welche wir noch nicht gesehen haben und es ist sehr wahrscheinlich, dass Ihre Frage schon gestellt und von unserem Supportpersonal beantwortet wurde. Auch wenn neue Fragen nur durch zahlende Kunden gestellt werden können, kann es von jedem durchsucht und angeschaut werden."
5405
 
5406
  #: common/src/admin-views/tribe-options-help.php:32
5407
  msgid "Test for a theme or plugin conflict"
5409
 
5410
  #: common/src/admin-views/tribe-options-help.php:32
5411
  msgid "%s. Testing for an existing conflict is the best start for in-depth troubleshooting. We will often ask you to follow these steps when opening a new thread, so doing this ahead of time will be super helpful."
5412
+ msgstr "%s. Auf einen besteheneden Konflikt zu überprüfen ist der beste Start für eine gründliche Untersuchung. Wir werden Sie oft bitten diesen Schritte durchzuführen, wenn Sie eine neue Anfrage stellen. Daher ist es sehr hilfreich, wenn Sie dies schon im voraus erledigen."
5413
 
5414
  #: common/src/admin-views/tribe-options-help.php:31
5415
  msgid "Check our Knowledgebase"
5421
 
5422
  #: common/src/admin-views/tribe-options-help.php:27
5423
  msgid "While the resources above help solve a majority of the issues we see, there are times you might be looking for extra support. If you need assistance using our plugins and would like us to take a look, please follow these steps:"
5424
+ msgstr "Während die Hilfmittel oben eine Vielzahl von Problemen, die wir kennen, lösen, wird manchmal zusätzlicher Support benötigt. Wenn Sie Unterstützung beim Nutzen unserer Plugins benötigen und wir helfen sollen, folgen Sie bitte diesen Schritten:"
5425
 
5426
  #: common/src/admin-views/tribe-options-help.php:26
5427
  msgid "Getting More Help"
5445
 
5446
  #: common/src/admin-views/tribe-options-help.php:11
5447
  msgid "Thank you for using %s! All of us at Modern Tribe sincerely appreciate your support and we’re excited to see you using our plugins."
5448
+ msgstr "Danke, dass Sie %s nutzen! Wir von Modern Tribe freuen uns über Ihre Unterstützung und dass Sie unsere Plugins nutzen"
5449
 
5450
  #: common/src/admin-views/tribe-options-general.php:15
5451
  msgid "Optimize your site's event listings with %1$sThe Events Calendar%2$s, our free calendar plugin. Looking for additional functionality including recurring events, user-submission, advanced ticket sales and more? Check out our %3$spremium add-ons%4$s."
5452
+ msgstr "Optimieren Sie die Anzeige Ihrer Veranstaltungen mit %1$sThe Events Calendar%2$s, unserem kostenfreien Kalender Plugin. Benötigen Sie weitere Funktionen inklusive Serientermine, Kartenverkauf, öffentliche Veranstaltungserstellung, neue Ansichten und mehr? Schauen Sie sich unsere %3$sPremium Add-Ons%4$s an."
5453
 
5454
  #: common/src/admin-views/tribe-options-general.php:10
5455
  msgid "Thank you for using Event Tickets! All of us at Modern Tribe sincerely appreciate your support and we're excited to see you using our plugins. Check out our handy %1$sNew User Primer%2$s to get started."
5456
+ msgstr "Danke, dass Sie Event Tickets nutzen! Wir schätzen sehr Ihre Unterstützung und freuen uns, dass Sie unsere Plugins nutzen. Schauen Sie sich unseren praktischen %1$sNew User Primer%2$s an, um durchzustarten."
5457
 
5458
  #: src/admin-views/tribe-options-display.php:72
5459
  msgid "Enter the format to use for displaying dates with the year. Used when displaying a date in a future year."
5460
+ msgstr "Geben Sie das Format für die Anzeige eines Datum inkl. Jahr ein. Wird verwendet, wenn ein Datum in einem zukünftigen Jahr angezeigt wird."
5461
 
5462
  #: common/src/Tribe/PUE/Checker.php:932
5463
  msgid "Thanks for setting up a valid key. It will expire on %s"
5527
 
5528
  #: common/src/Tribe/Admin/Help_Page.php:95
5529
  msgid "Turbo charge your posts admin for any custom post type with sortable filters and columns, and auto-registration of metaboxes."
5530
+ msgstr "Versehen Sie Ihre individuellen Artikel Typen mit sortierbaren Filtern und Spalten und Auto-Registrierung von Metaboxen."
5531
 
5532
  #: common/src/Tribe/Admin/Help_Page.php:91
5533
  msgid "Advanced Post Manager"
5535
 
5536
  #: common/src/Tribe/Admin/Help_Page.php:79
5537
  msgid "Events Tickets is a carefully crafted, extensible plugin that lets you easily sell tickets for your events."
5538
+ msgstr "Events Tickets ist ein sorgfältig entwickeltes, erweiterbares Plugin, mit welchem Sie einfach Karten zu ihrer Veranstaltung verkaufen können."
5539
 
5540
  #: common/src/Tribe/Admin/Help_Page.php:75 common/src/Tribe/Plugins_API.php:57
5541
  msgid "Event Tickets"
5543
 
5544
  #: common/src/Tribe/Admin/Help_Page.php:63
5545
  msgid "The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events."
5546
+ msgstr "Der Veranstaltungskalender ist ein sorgfältig gestaltetes, erweiterbares Plug-in, mit dem Sie Ihre Termine ganz einfach freigeben können."
5547
 
5548
  #: src/views/month/single-day.php:47
5549
  msgid "View %1$s %2$s"
5571
  msgid "%s must be a positive number or percent."
5572
  msgstr "%s muss eine positive Zahl oder ein Prozentwert sein."
5573
 
5574
+ #: src/Tribe/Main.php:999
5575
  msgid "%1$s or %2$s"
5576
  msgstr "%1$s von %2$s"
5577
 
5585
 
5586
  #. Description of the plugin/theme
5587
  msgid "The Events Calendar is a carefully crafted, extensible plugin that lets you easily share your events. Beautiful. Solid. Awesome."
5588
+ msgstr "Der Veranstaltungskalender ist ein sorgfältig gestaltetes, erweiterbares Plug-in, mit dem Sie Ihre Termine ganz einfach freigeben können. Schön. Solide. Genial."
5589
 
5590
  #: src/views/widgets/list-widget.php:118
5591
  msgid "There are no upcoming %s at this time."
5622
  #: src/views/day/single-event.php:82 src/views/day/single-featured.php:76
5623
  #: src/views/list/single-event.php:92 src/views/list/single-featured.php:78
5624
  msgid "Find out more"
5625
+ msgstr "Erfahren Sie mehr"
5626
 
5627
  #: src/views/day/nav.php:17
5628
  msgid "Day Navigation"
5629
  msgstr "Tagesnavigation"
5630
 
5631
+ #: src/Tribe/Aggregator/Tabs/New.php:400
5632
  msgid "Import complete!"
5633
  msgstr "Import abgeschlossen!"
5634
 
5663
 
5664
  #: src/functions/template-tags/options.php:29
5665
  msgid "You %1$scannot%2$s use the same slug as above. The above should ideally be plural, and this singular.%3$sYour single Event URL is like: %4$s"
5666
+ msgstr "Sie %1$skönnen nicht%2$s die gleiche URL wie oben nutzen. Idealerweise sollte die obere im Plural und diese im Singular stehen.%3$sIhre Einzelveranstaltungs-URL lautet: %4$s"
5667
 
5668
  #: src/functions/template-tags/options.php:20
5669
  msgid "Your current Events URL is %s"
5670
+ msgstr "Ihre aktuelle Veranstaltungs-URL ist %s"
5671
 
5672
  #: src/functions/template-tags/loop.php:204
5673
  msgid "Past %s"
5710
  msgctxt "category list label"
5711
  msgid "%s Category"
5712
  msgid_plural "%s Categories"
5713
+ msgstr[0] "%sskategorie"
5714
+ msgstr[1] "%sskategorien"
5715
 
5716
  #: src/functions/template-tags/deprecated.php:1299
5717
  msgid "Category"
5743
 
5744
  #: src/admin-views/widget-admin-list.php:31
5745
  msgid "Show widget only if there are upcoming events"
5746
+ msgstr "Das Widget nur anzeigen, wenn es anstehende Veranstaltungen gibt"
5747
 
5748
  #: src/admin-views/widget-admin-list.php:18
5749
  msgid "Show:"
5802
 
5803
  #: src/admin-views/tribe-options-timezones.php:43
5804
  msgid "Use the site-wide time zone everywhere"
5805
+ msgstr "Nutzen Sie die seitenweite Zeitzone überall"
5806
 
5807
  #: src/admin-views/tribe-options-timezones.php:42
5808
  msgid "Use manual time zones for each event"
5809
+ msgstr "Nutzen Sie die lokalen Zeitzonen für jede Veranstaltung"
5810
 
5811
  #: src/admin-views/tribe-options-timezones.php:38
5812
  msgid "Time zone mode"
5818
 
5819
  #: src/admin-views/tribe-options-timezones.php:10
5820
  msgid "Click this button to update your database and take advantage of additional time zone capabilities. Please <a href=\"%s\" target=\"_blank\">configure WordPress</a> to use the correct time zone before clicking this button!"
5821
+ msgstr "Klicken Sie diesen Button an, um mehrere Zeitzonen (u.a. im Formular für die Übermittlung von neuen Veranstaltungen) in Ihrem Kalender nutzen zu können. Bitte <a href=\"%s\" target=\"_blank\">konfigurieren Sie in WordPress</a> die korrekte Zeitzone, bevor Sie diesen Button anklicken!"
5822
 
5823
  #: src/admin-views/tribe-options-timezones.php:9
5824
  msgid "Update Time Zone Data"
5842
 
5843
  #: common/src/admin-views/tribe-options-licenses.php:38
5844
  msgid "%1$s Using our plugins in a multisite network? %2$s Please note that your license key will be applied to the entire network, not just this site."
5845
+ msgstr "%1$s Nutzen Sie unser Plugin in einem Multisite Netzwerk? %2$s Bitte beachten Sie, dass der Lizenzschlüssel für das gesamte Netzwerk angewendet wird, nicht nur für diese Seite."
5846
 
5847
  #: common/src/admin-views/tribe-options-help.php:74
5848
  msgid "News and Tutorials"
5870
  msgstr "Mehr..."
5871
 
5872
  #: common/src/Tribe/Admin/Help_Page.php:194 common/src/Tribe/Plugins_API.php:43
5873
+ #: src/Tribe/Main.php:1105
5874
  msgid "Events Calendar PRO"
5875
  msgstr "Events Calendar PRO"
5876
 
5877
  #: common/src/Tribe/Admin/Help_Page.php:413
5878
  #: common/src/Tribe/Admin/Help_Page.php:788
5879
  msgid "You are up to date!"
5880
+ msgstr "Sie sind auf dem neuesten Stand!"
5881
 
5882
  #: common/src/Tribe/Admin/Help_Page.php:413
5883
  msgid "You need to upgrade!"
5884
+ msgstr "Sie müssen updaten!"
5885
 
5886
  #: common/src/Tribe/Admin/Help_Page.php:405
5887
  msgctxt "not available"
5894
 
5895
  #: common/src/admin-views/tribe-options-general.php:59
5896
  msgid "Enable this option to log debug information. By default this will log to your server PHP error log. If you'd like to see the log messages in your browser, then we recommend that you install the %s and look for the \"Tribe\" tab in the debug output."
5897
+ msgstr "Aktivieren Sie die Option, um Debuginformationen mit zu loggen. Standardmäßig werden die Informationen in Ihr PHP Server Error Log geschrieben. Wenn Sie die Debuginfos in Ihrem Browser sehen möchten, empfehlen wir das %s zu installieren. Die Ausgabe der Debuginfos finden Sie im \"Tribe\" Tab."
5898
 
5899
  #: common/src/admin-views/tribe-options-general.php:53
5900
  msgid "Debug mode"
5920
 
5921
  #: src/admin-views/tribe-options-general.php:161
5922
  msgid "You might find duplicate venues and organizers when updating The Events Calendar from a pre-3.0 version. Click this button to automatically merge identical venues and organizers."
5923
+ msgstr "Sie können nach Duplikaten von Veranstaltungsorten und Veranstaltern suchen. Klicken Sie den Button und es werden exakt gleiche Veranstaltungsorte und Veranstalter (alle Felder werden vollständig verglichen) zusammengeführt."
5924
 
5925
  #: src/admin-views/tribe-options-general.php:161
5926
  msgid "Duplicate Venues &amp; Organizers"
5960
 
5961
  #: src/admin-views/tribe-options-general.php:147
5962
  msgid "Set the default currency symbol for event costs. Note that this only impacts future events, and changes made will not apply retroactively."
5963
+ msgstr "Legen Sie die Standard Währung für die Veranstaltungspreise fest. Bitte beachten Sie, dass dies nur zukünftige Veranstaltungen betrifft und nicht vergangene Verstaltungen beeinflußt."
5964
 
5965
  #: src/admin-views/tribe-options-general.php:146
5966
  msgid "Default currency symbol"
5968
 
5969
  #: src/admin-views/tribe-options-general.php:141
5970
  msgid "Have an event that runs past midnight? Select a time after that event's end to avoid showing the event on the next day's calendar."
5971
+ msgstr "Haben Sie Veranstaltungen, die nach Mitternacht enden? Wählen Sie eine Zeit nach dem Veranstaltungsende, um zu vermeiden, dass die Veranstaltung im Kalender des nächsten Tages angezeigt wird."
5972
 
5973
  #: src/admin-views/tribe-options-general.php:120
5974
  msgid "End of day cutoff"
5976
 
5977
  #: src/admin-views/tribe-options-general.php:115
5978
  msgid "The above should ideally be plural, and this singular.<br />Your single event URL is: %s"
5979
+ msgstr "Die obere sollte idealer Weise im Plural geschrieben werden, diese im Singular.<br />Ihre URL für einzelne Veranstaltungen lautet: %s"
5980
 
5981
  #: src/admin-views/tribe-options-general.php:108
5982
  msgid "Single event URL slug"
5985
  #: src/admin-views/tribe-options-general.php:103
5986
  #: src/functions/template-tags/options.php:39
5987
  msgid "Here is the iCal feed URL for your events:"
5988
+ msgstr "Hier befindet sich die iCal Feed URL für Ihre Veranstaltungen:"
5989
 
5990
  #: src/admin-views/tribe-options-general.php:98
5991
  msgid "Your current events URL is: %s"
5994
  #: src/admin-views/tribe-options-general.php:98
5995
  #: src/functions/template-tags/options.php:20
5996
  msgid "The slug used for building the events URL."
5997
+ msgstr "Der Slug (Permalink) für die Veranstaltungs-URL."
5998
 
5999
  #: src/admin-views/tribe-options-general.php:75
6000
  #: src/admin-views/tribe-options-general.php:91
6001
  msgid "Events URL slug"
6002
+ msgstr "URL-Slug (Permalink) für Veranstaltungen"
6003
 
6004
  #: src/admin-views/tribe-options-general.php:69
6005
  msgid "Show events with the site's other posts. When this box is checked, events will also continue to appear on the default events page."
6039
 
6040
  #: common/src/admin-views/tribe-options-general.php:30
6041
  msgid "Are you thinking \"Wow, this plugin is amazing! I should say thanks to Modern Tribe for all their hard work.\" The greatest thanks we could ask for is recognition. Add a small text-only link at the bottom of your calendar pointing to The Events Calendar project."
6042
+ msgstr "Sie finden: \"Wow, das Plugin ist fantastisch! Ich sollte Modern Tribe dafür danken!\" Der beste Dank ist ein kleiner Link zu uns am unteren Ende des Veranstaltungskalenders."
6043
 
6044
  #: common/src/admin-views/tribe-options-general.php:25
6045
  msgid "We hope our plugin is helping you out."
6047
 
6048
  #: common/src/admin-views/tribe-options-general.php:20
6049
  msgid "Check out the available add-ons"
6050
+ msgstr "Schauen Sie sich die verfügbaren Erweiterungen an"
6051
 
6052
  #: common/src/admin-views/tribe-options-general.php:20
6053
  msgid "Looking for additional functionality including recurring events, custom meta, community events, ticket sales and more?"
6054
+ msgstr "Wünschen Sie erweiterte Funktionalität, einschließlich wiederkehrender Veranstaltungen, benutzerdefinierten Meta-Informationen, Community-Veranstaltungen, Ticketverkäufen und mehr?"
6055
 
6056
  #: src/admin-views/tribe-options-general.php:23
6057
  msgid "Right here"
6063
 
6064
  #: src/admin-views/tribe-options-general.php:18
6065
  msgid "Finding your calendar."
6066
+ msgstr "Ihren Kalender finden."
6067
 
6068
  #: src/admin-views/tribe-options-general.php:13
6069
  msgid "Finding & extending your calendar."
6070
+ msgstr "Ihren Kalender finden und erweitern."
6071
 
6072
  #: src/admin-views/tribe-options-display.php:221
6073
  msgid "If you are familiar with HTML, you can add additional code after the event template. Some themes may require this to help with styling or layout."
6074
+ msgstr "Wenn Sie mit HTML vertraut sind, können Sie Code HINTER der Veranstaltungsvorlage einfügen. Bei einigen Themes kann dies für Anpassungen am Layout und Design notwendig sein."
6075
 
6076
  #: src/admin-views/tribe-options-display.php:220
6077
  msgid "Add HTML after event content"
6079
 
6080
  #: src/admin-views/tribe-options-display.php:215
6081
  msgid "If you are familiar with HTML, you can add additional code before the event template. Some themes may require this to help with styling or layout."
6082
+ msgstr "Wenn Sie mit HTML vertraut sind, können Sie Code VOR der Veranstaltungsvorlage einfügen. Bei einigen Themes kann dies für Anpassungen am Layout und Design notwendig sein."
6083
 
6084
  #: src/admin-views/tribe-options-display.php:214
6085
  msgid "Add HTML before event content"
6091
 
6092
  #: common/src/admin-views/tribe-options-display.php:37
6093
  msgid "Select the date format to use in datepickers"
6094
+ msgstr "Wählen Sie das Datumsformat, welches bei der Datumwahl (\"Datepicker\") verwendet wird."
6095
 
6096
  #: common/src/admin-views/tribe-options-display.php:36
6097
  msgid "Datepicker Date Format"
6099
 
6100
  #: src/admin-views/tribe-options-display.php:118
6101
  msgid "Enter the separator that will be used between the start and end time of an event."
6102
+ msgstr "Geben Sie das Trennzeichen ein, das die Start- und Ende Uhrzeit einer Veranstaltung trennt."
6103
 
6104
  #: src/admin-views/tribe-options-display.php:117
6105
  msgid "Time range separator"
6107
 
6108
  #: src/admin-views/tribe-options-display.php:80
6109
  msgid "Enter the separator that will be placed between the date and time, when both are shown."
6110
+ msgstr "Geben Sie das Trennzeichen ein, das Datum und Uhrzeit trennt, wenn beides angezeigt wird."
6111
 
6112
  #: src/admin-views/tribe-options-display.php:79
6113
  msgid "Date time separator"
6115
 
6116
  #: src/admin-views/tribe-options-display.php:103
6117
  msgid "Enter the format to use for dates that show a month and year only. Used on month view."
6118
+ msgstr "Geben Sie das Format ein, das für die Anzeige eines Datum, bei dem nur der Monat und das Jahr angezeigt wird. Wird bei der Monatsansicht verwendet."
6119
 
6120
  #: src/admin-views/tribe-options-display.php:102
6121
  msgid "Month and year format"
6123
 
6124
  #: src/admin-views/tribe-options-display.php:95
6125
  msgid "Enter the format to use for displaying dates without a year. Used when showing an event from the current year."
6126
+ msgstr "Geben Sie das Format ein, das für die Anzeige eines Datum ohne Jahresangabe verwendet werden soll. Wird benutzt, wenn eine aktuelle Veranstaltung angezeigt wird."
6127
 
6128
  #: src/admin-views/tribe-options-display.php:94
6129
  msgid "Date without year"
6171
 
6172
  #: src/admin-views/tribe-options-display.php:157
6173
  msgid "Choose a page template to control the appearance of your calendar and event content."
6174
+ msgstr "Wählen Sie eine Seitenvorlage für die Darstellung des Veranstaltungskalenders."
6175
 
6176
  #: src/admin-views/tribe-options-display.php:156
6177
  msgid "Events template"
6179
 
6180
  #: src/admin-views/tribe-options-display.php:149
6181
  msgid "A fully designed and styled theme for your events pages."
6182
+ msgstr "Ein komplett designter Theme für Ihre Veranstaltungsseite."
6183
 
6184
  #: src/admin-views/tribe-options-display.php:147
6185
  msgid "Tribe Events Styles"
6187
 
6188
  #: src/admin-views/tribe-options-display.php:145
6189
  msgid "More detailed styling, tries to grab styles from your theme."
6190
+ msgstr "Aufwändigere Darstellung. Nutzt CSS Ihres Themes."
6191
 
6192
  #: src/admin-views/tribe-options-display.php:143
6193
  msgid "Full Styles"
6309
  msgid "%s Website"
6310
  msgstr "%s Website"
6311
 
6312
+ #: src/Tribe/Aggregator/Record/List_Table.php:509
6313
  msgid "Location:"
6314
  msgstr "Ort:"
6315
 
6320
 
6321
  #: src/admin-views/events-meta-box.php:69
6322
  msgid "You have changed the recurrence rules of this %1$s. Saving the %1$s will update all future %2$s. If you did not mean to change all %2$s, then please refresh the page."
6323
+ msgstr "Sie haben die Wiederholrate dieser %1$s geändert. Wenn Sie die %1$s speichern, werden alle zukünftigen %2$s ebenfalls geändert. Wenn alle zukünftigen %2$s NICHT geändert werden sollen, bitte die Seite neu laden."
6324
 
6325
  #: src/admin-views/events-meta-box.php:52
6326
  msgid "Time &amp; Date"
6344
 
6345
  #: src/admin-views/admin-welcome-message.php:51
6346
  msgid "Get the Skinny on the Latest Updates"
6347
+ msgstr "Erhalten Sie Infos über die aktuellen Updates"
6348
 
6349
  #: src/admin-views/admin-welcome-message.php:50
6350
  msgid "Release Notes"
6368
 
6369
  #: src/admin-views/admin-welcome-message.php:41
6370
  msgid "Check out the New User Primer &amp; Tutorials"
6371
+ msgstr "Schauen Sie das Handbuch für neue Nutzer an"
6372
 
6373
  #: src/admin-views/admin-welcome-message.php:40
6374
  msgid "Getting Started"
6419
 
6420
  #: src/admin-views/admin-update-message.php:37
6421
  msgid "PSST... Want a Discount?"
6422
+ msgstr "Psst - wollen Sie einen Rabatt?"
6423
 
6424
  #: src/admin-views/admin-update-message.php:34
6425
  #: src/admin-views/admin-welcome-message.php:22
6428
 
6429
  #: src/admin-views/admin-update-message.php:33
6430
  msgid "Every time you rate %s5 stars%s, a fairy is born. Okay maybe not, but more happy users mean more contributions and help on the forums. The community NEEDS your voice."
6431
+ msgstr "Jedes Mal, wenn Sie eine %s5 Sterne%s Bewertung abgeben wird eine Fee geboren. Vielleicht auch nicht, aber mehr glückliche Nutzer bedeuten mehr Unterstützung und Hilfe in den Foren. Die Community BENÖTIGT Ihre Stimme."
6432
 
6433
  #: src/admin-views/admin-update-message.php:9
6434
  #: src/admin-views/admin-welcome-message.php:11
6435
  msgid "You are running Version %s and deserve a hug :-)"
6436
+ msgstr "Sie nutzen Version %s - herzlichen Dank! :-)"
6437
 
6438
  #: src/Tribe/iCal.php:142
6439
  msgid "Use this to share calendar data with Google Calendar, Apple iCal and other compatible apps"
6684
 
6685
  #: common/src/Tribe/Languages/Locations.php:293
6686
  msgid "Wallis and Futuna Islands"
6687
+ msgstr "Wallis und Futuna Inseln"
6688
 
6689
  #: common/src/Tribe/Languages/Locations.php:292
6690
  msgid "Virgin Islands (U.S.)"
6804
 
6805
  #: common/src/Tribe/Languages/Locations.php:263
6806
  msgid "Svalbard and Jan Mayen Islands"
6807
+ msgstr "Svalbard und Jan Mayen Inseln"
6808
 
6809
  #: common/src/Tribe/Languages/Locations.php:262
6810
  msgid "Suriname"
7714
  msgid "Template overrides should be moved to the correct subdirectory: %s"
7715
  msgstr "Vorlage sollte in das richtige Unterverzeichnis verschoben werden: %s"
7716
 
7717
+ #: src/Tribe/Template_Factory.php:237
7718
  msgid "No previous %s "
7719
  msgstr "Keine vorherige %s"
7720
 
7721
+ #: src/Tribe/Template_Factory.php:235 src/Tribe/Template_Factory.php:240
7722
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7723
+ msgstr "Keine anstehenden %1$s für %2$s gefunden. Versuchen Sie alle Veranstaltungen anzuzeigen (Filter aufheben) für eine komplette Anzeige von %3$s."
7724
 
7725
+ #: src/Tribe/Template_Factory.php:233
7726
  msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7727
+ msgstr "Keine anstehenden %1$s für %2$s gefunden. Versuchen Sie anstehende %3$s für diese Kategorie oder zeigen Sie alle Veranstaltungen an (Filter aufheben)."
7728
 
7729
  #: src/Tribe/Template/Embed.php:59 src/Tribe/Template/Single_Event.php:119
7730
  msgid "This %s has passed."
7731
  msgstr "Diese %s hat bereits stattgefunden."
7732
 
7733
+ #: src/Tribe/Template/Month.php:955
7734
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7735
  msgstr "Das abgefragte Datum \"%s\" war nicht g&uuml;ltig &ndash; der aktuelle Monat wird stattdessen angezeigt"
7736
 
7737
+ #: src/Tribe/Template/Month.php:464 src/Tribe/Template_Factory.php:242
7738
  msgid "There were no results found."
7739
  msgstr "Es wurden keine Ergebnisse gefunden."
7740
 
7741
+ #: src/Tribe/Template/Month.php:462
7742
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7743
+ msgstr "Keine passenden %1$s gefunden für %2$s. Bitte versuchen Sie alle Veranstaltungen anzuzeigen (Filter aufheben)."
7744
 
7745
+ #: src/Tribe/Template/Day.php:152
7746
  msgid "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7747
+ msgstr "Keine passenden %1$s gefunden am %2$s für %3$s. Wählen Sie bitte einen anderen Tag."
7748
 
7749
+ #: src/Tribe/Template/Day.php:118 src/Tribe/Template/Day.php:134
7750
  msgid "Ongoing"
7751
  msgstr "laufend"
7752
 
7753
+ #: src/Tribe/Aggregator/Page.php:82 src/Tribe/Template/Day.php:115
7754
+ #: src/Tribe/Template/Day.php:131
7755
  msgid "All Day"
7756
  msgstr "Ganztägig"
7757
 
7779
 
7780
  #: common/src/Tribe/Settings.php:620
7781
  msgid "None of your settings were saved. Please try again."
7782
+ msgstr "Die Eintellungen konnten gespeichert werden. Versuchen Sie es erneut."
7783
 
7784
  #: common/src/Tribe/Settings.php:610
7785
  msgid "Your form had the following errors:"
7786
+ msgstr "Ihr Formular hat folgende Fehler:"
7787
 
7788
  #: common/src/Tribe/Settings.php:431
7789
  msgid "The request wasn't sent from this tab."
7795
 
7796
  #: common/src/Tribe/Settings.php:419
7797
  msgid "You don't have permission to do that."
7798
+ msgstr "Sie besitzen nicht die nötigen Rechte dafür."
7799
 
7800
  #: common/src/Tribe/Settings.php:371 src/Tribe/Aggregator/Page.php:92
7801
  msgid "Save Changes"
7803
 
7804
  #: common/src/Tribe/Settings.php:363
7805
  msgid "You've requested a non-existent tab."
7806
+ msgstr "Sie wollen einen nicht vorhandenen Reiter anzeigen."
7807
 
7808
  #: common/src/Tribe/Settings.php:349
7809
  msgid "%s Settings"
7815
 
7816
  #: common/src/Tribe/PUE/Checker.php:888
7817
  msgid "Hmmm... something's wrong with this validator. Please contact %ssupport%s."
7818
+ msgstr "Hmmm... irgendetwas stimmt mit diesem Validator nicht. Bitte kontaktieren Sie den %sSupport%s."
7819
 
7820
  #: common/src/Tribe/PUE/Checker.php:927
7821
  msgid "Valid Key! Expires on %s"
7846
  msgid "Error"
7847
  msgstr "Fehler"
7848
 
7849
+ #: src/Tribe/Main.php:4198
7850
  msgid "Once Every 30 Mins"
7851
  msgstr "Alle 30 Minuten"
7852
 
7853
+ #: src/Tribe/Main.php:4118
7854
  msgid "Day Of"
7855
  msgstr "Tag"
7856
 
7857
+ #: src/Tribe/Main.php:4116
7858
  msgid "%s From"
7859
  msgstr "%s am"
7860
 
7861
+ #: src/Tribe/Main.php:4112
7862
  msgid "%s In"
7863
  msgstr "%s in"
7864
 
7865
+ #: src/Tribe/Main.php:4107 src/Tribe/Main.php:4132
7866
  #: src/admin-views/aggregator/origins/refine.php:7
7867
  msgid "Date"
7868
  msgstr "Datum"
7869
 
7870
+ #: src/Tribe/Main.php:4034
7871
  msgid "Search"
7872
  msgstr "Suche"
7873
 
7874
+ #: src/Tribe/Main.php:4008 src/admin-views/aggregator/fields/schedule.php:44
7875
  #: src/admin-views/aggregator/fields/schedule.php:62
7876
  msgid "Day"
7877
  msgstr "Tag"
7878
 
7879
+ #: src/Tribe/Main.php:3991
7880
  msgid "Month"
7881
  msgstr "Monat"
7882
 
7883
+ #: src/Tribe/Main.php:3973
7884
  msgid "List"
7885
  msgstr "Liste"
7886
 
7887
+ #: src/Tribe/Main.php:3957
7888
  msgid "Calendar"
7889
  msgstr "Kalender"
7890
 
7891
  #: common/src/Tribe/Settings.php:254
7892
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:89 src/Tribe/Main.php:3956
7893
  msgid "Settings"
7894
  msgstr "Einstellungen"
7895
 
7903
  msgid "Add %s"
7904
  msgstr "%s hinzufügen"
7905
 
7906
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:45 src/Tribe/Main.php:3907
7907
  msgid "View Calendar"
7908
  msgstr "Kalenderansicht"
7909
 
7911
  msgid "%s"
7912
  msgstr "%s"
7913
 
7914
+ #: src/Tribe/Main.php:3854
7915
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7916
+ msgstr "Benötigen Sie weitere Funktionen inklusive Serientermine, Kartenverkauf, öffentliche Veranstaltungserstellung, neue Ansichten und mehr?"
7917
 
7918
+ #: src/Tribe/Main.php:3849
7919
  msgid "Additional Functionality"
7920
  msgstr "Erweiterte Funktionalität"
7921
 
7922
+ #: src/Tribe/Main.php:3804
7923
  msgid "News from Modern Tribe"
7924
  msgstr "Neues von Modern Tribe"
7925
 
7926
+ #: src/Tribe/Main.php:3784
7927
  msgid "View All Add-Ons"
7928
  msgstr "Alle Erweiterungen (Add-Ons) anzeigen"
7929
 
7930
+ #: src/Tribe/Main.php:3781
7931
  msgid "Support"
7932
  msgstr "Unterstützung"
7933
 
7934
+ #: src/Tribe/Main.php:3429 src/Tribe/Main.php:3442
7935
  msgid "%s Information"
7936
  msgstr "%s Information"
7937
 
7938
+ #: src/Tribe/Main.php:3420
7939
  msgid "%s Options"
7940
  msgstr "%s-Optionen"
7941
 
7942
+ #: src/Tribe/Main.php:3343 src/Tribe/Main.php:3378
7943
  #: src/functions/template-tags/day.php:157
7944
  #: src/functions/template-tags/day.php:178
7945
  msgid "Date out of range."
7946
  msgstr "Datum außerhalb des Bereichs."
7947
 
7948
+ #: src/Tribe/Main.php:2170
7949
  msgid "all"
7950
  msgstr "Alle"
7951
 
7952
+ #: src/Tribe/Main.php:2169 src/functions/template-tags/general.php:111
7953
  msgid "events"
7954
  msgstr "Veranstaltungen"
7955
 
7956
+ #: src/Tribe/Main.php:2168 src/functions/template-tags/general.php:79
7957
  msgid "event"
7958
  msgstr "Veranstaltung"
7959
 
7960
+ #: src/Tribe/Main.php:2167
7961
  msgid "page"
7962
  msgstr "Seite"
7963
 
7969
  msgid "Done"
7970
  msgstr "Erledigt"
7971
 
7972
+ #: common/src/Tribe/Main.php:272
7973
+ #: src/deprecated/Tribe__Events__Asset__Bootstrap_Datepicker.php:28
7974
  #: src/functions/template-tags/day.php:104
7975
  msgid "Today"
7976
  msgstr "Heute"
7983
  msgid "Next"
7984
  msgstr "Weiter"
7985
 
7986
+ #: src/Tribe/Linked_Posts.php:1138
7987
  msgid "No saved %s exists."
7988
  msgstr "Es existiert kein gespeicherter %s."
7989
 
7990
+ #: src/Tribe/Linked_Posts.php:964
7991
  msgid "Available %s"
7992
  msgstr "Verfügbare %s"
7993
 
7994
+ #: src/Tribe/Linked_Posts.php:960
7995
  msgid "My %s"
7996
  msgstr "Meine %s"
7997
 
7998
+ #: src/Tribe/Main.php:1858 src/Tribe/Main.php:1878
7999
  msgid "%s draft updated."
8000
  msgstr "%s Entwurf aktualisiert."
8001
 
8002
+ #: src/Tribe/Main.php:1851 src/Tribe/Main.php:1871
8003
  msgid "%s submitted."
8004
  msgstr "%s eingereicht."
8005
 
8006
+ #: src/Tribe/Main.php:1849 src/Tribe/Main.php:1869
8007
  msgid "%s published."
8008
  msgstr "%s veröffentlicht."
8009
 
8010
  #. translators: %s: date and time of the revision
8011
+ #: src/Tribe/Main.php:1868
8012
  msgid "%s restored to revision from %s"
8013
  msgstr "%s wieder hergestellt zu Revisionen von %s"
8014
 
8015
  #. translators: Publish box date format, see http://php.net/date
8016
+ #: src/Tribe/Main.php:1828 src/Tribe/Main.php:1856 src/Tribe/Main.php:1876
8017
  msgid "M j, Y @ G:i"
8018
  msgstr "M j, Y @ G:i"
8019
 
8020
+ #: src/Tribe/Main.php:1817 src/Tribe/Main.php:1850 src/Tribe/Main.php:1870
8021
  msgid "%s saved."
8022
  msgstr "%s gespeichert."
8023
 
8024
  #. translators: %s: date and time of the revision
8025
+ #: src/Tribe/Main.php:1810 src/Tribe/Main.php:1848
8026
  msgid "%1$s restored to revision from %2$s"
8027
  msgstr "%1$s wieder hergestellt zu der Version vom %2$s"
8028
 
8029
+ #: src/Tribe/Main.php:1808 src/Tribe/Main.php:1843 src/Tribe/Main.php:1846
8030
+ #: src/Tribe/Main.php:1863 src/Tribe/Main.php:1866
8031
  msgid "%s updated."
8032
  msgstr "%s aktualisiert."
8033
 
8034
+ #: src/Tribe/Main.php:1807 src/Tribe/Main.php:1845 src/Tribe/Main.php:1865
8035
  msgid "Custom field deleted."
8036
  msgstr "Benutzerdefiniertes Feld gel&ouml;scht."
8037
 
8038
+ #: src/Tribe/Main.php:1806 src/Tribe/Main.php:1844 src/Tribe/Main.php:1864
8039
  msgid "Custom field updated."
8040
  msgstr "Benutzerdefiniertes Feld aktualisiert."
8041
 
8042
+ #: src/Tribe/Main.php:1784
8043
  msgid "New %s Category Name"
8044
  msgstr "Neuer %s Kategorie-Name"
8045
 
8046
+ #: src/Tribe/Main.php:1783
8047
  msgid "Add New %s Category"
8048
  msgstr "Neue %s Kategorie hinzufügen"
8049
 
8050
+ #: src/Tribe/Main.php:1782
8051
  msgid "Update %s Category"
8052
  msgstr "Aktualisiere %s-Kategorie"
8053
 
8054
+ #: src/Tribe/Main.php:1781
8055
  msgid "Edit %s Category"
8056
  msgstr "%s Kategorie bearbeiten"
8057
 
8058
+ #: src/Tribe/Main.php:1780
8059
  msgid "Parent %s Category:"
8060
  msgstr "Übergeordnete %s-Kategorie:"
8061
 
8062
+ #: src/Tribe/Main.php:1779
8063
  msgid "Parent %s Category"
8064
  msgstr "Übergeordnete %s-Kategorie"
8065
 
8066
+ #: src/Tribe/Main.php:1778
8067
  msgid "All %s Categories"
8068
  msgstr "Alle %s Kategorien"
8069
 
8070
+ #: src/Tribe/Main.php:1777
8071
  msgid "Search %s Categories"
8072
  msgstr "Suche %ss-Kategorien"
8073
 
8074
+ #: src/Tribe/Main.php:1776
8075
  msgid "%s Category"
8076
  msgstr "%s Kategorie"
8077
 
8078
+ #: src/Tribe/Main.php:1766 src/Tribe/Organizer.php:98 src/Tribe/Venue.php:117
8079
  msgid "No %s found in Trash"
8080
  msgstr "%s im Papierkorb nicht gefunden"
8081
 
8082
+ #: src/Tribe/Main.php:1765 src/Tribe/Organizer.php:97 src/Tribe/Venue.php:116
8083
  msgid "No %s found"
8084
  msgstr "Keine %s gefunden"
8085
 
8086
+ #: src/Tribe/Main.php:1764 src/Tribe/Organizer.php:96 src/Tribe/Venue.php:115
8087
  msgid "Search %s"
8088
  msgstr "%s suchen"
8089
 
8090
+ #: src/Tribe/Main.php:1763 src/Tribe/Organizer.php:95 src/Tribe/Venue.php:114
8091
  #: src/views/month/single-day.php:26
8092
  msgid "View %s"
8093
  msgstr "%s anzeigen"
8094
 
8095
+ #: src/Tribe/Main.php:1762 src/Tribe/Organizer.php:94 src/Tribe/Venue.php:113
8096
  msgid "New %s"
8097
  msgstr "%s neu erstellen"
8098
 
8099
+ #: src/Tribe/Main.php:1760 src/Tribe/Main.php:1892 src/Tribe/Main.php:1893
8100
  #: src/Tribe/Organizer.php:92 src/Tribe/Venue.php:111
8101
  msgid "Add New %s"
8102
  msgstr "%s hinzufügen"
8103
 
8104
+ #: src/Tribe/Main.php:1759 src/Tribe/Organizer.php:91 src/Tribe/Venue.php:110
8105
  msgid "Add New"
8106
  msgstr "Hinzufügen"
8107
 
8108
+ #: src/Tribe/Main.php:1726 src/Tribe/Main.php:2165
8109
  msgid "tag"
8110
  msgstr "Schlagwort"
8111
 
8112
+ #: src/Tribe/Main.php:1712 src/Tribe/Main.php:2166
8113
  msgid "category"
8114
  msgstr "Kategorie"
8115
 
8116
+ #: src/Tribe/Main.php:1464
8117
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8118
+ msgstr "Das The Events Calendar Plugin erfordert PHP Version %s oder höher. Kontaktieren Sie Ihren Webhosting-Anbieter, um auf eine höhere PHP-Version aktualisieren zu können."
8119
 
8120
+ #: src/Tribe/Main.php:1461
8121
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8122
+ msgstr "Das The Events Calendar Plugin erfordert WordPress Version %s oder höher. Bitte aktualisieren Sie Ihre WordPress-Installation entsprechend, bevor Sie fortfahren."
8123
 
8124
  #: common/src/Tribe/Settings_Manager.php:253
8125
  #: common/src/admin-views/tribe-options-licenses.php:66
8135
  msgid "Display"
8136
  msgstr "Darstellung"
8137
 
8138
+ #: src/Tribe/Main.php:1308
8139
  msgid "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8140
  msgstr "Die folgenden Plugins sind nicht mehr aktuell: %1$s. Alle Add-Ons enthalten Abhängigkeiten zu The Events Calendar und werden nicht korrekt funktionieren, solange sie nicht mit der richtigen Version verwendet werden. %2$sMehr erfahren%3$s."
8141
 
8142
+ #: src/Tribe/Main.php:1296
8143
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8144
+ msgstr "Ihre Version des Events Calendar ist nicht aktuell genug, um dieses Add-On zu nutzen. Bitte %supdaten Sie jetzt%s."
8145
 
8146
+ #: src/Tribe/Main.php:786
8147
  msgid "Initializing Tribe Events on %s"
8148
  msgstr "Tribe Events wird eingerichtet für %s"
8149
 
8150
+ #: src/Tribe/Main.php:761
8151
  msgid "today"
8152
  msgstr "heute"
8153
 
8154
+ #: src/Tribe/Main.php:760
8155
  msgid "day"
8156
  msgstr "Tag"
8157
 
8158
+ #: src/Tribe/Main.php:759
8159
  msgid "past"
8160
  msgstr "vergangen"
8161
 
8162
+ #: src/Tribe/Main.php:758
8163
  msgid "upcoming"
8164
  msgstr "anstehende"
8165
 
8166
+ #: src/Tribe/Main.php:757
8167
  msgid "list"
8168
  msgstr "list"
8169
 
8170
+ #: src/Tribe/Main.php:756
8171
  msgid "month"
8172
  msgstr "Monat"
8173
 
8174
+ #. #-#-#-#-# the-events-calendar-code.pot (The Events Calendar 4.6.22.1)
8175
  #. #-#-#-#-#
8176
  #. Plugin Name of the plugin/theme
8177
  #: common/src/Tribe/Admin/Help_Page.php:59 common/src/Tribe/Customizer.php:569
8178
+ #: common/src/Tribe/Plugins_API.php:25 src/Tribe/Main.php:749
8179
+ #: src/Tribe/Main.php:1092 src/Tribe/Privacy.php:29
8180
  #: src/functions/template-tags/general.php:1345
8181
  msgid "The Events Calendar"
8182
  msgstr "The Events Calendar"
8183
 
8184
+ #: src/Tribe/Main.php:1162 src/admin-views/aggregator/tabs/import-form.php:185
8185
  #: src/admin-views/aggregator/tabs/import-form.php:197
8186
  #: src/functions/template-tags/general.php:63
8187
  msgid "Event"
8188
  msgstr "Veranstaltung"
8189
 
8190
  #: common/src/Tribe/Settings.php:177 common/src/Tribe/Settings.php:241
8191
+ #: common/src/Tribe/Settings.php:242 src/Tribe/Main.php:1154
8192
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:207
8193
  #: src/functions/template-tags/general.php:95
8194
  msgid "Events"
8195
  msgstr "Veranstaltungen"
8196
 
8197
+ #: src/Tribe/Organizer.php:157 src/functions/template-tags/organizer.php:112
8198
  msgid "Organizer"
8199
  msgstr "Veranstalter"
8200
 
8201
  #: src/Tribe/Organizer.php:171
8202
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:206
8203
+ #: src/functions/template-tags/organizer.php:123
8204
  msgid "Organizers"
8205
  msgstr "Veranstalter"
8206
 
8325
 
8326
  #: src/Tribe/Importer/Column_Mapper.php:83
8327
  msgid "Event Category"
8328
+ msgstr "Kategorie"
8329
+
8330
+ #: src/Tribe/Importer/Column_Mapper.php:82
8331
+ msgid "Event Currency Position"
8332
+ msgstr "Position der Währung der Veranstaltung"
8333
+
8334
+ #: src/Tribe/Importer/Column_Mapper.php:81
8335
+ msgid "Event Currency Symbol"
8336
+ msgstr "Währung der Veranstaltung"
8337
+
8338
+ #: src/Tribe/Importer/Column_Mapper.php:80
8339
+ msgid "Event Cost"
8340
+ msgstr "Eintritt"
8341
+
8342
+ #: src/Tribe/Importer/Column_Mapper.php:79
8343
+ msgid "Event Show Map"
8344
+ msgstr "Google Karte aktivieren"
8345
+
8346
+ #: src/Tribe/Importer/Column_Mapper.php:78
8347
+ msgid "Event Show Map Link"
8348
+ msgstr "Google Karte Link aktivieren"
8349
+
8350
+ #: src/Tribe/Importer/Column_Mapper.php:76
8351
+ msgid "Event Venue Name"
8352
+ msgstr "Name des Veranstaltungsortes"
8353
+
8354
+ #: src/Tribe/Importer/Column_Mapper.php:72
8355
+ #: src/admin-views/events-meta-box.php:144
8356
+ msgid "All Day Event"
8357
+ msgstr "Ganztägige Veranstaltung"
8358
+
8359
+ #: src/Tribe/Importer/Column_Mapper.php:70
8360
+ msgid "Event End Time"
8361
+ msgstr "Endzeit der Veranstaltung"
8362
+
8363
+ #: src/Tribe/Importer/Column_Mapper.php:69
8364
+ msgid "Event End Date"
8365
+ msgstr "Enddatum der Veranstaltung"
8366
+
8367
+ #: src/Tribe/Importer/Column_Mapper.php:68
8368
+ msgid "Event Start Time"
8369
+ msgstr "Anfangszeit der Veranstaltung"
8370
+
8371
+ #: src/Tribe/Importer/Column_Mapper.php:67
8372
+ msgid "Event Start Date"
8373
+ msgstr "Anfangsdatum der Veranstaltung"
8374
+
8375
+ #: src/Tribe/Importer/Column_Mapper.php:65
8376
+ msgid "Event Description"
8377
+ msgstr "Beschreibung der Veranstaltung"
8378
+
8379
+ #: src/Tribe/Importer/Column_Mapper.php:64
8380
+ msgid "Event Name"
8381
+ msgstr "Name der Veranstaltung"
8382
+
8383
+ #: src/Tribe/Importer/Column_Mapper.php:45
8384
+ msgid "Do Not Import"
8385
+ msgstr "Nicht importieren"
8386
+
8387
+ #: src/Tribe/Aggregator/Record/CSV.php:198
8388
+ #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:358
8389
+ msgid "The following fields are required for a successful import:"
8390
+ msgstr "Die nachfolgenden Felder werden für einen erfolgreichen Import benötigt:"
8391
+
8392
+ #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:317
8393
+ msgid "We were unable to process your request. Please try again."
8394
+ msgstr "Die Durchführung konnte nicht abgeschlossen werden. Bitte versuchen Sie es erneut."
8395
+
8396
+ #: common/src/Tribe/Settings_Manager.php:54
8397
+ msgid "General"
8398
+ msgstr "Allgemein"
8399
+
8400
+ #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:165
8401
+ #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:351
8402
+ msgid "The file went away. Please try again."
8403
+ msgstr "Die Datei wurde nicht gefunden. Bitte versuchen Sie es nochmal."
8404
+
8405
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:73
8406
+ #: src/Tribe/Aggregator/Page.php:266
8407
+ #: src/admin-views/aggregator/tabs/import-form.php:232
8408
+ msgid "Import"
8409
+ msgstr "Importieren"
8410
+
8411
+ #: common/src/Tribe/Field.php:626
8412
+ msgid "No select options specified"
8413
+ msgstr "Keine Auswahloptionen definiert"
8414
+
8415
+ #: common/src/Tribe/Field.php:568
8416
+ msgid "No checkbox options specified"
8417
+ msgstr "Keine Checkboxoptionen definiert"
8418
+
8419
+ #: common/src/Tribe/Field.php:532
8420
+ msgid "No radio options specified"
8421
+ msgstr "Keine Bewertungsoptionen definiert"
8422
+
8423
+ #: common/src/Tribe/Field.php:231
8424
+ msgid "Invalid field type specified"
8425
+ msgstr "Falsche Feldart definiert"
8426
+
8427
+ #: common/src/Tribe/Credits.php:31
8428
+ msgid "This calendar is powered by The Events Calendar."
8429
+ msgstr "Dieser Kalender wird durch The Events Calendar generiert."
8430
+
8431
+ #: common/src/Tribe/Cost_Utils.php:114
8432
+ msgid "Free"
8433
+ msgstr "kostenlos"
8434
+
8435
+ #: src/Tribe/Cost_Utils.php:120
8436
+ msgctxt "Cost range separator"
8437
+ msgid " – "
8438
+ msgstr " - "
8439
+
8440
+ #: common/src/Tribe/App_Shop.php:50 common/src/Tribe/App_Shop.php:51
8441
+ #: common/src/Tribe/App_Shop.php:72
8442
+ msgid "Event Add-Ons"
8443
+ msgstr "Add-Ons"
8444
+
8445
+ #: src/Tribe/Amalgamator.php:252 src/admin-views/tribe-options-general.php:161
8446
+ msgid "Merge Duplicates"
8447
+ msgstr "Duplikate zusammenführen"
8448
+
8449
+ #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:111
8450
+ #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:122
8451
+ #: src/views/modules/meta/details.php:49
8452
+ msgid "Time:"
8453
+ msgstr "Zeit:"
8454
+
8455
+ #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:68
8456
+ #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:100
8457
+ #: src/views/modules/meta/details.php:81 src/views/modules/meta/details.php:106
8458
+ msgid "Date:"
8459
+ msgstr "Datum:"
8460
+
8461
+ #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:57
8462
+ #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:89
8463
+ #: src/views/modules/meta/details.php:71 src/views/modules/meta/details.php:96
8464
+ msgid "End:"
8465
+ msgstr "Ende:"
8466
+
8467
+ #: src/Tribe/Aggregator/Record/List_Table.php:505
8468
+ #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
8469
+ #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
8470
+ #: src/views/modules/meta/details.php:66 src/views/modules/meta/details.php:91
8471
+ msgid "Start:"
8472
+ msgstr "Beginn:"
8473
+
8474
+ #: src/Tribe/Admin_List.php:253
8475
+ #: src/admin-views/aggregator/tabs/import-form.php:184
8476
+ #: src/admin-views/aggregator/tabs/import-form.php:196
8477
+ msgid "End Date"
8478
+ msgstr "Enddatum"
8479
+
8480
+ #: src/Tribe/Admin_List.php:252
8481
+ #: src/admin-views/aggregator/tabs/import-form.php:182
8482
+ #: src/admin-views/aggregator/tabs/import-form.php:194
8483
+ msgid "Start Date"
8484
+ msgstr "Anfangsdatum"
8485
+
8486
+ #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1775
8487
+ msgid "%s Categories"
8488
+ msgstr "%ss-Kategorien"
8489
+
8490
+ #: src/Tribe/Admin/Timezone_Updater.php:105
8491
+ msgid "A problem stopped the time zone update process from completing. Please refresh and try again."
8492
+ msgstr "Aufgrund eines Problems wurde das Zeitzonen Update gestoppt. Bitte aktualisieren Sie die Seite und versuchen Sie es erneut."
8493
+
8494
+ #: src/Tribe/Admin/Timezone_Updater.php:87
8495
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
8496
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:100
8497
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:210
8498
+ msgid "%d%% complete"
8499
+ msgstr "%d%% abgeschlossen"
8500
+
8501
+ #: src/Tribe/Admin/Timezone_Updater.php:78
8502
+ msgid "Update complete: time zone data has been added to all events in the database."
8503
+ msgstr "Update abgeschlossen: die Zeitzonen Daten wurden zu allen Veranstaltungen hinzugefügt."
8504
+
8505
+ #: src/Tribe/Admin/Timezone_Updater.php:77
8506
+ msgid "Please wait while time zone data is added to your events."
8507
+ msgstr "Bitte warten während die Zeitzonen Daten zu Ihrern Veranstaltungen hinzugefügt werden."
8508
+
8509
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:62
8510
+ #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:211 src/Tribe/Main.php:1761
8511
+ #: src/Tribe/Main.php:4843 src/Tribe/Main.php:4890 src/Tribe/Organizer.php:93
8512
+ #: src/Tribe/Venue.php:112
8513
+ msgid "Edit %s"
8514
+ msgstr "%s bearbeiten"
8515
+
8516
+ #: src/Tribe/Main.php:4827 src/Tribe/Main.php:4884
8517
+ msgid "Use Saved %s:"
8518
+ msgstr "Benutze gespeicherten %s:"
8519
+
8520
+ #: src/Tribe/Main.php:991
8521
+ msgid " ask the site administrator set a different Events URL slug."
8522
+ msgstr "fragen Sie den Seitenadministrator eine andere Seiten Slug (URL) festzulegen."
8523
+
8524
+ #: src/Tribe/Main.php:985
8525
+ msgid "Ask the site administrator to edit the %s slug"
8526
+ msgstr "Fragen Sie den Seitenadministrator den %s Slug (URL) zu bearbeiten"
8527
+
8528
+ #: src/deprecated/Tribe__Events__Activation_Page.php:215
8529
+ msgid "Thanks for Updating The Events Calendar"
8530
+ msgstr "Danke für das Aktualisieren von 'The Events Calendar' (kostenlose Version)"
8531
+
8532
+ #: src/Tribe/Main.php:844 src/Tribe/Main.php:846
8533
+ #: src/deprecated/Tribe__Events__Activation_Page.php:195
8534
+ msgid "Welcome to The Events Calendar"
8535
+ msgstr "Willkommen beim Plugin 'The Events Calendar'"
8536
+
8537
+ #: common/src/Tribe/Admin/Activation_Page.php:92
8538
+ #: src/deprecated/Tribe__Events__Activation_Page.php:49
8539
+ msgid "Return to WordPress Updates"
8540
+ msgstr "Zurück zu WordPress Updates"
8541
+
8542
+ #: common/src/Tribe/Admin/Activation_Page.php:92
8543
+ #: src/deprecated/Tribe__Events__Activation_Page.php:49
8544
+ msgid "Go to WordPress Updates page"
8545
+ msgstr "Gehe zur WordPress Updates Seite"
8546
+
8547
+ #: common/src/Tribe/Admin/Activation_Page.php:84
8548
+ #: src/deprecated/Tribe__Events__Activation_Page.php:41
8549
+ msgid "Return to Plugins page"
8550
+ msgstr "Zurück zur Pluginseite"
8551
+
8552
+ #: common/src/Tribe/Admin/Activation_Page.php:84
8553
+ #: src/deprecated/Tribe__Events__Activation_Page.php:41
8554
+ msgid "Go to plugins page"
8555
+ msgstr "Gehe zur Pluginseite"
8556
+
8557
+ #: common/src/Tribe/Languages/Locations.php:55 src/Tribe/Venue.php:320
8558
+ #: src/functions/template-tags/venue.php:379
8559
+ msgid "United States"
8560
+ msgstr "Vereinigte Staaten"
8561
+
8562
+ #: src/Tribe/Venue.php:386
8563
+ msgid "Unnamed Venue"
8564
+ msgstr "Unbenannter Veranstaltungsort".php:82
8565
+ msgid "Venue Address"
8566
+ msgstr "Adresse"
8567
+
8568
+ #: src/Tribe/Importer/Column_Mapper.php:103
8569
+ #: src/admin-views/create-venue-fields.php:120
8570
+ msgid "Venue Country"
8571
+ msgstr "Land"
8572
+
8573
+ #: src/Tribe/Importer/Column_Mapper.php:101
8574
+ msgid "Venue Name"
8575
+ msgstr "Veranstaltungsort"
8576
+
8577
+ #: src/Tribe/Importer/Column_Mapper.php:85
8578
+ msgid "Event Website"
8579
+ msgstr "Veranstaltungswebsite"
8580
+
8581
+ #: src/Tribe/Importer/Column_Mapper.php:84
8582
+ msgid "Event Tags"
8583
+ msgstr "Veranstaltungsschlagworte"
8584
+
8585
+ #: src/Tribe/Importer/Column_Mapper.php:83
8586
+ msgid "Event Category"
8587
+ msgstr "Kategorie"
8588
 
8589
  #: src/Tribe/Importer/Column_Mapper.php:82
8590
  msgid "Event Currency Position"
8723
  msgid "End:"
8724
  msgstr "Ende:"
8725
 
8726
+ #: src/Tribe/Aggregator/Record/List_Table.php:505
8727
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
8728
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
8729
  #: src/views/modules/meta/details.php:66 src/views/modules/meta/details.php:91
8742
  msgid "Start Date"
8743
  msgstr "Anfangsdatum"
8744
 
8745
+ #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1775
8746
  msgid "%s Categories"
8747
  msgstr "%ss-Kategorien"
8748
 
8753
  #: src/Tribe/Admin/Timezone_Updater.php:87
8754
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
8755
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:100
8756
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:210
8757
  msgid "%d%% complete"
8758
  msgstr "%d%% abgeschlossen"
8759
 
8766
  msgstr "Bitte warten während die Zeitzonen Daten zu Deinen Veranstaltungen hinzugefügt werden."
8767
 
8768
  #: src/Tribe/Admin/Bar/Default_Configurator.php:62
8769
+ #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:211 src/Tribe/Main.php:1761
8770
+ #: src/Tribe/Main.php:4843 src/Tribe/Main.php:4890 src/Tribe/Organizer.php:93
8771
  #: src/Tribe/Venue.php:112
8772
  msgid "Edit %s"
8773
  msgstr "%s bearbeiten"
8774
 
8775
+ #: src/Tribe/Main.php:4827 src/Tribe/Main.php:4884
8776
  msgid "Use Saved %s:"
8777
  msgstr "Benutze gespeicherten %s:"
8778
 
8779
+ #: src/Tribe/Main.php:991
8780
  msgid " ask the site administrator set a different Events URL slug."
8781
  msgstr "Frage den Seitenadministrator eine andere Seiten Titelform (URL) festzulegen."
8782
 
8783
+ #: src/Tribe/Main.php:985
8784
  msgid "Ask the site administrator to edit the %s slug"
8785
  msgstr "Frage den Seitenadministrator die %s Titelform (URL) zu bearbeiten"
8786
 
8788
  msgid "Thanks for Updating The Events Calendar"
8789
  msgstr "Danke für das Aktualisieren von 'The Events Calendar' (kostenlose Version)"
8790
 
8791
+ #: src/Tribe/Main.php:844 src/Tribe/Main.php:846
8792
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
8793
  msgid "Welcome to The Events Calendar"
8794
  msgstr "Willkommen beim Plugin 'The Events Calendar'"
lang/the-events-calendar-el.mo CHANGED
Binary file
lang/the-events-calendar-el.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - The Events Calendar - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2018-07-11 08:15:29+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,13 +11,38 @@ msgstr ""
11
  "Language: el_GR\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: src/views/month/single-day.php:57
15
  msgid "%s for %s"
16
  msgstr ""
17
 
18
  #: src/views/month/loop-grid.php:25 src/views/month/loop-grid.php:28
19
  msgid "Calendar of %s"
20
- msgstr ""
21
 
22
  #: src/views/modules/bar.php:80
23
  msgid "Submit %s search"
@@ -183,91 +208,91 @@ msgstr ""
183
  msgid "Do more with Eventbrite Tickets"
184
  msgstr ""
185
 
186
- #: src/Tribe/Main.php:4513
187
  msgid "Search for %s by month. Please use the format %s."
188
  msgstr ""
189
 
190
- #: src/Tribe/Main.php:4508
191
  msgid "Search for %s by Date. Please use the format %s."
192
  msgstr ""
193
 
194
- #: src/Tribe/Main.php:4476 src/Tribe/Main.php:4477
195
  msgid "2 digit month dot 4 digit year"
196
  msgstr ""
197
 
198
- #: src/Tribe/Main.php:4475
199
  msgid "4 digit year dot 2 digit month"
200
  msgstr ""
201
 
202
- #: src/Tribe/Main.php:4474
203
  msgid "2 digit month hyphen 4 digit year"
204
  msgstr ""
205
 
206
- #: src/Tribe/Main.php:4471 src/Tribe/Main.php:4472 src/Tribe/Main.php:4473
207
  msgid "1 digit month hyphen 4 digit year"
208
  msgstr ""
209
 
210
- #: src/Tribe/Main.php:4468 src/Tribe/Main.php:4470
211
  msgid "2 digit month slash 4 digit year"
212
  msgstr ""
213
 
214
- #: src/Tribe/Main.php:4467 src/Tribe/Main.php:4469
215
  msgid "1 digit month slash 4 digit year"
216
  msgstr ""
217
 
218
- #: src/Tribe/Main.php:4466
219
  msgid "4 digit year hyphen 2 digit month"
220
  msgstr ""
221
 
222
- #: src/Tribe/Main.php:4462
223
  msgid "2 digit day dot 2 digit month dot 4 digit year"
224
  msgstr ""
225
 
226
- #: src/Tribe/Main.php:4461
227
  msgid "2 digit month dot 2 digit day dot 4 digit year"
228
  msgstr ""
229
 
230
- #: src/Tribe/Main.php:4460
231
  msgid "4 digit year dot 2 digit month dot 2 digit day"
232
  msgstr ""
233
 
234
- #: src/Tribe/Main.php:4459
235
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
236
  msgstr ""
237
 
238
- #: src/Tribe/Main.php:4458
239
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
240
  msgstr ""
241
 
242
- #: src/Tribe/Main.php:4457
243
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
244
  msgstr ""
245
 
246
- #: src/Tribe/Main.php:4456
247
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
248
  msgstr ""
249
 
250
- #: src/Tribe/Main.php:4455
251
  msgid "2 digit day slash 2 digit month slash 4 digit year"
252
  msgstr ""
253
 
254
- #: src/Tribe/Main.php:4454
255
  msgid "1 digit day slash 1 digit month slash 4 digit year"
256
  msgstr ""
257
 
258
- #: src/Tribe/Main.php:4453
259
  msgid "2 digit month slash 2 digit day slash 4 digit year"
260
  msgstr ""
261
 
262
- #: src/Tribe/Main.php:4452
263
  msgid "1 digit month slash 1 digit day slash 4 digit year"
264
  msgstr ""
265
 
266
- #: src/Tribe/Main.php:4451
267
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
268
  msgstr ""
269
 
270
- #: src/Tribe/Main.php:4430
271
  msgid "Search for %s by Keyword."
272
  msgstr ""
273
 
@@ -495,7 +520,7 @@ msgid "Search our support help desk"
495
  msgstr ""
496
 
497
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
498
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:369
499
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
500
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
501
  msgid "The requested page was not found."
@@ -509,12 +534,12 @@ msgstr ""
509
  msgid "one week"
510
  msgstr ""
511
 
512
- #: src/Tribe/Aggregator/Record/List_Table.php:570
513
  msgctxt "when the retry will happen, a date"
514
  msgid "retrying at %s"
515
  msgstr ""
516
 
517
- #: src/Tribe/Aggregator/Record/List_Table.php:567
518
  msgctxt "in human readable time"
519
  msgid "retrying in about %s"
520
  msgstr ""
@@ -596,7 +621,7 @@ msgid "Main %s Page"
596
  msgstr ""
597
 
598
  #: common/src/Tribe/Plugins_API.php:71
599
- msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Tickets have QR codes for easy check in at the door."
600
  msgstr ""
601
 
602
  #: src/admin-views/tribe-options-general.php:31
@@ -628,7 +653,7 @@ msgstr ""
628
  msgid "The event with the specified ID is not accessible."
629
  msgstr ""
630
 
631
- #: src/Tribe/Main.php:1813
632
  msgid "%1$s published. %2$sView %3$s"
633
  msgstr ""
634
 
@@ -979,11 +1004,11 @@ msgstr ""
979
  msgid "the event post name"
980
  msgstr ""
981
 
982
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:341
983
  msgid "The event organizer IDs or data"
984
  msgstr ""
985
 
986
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:333
987
  msgid "The event venue ID or data"
988
  msgstr ""
989
 
@@ -1226,32 +1251,32 @@ msgstr ""
1226
  msgid "Returns all the organizers matching the search criteria"
1227
  msgstr ""
1228
 
1229
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:478
1230
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1231
  msgstr ""
1232
 
1233
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:472
1234
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1235
  msgstr ""
1236
 
1237
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:466
1238
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1239
  msgstr ""
1240
 
1241
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:461
1242
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1243
  msgid "The event post status"
1244
  msgstr ""
1245
 
1246
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1247
  msgid "Events should be filtered by their featured status"
1248
  msgstr ""
1249
 
1250
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:446
1251
  msgid "Events should be assigned one of the specified organizer IDs"
1252
  msgstr ""
1253
 
1254
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
1255
  msgid "Events should be assigned one of the specified venue IDs"
1256
  msgstr ""
1257
 
@@ -1345,48 +1370,48 @@ msgstr ""
1345
  msgid "The event status"
1346
  msgstr ""
1347
 
1348
- #: src/Tribe/Linked_Posts.php:1126
1349
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1350
  msgid "Create or Find %s"
1351
  msgstr "Δημιουργία ή Εύρεση %s"
1352
 
1353
- #: src/Tribe/Linked_Posts.php:1117
1354
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1355
  msgid "Find %1$s %2$s"
1356
  msgstr ""
1357
 
1358
- #: src/Tribe/Linked_Posts.php:1108
1359
  msgid "Find a Venue"
1360
  msgstr ""
1361
 
1362
- #: src/Tribe/Linked_Posts.php:1107
1363
  msgid "Create or Find a Venue"
1364
  msgstr "Δημιουργία ή Εύρεση Χώρου Εκδήλωσης"
1365
 
1366
- #: src/Tribe/Linked_Posts.php:1100
1367
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1368
  msgid "Create or Find %s"
1369
  msgstr "Δημιουργία ή Εύρεση %s"
1370
 
1371
- #: src/Tribe/Linked_Posts.php:1091
1372
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1373
  msgid "Find %1$s %2$s"
1374
  msgstr ""
1375
 
1376
- #: src/Tribe/Linked_Posts.php:1080
1377
  msgid "Find an Organizer"
1378
  msgstr ""
1379
 
1380
- #: src/Tribe/Linked_Posts.php:1079
1381
  msgid "Create or Find an Organizer"
1382
  msgstr "Δημιουργία ή Εύρεση Διοργανωτή"
1383
 
1384
- #: src/Tribe/Linked_Posts.php:1072
1385
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1386
  msgid "Create or Find %s"
1387
  msgstr "Δημιουργία ή Εύρεση %s"
1388
 
1389
- #: src/Tribe/Linked_Posts.php:1063
1390
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1391
  msgid "Find %1$s %2$s"
1392
  msgstr ""
@@ -1482,20 +1507,20 @@ msgstr ""
1482
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1483
  msgstr ""
1484
 
1485
- #: src/Tribe/Main.php:997
1486
  msgid "edit Events settings."
1487
  msgstr ""
1488
 
1489
- #: src/Tribe/Main.php:988
1490
  msgid "Edit the %s slug"
1491
  msgstr ""
1492
 
1493
- #: src/Tribe/Linked_Posts.php:1049
1494
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1495
  msgid "an"
1496
  msgstr ""
1497
 
1498
- #: src/Tribe/Linked_Posts.php:1042
1499
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1500
  msgid "a"
1501
  msgstr ""
@@ -1537,10 +1562,6 @@ msgstr ""
1537
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1538
  msgstr ""
1539
 
1540
- #: common/src/Tribe/Plugins_API.php:37
1541
- msgid "Import events from across the web! Event Aggregator makes it easy to run scheduled or manual imports from Facebook, Meetup, Eventbrite, Google Calendar, and iCalendar, along with uploads from CSV and ICS files. You can also import directly from other sites running The Events Calendar thanks to our built-in REST API support."
1542
- msgstr ""
1543
-
1544
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1545
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1546
  msgstr ""
@@ -1585,7 +1606,7 @@ msgstr ""
1585
  msgid "The event WordPress post ID"
1586
  msgstr ""
1587
 
1588
- #: src/Tribe/Aggregator/Record/Abstract.php:362
1589
  msgid "Something went wrong while inserting the record in the database."
1590
  msgstr ""
1591
 
@@ -1603,7 +1624,7 @@ msgstr[1] ""
1603
  msgid "Please refresh the page and try your request again."
1604
  msgstr ""
1605
 
1606
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:28
1607
  msgid "The image WordPress post ID"
1608
  msgstr ""
1609
 
@@ -1663,11 +1684,11 @@ msgstr ""
1663
  msgid "The event last modification date in UTC time"
1664
  msgstr ""
1665
 
1666
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:403
1667
  msgid "Events should start after the specified date"
1668
  msgstr ""
1669
 
1670
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:410
1671
  msgid "Events should start before the specified date"
1672
  msgstr ""
1673
 
@@ -1703,7 +1724,7 @@ msgstr ""
1703
  msgid "the event post ID"
1704
  msgstr ""
1705
 
1706
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:416
1707
  msgid "Events should contain the specified string in the title or description"
1708
  msgstr ""
1709
 
@@ -1999,31 +2020,31 @@ msgid "The requested URL does not have any upcoming and published events matchin
1999
  msgstr ""
2000
 
2001
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2002
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:388
2003
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2004
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2005
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2006
  msgid "The archive page to return"
2007
  msgstr ""
2008
 
2009
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:396
2010
  msgid "The number of events to return on each page"
2011
  msgstr ""
2012
 
2013
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:422
2014
  msgid "Events should be assigned one of the specified categories slugs or IDs"
2015
  msgstr ""
2016
 
2017
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:430
2018
  msgid "Events should be assigned one of the specified tags slugs or IDs"
2019
  msgstr ""
2020
 
2021
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:358
2022
  msgid "Returns all the upcoming events matching the search criteria"
2023
  msgstr ""
2024
 
2025
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:36
2026
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:366
2027
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:64
2028
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:53
2029
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:61
@@ -2238,13 +2259,13 @@ msgstr ""
2238
  msgid "three months"
2239
  msgstr ""
2240
 
2241
- #: src/Tribe/Aggregator/Tabs/New.php:373
2242
  msgid "%1$d new event tag was created."
2243
  msgid_plural "%1$d new event tags were created."
2244
  msgstr[0] ""
2245
  msgstr[1] ""
2246
 
2247
- #: src/Tribe/Aggregator/Tabs/New.php:377
2248
  msgid "View your event tags"
2249
  msgstr ""
2250
 
@@ -2303,7 +2324,7 @@ msgstr "%1$s για %2$s"
2303
  msgid "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2304
  msgstr ""
2305
 
2306
- #: src/Tribe/Main.php:765
2307
  msgctxt "all events slug"
2308
  msgid "all"
2309
  msgstr "όλα"
@@ -2344,7 +2365,7 @@ msgstr ""
2344
  msgid "The WordPress term ID"
2345
  msgstr ""
2346
 
2347
- #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:36
2348
  msgid "The link to the image in the specified size on the site"
2349
  msgstr ""
2350
 
@@ -2360,19 +2381,19 @@ msgstr ""
2360
  msgid "The image width in pixels in the specified size"
2361
  msgstr ""
2362
 
2363
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:44
2364
  msgid "The details about each size available for the image"
2365
  msgstr ""
2366
 
2367
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:40
2368
  msgid "The image natural height in pixels"
2369
  msgstr ""
2370
 
2371
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:36
2372
  msgid "The image natural width in pixels"
2373
  msgstr ""
2374
 
2375
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:32
2376
  msgid "The image file extension"
2377
  msgstr ""
2378
 
@@ -2380,7 +2401,7 @@ msgstr ""
2380
  msgid "The venue WordPress post ID"
2381
  msgstr ""
2382
 
2383
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:24
2384
  msgid "The URL to the full size version of the image"
2385
  msgstr ""
2386
 
@@ -2420,7 +2441,7 @@ msgstr ""
2420
  msgid "The cost currency symbol"
2421
  msgstr ""
2422
 
2423
- #: src/Tribe/Main.php:4434
2424
  msgid "Keyword"
2425
  msgstr "Λέξη"
2426
 
@@ -2495,12 +2516,12 @@ msgstr ""
2495
  msgid "Export Events"
2496
  msgstr ""
2497
 
2498
- #: src/Tribe/Main.php:764
2499
  msgctxt "featured events slug"
2500
  msgid "featured"
2501
  msgstr ""
2502
 
2503
- #: src/Tribe/Linked_Posts.php:1005
2504
  msgid "Create: <b><%= term %></b>"
2505
  msgstr ""
2506
 
@@ -2649,175 +2670,177 @@ msgstr ""
2649
  msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2650
  msgstr ""
2651
 
2652
- #: src/Tribe/Asset/Dynamic.php:77
2653
  msgid "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2654
  msgstr "Η εκδήλωση διαρκεί όλη την ημέρα αρχίζοντας από %%startdatenoyear%% και τελειώνει %%enddatewithyear%%."
2655
 
2656
- #: src/Tribe/Asset/Dynamic.php:76
2657
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2658
  msgstr ""
2659
 
2660
- #: src/Tribe/Asset/Dynamic.php:75
2661
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2662
  msgstr ""
2663
 
2664
- #: src/Tribe/Asset/Dynamic.php:74
2665
  msgid "This event is all day on %%startdatewithyear%%."
2666
  msgstr ""
2667
 
2668
- #: src/Tribe/Asset/Dynamic.php:73
2669
  msgid "This event is at %%starttime%% on %%startdatewithyear%%."
2670
  msgstr ""
2671
 
2672
- #: src/Tribe/Asset/Dynamic.php:72
2673
  msgid "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2674
  msgstr ""
2675
 
2676
- #: src/Tribe/Asset/Dynamic.php:69
2677
  msgid "Dec"
2678
  msgstr "Δεκ"
2679
 
2680
- #: src/Tribe/Asset/Dynamic.php:68
2681
  msgid "Nov"
2682
  msgstr "Νοέ"
2683
 
2684
- #: src/Tribe/Asset/Dynamic.php:67
2685
  msgid "Oct"
2686
  msgstr "Οκτ"
2687
 
2688
- #: src/Tribe/Asset/Dynamic.php:66
2689
  msgid "Sep"
2690
  msgstr "Σεπ"
2691
 
2692
- #: src/Tribe/Asset/Dynamic.php:65
2693
  msgid "Aug"
2694
  msgstr "Αύγ"
2695
 
2696
- #: src/Tribe/Asset/Dynamic.php:64
2697
  msgid "Jul"
2698
  msgstr "Ιούλ"
2699
 
2700
- #: src/Tribe/Asset/Dynamic.php:63
2701
  msgid "Jun"
2702
  msgstr "Ιούν"
2703
 
2704
- #: src/Tribe/Asset/Dynamic.php:61
2705
  msgid "Apr"
2706
  msgstr "Απρ"
2707
 
2708
- #: src/Tribe/Asset/Dynamic.php:60
2709
  msgid "Mar"
2710
  msgstr "Μάρ"
2711
 
2712
- #: src/Tribe/Asset/Dynamic.php:59
2713
  msgid "Feb"
2714
  msgstr "Φεβ"
2715
 
2716
- #: src/Tribe/Asset/Dynamic.php:58
2717
  msgid "Jan"
2718
  msgstr "Ιαν"
2719
 
2720
- #: src/Tribe/Asset/Dynamic.php:55
2721
  msgid "December"
2722
  msgstr "Δεκέμβριος"
2723
 
2724
- #: src/Tribe/Asset/Dynamic.php:54
2725
  msgid "November"
2726
  msgstr "Νοέμβριος"
2727
 
2728
- #: src/Tribe/Asset/Dynamic.php:53
2729
  msgid "October"
2730
  msgstr "Οκτώβριος"
2731
 
2732
- #: src/Tribe/Asset/Dynamic.php:52
2733
  msgid "September"
2734
  msgstr "Σεπτέμβριος"
2735
 
2736
- #: src/Tribe/Asset/Dynamic.php:51
2737
  msgid "August"
2738
  msgstr "Αύγουστος"
2739
 
2740
- #: src/Tribe/Asset/Dynamic.php:50
2741
  msgid "July"
2742
  msgstr "Ιούλιος"
2743
 
2744
- #: src/Tribe/Asset/Dynamic.php:49
2745
  msgid "June"
2746
  msgstr "Ιούνιος"
2747
 
2748
- #: src/Tribe/Asset/Dynamic.php:48 src/Tribe/Asset/Dynamic.php:62
 
 
2749
  msgid "May"
2750
  msgstr "Μάιος"
2751
 
2752
- #: src/Tribe/Asset/Dynamic.php:47
2753
  msgid "April"
2754
  msgstr "Απρίλιος"
2755
 
2756
- #: src/Tribe/Asset/Dynamic.php:46
2757
  msgid "March"
2758
  msgstr "Μάρτιος"
2759
 
2760
- #: src/Tribe/Asset/Dynamic.php:45
2761
  msgid "February"
2762
  msgstr "Φεβρουάριος"
2763
 
2764
- #: src/Tribe/Asset/Dynamic.php:44
2765
  msgid "January"
2766
  msgstr "Ιανουάριος"
2767
 
2768
- #: src/Tribe/Asset/Dynamic.php:41
2769
  msgid "Sat"
2770
  msgstr "Σάβ"
2771
 
2772
- #: src/Tribe/Asset/Dynamic.php:40
2773
  msgid "Fri"
2774
  msgstr "Παρ"
2775
 
2776
- #: src/Tribe/Asset/Dynamic.php:39
2777
  msgid "Thu"
2778
  msgstr "Πέμ"
2779
 
2780
- #: src/Tribe/Asset/Dynamic.php:38
2781
  msgid "Wed"
2782
  msgstr "Τετ"
2783
 
2784
- #: src/Tribe/Asset/Dynamic.php:37
2785
  msgid "Tue"
2786
  msgstr "Τρί"
2787
 
2788
- #: src/Tribe/Asset/Dynamic.php:36
2789
  msgid "Mon"
2790
  msgstr "Δευ"
2791
 
2792
- #: src/Tribe/Asset/Dynamic.php:35
2793
  msgid "Sun"
2794
  msgstr "Κυρ"
2795
 
2796
- #: src/Tribe/Asset/Dynamic.php:32
2797
  msgid "Saturday"
2798
  msgstr "Σάββατο"
2799
 
2800
- #: src/Tribe/Asset/Dynamic.php:31
2801
  msgid "Friday"
2802
  msgstr "Παρασκευή"
2803
 
2804
- #: src/Tribe/Asset/Dynamic.php:30
2805
  msgid "Thursday"
2806
  msgstr "Πέμπτη"
2807
 
2808
- #: src/Tribe/Asset/Dynamic.php:29
2809
  msgid "Wednesday"
2810
  msgstr "Τετάρτη"
2811
 
2812
- #: src/Tribe/Asset/Dynamic.php:28
2813
  msgid "Tuesday"
2814
  msgstr "Τρίτη"
2815
 
2816
- #: src/Tribe/Asset/Dynamic.php:27
2817
  msgid "Monday"
2818
  msgstr "Δευτέρα"
2819
 
2820
- #: src/Tribe/Asset/Dynamic.php:26
2821
  msgid "Sunday"
2822
  msgstr "Κυριακή"
2823
 
@@ -2898,11 +2921,11 @@ msgstr ""
2898
  msgid "Unknown service message"
2899
  msgstr ""
2900
 
2901
- #: src/Tribe/Aggregator/Record/List_Table.php:533
2902
  msgid "Unknown"
2903
  msgstr ""
2904
 
2905
- #: src/Tribe/Aggregator/Record/Abstract.php:1205
2906
  msgid "When this import was last scheduled to run, the daily limit for your Event Aggregator license had already been reached."
2907
  msgstr ""
2908
 
@@ -3639,7 +3662,7 @@ msgctxt "Abbreviation for the miles unit of measure"
3639
  msgid "mi"
3640
  msgstr ""
3641
 
3642
- #: src/Tribe/Main.php:983
3643
  msgid "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3644
  msgstr ""
3645
 
@@ -3864,133 +3887,133 @@ msgstr ""
3864
  msgid "Scheduled Imports"
3865
  msgstr ""
3866
 
3867
- #: src/Tribe/Aggregator/Tabs/New.php:603
3868
  msgid "Renew your Event Aggregator license"
3869
  msgstr ""
3870
 
3871
- #: src/Tribe/Aggregator/Tabs/New.php:600
3872
  msgid "Renew your license in order to import events from Facebook, iCalendar, Google, or Meetup."
3873
  msgstr ""
3874
 
3875
- #: src/Tribe/Aggregator/Tabs/New.php:599
3876
  msgid "Your Event Aggregator license is expired."
3877
  msgstr ""
3878
 
3879
- #: src/Tribe/Aggregator/Tabs/New.php:551
3880
  msgid "Learn More"
3881
  msgstr ""
3882
 
3883
- #: src/Tribe/Aggregator/Tabs/New.php:546 src/Tribe/Aggregator/Tabs/New.php:553
3884
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:19
3885
  msgid "opens in a new window"
3886
  msgstr ""
3887
 
3888
- #: src/Tribe/Aggregator/Tabs/New.php:544
3889
  msgid "Buy It Now"
3890
  msgstr ""
3891
 
3892
- #: src/Tribe/Aggregator/Tabs/New.php:541
3893
  msgid "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3894
  msgstr ""
3895
 
3896
- #: src/Tribe/Aggregator/Tabs/New.php:539
3897
  msgid "Import Using Event Aggregator"
3898
  msgstr ""
3899
 
3900
- #: src/Tribe/Aggregator/Tabs/New.php:452
3901
  msgid "Unable to save credentials"
3902
  msgstr ""
3903
 
3904
- #: src/Tribe/Aggregator/Tabs/New.php:445
3905
  msgid "Credentials have been saved"
3906
  msgstr ""
3907
 
3908
- #: src/Tribe/Aggregator/Tabs/New.php:436
3909
  msgid "The Meetup API key is required."
3910
  msgstr ""
3911
 
3912
- #: src/Tribe/Aggregator/Tabs/New.php:427
3913
  msgid "Invalid credential save nonce"
3914
  msgstr ""
3915
 
3916
- #: src/Tribe/Aggregator/Tabs/New.php:417
3917
  msgid "Invalid credential save request"
3918
  msgstr ""
3919
 
3920
- #: src/Tribe/Aggregator/Tabs/New.php:405
3921
  msgid "View your scheduled imports."
3922
  msgstr ""
3923
 
3924
- #: src/Tribe/Aggregator/Tabs/New.php:401
3925
  msgid "The next import is scheduled for %1$s."
3926
  msgstr ""
3927
 
3928
- #: src/Tribe/Aggregator/Tabs/New.php:394
3929
  msgctxt "separator between date and time"
3930
  msgid " at "
3931
  msgstr ""
3932
 
3933
- #: src/Tribe/Aggregator/Tabs/New.php:390
3934
  msgid "Your scheduled import was saved and the first import is complete!"
3935
  msgstr ""
3936
 
3937
- #: src/Tribe/Aggregator/Tabs/New.php:365
3938
  msgid "View your event categories"
3939
  msgstr ""
3940
 
3941
- #: src/Tribe/Aggregator/Tabs/New.php:361
3942
  msgid "%1$d new event category was created."
3943
  msgid_plural "%1$d new event categories were created."
3944
  msgstr[0] ""
3945
  msgstr[1] ""
3946
 
3947
- #: src/Tribe/Aggregator/Tabs/New.php:352
3948
  msgid "View your event organizers"
3949
  msgstr ""
3950
 
3951
- #: src/Tribe/Aggregator/Tabs/New.php:348
3952
  msgid "%1$d new organizer was imported."
3953
  msgid_plural "%1$d new organizers were imported."
3954
  msgstr[0] ""
3955
  msgstr[1] ""
3956
 
3957
- #: src/Tribe/Aggregator/Tabs/New.php:340
3958
  msgid "View your event venues"
3959
  msgstr ""
3960
 
3961
- #: src/Tribe/Aggregator/Tabs/New.php:336
3962
  msgid "%1$d new venue was imported."
3963
  msgid_plural "%1$d new venues were imported."
3964
  msgstr[0] ""
3965
  msgstr[1] ""
3966
 
3967
- #: src/Tribe/Aggregator/Tabs/New.php:326
3968
  msgid "View all %s"
3969
  msgstr "Δείτε όλες τις %s"
3970
 
3971
- #: src/Tribe/Aggregator/Tabs/New.php:318
3972
  msgid "No %1$s were imported or updated."
3973
  msgstr ""
3974
 
3975
- #: src/Tribe/Aggregator/Tabs/New.php:311
3976
  msgid "%1$d new image was imported."
3977
  msgid_plural "%1$d new images were imported."
3978
  msgstr[0] ""
3979
  msgstr[1] ""
3980
 
3981
- #: src/Tribe/Aggregator/Tabs/New.php:302
3982
  msgid "%1$d already-imported %2$s was skipped."
3983
  msgid_plural "%1$d already-imported %2$s were skipped."
3984
  msgstr[0] ""
3985
  msgstr[1] ""
3986
 
3987
- #: src/Tribe/Aggregator/Tabs/New.php:291
3988
  msgid "%1$d existing %2$s was updated."
3989
  msgid_plural "%1$d existing %2$s were updated."
3990
  msgstr[0] ""
3991
  msgstr[1] ""
3992
 
3993
- #: src/Tribe/Aggregator/Tabs/New.php:279
3994
  msgid "%1$d new %2$s was imported."
3995
  msgid_plural "%1$d new %2$s were imported."
3996
  msgstr[0] ""
@@ -4254,7 +4277,7 @@ msgstr ""
4254
  msgid "Events Aggregator Record"
4255
  msgstr ""
4256
 
4257
- #: src/Tribe/Aggregator/Record/Queue_Realtime.php:178
4258
  msgid "Unable to continue inserting data. Please reload this page to continue/try again."
4259
  msgstr ""
4260
 
@@ -4274,87 +4297,87 @@ msgstr ""
4274
  msgid "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4275
  msgstr ""
4276
 
4277
- #: src/Tribe/Aggregator/Record/Queue_Processor.php:234
4278
  msgid "Could not process queue for Import Record %1$d: %2$s"
4279
  msgstr ""
4280
 
4281
- #: src/Tribe/Aggregator/Record/List_Table.php:657
4282
  msgid "Select %s"
4283
  msgstr "Επιλογή %s"
4284
 
4285
- #: src/Tribe/Aggregator/Record/List_Table.php:622
4286
- #: src/Tribe/Aggregator/Record/List_Table.php:631
4287
- #: src/Tribe/Aggregator/Record/List_Table.php:639
4288
  msgid "updated"
4289
  msgstr ""
4290
 
4291
- #: src/Tribe/Aggregator/Record/List_Table.php:620
4292
- #: src/Tribe/Aggregator/Record/List_Table.php:628
4293
- #: src/Tribe/Aggregator/Record/List_Table.php:636
4294
  msgid "new"
4295
  msgstr ""
4296
 
4297
- #: src/Tribe/Aggregator/Record/List_Table.php:617
4298
  msgid "Latest Import:"
4299
  msgstr ""
4300
 
4301
- #: src/Tribe/Aggregator/Record/List_Table.php:615
4302
  msgid "all time"
4303
  msgstr ""
4304
 
4305
- #: src/Tribe/Aggregator/Record/List_Table.php:589
4306
  msgid "One Time"
4307
  msgstr ""
4308
 
4309
- #: src/Tribe/Aggregator/Record/List_Table.php:586
4310
  msgid "Invalid Frequency"
4311
  msgstr ""
4312
 
4313
- #: src/Tribe/Aggregator/Record/List_Table.php:556 src/Tribe/Aggregator.php:426
4314
  #: src/Tribe/Ignored_Events.php:357
4315
  #: src/admin-views/tribe-options-addons-api.php:36
4316
  msgctxt "in human readable time"
4317
  msgid "in about %s"
4318
  msgstr ""
4319
 
4320
- #: src/Tribe/Aggregator/Record/List_Table.php:554 src/Tribe/Aggregator.php:424
4321
  #: src/Tribe/Ignored_Events.php:355
4322
  #: src/admin-views/tribe-options-addons-api.php:34
4323
  msgctxt "human readable time ago"
4324
  msgid "about %s ago"
4325
  msgstr ""
4326
 
4327
- #: src/Tribe/Aggregator/Record/List_Table.php:506
4328
  msgid "Radius:"
4329
  msgstr ""
4330
 
4331
- #: src/Tribe/Aggregator/Record/List_Table.php:489
4332
  msgid "Keywords:"
4333
  msgstr "Λέξεις-κλειδιά:"
4334
 
4335
- #: src/Tribe/Aggregator/Record/List_Table.php:476
4336
  #: src/Tribe/Ignored_Events.php:337
4337
  msgctxt "record via origin"
4338
  msgid "via "
4339
  msgstr ""
4340
 
4341
- #: src/Tribe/Aggregator/Record/List_Table.php:433
4342
  msgid "Import preview"
4343
  msgstr ""
4344
 
4345
- #: src/Tribe/Aggregator/Record/List_Table.php:429
4346
  msgid "Import pending"
4347
  msgstr ""
4348
 
4349
- #: src/Tribe/Aggregator/Record/List_Table.php:425
4350
  msgid "Import schedule"
4351
  msgstr ""
4352
 
4353
- #: src/Tribe/Aggregator/Record/List_Table.php:413
4354
  msgid "Import failed"
4355
  msgstr ""
4356
 
4357
- #: src/Tribe/Aggregator/Record/List_Table.php:409
4358
  msgid "Import completed"
4359
  msgstr ""
4360
 
@@ -4439,11 +4462,11 @@ msgstr ""
4439
  msgid "Eventbrite"
4440
  msgstr ""
4441
 
4442
- #: src/Tribe/Aggregator/Record/Abstract.php:1148
4443
  msgid "Deleted Attachment: %d"
4444
  msgstr ""
4445
 
4446
- #: src/Tribe/Aggregator/Record/Abstract.php:496
4447
  msgid "Record: "
4448
  msgstr ""
4449
 
@@ -4478,7 +4501,7 @@ msgid "Hide Filters"
4478
  msgstr ""
4479
 
4480
  #: src/Tribe/Aggregator/Page.php:96
4481
- #: src/Tribe/Aggregator/Record/List_Table.php:485
4482
  msgid "View Filters"
4483
  msgstr ""
4484
 
@@ -4836,7 +4859,7 @@ msgid "There is an update for %s. You'll need to %scheck your license%s to have
4836
  msgstr ""
4837
 
4838
  #: common/src/Tribe/PUE/Checker.php:961 common/src/Tribe/PUE/Notices.php:285
4839
- #: src/Tribe/Aggregator/Record/Abstract.php:1163
4840
  msgid " (opens in a new window)"
4841
  msgstr ""
4842
 
@@ -5137,7 +5160,7 @@ msgstr "Νέα ή αναβαθμησμένα πρότυπα με αυτή την
5137
  msgid "No notable changes detected"
5138
  msgstr "Δέν βρέθηκαν αλλαγές"
5139
 
5140
- #: src/Tribe/Main.php:2735
5141
  msgid " (View Full %1$s Description Here: %2$s)"
5142
  msgstr " (Δείτε την πλήρη %1$s περιγραφή εδώ: %2$s)"
5143
 
@@ -5185,147 +5208,147 @@ msgstr "Το όνομα %s δεν μπορεί να παραμείνει κεν
5185
  msgid "Keep the Core Plugin %sFREE%s!"
5186
  msgstr ""
5187
 
5188
- #: src/Tribe/Template_Factory.php:300
5189
  msgid "No results were found for %1$s in or near %2$s."
5190
  msgstr ""
5191
 
5192
- #: src/Tribe/Template_Factory.php:298
5193
  msgid "There were no results found for %s."
5194
  msgstr "Δεν βρέθηκαν αποτελέσματα για %s."
5195
 
5196
- #: src/Tribe/Template/Month.php:456
5197
  msgid "There were no results found for %s this month. Try searching next month."
5198
  msgstr "Δεν βρέθηκαν αποτελέσματα για %s αυτόν τον μήνα. Δοκιμάστε τον επόμενο."
5199
 
5200
- #: src/Tribe/Template/Day.php:153
5201
  msgid "No %1$s scheduled for %2$s. Please try another day."
5202
  msgstr ""
5203
 
5204
- #: src/Tribe/Main.php:4254
5205
  msgid "Check out the %savailable add-ons%s."
5206
  msgstr ""
5207
 
5208
- #: src/Tribe/Main.php:1923
5209
  msgid "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5210
  msgstr ""
5211
 
5212
- #: src/Tribe/Main.php:1854 src/Tribe/Main.php:1874
5213
  msgid "%1$s scheduled for: %2$s."
5214
  msgstr ""
5215
 
5216
- #: src/Tribe/Main.php:1835
5217
  msgid "%1$s draft updated. %2$sPreview %3$s"
5218
  msgstr ""
5219
 
5220
- #: src/Tribe/Main.php:1826
5221
  msgid "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5222
  msgstr ""
5223
 
5224
- #: src/Tribe/Main.php:1820
5225
  msgid "%1$s submitted. %2$sPreview %3$s"
5226
  msgstr ""
5227
 
5228
- #: src/Tribe/Main.php:1802
5229
  msgid "%1$s updated. %2$sView %1$s%3$s"
5230
  msgstr ""
5231
 
5232
- #: src/Tribe/Main.php:1477
5233
  msgid "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5234
  msgstr ""
5235
 
5236
- #: src/Tribe/Main.php:1112
5237
  msgid "If you have a valid license for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5238
  msgstr ""
5239
 
5240
- #: src/Tribe/Main.php:1111
5241
  msgid "post a thread"
5242
  msgstr ""
5243
 
5244
- #: src/Tribe/Main.php:1107
5245
  msgid "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays."
5246
  msgstr ""
5247
 
5248
- #: src/Tribe/Main.php:1103
5249
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5250
  msgstr ""
5251
 
5252
- #: src/Tribe/Main.php:1102
5253
  msgid "open-source forum on WordPress.org"
5254
  msgstr ""
5255
 
5256
- #: src/Tribe/Main.php:1098
5257
  msgid "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays"
5258
  msgstr ""
5259
 
5260
- #: src/Tribe/Main.php:1097 src/Tribe/Main.php:1105
5261
  msgid "premium support on our website"
5262
  msgstr ""
5263
 
5264
- #: src/Tribe/Main.php:1095
5265
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5266
  msgstr ""
5267
 
5268
- #: src/Tribe/Main.php:1094
5269
  msgid "Events Tickets"
5270
  msgstr "Εισιτήρια εκδηλώσεων"
5271
 
5272
- #: src/Tribe/Main.php:1079
5273
  msgid "Customizing the Events plugins"
5274
  msgstr ""
5275
 
5276
- #: src/Tribe/Main.php:1079
5277
  msgid "%s: Code and guides for customizing your calendar in useful and interesting ways."
5278
  msgstr ""
5279
 
5280
- #: src/Tribe/Main.php:1077
5281
  msgid "Troubleshooting common problems"
5282
  msgstr ""
5283
 
5284
- #: src/Tribe/Main.php:1077
5285
  msgid "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5286
  msgstr ""
5287
 
5288
- #: src/Tribe/Main.php:1075
5289
  msgid "Using stylesheets and page templates"
5290
  msgstr ""
5291
 
5292
- #: src/Tribe/Main.php:1075
5293
  msgid "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5294
  msgstr ""
5295
 
5296
- #: src/Tribe/Main.php:1073
5297
  msgid "Themer’s Guide"
5298
  msgstr ""
5299
 
5300
- #: src/Tribe/Main.php:1073
5301
  msgid "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5302
  msgstr ""
5303
 
5304
- #: src/Tribe/Main.php:1071
5305
  msgid "Features overview"
5306
  msgstr ""
5307
 
5308
- #: src/Tribe/Main.php:1071
5309
  msgid "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5310
  msgstr ""
5311
 
5312
- #: src/Tribe/Main.php:1069
5313
  msgid "Settings overview"
5314
  msgstr ""
5315
 
5316
- #: src/Tribe/Main.php:1069
5317
  msgid "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5318
  msgstr ""
5319
 
5320
- #: src/Tribe/Main.php:1066
5321
  msgid "Support for The Events Calendar"
5322
  msgstr ""
5323
 
5324
- #: src/Tribe/Main.php:1055
5325
  msgid "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5326
  msgstr ""
5327
 
5328
- #: src/Tribe/Main.php:1053
5329
  msgid "New User Primer"
5330
  msgstr ""
5331
 
@@ -5348,7 +5371,7 @@ msgstr ""
5348
  msgid "CSV Import Settings"
5349
  msgstr ""
5350
 
5351
- #: src/Tribe/Asset/Bootstrap_Datepicker.php:26
5352
  msgid "Clear"
5353
  msgstr "Καθαρισμός"
5354
 
@@ -5360,7 +5383,7 @@ msgstr ""
5360
  msgid "Create New %s"
5361
  msgstr ""
5362
 
5363
- #: src/Tribe/Organizer.php:371
5364
  msgid "Unnamed %s"
5365
  msgstr ""
5366
 
@@ -5496,7 +5519,7 @@ msgstr "Εκδηλώσεις Facebook"
5496
  #: common/src/Tribe/Admin/Help_Page.php:203
5497
  #: common/src/Tribe/Plugins_API.php:111
5498
  msgid "Eventbrite Tickets"
5499
- msgstr ""
5500
 
5501
  #: common/src/Tribe/Admin/Help_Page.php:170
5502
  msgid " and "
@@ -5534,7 +5557,7 @@ msgstr "Ολοκληρώθηκε!"
5534
 
5535
  #: src/Tribe/Organizer.php:198
5536
  msgid "organizers"
5537
- msgstr ""
5538
 
5539
  #: src/admin-views/aggregator/origins/gcal.php:117
5540
  #: src/admin-views/aggregator/origins/ical.php:111
@@ -5548,7 +5571,7 @@ msgstr "Άκυρο"
5548
  msgid "%s must be a positive number or percent."
5549
  msgstr ""
5550
 
5551
- #: src/Tribe/Main.php:1000
5552
  msgid "%1$s or %2$s"
5553
  msgstr ""
5554
 
@@ -5570,7 +5593,7 @@ msgstr "Δεν υπάρχουν προσεχείς %s αυτήν τη στιγ
5570
 
5571
  #: src/views/widgets/list-widget.php:112
5572
  msgid "View All %s"
5573
- msgstr "Εμφάνιση όλων των %s"
5574
 
5575
  #: src/views/single-event.php:46 src/views/single-event.php:80
5576
  msgid "%s Navigation"
@@ -5605,7 +5628,7 @@ msgstr "Μάθετε περισσότερα"
5605
  msgid "Day Navigation"
5606
  msgstr "Πλοήγηση Ημέρας"
5607
 
5608
- #: src/Tribe/Aggregator/Tabs/New.php:388
5609
  msgid "Import complete!"
5610
  msgstr "Εισαγωγή ολοκληρώθηκε!"
5611
 
@@ -5847,7 +5870,7 @@ msgid "More..."
5847
  msgstr "Περισσότερα…"
5848
 
5849
  #: common/src/Tribe/Admin/Help_Page.php:194 common/src/Tribe/Plugins_API.php:43
5850
- #: src/Tribe/Main.php:1106
5851
  msgid "Events Calendar PRO"
5852
  msgstr "The Events Calendar PRO"
5853
 
@@ -6286,7 +6309,7 @@ msgstr "URL:"
6286
  msgid "%s Website"
6287
  msgstr "Σελίδα %s"
6288
 
6289
- #: src/Tribe/Aggregator/Record/List_Table.php:502
6290
  msgid "Location:"
6291
  msgstr "Τοποθεσία:"
6292
 
@@ -7691,15 +7714,15 @@ msgstr "Οι παρακάμψεις λόγω template θα πρέπει να μ
7691
  msgid "Template overrides should be moved to the correct subdirectory: %s"
7692
  msgstr "Οι παρακάμψεις λόγω template θα πρέπει να μετακινηθούν στον σωστό υποκατάλογο: %s"
7693
 
7694
- #: src/Tribe/Template_Factory.php:306
7695
  msgid "No previous %s "
7696
  msgstr "Καμία Προηγούμενη %s "
7697
 
7698
- #: src/Tribe/Template_Factory.php:304 src/Tribe/Template_Factory.php:309
7699
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7700
  msgstr "Δεν βρέθηκαν %1$s στις %2$s. Δοκιμάστε να δείτε το πλήρες ημερολόγιο για μια πλήρη λίστα των %3$s."
7701
 
7702
- #: src/Tribe/Template_Factory.php:302
7703
  msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7704
  msgstr "Δεν υπάρχουν %1$s για %2$s. Δοκιμάστε να δείτε όλες τις επερχόμενες %3$s ή δείτε το πλήρες ημερολόγιο. "
7705
 
@@ -7707,28 +7730,28 @@ msgstr "Δεν υπάρχουν %1$s για %2$s. Δοκιμάστε να δεί
7707
  msgid "This %s has passed."
7708
  msgstr "Αυτή η %s έχει τελειώσει."
7709
 
7710
- #: src/Tribe/Template/Month.php:953
7711
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7712
  msgstr "Η επιλεγμένη ημέρα \"%s\" δεν ήταν έγκυρη &ndash; εμφάνιση τρέχοντος μήνα"
7713
 
7714
- #: src/Tribe/Template/Month.php:462 src/Tribe/Template_Factory.php:311
7715
  msgid "There were no results found."
7716
  msgstr "Δεν βρέθηκαν αποτελέσματα."
7717
 
7718
- #: src/Tribe/Template/Month.php:460
7719
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7720
  msgstr "Δεν υπάρχουν %1$s προγραμματισμένες για %2$s. Δοκιμάστε να δείτε όλο το ημερολόγιο για μια πλήρη λίστα των δραστηριοτήτων."
7721
 
7722
- #: src/Tribe/Template/Day.php:151
7723
  msgid "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7724
  msgstr "Δεν βρέθηκαν %1$s για %2$s προγραμματισμένες για <strong>%3$s</strong>. Δοκιμάστε μια άλλη μέρα."
7725
 
7726
- #: src/Tribe/Template/Day.php:117 src/Tribe/Template/Day.php:133
7727
  msgid "Ongoing"
7728
  msgstr "Συνεχίζεται"
7729
 
7730
- #: src/Tribe/Aggregator/Page.php:82 src/Tribe/Template/Day.php:114
7731
- #: src/Tribe/Template/Day.php:130
7732
  msgid "All Day"
7733
  msgstr "Ολοήμερη Εκδήλωση"
7734
 
@@ -7823,50 +7846,50 @@ msgstr "Κλειδί Άδειας"
7823
  msgid "Error"
7824
  msgstr "Σφάλμα"
7825
 
7826
- #: src/Tribe/Main.php:4597
7827
  msgid "Once Every 30 Mins"
7828
  msgstr "Κάθε 30 λεπτά"
7829
 
7830
- #: src/Tribe/Main.php:4517
7831
  msgid "Day Of"
7832
  msgstr "Ημέρα Της"
7833
 
7834
- #: src/Tribe/Main.php:4515
7835
  msgid "%s From"
7836
  msgstr "%s Από"
7837
 
7838
- #: src/Tribe/Main.php:4511
7839
  msgid "%s In"
7840
  msgstr "%s στις"
7841
 
7842
- #: src/Tribe/Main.php:4506 src/Tribe/Main.php:4531
7843
  #: src/admin-views/aggregator/origins/refine.php:7
7844
  msgid "Date"
7845
  msgstr "Ημερομηνία"
7846
 
7847
- #: src/Tribe/Main.php:4433
7848
  msgid "Search"
7849
  msgstr "Αναζήτηση"
7850
 
7851
- #: src/Tribe/Main.php:4407 src/admin-views/aggregator/fields/schedule.php:44
7852
  #: src/admin-views/aggregator/fields/schedule.php:62
7853
  msgid "Day"
7854
  msgstr "Ημέρα"
7855
 
7856
- #: src/Tribe/Main.php:4390
7857
  msgid "Month"
7858
  msgstr "Μήνας"
7859
 
7860
- #: src/Tribe/Main.php:4372
7861
  msgid "List"
7862
  msgstr "Λίστα"
7863
 
7864
- #: src/Tribe/Main.php:4356
7865
  msgid "Calendar"
7866
  msgstr "Ημερολόγιο"
7867
 
7868
  #: common/src/Tribe/Settings.php:254
7869
- #: src/Tribe/Admin/Bar/Default_Configurator.php:89 src/Tribe/Main.php:4355
7870
  msgid "Settings"
7871
  msgstr "Ρυθμίσεις"
7872
 
@@ -7880,7 +7903,7 @@ msgstr "CSV"
7880
  msgid "Add %s"
7881
  msgstr "Προσθήκη %s"
7882
 
7883
- #: src/Tribe/Admin/Bar/Default_Configurator.php:45 src/Tribe/Main.php:4306
7884
  msgid "View Calendar"
7885
  msgstr "Προβολή Ημερολογίου"
7886
 
@@ -7888,53 +7911,53 @@ msgstr "Προβολή Ημερολογίου"
7888
  msgid "%s"
7889
  msgstr "%s"
7890
 
7891
- #: src/Tribe/Main.php:4253
7892
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7893
  msgstr "Ψάχνετε για πρόσθετη λειτουργικότητα όπως επαναλαμβανόμενες εκδηλώσεις, πωλήσεις εισιτηρίων, δημοσίως καταχωρημένες εκδηλώσεις, νέες εμφανίσεις και άλλα;"
7894
 
7895
- #: src/Tribe/Main.php:4248
7896
  msgid "Additional Functionality"
7897
  msgstr "Πρόσθετη Λειτουργικότητα"
7898
 
7899
- #: src/Tribe/Main.php:4203
7900
  msgid "News from Modern Tribe"
7901
  msgstr "Νέα από την Modern Tribe"
7902
 
7903
- #: src/Tribe/Main.php:4183
7904
  msgid "View All Add-Ons"
7905
  msgstr "Προβολή όλων των Επεκτάσεων"
7906
 
7907
- #: src/Tribe/Main.php:4180
7908
  msgid "Support"
7909
  msgstr "Υποστήριξη"
7910
 
7911
- #: src/Tribe/Main.php:3828 src/Tribe/Main.php:3841
7912
  msgid "%s Information"
7913
  msgstr "%s Πληροφορίες"
7914
 
7915
- #: src/Tribe/Main.php:3819
7916
  msgid "%s Options"
7917
  msgstr "Επιλογές %s"
7918
 
7919
- #: src/Tribe/Main.php:3742 src/Tribe/Main.php:3777
7920
  #: src/functions/template-tags/day.php:157
7921
  #: src/functions/template-tags/day.php:178
7922
  msgid "Date out of range."
7923
  msgstr "Ημερομήνια εκτός ορίων."
7924
 
7925
- #: src/Tribe/Main.php:2344
7926
  msgid "all"
7927
  msgstr "όλα"
7928
 
7929
- #: src/Tribe/Main.php:2343 src/functions/template-tags/general.php:111
7930
  msgid "events"
7931
  msgstr "εκδηλώσεων"
7932
 
7933
- #: src/Tribe/Main.php:2342 src/functions/template-tags/general.php:79
7934
  msgid "event"
7935
  msgstr "εκδήλωση"
7936
 
7937
- #: src/Tribe/Main.php:2341
7938
  msgid "page"
7939
  msgstr "σελίδα"
7940
 
@@ -7946,7 +7969,8 @@ msgstr "Δίκτυο"
7946
  msgid "Done"
7947
  msgstr "Τέλος"
7948
 
7949
- #: common/src/Tribe/Main.php:272 src/Tribe/Asset/Bootstrap_Datepicker.php:27
 
7950
  #: src/functions/template-tags/day.php:104
7951
  msgid "Today"
7952
  msgstr "Σήμερα"
@@ -7959,141 +7983,141 @@ msgstr "Προηγούμενο"
7959
  msgid "Next"
7960
  msgstr "Επόμενο"
7961
 
7962
- #: src/Tribe/Linked_Posts.php:1010
7963
  msgid "No saved %s exists."
7964
  msgstr "Δεν υπάρχουν αποθηκευμένοι %s."
7965
 
7966
- #: src/Tribe/Linked_Posts.php:840
7967
  msgid "Available %s"
7968
  msgstr "Διαθέσιμοι %s"
7969
 
7970
- #: src/Tribe/Linked_Posts.php:836
7971
  msgid "My %s"
7972
  msgstr "Οι %s μου"
7973
 
7974
- #: src/Tribe/Main.php:1859 src/Tribe/Main.php:1879
7975
  msgid "%s draft updated."
7976
  msgstr "Το προσχέδιο του/της %s ανανεώθηκε."
7977
 
7978
- #: src/Tribe/Main.php:1852 src/Tribe/Main.php:1872
7979
  msgid "%s submitted."
7980
  msgstr "Το %s καταχωρήθηκε."
7981
 
7982
- #: src/Tribe/Main.php:1850 src/Tribe/Main.php:1870
7983
  msgid "%s published."
7984
  msgstr "Το %s δημοσιεύτηκε."
7985
 
7986
  #. translators: %s: date and time of the revision
7987
- #: src/Tribe/Main.php:1869
7988
  msgid "%s restored to revision from %s"
7989
  msgstr "Το %s αποκαταστάθηκε στην αναθεώρηση από %s"
7990
 
7991
  #. translators: Publish box date format, see http://php.net/date
7992
- #: src/Tribe/Main.php:1829 src/Tribe/Main.php:1857 src/Tribe/Main.php:1877
7993
  msgid "M j, Y @ G:i"
7994
  msgstr "M j, Y @ G:i"
7995
 
7996
- #: src/Tribe/Main.php:1818 src/Tribe/Main.php:1851 src/Tribe/Main.php:1871
7997
  msgid "%s saved."
7998
  msgstr "Το %s αποθηκεύθηκε."
7999
 
8000
  #. translators: %s: date and time of the revision
8001
- #: src/Tribe/Main.php:1811 src/Tribe/Main.php:1849
8002
  msgid "%1$s restored to revision from %2$s"
8003
  msgstr "%1$s επαναφέρθηκε στην έκδοση από %2$s"
8004
 
8005
- #: src/Tribe/Main.php:1809 src/Tribe/Main.php:1844 src/Tribe/Main.php:1847
8006
- #: src/Tribe/Main.php:1864 src/Tribe/Main.php:1867
8007
  msgid "%s updated."
8008
  msgstr "Το %s ενημερώθηκε."
8009
 
8010
- #: src/Tribe/Main.php:1808 src/Tribe/Main.php:1846 src/Tribe/Main.php:1866
8011
  msgid "Custom field deleted."
8012
  msgstr "Το προσαρμοσμένο πεδίο διαγράφηκε."
8013
 
8014
- #: src/Tribe/Main.php:1807 src/Tribe/Main.php:1845 src/Tribe/Main.php:1865
8015
  msgid "Custom field updated."
8016
  msgstr "Το προσαρμοσμένο πεδίο ενημερώθηκε."
8017
 
8018
- #: src/Tribe/Main.php:1785
8019
  msgid "New %s Category Name"
8020
  msgstr "Νέο Όνομα Κατηγορίας %s"
8021
 
8022
- #: src/Tribe/Main.php:1784
8023
  msgid "Add New %s Category"
8024
  msgstr "Προσθήκη νέας κατηγορίας %s"
8025
 
8026
- #: src/Tribe/Main.php:1783
8027
  msgid "Update %s Category"
8028
  msgstr "Ανανέωση κατηγορίας %s"
8029
 
8030
- #: src/Tribe/Main.php:1782
8031
  msgid "Edit %s Category"
8032
  msgstr "Επεξεργασία κατηγορίας %s"
8033
 
8034
- #: src/Tribe/Main.php:1781
8035
  msgid "Parent %s Category:"
8036
  msgstr ""
8037
 
8038
- #: src/Tribe/Main.php:1780
8039
  msgid "Parent %s Category"
8040
  msgstr ""
8041
 
8042
- #: src/Tribe/Main.php:1779
8043
  msgid "All %s Categories"
8044
  msgstr "Όλες οι %s Κατηγορίες"
8045
 
8046
- #: src/Tribe/Main.php:1778
8047
  msgid "Search %s Categories"
8048
  msgstr "Αναζήτηση κατηγορίας %s"
8049
 
8050
- #: src/Tribe/Main.php:1777
8051
  msgid "%s Category"
8052
  msgstr "Κατηγορία %s"
8053
 
8054
- #: src/Tribe/Main.php:1767 src/Tribe/Organizer.php:98 src/Tribe/Venue.php:117
8055
  msgid "No %s found in Trash"
8056
  msgstr "Δεν βρέθηκε %s στον Κάδο Ανακύκλωσης"
8057
 
8058
- #: src/Tribe/Main.php:1766 src/Tribe/Organizer.php:97 src/Tribe/Venue.php:116
8059
  msgid "No %s found"
8060
  msgstr "Δεν βρέθηκε %s"
8061
 
8062
- #: src/Tribe/Main.php:1765 src/Tribe/Organizer.php:96 src/Tribe/Venue.php:115
8063
  msgid "Search %s"
8064
  msgstr "Αναζήτηση %s"
8065
 
8066
- #: src/Tribe/Main.php:1764 src/Tribe/Organizer.php:95 src/Tribe/Venue.php:114
8067
  #: src/views/month/single-day.php:26
8068
  msgid "View %s"
8069
  msgstr "Προβολή %s"
8070
 
8071
- #: src/Tribe/Main.php:1763 src/Tribe/Organizer.php:94 src/Tribe/Venue.php:113
8072
  msgid "New %s"
8073
  msgstr "Νέος/α/ο %s"
8074
 
8075
- #: src/Tribe/Main.php:1761 src/Tribe/Main.php:1893 src/Tribe/Main.php:1894
8076
  #: src/Tribe/Organizer.php:92 src/Tribe/Venue.php:111
8077
  msgid "Add New %s"
8078
  msgstr "Προσθήκη Νέας %s"
8079
 
8080
- #: src/Tribe/Main.php:1760 src/Tribe/Organizer.php:91 src/Tribe/Venue.php:110
8081
  msgid "Add New"
8082
  msgstr "Προσθήκη Νέου"
8083
 
8084
- #: src/Tribe/Main.php:1727 src/Tribe/Main.php:2339
8085
  msgid "tag"
8086
  msgstr "tag"
8087
 
8088
- #: src/Tribe/Main.php:1713 src/Tribe/Main.php:2340
8089
  msgid "category"
8090
  msgstr "category"
8091
 
8092
- #: src/Tribe/Main.php:1465
8093
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8094
  msgstr "Μας συγχωρείτε, το The Events Calendar απαιτεί PHP έκδοσης %s ή νεότερη. Επικοινωνήστε με τον Web hosting πάροχό σας για να μεταβείτε σε νεότερη έκδοση της PHP."
8095
 
8096
- #: src/Tribe/Main.php:1462
8097
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8098
  msgstr "Μας συγχωρείτε, το The Events Calendar απαιτεί WordPress έκδοσης %s ή νεότερο. Παρακαλούμε αναβαθμίστε την εγκαταστασή σας."
8099
 
@@ -8111,72 +8135,72 @@ msgstr "Βοήθεια"
8111
  msgid "Display"
8112
  msgstr "Εμφάνιση"
8113
 
8114
- #: src/Tribe/Main.php:1309
8115
  msgid "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8116
  msgstr ""
8117
 
8118
- #: src/Tribe/Main.php:1297
8119
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8120
  msgstr "Η έκδοση του The Events Calendar που χρησιμοποιείτε δεν είναι ενημερωμένη με μία από τις επεκτάσεις του The Events Calendar. Παρακαλούμε %sαναβαθμίστε τώρα.%s"
8121
 
8122
- #: src/Tribe/Main.php:788
8123
  msgid "Initializing Tribe Events on %s"
8124
  msgstr "Αρχικοποίηση των Tribe Events στο %s"
8125
 
8126
- #: src/Tribe/Main.php:763
8127
  msgid "today"
8128
  msgstr "today"
8129
 
8130
- #: src/Tribe/Main.php:762
8131
  msgid "day"
8132
  msgstr "day"
8133
 
8134
- #: src/Tribe/Main.php:761
8135
  msgid "past"
8136
  msgstr "past"
8137
 
8138
- #: src/Tribe/Main.php:760
8139
  msgid "upcoming"
8140
  msgstr "upcoming"
8141
 
8142
- #: src/Tribe/Main.php:759
8143
  msgid "list"
8144
  msgstr "list"
8145
 
8146
- #: src/Tribe/Main.php:758
8147
  msgid "month"
8148
  msgstr "month"
8149
 
8150
- #. #-#-#-#-# the-events-calendar-code.pot (The Events Calendar 4.6.20.1)
8151
  #. #-#-#-#-#
8152
  #. Plugin Name of the plugin/theme
8153
  #: common/src/Tribe/Admin/Help_Page.php:59 common/src/Tribe/Customizer.php:569
8154
- #: common/src/Tribe/Plugins_API.php:25 src/Tribe/Main.php:751
8155
- #: src/Tribe/Main.php:1093 src/Tribe/Privacy.php:29
8156
  #: src/functions/template-tags/general.php:1345
8157
  msgid "The Events Calendar"
8158
  msgstr "The Events Calendar"
8159
 
8160
- #: src/Tribe/Main.php:1163 src/admin-views/aggregator/tabs/import-form.php:185
8161
  #: src/admin-views/aggregator/tabs/import-form.php:197
8162
  #: src/functions/template-tags/general.php:63
8163
  msgid "Event"
8164
  msgstr "Εκδήλωση"
8165
 
8166
  #: common/src/Tribe/Settings.php:177 common/src/Tribe/Settings.php:241
8167
- #: common/src/Tribe/Settings.php:242 src/Tribe/Main.php:1155
8168
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:207
8169
  #: src/functions/template-tags/general.php:95
8170
  msgid "Events"
8171
  msgstr "Εκδηλώσεις"
8172
 
8173
- #: src/Tribe/Organizer.php:157 src/functions/template-tags/organizer.php:115
8174
  msgid "Organizer"
8175
  msgstr "Διοργανωτής"
8176
 
8177
  #: src/Tribe/Organizer.php:171
8178
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:206
8179
- #: src/functions/template-tags/organizer.php:126
8180
  msgid "Organizers"
8181
  msgstr "Διοργανωτές"
8182
 
@@ -8440,7 +8464,7 @@ msgstr "Ημερομηνία:"
8440
  msgid "End:"
8441
  msgstr "Τέλος:"
8442
 
8443
- #: src/Tribe/Aggregator/Record/List_Table.php:498
8444
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
8445
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
8446
  #: src/views/modules/meta/details.php:66 src/views/modules/meta/details.php:91
@@ -8459,7 +8483,7 @@ msgstr "Ημερομηνία Λήξης"
8459
  msgid "Start Date"
8460
  msgstr "Ημερομηνία Έναρξης"
8461
 
8462
- #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1776
8463
  msgid "%s Categories"
8464
  msgstr "%s Κατηγορίες"
8465
 
@@ -8470,7 +8494,7 @@ msgstr ""
8470
  #: src/Tribe/Admin/Timezone_Updater.php:87
8471
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
8472
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:100
8473
- #: src/Tribe/Aggregator/Record/Queue_Realtime.php:203
8474
  msgid "%d%% complete"
8475
  msgstr "%d%% ολοκληρωμένο"
8476
 
@@ -8483,21 +8507,21 @@ msgid "Please wait while time zone data is added to your events."
8483
  msgstr ""
8484
 
8485
  #: src/Tribe/Admin/Bar/Default_Configurator.php:62
8486
- #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:211 src/Tribe/Main.php:1762
8487
- #: src/Tribe/Main.php:4862 src/Tribe/Main.php:4909 src/Tribe/Organizer.php:93
8488
  #: src/Tribe/Venue.php:112
8489
  msgid "Edit %s"
8490
  msgstr "Επεξεργασία %s"
8491
 
8492
- #: src/Tribe/Main.php:4846 src/Tribe/Main.php:4903
8493
  msgid "Use Saved %s:"
8494
  msgstr "Χρήση Αποθηκευμένου %s:"
8495
 
8496
- #: src/Tribe/Main.php:992
8497
  msgid " ask the site administrator set a different Events URL slug."
8498
  msgstr ""
8499
 
8500
- #: src/Tribe/Main.php:986
8501
  msgid "Ask the site administrator to edit the %s slug"
8502
  msgstr ""
8503
 
@@ -8505,7 +8529,7 @@ msgstr ""
8505
  msgid "Thanks for Updating The Events Calendar"
8506
  msgstr "Ευχαριστούμε που αναβαθμίσατε το The Events Calendar"
8507
 
8508
- #: src/Tribe/Main.php:846 src/Tribe/Main.php:848
8509
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
8510
  msgid "Welcome to The Events Calendar"
8511
  msgstr "Καλωσήρθατε στο The Events Calendar"
2
  # This file is distributed under the same license as the Plugins - The Events Calendar - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2018-09-04 17:13:59+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: el_GR\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
14
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:337
15
+ msgid "The event tag ID or name"
16
+ msgstr ""
17
+
18
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:331
19
+ msgid "The event category ID or name"
20
+ msgstr ""
21
+
22
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:508
23
+ msgid "Events should be filtered by their post_parent being the specified one."
24
+ msgstr ""
25
+
26
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:498
27
+ msgid "Include events with one of the post IDs specified in the array of CSV list, date filters will be ignored."
28
+ msgstr ""
29
+
30
+ #: src/Tribe/Aggregator/Record/Async_Queue.php:348
31
+ #: src/Tribe/Aggregator/Record/Void_Queue.php:122
32
+ msgid "Unable to process this import - a breakage or conflict may have resulted in the import halting."
33
+ msgstr ""
34
+
35
+ #: common/src/Tribe/Plugins_API.php:37
36
+ msgid "Event Aggregator adds massive import functionality to your calendar. Before you know it, you’ll be importing events from Meetup, Eventbrite, Google Calendar, iCalendar, and other URLs with ease. Schedule imports to run automatically behind-the-scenes or run them manually when you’re ready. Go ahead and import to your heart’s content—Event Aggregator hooks you up with a central dashboard in the admin to make managing your imports a breeze."
37
+ msgstr ""
38
+
39
  #: src/views/month/single-day.php:57
40
  msgid "%s for %s"
41
  msgstr ""
42
 
43
  #: src/views/month/loop-grid.php:25 src/views/month/loop-grid.php:28
44
  msgid "Calendar of %s"
45
+ msgstr "Ημερολογίο του %s"
46
 
47
  #: src/views/modules/bar.php:80
48
  msgid "Submit %s search"
208
  msgid "Do more with Eventbrite Tickets"
209
  msgstr ""
210
 
211
+ #: src/Tribe/Main.php:4114
212
  msgid "Search for %s by month. Please use the format %s."
213
  msgstr ""
214
 
215
+ #: src/Tribe/Main.php:4109
216
  msgid "Search for %s by Date. Please use the format %s."
217
  msgstr ""
218
 
219
+ #: src/Tribe/Main.php:4077 src/Tribe/Main.php:4078
220
  msgid "2 digit month dot 4 digit year"
221
  msgstr ""
222
 
223
+ #: src/Tribe/Main.php:4076
224
  msgid "4 digit year dot 2 digit month"
225
  msgstr ""
226
 
227
+ #: src/Tribe/Main.php:4075
228
  msgid "2 digit month hyphen 4 digit year"
229
  msgstr ""
230
 
231
+ #: src/Tribe/Main.php:4072 src/Tribe/Main.php:4073 src/Tribe/Main.php:4074
232
  msgid "1 digit month hyphen 4 digit year"
233
  msgstr ""
234
 
235
+ #: src/Tribe/Main.php:4069 src/Tribe/Main.php:4071
236
  msgid "2 digit month slash 4 digit year"
237
  msgstr ""
238
 
239
+ #: src/Tribe/Main.php:4068 src/Tribe/Main.php:4070
240
  msgid "1 digit month slash 4 digit year"
241
  msgstr ""
242
 
243
+ #: src/Tribe/Main.php:4067
244
  msgid "4 digit year hyphen 2 digit month"
245
  msgstr ""
246
 
247
+ #: src/Tribe/Main.php:4063
248
  msgid "2 digit day dot 2 digit month dot 4 digit year"
249
  msgstr ""
250
 
251
+ #: src/Tribe/Main.php:4062
252
  msgid "2 digit month dot 2 digit day dot 4 digit year"
253
  msgstr ""
254
 
255
+ #: src/Tribe/Main.php:4061
256
  msgid "4 digit year dot 2 digit month dot 2 digit day"
257
  msgstr ""
258
 
259
+ #: src/Tribe/Main.php:4060
260
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
261
  msgstr ""
262
 
263
+ #: src/Tribe/Main.php:4059
264
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
265
  msgstr ""
266
 
267
+ #: src/Tribe/Main.php:4058
268
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
269
  msgstr ""
270
 
271
+ #: src/Tribe/Main.php:4057
272
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
273
  msgstr ""
274
 
275
+ #: src/Tribe/Main.php:4056
276
  msgid "2 digit day slash 2 digit month slash 4 digit year"
277
  msgstr ""
278
 
279
+ #: src/Tribe/Main.php:4055
280
  msgid "1 digit day slash 1 digit month slash 4 digit year"
281
  msgstr ""
282
 
283
+ #: src/Tribe/Main.php:4054
284
  msgid "2 digit month slash 2 digit day slash 4 digit year"
285
  msgstr ""
286
 
287
+ #: src/Tribe/Main.php:4053
288
  msgid "1 digit month slash 1 digit day slash 4 digit year"
289
  msgstr ""
290
 
291
+ #: src/Tribe/Main.php:4052
292
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
293
  msgstr ""
294
 
295
+ #: src/Tribe/Main.php:4031
296
  msgid "Search for %s by Keyword."
297
  msgstr ""
298
 
520
  msgstr ""
521
 
522
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
523
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:385
524
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
525
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
526
  msgid "The requested page was not found."
534
  msgid "one week"
535
  msgstr ""
536
 
537
+ #: src/Tribe/Aggregator/Record/List_Table.php:577
538
  msgctxt "when the retry will happen, a date"
539
  msgid "retrying at %s"
540
  msgstr ""
541
 
542
+ #: src/Tribe/Aggregator/Record/List_Table.php:574
543
  msgctxt "in human readable time"
544
  msgid "retrying in about %s"
545
  msgstr ""
621
  msgstr ""
622
 
623
  #: common/src/Tribe/Plugins_API.php:71
624
+ msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Guest check in is easy with QR codes and our custom scanning app."
625
  msgstr ""
626
 
627
  #: src/admin-views/tribe-options-general.php:31
653
  msgid "The event with the specified ID is not accessible."
654
  msgstr ""
655
 
656
+ #: src/Tribe/Main.php:1812
657
  msgid "%1$s published. %2$sView %3$s"
658
  msgstr ""
659
 
1004
  msgid "the event post name"
1005
  msgstr ""
1006
 
1007
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:354
1008
  msgid "The event organizer IDs or data"
1009
  msgstr ""
1010
 
1011
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:346
1012
  msgid "The event venue ID or data"
1013
  msgstr ""
1014
 
1251
  msgid "Returns all the organizers matching the search criteria"
1252
  msgstr ""
1253
 
1254
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:494
1255
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1256
  msgstr ""
1257
 
1258
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:488
1259
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1260
  msgstr ""
1261
 
1262
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:482
1263
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1264
  msgstr ""
1265
 
1266
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:477
1267
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1268
  msgid "The event post status"
1269
  msgstr ""
1270
 
1271
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:470
1272
  msgid "Events should be filtered by their featured status"
1273
  msgstr ""
1274
 
1275
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:462
1276
  msgid "Events should be assigned one of the specified organizer IDs"
1277
  msgstr ""
1278
 
1279
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1280
  msgid "Events should be assigned one of the specified venue IDs"
1281
  msgstr ""
1282
 
1370
  msgid "The event status"
1371
  msgstr ""
1372
 
1373
+ #: src/Tribe/Linked_Posts.php:1254
1374
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1375
  msgid "Create or Find %s"
1376
  msgstr "Δημιουργία ή Εύρεση %s"
1377
 
1378
+ #: src/Tribe/Linked_Posts.php:1245
1379
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1380
  msgid "Find %1$s %2$s"
1381
  msgstr ""
1382
 
1383
+ #: src/Tribe/Linked_Posts.php:1236
1384
  msgid "Find a Venue"
1385
  msgstr ""
1386
 
1387
+ #: src/Tribe/Linked_Posts.php:1235
1388
  msgid "Create or Find a Venue"
1389
  msgstr "Δημιουργία ή Εύρεση Χώρου Εκδήλωσης"
1390
 
1391
+ #: src/Tribe/Linked_Posts.php:1228
1392
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1393
  msgid "Create or Find %s"
1394
  msgstr "Δημιουργία ή Εύρεση %s"
1395
 
1396
+ #: src/Tribe/Linked_Posts.php:1219
1397
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1398
  msgid "Find %1$s %2$s"
1399
  msgstr ""
1400
 
1401
+ #: src/Tribe/Linked_Posts.php:1208
1402
  msgid "Find an Organizer"
1403
  msgstr ""
1404
 
1405
+ #: src/Tribe/Linked_Posts.php:1207
1406
  msgid "Create or Find an Organizer"
1407
  msgstr "Δημιουργία ή Εύρεση Διοργανωτή"
1408
 
1409
+ #: src/Tribe/Linked_Posts.php:1200
1410
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1411
  msgid "Create or Find %s"
1412
  msgstr "Δημιουργία ή Εύρεση %s"
1413
 
1414
+ #: src/Tribe/Linked_Posts.php:1191
1415
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1416
  msgid "Find %1$s %2$s"
1417
  msgstr ""
1507
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1508
  msgstr ""
1509
 
1510
+ #: src/Tribe/Main.php:996
1511
  msgid "edit Events settings."
1512
  msgstr ""
1513
 
1514
+ #: src/Tribe/Main.php:987
1515
  msgid "Edit the %s slug"
1516
  msgstr ""
1517
 
1518
+ #: src/Tribe/Linked_Posts.php:1177
1519
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1520
  msgid "an"
1521
  msgstr ""
1522
 
1523
+ #: src/Tribe/Linked_Posts.php:1170
1524
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1525
  msgid "a"
1526
  msgstr ""
1562
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1563
  msgstr ""
1564
 
 
 
 
 
1565
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1566
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1567
  msgstr ""
1606
  msgid "The event WordPress post ID"
1607
  msgstr ""
1608
 
1609
+ #: src/Tribe/Aggregator/Record/Abstract.php:363
1610
  msgid "Something went wrong while inserting the record in the database."
1611
  msgstr ""
1612
 
1624
  msgid "Please refresh the page and try your request again."
1625
  msgstr ""
1626
 
1627
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:29
1628
  msgid "The image WordPress post ID"
1629
  msgstr ""
1630
 
1684
  msgid "The event last modification date in UTC time"
1685
  msgstr ""
1686
 
1687
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:419
1688
  msgid "Events should start after the specified date"
1689
  msgstr ""
1690
 
1691
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:426
1692
  msgid "Events should start before the specified date"
1693
  msgstr ""
1694
 
1724
  msgid "the event post ID"
1725
  msgstr ""
1726
 
1727
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:432
1728
  msgid "Events should contain the specified string in the title or description"
1729
  msgstr ""
1730
 
2020
  msgstr ""
2021
 
2022
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2023
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:404
2024
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2025
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2026
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2027
  msgid "The archive page to return"
2028
  msgstr ""
2029
 
2030
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:412
2031
  msgid "The number of events to return on each page"
2032
  msgstr ""
2033
 
2034
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
2035
  msgid "Events should be assigned one of the specified categories slugs or IDs"
2036
  msgstr ""
2037
 
2038
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:446
2039
  msgid "Events should be assigned one of the specified tags slugs or IDs"
2040
  msgstr ""
2041
 
2042
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:374
2043
  msgid "Returns all the upcoming events matching the search criteria"
2044
  msgstr ""
2045
 
2046
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:36
2047
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:382
2048
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:64
2049
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:53
2050
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:61
2259
  msgid "three months"
2260
  msgstr ""
2261
 
2262
+ #: src/Tribe/Aggregator/Tabs/New.php:385
2263
  msgid "%1$d new event tag was created."
2264
  msgid_plural "%1$d new event tags were created."
2265
  msgstr[0] ""
2266
  msgstr[1] ""
2267
 
2268
+ #: src/Tribe/Aggregator/Tabs/New.php:389
2269
  msgid "View your event tags"
2270
  msgstr ""
2271
 
2324
  msgid "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2325
  msgstr ""
2326
 
2327
+ #: src/Tribe/Main.php:763
2328
  msgctxt "all events slug"
2329
  msgid "all"
2330
  msgstr "όλα"
2365
  msgid "The WordPress term ID"
2366
  msgstr ""
2367
 
2368
+ #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:37
2369
  msgid "The link to the image in the specified size on the site"
2370
  msgstr ""
2371
 
2381
  msgid "The image width in pixels in the specified size"
2382
  msgstr ""
2383
 
2384
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:45
2385
  msgid "The details about each size available for the image"
2386
  msgstr ""
2387
 
2388
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:41
2389
  msgid "The image natural height in pixels"
2390
  msgstr ""
2391
 
2392
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:37
2393
  msgid "The image natural width in pixels"
2394
  msgstr ""
2395
 
2396
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:33
2397
  msgid "The image file extension"
2398
  msgstr ""
2399
 
2401
  msgid "The venue WordPress post ID"
2402
  msgstr ""
2403
 
2404
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:25
2405
  msgid "The URL to the full size version of the image"
2406
  msgstr ""
2407
 
2441
  msgid "The cost currency symbol"
2442
  msgstr ""
2443
 
2444
+ #: src/Tribe/Main.php:4035
2445
  msgid "Keyword"
2446
  msgstr "Λέξη"
2447
 
2516
  msgid "Export Events"
2517
  msgstr ""
2518
 
2519
+ #: src/Tribe/Main.php:762
2520
  msgctxt "featured events slug"
2521
  msgid "featured"
2522
  msgstr ""
2523
 
2524
+ #: src/Tribe/Linked_Posts.php:1133
2525
  msgid "Create: <b><%= term %></b>"
2526
  msgstr ""
2527
 
2670
  msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2671
  msgstr ""
2672
 
2673
+ #: src/Tribe/Assets.php:685 src/deprecated/Tribe__Events__Asset__Dynamic.php:77
2674
  msgid "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2675
  msgstr "Η εκδήλωση διαρκεί όλη την ημέρα αρχίζοντας από %%startdatenoyear%% και τελειώνει %%enddatewithyear%%."
2676
 
2677
+ #: src/Tribe/Assets.php:684 src/deprecated/Tribe__Events__Asset__Dynamic.php:76
2678
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2679
  msgstr ""
2680
 
2681
+ #: src/Tribe/Assets.php:683 src/deprecated/Tribe__Events__Asset__Dynamic.php:75
2682
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2683
  msgstr ""
2684
 
2685
+ #: src/Tribe/Assets.php:682 src/deprecated/Tribe__Events__Asset__Dynamic.php:74
2686
  msgid "This event is all day on %%startdatewithyear%%."
2687
  msgstr ""
2688
 
2689
+ #: src/Tribe/Assets.php:681 src/deprecated/Tribe__Events__Asset__Dynamic.php:73
2690
  msgid "This event is at %%starttime%% on %%startdatewithyear%%."
2691
  msgstr ""
2692
 
2693
+ #: src/Tribe/Assets.php:680 src/deprecated/Tribe__Events__Asset__Dynamic.php:72
2694
  msgid "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2695
  msgstr ""
2696
 
2697
+ #: src/Tribe/Assets.php:677 src/deprecated/Tribe__Events__Asset__Dynamic.php:69
2698
  msgid "Dec"
2699
  msgstr "Δεκ"
2700
 
2701
+ #: src/Tribe/Assets.php:676 src/deprecated/Tribe__Events__Asset__Dynamic.php:68
2702
  msgid "Nov"
2703
  msgstr "Νοέ"
2704
 
2705
+ #: src/Tribe/Assets.php:675 src/deprecated/Tribe__Events__Asset__Dynamic.php:67
2706
  msgid "Oct"
2707
  msgstr "Οκτ"
2708
 
2709
+ #: src/Tribe/Assets.php:674 src/deprecated/Tribe__Events__Asset__Dynamic.php:66
2710
  msgid "Sep"
2711
  msgstr "Σεπ"
2712
 
2713
+ #: src/Tribe/Assets.php:673 src/deprecated/Tribe__Events__Asset__Dynamic.php:65
2714
  msgid "Aug"
2715
  msgstr "Αύγ"
2716
 
2717
+ #: src/Tribe/Assets.php:672 src/deprecated/Tribe__Events__Asset__Dynamic.php:64
2718
  msgid "Jul"
2719
  msgstr "Ιούλ"
2720
 
2721
+ #: src/Tribe/Assets.php:671 src/deprecated/Tribe__Events__Asset__Dynamic.php:63
2722
  msgid "Jun"
2723
  msgstr "Ιούν"
2724
 
2725
+ #: src/Tribe/Assets.php:669 src/deprecated/Tribe__Events__Asset__Dynamic.php:61
2726
  msgid "Apr"
2727
  msgstr "Απρ"
2728
 
2729
+ #: src/Tribe/Assets.php:668 src/deprecated/Tribe__Events__Asset__Dynamic.php:60
2730
  msgid "Mar"
2731
  msgstr "Μάρ"
2732
 
2733
+ #: src/Tribe/Assets.php:667 src/deprecated/Tribe__Events__Asset__Dynamic.php:59
2734
  msgid "Feb"
2735
  msgstr "Φεβ"
2736
 
2737
+ #: src/Tribe/Assets.php:666 src/deprecated/Tribe__Events__Asset__Dynamic.php:58
2738
  msgid "Jan"
2739
  msgstr "Ιαν"
2740
 
2741
+ #: src/Tribe/Assets.php:663 src/deprecated/Tribe__Events__Asset__Dynamic.php:55
2742
  msgid "December"
2743
  msgstr "Δεκέμβριος"
2744
 
2745
+ #: src/Tribe/Assets.php:662 src/deprecated/Tribe__Events__Asset__Dynamic.php:54
2746
  msgid "November"
2747
  msgstr "Νοέμβριος"
2748
 
2749
+ #: src/Tribe/Assets.php:661 src/deprecated/Tribe__Events__Asset__Dynamic.php:53
2750
  msgid "October"
2751
  msgstr "Οκτώβριος"
2752
 
2753
+ #: src/Tribe/Assets.php:660 src/deprecated/Tribe__Events__Asset__Dynamic.php:52
2754
  msgid "September"
2755
  msgstr "Σεπτέμβριος"
2756
 
2757
+ #: src/Tribe/Assets.php:659 src/deprecated/Tribe__Events__Asset__Dynamic.php:51
2758
  msgid "August"
2759
  msgstr "Αύγουστος"
2760
 
2761
+ #: src/Tribe/Assets.php:658 src/deprecated/Tribe__Events__Asset__Dynamic.php:50
2762
  msgid "July"
2763
  msgstr "Ιούλιος"
2764
 
2765
+ #: src/Tribe/Assets.php:657 src/deprecated/Tribe__Events__Asset__Dynamic.php:49
2766
  msgid "June"
2767
  msgstr "Ιούνιος"
2768
 
2769
+ #: src/Tribe/Assets.php:656 src/Tribe/Assets.php:670
2770
+ #: src/deprecated/Tribe__Events__Asset__Dynamic.php:48
2771
+ #: src/deprecated/Tribe__Events__Asset__Dynamic.php:62
2772
  msgid "May"
2773
  msgstr "Μάιος"
2774
 
2775
+ #: src/Tribe/Assets.php:655 src/deprecated/Tribe__Events__Asset__Dynamic.php:47
2776
  msgid "April"
2777
  msgstr "Απρίλιος"
2778
 
2779
+ #: src/Tribe/Assets.php:654 src/deprecated/Tribe__Events__Asset__Dynamic.php:46
2780
  msgid "March"
2781
  msgstr "Μάρτιος"
2782
 
2783
+ #: src/Tribe/Assets.php:653 src/deprecated/Tribe__Events__Asset__Dynamic.php:45
2784
  msgid "February"
2785
  msgstr "Φεβρουάριος"
2786
 
2787
+ #: src/Tribe/Assets.php:652 src/deprecated/Tribe__Events__Asset__Dynamic.php:44
2788
  msgid "January"
2789
  msgstr "Ιανουάριος"
2790
 
2791
+ #: src/Tribe/Assets.php:649 src/deprecated/Tribe__Events__Asset__Dynamic.php:41
2792
  msgid "Sat"
2793
  msgstr "Σάβ"
2794
 
2795
+ #: src/Tribe/Assets.php:648 src/deprecated/Tribe__Events__Asset__Dynamic.php:40
2796
  msgid "Fri"
2797
  msgstr "Παρ"
2798
 
2799
+ #: src/Tribe/Assets.php:647 src/deprecated/Tribe__Events__Asset__Dynamic.php:39
2800
  msgid "Thu"
2801
  msgstr "Πέμ"
2802
 
2803
+ #: src/Tribe/Assets.php:646 src/deprecated/Tribe__Events__Asset__Dynamic.php:38
2804
  msgid "Wed"
2805
  msgstr "Τετ"
2806
 
2807
+ #: src/Tribe/Assets.php:645 src/deprecated/Tribe__Events__Asset__Dynamic.php:37
2808
  msgid "Tue"
2809
  msgstr "Τρί"
2810
 
2811
+ #: src/Tribe/Assets.php:644 src/deprecated/Tribe__Events__Asset__Dynamic.php:36
2812
  msgid "Mon"
2813
  msgstr "Δευ"
2814
 
2815
+ #: src/Tribe/Assets.php:643 src/deprecated/Tribe__Events__Asset__Dynamic.php:35
2816
  msgid "Sun"
2817
  msgstr "Κυρ"
2818
 
2819
+ #: src/Tribe/Assets.php:640 src/deprecated/Tribe__Events__Asset__Dynamic.php:32
2820
  msgid "Saturday"
2821
  msgstr "Σάββατο"
2822
 
2823
+ #: src/Tribe/Assets.php:639 src/deprecated/Tribe__Events__Asset__Dynamic.php:31
2824
  msgid "Friday"
2825
  msgstr "Παρασκευή"
2826
 
2827
+ #: src/Tribe/Assets.php:638 src/deprecated/Tribe__Events__Asset__Dynamic.php:30
2828
  msgid "Thursday"
2829
  msgstr "Πέμπτη"
2830
 
2831
+ #: src/Tribe/Assets.php:637 src/deprecated/Tribe__Events__Asset__Dynamic.php:29
2832
  msgid "Wednesday"
2833
  msgstr "Τετάρτη"
2834
 
2835
+ #: src/Tribe/Assets.php:636 src/deprecated/Tribe__Events__Asset__Dynamic.php:28
2836
  msgid "Tuesday"
2837
  msgstr "Τρίτη"
2838
 
2839
+ #: src/Tribe/Assets.php:635 src/deprecated/Tribe__Events__Asset__Dynamic.php:27
2840
  msgid "Monday"
2841
  msgstr "Δευτέρα"
2842
 
2843
+ #: src/Tribe/Assets.php:634 src/deprecated/Tribe__Events__Asset__Dynamic.php:26
2844
  msgid "Sunday"
2845
  msgstr "Κυριακή"
2846
 
2921
  msgid "Unknown service message"
2922
  msgstr ""
2923
 
2924
+ #: src/Tribe/Aggregator/Record/List_Table.php:540
2925
  msgid "Unknown"
2926
  msgstr ""
2927
 
2928
+ #: src/Tribe/Aggregator/Record/Abstract.php:1206
2929
  msgid "When this import was last scheduled to run, the daily limit for your Event Aggregator license had already been reached."
2930
  msgstr ""
2931
 
3662
  msgid "mi"
3663
  msgstr ""
3664
 
3665
+ #: src/Tribe/Main.php:982
3666
  msgid "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3667
  msgstr ""
3668
 
3887
  msgid "Scheduled Imports"
3888
  msgstr ""
3889
 
3890
+ #: src/Tribe/Aggregator/Tabs/New.php:615
3891
  msgid "Renew your Event Aggregator license"
3892
  msgstr ""
3893
 
3894
+ #: src/Tribe/Aggregator/Tabs/New.php:612
3895
  msgid "Renew your license in order to import events from Facebook, iCalendar, Google, or Meetup."
3896
  msgstr ""
3897
 
3898
+ #: src/Tribe/Aggregator/Tabs/New.php:611
3899
  msgid "Your Event Aggregator license is expired."
3900
  msgstr ""
3901
 
3902
+ #: src/Tribe/Aggregator/Tabs/New.php:563
3903
  msgid "Learn More"
3904
  msgstr ""
3905
 
3906
+ #: src/Tribe/Aggregator/Tabs/New.php:558 src/Tribe/Aggregator/Tabs/New.php:565
3907
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:19
3908
  msgid "opens in a new window"
3909
  msgstr ""
3910
 
3911
+ #: src/Tribe/Aggregator/Tabs/New.php:556
3912
  msgid "Buy It Now"
3913
  msgstr ""
3914
 
3915
+ #: src/Tribe/Aggregator/Tabs/New.php:553
3916
  msgid "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3917
  msgstr ""
3918
 
3919
+ #: src/Tribe/Aggregator/Tabs/New.php:551
3920
  msgid "Import Using Event Aggregator"
3921
  msgstr ""
3922
 
3923
+ #: src/Tribe/Aggregator/Tabs/New.php:464
3924
  msgid "Unable to save credentials"
3925
  msgstr ""
3926
 
3927
+ #: src/Tribe/Aggregator/Tabs/New.php:457
3928
  msgid "Credentials have been saved"
3929
  msgstr ""
3930
 
3931
+ #: src/Tribe/Aggregator/Tabs/New.php:448
3932
  msgid "The Meetup API key is required."
3933
  msgstr ""
3934
 
3935
+ #: src/Tribe/Aggregator/Tabs/New.php:439
3936
  msgid "Invalid credential save nonce"
3937
  msgstr ""
3938
 
3939
+ #: src/Tribe/Aggregator/Tabs/New.php:429
3940
  msgid "Invalid credential save request"
3941
  msgstr ""
3942
 
3943
+ #: src/Tribe/Aggregator/Tabs/New.php:417
3944
  msgid "View your scheduled imports."
3945
  msgstr ""
3946
 
3947
+ #: src/Tribe/Aggregator/Tabs/New.php:413
3948
  msgid "The next import is scheduled for %1$s."
3949
  msgstr ""
3950
 
3951
+ #: src/Tribe/Aggregator/Tabs/New.php:406
3952
  msgctxt "separator between date and time"
3953
  msgid " at "
3954
  msgstr ""
3955
 
3956
+ #: src/Tribe/Aggregator/Tabs/New.php:402
3957
  msgid "Your scheduled import was saved and the first import is complete!"
3958
  msgstr ""
3959
 
3960
+ #: src/Tribe/Aggregator/Tabs/New.php:377
3961
  msgid "View your event categories"
3962
  msgstr ""
3963
 
3964
+ #: src/Tribe/Aggregator/Tabs/New.php:373
3965
  msgid "%1$d new event category was created."
3966
  msgid_plural "%1$d new event categories were created."
3967
  msgstr[0] ""
3968
  msgstr[1] ""
3969
 
3970
+ #: src/Tribe/Aggregator/Tabs/New.php:364
3971
  msgid "View your event organizers"
3972
  msgstr ""
3973
 
3974
+ #: src/Tribe/Aggregator/Tabs/New.php:360
3975
  msgid "%1$d new organizer was imported."
3976
  msgid_plural "%1$d new organizers were imported."
3977
  msgstr[0] ""
3978
  msgstr[1] ""
3979
 
3980
+ #: src/Tribe/Aggregator/Tabs/New.php:352
3981
  msgid "View your event venues"
3982
  msgstr ""
3983
 
3984
+ #: src/Tribe/Aggregator/Tabs/New.php:348
3985
  msgid "%1$d new venue was imported."
3986
  msgid_plural "%1$d new venues were imported."
3987
  msgstr[0] ""
3988
  msgstr[1] ""
3989
 
3990
+ #: src/Tribe/Aggregator/Tabs/New.php:338
3991
  msgid "View all %s"
3992
  msgstr "Δείτε όλες τις %s"
3993
 
3994
+ #: src/Tribe/Aggregator/Tabs/New.php:330
3995
  msgid "No %1$s were imported or updated."
3996
  msgstr ""
3997
 
3998
+ #: src/Tribe/Aggregator/Tabs/New.php:323
3999
  msgid "%1$d new image was imported."
4000
  msgid_plural "%1$d new images were imported."
4001
  msgstr[0] ""
4002
  msgstr[1] ""
4003
 
4004
+ #: src/Tribe/Aggregator/Tabs/New.php:314
4005
  msgid "%1$d already-imported %2$s was skipped."
4006
  msgid_plural "%1$d already-imported %2$s were skipped."
4007
  msgstr[0] ""
4008
  msgstr[1] ""
4009
 
4010
+ #: src/Tribe/Aggregator/Tabs/New.php:303
4011
  msgid "%1$d existing %2$s was updated."
4012
  msgid_plural "%1$d existing %2$s were updated."
4013
  msgstr[0] ""
4014
  msgstr[1] ""
4015
 
4016
+ #: src/Tribe/Aggregator/Tabs/New.php:291
4017
  msgid "%1$d new %2$s was imported."
4018
  msgid_plural "%1$d new %2$s were imported."
4019
  msgstr[0] ""
4277
  msgid "Events Aggregator Record"
4278
  msgstr ""
4279
 
4280
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:183
4281
  msgid "Unable to continue inserting data. Please reload this page to continue/try again."
4282
  msgstr ""
4283
 
4297
  msgid "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4298
  msgstr ""
4299
 
4300
+ #: src/Tribe/Aggregator/Record/Queue_Processor.php:233
4301
  msgid "Could not process queue for Import Record %1$d: %2$s"
4302
  msgstr ""
4303
 
4304
+ #: src/Tribe/Aggregator/Record/List_Table.php:664
4305
  msgid "Select %s"
4306
  msgstr "Επιλογή %s"
4307
 
4308
+ #: src/Tribe/Aggregator/Record/List_Table.php:629
4309
+ #: src/Tribe/Aggregator/Record/List_Table.php:638
4310
+ #: src/Tribe/Aggregator/Record/List_Table.php:646
4311
  msgid "updated"
4312
  msgstr ""
4313
 
4314
+ #: src/Tribe/Aggregator/Record/List_Table.php:627
4315
+ #: src/Tribe/Aggregator/Record/List_Table.php:635
4316
+ #: src/Tribe/Aggregator/Record/List_Table.php:643
4317
  msgid "new"
4318
  msgstr ""
4319
 
4320
+ #: src/Tribe/Aggregator/Record/List_Table.php:624
4321
  msgid "Latest Import:"
4322
  msgstr ""
4323
 
4324
+ #: src/Tribe/Aggregator/Record/List_Table.php:622
4325
  msgid "all time"
4326
  msgstr ""
4327
 
4328
+ #: src/Tribe/Aggregator/Record/List_Table.php:596
4329
  msgid "One Time"
4330
  msgstr ""
4331
 
4332
+ #: src/Tribe/Aggregator/Record/List_Table.php:593
4333
  msgid "Invalid Frequency"
4334
  msgstr ""
4335
 
4336
+ #: src/Tribe/Aggregator/Record/List_Table.php:563 src/Tribe/Aggregator.php:426
4337
  #: src/Tribe/Ignored_Events.php:357
4338
  #: src/admin-views/tribe-options-addons-api.php:36
4339
  msgctxt "in human readable time"
4340
  msgid "in about %s"
4341
  msgstr ""
4342
 
4343
+ #: src/Tribe/Aggregator/Record/List_Table.php:561 src/Tribe/Aggregator.php:424
4344
  #: src/Tribe/Ignored_Events.php:355
4345
  #: src/admin-views/tribe-options-addons-api.php:34
4346
  msgctxt "human readable time ago"
4347
  msgid "about %s ago"
4348
  msgstr ""
4349
 
4350
+ #: src/Tribe/Aggregator/Record/List_Table.php:513
4351
  msgid "Radius:"
4352
  msgstr ""
4353
 
4354
+ #: src/Tribe/Aggregator/Record/List_Table.php:496
4355
  msgid "Keywords:"
4356
  msgstr "Λέξεις-κλειδιά:"
4357
 
4358
+ #: src/Tribe/Aggregator/Record/List_Table.php:483
4359
  #: src/Tribe/Ignored_Events.php:337
4360
  msgctxt "record via origin"
4361
  msgid "via "
4362
  msgstr ""
4363
 
4364
+ #: src/Tribe/Aggregator/Record/List_Table.php:440
4365
  msgid "Import preview"
4366
  msgstr ""
4367
 
4368
+ #: src/Tribe/Aggregator/Record/List_Table.php:436
4369
  msgid "Import pending"
4370
  msgstr ""
4371
 
4372
+ #: src/Tribe/Aggregator/Record/List_Table.php:432
4373
  msgid "Import schedule"
4374
  msgstr ""
4375
 
4376
+ #: src/Tribe/Aggregator/Record/List_Table.php:420
4377
  msgid "Import failed"
4378
  msgstr ""
4379
 
4380
+ #: src/Tribe/Aggregator/Record/List_Table.php:416
4381
  msgid "Import completed"
4382
  msgstr ""
4383
 
4462
  msgid "Eventbrite"
4463
  msgstr ""
4464
 
4465
+ #: src/Tribe/Aggregator/Record/Abstract.php:1149
4466
  msgid "Deleted Attachment: %d"
4467
  msgstr ""
4468
 
4469
+ #: src/Tribe/Aggregator/Record/Abstract.php:497
4470
  msgid "Record: "
4471
  msgstr ""
4472
 
4501
  msgstr ""
4502
 
4503
  #: src/Tribe/Aggregator/Page.php:96
4504
+ #: src/Tribe/Aggregator/Record/List_Table.php:492
4505
  msgid "View Filters"
4506
  msgstr ""
4507
 
4859
  msgstr ""
4860
 
4861
  #: common/src/Tribe/PUE/Checker.php:961 common/src/Tribe/PUE/Notices.php:285
4862
+ #: src/Tribe/Aggregator/Record/Abstract.php:1164
4863
  msgid " (opens in a new window)"
4864
  msgstr ""
4865
 
5160
  msgid "No notable changes detected"
5161
  msgstr "Δέν βρέθηκαν αλλαγές"
5162
 
5163
+ #: src/Tribe/Main.php:2561
5164
  msgid " (View Full %1$s Description Here: %2$s)"
5165
  msgstr " (Δείτε την πλήρη %1$s περιγραφή εδώ: %2$s)"
5166
 
5208
  msgid "Keep the Core Plugin %sFREE%s!"
5209
  msgstr ""
5210
 
5211
+ #: src/Tribe/Template_Factory.php:231
5212
  msgid "No results were found for %1$s in or near %2$s."
5213
  msgstr ""
5214
 
5215
+ #: src/Tribe/Template_Factory.php:229
5216
  msgid "There were no results found for %s."
5217
  msgstr "Δεν βρέθηκαν αποτελέσματα για %s."
5218
 
5219
+ #: src/Tribe/Template/Month.php:458
5220
  msgid "There were no results found for %s this month. Try searching next month."
5221
  msgstr "Δεν βρέθηκαν αποτελέσματα για %s αυτόν τον μήνα. Δοκιμάστε τον επόμενο."
5222
 
5223
+ #: src/Tribe/Template/Day.php:154
5224
  msgid "No %1$s scheduled for %2$s. Please try another day."
5225
  msgstr ""
5226
 
5227
+ #: src/Tribe/Main.php:3855
5228
  msgid "Check out the %savailable add-ons%s."
5229
  msgstr ""
5230
 
5231
+ #: src/Tribe/Main.php:1922
5232
  msgid "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5233
  msgstr ""
5234
 
5235
+ #: src/Tribe/Main.php:1853 src/Tribe/Main.php:1873
5236
  msgid "%1$s scheduled for: %2$s."
5237
  msgstr ""
5238
 
5239
+ #: src/Tribe/Main.php:1834
5240
  msgid "%1$s draft updated. %2$sPreview %3$s"
5241
  msgstr ""
5242
 
5243
+ #: src/Tribe/Main.php:1825
5244
  msgid "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5245
  msgstr ""
5246
 
5247
+ #: src/Tribe/Main.php:1819
5248
  msgid "%1$s submitted. %2$sPreview %3$s"
5249
  msgstr ""
5250
 
5251
+ #: src/Tribe/Main.php:1801
5252
  msgid "%1$s updated. %2$sView %1$s%3$s"
5253
  msgstr ""
5254
 
5255
+ #: src/Tribe/Main.php:1476
5256
  msgid "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5257
  msgstr ""
5258
 
5259
+ #: src/Tribe/Main.php:1111
5260
  msgid "If you have a valid license for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5261
  msgstr ""
5262
 
5263
+ #: src/Tribe/Main.php:1110
5264
  msgid "post a thread"
5265
  msgstr ""
5266
 
5267
+ #: src/Tribe/Main.php:1106
5268
  msgid "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays."
5269
  msgstr ""
5270
 
5271
+ #: src/Tribe/Main.php:1102
5272
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5273
  msgstr ""
5274
 
5275
+ #: src/Tribe/Main.php:1101
5276
  msgid "open-source forum on WordPress.org"
5277
  msgstr ""
5278
 
5279
+ #: src/Tribe/Main.php:1097
5280
  msgid "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays"
5281
  msgstr ""
5282
 
5283
+ #: src/Tribe/Main.php:1096 src/Tribe/Main.php:1104
5284
  msgid "premium support on our website"
5285
  msgstr ""
5286
 
5287
+ #: src/Tribe/Main.php:1094
5288
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5289
  msgstr ""
5290
 
5291
+ #: src/Tribe/Main.php:1093
5292
  msgid "Events Tickets"
5293
  msgstr "Εισιτήρια εκδηλώσεων"
5294
 
5295
+ #: src/Tribe/Main.php:1078
5296
  msgid "Customizing the Events plugins"
5297
  msgstr ""
5298
 
5299
+ #: src/Tribe/Main.php:1078
5300
  msgid "%s: Code and guides for customizing your calendar in useful and interesting ways."
5301
  msgstr ""
5302
 
5303
+ #: src/Tribe/Main.php:1076
5304
  msgid "Troubleshooting common problems"
5305
  msgstr ""
5306
 
5307
+ #: src/Tribe/Main.php:1076
5308
  msgid "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5309
  msgstr ""
5310
 
5311
+ #: src/Tribe/Main.php:1074
5312
  msgid "Using stylesheets and page templates"
5313
  msgstr ""
5314
 
5315
+ #: src/Tribe/Main.php:1074
5316
  msgid "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5317
  msgstr ""
5318
 
5319
+ #: src/Tribe/Main.php:1072
5320
  msgid "Themer’s Guide"
5321
  msgstr ""
5322
 
5323
+ #: src/Tribe/Main.php:1072
5324
  msgid "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5325
  msgstr ""
5326
 
5327
+ #: src/Tribe/Main.php:1070
5328
  msgid "Features overview"
5329
  msgstr ""
5330
 
5331
+ #: src/Tribe/Main.php:1070
5332
  msgid "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5333
  msgstr ""
5334
 
5335
+ #: src/Tribe/Main.php:1068
5336
  msgid "Settings overview"
5337
  msgstr ""
5338
 
5339
+ #: src/Tribe/Main.php:1068
5340
  msgid "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5341
  msgstr ""
5342
 
5343
+ #: src/Tribe/Main.php:1065
5344
  msgid "Support for The Events Calendar"
5345
  msgstr ""
5346
 
5347
+ #: src/Tribe/Main.php:1054
5348
  msgid "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5349
  msgstr ""
5350
 
5351
+ #: src/Tribe/Main.php:1052
5352
  msgid "New User Primer"
5353
  msgstr ""
5354
 
5371
  msgid "CSV Import Settings"
5372
  msgstr ""
5373
 
5374
+ #: src/deprecated/Tribe__Events__Asset__Bootstrap_Datepicker.php:27
5375
  msgid "Clear"
5376
  msgstr "Καθαρισμός"
5377
 
5383
  msgid "Create New %s"
5384
  msgstr ""
5385
 
5386
+ #: src/Tribe/Organizer.php:375
5387
  msgid "Unnamed %s"
5388
  msgstr ""
5389
 
5519
  #: common/src/Tribe/Admin/Help_Page.php:203
5520
  #: common/src/Tribe/Plugins_API.php:111
5521
  msgid "Eventbrite Tickets"
5522
+ msgstr "Εισητήρια Eventbrite "
5523
 
5524
  #: common/src/Tribe/Admin/Help_Page.php:170
5525
  msgid " and "
5557
 
5558
  #: src/Tribe/Organizer.php:198
5559
  msgid "organizers"
5560
+ msgstr "διοργανωτές"
5561
 
5562
  #: src/admin-views/aggregator/origins/gcal.php:117
5563
  #: src/admin-views/aggregator/origins/ical.php:111
5571
  msgid "%s must be a positive number or percent."
5572
  msgstr ""
5573
 
5574
+ #: src/Tribe/Main.php:999
5575
  msgid "%1$s or %2$s"
5576
  msgstr ""
5577
 
5593
 
5594
  #: src/views/widgets/list-widget.php:112
5595
  msgid "View All %s"
5596
+ msgstr "Δείτε όλες τις %s"
5597
 
5598
  #: src/views/single-event.php:46 src/views/single-event.php:80
5599
  msgid "%s Navigation"
5628
  msgid "Day Navigation"
5629
  msgstr "Πλοήγηση Ημέρας"
5630
 
5631
+ #: src/Tribe/Aggregator/Tabs/New.php:400
5632
  msgid "Import complete!"
5633
  msgstr "Εισαγωγή ολοκληρώθηκε!"
5634
 
5870
  msgstr "Περισσότερα…"
5871
 
5872
  #: common/src/Tribe/Admin/Help_Page.php:194 common/src/Tribe/Plugins_API.php:43
5873
+ #: src/Tribe/Main.php:1105
5874
  msgid "Events Calendar PRO"
5875
  msgstr "The Events Calendar PRO"
5876
 
6309
  msgid "%s Website"
6310
  msgstr "Σελίδα %s"
6311
 
6312
+ #: src/Tribe/Aggregator/Record/List_Table.php:509
6313
  msgid "Location:"
6314
  msgstr "Τοποθεσία:"
6315
 
7714
  msgid "Template overrides should be moved to the correct subdirectory: %s"
7715
  msgstr "Οι παρακάμψεις λόγω template θα πρέπει να μετακινηθούν στον σωστό υποκατάλογο: %s"
7716
 
7717
+ #: src/Tribe/Template_Factory.php:237
7718
  msgid "No previous %s "
7719
  msgstr "Καμία Προηγούμενη %s "
7720
 
7721
+ #: src/Tribe/Template_Factory.php:235 src/Tribe/Template_Factory.php:240
7722
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7723
  msgstr "Δεν βρέθηκαν %1$s στις %2$s. Δοκιμάστε να δείτε το πλήρες ημερολόγιο για μια πλήρη λίστα των %3$s."
7724
 
7725
+ #: src/Tribe/Template_Factory.php:233
7726
  msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7727
  msgstr "Δεν υπάρχουν %1$s για %2$s. Δοκιμάστε να δείτε όλες τις επερχόμενες %3$s ή δείτε το πλήρες ημερολόγιο. "
7728
 
7730
  msgid "This %s has passed."
7731
  msgstr "Αυτή η %s έχει τελειώσει."
7732
 
7733
+ #: src/Tribe/Template/Month.php:955
7734
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7735
  msgstr "Η επιλεγμένη ημέρα \"%s\" δεν ήταν έγκυρη &ndash; εμφάνιση τρέχοντος μήνα"
7736
 
7737
+ #: src/Tribe/Template/Month.php:464 src/Tribe/Template_Factory.php:242
7738
  msgid "There were no results found."
7739
  msgstr "Δεν βρέθηκαν αποτελέσματα."
7740
 
7741
+ #: src/Tribe/Template/Month.php:462
7742
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7743
  msgstr "Δεν υπάρχουν %1$s προγραμματισμένες για %2$s. Δοκιμάστε να δείτε όλο το ημερολόγιο για μια πλήρη λίστα των δραστηριοτήτων."
7744
 
7745
+ #: src/Tribe/Template/Day.php:152
7746
  msgid "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7747
  msgstr "Δεν βρέθηκαν %1$s για %2$s προγραμματισμένες για <strong>%3$s</strong>. Δοκιμάστε μια άλλη μέρα."
7748
 
7749
+ #: src/Tribe/Template/Day.php:118 src/Tribe/Template/Day.php:134
7750
  msgid "Ongoing"
7751
  msgstr "Συνεχίζεται"
7752
 
7753
+ #: src/Tribe/Aggregator/Page.php:82 src/Tribe/Template/Day.php:115
7754
+ #: src/Tribe/Template/Day.php:131
7755
  msgid "All Day"
7756
  msgstr "Ολοήμερη Εκδήλωση"
7757
 
7846
  msgid "Error"
7847
  msgstr "Σφάλμα"
7848
 
7849
+ #: src/Tribe/Main.php:4198
7850
  msgid "Once Every 30 Mins"
7851
  msgstr "Κάθε 30 λεπτά"
7852
 
7853
+ #: src/Tribe/Main.php:4118
7854
  msgid "Day Of"
7855
  msgstr "Ημέρα Της"
7856
 
7857
+ #: src/Tribe/Main.php:4116
7858
  msgid "%s From"
7859
  msgstr "%s Από"
7860
 
7861
+ #: src/Tribe/Main.php:4112
7862
  msgid "%s In"
7863
  msgstr "%s στις"
7864
 
7865
+ #: src/Tribe/Main.php:4107 src/Tribe/Main.php:4132
7866
  #: src/admin-views/aggregator/origins/refine.php:7
7867
  msgid "Date"
7868
  msgstr "Ημερομηνία"
7869
 
7870
+ #: src/Tribe/Main.php:4034
7871
  msgid "Search"
7872
  msgstr "Αναζήτηση"
7873
 
7874
+ #: src/Tribe/Main.php:4008 src/admin-views/aggregator/fields/schedule.php:44
7875
  #: src/admin-views/aggregator/fields/schedule.php:62
7876
  msgid "Day"
7877
  msgstr "Ημέρα"
7878
 
7879
+ #: src/Tribe/Main.php:3991
7880
  msgid "Month"
7881
  msgstr "Μήνας"
7882
 
7883
+ #: src/Tribe/Main.php:3973
7884
  msgid "List"
7885
  msgstr "Λίστα"
7886
 
7887
+ #: src/Tribe/Main.php:3957
7888
  msgid "Calendar"
7889
  msgstr "Ημερολόγιο"
7890
 
7891
  #: common/src/Tribe/Settings.php:254
7892
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:89 src/Tribe/Main.php:3956
7893
  msgid "Settings"
7894
  msgstr "Ρυθμίσεις"
7895
 
7903
  msgid "Add %s"
7904
  msgstr "Προσθήκη %s"
7905
 
7906
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:45 src/Tribe/Main.php:3907
7907
  msgid "View Calendar"
7908
  msgstr "Προβολή Ημερολογίου"
7909
 
7911
  msgid "%s"
7912
  msgstr "%s"
7913
 
7914
+ #: src/Tribe/Main.php:3854
7915
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7916
  msgstr "Ψάχνετε για πρόσθετη λειτουργικότητα όπως επαναλαμβανόμενες εκδηλώσεις, πωλήσεις εισιτηρίων, δημοσίως καταχωρημένες εκδηλώσεις, νέες εμφανίσεις και άλλα;"
7917
 
7918
+ #: src/Tribe/Main.php:3849
7919
  msgid "Additional Functionality"
7920
  msgstr "Πρόσθετη Λειτουργικότητα"
7921
 
7922
+ #: src/Tribe/Main.php:3804
7923
  msgid "News from Modern Tribe"
7924
  msgstr "Νέα από την Modern Tribe"
7925
 
7926
+ #: src/Tribe/Main.php:3784
7927
  msgid "View All Add-Ons"
7928
  msgstr "Προβολή όλων των Επεκτάσεων"
7929
 
7930
+ #: src/Tribe/Main.php:3781
7931
  msgid "Support"
7932
  msgstr "Υποστήριξη"
7933
 
7934
+ #: src/Tribe/Main.php:3429 src/Tribe/Main.php:3442
7935
  msgid "%s Information"
7936
  msgstr "%s Πληροφορίες"
7937
 
7938
+ #: src/Tribe/Main.php:3420
7939
  msgid "%s Options"
7940
  msgstr "Επιλογές %s"
7941
 
7942
+ #: src/Tribe/Main.php:3343 src/Tribe/Main.php:3378
7943
  #: src/functions/template-tags/day.php:157
7944
  #: src/functions/template-tags/day.php:178
7945
  msgid "Date out of range."
7946
  msgstr "Ημερομήνια εκτός ορίων."
7947
 
7948
+ #: src/Tribe/Main.php:2170
7949
  msgid "all"
7950
  msgstr "όλα"
7951
 
7952
+ #: src/Tribe/Main.php:2169 src/functions/template-tags/general.php:111
7953
  msgid "events"
7954
  msgstr "εκδηλώσεων"
7955
 
7956
+ #: src/Tribe/Main.php:2168 src/functions/template-tags/general.php:79
7957
  msgid "event"
7958
  msgstr "εκδήλωση"
7959
 
7960
+ #: src/Tribe/Main.php:2167
7961
  msgid "page"
7962
  msgstr "σελίδα"
7963
 
7969
  msgid "Done"
7970
  msgstr "Τέλος"
7971
 
7972
+ #: common/src/Tribe/Main.php:272
7973
+ #: src/deprecated/Tribe__Events__Asset__Bootstrap_Datepicker.php:28
7974
  #: src/functions/template-tags/day.php:104
7975
  msgid "Today"
7976
  msgstr "Σήμερα"
7983
  msgid "Next"
7984
  msgstr "Επόμενο"
7985
 
7986
+ #: src/Tribe/Linked_Posts.php:1138
7987
  msgid "No saved %s exists."
7988
  msgstr "Δεν υπάρχουν αποθηκευμένοι %s."
7989
 
7990
+ #: src/Tribe/Linked_Posts.php:964
7991
  msgid "Available %s"
7992
  msgstr "Διαθέσιμοι %s"
7993
 
7994
+ #: src/Tribe/Linked_Posts.php:960
7995
  msgid "My %s"
7996
  msgstr "Οι %s μου"
7997
 
7998
+ #: src/Tribe/Main.php:1858 src/Tribe/Main.php:1878
7999
  msgid "%s draft updated."
8000
  msgstr "Το προσχέδιο του/της %s ανανεώθηκε."
8001
 
8002
+ #: src/Tribe/Main.php:1851 src/Tribe/Main.php:1871
8003
  msgid "%s submitted."
8004
  msgstr "Το %s καταχωρήθηκε."
8005
 
8006
+ #: src/Tribe/Main.php:1849 src/Tribe/Main.php:1869
8007
  msgid "%s published."
8008
  msgstr "Το %s δημοσιεύτηκε."
8009
 
8010
  #. translators: %s: date and time of the revision
8011
+ #: src/Tribe/Main.php:1868
8012
  msgid "%s restored to revision from %s"
8013
  msgstr "Το %s αποκαταστάθηκε στην αναθεώρηση από %s"
8014
 
8015
  #. translators: Publish box date format, see http://php.net/date
8016
+ #: src/Tribe/Main.php:1828 src/Tribe/Main.php:1856 src/Tribe/Main.php:1876
8017
  msgid "M j, Y @ G:i"
8018
  msgstr "M j, Y @ G:i"
8019
 
8020
+ #: src/Tribe/Main.php:1817 src/Tribe/Main.php:1850 src/Tribe/Main.php:1870
8021
  msgid "%s saved."
8022
  msgstr "Το %s αποθηκεύθηκε."
8023
 
8024
  #. translators: %s: date and time of the revision
8025
+ #: src/Tribe/Main.php:1810 src/Tribe/Main.php:1848
8026
  msgid "%1$s restored to revision from %2$s"
8027
  msgstr "%1$s επαναφέρθηκε στην έκδοση από %2$s"
8028
 
8029
+ #: src/Tribe/Main.php:1808 src/Tribe/Main.php:1843 src/Tribe/Main.php:1846
8030
+ #: src/Tribe/Main.php:1863 src/Tribe/Main.php:1866
8031
  msgid "%s updated."
8032
  msgstr "Το %s ενημερώθηκε."
8033
 
8034
+ #: src/Tribe/Main.php:1807 src/Tribe/Main.php:1845 src/Tribe/Main.php:1865
8035
  msgid "Custom field deleted."
8036
  msgstr "Το προσαρμοσμένο πεδίο διαγράφηκε."
8037
 
8038
+ #: src/Tribe/Main.php:1806 src/Tribe/Main.php:1844 src/Tribe/Main.php:1864
8039
  msgid "Custom field updated."
8040
  msgstr "Το προσαρμοσμένο πεδίο ενημερώθηκε."
8041
 
8042
+ #: src/Tribe/Main.php:1784
8043
  msgid "New %s Category Name"
8044
  msgstr "Νέο Όνομα Κατηγορίας %s"
8045
 
8046
+ #: src/Tribe/Main.php:1783
8047
  msgid "Add New %s Category"
8048
  msgstr "Προσθήκη νέας κατηγορίας %s"
8049
 
8050
+ #: src/Tribe/Main.php:1782
8051
  msgid "Update %s Category"
8052
  msgstr "Ανανέωση κατηγορίας %s"
8053
 
8054
+ #: src/Tribe/Main.php:1781
8055
  msgid "Edit %s Category"
8056
  msgstr "Επεξεργασία κατηγορίας %s"
8057
 
8058
+ #: src/Tribe/Main.php:1780
8059
  msgid "Parent %s Category:"
8060
  msgstr ""
8061
 
8062
+ #: src/Tribe/Main.php:1779
8063
  msgid "Parent %s Category"
8064
  msgstr ""
8065
 
8066
+ #: src/Tribe/Main.php:1778
8067
  msgid "All %s Categories"
8068
  msgstr "Όλες οι %s Κατηγορίες"
8069
 
8070
+ #: src/Tribe/Main.php:1777
8071
  msgid "Search %s Categories"
8072
  msgstr "Αναζήτηση κατηγορίας %s"
8073
 
8074
+ #: src/Tribe/Main.php:1776
8075
  msgid "%s Category"
8076
  msgstr "Κατηγορία %s"
8077
 
8078
+ #: src/Tribe/Main.php:1766 src/Tribe/Organizer.php:98 src/Tribe/Venue.php:117
8079
  msgid "No %s found in Trash"
8080
  msgstr "Δεν βρέθηκε %s στον Κάδο Ανακύκλωσης"
8081
 
8082
+ #: src/Tribe/Main.php:1765 src/Tribe/Organizer.php:97 src/Tribe/Venue.php:116
8083
  msgid "No %s found"
8084
  msgstr "Δεν βρέθηκε %s"
8085
 
8086
+ #: src/Tribe/Main.php:1764 src/Tribe/Organizer.php:96 src/Tribe/Venue.php:115
8087
  msgid "Search %s"
8088
  msgstr "Αναζήτηση %s"
8089
 
8090
+ #: src/Tribe/Main.php:1763 src/Tribe/Organizer.php:95 src/Tribe/Venue.php:114
8091
  #: src/views/month/single-day.php:26
8092
  msgid "View %s"
8093
  msgstr "Προβολή %s"
8094
 
8095
+ #: src/Tribe/Main.php:1762 src/Tribe/Organizer.php:94 src/Tribe/Venue.php:113
8096
  msgid "New %s"
8097
  msgstr "Νέος/α/ο %s"
8098
 
8099
+ #: src/Tribe/Main.php:1760 src/Tribe/Main.php:1892 src/Tribe/Main.php:1893
8100
  #: src/Tribe/Organizer.php:92 src/Tribe/Venue.php:111
8101
  msgid "Add New %s"
8102
  msgstr "Προσθήκη Νέας %s"
8103
 
8104
+ #: src/Tribe/Main.php:1759 src/Tribe/Organizer.php:91 src/Tribe/Venue.php:110
8105
  msgid "Add New"
8106
  msgstr "Προσθήκη Νέου"
8107
 
8108
+ #: src/Tribe/Main.php:1726 src/Tribe/Main.php:2165
8109
  msgid "tag"
8110
  msgstr "tag"
8111
 
8112
+ #: src/Tribe/Main.php:1712 src/Tribe/Main.php:2166
8113
  msgid "category"
8114
  msgstr "category"
8115
 
8116
+ #: src/Tribe/Main.php:1464
8117
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8118
  msgstr "Μας συγχωρείτε, το The Events Calendar απαιτεί PHP έκδοσης %s ή νεότερη. Επικοινωνήστε με τον Web hosting πάροχό σας για να μεταβείτε σε νεότερη έκδοση της PHP."
8119
 
8120
+ #: src/Tribe/Main.php:1461
8121
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8122
  msgstr "Μας συγχωρείτε, το The Events Calendar απαιτεί WordPress έκδοσης %s ή νεότερο. Παρακαλούμε αναβαθμίστε την εγκαταστασή σας."
8123
 
8135
  msgid "Display"
8136
  msgstr "Εμφάνιση"
8137
 
8138
+ #: src/Tribe/Main.php:1308
8139
  msgid "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8140
  msgstr ""
8141
 
8142
+ #: src/Tribe/Main.php:1296
8143
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8144
  msgstr "Η έκδοση του The Events Calendar που χρησιμοποιείτε δεν είναι ενημερωμένη με μία από τις επεκτάσεις του The Events Calendar. Παρακαλούμε %sαναβαθμίστε τώρα.%s"
8145
 
8146
+ #: src/Tribe/Main.php:786
8147
  msgid "Initializing Tribe Events on %s"
8148
  msgstr "Αρχικοποίηση των Tribe Events στο %s"
8149
 
8150
+ #: src/Tribe/Main.php:761
8151
  msgid "today"
8152
  msgstr "today"
8153
 
8154
+ #: src/Tribe/Main.php:760
8155
  msgid "day"
8156
  msgstr "day"
8157
 
8158
+ #: src/Tribe/Main.php:759
8159
  msgid "past"
8160
  msgstr "past"
8161
 
8162
+ #: src/Tribe/Main.php:758
8163
  msgid "upcoming"
8164
  msgstr "upcoming"
8165
 
8166
+ #: src/Tribe/Main.php:757
8167
  msgid "list"
8168
  msgstr "list"
8169
 
8170
+ #: src/Tribe/Main.php:756
8171
  msgid "month"
8172
  msgstr "month"
8173
 
8174
+ #. #-#-#-#-# the-events-calendar-code.pot (The Events Calendar 4.6.22.1)
8175
  #. #-#-#-#-#
8176
  #. Plugin Name of the plugin/theme
8177
  #: common/src/Tribe/Admin/Help_Page.php:59 common/src/Tribe/Customizer.php:569
8178
+ #: common/src/Tribe/Plugins_API.php:25 src/Tribe/Main.php:749
8179
+ #: src/Tribe/Main.php:1092 src/Tribe/Privacy.php:29
8180
  #: src/functions/template-tags/general.php:1345
8181
  msgid "The Events Calendar"
8182
  msgstr "The Events Calendar"
8183
 
8184
+ #: src/Tribe/Main.php:1162 src/admin-views/aggregator/tabs/import-form.php:185
8185
  #: src/admin-views/aggregator/tabs/import-form.php:197
8186
  #: src/functions/template-tags/general.php:63
8187
  msgid "Event"
8188
  msgstr "Εκδήλωση"
8189
 
8190
  #: common/src/Tribe/Settings.php:177 common/src/Tribe/Settings.php:241
8191
+ #: common/src/Tribe/Settings.php:242 src/Tribe/Main.php:1154
8192
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:207
8193
  #: src/functions/template-tags/general.php:95
8194
  msgid "Events"
8195
  msgstr "Εκδηλώσεις"
8196
 
8197
+ #: src/Tribe/Organizer.php:157 src/functions/template-tags/organizer.php:112
8198
  msgid "Organizer"
8199
  msgstr "Διοργανωτής"
8200
 
8201
  #: src/Tribe/Organizer.php:171
8202
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:206
8203
+ #: src/functions/template-tags/organizer.php:123
8204
  msgid "Organizers"
8205
  msgstr "Διοργανωτές"
8206
 
8464
  msgid "End:"
8465
  msgstr "Τέλος:"
8466
 
8467
+ #: src/Tribe/Aggregator/Record/List_Table.php:505
8468
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
8469
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
8470
  #: src/views/modules/meta/details.php:66 src/views/modules/meta/details.php:91
8483
  msgid "Start Date"
8484
  msgstr "Ημερομηνία Έναρξης"
8485
 
8486
+ #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1775
8487
  msgid "%s Categories"
8488
  msgstr "%s Κατηγορίες"
8489
 
8494
  #: src/Tribe/Admin/Timezone_Updater.php:87
8495
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
8496
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:100
8497
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:210
8498
  msgid "%d%% complete"
8499
  msgstr "%d%% ολοκληρωμένο"
8500
 
8507
  msgstr ""
8508
 
8509
  #: src/Tribe/Admin/Bar/Default_Configurator.php:62
8510
+ #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:211 src/Tribe/Main.php:1761
8511
+ #: src/Tribe/Main.php:4843 src/Tribe/Main.php:4890 src/Tribe/Organizer.php:93
8512
  #: src/Tribe/Venue.php:112
8513
  msgid "Edit %s"
8514
  msgstr "Επεξεργασία %s"
8515
 
8516
+ #: src/Tribe/Main.php:4827 src/Tribe/Main.php:4884
8517
  msgid "Use Saved %s:"
8518
  msgstr "Χρήση Αποθηκευμένου %s:"
8519
 
8520
+ #: src/Tribe/Main.php:991
8521
  msgid " ask the site administrator set a different Events URL slug."
8522
  msgstr ""
8523
 
8524
+ #: src/Tribe/Main.php:985
8525
  msgid "Ask the site administrator to edit the %s slug"
8526
  msgstr ""
8527
 
8529
  msgid "Thanks for Updating The Events Calendar"
8530
  msgstr "Ευχαριστούμε που αναβαθμίσατε το The Events Calendar"
8531
 
8532
+ #: src/Tribe/Main.php:844 src/Tribe/Main.php:846
8533
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
8534
  msgid "Welcome to The Events Calendar"
8535
  msgstr "Καλωσήρθατε στο The Events Calendar"
lang/the-events-calendar-en_CA.mo CHANGED
Binary file
lang/the-events-calendar-en_CA.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - The Events Calendar - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2018-07-11 22:07:27+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,6 +11,31 @@ msgstr ""
11
  "Language: en_CA\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: src/views/month/single-day.php:57
15
  msgid "%s for %s"
16
  msgstr "%s for %s"
@@ -183,91 +208,91 @@ msgstr "Learn more"
183
  msgid "Do more with Eventbrite Tickets"
184
  msgstr "Do more with Eventbrite Tickets"
185
 
186
- #: src/Tribe/Main.php:4513
187
  msgid "Search for %s by month. Please use the format %s."
188
  msgstr "Search for %s by month. Please use the format %s."
189
 
190
- #: src/Tribe/Main.php:4508
191
  msgid "Search for %s by Date. Please use the format %s."
192
  msgstr "Search for %s by Date. Please use the format %s."
193
 
194
- #: src/Tribe/Main.php:4476 src/Tribe/Main.php:4477
195
  msgid "2 digit month dot 4 digit year"
196
  msgstr "2 digit month dot 4 digit year"
197
 
198
- #: src/Tribe/Main.php:4475
199
  msgid "4 digit year dot 2 digit month"
200
  msgstr "4 digit year dot 2 digit month"
201
 
202
- #: src/Tribe/Main.php:4474
203
  msgid "2 digit month hyphen 4 digit year"
204
  msgstr "2 digit month hyphen 4 digit year"
205
 
206
- #: src/Tribe/Main.php:4471 src/Tribe/Main.php:4472 src/Tribe/Main.php:4473
207
  msgid "1 digit month hyphen 4 digit year"
208
  msgstr "1 digit month hyphen 4 digit year"
209
 
210
- #: src/Tribe/Main.php:4468 src/Tribe/Main.php:4470
211
  msgid "2 digit month slash 4 digit year"
212
  msgstr "2 digit month slash 4 digit year"
213
 
214
- #: src/Tribe/Main.php:4467 src/Tribe/Main.php:4469
215
  msgid "1 digit month slash 4 digit year"
216
  msgstr "1 digit month slash 4 digit year"
217
 
218
- #: src/Tribe/Main.php:4466
219
  msgid "4 digit year hyphen 2 digit month"
220
  msgstr "4 digit year hyphen 2 digit month"
221
 
222
- #: src/Tribe/Main.php:4462
223
  msgid "2 digit day dot 2 digit month dot 4 digit year"
224
  msgstr "2 digit day dot 2 digit month dot 4 digit year"
225
 
226
- #: src/Tribe/Main.php:4461
227
  msgid "2 digit month dot 2 digit day dot 4 digit year"
228
  msgstr "2 digit month dot 2 digit day dot 4 digit year"
229
 
230
- #: src/Tribe/Main.php:4460
231
  msgid "4 digit year dot 2 digit month dot 2 digit day"
232
  msgstr "4 digit year dot 2 digit month dot 2 digit day"
233
 
234
- #: src/Tribe/Main.php:4459
235
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
236
  msgstr "2 digit day hyphen 2 digit month hyphen 4 digit year"
237
 
238
- #: src/Tribe/Main.php:4458
239
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
240
  msgstr "1 digit day hyphen 1 digit month hyphen 4 digit year"
241
 
242
- #: src/Tribe/Main.php:4457
243
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
244
  msgstr "1 digit month hyphen 2 digit day hyphen 4 digit year"
245
 
246
- #: src/Tribe/Main.php:4456
247
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
248
  msgstr "1 digit month hyphen 1 digit day hyphen 4 digit year"
249
 
250
- #: src/Tribe/Main.php:4455
251
  msgid "2 digit day slash 2 digit month slash 4 digit year"
252
  msgstr "2 digit day slash 2 digit month slash 4 digit year"
253
 
254
- #: src/Tribe/Main.php:4454
255
  msgid "1 digit day slash 1 digit month slash 4 digit year"
256
  msgstr "1 digit day slash 1 digit month slash 4 digit year"
257
 
258
- #: src/Tribe/Main.php:4453
259
  msgid "2 digit month slash 2 digit day slash 4 digit year"
260
  msgstr "2 digit month slash 2 digit day slash 4 digit year"
261
 
262
- #: src/Tribe/Main.php:4452
263
  msgid "1 digit month slash 1 digit day slash 4 digit year"
264
  msgstr "1 digit month slash 1 digit day slash 4 digit year"
265
 
266
- #: src/Tribe/Main.php:4451
267
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
268
  msgstr "4 digit year hyphen 2 digit month hyphen 2 digit day"
269
 
270
- #: src/Tribe/Main.php:4430
271
  msgid "Search for %s by Keyword."
272
  msgstr "Search for %s by Keyword."
273
 
@@ -495,7 +520,7 @@ msgid "Search our support help desk"
495
  msgstr "Search our support help desk"
496
 
497
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
498
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:369
499
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
500
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
501
  msgid "The requested page was not found."
@@ -509,12 +534,12 @@ msgstr "one month"
509
  msgid "one week"
510
  msgstr "one week"
511
 
512
- #: src/Tribe/Aggregator/Record/List_Table.php:570
513
  msgctxt "when the retry will happen, a date"
514
  msgid "retrying at %s"
515
  msgstr "retrying at %s"
516
 
517
- #: src/Tribe/Aggregator/Record/List_Table.php:567
518
  msgctxt "in human readable time"
519
  msgid "retrying in about %s"
520
  msgstr "retrying in about %s"
@@ -596,8 +621,8 @@ msgid "Main %s Page"
596
  msgstr "Main %s Page"
597
 
598
  #: common/src/Tribe/Plugins_API.php:71
599
- msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Tickets have QR codes for easy check in at the door."
600
- msgstr "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Tickets have QR codes for easy check in at the door."
601
 
602
  #: src/admin-views/tribe-options-general.php:31
603
  msgid "The number of events per page on the List, Photo, and Map Views. Does not affect other views."
@@ -628,7 +653,7 @@ msgstr "An event with the specified ID does not exist."
628
  msgid "The event with the specified ID is not accessible."
629
  msgstr "The event with the specified ID is not accessible."
630
 
631
- #: src/Tribe/Main.php:1813
632
  msgid "%1$s published. %2$sView %3$s"
633
  msgstr "%1$s published. %2$sView %3$s"
634
 
@@ -979,11 +1004,11 @@ msgstr "Returns the data of the organizer with the specified post ID"
979
  msgid "the event post name"
980
  msgstr "the event post name"
981
 
982
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:341
983
  msgid "The event organizer IDs or data"
984
  msgstr "The event organizer IDs or data"
985
 
986
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:333
987
  msgid "The event venue ID or data"
988
  msgstr "The event venue ID or data"
989
 
@@ -1226,32 +1251,32 @@ msgstr "The number of organizers to return on each page"
1226
  msgid "Returns all the organizers matching the search criteria"
1227
  msgstr "Returns all the organizers matching the search criteria"
1228
 
1229
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:478
1230
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1231
  msgstr "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1232
 
1233
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:472
1234
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1235
  msgstr "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1236
 
1237
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:466
1238
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1239
  msgstr "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1240
 
1241
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:461
1242
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1243
  msgid "The event post status"
1244
  msgstr "The event post status"
1245
 
1246
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1247
  msgid "Events should be filtered by their featured status"
1248
  msgstr "Events should be filtered by their featured status"
1249
 
1250
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:446
1251
  msgid "Events should be assigned one of the specified organizer IDs"
1252
  msgstr "Events should be assigned one of the specified organizer IDs"
1253
 
1254
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
1255
  msgid "Events should be assigned one of the specified venue IDs"
1256
  msgstr "Events should be assigned one of the specified venue IDs"
1257
 
@@ -1345,48 +1370,48 @@ msgstr "The event slug"
1345
  msgid "The event status"
1346
  msgstr "The event status"
1347
 
1348
- #: src/Tribe/Linked_Posts.php:1126
1349
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1350
  msgid "Create or Find %s"
1351
  msgstr "Create or Find %s"
1352
 
1353
- #: src/Tribe/Linked_Posts.php:1117
1354
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1355
  msgid "Find %1$s %2$s"
1356
  msgstr "Find %1$s %2$s"
1357
 
1358
- #: src/Tribe/Linked_Posts.php:1108
1359
  msgid "Find a Venue"
1360
  msgstr "Find a Venue"
1361
 
1362
- #: src/Tribe/Linked_Posts.php:1107
1363
  msgid "Create or Find a Venue"
1364
  msgstr "Create or Find a Venue"
1365
 
1366
- #: src/Tribe/Linked_Posts.php:1100
1367
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1368
  msgid "Create or Find %s"
1369
  msgstr "Create or Find %s"
1370
 
1371
- #: src/Tribe/Linked_Posts.php:1091
1372
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1373
  msgid "Find %1$s %2$s"
1374
  msgstr "Find %1$s %2$s"
1375
 
1376
- #: src/Tribe/Linked_Posts.php:1080
1377
  msgid "Find an Organizer"
1378
  msgstr "Find an Organizer"
1379
 
1380
- #: src/Tribe/Linked_Posts.php:1079
1381
  msgid "Create or Find an Organizer"
1382
  msgstr "Create or Find an Organizer"
1383
 
1384
- #: src/Tribe/Linked_Posts.php:1072
1385
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1386
  msgid "Create or Find %s"
1387
  msgstr "Create or Find %s"
1388
 
1389
- #: src/Tribe/Linked_Posts.php:1063
1390
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1391
  msgid "Find %1$s %2$s"
1392
  msgstr "Find %1$s %2$s"
@@ -1482,20 +1507,20 @@ msgstr "A list of links to the term own, archive and parent REST URL"
1482
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1483
  msgstr "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1484
 
1485
- #: src/Tribe/Main.php:997
1486
  msgid "edit Events settings."
1487
  msgstr "edit Events settings."
1488
 
1489
- #: src/Tribe/Main.php:988
1490
  msgid "Edit the %s slug"
1491
  msgstr "Edit the %s slug"
1492
 
1493
- #: src/Tribe/Linked_Posts.php:1049
1494
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1495
  msgid "an"
1496
  msgstr "an"
1497
 
1498
- #: src/Tribe/Linked_Posts.php:1042
1499
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1500
  msgid "a"
1501
  msgstr "a"
@@ -1537,10 +1562,6 @@ msgstr "Featured Highlight Colour"
1537
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1538
  msgstr "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1539
 
1540
- #: common/src/Tribe/Plugins_API.php:37
1541
- msgid "Import events from across the web! Event Aggregator makes it easy to run scheduled or manual imports from Facebook, Meetup, Eventbrite, Google Calendar, and iCalendar, along with uploads from CSV and ICS files. You can also import directly from other sites running The Events Calendar thanks to our built-in REST API support."
1542
- msgstr "Import events from across the web! Event Aggregator makes it easy to run scheduled or manual imports from Facebook, Meetup, Eventbrite, Google Calendar, and iCalendar, along with uploads from CSV and ICS files. You can also import directly from other sites running The Events Calendar thanks to our built-in REST API support."
1543
-
1544
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1545
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1546
  msgstr "The Events Calendar could not write WPML default config file: please create the file manually."
@@ -1585,7 +1606,7 @@ msgstr "Cannot look for Terms without a taxonomy"
1585
  msgid "The event WordPress post ID"
1586
  msgstr "The event WordPress post ID"
1587
 
1588
- #: src/Tribe/Aggregator/Record/Abstract.php:362
1589
  msgid "Something went wrong while inserting the record in the database."
1590
  msgstr "Something went wrong while inserting the record in the database."
1591
 
@@ -1603,7 +1624,7 @@ msgstr[1] "It looks like you're using %1$s, but the licence keys are invalid. Pl
1603
  msgid "Please refresh the page and try your request again."
1604
  msgstr "Please refresh the page and try your request again."
1605
 
1606
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:28
1607
  msgid "The image WordPress post ID"
1608
  msgstr "The image WordPress post ID"
1609
 
@@ -1663,11 +1684,11 @@ msgstr "The requested post ID does not exist or is not an organizer"
1663
  msgid "The event last modification date in UTC time"
1664
  msgstr "The event last modification date in UTC time"
1665
 
1666
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:403
1667
  msgid "Events should start after the specified date"
1668
  msgstr "Events should start after the specified date"
1669
 
1670
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:410
1671
  msgid "Events should start before the specified date"
1672
  msgstr "Events should start before the specified date"
1673
 
@@ -1703,7 +1724,7 @@ msgstr "The 'search' parameter must be a string"
1703
  msgid "the event post ID"
1704
  msgstr "the event post ID"
1705
 
1706
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:416
1707
  msgid "Events should contain the specified string in the title or description"
1708
  msgstr "Events should contain the specified string in the title or description"
1709
 
@@ -1999,31 +2020,31 @@ msgid "The requested URL does not have any upcoming and published events matchin
1999
  msgstr "The requested URL does not have any upcoming and published events matching the search criteria."
2000
 
2001
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2002
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:388
2003
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2004
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2005
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2006
  msgid "The archive page to return"
2007
  msgstr "The archive page to return"
2008
 
2009
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:396
2010
  msgid "The number of events to return on each page"
2011
  msgstr "The number of events to return on each page"
2012
 
2013
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:422
2014
  msgid "Events should be assigned one of the specified categories slugs or IDs"
2015
  msgstr "Events should be assigned one of the specified categories slugs or IDs"
2016
 
2017
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:430
2018
  msgid "Events should be assigned one of the specified tags slugs or IDs"
2019
  msgstr "Events should be assigned one of the specified tags slugs or IDs"
2020
 
2021
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:358
2022
  msgid "Returns all the upcoming events matching the search criteria"
2023
  msgstr "Returns all the upcoming events matching the search criteria"
2024
 
2025
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:36
2026
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:366
2027
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:64
2028
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:53
2029
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:61
@@ -2238,13 +2259,13 @@ msgstr "Three months"
2238
  msgid "three months"
2239
  msgstr "three months"
2240
 
2241
- #: src/Tribe/Aggregator/Tabs/New.php:373
2242
  msgid "%1$d new event tag was created."
2243
  msgid_plural "%1$d new event tags were created."
2244
  msgstr[0] "%1$d new event tag was created."
2245
  msgstr[1] "%1$d new event tags were created."
2246
 
2247
- #: src/Tribe/Aggregator/Tabs/New.php:377
2248
  msgid "View your event tags"
2249
  msgstr "View your event tags"
2250
 
@@ -2303,7 +2324,7 @@ msgstr "%1$s for %2$s"
2303
  msgid "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2304
  msgstr "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2305
 
2306
- #: src/Tribe/Main.php:765
2307
  msgctxt "all events slug"
2308
  msgid "all"
2309
  msgstr "all"
@@ -2344,7 +2365,7 @@ msgstr "The term name"
2344
  msgid "The WordPress term ID"
2345
  msgstr "The WordPress term ID"
2346
 
2347
- #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:36
2348
  msgid "The link to the image in the specified size on the site"
2349
  msgstr "The link to the image in the specified size on the site"
2350
 
@@ -2360,19 +2381,19 @@ msgstr "The image height in pixels in the specified size"
2360
  msgid "The image width in pixels in the specified size"
2361
  msgstr "The image width in pixels in the specified size"
2362
 
2363
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:44
2364
  msgid "The details about each size available for the image"
2365
  msgstr "The details about each size available for the image"
2366
 
2367
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:40
2368
  msgid "The image natural height in pixels"
2369
  msgstr "The image natural height in pixels"
2370
 
2371
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:36
2372
  msgid "The image natural width in pixels"
2373
  msgstr "The image natural width in pixels"
2374
 
2375
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:32
2376
  msgid "The image file extension"
2377
  msgstr "The image file extension"
2378
 
@@ -2380,7 +2401,7 @@ msgstr "The image file extension"
2380
  msgid "The venue WordPress post ID"
2381
  msgstr "The venue WordPress post ID"
2382
 
2383
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:24
2384
  msgid "The URL to the full size version of the image"
2385
  msgstr "The URL to the full size version of the image"
2386
 
@@ -2420,7 +2441,7 @@ msgstr "The position of the currency symbol in the cost string"
2420
  msgid "The cost currency symbol"
2421
  msgstr "The cost currency symbol"
2422
 
2423
- #: src/Tribe/Main.php:4434
2424
  msgid "Keyword"
2425
  msgstr "Keyword"
2426
 
@@ -2495,12 +2516,12 @@ msgstr "Event Aggregator Control"
2495
  msgid "Export Events"
2496
  msgstr "Export Events"
2497
 
2498
- #: src/Tribe/Main.php:764
2499
  msgctxt "featured events slug"
2500
  msgid "featured"
2501
  msgstr "featured"
2502
 
2503
- #: src/Tribe/Linked_Posts.php:1005
2504
  msgid "Create: <b><%= term %></b>"
2505
  msgstr "Create: <b><%= term %></b>"
2506
 
@@ -2649,175 +2670,177 @@ msgstr "These settings impact all list-style views, including List View and Day
2649
  msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2650
  msgstr "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2651
 
2652
- #: src/Tribe/Asset/Dynamic.php:77
2653
  msgid "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2654
  msgstr "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2655
 
2656
- #: src/Tribe/Asset/Dynamic.php:76
2657
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2658
  msgstr "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2659
 
2660
- #: src/Tribe/Asset/Dynamic.php:75
2661
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2662
  msgstr "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2663
 
2664
- #: src/Tribe/Asset/Dynamic.php:74
2665
  msgid "This event is all day on %%startdatewithyear%%."
2666
  msgstr "This event is all day on %%startdatewithyear%%."
2667
 
2668
- #: src/Tribe/Asset/Dynamic.php:73
2669
  msgid "This event is at %%starttime%% on %%startdatewithyear%%."
2670
  msgstr "This event is at %%starttime%% on %%startdatewithyear%%."
2671
 
2672
- #: src/Tribe/Asset/Dynamic.php:72
2673
  msgid "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2674
  msgstr "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2675
 
2676
- #: src/Tribe/Asset/Dynamic.php:69
2677
  msgid "Dec"
2678
  msgstr "Dec"
2679
 
2680
- #: src/Tribe/Asset/Dynamic.php:68
2681
  msgid "Nov"
2682
  msgstr "Nov"
2683
 
2684
- #: src/Tribe/Asset/Dynamic.php:67
2685
  msgid "Oct"
2686
  msgstr "Oct"
2687
 
2688
- #: src/Tribe/Asset/Dynamic.php:66
2689
  msgid "Sep"
2690
  msgstr "Sep"
2691
 
2692
- #: src/Tribe/Asset/Dynamic.php:65
2693
  msgid "Aug"
2694
  msgstr "Aug"
2695
 
2696
- #: src/Tribe/Asset/Dynamic.php:64
2697
  msgid "Jul"
2698
  msgstr "Jul"
2699
 
2700
- #: src/Tribe/Asset/Dynamic.php:63
2701
  msgid "Jun"
2702
  msgstr "Jun"
2703
 
2704
- #: src/Tribe/Asset/Dynamic.php:61
2705
  msgid "Apr"
2706
  msgstr "Apr"
2707
 
2708
- #: src/Tribe/Asset/Dynamic.php:60
2709
  msgid "Mar"
2710
  msgstr "Mar"
2711
 
2712
- #: src/Tribe/Asset/Dynamic.php:59
2713
  msgid "Feb"
2714
  msgstr "Feb"
2715
 
2716
- #: src/Tribe/Asset/Dynamic.php:58
2717
  msgid "Jan"
2718
  msgstr "Jan"
2719
 
2720
- #: src/Tribe/Asset/Dynamic.php:55
2721
  msgid "December"
2722
  msgstr "December"
2723
 
2724
- #: src/Tribe/Asset/Dynamic.php:54
2725
  msgid "November"
2726
  msgstr "November"
2727
 
2728
- #: src/Tribe/Asset/Dynamic.php:53
2729
  msgid "October"
2730
  msgstr "October"
2731
 
2732
- #: src/Tribe/Asset/Dynamic.php:52
2733
  msgid "September"
2734
  msgstr "September"
2735
 
2736
- #: src/Tribe/Asset/Dynamic.php:51
2737
  msgid "August"
2738
  msgstr "August"
2739
 
2740
- #: src/Tribe/Asset/Dynamic.php:50
2741
  msgid "July"
2742
  msgstr "July"
2743
 
2744
- #: src/Tribe/Asset/Dynamic.php:49
2745
  msgid "June"
2746
  msgstr "June"
2747
 
2748
- #: src/Tribe/Asset/Dynamic.php:48 src/Tribe/Asset/Dynamic.php:62
 
 
2749
  msgid "May"
2750
  msgstr "May"
2751
 
2752
- #: src/Tribe/Asset/Dynamic.php:47
2753
  msgid "April"
2754
  msgstr "April"
2755
 
2756
- #: src/Tribe/Asset/Dynamic.php:46
2757
  msgid "March"
2758
  msgstr "March"
2759
 
2760
- #: src/Tribe/Asset/Dynamic.php:45
2761
  msgid "February"
2762
  msgstr "February"
2763
 
2764
- #: src/Tribe/Asset/Dynamic.php:44
2765
  msgid "January"
2766
  msgstr "January"
2767
 
2768
- #: src/Tribe/Asset/Dynamic.php:41
2769
  msgid "Sat"
2770
  msgstr "Sat"
2771
 
2772
- #: src/Tribe/Asset/Dynamic.php:40
2773
  msgid "Fri"
2774
  msgstr "Fri"
2775
 
2776
- #: src/Tribe/Asset/Dynamic.php:39
2777
  msgid "Thu"
2778
  msgstr "Thu"
2779
 
2780
- #: src/Tribe/Asset/Dynamic.php:38
2781
  msgid "Wed"
2782
  msgstr "Wed"
2783
 
2784
- #: src/Tribe/Asset/Dynamic.php:37
2785
  msgid "Tue"
2786
  msgstr "Tue"
2787
 
2788
- #: src/Tribe/Asset/Dynamic.php:36
2789
  msgid "Mon"
2790
  msgstr "Mon"
2791
 
2792
- #: src/Tribe/Asset/Dynamic.php:35
2793
  msgid "Sun"
2794
  msgstr "Sun"
2795
 
2796
- #: src/Tribe/Asset/Dynamic.php:32
2797
  msgid "Saturday"
2798
  msgstr "Saturday"
2799
 
2800
- #: src/Tribe/Asset/Dynamic.php:31
2801
  msgid "Friday"
2802
  msgstr "Friday"
2803
 
2804
- #: src/Tribe/Asset/Dynamic.php:30
2805
  msgid "Thursday"
2806
  msgstr "Thursday"
2807
 
2808
- #: src/Tribe/Asset/Dynamic.php:29
2809
  msgid "Wednesday"
2810
  msgstr "Wednesday"
2811
 
2812
- #: src/Tribe/Asset/Dynamic.php:28
2813
  msgid "Tuesday"
2814
  msgstr "Tuesday"
2815
 
2816
- #: src/Tribe/Asset/Dynamic.php:27
2817
  msgid "Monday"
2818
  msgstr "Monday"
2819
 
2820
- #: src/Tribe/Asset/Dynamic.php:26
2821
  msgid "Sunday"
2822
  msgstr "Sunday"
2823
 
@@ -2898,11 +2921,11 @@ msgstr "To begin using %1$s, please install and activate the latest version of %
2898
  msgid "Unknown service message"
2899
  msgstr "Unknown service message"
2900
 
2901
- #: src/Tribe/Aggregator/Record/List_Table.php:533
2902
  msgid "Unknown"
2903
  msgstr "Unknown"
2904
 
2905
- #: src/Tribe/Aggregator/Record/Abstract.php:1205
2906
  msgid "When this import was last scheduled to run, the daily limit for your Event Aggregator license had already been reached."
2907
  msgstr "When this import was last scheduled to run, the daily limit for your Event Aggregator licence had already been reached."
2908
 
@@ -3639,7 +3662,7 @@ msgctxt "Abbreviation for the miles unit of measure"
3639
  msgid "mi"
3640
  msgstr "mi"
3641
 
3642
- #: src/Tribe/Main.php:983
3643
  msgid "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3644
  msgstr "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3645
 
@@ -3864,133 +3887,133 @@ msgstr "queued"
3864
  msgid "Scheduled Imports"
3865
  msgstr "Scheduled Imports"
3866
 
3867
- #: src/Tribe/Aggregator/Tabs/New.php:603
3868
  msgid "Renew your Event Aggregator license"
3869
  msgstr "Renew your Event Aggregator licence"
3870
 
3871
- #: src/Tribe/Aggregator/Tabs/New.php:600
3872
  msgid "Renew your license in order to import events from Facebook, iCalendar, Google, or Meetup."
3873
  msgstr "Renew your licence in order to import events from Facebook, iCalendar, Google, or Meetup."
3874
 
3875
- #: src/Tribe/Aggregator/Tabs/New.php:599
3876
  msgid "Your Event Aggregator license is expired."
3877
  msgstr "Your Event Aggregator licence is expired."
3878
 
3879
- #: src/Tribe/Aggregator/Tabs/New.php:551
3880
  msgid "Learn More"
3881
  msgstr "Learn More"
3882
 
3883
- #: src/Tribe/Aggregator/Tabs/New.php:546 src/Tribe/Aggregator/Tabs/New.php:553
3884
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:19
3885
  msgid "opens in a new window"
3886
  msgstr "opens in a new window"
3887
 
3888
- #: src/Tribe/Aggregator/Tabs/New.php:544
3889
  msgid "Buy It Now"
3890
  msgstr "Buy It Now"
3891
 
3892
- #: src/Tribe/Aggregator/Tabs/New.php:541
3893
  msgid "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3894
  msgstr "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3895
 
3896
- #: src/Tribe/Aggregator/Tabs/New.php:539
3897
  msgid "Import Using Event Aggregator"
3898
  msgstr "Import Using Event Aggregator"
3899
 
3900
- #: src/Tribe/Aggregator/Tabs/New.php:452
3901
  msgid "Unable to save credentials"
3902
  msgstr "Unable to save credentials"
3903
 
3904
- #: src/Tribe/Aggregator/Tabs/New.php:445
3905
  msgid "Credentials have been saved"
3906
  msgstr "Credentials have been saved"
3907
 
3908
- #: src/Tribe/Aggregator/Tabs/New.php:436
3909
  msgid "The Meetup API key is required."
3910
  msgstr "The Meetup API key is required."
3911
 
3912
- #: src/Tribe/Aggregator/Tabs/New.php:427
3913
  msgid "Invalid credential save nonce"
3914
  msgstr "Invalid credential save nonce"
3915
 
3916
- #: src/Tribe/Aggregator/Tabs/New.php:417
3917
  msgid "Invalid credential save request"
3918
  msgstr "Invalid credential save request"
3919
 
3920
- #: src/Tribe/Aggregator/Tabs/New.php:405
3921
  msgid "View your scheduled imports."
3922
  msgstr "View your scheduled imports."
3923
 
3924
- #: src/Tribe/Aggregator/Tabs/New.php:401
3925
  msgid "The next import is scheduled for %1$s."
3926
  msgstr "The next import is scheduled for %1$s."
3927
 
3928
- #: src/Tribe/Aggregator/Tabs/New.php:394
3929
  msgctxt "separator between date and time"
3930
  msgid " at "
3931
  msgstr " at "
3932
 
3933
- #: src/Tribe/Aggregator/Tabs/New.php:390
3934
  msgid "Your scheduled import was saved and the first import is complete!"
3935
  msgstr "Your scheduled import was saved and the first import is complete!"
3936
 
3937
- #: src/Tribe/Aggregator/Tabs/New.php:365
3938
  msgid "View your event categories"
3939
  msgstr "View your event categories"
3940
 
3941
- #: src/Tribe/Aggregator/Tabs/New.php:361
3942
  msgid "%1$d new event category was created."
3943
  msgid_plural "%1$d new event categories were created."
3944
  msgstr[0] "%1$d new event category was created."
3945
  msgstr[1] "%1$d new event categories were created."
3946
 
3947
- #: src/Tribe/Aggregator/Tabs/New.php:352
3948
  msgid "View your event organizers"
3949
  msgstr "View your event organizers"
3950
 
3951
- #: src/Tribe/Aggregator/Tabs/New.php:348
3952
  msgid "%1$d new organizer was imported."
3953
  msgid_plural "%1$d new organizers were imported."
3954
  msgstr[0] "%1$d new organizer was imported."
3955
  msgstr[1] "%1$d new organizers were imported."
3956
 
3957
- #: src/Tribe/Aggregator/Tabs/New.php:340
3958
  msgid "View your event venues"
3959
  msgstr "View your event venues"
3960
 
3961
- #: src/Tribe/Aggregator/Tabs/New.php:336
3962
  msgid "%1$d new venue was imported."
3963
  msgid_plural "%1$d new venues were imported."
3964
  msgstr[0] "%1$d new venue was imported."
3965
  msgstr[1] "%1$d new venues were imported."
3966
 
3967
- #: src/Tribe/Aggregator/Tabs/New.php:326
3968
  msgid "View all %s"
3969
  msgstr "View all %s"
3970
 
3971
- #: src/Tribe/Aggregator/Tabs/New.php:318
3972
  msgid "No %1$s were imported or updated."
3973
  msgstr "No %1$s were imported or updated."
3974
 
3975
- #: src/Tribe/Aggregator/Tabs/New.php:311
3976
  msgid "%1$d new image was imported."
3977
  msgid_plural "%1$d new images were imported."
3978
  msgstr[0] "%1$d new image was imported."
3979
  msgstr[1] "%1$d new images were imported."
3980
 
3981
- #: src/Tribe/Aggregator/Tabs/New.php:302
3982
  msgid "%1$d already-imported %2$s was skipped."
3983
  msgid_plural "%1$d already-imported %2$s were skipped."
3984
  msgstr[0] "%1$d already-imported %2$s was skipped."
3985
  msgstr[1] "%1$d already-imported %2$s were skipped."
3986
 
3987
- #: src/Tribe/Aggregator/Tabs/New.php:291
3988
  msgid "%1$d existing %2$s was updated."
3989
  msgid_plural "%1$d existing %2$s were updated."
3990
  msgstr[0] "%1$d existing %2$s was updated."
3991
  msgstr[1] "%1$d existing %2$s were updated."
3992
 
3993
- #: src/Tribe/Aggregator/Tabs/New.php:279
3994
  msgid "%1$d new %2$s was imported."
3995
  msgid_plural "%1$d new %2$s were imported."
3996
  msgstr[0] "%1$d new %2$s was imported."
@@ -4254,7 +4277,7 @@ msgstr "Aggregator Records"
4254
  msgid "Events Aggregator Record"
4255
  msgstr "Events Aggregator Record"
4256
 
4257
- #: src/Tribe/Aggregator/Record/Queue_Realtime.php:178
4258
  msgid "Unable to continue inserting data. Please reload this page to continue/try again."
4259
  msgstr "Unable to continue inserting data. Please reload this page to continue/try again."
4260
 
@@ -4274,87 +4297,87 @@ msgstr "Created:"
4274
  msgid "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4275
  msgstr "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4276
 
4277
- #: src/Tribe/Aggregator/Record/Queue_Processor.php:234
4278
  msgid "Could not process queue for Import Record %1$d: %2$s"
4279
  msgstr "Could not process queue for Import Record %1$d: %2$s"
4280
 
4281
- #: src/Tribe/Aggregator/Record/List_Table.php:657
4282
  msgid "Select %s"
4283
  msgstr "Select %s"
4284
 
4285
- #: src/Tribe/Aggregator/Record/List_Table.php:622
4286
- #: src/Tribe/Aggregator/Record/List_Table.php:631
4287
- #: src/Tribe/Aggregator/Record/List_Table.php:639
4288
  msgid "updated"
4289
  msgstr "updated"
4290
 
4291
- #: src/Tribe/Aggregator/Record/List_Table.php:620
4292
- #: src/Tribe/Aggregator/Record/List_Table.php:628
4293
- #: src/Tribe/Aggregator/Record/List_Table.php:636
4294
  msgid "new"
4295
  msgstr "new"
4296
 
4297
- #: src/Tribe/Aggregator/Record/List_Table.php:617
4298
  msgid "Latest Import:"
4299
  msgstr "Latest Import:"
4300
 
4301
- #: src/Tribe/Aggregator/Record/List_Table.php:615
4302
  msgid "all time"
4303
  msgstr "all time"
4304
 
4305
- #: src/Tribe/Aggregator/Record/List_Table.php:589
4306
  msgid "One Time"
4307
  msgstr "One Time"
4308
 
4309
- #: src/Tribe/Aggregator/Record/List_Table.php:586
4310
  msgid "Invalid Frequency"
4311
  msgstr "Invalid Frequency"
4312
 
4313
- #: src/Tribe/Aggregator/Record/List_Table.php:556 src/Tribe/Aggregator.php:426
4314
  #: src/Tribe/Ignored_Events.php:357
4315
  #: src/admin-views/tribe-options-addons-api.php:36
4316
  msgctxt "in human readable time"
4317
  msgid "in about %s"
4318
  msgstr "in about %s"
4319
 
4320
- #: src/Tribe/Aggregator/Record/List_Table.php:554 src/Tribe/Aggregator.php:424
4321
  #: src/Tribe/Ignored_Events.php:355
4322
  #: src/admin-views/tribe-options-addons-api.php:34
4323
  msgctxt "human readable time ago"
4324
  msgid "about %s ago"
4325
  msgstr "about %s ago"
4326
 
4327
- #: src/Tribe/Aggregator/Record/List_Table.php:506
4328
  msgid "Radius:"
4329
  msgstr "Radius:"
4330
 
4331
- #: src/Tribe/Aggregator/Record/List_Table.php:489
4332
  msgid "Keywords:"
4333
  msgstr "Keywords:"
4334
 
4335
- #: src/Tribe/Aggregator/Record/List_Table.php:476
4336
  #: src/Tribe/Ignored_Events.php:337
4337
  msgctxt "record via origin"
4338
  msgid "via "
4339
  msgstr "via "
4340
 
4341
- #: src/Tribe/Aggregator/Record/List_Table.php:433
4342
  msgid "Import preview"
4343
  msgstr "Import preview"
4344
 
4345
- #: src/Tribe/Aggregator/Record/List_Table.php:429
4346
  msgid "Import pending"
4347
  msgstr "Import pending"
4348
 
4349
- #: src/Tribe/Aggregator/Record/List_Table.php:425
4350
  msgid "Import schedule"
4351
  msgstr "Import schedule"
4352
 
4353
- #: src/Tribe/Aggregator/Record/List_Table.php:413
4354
  msgid "Import failed"
4355
  msgstr "Import failed"
4356
 
4357
- #: src/Tribe/Aggregator/Record/List_Table.php:409
4358
  msgid "Import completed"
4359
  msgstr "Import completed"
4360
 
@@ -4439,11 +4462,11 @@ msgstr "ICS"
4439
  msgid "Eventbrite"
4440
  msgstr "Eventbrite"
4441
 
4442
- #: src/Tribe/Aggregator/Record/Abstract.php:1148
4443
  msgid "Deleted Attachment: %d"
4444
  msgstr "Deleted Attachment: %d"
4445
 
4446
- #: src/Tribe/Aggregator/Record/Abstract.php:496
4447
  msgid "Record: "
4448
  msgstr "Record: "
4449
 
@@ -4478,7 +4501,7 @@ msgid "Hide Filters"
4478
  msgstr "Hide Filters"
4479
 
4480
  #: src/Tribe/Aggregator/Page.php:96
4481
- #: src/Tribe/Aggregator/Record/List_Table.php:485
4482
  msgid "View Filters"
4483
  msgstr "View Filters"
4484
 
@@ -4836,7 +4859,7 @@ msgid "There is an update for %s. You'll need to %scheck your license%s to have
4836
  msgstr "There is an update for %s. You'll need to %scheck your licence%s to have access to updates, downloads, and support."
4837
 
4838
  #: common/src/Tribe/PUE/Checker.php:961 common/src/Tribe/PUE/Notices.php:285
4839
- #: src/Tribe/Aggregator/Record/Abstract.php:1163
4840
  msgid " (opens in a new window)"
4841
  msgstr " (opens in a new window)"
4842
 
@@ -5137,7 +5160,7 @@ msgstr "Templates introduced or updated with this release (%s):"
5137
  msgid "No notable changes detected"
5138
  msgstr "No notable changes detected"
5139
 
5140
- #: src/Tribe/Main.php:2735
5141
  msgid " (View Full %1$s Description Here: %2$s)"
5142
  msgstr " (View Full %1$s Description Here: %2$s)"
5143
 
@@ -5185,147 +5208,147 @@ msgstr "%s Name can not be empty"
5185
  msgid "Keep the Core Plugin %sFREE%s!"
5186
  msgstr "Keep the Core Plugin %sFREE%s!"
5187
 
5188
- #: src/Tribe/Template_Factory.php:300
5189
  msgid "No results were found for %1$s in or near %2$s."
5190
  msgstr "No results were found for %1$s in or near %2$s."
5191
 
5192
- #: src/Tribe/Template_Factory.php:298
5193
  msgid "There were no results found for %s."
5194
  msgstr "There were no results found for %s."
5195
 
5196
- #: src/Tribe/Template/Month.php:456
5197
  msgid "There were no results found for %s this month. Try searching next month."
5198
  msgstr "There were no results found for %s this month. Try searching next month."
5199
 
5200
- #: src/Tribe/Template/Day.php:153
5201
  msgid "No %1$s scheduled for %2$s. Please try another day."
5202
  msgstr "No %1$s scheduled for %2$s. Please try another day."
5203
 
5204
- #: src/Tribe/Main.php:4254
5205
  msgid "Check out the %savailable add-ons%s."
5206
  msgstr "Check out the %savailable add-ons%s."
5207
 
5208
- #: src/Tribe/Main.php:1923
5209
  msgid "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5210
  msgstr "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5211
 
5212
- #: src/Tribe/Main.php:1854 src/Tribe/Main.php:1874
5213
  msgid "%1$s scheduled for: %2$s."
5214
  msgstr "%1$s scheduled for: %2$s."
5215
 
5216
- #: src/Tribe/Main.php:1835
5217
  msgid "%1$s draft updated. %2$sPreview %3$s"
5218
  msgstr "%1$s draft updated. %2$sPreview %3$s"
5219
 
5220
- #: src/Tribe/Main.php:1826
5221
  msgid "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5222
  msgstr "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5223
 
5224
- #: src/Tribe/Main.php:1820
5225
  msgid "%1$s submitted. %2$sPreview %3$s"
5226
  msgstr "%1$s submitted. %2$sPreview %3$s"
5227
 
5228
- #: src/Tribe/Main.php:1802
5229
  msgid "%1$s updated. %2$sView %1$s%3$s"
5230
  msgstr "%1$s updated. %2$sView %1$s%3$s"
5231
 
5232
- #: src/Tribe/Main.php:1477
5233
  msgid "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5234
  msgstr "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5235
 
5236
- #: src/Tribe/Main.php:1112
5237
  msgid "If you have a valid license for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5238
  msgstr "If you have a valid licence for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5239
 
5240
- #: src/Tribe/Main.php:1111
5241
  msgid "post a thread"
5242
  msgstr "post a thread"
5243
 
5244
- #: src/Tribe/Main.php:1107
5245
  msgid "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays."
5246
  msgstr "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a licence and you can post there directly and expect a response within 24-48 hours during weekdays."
5247
 
5248
- #: src/Tribe/Main.php:1103
5249
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5250
  msgstr "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5251
 
5252
- #: src/Tribe/Main.php:1102
5253
  msgid "open-source forum on WordPress.org"
5254
  msgstr "open-source forum on WordPress.org"
5255
 
5256
- #: src/Tribe/Main.php:1098
5257
  msgid "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays"
5258
  msgstr "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a licence and you can post there directly and expect a response within 24-48 hours during weekdays"
5259
 
5260
- #: src/Tribe/Main.php:1097 src/Tribe/Main.php:1105
5261
  msgid "premium support on our website"
5262
  msgstr "premium support on our website"
5263
 
5264
- #: src/Tribe/Main.php:1095
5265
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5266
  msgstr "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5267
 
5268
- #: src/Tribe/Main.php:1094
5269
  msgid "Events Tickets"
5270
  msgstr "Events Tickets"
5271
 
5272
- #: src/Tribe/Main.php:1079
5273
  msgid "Customizing the Events plugins"
5274
  msgstr "Customizing the Events plugins"
5275
 
5276
- #: src/Tribe/Main.php:1079
5277
  msgid "%s: Code and guides for customizing your calendar in useful and interesting ways."
5278
  msgstr "%s: Code and guides for customizing your calendar in useful and interesting ways."
5279
 
5280
- #: src/Tribe/Main.php:1077
5281
  msgid "Troubleshooting common problems"
5282
  msgstr "Troubleshooting common problems"
5283
 
5284
- #: src/Tribe/Main.php:1077
5285
  msgid "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5286
  msgstr "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5287
 
5288
- #: src/Tribe/Main.php:1075
5289
  msgid "Using stylesheets and page templates"
5290
  msgstr "Using stylesheets and page templates"
5291
 
5292
- #: src/Tribe/Main.php:1075
5293
  msgid "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5294
  msgstr "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5295
 
5296
- #: src/Tribe/Main.php:1073
5297
  msgid "Themer’s Guide"
5298
  msgstr "Themer’s Guide"
5299
 
5300
- #: src/Tribe/Main.php:1073
5301
  msgid "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5302
  msgstr "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5303
 
5304
- #: src/Tribe/Main.php:1071
5305
  msgid "Features overview"
5306
  msgstr "Features overview"
5307
 
5308
- #: src/Tribe/Main.php:1071
5309
  msgid "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5310
  msgstr "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5311
 
5312
- #: src/Tribe/Main.php:1069
5313
  msgid "Settings overview"
5314
  msgstr "Settings overview"
5315
 
5316
- #: src/Tribe/Main.php:1069
5317
  msgid "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5318
  msgstr "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5319
 
5320
- #: src/Tribe/Main.php:1066
5321
  msgid "Support for The Events Calendar"
5322
  msgstr "Support for The Events Calendar"
5323
 
5324
- #: src/Tribe/Main.php:1055
5325
  msgid "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5326
  msgstr "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5327
 
5328
- #: src/Tribe/Main.php:1053
5329
  msgid "New User Primer"
5330
  msgstr "New User Primer"
5331
 
@@ -5348,7 +5371,7 @@ msgstr "Default status to use for imported events"
5348
  msgid "CSV Import Settings"
5349
  msgstr "CSV Import Settings"
5350
 
5351
- #: src/Tribe/Asset/Bootstrap_Datepicker.php:26
5352
  msgid "Clear"
5353
  msgstr "Clear"
5354
 
@@ -5360,7 +5383,7 @@ msgstr "Add another %s"
5360
  msgid "Create New %s"
5361
  msgstr "Create New %s"
5362
 
5363
- #: src/Tribe/Organizer.php:371
5364
  msgid "Unnamed %s"
5365
  msgstr "Unnamed %s"
5366
 
@@ -5548,7 +5571,7 @@ msgstr "Cancel"
5548
  msgid "%s must be a positive number or percent."
5549
  msgstr "%s must be a positive number or percent."
5550
 
5551
- #: src/Tribe/Main.php:1000
5552
  msgid "%1$s or %2$s"
5553
  msgstr "%1$s or %2$s"
5554
 
@@ -5605,7 +5628,7 @@ msgstr "Find out more"
5605
  msgid "Day Navigation"
5606
  msgstr "Day Navigation"
5607
 
5608
- #: src/Tribe/Aggregator/Tabs/New.php:388
5609
  msgid "Import complete!"
5610
  msgstr "Import complete!"
5611
 
@@ -5847,7 +5870,7 @@ msgid "More..."
5847
  msgstr "More..."
5848
 
5849
  #: common/src/Tribe/Admin/Help_Page.php:194 common/src/Tribe/Plugins_API.php:43
5850
- #: src/Tribe/Main.php:1106
5851
  msgid "Events Calendar PRO"
5852
  msgstr "Events Calendar PRO"
5853
 
@@ -6286,7 +6309,7 @@ msgstr "URL:"
6286
  msgid "%s Website"
6287
  msgstr "%s Website"
6288
 
6289
- #: src/Tribe/Aggregator/Record/List_Table.php:502
6290
  msgid "Location:"
6291
  msgstr "Location:"
6292
 
@@ -7691,15 +7714,15 @@ msgstr "Template overrides should be moved to the correct subdirectory: tribe_ge
7691
  msgid "Template overrides should be moved to the correct subdirectory: %s"
7692
  msgstr "Template overrides should be moved to the correct subdirectory: %s"
7693
 
7694
- #: src/Tribe/Template_Factory.php:306
7695
  msgid "No previous %s "
7696
  msgstr "No previous %s "
7697
 
7698
- #: src/Tribe/Template_Factory.php:304 src/Tribe/Template_Factory.php:309
7699
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7700
  msgstr "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7701
 
7702
- #: src/Tribe/Template_Factory.php:302
7703
  msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7704
  msgstr "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7705
 
@@ -7707,28 +7730,28 @@ msgstr "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this cat
7707
  msgid "This %s has passed."
7708
  msgstr "This %s has passed."
7709
 
7710
- #: src/Tribe/Template/Month.php:953
7711
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7712
  msgstr "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7713
 
7714
- #: src/Tribe/Template/Month.php:462 src/Tribe/Template_Factory.php:311
7715
  msgid "There were no results found."
7716
  msgstr "There were no results found."
7717
 
7718
- #: src/Tribe/Template/Month.php:460
7719
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7720
  msgstr "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7721
 
7722
- #: src/Tribe/Template/Day.php:151
7723
  msgid "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7724
  msgstr "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7725
 
7726
- #: src/Tribe/Template/Day.php:117 src/Tribe/Template/Day.php:133
7727
  msgid "Ongoing"
7728
  msgstr "Ongoing"
7729
 
7730
- #: src/Tribe/Aggregator/Page.php:82 src/Tribe/Template/Day.php:114
7731
- #: src/Tribe/Template/Day.php:130
7732
  msgid "All Day"
7733
  msgstr "All Day"
7734
 
@@ -7823,50 +7846,50 @@ msgstr "Licence Key"
7823
  msgid "Error"
7824
  msgstr "Error"
7825
 
7826
- #: src/Tribe/Main.php:4597
7827
  msgid "Once Every 30 Mins"
7828
  msgstr "Once Every 30 Mins"
7829
 
7830
- #: src/Tribe/Main.php:4517
7831
  msgid "Day Of"
7832
  msgstr "Day Of"
7833
 
7834
- #: src/Tribe/Main.php:4515
7835
  msgid "%s From"
7836
  msgstr "%s From"
7837
 
7838
- #: src/Tribe/Main.php:4511
7839
  msgid "%s In"
7840
  msgstr "%s In"
7841
 
7842
- #: src/Tribe/Main.php:4506 src/Tribe/Main.php:4531
7843
  #: src/admin-views/aggregator/origins/refine.php:7
7844
  msgid "Date"
7845
  msgstr "Date"
7846
 
7847
- #: src/Tribe/Main.php:4433
7848
  msgid "Search"
7849
  msgstr "Search"
7850
 
7851
- #: src/Tribe/Main.php:4407 src/admin-views/aggregator/fields/schedule.php:44
7852
  #: src/admin-views/aggregator/fields/schedule.php:62
7853
  msgid "Day"
7854
  msgstr "Day"
7855
 
7856
- #: src/Tribe/Main.php:4390
7857
  msgid "Month"
7858
  msgstr "Month"
7859
 
7860
- #: src/Tribe/Main.php:4372
7861
  msgid "List"
7862
  msgstr "List"
7863
 
7864
- #: src/Tribe/Main.php:4356
7865
  msgid "Calendar"
7866
  msgstr "Calendar"
7867
 
7868
  #: common/src/Tribe/Settings.php:254
7869
- #: src/Tribe/Admin/Bar/Default_Configurator.php:89 src/Tribe/Main.php:4355
7870
  msgid "Settings"
7871
  msgstr "Settings"
7872
 
@@ -7880,7 +7903,7 @@ msgstr "CSV"
7880
  msgid "Add %s"
7881
  msgstr "Add %s"
7882
 
7883
- #: src/Tribe/Admin/Bar/Default_Configurator.php:45 src/Tribe/Main.php:4306
7884
  msgid "View Calendar"
7885
  msgstr "View Calendar"
7886
 
@@ -7888,53 +7911,53 @@ msgstr "View Calendar"
7888
  msgid "%s"
7889
  msgstr "%s"
7890
 
7891
- #: src/Tribe/Main.php:4253
7892
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7893
  msgstr "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7894
 
7895
- #: src/Tribe/Main.php:4248
7896
  msgid "Additional Functionality"
7897
  msgstr "Additional Functionality"
7898
 
7899
- #: src/Tribe/Main.php:4203
7900
  msgid "News from Modern Tribe"
7901
  msgstr "News from Modern Tribe"
7902
 
7903
- #: src/Tribe/Main.php:4183
7904
  msgid "View All Add-Ons"
7905
  msgstr "View All Add-Ons"
7906
 
7907
- #: src/Tribe/Main.php:4180
7908
  msgid "Support"
7909
  msgstr "Support"
7910
 
7911
- #: src/Tribe/Main.php:3828 src/Tribe/Main.php:3841
7912
  msgid "%s Information"
7913
  msgstr "%s Information"
7914
 
7915
- #: src/Tribe/Main.php:3819
7916
  msgid "%s Options"
7917
  msgstr "%s Options"
7918
 
7919
- #: src/Tribe/Main.php:3742 src/Tribe/Main.php:3777
7920
  #: src/functions/template-tags/day.php:157
7921
  #: src/functions/template-tags/day.php:178
7922
  msgid "Date out of range."
7923
  msgstr "Date out of range."
7924
 
7925
- #: src/Tribe/Main.php:2344
7926
  msgid "all"
7927
  msgstr "all"
7928
 
7929
- #: src/Tribe/Main.php:2343 src/functions/template-tags/general.php:111
7930
  msgid "events"
7931
  msgstr "events"
7932
 
7933
- #: src/Tribe/Main.php:2342 src/functions/template-tags/general.php:79
7934
  msgid "event"
7935
  msgstr "event"
7936
 
7937
- #: src/Tribe/Main.php:2341
7938
  msgid "page"
7939
  msgstr "page"
7940
 
@@ -7946,7 +7969,8 @@ msgstr "Network"
7946
  msgid "Done"
7947
  msgstr "Done"
7948
 
7949
- #: common/src/Tribe/Main.php:272 src/Tribe/Asset/Bootstrap_Datepicker.php:27
 
7950
  #: src/functions/template-tags/day.php:104
7951
  msgid "Today"
7952
  msgstr "Today"
@@ -7959,141 +7983,141 @@ msgstr "Prev"
7959
  msgid "Next"
7960
  msgstr "Next"
7961
 
7962
- #: src/Tribe/Linked_Posts.php:1010
7963
  msgid "No saved %s exists."
7964
  msgstr "No saved %s exists."
7965
 
7966
- #: src/Tribe/Linked_Posts.php:840
7967
  msgid "Available %s"
7968
  msgstr "Available %s"
7969
 
7970
- #: src/Tribe/Linked_Posts.php:836
7971
  msgid "My %s"
7972
  msgstr "My %s"
7973
 
7974
- #: src/Tribe/Main.php:1859 src/Tribe/Main.php:1879
7975
  msgid "%s draft updated."
7976
  msgstr "%s draft updated."
7977
 
7978
- #: src/Tribe/Main.php:1852 src/Tribe/Main.php:1872
7979
  msgid "%s submitted."
7980
  msgstr "%s submitted."
7981
 
7982
- #: src/Tribe/Main.php:1850 src/Tribe/Main.php:1870
7983
  msgid "%s published."
7984
  msgstr "%s published."
7985
 
7986
  #. translators: %s: date and time of the revision
7987
- #: src/Tribe/Main.php:1869
7988
  msgid "%s restored to revision from %s"
7989
  msgstr "%s restored to revision from %s"
7990
 
7991
  #. translators: Publish box date format, see http://php.net/date
7992
- #: src/Tribe/Main.php:1829 src/Tribe/Main.php:1857 src/Tribe/Main.php:1877
7993
  msgid "M j, Y @ G:i"
7994
  msgstr "M j, Y @ G:i"
7995
 
7996
- #: src/Tribe/Main.php:1818 src/Tribe/Main.php:1851 src/Tribe/Main.php:1871
7997
  msgid "%s saved."
7998
  msgstr "%s saved."
7999
 
8000
  #. translators: %s: date and time of the revision
8001
- #: src/Tribe/Main.php:1811 src/Tribe/Main.php:1849
8002
  msgid "%1$s restored to revision from %2$s"
8003
  msgstr "%1$s restored to revision from %2$s"
8004
 
8005
- #: src/Tribe/Main.php:1809 src/Tribe/Main.php:1844 src/Tribe/Main.php:1847
8006
- #: src/Tribe/Main.php:1864 src/Tribe/Main.php:1867
8007
  msgid "%s updated."
8008
  msgstr "%s updated."
8009
 
8010
- #: src/Tribe/Main.php:1808 src/Tribe/Main.php:1846 src/Tribe/Main.php:1866
8011
  msgid "Custom field deleted."
8012
  msgstr "Custom field deleted."
8013
 
8014
- #: src/Tribe/Main.php:1807 src/Tribe/Main.php:1845 src/Tribe/Main.php:1865
8015
  msgid "Custom field updated."
8016
  msgstr "Custom field updated."
8017
 
8018
- #: src/Tribe/Main.php:1785
8019
  msgid "New %s Category Name"
8020
  msgstr "New %s Category Name"
8021
 
8022
- #: src/Tribe/Main.php:1784
8023
  msgid "Add New %s Category"
8024
  msgstr "Add New %s Category"
8025
 
8026
- #: src/Tribe/Main.php:1783
8027
  msgid "Update %s Category"
8028
  msgstr "Update %s Category"
8029
 
8030
- #: src/Tribe/Main.php:1782
8031
  msgid "Edit %s Category"
8032
  msgstr "Edit %s Category"
8033
 
8034
- #: src/Tribe/Main.php:1781
8035
  msgid "Parent %s Category:"
8036
  msgstr "Parent %s Category:"
8037
 
8038
- #: src/Tribe/Main.php:1780
8039
  msgid "Parent %s Category"
8040
  msgstr "Parent %s Category"
8041
 
8042
- #: src/Tribe/Main.php:1779
8043
  msgid "All %s Categories"
8044
  msgstr "All %s Categories"
8045
 
8046
- #: src/Tribe/Main.php:1778
8047
  msgid "Search %s Categories"
8048
  msgstr "Search %s Categories"
8049
 
8050
- #: src/Tribe/Main.php:1777
8051
  msgid "%s Category"
8052
  msgstr "%s Category"
8053
 
8054
- #: src/Tribe/Main.php:1767 src/Tribe/Organizer.php:98 src/Tribe/Venue.php:117
8055
  msgid "No %s found in Trash"
8056
  msgstr "No %s found in Trash"
8057
 
8058
- #: src/Tribe/Main.php:1766 src/Tribe/Organizer.php:97 src/Tribe/Venue.php:116
8059
  msgid "No %s found"
8060
  msgstr "No %s found"
8061
 
8062
- #: src/Tribe/Main.php:1765 src/Tribe/Organizer.php:96 src/Tribe/Venue.php:115
8063
  msgid "Search %s"
8064
  msgstr "Search %s"
8065
 
8066
- #: src/Tribe/Main.php:1764 src/Tribe/Organizer.php:95 src/Tribe/Venue.php:114
8067
  #: src/views/month/single-day.php:26
8068
  msgid "View %s"
8069
  msgstr "View %s"
8070
 
8071
- #: src/Tribe/Main.php:1763 src/Tribe/Organizer.php:94 src/Tribe/Venue.php:113
8072
  msgid "New %s"
8073
  msgstr "New %s"
8074
 
8075
- #: src/Tribe/Main.php:1761 src/Tribe/Main.php:1893 src/Tribe/Main.php:1894
8076
  #: src/Tribe/Organizer.php:92 src/Tribe/Venue.php:111
8077
  msgid "Add New %s"
8078
  msgstr "Add New %s"
8079
 
8080
- #: src/Tribe/Main.php:1760 src/Tribe/Organizer.php:91 src/Tribe/Venue.php:110
8081
  msgid "Add New"
8082
  msgstr "Add New"
8083
 
8084
- #: src/Tribe/Main.php:1727 src/Tribe/Main.php:2339
8085
  msgid "tag"
8086
  msgstr "tag"
8087
 
8088
- #: src/Tribe/Main.php:1713 src/Tribe/Main.php:2340
8089
  msgid "category"
8090
  msgstr "category"
8091
 
8092
- #: src/Tribe/Main.php:1465
8093
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8094
  msgstr "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8095
 
8096
- #: src/Tribe/Main.php:1462
8097
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8098
  msgstr "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8099
 
@@ -8111,72 +8135,72 @@ msgstr "Help"
8111
  msgid "Display"
8112
  msgstr "Display"
8113
 
8114
- #: src/Tribe/Main.php:1309
8115
  msgid "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8116
  msgstr "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8117
 
8118
- #: src/Tribe/Main.php:1297
8119
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8120
  msgstr "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8121
 
8122
- #: src/Tribe/Main.php:788
8123
  msgid "Initializing Tribe Events on %s"
8124
  msgstr "Initializing Tribe Events on %s"
8125
 
8126
- #: src/Tribe/Main.php:763
8127
  msgid "today"
8128
  msgstr "today"
8129
 
8130
- #: src/Tribe/Main.php:762
8131
  msgid "day"
8132
  msgstr "day"
8133
 
8134
- #: src/Tribe/Main.php:761
8135
  msgid "past"
8136
  msgstr "past"
8137
 
8138
- #: src/Tribe/Main.php:760
8139
  msgid "upcoming"
8140
  msgstr "upcoming"
8141
 
8142
- #: src/Tribe/Main.php:759
8143
  msgid "list"
8144
  msgstr "list"
8145
 
8146
- #: src/Tribe/Main.php:758
8147
  msgid "month"
8148
  msgstr "month"
8149
 
8150
- #. #-#-#-#-# the-events-calendar-code.pot (The Events Calendar 4.6.20.1)
8151
  #. #-#-#-#-#
8152
  #. Plugin Name of the plugin/theme
8153
  #: common/src/Tribe/Admin/Help_Page.php:59 common/src/Tribe/Customizer.php:569
8154
- #: common/src/Tribe/Plugins_API.php:25 src/Tribe/Main.php:751
8155
- #: src/Tribe/Main.php:1093 src/Tribe/Privacy.php:29
8156
  #: src/functions/template-tags/general.php:1345
8157
  msgid "The Events Calendar"
8158
  msgstr "The Events Calendar"
8159
 
8160
- #: src/Tribe/Main.php:1163 src/admin-views/aggregator/tabs/import-form.php:185
8161
  #: src/admin-views/aggregator/tabs/import-form.php:197
8162
  #: src/functions/template-tags/general.php:63
8163
  msgid "Event"
8164
  msgstr "Event"
8165
 
8166
  #: common/src/Tribe/Settings.php:177 common/src/Tribe/Settings.php:241
8167
- #: common/src/Tribe/Settings.php:242 src/Tribe/Main.php:1155
8168
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:207
8169
  #: src/functions/template-tags/general.php:95
8170
  msgid "Events"
8171
  msgstr "Events"
8172
 
8173
- #: src/Tribe/Organizer.php:157 src/functions/template-tags/organizer.php:115
8174
  msgid "Organizer"
8175
  msgstr "Organizer"
8176
 
8177
  #: src/Tribe/Organizer.php:171
8178
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:206
8179
- #: src/functions/template-tags/organizer.php:126
8180
  msgid "Organizers"
8181
  msgstr "Organizers"
8182
 
@@ -8440,7 +8464,7 @@ msgstr "Date:"
8440
  msgid "End:"
8441
  msgstr "End:"
8442
 
8443
- #: src/Tribe/Aggregator/Record/List_Table.php:498
8444
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
8445
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
8446
  #: src/views/modules/meta/details.php:66 src/views/modules/meta/details.php:91
@@ -8459,7 +8483,7 @@ msgstr "End Date"
8459
  msgid "Start Date"
8460
  msgstr "Start Date"
8461
 
8462
- #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1776
8463
  msgid "%s Categories"
8464
  msgstr "%s Categories"
8465
 
@@ -8470,7 +8494,7 @@ msgstr "A problem stopped the time zone update process from completing. Please r
8470
  #: src/Tribe/Admin/Timezone_Updater.php:87
8471
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
8472
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:100
8473
- #: src/Tribe/Aggregator/Record/Queue_Realtime.php:203
8474
  msgid "%d%% complete"
8475
  msgstr "%d%% complete"
8476
 
@@ -8483,21 +8507,21 @@ msgid "Please wait while time zone data is added to your events."
8483
  msgstr "Please wait while time zone data is added to your events."
8484
 
8485
  #: src/Tribe/Admin/Bar/Default_Configurator.php:62
8486
- #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:211 src/Tribe/Main.php:1762
8487
- #: src/Tribe/Main.php:4862 src/Tribe/Main.php:4909 src/Tribe/Organizer.php:93
8488
  #: src/Tribe/Venue.php:112
8489
  msgid "Edit %s"
8490
  msgstr "Edit %s"
8491
 
8492
- #: src/Tribe/Main.php:4846 src/Tribe/Main.php:4903
8493
  msgid "Use Saved %s:"
8494
  msgstr "Use Saved %s:"
8495
 
8496
- #: src/Tribe/Main.php:992
8497
  msgid " ask the site administrator set a different Events URL slug."
8498
  msgstr " ask the site administrator set a different Events URL slug."
8499
 
8500
- #: src/Tribe/Main.php:986
8501
  msgid "Ask the site administrator to edit the %s slug"
8502
  msgstr "Ask the site administrator to edit the %s slug"
8503
 
@@ -8505,7 +8529,7 @@ msgstr "Ask the site administrator to edit the %s slug"
8505
  msgid "Thanks for Updating The Events Calendar"
8506
  msgstr "Thanks for Updating The Events Calendar"
8507
 
8508
- #: src/Tribe/Main.php:846 src/Tribe/Main.php:848
8509
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
8510
  msgid "Welcome to The Events Calendar"
8511
  msgstr "Welcome to The Events Calendar"
2
  # This file is distributed under the same license as the Plugins - The Events Calendar - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2018-08-27 21:51:00+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: en_CA\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
14
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:337
15
+ msgid "The event tag ID or name"
16
+ msgstr "The event tag ID or name"
17
+
18
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:331
19
+ msgid "The event category ID or name"
20
+ msgstr "The event category ID or name"
21
+
22
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:508
23
+ msgid "Events should be filtered by their post_parent being the specified one."
24
+ msgstr "Events should be filtered by their post_parent being the specified one."
25
+
26
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:498
27
+ msgid "Include events with one of the post IDs specified in the array of CSV list, date filters will be ignored."
28
+ msgstr "Include events with one of the post IDs specified in the array of CSV list, date filters will be ignored."
29
+
30
+ #: src/Tribe/Aggregator/Record/Async_Queue.php:348
31
+ #: src/Tribe/Aggregator/Record/Void_Queue.php:122
32
+ msgid "Unable to process this import - a breakage or conflict may have resulted in the import halting."
33
+ msgstr "Unable to process this import - a breakage or conflict may have resulted in the import halting."
34
+
35
+ #: common/src/Tribe/Plugins_API.php:37
36
+ msgid "Event Aggregator adds massive import functionality to your calendar. Before you know it, you’ll be importing events from Meetup, Eventbrite, Google Calendar, iCalendar, and other URLs with ease. Schedule imports to run automatically behind-the-scenes or run them manually when you’re ready. Go ahead and import to your heart’s content—Event Aggregator hooks you up with a central dashboard in the admin to make managing your imports a breeze."
37
+ msgstr "Event Aggregator adds massive import functionality to your calendar. Before you know it, you’ll be importing events from Meetup, Eventbrite, Google Calendar, iCalendar, and other URLs with ease. Schedule imports to run automatically behind-the-scenes or run them manually when you’re ready. Go ahead and import to your heart’s content—Event Aggregator hooks you up with a central dashboard in the admin to make managing your imports a breeze."
38
+
39
  #: src/views/month/single-day.php:57
40
  msgid "%s for %s"
41
  msgstr "%s for %s"
208
  msgid "Do more with Eventbrite Tickets"
209
  msgstr "Do more with Eventbrite Tickets"
210
 
211
+ #: src/Tribe/Main.php:4114
212
  msgid "Search for %s by month. Please use the format %s."
213
  msgstr "Search for %s by month. Please use the format %s."
214
 
215
+ #: src/Tribe/Main.php:4109
216
  msgid "Search for %s by Date. Please use the format %s."
217
  msgstr "Search for %s by Date. Please use the format %s."
218
 
219
+ #: src/Tribe/Main.php:4077 src/Tribe/Main.php:4078
220
  msgid "2 digit month dot 4 digit year"
221
  msgstr "2 digit month dot 4 digit year"
222
 
223
+ #: src/Tribe/Main.php:4076
224
  msgid "4 digit year dot 2 digit month"
225
  msgstr "4 digit year dot 2 digit month"
226
 
227
+ #: src/Tribe/Main.php:4075
228
  msgid "2 digit month hyphen 4 digit year"
229
  msgstr "2 digit month hyphen 4 digit year"
230
 
231
+ #: src/Tribe/Main.php:4072 src/Tribe/Main.php:4073 src/Tribe/Main.php:4074
232
  msgid "1 digit month hyphen 4 digit year"
233
  msgstr "1 digit month hyphen 4 digit year"
234
 
235
+ #: src/Tribe/Main.php:4069 src/Tribe/Main.php:4071
236
  msgid "2 digit month slash 4 digit year"
237
  msgstr "2 digit month slash 4 digit year"
238
 
239
+ #: src/Tribe/Main.php:4068 src/Tribe/Main.php:4070
240
  msgid "1 digit month slash 4 digit year"
241
  msgstr "1 digit month slash 4 digit year"
242
 
243
+ #: src/Tribe/Main.php:4067
244
  msgid "4 digit year hyphen 2 digit month"
245
  msgstr "4 digit year hyphen 2 digit month"
246
 
247
+ #: src/Tribe/Main.php:4063
248
  msgid "2 digit day dot 2 digit month dot 4 digit year"
249
  msgstr "2 digit day dot 2 digit month dot 4 digit year"
250
 
251
+ #: src/Tribe/Main.php:4062
252
  msgid "2 digit month dot 2 digit day dot 4 digit year"
253
  msgstr "2 digit month dot 2 digit day dot 4 digit year"
254
 
255
+ #: src/Tribe/Main.php:4061
256
  msgid "4 digit year dot 2 digit month dot 2 digit day"
257
  msgstr "4 digit year dot 2 digit month dot 2 digit day"
258
 
259
+ #: src/Tribe/Main.php:4060
260
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
261
  msgstr "2 digit day hyphen 2 digit month hyphen 4 digit year"
262
 
263
+ #: src/Tribe/Main.php:4059
264
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
265
  msgstr "1 digit day hyphen 1 digit month hyphen 4 digit year"
266
 
267
+ #: src/Tribe/Main.php:4058
268
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
269
  msgstr "1 digit month hyphen 2 digit day hyphen 4 digit year"
270
 
271
+ #: src/Tribe/Main.php:4057
272
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
273
  msgstr "1 digit month hyphen 1 digit day hyphen 4 digit year"
274
 
275
+ #: src/Tribe/Main.php:4056
276
  msgid "2 digit day slash 2 digit month slash 4 digit year"
277
  msgstr "2 digit day slash 2 digit month slash 4 digit year"
278
 
279
+ #: src/Tribe/Main.php:4055
280
  msgid "1 digit day slash 1 digit month slash 4 digit year"
281
  msgstr "1 digit day slash 1 digit month slash 4 digit year"
282
 
283
+ #: src/Tribe/Main.php:4054
284
  msgid "2 digit month slash 2 digit day slash 4 digit year"
285
  msgstr "2 digit month slash 2 digit day slash 4 digit year"
286
 
287
+ #: src/Tribe/Main.php:4053
288
  msgid "1 digit month slash 1 digit day slash 4 digit year"
289
  msgstr "1 digit month slash 1 digit day slash 4 digit year"
290
 
291
+ #: src/Tribe/Main.php:4052
292
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
293
  msgstr "4 digit year hyphen 2 digit month hyphen 2 digit day"
294
 
295
+ #: src/Tribe/Main.php:4031
296
  msgid "Search for %s by Keyword."
297
  msgstr "Search for %s by Keyword."
298
 
520
  msgstr "Search our support help desk"
521
 
522
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
523
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:385
524
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
525
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
526
  msgid "The requested page was not found."
534
  msgid "one week"
535
  msgstr "one week"
536
 
537
+ #: src/Tribe/Aggregator/Record/List_Table.php:577
538
  msgctxt "when the retry will happen, a date"
539
  msgid "retrying at %s"
540
  msgstr "retrying at %s"
541
 
542
+ #: src/Tribe/Aggregator/Record/List_Table.php:574
543
  msgctxt "in human readable time"
544
  msgid "retrying in about %s"
545
  msgstr "retrying in about %s"
621
  msgstr "Main %s Page"
622
 
623
  #: common/src/Tribe/Plugins_API.php:71
624
+ msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Guest check in is easy with QR codes and our custom scanning app."
625
+ msgstr "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Guest check in is easy with QR codes and our custom scanning app."
626
 
627
  #: src/admin-views/tribe-options-general.php:31
628
  msgid "The number of events per page on the List, Photo, and Map Views. Does not affect other views."
653
  msgid "The event with the specified ID is not accessible."
654
  msgstr "The event with the specified ID is not accessible."
655
 
656
+ #: src/Tribe/Main.php:1812
657
  msgid "%1$s published. %2$sView %3$s"
658
  msgstr "%1$s published. %2$sView %3$s"
659
 
1004
  msgid "the event post name"
1005
  msgstr "the event post name"
1006
 
1007
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:354
1008
  msgid "The event organizer IDs or data"
1009
  msgstr "The event organizer IDs or data"
1010
 
1011
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:346
1012
  msgid "The event venue ID or data"
1013
  msgstr "The event venue ID or data"
1014
 
1251
  msgid "Returns all the organizers matching the search criteria"
1252
  msgstr "Returns all the organizers matching the search criteria"
1253
 
1254
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:494
1255
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1256
  msgstr "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1257
 
1258
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:488
1259
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1260
  msgstr "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1261
 
1262
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:482
1263
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1264
  msgstr "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1265
 
1266
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:477
1267
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1268
  msgid "The event post status"
1269
  msgstr "The event post status"
1270
 
1271
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:470
1272
  msgid "Events should be filtered by their featured status"
1273
  msgstr "Events should be filtered by their featured status"
1274
 
1275
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:462
1276
  msgid "Events should be assigned one of the specified organizer IDs"
1277
  msgstr "Events should be assigned one of the specified organizer IDs"
1278
 
1279
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1280
  msgid "Events should be assigned one of the specified venue IDs"
1281
  msgstr "Events should be assigned one of the specified venue IDs"
1282
 
1370
  msgid "The event status"
1371
  msgstr "The event status"
1372
 
1373
+ #: src/Tribe/Linked_Posts.php:1254
1374
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1375
  msgid "Create or Find %s"
1376
  msgstr "Create or Find %s"
1377
 
1378
+ #: src/Tribe/Linked_Posts.php:1245
1379
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1380
  msgid "Find %1$s %2$s"
1381
  msgstr "Find %1$s %2$s"
1382
 
1383
+ #: src/Tribe/Linked_Posts.php:1236
1384
  msgid "Find a Venue"
1385
  msgstr "Find a Venue"
1386
 
1387
+ #: src/Tribe/Linked_Posts.php:1235
1388
  msgid "Create or Find a Venue"
1389
  msgstr "Create or Find a Venue"
1390
 
1391
+ #: src/Tribe/Linked_Posts.php:1228
1392
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1393
  msgid "Create or Find %s"
1394
  msgstr "Create or Find %s"
1395
 
1396
+ #: src/Tribe/Linked_Posts.php:1219
1397
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1398
  msgid "Find %1$s %2$s"
1399
  msgstr "Find %1$s %2$s"
1400
 
1401
+ #: src/Tribe/Linked_Posts.php:1208
1402
  msgid "Find an Organizer"
1403
  msgstr "Find an Organizer"
1404
 
1405
+ #: src/Tribe/Linked_Posts.php:1207
1406
  msgid "Create or Find an Organizer"
1407
  msgstr "Create or Find an Organizer"
1408
 
1409
+ #: src/Tribe/Linked_Posts.php:1200
1410
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1411
  msgid "Create or Find %s"
1412
  msgstr "Create or Find %s"
1413
 
1414
+ #: src/Tribe/Linked_Posts.php:1191
1415
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1416
  msgid "Find %1$s %2$s"
1417
  msgstr "Find %1$s %2$s"
1507
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1508
  msgstr "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1509
 
1510
+ #: src/Tribe/Main.php:996
1511
  msgid "edit Events settings."
1512
  msgstr "edit Events settings."
1513
 
1514
+ #: src/Tribe/Main.php:987
1515
  msgid "Edit the %s slug"
1516
  msgstr "Edit the %s slug"
1517
 
1518
+ #: src/Tribe/Linked_Posts.php:1177
1519
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1520
  msgid "an"
1521
  msgstr "an"
1522
 
1523
+ #: src/Tribe/Linked_Posts.php:1170
1524
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1525
  msgid "a"
1526
  msgstr "a"
1562
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1563
  msgstr "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1564
 
 
 
 
 
1565
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1566
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1567
  msgstr "The Events Calendar could not write WPML default config file: please create the file manually."
1606
  msgid "The event WordPress post ID"
1607
  msgstr "The event WordPress post ID"
1608
 
1609
+ #: src/Tribe/Aggregator/Record/Abstract.php:363
1610
  msgid "Something went wrong while inserting the record in the database."
1611
  msgstr "Something went wrong while inserting the record in the database."
1612
 
1624
  msgid "Please refresh the page and try your request again."
1625
  msgstr "Please refresh the page and try your request again."
1626
 
1627
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:29
1628
  msgid "The image WordPress post ID"
1629
  msgstr "The image WordPress post ID"
1630
 
1684
  msgid "The event last modification date in UTC time"
1685
  msgstr "The event last modification date in UTC time"
1686
 
1687
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:419
1688
  msgid "Events should start after the specified date"
1689
  msgstr "Events should start after the specified date"
1690
 
1691
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:426
1692
  msgid "Events should start before the specified date"
1693
  msgstr "Events should start before the specified date"
1694
 
1724
  msgid "the event post ID"
1725
  msgstr "the event post ID"
1726
 
1727
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:432
1728
  msgid "Events should contain the specified string in the title or description"
1729
  msgstr "Events should contain the specified string in the title or description"
1730
 
2020
  msgstr "The requested URL does not have any upcoming and published events matching the search criteria."
2021
 
2022
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2023
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:404
2024
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2025
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2026
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2027
  msgid "The archive page to return"
2028
  msgstr "The archive page to return"
2029
 
2030
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:412
2031
  msgid "The number of events to return on each page"
2032
  msgstr "The number of events to return on each page"
2033
 
2034
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
2035
  msgid "Events should be assigned one of the specified categories slugs or IDs"
2036
  msgstr "Events should be assigned one of the specified categories slugs or IDs"
2037
 
2038
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:446
2039
  msgid "Events should be assigned one of the specified tags slugs or IDs"
2040
  msgstr "Events should be assigned one of the specified tags slugs or IDs"
2041
 
2042
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:374
2043
  msgid "Returns all the upcoming events matching the search criteria"
2044
  msgstr "Returns all the upcoming events matching the search criteria"
2045
 
2046
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:36
2047
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:382
2048
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:64
2049
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:53
2050
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:61
2259
  msgid "three months"
2260
  msgstr "three months"
2261
 
2262
+ #: src/Tribe/Aggregator/Tabs/New.php:385
2263
  msgid "%1$d new event tag was created."
2264
  msgid_plural "%1$d new event tags were created."
2265
  msgstr[0] "%1$d new event tag was created."
2266
  msgstr[1] "%1$d new event tags were created."
2267
 
2268
+ #: src/Tribe/Aggregator/Tabs/New.php:389
2269
  msgid "View your event tags"
2270
  msgstr "View your event tags"
2271
 
2324
  msgid "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2325
  msgstr "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2326
 
2327
+ #: src/Tribe/Main.php:763
2328
  msgctxt "all events slug"
2329
  msgid "all"
2330
  msgstr "all"
2365
  msgid "The WordPress term ID"
2366
  msgstr "The WordPress term ID"
2367
 
2368
+ #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:37
2369
  msgid "The link to the image in the specified size on the site"
2370
  msgstr "The link to the image in the specified size on the site"
2371
 
2381
  msgid "The image width in pixels in the specified size"
2382
  msgstr "The image width in pixels in the specified size"
2383
 
2384
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:45
2385
  msgid "The details about each size available for the image"
2386
  msgstr "The details about each size available for the image"
2387
 
2388
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:41
2389
  msgid "The image natural height in pixels"
2390
  msgstr "The image natural height in pixels"
2391
 
2392
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:37
2393
  msgid "The image natural width in pixels"
2394
  msgstr "The image natural width in pixels"
2395
 
2396
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:33
2397
  msgid "The image file extension"
2398
  msgstr "The image file extension"
2399
 
2401
  msgid "The venue WordPress post ID"
2402
  msgstr "The venue WordPress post ID"
2403
 
2404
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:25
2405
  msgid "The URL to the full size version of the image"
2406
  msgstr "The URL to the full size version of the image"
2407
 
2441
  msgid "The cost currency symbol"
2442
  msgstr "The cost currency symbol"
2443
 
2444
+ #: src/Tribe/Main.php:4035
2445
  msgid "Keyword"
2446
  msgstr "Keyword"
2447
 
2516
  msgid "Export Events"
2517
  msgstr "Export Events"
2518
 
2519
+ #: src/Tribe/Main.php:762
2520
  msgctxt "featured events slug"
2521
  msgid "featured"
2522
  msgstr "featured"
2523
 
2524
+ #: src/Tribe/Linked_Posts.php:1133
2525
  msgid "Create: <b><%= term %></b>"
2526
  msgstr "Create: <b><%= term %></b>"
2527
 
2670
  msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2671
  msgstr "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2672
 
2673
+ #: src/Tribe/Assets.php:685 src/deprecated/Tribe__Events__Asset__Dynamic.php:77
2674
  msgid "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2675
  msgstr "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2676
 
2677
+ #: src/Tribe/Assets.php:684 src/deprecated/Tribe__Events__Asset__Dynamic.php:76
2678
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2679
  msgstr "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2680
 
2681
+ #: src/Tribe/Assets.php:683 src/deprecated/Tribe__Events__Asset__Dynamic.php:75
2682
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2683
  msgstr "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2684
 
2685
+ #: src/Tribe/Assets.php:682 src/deprecated/Tribe__Events__Asset__Dynamic.php:74
2686
  msgid "This event is all day on %%startdatewithyear%%."
2687
  msgstr "This event is all day on %%startdatewithyear%%."
2688
 
2689
+ #: src/Tribe/Assets.php:681 src/deprecated/Tribe__Events__Asset__Dynamic.php:73
2690
  msgid "This event is at %%starttime%% on %%startdatewithyear%%."
2691
  msgstr "This event is at %%starttime%% on %%startdatewithyear%%."
2692
 
2693
+ #: src/Tribe/Assets.php:680 src/deprecated/Tribe__Events__Asset__Dynamic.php:72
2694
  msgid "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2695
  msgstr "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2696
 
2697
+ #: src/Tribe/Assets.php:677 src/deprecated/Tribe__Events__Asset__Dynamic.php:69
2698
  msgid "Dec"
2699
  msgstr "Dec"
2700
 
2701
+ #: src/Tribe/Assets.php:676 src/deprecated/Tribe__Events__Asset__Dynamic.php:68
2702
  msgid "Nov"
2703
  msgstr "Nov"
2704
 
2705
+ #: src/Tribe/Assets.php:675 src/deprecated/Tribe__Events__Asset__Dynamic.php:67
2706
  msgid "Oct"
2707
  msgstr "Oct"
2708
 
2709
+ #: src/Tribe/Assets.php:674 src/deprecated/Tribe__Events__Asset__Dynamic.php:66
2710
  msgid "Sep"
2711
  msgstr "Sep"
2712
 
2713
+ #: src/Tribe/Assets.php:673 src/deprecated/Tribe__Events__Asset__Dynamic.php:65
2714
  msgid "Aug"
2715
  msgstr "Aug"
2716
 
2717
+ #: src/Tribe/Assets.php:672 src/deprecated/Tribe__Events__Asset__Dynamic.php:64
2718
  msgid "Jul"
2719
  msgstr "Jul"
2720
 
2721
+ #: src/Tribe/Assets.php:671 src/deprecated/Tribe__Events__Asset__Dynamic.php:63
2722
  msgid "Jun"
2723
  msgstr "Jun"
2724
 
2725
+ #: src/Tribe/Assets.php:669 src/deprecated/Tribe__Events__Asset__Dynamic.php:61
2726
  msgid "Apr"
2727
  msgstr "Apr"
2728
 
2729
+ #: src/Tribe/Assets.php:668 src/deprecated/Tribe__Events__Asset__Dynamic.php:60
2730
  msgid "Mar"
2731
  msgstr "Mar"
2732
 
2733
+ #: src/Tribe/Assets.php:667 src/deprecated/Tribe__Events__Asset__Dynamic.php:59
2734
  msgid "Feb"
2735
  msgstr "Feb"
2736
 
2737
+ #: src/Tribe/Assets.php:666 src/deprecated/Tribe__Events__Asset__Dynamic.php:58
2738
  msgid "Jan"
2739
  msgstr "Jan"
2740
 
2741
+ #: src/Tribe/Assets.php:663 src/deprecated/Tribe__Events__Asset__Dynamic.php:55
2742
  msgid "December"
2743
  msgstr "December"
2744
 
2745
+ #: src/Tribe/Assets.php:662 src/deprecated/Tribe__Events__Asset__Dynamic.php:54
2746
  msgid "November"
2747
  msgstr "November"
2748
 
2749
+ #: src/Tribe/Assets.php:661 src/deprecated/Tribe__Events__Asset__Dynamic.php:53
2750
  msgid "October"
2751
  msgstr "October"
2752
 
2753
+ #: src/Tribe/Assets.php:660 src/deprecated/Tribe__Events__Asset__Dynamic.php:52
2754
  msgid "September"
2755
  msgstr "September"
2756
 
2757
+ #: src/Tribe/Assets.php:659 src/deprecated/Tribe__Events__Asset__Dynamic.php:51
2758
  msgid "August"
2759
  msgstr "August"
2760
 
2761
+ #: src/Tribe/Assets.php:658 src/deprecated/Tribe__Events__Asset__Dynamic.php:50
2762
  msgid "July"
2763
  msgstr "July"
2764
 
2765
+ #: src/Tribe/Assets.php:657 src/deprecated/Tribe__Events__Asset__Dynamic.php:49
2766
  msgid "June"
2767
  msgstr "June"
2768
 
2769
+ #: src/Tribe/Assets.php:656 src/Tribe/Assets.php:670
2770
+ #: src/deprecated/Tribe__Events__Asset__Dynamic.php:48
2771
+ #: src/deprecated/Tribe__Events__Asset__Dynamic.php:62
2772
  msgid "May"
2773
  msgstr "May"
2774
 
2775
+ #: src/Tribe/Assets.php:655 src/deprecated/Tribe__Events__Asset__Dynamic.php:47
2776
  msgid "April"
2777
  msgstr "April"
2778
 
2779
+ #: src/Tribe/Assets.php:654 src/deprecated/Tribe__Events__Asset__Dynamic.php:46
2780
  msgid "March"
2781
  msgstr "March"
2782
 
2783
+ #: src/Tribe/Assets.php:653 src/deprecated/Tribe__Events__Asset__Dynamic.php:45
2784
  msgid "February"
2785
  msgstr "February"
2786
 
2787
+ #: src/Tribe/Assets.php:652 src/deprecated/Tribe__Events__Asset__Dynamic.php:44
2788
  msgid "January"
2789
  msgstr "January"
2790
 
2791
+ #: src/Tribe/Assets.php:649 src/deprecated/Tribe__Events__Asset__Dynamic.php:41
2792
  msgid "Sat"
2793
  msgstr "Sat"
2794
 
2795
+ #: src/Tribe/Assets.php:648 src/deprecated/Tribe__Events__Asset__Dynamic.php:40
2796
  msgid "Fri"
2797
  msgstr "Fri"
2798
 
2799
+ #: src/Tribe/Assets.php:647 src/deprecated/Tribe__Events__Asset__Dynamic.php:39
2800
  msgid "Thu"
2801
  msgstr "Thu"
2802
 
2803
+ #: src/Tribe/Assets.php:646 src/deprecated/Tribe__Events__Asset__Dynamic.php:38
2804
  msgid "Wed"
2805
  msgstr "Wed"
2806
 
2807
+ #: src/Tribe/Assets.php:645 src/deprecated/Tribe__Events__Asset__Dynamic.php:37
2808
  msgid "Tue"
2809
  msgstr "Tue"
2810
 
2811
+ #: src/Tribe/Assets.php:644 src/deprecated/Tribe__Events__Asset__Dynamic.php:36
2812
  msgid "Mon"
2813
  msgstr "Mon"
2814
 
2815
+ #: src/Tribe/Assets.php:643 src/deprecated/Tribe__Events__Asset__Dynamic.php:35
2816
  msgid "Sun"
2817
  msgstr "Sun"
2818
 
2819
+ #: src/Tribe/Assets.php:640 src/deprecated/Tribe__Events__Asset__Dynamic.php:32
2820
  msgid "Saturday"
2821
  msgstr "Saturday"
2822
 
2823
+ #: src/Tribe/Assets.php:639 src/deprecated/Tribe__Events__Asset__Dynamic.php:31
2824
  msgid "Friday"
2825
  msgstr "Friday"
2826
 
2827
+ #: src/Tribe/Assets.php:638 src/deprecated/Tribe__Events__Asset__Dynamic.php:30
2828
  msgid "Thursday"
2829
  msgstr "Thursday"
2830
 
2831
+ #: src/Tribe/Assets.php:637 src/deprecated/Tribe__Events__Asset__Dynamic.php:29
2832
  msgid "Wednesday"
2833
  msgstr "Wednesday"
2834
 
2835
+ #: src/Tribe/Assets.php:636 src/deprecated/Tribe__Events__Asset__Dynamic.php:28
2836
  msgid "Tuesday"
2837
  msgstr "Tuesday"
2838
 
2839
+ #: src/Tribe/Assets.php:635 src/deprecated/Tribe__Events__Asset__Dynamic.php:27
2840
  msgid "Monday"
2841
  msgstr "Monday"
2842
 
2843
+ #: src/Tribe/Assets.php:634 src/deprecated/Tribe__Events__Asset__Dynamic.php:26
2844
  msgid "Sunday"
2845
  msgstr "Sunday"
2846
 
2921
  msgid "Unknown service message"
2922
  msgstr "Unknown service message"
2923
 
2924
+ #: src/Tribe/Aggregator/Record/List_Table.php:540
2925
  msgid "Unknown"
2926
  msgstr "Unknown"
2927
 
2928
+ #: src/Tribe/Aggregator/Record/Abstract.php:1206
2929
  msgid "When this import was last scheduled to run, the daily limit for your Event Aggregator license had already been reached."
2930
  msgstr "When this import was last scheduled to run, the daily limit for your Event Aggregator licence had already been reached."
2931
 
3662
  msgid "mi"
3663
  msgstr "mi"
3664
 
3665
+ #: src/Tribe/Main.php:982
3666
  msgid "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3667
  msgstr "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3668
 
3887
  msgid "Scheduled Imports"
3888
  msgstr "Scheduled Imports"
3889
 
3890
+ #: src/Tribe/Aggregator/Tabs/New.php:615
3891
  msgid "Renew your Event Aggregator license"
3892
  msgstr "Renew your Event Aggregator licence"
3893
 
3894
+ #: src/Tribe/Aggregator/Tabs/New.php:612
3895
  msgid "Renew your license in order to import events from Facebook, iCalendar, Google, or Meetup."
3896
  msgstr "Renew your licence in order to import events from Facebook, iCalendar, Google, or Meetup."
3897
 
3898
+ #: src/Tribe/Aggregator/Tabs/New.php:611
3899
  msgid "Your Event Aggregator license is expired."
3900
  msgstr "Your Event Aggregator licence is expired."
3901
 
3902
+ #: src/Tribe/Aggregator/Tabs/New.php:563
3903
  msgid "Learn More"
3904
  msgstr "Learn More"
3905
 
3906
+ #: src/Tribe/Aggregator/Tabs/New.php:558 src/Tribe/Aggregator/Tabs/New.php:565
3907
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:19
3908
  msgid "opens in a new window"
3909
  msgstr "opens in a new window"
3910
 
3911
+ #: src/Tribe/Aggregator/Tabs/New.php:556
3912
  msgid "Buy It Now"
3913
  msgstr "Buy It Now"
3914
 
3915
+ #: src/Tribe/Aggregator/Tabs/New.php:553
3916
  msgid "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3917
  msgstr "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3918
 
3919
+ #: src/Tribe/Aggregator/Tabs/New.php:551
3920
  msgid "Import Using Event Aggregator"
3921
  msgstr "Import Using Event Aggregator"
3922
 
3923
+ #: src/Tribe/Aggregator/Tabs/New.php:464
3924
  msgid "Unable to save credentials"
3925
  msgstr "Unable to save credentials"
3926
 
3927
+ #: src/Tribe/Aggregator/Tabs/New.php:457
3928
  msgid "Credentials have been saved"
3929
  msgstr "Credentials have been saved"
3930
 
3931
+ #: src/Tribe/Aggregator/Tabs/New.php:448
3932
  msgid "The Meetup API key is required."
3933
  msgstr "The Meetup API key is required."
3934
 
3935
+ #: src/Tribe/Aggregator/Tabs/New.php:439
3936
  msgid "Invalid credential save nonce"
3937
  msgstr "Invalid credential save nonce"
3938
 
3939
+ #: src/Tribe/Aggregator/Tabs/New.php:429
3940
  msgid "Invalid credential save request"
3941
  msgstr "Invalid credential save request"
3942
 
3943
+ #: src/Tribe/Aggregator/Tabs/New.php:417
3944
  msgid "View your scheduled imports."
3945
  msgstr "View your scheduled imports."
3946
 
3947
+ #: src/Tribe/Aggregator/Tabs/New.php:413
3948
  msgid "The next import is scheduled for %1$s."
3949
  msgstr "The next import is scheduled for %1$s."
3950
 
3951
+ #: src/Tribe/Aggregator/Tabs/New.php:406
3952
  msgctxt "separator between date and time"
3953
  msgid " at "
3954
  msgstr " at "
3955
 
3956
+ #: src/Tribe/Aggregator/Tabs/New.php:402
3957
  msgid "Your scheduled import was saved and the first import is complete!"
3958
  msgstr "Your scheduled import was saved and the first import is complete!"
3959
 
3960
+ #: src/Tribe/Aggregator/Tabs/New.php:377
3961
  msgid "View your event categories"
3962
  msgstr "View your event categories"
3963
 
3964
+ #: src/Tribe/Aggregator/Tabs/New.php:373
3965
  msgid "%1$d new event category was created."
3966
  msgid_plural "%1$d new event categories were created."
3967
  msgstr[0] "%1$d new event category was created."
3968
  msgstr[1] "%1$d new event categories were created."
3969
 
3970
+ #: src/Tribe/Aggregator/Tabs/New.php:364
3971
  msgid "View your event organizers"
3972
  msgstr "View your event organizers"
3973
 
3974
+ #: src/Tribe/Aggregator/Tabs/New.php:360
3975
  msgid "%1$d new organizer was imported."
3976
  msgid_plural "%1$d new organizers were imported."
3977
  msgstr[0] "%1$d new organizer was imported."
3978
  msgstr[1] "%1$d new organizers were imported."
3979
 
3980
+ #: src/Tribe/Aggregator/Tabs/New.php:352
3981
  msgid "View your event venues"
3982
  msgstr "View your event venues"
3983
 
3984
+ #: src/Tribe/Aggregator/Tabs/New.php:348
3985
  msgid "%1$d new venue was imported."
3986
  msgid_plural "%1$d new venues were imported."
3987
  msgstr[0] "%1$d new venue was imported."
3988
  msgstr[1] "%1$d new venues were imported."
3989
 
3990
+ #: src/Tribe/Aggregator/Tabs/New.php:338
3991
  msgid "View all %s"
3992
  msgstr "View all %s"
3993
 
3994
+ #: src/Tribe/Aggregator/Tabs/New.php:330
3995
  msgid "No %1$s were imported or updated."
3996
  msgstr "No %1$s were imported or updated."
3997
 
3998
+ #: src/Tribe/Aggregator/Tabs/New.php:323
3999
  msgid "%1$d new image was imported."
4000
  msgid_plural "%1$d new images were imported."
4001
  msgstr[0] "%1$d new image was imported."
4002
  msgstr[1] "%1$d new images were imported."
4003
 
4004
+ #: src/Tribe/Aggregator/Tabs/New.php:314
4005
  msgid "%1$d already-imported %2$s was skipped."
4006
  msgid_plural "%1$d already-imported %2$s were skipped."
4007
  msgstr[0] "%1$d already-imported %2$s was skipped."
4008
  msgstr[1] "%1$d already-imported %2$s were skipped."
4009
 
4010
+ #: src/Tribe/Aggregator/Tabs/New.php:303
4011
  msgid "%1$d existing %2$s was updated."
4012
  msgid_plural "%1$d existing %2$s were updated."
4013
  msgstr[0] "%1$d existing %2$s was updated."
4014
  msgstr[1] "%1$d existing %2$s were updated."
4015
 
4016
+ #: src/Tribe/Aggregator/Tabs/New.php:291
4017
  msgid "%1$d new %2$s was imported."
4018
  msgid_plural "%1$d new %2$s were imported."
4019
  msgstr[0] "%1$d new %2$s was imported."
4277
  msgid "Events Aggregator Record"
4278
  msgstr "Events Aggregator Record"
4279
 
4280
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:183
4281
  msgid "Unable to continue inserting data. Please reload this page to continue/try again."
4282
  msgstr "Unable to continue inserting data. Please reload this page to continue/try again."
4283
 
4297
  msgid "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4298
  msgstr "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4299
 
4300
+ #: src/Tribe/Aggregator/Record/Queue_Processor.php:233
4301
  msgid "Could not process queue for Import Record %1$d: %2$s"
4302
  msgstr "Could not process queue for Import Record %1$d: %2$s"
4303
 
4304
+ #: src/Tribe/Aggregator/Record/List_Table.php:664
4305
  msgid "Select %s"
4306
  msgstr "Select %s"
4307
 
4308
+ #: src/Tribe/Aggregator/Record/List_Table.php:629
4309
+ #: src/Tribe/Aggregator/Record/List_Table.php:638
4310
+ #: src/Tribe/Aggregator/Record/List_Table.php:646
4311
  msgid "updated"
4312
  msgstr "updated"
4313
 
4314
+ #: src/Tribe/Aggregator/Record/List_Table.php:627
4315
+ #: src/Tribe/Aggregator/Record/List_Table.php:635
4316
+ #: src/Tribe/Aggregator/Record/List_Table.php:643
4317
  msgid "new"
4318
  msgstr "new"
4319
 
4320
+ #: src/Tribe/Aggregator/Record/List_Table.php:624
4321
  msgid "Latest Import:"
4322
  msgstr "Latest Import:"
4323
 
4324
+ #: src/Tribe/Aggregator/Record/List_Table.php:622
4325
  msgid "all time"
4326
  msgstr "all time"
4327
 
4328
+ #: src/Tribe/Aggregator/Record/List_Table.php:596
4329
  msgid "One Time"
4330
  msgstr "One Time"
4331
 
4332
+ #: src/Tribe/Aggregator/Record/List_Table.php:593
4333
  msgid "Invalid Frequency"
4334
  msgstr "Invalid Frequency"
4335
 
4336
+ #: src/Tribe/Aggregator/Record/List_Table.php:563 src/Tribe/Aggregator.php:426
4337
  #: src/Tribe/Ignored_Events.php:357
4338
  #: src/admin-views/tribe-options-addons-api.php:36
4339
  msgctxt "in human readable time"
4340
  msgid "in about %s"
4341
  msgstr "in about %s"
4342
 
4343
+ #: src/Tribe/Aggregator/Record/List_Table.php:561 src/Tribe/Aggregator.php:424
4344
  #: src/Tribe/Ignored_Events.php:355
4345
  #: src/admin-views/tribe-options-addons-api.php:34
4346
  msgctxt "human readable time ago"
4347
  msgid "about %s ago"
4348
  msgstr "about %s ago"
4349
 
4350
+ #: src/Tribe/Aggregator/Record/List_Table.php:513
4351
  msgid "Radius:"
4352
  msgstr "Radius:"
4353
 
4354
+ #: src/Tribe/Aggregator/Record/List_Table.php:496
4355
  msgid "Keywords:"
4356
  msgstr "Keywords:"
4357
 
4358
+ #: src/Tribe/Aggregator/Record/List_Table.php:483
4359
  #: src/Tribe/Ignored_Events.php:337
4360
  msgctxt "record via origin"
4361
  msgid "via "
4362
  msgstr "via "
4363
 
4364
+ #: src/Tribe/Aggregator/Record/List_Table.php:440
4365
  msgid "Import preview"
4366
  msgstr "Import preview"
4367
 
4368
+ #: src/Tribe/Aggregator/Record/List_Table.php:436
4369
  msgid "Import pending"
4370
  msgstr "Import pending"
4371
 
4372
+ #: src/Tribe/Aggregator/Record/List_Table.php:432
4373
  msgid "Import schedule"
4374
  msgstr "Import schedule"
4375
 
4376
+ #: src/Tribe/Aggregator/Record/List_Table.php:420
4377
  msgid "Import failed"
4378
  msgstr "Import failed"
4379
 
4380
+ #: src/Tribe/Aggregator/Record/List_Table.php:416
4381
  msgid "Import completed"
4382
  msgstr "Import completed"
4383
 
4462
  msgid "Eventbrite"
4463
  msgstr "Eventbrite"
4464
 
4465
+ #: src/Tribe/Aggregator/Record/Abstract.php:1149
4466
  msgid "Deleted Attachment: %d"
4467
  msgstr "Deleted Attachment: %d"
4468
 
4469
+ #: src/Tribe/Aggregator/Record/Abstract.php:497
4470
  msgid "Record: "
4471
  msgstr "Record: "
4472
 
4501
  msgstr "Hide Filters"
4502
 
4503
  #: src/Tribe/Aggregator/Page.php:96
4504
+ #: src/Tribe/Aggregator/Record/List_Table.php:492
4505
  msgid "View Filters"
4506
  msgstr "View Filters"
4507
 
4859
  msgstr "There is an update for %s. You'll need to %scheck your licence%s to have access to updates, downloads, and support."
4860
 
4861
  #: common/src/Tribe/PUE/Checker.php:961 common/src/Tribe/PUE/Notices.php:285
4862
+ #: src/Tribe/Aggregator/Record/Abstract.php:1164
4863
  msgid " (opens in a new window)"
4864
  msgstr " (opens in a new window)"
4865
 
5160
  msgid "No notable changes detected"
5161
  msgstr "No notable changes detected"
5162
 
5163
+ #: src/Tribe/Main.php:2561
5164
  msgid " (View Full %1$s Description Here: %2$s)"
5165
  msgstr " (View Full %1$s Description Here: %2$s)"
5166
 
5208
  msgid "Keep the Core Plugin %sFREE%s!"
5209
  msgstr "Keep the Core Plugin %sFREE%s!"
5210
 
5211
+ #: src/Tribe/Template_Factory.php:231
5212
  msgid "No results were found for %1$s in or near %2$s."
5213
  msgstr "No results were found for %1$s in or near %2$s."
5214
 
5215
+ #: src/Tribe/Template_Factory.php:229
5216
  msgid "There were no results found for %s."
5217
  msgstr "There were no results found for %s."
5218
 
5219
+ #: src/Tribe/Template/Month.php:458
5220
  msgid "There were no results found for %s this month. Try searching next month."
5221
  msgstr "There were no results found for %s this month. Try searching next month."
5222
 
5223
+ #: src/Tribe/Template/Day.php:154
5224
  msgid "No %1$s scheduled for %2$s. Please try another day."
5225
  msgstr "No %1$s scheduled for %2$s. Please try another day."
5226
 
5227
+ #: src/Tribe/Main.php:3855
5228
  msgid "Check out the %savailable add-ons%s."
5229
  msgstr "Check out the %savailable add-ons%s."
5230
 
5231
+ #: src/Tribe/Main.php:1922
5232
  msgid "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5233
  msgstr "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5234
 
5235
+ #: src/Tribe/Main.php:1853 src/Tribe/Main.php:1873
5236
  msgid "%1$s scheduled for: %2$s."
5237
  msgstr "%1$s scheduled for: %2$s."
5238
 
5239
+ #: src/Tribe/Main.php:1834
5240
  msgid "%1$s draft updated. %2$sPreview %3$s"
5241
  msgstr "%1$s draft updated. %2$sPreview %3$s"
5242
 
5243
+ #: src/Tribe/Main.php:1825
5244
  msgid "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5245
  msgstr "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5246
 
5247
+ #: src/Tribe/Main.php:1819
5248
  msgid "%1$s submitted. %2$sPreview %3$s"
5249
  msgstr "%1$s submitted. %2$sPreview %3$s"
5250
 
5251
+ #: src/Tribe/Main.php:1801
5252
  msgid "%1$s updated. %2$sView %1$s%3$s"
5253
  msgstr "%1$s updated. %2$sView %1$s%3$s"
5254
 
5255
+ #: src/Tribe/Main.php:1476
5256
  msgid "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5257
  msgstr "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5258
 
5259
+ #: src/Tribe/Main.php:1111
5260
  msgid "If you have a valid license for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5261
  msgstr "If you have a valid licence for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5262
 
5263
+ #: src/Tribe/Main.php:1110
5264
  msgid "post a thread"
5265
  msgstr "post a thread"
5266
 
5267
+ #: src/Tribe/Main.php:1106
5268
  msgid "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays."
5269
  msgstr "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a licence and you can post there directly and expect a response within 24-48 hours during weekdays."
5270
 
5271
+ #: src/Tribe/Main.php:1102
5272
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5273
  msgstr "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5274
 
5275
+ #: src/Tribe/Main.php:1101
5276
  msgid "open-source forum on WordPress.org"
5277
  msgstr "open-source forum on WordPress.org"
5278
 
5279
+ #: src/Tribe/Main.php:1097
5280
  msgid "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays"
5281
  msgstr "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a licence and you can post there directly and expect a response within 24-48 hours during weekdays"
5282
 
5283
+ #: src/Tribe/Main.php:1096 src/Tribe/Main.php:1104
5284
  msgid "premium support on our website"
5285
  msgstr "premium support on our website"
5286
 
5287
+ #: src/Tribe/Main.php:1094
5288
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5289
  msgstr "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5290
 
5291
+ #: src/Tribe/Main.php:1093
5292
  msgid "Events Tickets"
5293
  msgstr "Events Tickets"
5294
 
5295
+ #: src/Tribe/Main.php:1078
5296
  msgid "Customizing the Events plugins"
5297
  msgstr "Customizing the Events plugins"
5298
 
5299
+ #: src/Tribe/Main.php:1078
5300
  msgid "%s: Code and guides for customizing your calendar in useful and interesting ways."
5301
  msgstr "%s: Code and guides for customizing your calendar in useful and interesting ways."
5302
 
5303
+ #: src/Tribe/Main.php:1076
5304
  msgid "Troubleshooting common problems"
5305
  msgstr "Troubleshooting common problems"
5306
 
5307
+ #: src/Tribe/Main.php:1076
5308
  msgid "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5309
  msgstr "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5310
 
5311
+ #: src/Tribe/Main.php:1074
5312
  msgid "Using stylesheets and page templates"
5313
  msgstr "Using stylesheets and page templates"
5314
 
5315
+ #: src/Tribe/Main.php:1074
5316
  msgid "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5317
  msgstr "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5318
 
5319
+ #: src/Tribe/Main.php:1072
5320
  msgid "Themer’s Guide"
5321
  msgstr "Themer’s Guide"
5322
 
5323
+ #: src/Tribe/Main.php:1072
5324
  msgid "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5325
  msgstr "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5326
 
5327
+ #: src/Tribe/Main.php:1070
5328
  msgid "Features overview"
5329
  msgstr "Features overview"
5330
 
5331
+ #: src/Tribe/Main.php:1070
5332
  msgid "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5333
  msgstr "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5334
 
5335
+ #: src/Tribe/Main.php:1068
5336
  msgid "Settings overview"
5337
  msgstr "Settings overview"
5338
 
5339
+ #: src/Tribe/Main.php:1068
5340
  msgid "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5341
  msgstr "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5342
 
5343
+ #: src/Tribe/Main.php:1065
5344
  msgid "Support for The Events Calendar"
5345
  msgstr "Support for The Events Calendar"
5346
 
5347
+ #: src/Tribe/Main.php:1054
5348
  msgid "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5349
  msgstr "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5350
 
5351
+ #: src/Tribe/Main.php:1052
5352
  msgid "New User Primer"
5353
  msgstr "New User Primer"
5354
 
5371
  msgid "CSV Import Settings"
5372
  msgstr "CSV Import Settings"
5373
 
5374
+ #: src/deprecated/Tribe__Events__Asset__Bootstrap_Datepicker.php:27
5375
  msgid "Clear"
5376
  msgstr "Clear"
5377
 
5383
  msgid "Create New %s"
5384
  msgstr "Create New %s"
5385
 
5386
+ #: src/Tribe/Organizer.php:375
5387
  msgid "Unnamed %s"
5388
  msgstr "Unnamed %s"
5389
 
5571
  msgid "%s must be a positive number or percent."
5572
  msgstr "%s must be a positive number or percent."
5573
 
5574
+ #: src/Tribe/Main.php:999
5575
  msgid "%1$s or %2$s"
5576
  msgstr "%1$s or %2$s"
5577
 
5628
  msgid "Day Navigation"
5629
  msgstr "Day Navigation"
5630
 
5631
+ #: src/Tribe/Aggregator/Tabs/New.php:400
5632
  msgid "Import complete!"
5633
  msgstr "Import complete!"
5634
 
5870
  msgstr "More..."
5871
 
5872
  #: common/src/Tribe/Admin/Help_Page.php:194 common/src/Tribe/Plugins_API.php:43
5873
+ #: src/Tribe/Main.php:1105
5874
  msgid "Events Calendar PRO"
5875
  msgstr "Events Calendar PRO"
5876
 
6309
  msgid "%s Website"
6310
  msgstr "%s Website"
6311
 
6312
+ #: src/Tribe/Aggregator/Record/List_Table.php:509
6313
  msgid "Location:"
6314
  msgstr "Location:"
6315
 
7714
  msgid "Template overrides should be moved to the correct subdirectory: %s"
7715
  msgstr "Template overrides should be moved to the correct subdirectory: %s"
7716
 
7717
+ #: src/Tribe/Template_Factory.php:237
7718
  msgid "No previous %s "
7719
  msgstr "No previous %s "
7720
 
7721
+ #: src/Tribe/Template_Factory.php:235 src/Tribe/Template_Factory.php:240
7722
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7723
  msgstr "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7724
 
7725
+ #: src/Tribe/Template_Factory.php:233
7726
  msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7727
  msgstr "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7728
 
7730
  msgid "This %s has passed."
7731
  msgstr "This %s has passed."
7732
 
7733
+ #: src/Tribe/Template/Month.php:955
7734
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7735
  msgstr "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7736
 
7737
+ #: src/Tribe/Template/Month.php:464 src/Tribe/Template_Factory.php:242
7738
  msgid "There were no results found."
7739
  msgstr "There were no results found."
7740
 
7741
+ #: src/Tribe/Template/Month.php:462
7742
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7743
  msgstr "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7744
 
7745
+ #: src/Tribe/Template/Day.php:152
7746
  msgid "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7747
  msgstr "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7748
 
7749
+ #: src/Tribe/Template/Day.php:118 src/Tribe/Template/Day.php:134
7750
  msgid "Ongoing"
7751
  msgstr "Ongoing"
7752
 
7753
+ #: src/Tribe/Aggregator/Page.php:82 src/Tribe/Template/Day.php:115
7754
+ #: src/Tribe/Template/Day.php:131
7755
  msgid "All Day"
7756
  msgstr "All Day"
7757
 
7846
  msgid "Error"
7847
  msgstr "Error"
7848
 
7849
+ #: src/Tribe/Main.php:4198
7850
  msgid "Once Every 30 Mins"
7851
  msgstr "Once Every 30 Mins"
7852
 
7853
+ #: src/Tribe/Main.php:4118
7854
  msgid "Day Of"
7855
  msgstr "Day Of"
7856
 
7857
+ #: src/Tribe/Main.php:4116
7858
  msgid "%s From"
7859
  msgstr "%s From"
7860
 
7861
+ #: src/Tribe/Main.php:4112
7862
  msgid "%s In"
7863
  msgstr "%s In"
7864
 
7865
+ #: src/Tribe/Main.php:4107 src/Tribe/Main.php:4132
7866
  #: src/admin-views/aggregator/origins/refine.php:7
7867
  msgid "Date"
7868
  msgstr "Date"
7869
 
7870
+ #: src/Tribe/Main.php:4034
7871
  msgid "Search"
7872
  msgstr "Search"
7873
 
7874
+ #: src/Tribe/Main.php:4008 src/admin-views/aggregator/fields/schedule.php:44
7875
  #: src/admin-views/aggregator/fields/schedule.php:62
7876
  msgid "Day"
7877
  msgstr "Day"
7878
 
7879
+ #: src/Tribe/Main.php:3991
7880
  msgid "Month"
7881
  msgstr "Month"
7882
 
7883
+ #: src/Tribe/Main.php:3973
7884
  msgid "List"
7885
  msgstr "List"
7886
 
7887
+ #: src/Tribe/Main.php:3957
7888
  msgid "Calendar"
7889
  msgstr "Calendar"
7890
 
7891
  #: common/src/Tribe/Settings.php:254
7892
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:89 src/Tribe/Main.php:3956
7893
  msgid "Settings"
7894
  msgstr "Settings"
7895
 
7903
  msgid "Add %s"
7904
  msgstr "Add %s"
7905
 
7906
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:45 src/Tribe/Main.php:3907
7907
  msgid "View Calendar"
7908
  msgstr "View Calendar"
7909
 
7911
  msgid "%s"
7912
  msgstr "%s"
7913
 
7914
+ #: src/Tribe/Main.php:3854
7915
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7916
  msgstr "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7917
 
7918
+ #: src/Tribe/Main.php:3849
7919
  msgid "Additional Functionality"
7920
  msgstr "Additional Functionality"
7921
 
7922
+ #: src/Tribe/Main.php:3804
7923
  msgid "News from Modern Tribe"
7924
  msgstr "News from Modern Tribe"
7925
 
7926
+ #: src/Tribe/Main.php:3784
7927
  msgid "View All Add-Ons"
7928
  msgstr "View All Add-Ons"
7929
 
7930
+ #: src/Tribe/Main.php:3781
7931
  msgid "Support"
7932
  msgstr "Support"
7933
 
7934
+ #: src/Tribe/Main.php:3429 src/Tribe/Main.php:3442
7935
  msgid "%s Information"
7936
  msgstr "%s Information"
7937
 
7938
+ #: src/Tribe/Main.php:3420
7939
  msgid "%s Options"
7940
  msgstr "%s Options"
7941
 
7942
+ #: src/Tribe/Main.php:3343 src/Tribe/Main.php:3378
7943
  #: src/functions/template-tags/day.php:157
7944
  #: src/functions/template-tags/day.php:178
7945
  msgid "Date out of range."
7946
  msgstr "Date out of range."
7947
 
7948
+ #: src/Tribe/Main.php:2170
7949
  msgid "all"
7950
  msgstr "all"
7951
 
7952
+ #: src/Tribe/Main.php:2169 src/functions/template-tags/general.php:111
7953
  msgid "events"
7954
  msgstr "events"
7955
 
7956
+ #: src/Tribe/Main.php:2168 src/functions/template-tags/general.php:79
7957
  msgid "event"
7958
  msgstr "event"
7959
 
7960
+ #: src/Tribe/Main.php:2167
7961
  msgid "page"
7962
  msgstr "page"
7963
 
7969
  msgid "Done"
7970
  msgstr "Done"
7971
 
7972
+ #: common/src/Tribe/Main.php:272
7973
+ #: src/deprecated/Tribe__Events__Asset__Bootstrap_Datepicker.php:28
7974
  #: src/functions/template-tags/day.php:104
7975
  msgid "Today"
7976
  msgstr "Today"
7983
  msgid "Next"
7984
  msgstr "Next"
7985
 
7986
+ #: src/Tribe/Linked_Posts.php:1138
7987
  msgid "No saved %s exists."
7988
  msgstr "No saved %s exists."
7989
 
7990
+ #: src/Tribe/Linked_Posts.php:964
7991
  msgid "Available %s"
7992
  msgstr "Available %s"
7993
 
7994
+ #: src/Tribe/Linked_Posts.php:960
7995
  msgid "My %s"
7996
  msgstr "My %s"
7997
 
7998
+ #: src/Tribe/Main.php:1858 src/Tribe/Main.php:1878
7999
  msgid "%s draft updated."
8000
  msgstr "%s draft updated."
8001
 
8002
+ #: src/Tribe/Main.php:1851 src/Tribe/Main.php:1871
8003
  msgid "%s submitted."
8004
  msgstr "%s submitted."
8005
 
8006
+ #: src/Tribe/Main.php:1849 src/Tribe/Main.php:1869
8007
  msgid "%s published."
8008
  msgstr "%s published."
8009
 
8010
  #. translators: %s: date and time of the revision
8011
+ #: src/Tribe/Main.php:1868
8012
  msgid "%s restored to revision from %s"
8013
  msgstr "%s restored to revision from %s"
8014
 
8015
  #. translators: Publish box date format, see http://php.net/date
8016
+ #: src/Tribe/Main.php:1828 src/Tribe/Main.php:1856 src/Tribe/Main.php:1876
8017
  msgid "M j, Y @ G:i"
8018
  msgstr "M j, Y @ G:i"
8019
 
8020
+ #: src/Tribe/Main.php:1817 src/Tribe/Main.php:1850 src/Tribe/Main.php:1870
8021
  msgid "%s saved."
8022
  msgstr "%s saved."
8023
 
8024
  #. translators: %s: date and time of the revision
8025
+ #: src/Tribe/Main.php:1810 src/Tribe/Main.php:1848
8026
  msgid "%1$s restored to revision from %2$s"
8027
  msgstr "%1$s restored to revision from %2$s"
8028
 
8029
+ #: src/Tribe/Main.php:1808 src/Tribe/Main.php:1843 src/Tribe/Main.php:1846
8030
+ #: src/Tribe/Main.php:1863 src/Tribe/Main.php:1866
8031
  msgid "%s updated."
8032
  msgstr "%s updated."
8033
 
8034
+ #: src/Tribe/Main.php:1807 src/Tribe/Main.php:1845 src/Tribe/Main.php:1865
8035
  msgid "Custom field deleted."
8036
  msgstr "Custom field deleted."
8037
 
8038
+ #: src/Tribe/Main.php:1806 src/Tribe/Main.php:1844 src/Tribe/Main.php:1864
8039
  msgid "Custom field updated."
8040
  msgstr "Custom field updated."
8041
 
8042
+ #: src/Tribe/Main.php:1784
8043
  msgid "New %s Category Name"
8044
  msgstr "New %s Category Name"
8045
 
8046
+ #: src/Tribe/Main.php:1783
8047
  msgid "Add New %s Category"
8048
  msgstr "Add New %s Category"
8049
 
8050
+ #: src/Tribe/Main.php:1782
8051
  msgid "Update %s Category"
8052
  msgstr "Update %s Category"
8053
 
8054
+ #: src/Tribe/Main.php:1781
8055
  msgid "Edit %s Category"
8056
  msgstr "Edit %s Category"
8057
 
8058
+ #: src/Tribe/Main.php:1780
8059
  msgid "Parent %s Category:"
8060
  msgstr "Parent %s Category:"
8061
 
8062
+ #: src/Tribe/Main.php:1779
8063
  msgid "Parent %s Category"
8064
  msgstr "Parent %s Category"
8065
 
8066
+ #: src/Tribe/Main.php:1778
8067
  msgid "All %s Categories"
8068
  msgstr "All %s Categories"
8069
 
8070
+ #: src/Tribe/Main.php:1777
8071
  msgid "Search %s Categories"
8072
  msgstr "Search %s Categories"
8073
 
8074
+ #: src/Tribe/Main.php:1776
8075
  msgid "%s Category"
8076
  msgstr "%s Category"
8077
 
8078
+ #: src/Tribe/Main.php:1766 src/Tribe/Organizer.php:98 src/Tribe/Venue.php:117
8079
  msgid "No %s found in Trash"
8080
  msgstr "No %s found in Trash"
8081
 
8082
+ #: src/Tribe/Main.php:1765 src/Tribe/Organizer.php:97 src/Tribe/Venue.php:116
8083
  msgid "No %s found"
8084
  msgstr "No %s found"
8085
 
8086
+ #: src/Tribe/Main.php:1764 src/Tribe/Organizer.php:96 src/Tribe/Venue.php:115
8087
  msgid "Search %s"
8088
  msgstr "Search %s"
8089
 
8090
+ #: src/Tribe/Main.php:1763 src/Tribe/Organizer.php:95 src/Tribe/Venue.php:114
8091
  #: src/views/month/single-day.php:26
8092
  msgid "View %s"
8093
  msgstr "View %s"
8094
 
8095
+ #: src/Tribe/Main.php:1762 src/Tribe/Organizer.php:94 src/Tribe/Venue.php:113
8096
  msgid "New %s"
8097
  msgstr "New %s"
8098
 
8099
+ #: src/Tribe/Main.php:1760 src/Tribe/Main.php:1892 src/Tribe/Main.php:1893
8100
  #: src/Tribe/Organizer.php:92 src/Tribe/Venue.php:111
8101
  msgid "Add New %s"
8102
  msgstr "Add New %s"
8103
 
8104
+ #: src/Tribe/Main.php:1759 src/Tribe/Organizer.php:91 src/Tribe/Venue.php:110
8105
  msgid "Add New"
8106
  msgstr "Add New"
8107
 
8108
+ #: src/Tribe/Main.php:1726 src/Tribe/Main.php:2165
8109
  msgid "tag"
8110
  msgstr "tag"
8111
 
8112
+ #: src/Tribe/Main.php:1712 src/Tribe/Main.php:2166
8113
  msgid "category"
8114
  msgstr "category"
8115
 
8116
+ #: src/Tribe/Main.php:1464
8117
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8118
  msgstr "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8119
 
8120
+ #: src/Tribe/Main.php:1461
8121
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8122
  msgstr "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8123
 
8135
  msgid "Display"
8136
  msgstr "Display"
8137
 
8138
+ #: src/Tribe/Main.php:1308
8139
  msgid "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8140
  msgstr "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8141
 
8142
+ #: src/Tribe/Main.php:1296
8143
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8144
  msgstr "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8145
 
8146
+ #: src/Tribe/Main.php:786
8147
  msgid "Initializing Tribe Events on %s"
8148
  msgstr "Initializing Tribe Events on %s"
8149
 
8150
+ #: src/Tribe/Main.php:761
8151
  msgid "today"
8152
  msgstr "today"
8153
 
8154
+ #: src/Tribe/Main.php:760
8155
  msgid "day"
8156
  msgstr "day"
8157
 
8158
+ #: src/Tribe/Main.php:759
8159
  msgid "past"
8160
  msgstr "past"
8161
 
8162
+ #: src/Tribe/Main.php:758
8163
  msgid "upcoming"
8164
  msgstr "upcoming"
8165
 
8166
+ #: src/Tribe/Main.php:757
8167
  msgid "list"
8168
  msgstr "list"
8169
 
8170
+ #: src/Tribe/Main.php:756
8171
  msgid "month"
8172
  msgstr "month"
8173
 
8174
+ #. #-#-#-#-# the-events-calendar-code.pot (The Events Calendar 4.6.22.1)
8175
  #. #-#-#-#-#
8176
  #. Plugin Name of the plugin/theme
8177
  #: common/src/Tribe/Admin/Help_Page.php:59 common/src/Tribe/Customizer.php:569
8178
+ #: common/src/Tribe/Plugins_API.php:25 src/Tribe/Main.php:749
8179
+ #: src/Tribe/Main.php:1092 src/Tribe/Privacy.php:29
8180
  #: src/functions/template-tags/general.php:1345
8181
  msgid "The Events Calendar"
8182
  msgstr "The Events Calendar"
8183
 
8184
+ #: src/Tribe/Main.php:1162 src/admin-views/aggregator/tabs/import-form.php:185
8185
  #: src/admin-views/aggregator/tabs/import-form.php:197
8186
  #: src/functions/template-tags/general.php:63
8187
  msgid "Event"
8188
  msgstr "Event"
8189
 
8190
  #: common/src/Tribe/Settings.php:177 common/src/Tribe/Settings.php:241
8191
+ #: common/src/Tribe/Settings.php:242 src/Tribe/Main.php:1154
8192
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:207
8193
  #: src/functions/template-tags/general.php:95
8194
  msgid "Events"
8195
  msgstr "Events"
8196
 
8197
+ #: src/Tribe/Organizer.php:157 src/functions/template-tags/organizer.php:112
8198
  msgid "Organizer"
8199
  msgstr "Organizer"
8200
 
8201
  #: src/Tribe/Organizer.php:171
8202
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:206
8203
+ #: src/functions/template-tags/organizer.php:123
8204
  msgid "Organizers"
8205
  msgstr "Organizers"
8206
 
8464
  msgid "End:"
8465
  msgstr "End:"
8466
 
8467
+ #: src/Tribe/Aggregator/Record/List_Table.php:505
8468
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
8469
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
8470
  #: src/views/modules/meta/details.php:66 src/views/modules/meta/details.php:91
8483
  msgid "Start Date"
8484
  msgstr "Start Date"
8485
 
8486
+ #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1775
8487
  msgid "%s Categories"
8488
  msgstr "%s Categories"
8489
 
8494
  #: src/Tribe/Admin/Timezone_Updater.php:87
8495
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
8496
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:100
8497
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:210
8498
  msgid "%d%% complete"
8499
  msgstr "%d%% complete"
8500
 
8507
  msgstr "Please wait while time zone data is added to your events."
8508
 
8509
  #: src/Tribe/Admin/Bar/Default_Configurator.php:62
8510
+ #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:211 src/Tribe/Main.php:1761
8511
+ #: src/Tribe/Main.php:4843 src/Tribe/Main.php:4890 src/Tribe/Organizer.php:93
8512
  #: src/Tribe/Venue.php:112
8513
  msgid "Edit %s"
8514
  msgstr "Edit %s"
8515
 
8516
+ #: src/Tribe/Main.php:4827 src/Tribe/Main.php:4884
8517
  msgid "Use Saved %s:"
8518
  msgstr "Use Saved %s:"
8519
 
8520
+ #: src/Tribe/Main.php:991
8521
  msgid " ask the site administrator set a different Events URL slug."
8522
  msgstr " ask the site administrator set a different Events URL slug."
8523
 
8524
+ #: src/Tribe/Main.php:985
8525
  msgid "Ask the site administrator to edit the %s slug"
8526
  msgstr "Ask the site administrator to edit the %s slug"
8527
 
8529
  msgid "Thanks for Updating The Events Calendar"
8530
  msgstr "Thanks for Updating The Events Calendar"
8531
 
8532
+ #: src/Tribe/Main.php:844 src/Tribe/Main.php:846
8533
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
8534
  msgid "Welcome to The Events Calendar"
8535
  msgstr "Welcome to The Events Calendar"
lang/the-events-calendar-en_GB.mo CHANGED
Binary file
lang/the-events-calendar-en_GB.po CHANGED
@@ -11,6 +11,31 @@ msgstr ""
11
  "Language: en_GB\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: src/views/month/single-day.php:57
15
  msgid "%s for %s"
16
  msgstr ""
@@ -183,91 +208,91 @@ msgstr ""
183
  msgid "Do more with Eventbrite Tickets"
184
  msgstr ""
185
 
186
- #: src/Tribe/Main.php:4513
187
  msgid "Search for %s by month. Please use the format %s."
188
  msgstr ""
189
 
190
- #: src/Tribe/Main.php:4508
191
  msgid "Search for %s by Date. Please use the format %s."
192
  msgstr ""
193
 
194
- #: src/Tribe/Main.php:4476 src/Tribe/Main.php:4477
195
  msgid "2 digit month dot 4 digit year"
196
  msgstr ""
197
 
198
- #: src/Tribe/Main.php:4475
199
  msgid "4 digit year dot 2 digit month"
200
  msgstr ""
201
 
202
- #: src/Tribe/Main.php:4474
203
  msgid "2 digit month hyphen 4 digit year"
204
  msgstr ""
205
 
206
- #: src/Tribe/Main.php:4471 src/Tribe/Main.php:4472 src/Tribe/Main.php:4473
207
  msgid "1 digit month hyphen 4 digit year"
208
  msgstr ""
209
 
210
- #: src/Tribe/Main.php:4468 src/Tribe/Main.php:4470
211
  msgid "2 digit month slash 4 digit year"
212
  msgstr ""
213
 
214
- #: src/Tribe/Main.php:4467 src/Tribe/Main.php:4469
215
  msgid "1 digit month slash 4 digit year"
216
  msgstr ""
217
 
218
- #: src/Tribe/Main.php:4466
219
  msgid "4 digit year hyphen 2 digit month"
220
  msgstr ""
221
 
222
- #: src/Tribe/Main.php:4462
223
  msgid "2 digit day dot 2 digit month dot 4 digit year"
224
  msgstr ""
225
 
226
- #: src/Tribe/Main.php:4461
227
  msgid "2 digit month dot 2 digit day dot 4 digit year"
228
  msgstr ""
229
 
230
- #: src/Tribe/Main.php:4460
231
  msgid "4 digit year dot 2 digit month dot 2 digit day"
232
  msgstr ""
233
 
234
- #: src/Tribe/Main.php:4459
235
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
236
  msgstr ""
237
 
238
- #: src/Tribe/Main.php:4458
239
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
240
  msgstr ""
241
 
242
- #: src/Tribe/Main.php:4457
243
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
244
  msgstr ""
245
 
246
- #: src/Tribe/Main.php:4456
247
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
248
  msgstr ""
249
 
250
- #: src/Tribe/Main.php:4455
251
  msgid "2 digit day slash 2 digit month slash 4 digit year"
252
  msgstr ""
253
 
254
- #: src/Tribe/Main.php:4454
255
  msgid "1 digit day slash 1 digit month slash 4 digit year"
256
  msgstr ""
257
 
258
- #: src/Tribe/Main.php:4453
259
  msgid "2 digit month slash 2 digit day slash 4 digit year"
260
  msgstr ""
261
 
262
- #: src/Tribe/Main.php:4452
263
  msgid "1 digit month slash 1 digit day slash 4 digit year"
264
  msgstr ""
265
 
266
- #: src/Tribe/Main.php:4451
267
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
268
  msgstr ""
269
 
270
- #: src/Tribe/Main.php:4430
271
  msgid "Search for %s by Keyword."
272
  msgstr ""
273
 
@@ -495,7 +520,7 @@ msgid "Search our support help desk"
495
  msgstr ""
496
 
497
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
498
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:369
499
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
500
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
501
  msgid "The requested page was not found."
@@ -509,12 +534,12 @@ msgstr ""
509
  msgid "one week"
510
  msgstr ""
511
 
512
- #: src/Tribe/Aggregator/Record/List_Table.php:570
513
  msgctxt "when the retry will happen, a date"
514
  msgid "retrying at %s"
515
  msgstr ""
516
 
517
- #: src/Tribe/Aggregator/Record/List_Table.php:567
518
  msgctxt "in human readable time"
519
  msgid "retrying in about %s"
520
  msgstr ""
@@ -596,7 +621,7 @@ msgid "Main %s Page"
596
  msgstr ""
597
 
598
  #: common/src/Tribe/Plugins_API.php:71
599
- msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Tickets have QR codes for easy check in at the door."
600
  msgstr ""
601
 
602
  #: src/admin-views/tribe-options-general.php:31
@@ -628,7 +653,7 @@ msgstr ""
628
  msgid "The event with the specified ID is not accessible."
629
  msgstr ""
630
 
631
- #: src/Tribe/Main.php:1813
632
  msgid "%1$s published. %2$sView %3$s"
633
  msgstr ""
634
 
@@ -979,11 +1004,11 @@ msgstr ""
979
  msgid "the event post name"
980
  msgstr ""
981
 
982
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:341
983
  msgid "The event organizer IDs or data"
984
  msgstr ""
985
 
986
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:333
987
  msgid "The event venue ID or data"
988
  msgstr ""
989
 
@@ -1226,32 +1251,32 @@ msgstr ""
1226
  msgid "Returns all the organizers matching the search criteria"
1227
  msgstr ""
1228
 
1229
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:478
1230
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1231
  msgstr ""
1232
 
1233
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:472
1234
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1235
  msgstr ""
1236
 
1237
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:466
1238
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1239
  msgstr ""
1240
 
1241
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:461
1242
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1243
  msgid "The event post status"
1244
  msgstr ""
1245
 
1246
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1247
  msgid "Events should be filtered by their featured status"
1248
  msgstr ""
1249
 
1250
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:446
1251
  msgid "Events should be assigned one of the specified organizer IDs"
1252
  msgstr ""
1253
 
1254
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
1255
  msgid "Events should be assigned one of the specified venue IDs"
1256
  msgstr ""
1257
 
@@ -1345,48 +1370,48 @@ msgstr ""
1345
  msgid "The event status"
1346
  msgstr ""
1347
 
1348
- #: src/Tribe/Linked_Posts.php:1126
1349
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1350
  msgid "Create or Find %s"
1351
  msgstr ""
1352
 
1353
- #: src/Tribe/Linked_Posts.php:1117
1354
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1355
  msgid "Find %1$s %2$s"
1356
  msgstr ""
1357
 
1358
- #: src/Tribe/Linked_Posts.php:1108
1359
  msgid "Find a Venue"
1360
  msgstr ""
1361
 
1362
- #: src/Tribe/Linked_Posts.php:1107
1363
  msgid "Create or Find a Venue"
1364
  msgstr ""
1365
 
1366
- #: src/Tribe/Linked_Posts.php:1100
1367
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1368
  msgid "Create or Find %s"
1369
  msgstr ""
1370
 
1371
- #: src/Tribe/Linked_Posts.php:1091
1372
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1373
  msgid "Find %1$s %2$s"
1374
  msgstr ""
1375
 
1376
- #: src/Tribe/Linked_Posts.php:1080
1377
  msgid "Find an Organizer"
1378
  msgstr ""
1379
 
1380
- #: src/Tribe/Linked_Posts.php:1079
1381
  msgid "Create or Find an Organizer"
1382
  msgstr ""
1383
 
1384
- #: src/Tribe/Linked_Posts.php:1072
1385
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1386
  msgid "Create or Find %s"
1387
  msgstr ""
1388
 
1389
- #: src/Tribe/Linked_Posts.php:1063
1390
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1391
  msgid "Find %1$s %2$s"
1392
  msgstr ""
@@ -1482,20 +1507,20 @@ msgstr ""
1482
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1483
  msgstr "The email address will be obfuscated on this site to avoid it getting harvested by spammers."
1484
 
1485
- #: src/Tribe/Main.php:997
1486
  msgid "edit Events settings."
1487
  msgstr "edit Events settings."
1488
 
1489
- #: src/Tribe/Main.php:988
1490
  msgid "Edit the %s slug"
1491
  msgstr "Edit the %s slug"
1492
 
1493
- #: src/Tribe/Linked_Posts.php:1049
1494
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1495
  msgid "an"
1496
  msgstr "an"
1497
 
1498
- #: src/Tribe/Linked_Posts.php:1042
1499
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1500
  msgid "a"
1501
  msgstr "a"
@@ -1537,10 +1562,6 @@ msgstr "Featured Highlight Colour"
1537
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1538
  msgstr "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1539
 
1540
- #: common/src/Tribe/Plugins_API.php:37
1541
- msgid "Import events from across the web! Event Aggregator makes it easy to run scheduled or manual imports from Facebook, Meetup, Eventbrite, Google Calendar, and iCalendar, along with uploads from CSV and ICS files. You can also import directly from other sites running The Events Calendar thanks to our built-in REST API support."
1542
- msgstr "Import events from across the web! Event Aggregator makes it easy to run scheduled or manual imports from Facebook, Meetup, Eventbrite, Google Calendar, and iCalendar, along with uploads from CSV and ICS files. You can also import directly from other sites running The Events Calendar thanks to our built-in REST API support."
1543
-
1544
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1545
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1546
  msgstr "The Events Calendar could not write WPML default config file: please create the file manually."
@@ -1585,7 +1606,7 @@ msgstr "Cannot look for Terms without a taxonomy"
1585
  msgid "The event WordPress post ID"
1586
  msgstr "The event WordPress post ID"
1587
 
1588
- #: src/Tribe/Aggregator/Record/Abstract.php:362
1589
  msgid "Something went wrong while inserting the record in the database."
1590
  msgstr "Something went wrong while inserting the record in the database."
1591
 
@@ -1603,7 +1624,7 @@ msgstr[1] "It looks like you're using %1$s, but the licence keys are invalid. Pl
1603
  msgid "Please refresh the page and try your request again."
1604
  msgstr "Please refresh the page and try your request again."
1605
 
1606
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:28
1607
  msgid "The image WordPress post ID"
1608
  msgstr "The image WordPress post ID"
1609
 
@@ -1663,11 +1684,11 @@ msgstr "The requested post ID does not exist or is not an organiser"
1663
  msgid "The event last modification date in UTC time"
1664
  msgstr "The event last modification date in UTC time"
1665
 
1666
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:403
1667
  msgid "Events should start after the specified date"
1668
  msgstr "Events should start after the specified date"
1669
 
1670
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:410
1671
  msgid "Events should start before the specified date"
1672
  msgstr "Events should start before the specified date"
1673
 
@@ -1703,7 +1724,7 @@ msgstr "The 'search' parameter must be a string"
1703
  msgid "the event post ID"
1704
  msgstr "the event post ID"
1705
 
1706
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:416
1707
  msgid "Events should contain the specified string in the title or description"
1708
  msgstr "Events should contain the specified string in the title or description"
1709
 
@@ -1999,31 +2020,31 @@ msgid "The requested URL does not have any upcoming and published events matchin
1999
  msgstr "The requested URL does not have any upcoming and published events matching the search criteria."
2000
 
2001
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2002
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:388
2003
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2004
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2005
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2006
  msgid "The archive page to return"
2007
  msgstr "The archive page to return"
2008
 
2009
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:396
2010
  msgid "The number of events to return on each page"
2011
  msgstr "The number of events to return on each page"
2012
 
2013
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:422
2014
  msgid "Events should be assigned one of the specified categories slugs or IDs"
2015
  msgstr "Events should be assigned one of the specified categories' slugs or IDs"
2016
 
2017
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:430
2018
  msgid "Events should be assigned one of the specified tags slugs or IDs"
2019
  msgstr "Events should be assigned one of the specified tags slugs or IDs"
2020
 
2021
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:358
2022
  msgid "Returns all the upcoming events matching the search criteria"
2023
  msgstr "Returns all the upcoming events matching the search criteria"
2024
 
2025
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:36
2026
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:366
2027
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:64
2028
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:53
2029
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:61
@@ -2238,13 +2259,13 @@ msgstr "Three months"
2238
  msgid "three months"
2239
  msgstr "three months"
2240
 
2241
- #: src/Tribe/Aggregator/Tabs/New.php:373
2242
  msgid "%1$d new event tag was created."
2243
  msgid_plural "%1$d new event tags were created."
2244
  msgstr[0] "%1$d new event tag was created."
2245
  msgstr[1] "%1$d new event tags were created."
2246
 
2247
- #: src/Tribe/Aggregator/Tabs/New.php:377
2248
  msgid "View your event tags"
2249
  msgstr "View your event tags"
2250
 
@@ -2303,7 +2324,7 @@ msgstr "%1$s for %2$s"
2303
  msgid "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2304
  msgstr "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2305
 
2306
- #: src/Tribe/Main.php:765
2307
  msgctxt "all events slug"
2308
  msgid "all"
2309
  msgstr "all"
@@ -2344,7 +2365,7 @@ msgstr "The term name"
2344
  msgid "The WordPress term ID"
2345
  msgstr "The WordPress term ID"
2346
 
2347
- #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:36
2348
  msgid "The link to the image in the specified size on the site"
2349
  msgstr "The link to the image in the specified size on the site"
2350
 
@@ -2360,19 +2381,19 @@ msgstr "The image height in pixels in the specified size"
2360
  msgid "The image width in pixels in the specified size"
2361
  msgstr "The image width in pixels in the specified size"
2362
 
2363
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:44
2364
  msgid "The details about each size available for the image"
2365
  msgstr "The details about each size available for the image"
2366
 
2367
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:40
2368
  msgid "The image natural height in pixels"
2369
  msgstr "The image natural height in pixels"
2370
 
2371
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:36
2372
  msgid "The image natural width in pixels"
2373
  msgstr "The image natural width in pixels"
2374
 
2375
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:32
2376
  msgid "The image file extension"
2377
  msgstr "The image file extension"
2378
 
@@ -2380,7 +2401,7 @@ msgstr "The image file extension"
2380
  msgid "The venue WordPress post ID"
2381
  msgstr "The venue WordPress post ID"
2382
 
2383
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:24
2384
  msgid "The URL to the full size version of the image"
2385
  msgstr "The URL to the full size version of the image"
2386
 
@@ -2420,7 +2441,7 @@ msgstr "The position of the currency symbol in the cost string"
2420
  msgid "The cost currency symbol"
2421
  msgstr "The cost currency symbol"
2422
 
2423
- #: src/Tribe/Main.php:4434
2424
  msgid "Keyword"
2425
  msgstr "Keyword"
2426
 
@@ -2495,12 +2516,12 @@ msgstr "Event Aggregator Control"
2495
  msgid "Export Events"
2496
  msgstr "Export Events"
2497
 
2498
- #: src/Tribe/Main.php:764
2499
  msgctxt "featured events slug"
2500
  msgid "featured"
2501
  msgstr "featured"
2502
 
2503
- #: src/Tribe/Linked_Posts.php:1005
2504
  msgid "Create: <b><%= term %></b>"
2505
  msgstr "Create: <b><%= term %></b>"
2506
 
@@ -2649,175 +2670,177 @@ msgstr "These settings impact all list-style views, including List View and Day
2649
  msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2650
  msgstr "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2651
 
2652
- #: src/Tribe/Asset/Dynamic.php:77
2653
  msgid "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2654
  msgstr "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2655
 
2656
- #: src/Tribe/Asset/Dynamic.php:76
2657
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2658
  msgstr "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2659
 
2660
- #: src/Tribe/Asset/Dynamic.php:75
2661
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2662
  msgstr "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2663
 
2664
- #: src/Tribe/Asset/Dynamic.php:74
2665
  msgid "This event is all day on %%startdatewithyear%%."
2666
  msgstr "This event is all day on %%startdatewithyear%%."
2667
 
2668
- #: src/Tribe/Asset/Dynamic.php:73
2669
  msgid "This event is at %%starttime%% on %%startdatewithyear%%."
2670
  msgstr "This event is at %%starttime%% on %%startdatewithyear%%."
2671
 
2672
- #: src/Tribe/Asset/Dynamic.php:72
2673
  msgid "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2674
  msgstr "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2675
 
2676
- #: src/Tribe/Asset/Dynamic.php:69
2677
  msgid "Dec"
2678
  msgstr "Dec"
2679
 
2680
- #: src/Tribe/Asset/Dynamic.php:68
2681
  msgid "Nov"
2682
  msgstr "Nov"
2683
 
2684
- #: src/Tribe/Asset/Dynamic.php:67
2685
  msgid "Oct"
2686
  msgstr "Oct"
2687
 
2688
- #: src/Tribe/Asset/Dynamic.php:66
2689
  msgid "Sep"
2690
  msgstr "Sep"
2691
 
2692
- #: src/Tribe/Asset/Dynamic.php:65
2693
  msgid "Aug"
2694
  msgstr "Aug"
2695
 
2696
- #: src/Tribe/Asset/Dynamic.php:64
2697
  msgid "Jul"
2698
  msgstr "Jul"
2699
 
2700
- #: src/Tribe/Asset/Dynamic.php:63
2701
  msgid "Jun"
2702
  msgstr "Jun"
2703
 
2704
- #: src/Tribe/Asset/Dynamic.php:61
2705
  msgid "Apr"
2706
  msgstr "Apr"
2707
 
2708
- #: src/Tribe/Asset/Dynamic.php:60
2709
  msgid "Mar"
2710
  msgstr "Mar"
2711
 
2712
- #: src/Tribe/Asset/Dynamic.php:59
2713
  msgid "Feb"
2714
  msgstr "Feb"
2715
 
2716
- #: src/Tribe/Asset/Dynamic.php:58
2717
  msgid "Jan"
2718
  msgstr "Jan"
2719
 
2720
- #: src/Tribe/Asset/Dynamic.php:55
2721
  msgid "December"
2722
  msgstr "December"
2723
 
2724
- #: src/Tribe/Asset/Dynamic.php:54
2725
  msgid "November"
2726
  msgstr "November"
2727
 
2728
- #: src/Tribe/Asset/Dynamic.php:53
2729
  msgid "October"
2730
  msgstr "October"
2731
 
2732
- #: src/Tribe/Asset/Dynamic.php:52
2733
  msgid "September"
2734
  msgstr "September"
2735
 
2736
- #: src/Tribe/Asset/Dynamic.php:51
2737
  msgid "August"
2738
  msgstr "August"
2739
 
2740
- #: src/Tribe/Asset/Dynamic.php:50
2741
  msgid "July"
2742
  msgstr "July"
2743
 
2744
- #: src/Tribe/Asset/Dynamic.php:49
2745
  msgid "June"
2746
  msgstr "June"
2747
 
2748
- #: src/Tribe/Asset/Dynamic.php:48 src/Tribe/Asset/Dynamic.php:62
 
 
2749
  msgid "May"
2750
  msgstr "May"
2751
 
2752
- #: src/Tribe/Asset/Dynamic.php:47
2753
  msgid "April"
2754
  msgstr "April"
2755
 
2756
- #: src/Tribe/Asset/Dynamic.php:46
2757
  msgid "March"
2758
  msgstr "March"
2759
 
2760
- #: src/Tribe/Asset/Dynamic.php:45
2761
  msgid "February"
2762
  msgstr "February"
2763
 
2764
- #: src/Tribe/Asset/Dynamic.php:44
2765
  msgid "January"
2766
  msgstr "January"
2767
 
2768
- #: src/Tribe/Asset/Dynamic.php:41
2769
  msgid "Sat"
2770
  msgstr "Sat"
2771
 
2772
- #: src/Tribe/Asset/Dynamic.php:40
2773
  msgid "Fri"
2774
  msgstr "Fri"
2775
 
2776
- #: src/Tribe/Asset/Dynamic.php:39
2777
  msgid "Thu"
2778
  msgstr "Thu"
2779
 
2780
- #: src/Tribe/Asset/Dynamic.php:38
2781
  msgid "Wed"
2782
  msgstr "Wed"
2783
 
2784
- #: src/Tribe/Asset/Dynamic.php:37
2785
  msgid "Tue"
2786
  msgstr "Tue"
2787
 
2788
- #: src/Tribe/Asset/Dynamic.php:36
2789
  msgid "Mon"
2790
  msgstr "Mon"
2791
 
2792
- #: src/Tribe/Asset/Dynamic.php:35
2793
  msgid "Sun"
2794
  msgstr "Sun"
2795
 
2796
- #: src/Tribe/Asset/Dynamic.php:32
2797
  msgid "Saturday"
2798
  msgstr "Saturday"
2799
 
2800
- #: src/Tribe/Asset/Dynamic.php:31
2801
  msgid "Friday"
2802
  msgstr "Friday"
2803
 
2804
- #: src/Tribe/Asset/Dynamic.php:30
2805
  msgid "Thursday"
2806
  msgstr "Thursday"
2807
 
2808
- #: src/Tribe/Asset/Dynamic.php:29
2809
  msgid "Wednesday"
2810
  msgstr "Wednesday"
2811
 
2812
- #: src/Tribe/Asset/Dynamic.php:28
2813
  msgid "Tuesday"
2814
  msgstr "Tuesday"
2815
 
2816
- #: src/Tribe/Asset/Dynamic.php:27
2817
  msgid "Monday"
2818
  msgstr "Monday"
2819
 
2820
- #: src/Tribe/Asset/Dynamic.php:26
2821
  msgid "Sunday"
2822
  msgstr "Sunday"
2823
 
@@ -2898,11 +2921,11 @@ msgstr "To begin using %1$s, please install and activate the latest version of %
2898
  msgid "Unknown service message"
2899
  msgstr "Unknown service message"
2900
 
2901
- #: src/Tribe/Aggregator/Record/List_Table.php:533
2902
  msgid "Unknown"
2903
  msgstr "Unknown"
2904
 
2905
- #: src/Tribe/Aggregator/Record/Abstract.php:1205
2906
  msgid "When this import was last scheduled to run, the daily limit for your Event Aggregator license had already been reached."
2907
  msgstr "When this import was last scheduled to run, the daily limit for your Event Aggregator licence had already been reached."
2908
 
@@ -3639,7 +3662,7 @@ msgctxt "Abbreviation for the miles unit of measure"
3639
  msgid "mi"
3640
  msgstr "mi"
3641
 
3642
- #: src/Tribe/Main.php:983
3643
  msgid "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3644
  msgstr "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3645
 
@@ -3864,133 +3887,133 @@ msgstr "queued"
3864
  msgid "Scheduled Imports"
3865
  msgstr "Scheduled Imports"
3866
 
3867
- #: src/Tribe/Aggregator/Tabs/New.php:603
3868
  msgid "Renew your Event Aggregator license"
3869
  msgstr "Renew your Event Aggregator licence"
3870
 
3871
- #: src/Tribe/Aggregator/Tabs/New.php:600
3872
  msgid "Renew your license in order to import events from Facebook, iCalendar, Google, or Meetup."
3873
  msgstr "Renew your licence in order to import events from Facebook, iCalendar, Google, or Meetup."
3874
 
3875
- #: src/Tribe/Aggregator/Tabs/New.php:599
3876
  msgid "Your Event Aggregator license is expired."
3877
  msgstr "Your Event Aggregator licence is expired."
3878
 
3879
- #: src/Tribe/Aggregator/Tabs/New.php:551
3880
  msgid "Learn More"
3881
  msgstr "Learn More"
3882
 
3883
- #: src/Tribe/Aggregator/Tabs/New.php:546 src/Tribe/Aggregator/Tabs/New.php:553
3884
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:19
3885
  msgid "opens in a new window"
3886
  msgstr "opens in a new window"
3887
 
3888
- #: src/Tribe/Aggregator/Tabs/New.php:544
3889
  msgid "Buy It Now"
3890
  msgstr "Buy It Now"
3891
 
3892
- #: src/Tribe/Aggregator/Tabs/New.php:541
3893
  msgid "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3894
  msgstr "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3895
 
3896
- #: src/Tribe/Aggregator/Tabs/New.php:539
3897
  msgid "Import Using Event Aggregator"
3898
  msgstr "Import Using Event Aggregator"
3899
 
3900
- #: src/Tribe/Aggregator/Tabs/New.php:452
3901
  msgid "Unable to save credentials"
3902
  msgstr "Unable to save credentials"
3903
 
3904
- #: src/Tribe/Aggregator/Tabs/New.php:445
3905
  msgid "Credentials have been saved"
3906
  msgstr "Credentials have been saved"
3907
 
3908
- #: src/Tribe/Aggregator/Tabs/New.php:436
3909
  msgid "The Meetup API key is required."
3910
  msgstr "The Meetup API key is required."
3911
 
3912
- #: src/Tribe/Aggregator/Tabs/New.php:427
3913
  msgid "Invalid credential save nonce"
3914
  msgstr "Invalid credential save nonce"
3915
 
3916
- #: src/Tribe/Aggregator/Tabs/New.php:417
3917
  msgid "Invalid credential save request"
3918
  msgstr "Invalid credential save request"
3919
 
3920
- #: src/Tribe/Aggregator/Tabs/New.php:405
3921
  msgid "View your scheduled imports."
3922
  msgstr "View your scheduled imports."
3923
 
3924
- #: src/Tribe/Aggregator/Tabs/New.php:401
3925
  msgid "The next import is scheduled for %1$s."
3926
  msgstr "The next import is scheduled for %1$s."
3927
 
3928
- #: src/Tribe/Aggregator/Tabs/New.php:394
3929
  msgctxt "separator between date and time"
3930
  msgid " at "
3931
  msgstr " at "
3932
 
3933
- #: src/Tribe/Aggregator/Tabs/New.php:390
3934
  msgid "Your scheduled import was saved and the first import is complete!"
3935
  msgstr "Your scheduled import was saved and the first import is complete!"
3936
 
3937
- #: src/Tribe/Aggregator/Tabs/New.php:365
3938
  msgid "View your event categories"
3939
  msgstr "View your event categories"
3940
 
3941
- #: src/Tribe/Aggregator/Tabs/New.php:361
3942
  msgid "%1$d new event category was created."
3943
  msgid_plural "%1$d new event categories were created."
3944
  msgstr[0] "%1$d new event category was created."
3945
  msgstr[1] "%1$d new event categories were created."
3946
 
3947
- #: src/Tribe/Aggregator/Tabs/New.php:352
3948
  msgid "View your event organizers"
3949
  msgstr "View your event organisers"
3950
 
3951
- #: src/Tribe/Aggregator/Tabs/New.php:348
3952
  msgid "%1$d new organizer was imported."
3953
  msgid_plural "%1$d new organizers were imported."
3954
  msgstr[0] "%1$d new organiser was imported."
3955
  msgstr[1] "%1$d new organisers were imported."
3956
 
3957
- #: src/Tribe/Aggregator/Tabs/New.php:340
3958
  msgid "View your event venues"
3959
  msgstr "View your event venues"
3960
 
3961
- #: src/Tribe/Aggregator/Tabs/New.php:336
3962
  msgid "%1$d new venue was imported."
3963
  msgid_plural "%1$d new venues were imported."
3964
  msgstr[0] "%1$d new venue was imported."
3965
  msgstr[1] "%1$d new venues were imported."
3966
 
3967
- #: src/Tribe/Aggregator/Tabs/New.php:326
3968
  msgid "View all %s"
3969
  msgstr "View all %s"
3970
 
3971
- #: src/Tribe/Aggregator/Tabs/New.php:318
3972
  msgid "No %1$s were imported or updated."
3973
  msgstr "No %1$s were imported or updated."
3974
 
3975
- #: src/Tribe/Aggregator/Tabs/New.php:311
3976
  msgid "%1$d new image was imported."
3977
  msgid_plural "%1$d new images were imported."
3978
  msgstr[0] "%1$d new image was imported."
3979
  msgstr[1] "%1$d new images were imported."
3980
 
3981
- #: src/Tribe/Aggregator/Tabs/New.php:302
3982
  msgid "%1$d already-imported %2$s was skipped."
3983
  msgid_plural "%1$d already-imported %2$s were skipped."
3984
  msgstr[0] "%1$d already-imported %2$s was skipped."
3985
  msgstr[1] "%1$d already-imported %2$s were skipped."
3986
 
3987
- #: src/Tribe/Aggregator/Tabs/New.php:291
3988
  msgid "%1$d existing %2$s was updated."
3989
  msgid_plural "%1$d existing %2$s were updated."
3990
  msgstr[0] "%1$d existing %2$s was updated."
3991
  msgstr[1] "%1$d existing %2$s were updated."
3992
 
3993
- #: src/Tribe/Aggregator/Tabs/New.php:279
3994
  msgid "%1$d new %2$s was imported."
3995
  msgid_plural "%1$d new %2$s were imported."
3996
  msgstr[0] "%1$d new %2$s was imported."
@@ -4254,7 +4277,7 @@ msgstr "Aggregator Records"
4254
  msgid "Events Aggregator Record"
4255
  msgstr "Events Aggregator Record"
4256
 
4257
- #: src/Tribe/Aggregator/Record/Queue_Realtime.php:178
4258
  msgid "Unable to continue inserting data. Please reload this page to continue/try again."
4259
  msgstr "Unable to continue inserting data. Please reload this page to continue/try again."
4260
 
@@ -4274,87 +4297,87 @@ msgstr "Created:"
4274
  msgid "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4275
  msgstr "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4276
 
4277
- #: src/Tribe/Aggregator/Record/Queue_Processor.php:234
4278
  msgid "Could not process queue for Import Record %1$d: %2$s"
4279
  msgstr "Could not process queue for Import Record %1$d: %2$s"
4280
 
4281
- #: src/Tribe/Aggregator/Record/List_Table.php:657
4282
  msgid "Select %s"
4283
  msgstr "Select %s"
4284
 
4285
- #: src/Tribe/Aggregator/Record/List_Table.php:622
4286
- #: src/Tribe/Aggregator/Record/List_Table.php:631
4287
- #: src/Tribe/Aggregator/Record/List_Table.php:639
4288
  msgid "updated"
4289
  msgstr "updated"
4290
 
4291
- #: src/Tribe/Aggregator/Record/List_Table.php:620
4292
- #: src/Tribe/Aggregator/Record/List_Table.php:628
4293
- #: src/Tribe/Aggregator/Record/List_Table.php:636
4294
  msgid "new"
4295
  msgstr "new"
4296
 
4297
- #: src/Tribe/Aggregator/Record/List_Table.php:617
4298
  msgid "Latest Import:"
4299
  msgstr "Latest Import:"
4300
 
4301
- #: src/Tribe/Aggregator/Record/List_Table.php:615
4302
  msgid "all time"
4303
  msgstr "all time"
4304
 
4305
- #: src/Tribe/Aggregator/Record/List_Table.php:589
4306
  msgid "One Time"
4307
  msgstr "One Time"
4308
 
4309
- #: src/Tribe/Aggregator/Record/List_Table.php:586
4310
  msgid "Invalid Frequency"
4311
  msgstr "Invalid Frequency"
4312
 
4313
- #: src/Tribe/Aggregator/Record/List_Table.php:556 src/Tribe/Aggregator.php:426
4314
  #: src/Tribe/Ignored_Events.php:357
4315
  #: src/admin-views/tribe-options-addons-api.php:36
4316
  msgctxt "in human readable time"
4317
  msgid "in about %s"
4318
  msgstr "in about %s"
4319
 
4320
- #: src/Tribe/Aggregator/Record/List_Table.php:554 src/Tribe/Aggregator.php:424
4321
  #: src/Tribe/Ignored_Events.php:355
4322
  #: src/admin-views/tribe-options-addons-api.php:34
4323
  msgctxt "human readable time ago"
4324
  msgid "about %s ago"
4325
  msgstr "about %s ago"
4326
 
4327
- #: src/Tribe/Aggregator/Record/List_Table.php:506
4328
  msgid "Radius:"
4329
  msgstr "Radius:"
4330
 
4331
- #: src/Tribe/Aggregator/Record/List_Table.php:489
4332
  msgid "Keywords:"
4333
  msgstr "Keywords:"
4334
 
4335
- #: src/Tribe/Aggregator/Record/List_Table.php:476
4336
  #: src/Tribe/Ignored_Events.php:337
4337
  msgctxt "record via origin"
4338
  msgid "via "
4339
  msgstr "via "
4340
 
4341
- #: src/Tribe/Aggregator/Record/List_Table.php:433
4342
  msgid "Import preview"
4343
  msgstr "Import preview"
4344
 
4345
- #: src/Tribe/Aggregator/Record/List_Table.php:429
4346
  msgid "Import pending"
4347
  msgstr "Import pending"
4348
 
4349
- #: src/Tribe/Aggregator/Record/List_Table.php:425
4350
  msgid "Import schedule"
4351
  msgstr "Import schedule"
4352
 
4353
- #: src/Tribe/Aggregator/Record/List_Table.php:413
4354
  msgid "Import failed"
4355
  msgstr "Import failed"
4356
 
4357
- #: src/Tribe/Aggregator/Record/List_Table.php:409
4358
  msgid "Import completed"
4359
  msgstr "Import completed"
4360
 
@@ -4439,11 +4462,11 @@ msgstr "ICS"
4439
  msgid "Eventbrite"
4440
  msgstr "Eventbrite"
4441
 
4442
- #: src/Tribe/Aggregator/Record/Abstract.php:1148
4443
  msgid "Deleted Attachment: %d"
4444
  msgstr "Deleted Attachment: %d"
4445
 
4446
- #: src/Tribe/Aggregator/Record/Abstract.php:496
4447
  msgid "Record: "
4448
  msgstr "Record: "
4449
 
@@ -4478,7 +4501,7 @@ msgid "Hide Filters"
4478
  msgstr "Hide Filters"
4479
 
4480
  #: src/Tribe/Aggregator/Page.php:96
4481
- #: src/Tribe/Aggregator/Record/List_Table.php:485
4482
  msgid "View Filters"
4483
  msgstr "View Filters"
4484
 
@@ -4836,7 +4859,7 @@ msgid "There is an update for %s. You'll need to %scheck your license%s to have
4836
  msgstr "There is an update for %s. You'll need to %scheck your licence%s to have access to updates, downloads, and support."
4837
 
4838
  #: common/src/Tribe/PUE/Checker.php:961 common/src/Tribe/PUE/Notices.php:285
4839
- #: src/Tribe/Aggregator/Record/Abstract.php:1163
4840
  msgid " (opens in a new window)"
4841
  msgstr " (opens in a new window)"
4842
 
@@ -5137,7 +5160,7 @@ msgstr "Templates introduced or updated with this release (%s):"
5137
  msgid "No notable changes detected"
5138
  msgstr "No notable changes detected"
5139
 
5140
- #: src/Tribe/Main.php:2735
5141
  msgid " (View Full %1$s Description Here: %2$s)"
5142
  msgstr " (View Full %1$s Description Here: %2$s)"
5143
 
@@ -5185,147 +5208,147 @@ msgstr "%s Name can not be empty"
5185
  msgid "Keep the Core Plugin %sFREE%s!"
5186
  msgstr "Keep the Core Plugin %sFREE%s!"
5187
 
5188
- #: src/Tribe/Template_Factory.php:300
5189
  msgid "No results were found for %1$s in or near %2$s."
5190
  msgstr "No results were found for %1$s in or near %2$s."
5191
 
5192
- #: src/Tribe/Template_Factory.php:298
5193
  msgid "There were no results found for %s."
5194
  msgstr "There were no results found for %s."
5195
 
5196
- #: src/Tribe/Template/Month.php:456
5197
  msgid "There were no results found for %s this month. Try searching next month."
5198
  msgstr "There were no results found for %s this month. Try searching next month."
5199
 
5200
- #: src/Tribe/Template/Day.php:153
5201
  msgid "No %1$s scheduled for %2$s. Please try another day."
5202
  msgstr "No %1$s scheduled for %2$s. Please try another day."
5203
 
5204
- #: src/Tribe/Main.php:4254
5205
  msgid "Check out the %savailable add-ons%s."
5206
  msgstr "Check out the %savailable add-ons%s."
5207
 
5208
- #: src/Tribe/Main.php:1923
5209
  msgid "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5210
  msgstr "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5211
 
5212
- #: src/Tribe/Main.php:1854 src/Tribe/Main.php:1874
5213
  msgid "%1$s scheduled for: %2$s."
5214
  msgstr "%1$s scheduled for: %2$s."
5215
 
5216
- #: src/Tribe/Main.php:1835
5217
  msgid "%1$s draft updated. %2$sPreview %3$s"
5218
  msgstr "%1$s draft updated. %2$sPreview %3$s"
5219
 
5220
- #: src/Tribe/Main.php:1826
5221
  msgid "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5222
  msgstr "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5223
 
5224
- #: src/Tribe/Main.php:1820
5225
  msgid "%1$s submitted. %2$sPreview %3$s"
5226
  msgstr "%1$s submitted. %2$sPreview %3$s"
5227
 
5228
- #: src/Tribe/Main.php:1802
5229
  msgid "%1$s updated. %2$sView %1$s%3$s"
5230
  msgstr "%1$s updated. %2$sView %1$s%3$s"
5231
 
5232
- #: src/Tribe/Main.php:1477
5233
  msgid "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5234
  msgstr "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5235
 
5236
- #: src/Tribe/Main.php:1112
5237
  msgid "If you have a valid license for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5238
  msgstr "If you have a valid licence for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5239
 
5240
- #: src/Tribe/Main.php:1111
5241
  msgid "post a thread"
5242
  msgstr "post a thread"
5243
 
5244
- #: src/Tribe/Main.php:1107
5245
  msgid "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays."
5246
  msgstr "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a licence and you can post there directly and expect a response within 24-48 hours during weekdays."
5247
 
5248
- #: src/Tribe/Main.php:1103
5249
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5250
  msgstr "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5251
 
5252
- #: src/Tribe/Main.php:1102
5253
  msgid "open-source forum on WordPress.org"
5254
  msgstr "open-source forum on WordPress.org"
5255
 
5256
- #: src/Tribe/Main.php:1098
5257
  msgid "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays"
5258
  msgstr "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a licence and you can post there directly and expect a response within 24-48 hours during weekdays"
5259
 
5260
- #: src/Tribe/Main.php:1097 src/Tribe/Main.php:1105
5261
  msgid "premium support on our website"
5262
  msgstr "premium support on our website"
5263
 
5264
- #: src/Tribe/Main.php:1095
5265
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5266
  msgstr "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5267
 
5268
- #: src/Tribe/Main.php:1094
5269
  msgid "Events Tickets"
5270
  msgstr "Events Tickets"
5271
 
5272
- #: src/Tribe/Main.php:1079
5273
  msgid "Customizing the Events plugins"
5274
  msgstr "Customising the Events plugins"
5275
 
5276
- #: src/Tribe/Main.php:1079
5277
  msgid "%s: Code and guides for customizing your calendar in useful and interesting ways."
5278
  msgstr "%s: Code and guides for customising your calendar in useful and interesting ways."
5279
 
5280
- #: src/Tribe/Main.php:1077
5281
  msgid "Troubleshooting common problems"
5282
  msgstr "Troubleshooting common problems"
5283
 
5284
- #: src/Tribe/Main.php:1077
5285
  msgid "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5286
  msgstr "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5287
 
5288
- #: src/Tribe/Main.php:1075
5289
  msgid "Using stylesheets and page templates"
5290
  msgstr "Using stylesheets and page templates"
5291
 
5292
- #: src/Tribe/Main.php:1075
5293
  msgid "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5294
  msgstr "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5295
 
5296
- #: src/Tribe/Main.php:1073
5297
  msgid "Themer’s Guide"
5298
  msgstr "Themer’s Guide"
5299
 
5300
- #: src/Tribe/Main.php:1073
5301
  msgid "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5302
  msgstr "%s: Our most comprehensive outline for customising the calendar to suit your needs, including custom layouts and styles."
5303
 
5304
- #: src/Tribe/Main.php:1071
5305
  msgid "Features overview"
5306
  msgstr "Features overview"
5307
 
5308
- #: src/Tribe/Main.php:1071
5309
  msgid "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5310
  msgstr "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5311
 
5312
- #: src/Tribe/Main.php:1069
5313
  msgid "Settings overview"
5314
  msgstr "Settings overview"
5315
 
5316
- #: src/Tribe/Main.php:1069
5317
  msgid "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5318
  msgstr "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5319
 
5320
- #: src/Tribe/Main.php:1066
5321
  msgid "Support for The Events Calendar"
5322
  msgstr "Support for The Events Calendar"
5323
 
5324
- #: src/Tribe/Main.php:1055
5325
  msgid "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5326
  msgstr "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5327
 
5328
- #: src/Tribe/Main.php:1053
5329
  msgid "New User Primer"
5330
  msgstr "New User Primer"
5331
 
@@ -5348,7 +5371,7 @@ msgstr "Default status to use for imported events"
5348
  msgid "CSV Import Settings"
5349
  msgstr "CSV Import Settings"
5350
 
5351
- #: src/Tribe/Asset/Bootstrap_Datepicker.php:26
5352
  msgid "Clear"
5353
  msgstr "Clear"
5354
 
@@ -5360,7 +5383,7 @@ msgstr "Add another %s"
5360
  msgid "Create New %s"
5361
  msgstr "Create New %s"
5362
 
5363
- #: src/Tribe/Organizer.php:371
5364
  msgid "Unnamed %s"
5365
  msgstr "Unnamed %s"
5366
 
@@ -5548,7 +5571,7 @@ msgstr "Cancel"
5548
  msgid "%s must be a positive number or percent."
5549
  msgstr "%s must be a positive number or percent."
5550
 
5551
- #: src/Tribe/Main.php:1000
5552
  msgid "%1$s or %2$s"
5553
  msgstr "%1$s or %2$s"
5554
 
@@ -5605,7 +5628,7 @@ msgstr "Find out more"
5605
  msgid "Day Navigation"
5606
  msgstr "Day Navigation"
5607
 
5608
- #: src/Tribe/Aggregator/Tabs/New.php:388
5609
  msgid "Import complete!"
5610
  msgstr "Import complete!"
5611
 
@@ -5847,7 +5870,7 @@ msgid "More..."
5847
  msgstr "More..."
5848
 
5849
  #: common/src/Tribe/Admin/Help_Page.php:194 common/src/Tribe/Plugins_API.php:43
5850
- #: src/Tribe/Main.php:1106
5851
  msgid "Events Calendar PRO"
5852
  msgstr "Events Calendar PRO"
5853
 
@@ -6286,7 +6309,7 @@ msgstr "URL:"
6286
  msgid "%s Website"
6287
  msgstr "%s Website"
6288
 
6289
- #: src/Tribe/Aggregator/Record/List_Table.php:502
6290
  msgid "Location:"
6291
  msgstr "Location:"
6292
 
@@ -7691,15 +7714,15 @@ msgstr "Template overrides should be moved to the correct subdirectory: tribe_ge
7691
  msgid "Template overrides should be moved to the correct subdirectory: %s"
7692
  msgstr "Template overrides should be moved to the correct subdirectory: %s"
7693
 
7694
- #: src/Tribe/Template_Factory.php:306
7695
  msgid "No previous %s "
7696
  msgstr "No previous %s "
7697
 
7698
- #: src/Tribe/Template_Factory.php:304 src/Tribe/Template_Factory.php:309
7699
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7700
  msgstr "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7701
 
7702
- #: src/Tribe/Template_Factory.php:302
7703
  msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7704
  msgstr "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7705
 
@@ -7707,28 +7730,28 @@ msgstr "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this cat
7707
  msgid "This %s has passed."
7708
  msgstr "This %s has passed."
7709
 
7710
- #: src/Tribe/Template/Month.php:953
7711
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7712
  msgstr "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7713
 
7714
- #: src/Tribe/Template/Month.php:462 src/Tribe/Template_Factory.php:311
7715
  msgid "There were no results found."
7716
  msgstr "There were no results found."
7717
 
7718
- #: src/Tribe/Template/Month.php:460
7719
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7720
  msgstr "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7721
 
7722
- #: src/Tribe/Template/Day.php:151
7723
  msgid "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7724
  msgstr "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7725
 
7726
- #: src/Tribe/Template/Day.php:117 src/Tribe/Template/Day.php:133
7727
  msgid "Ongoing"
7728
  msgstr "Ongoing"
7729
 
7730
- #: src/Tribe/Aggregator/Page.php:82 src/Tribe/Template/Day.php:114
7731
- #: src/Tribe/Template/Day.php:130
7732
  msgid "All Day"
7733
  msgstr "All Day"
7734
 
@@ -7823,50 +7846,50 @@ msgstr "Licence Key"
7823
  msgid "Error"
7824
  msgstr "Error"
7825
 
7826
- #: src/Tribe/Main.php:4597
7827
  msgid "Once Every 30 Mins"
7828
  msgstr "Once Every 30 Mins"
7829
 
7830
- #: src/Tribe/Main.php:4517
7831
  msgid "Day Of"
7832
  msgstr "Day Of"
7833
 
7834
- #: src/Tribe/Main.php:4515
7835
  msgid "%s From"
7836
  msgstr "%s From"
7837
 
7838
- #: src/Tribe/Main.php:4511
7839
  msgid "%s In"
7840
  msgstr "%s In"
7841
 
7842
- #: src/Tribe/Main.php:4506 src/Tribe/Main.php:4531
7843
  #: src/admin-views/aggregator/origins/refine.php:7
7844
  msgid "Date"
7845
  msgstr "Date"
7846
 
7847
- #: src/Tribe/Main.php:4433
7848
  msgid "Search"
7849
  msgstr "Search"
7850
 
7851
- #: src/Tribe/Main.php:4407 src/admin-views/aggregator/fields/schedule.php:44
7852
  #: src/admin-views/aggregator/fields/schedule.php:62
7853
  msgid "Day"
7854
  msgstr "Day"
7855
 
7856
- #: src/Tribe/Main.php:4390
7857
  msgid "Month"
7858
  msgstr "Month"
7859
 
7860
- #: src/Tribe/Main.php:4372
7861
  msgid "List"
7862
  msgstr "List"
7863
 
7864
- #: src/Tribe/Main.php:4356
7865
  msgid "Calendar"
7866
  msgstr "Calendar"
7867
 
7868
  #: common/src/Tribe/Settings.php:254
7869
- #: src/Tribe/Admin/Bar/Default_Configurator.php:89 src/Tribe/Main.php:4355
7870
  msgid "Settings"
7871
  msgstr "Settings"
7872
 
@@ -7880,7 +7903,7 @@ msgstr "CSV"
7880
  msgid "Add %s"
7881
  msgstr "Add %s"
7882
 
7883
- #: src/Tribe/Admin/Bar/Default_Configurator.php:45 src/Tribe/Main.php:4306
7884
  msgid "View Calendar"
7885
  msgstr "View Calendar"
7886
 
@@ -7888,53 +7911,53 @@ msgstr "View Calendar"
7888
  msgid "%s"
7889
  msgstr "%s"
7890
 
7891
- #: src/Tribe/Main.php:4253
7892
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7893
  msgstr "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7894
 
7895
- #: src/Tribe/Main.php:4248
7896
  msgid "Additional Functionality"
7897
  msgstr "Additional Functionality"
7898
 
7899
- #: src/Tribe/Main.php:4203
7900
  msgid "News from Modern Tribe"
7901
  msgstr "News from Modern Tribe"
7902
 
7903
- #: src/Tribe/Main.php:4183
7904
  msgid "View All Add-Ons"
7905
  msgstr "View All Add-Ons"
7906
 
7907
- #: src/Tribe/Main.php:4180
7908
  msgid "Support"
7909
  msgstr "Support"
7910
 
7911
- #: src/Tribe/Main.php:3828 src/Tribe/Main.php:3841
7912
  msgid "%s Information"
7913
  msgstr "%s Information"
7914
 
7915
- #: src/Tribe/Main.php:3819
7916
  msgid "%s Options"
7917
  msgstr "%s Options"
7918
 
7919
- #: src/Tribe/Main.php:3742 src/Tribe/Main.php:3777
7920
  #: src/functions/template-tags/day.php:157
7921
  #: src/functions/template-tags/day.php:178
7922
  msgid "Date out of range."
7923
  msgstr "Date out of range."
7924
 
7925
- #: src/Tribe/Main.php:2344
7926
  msgid "all"
7927
  msgstr "all"
7928
 
7929
- #: src/Tribe/Main.php:2343 src/functions/template-tags/general.php:111
7930
  msgid "events"
7931
  msgstr "events"
7932
 
7933
- #: src/Tribe/Main.php:2342 src/functions/template-tags/general.php:79
7934
  msgid "event"
7935
  msgstr "event"
7936
 
7937
- #: src/Tribe/Main.php:2341
7938
  msgid "page"
7939
  msgstr "page"
7940
 
@@ -7946,7 +7969,8 @@ msgstr "Network"
7946
  msgid "Done"
7947
  msgstr "Done"
7948
 
7949
- #: common/src/Tribe/Main.php:272 src/Tribe/Asset/Bootstrap_Datepicker.php:27
 
7950
  #: src/functions/template-tags/day.php:104
7951
  msgid "Today"
7952
  msgstr "Today"
@@ -7959,141 +7983,141 @@ msgstr "Prev"
7959
  msgid "Next"
7960
  msgstr "Next"
7961
 
7962
- #: src/Tribe/Linked_Posts.php:1010
7963
  msgid "No saved %s exists."
7964
  msgstr "No saved %s exists."
7965
 
7966
- #: src/Tribe/Linked_Posts.php:840
7967
  msgid "Available %s"
7968
  msgstr "Available %s"
7969
 
7970
- #: src/Tribe/Linked_Posts.php:836
7971
  msgid "My %s"
7972
  msgstr "My %s"
7973
 
7974
- #: src/Tribe/Main.php:1859 src/Tribe/Main.php:1879
7975
  msgid "%s draft updated."
7976
  msgstr "%s draft updated."
7977
 
7978
- #: src/Tribe/Main.php:1852 src/Tribe/Main.php:1872
7979
  msgid "%s submitted."
7980
  msgstr "%s submitted."
7981
 
7982
- #: src/Tribe/Main.php:1850 src/Tribe/Main.php:1870
7983
  msgid "%s published."
7984
  msgstr "%s published."
7985
 
7986
  #. translators: %s: date and time of the revision
7987
- #: src/Tribe/Main.php:1869
7988
  msgid "%s restored to revision from %s"
7989
  msgstr "%s restored to revision from %s"
7990
 
7991
  #. translators: Publish box date format, see http://php.net/date
7992
- #: src/Tribe/Main.php:1829 src/Tribe/Main.php:1857 src/Tribe/Main.php:1877
7993
  msgid "M j, Y @ G:i"
7994
  msgstr "M j, Y @ G:i"
7995
 
7996
- #: src/Tribe/Main.php:1818 src/Tribe/Main.php:1851 src/Tribe/Main.php:1871
7997
  msgid "%s saved."
7998
  msgstr "%s saved."
7999
 
8000
  #. translators: %s: date and time of the revision
8001
- #: src/Tribe/Main.php:1811 src/Tribe/Main.php:1849
8002
  msgid "%1$s restored to revision from %2$s"
8003
  msgstr "%1$s restored to revision from %2$s"
8004
 
8005
- #: src/Tribe/Main.php:1809 src/Tribe/Main.php:1844 src/Tribe/Main.php:1847
8006
- #: src/Tribe/Main.php:1864 src/Tribe/Main.php:1867
8007
  msgid "%s updated."
8008
  msgstr "%s updated."
8009
 
8010
- #: src/Tribe/Main.php:1808 src/Tribe/Main.php:1846 src/Tribe/Main.php:1866
8011
  msgid "Custom field deleted."
8012
  msgstr "Custom field deleted."
8013
 
8014
- #: src/Tribe/Main.php:1807 src/Tribe/Main.php:1845 src/Tribe/Main.php:1865
8015
  msgid "Custom field updated."
8016
  msgstr "Custom field updated."
8017
 
8018
- #: src/Tribe/Main.php:1785
8019
  msgid "New %s Category Name"
8020
  msgstr "New %s Category Name"
8021
 
8022
- #: src/Tribe/Main.php:1784
8023
  msgid "Add New %s Category"
8024
  msgstr "Add New %s Category"
8025
 
8026
- #: src/Tribe/Main.php:1783
8027
  msgid "Update %s Category"
8028
  msgstr "Update %s Category"
8029
 
8030
- #: src/Tribe/Main.php:1782
8031
  msgid "Edit %s Category"
8032
  msgstr "Edit %s Category"
8033
 
8034
- #: src/Tribe/Main.php:1781
8035
  msgid "Parent %s Category:"
8036
  msgstr "Parent %s Category:"
8037
 
8038
- #: src/Tribe/Main.php:1780
8039
  msgid "Parent %s Category"
8040
  msgstr "Parent %s Category"
8041
 
8042
- #: src/Tribe/Main.php:1779
8043
  msgid "All %s Categories"
8044
  msgstr "All %s Categories"
8045
 
8046
- #: src/Tribe/Main.php:1778
8047
  msgid "Search %s Categories"
8048
  msgstr "Search %s Categories"
8049
 
8050
- #: src/Tribe/Main.php:1777
8051
  msgid "%s Category"
8052
  msgstr "%s Category"
8053
 
8054
- #: src/Tribe/Main.php:1767 src/Tribe/Organizer.php:98 src/Tribe/Venue.php:117
8055
  msgid "No %s found in Trash"
8056
  msgstr "No %s found in Trash"
8057
 
8058
- #: src/Tribe/Main.php:1766 src/Tribe/Organizer.php:97 src/Tribe/Venue.php:116
8059
  msgid "No %s found"
8060
  msgstr "No %s found"
8061
 
8062
- #: src/Tribe/Main.php:1765 src/Tribe/Organizer.php:96 src/Tribe/Venue.php:115
8063
  msgid "Search %s"
8064
  msgstr "Search %s"
8065
 
8066
- #: src/Tribe/Main.php:1764 src/Tribe/Organizer.php:95 src/Tribe/Venue.php:114
8067
  #: src/views/month/single-day.php:26
8068
  msgid "View %s"
8069
  msgstr "View %s"
8070
 
8071
- #: src/Tribe/Main.php:1763 src/Tribe/Organizer.php:94 src/Tribe/Venue.php:113
8072
  msgid "New %s"
8073
  msgstr "New %s"
8074
 
8075
- #: src/Tribe/Main.php:1761 src/Tribe/Main.php:1893 src/Tribe/Main.php:1894
8076
  #: src/Tribe/Organizer.php:92 src/Tribe/Venue.php:111
8077
  msgid "Add New %s"
8078
  msgstr "Add New %s"
8079
 
8080
- #: src/Tribe/Main.php:1760 src/Tribe/Organizer.php:91 src/Tribe/Venue.php:110
8081
  msgid "Add New"
8082
  msgstr "Add New"
8083
 
8084
- #: src/Tribe/Main.php:1727 src/Tribe/Main.php:2339
8085
  msgid "tag"
8086
  msgstr "tag"
8087
 
8088
- #: src/Tribe/Main.php:1713 src/Tribe/Main.php:2340
8089
  msgid "category"
8090
  msgstr "category"
8091
 
8092
- #: src/Tribe/Main.php:1465
8093
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8094
  msgstr "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8095
 
8096
- #: src/Tribe/Main.php:1462
8097
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8098
  msgstr "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8099
 
@@ -8111,72 +8135,72 @@ msgstr "Help"
8111
  msgid "Display"
8112
  msgstr "Display"
8113
 
8114
- #: src/Tribe/Main.php:1309
8115
  msgid "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8116
  msgstr "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8117
 
8118
- #: src/Tribe/Main.php:1297
8119
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8120
  msgstr "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8121
 
8122
- #: src/Tribe/Main.php:788
8123
  msgid "Initializing Tribe Events on %s"
8124
  msgstr "Initializing Tribe Events on %s"
8125
 
8126
- #: src/Tribe/Main.php:763
8127
  msgid "today"
8128
  msgstr "today"
8129
 
8130
- #: src/Tribe/Main.php:762
8131
  msgid "day"
8132
  msgstr "day"
8133
 
8134
- #: src/Tribe/Main.php:761
8135
  msgid "past"
8136
  msgstr "past"
8137
 
8138
- #: src/Tribe/Main.php:760
8139
  msgid "upcoming"
8140
  msgstr "upcoming"
8141
 
8142
- #: src/Tribe/Main.php:759
8143
  msgid "list"
8144
  msgstr "list"
8145
 
8146
- #: src/Tribe/Main.php:758
8147
  msgid "month"
8148
  msgstr "month"
8149
 
8150
- #. #-#-#-#-# the-events-calendar-code.pot (The Events Calendar 4.6.20.1)
8151
  #. #-#-#-#-#
8152
  #. Plugin Name of the plugin/theme
8153
  #: common/src/Tribe/Admin/Help_Page.php:59 common/src/Tribe/Customizer.php:569
8154
- #: common/src/Tribe/Plugins_API.php:25 src/Tribe/Main.php:751
8155
- #: src/Tribe/Main.php:1093 src/Tribe/Privacy.php:29
8156
  #: src/functions/template-tags/general.php:1345
8157
  msgid "The Events Calendar"
8158
  msgstr "The Events Calendar"
8159
 
8160
- #: src/Tribe/Main.php:1163 src/admin-views/aggregator/tabs/import-form.php:185
8161
  #: src/admin-views/aggregator/tabs/import-form.php:197
8162
  #: src/functions/template-tags/general.php:63
8163
  msgid "Event"
8164
  msgstr "Event"
8165
 
8166
  #: common/src/Tribe/Settings.php:177 common/src/Tribe/Settings.php:241
8167
- #: common/src/Tribe/Settings.php:242 src/Tribe/Main.php:1155
8168
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:207
8169
  #: src/functions/template-tags/general.php:95
8170
  msgid "Events"
8171
  msgstr "Events"
8172
 
8173
- #: src/Tribe/Organizer.php:157 src/functions/template-tags/organizer.php:115
8174
  msgid "Organizer"
8175
  msgstr "Organiser"
8176
 
8177
  #: src/Tribe/Organizer.php:171
8178
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:206
8179
- #: src/functions/template-tags/organizer.php:126
8180
  msgid "Organizers"
8181
  msgstr "Organisers"
8182
 
@@ -8440,7 +8464,7 @@ msgstr "Date:"
8440
  msgid "End:"
8441
  msgstr "End:"
8442
 
8443
- #: src/Tribe/Aggregator/Record/List_Table.php:498
8444
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
8445
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
8446
  #: src/views/modules/meta/details.php:66 src/views/modules/meta/details.php:91
@@ -8459,7 +8483,7 @@ msgstr "End Date"
8459
  msgid "Start Date"
8460
  msgstr "Start Date"
8461
 
8462
- #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1776
8463
  msgid "%s Categories"
8464
  msgstr "%s Categories"
8465
 
@@ -8470,7 +8494,7 @@ msgstr "A problem stopped the time zone update process from completing. Please r
8470
  #: src/Tribe/Admin/Timezone_Updater.php:87
8471
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
8472
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:100
8473
- #: src/Tribe/Aggregator/Record/Queue_Realtime.php:203
8474
  msgid "%d%% complete"
8475
  msgstr "%d%% complete"
8476
 
@@ -8483,21 +8507,21 @@ msgid "Please wait while time zone data is added to your events."
8483
  msgstr "Please wait while time zone data is added to your events."
8484
 
8485
  #: src/Tribe/Admin/Bar/Default_Configurator.php:62
8486
- #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:211 src/Tribe/Main.php:1762
8487
- #: src/Tribe/Main.php:4862 src/Tribe/Main.php:4909 src/Tribe/Organizer.php:93
8488
  #: src/Tribe/Venue.php:112
8489
  msgid "Edit %s"
8490
  msgstr "Edit %s"
8491
 
8492
- #: src/Tribe/Main.php:4846 src/Tribe/Main.php:4903
8493
  msgid "Use Saved %s:"
8494
  msgstr "Use Saved %s:"
8495
 
8496
- #: src/Tribe/Main.php:992
8497
  msgid " ask the site administrator set a different Events URL slug."
8498
  msgstr " ask the site administrator set a different Events URL slug."
8499
 
8500
- #: src/Tribe/Main.php:986
8501
  msgid "Ask the site administrator to edit the %s slug"
8502
  msgstr "Ask the site administrator to edit the %s slug"
8503
 
@@ -8505,7 +8529,7 @@ msgstr "Ask the site administrator to edit the %s slug"
8505
  msgid "Thanks for Updating The Events Calendar"
8506
  msgstr "Thanks for Updating The Events Calendar"
8507
 
8508
- #: src/Tribe/Main.php:846 src/Tribe/Main.php:848
8509
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
8510
  msgid "Welcome to The Events Calendar"
8511
  msgstr "Welcome to The Events Calendar"
11
  "Language: en_GB\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
14
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:337
15
+ msgid "The event tag ID or name"
16
+ msgstr ""
17
+
18
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:331
19
+ msgid "The event category ID or name"
20
+ msgstr ""
21
+
22
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:508
23
+ msgid "Events should be filtered by their post_parent being the specified one."
24
+ msgstr ""
25
+
26
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:498
27
+ msgid "Include events with one of the post IDs specified in the array of CSV list, date filters will be ignored."
28
+ msgstr ""
29
+
30
+ #: src/Tribe/Aggregator/Record/Async_Queue.php:348
31
+ #: src/Tribe/Aggregator/Record/Void_Queue.php:122
32
+ msgid "Unable to process this import - a breakage or conflict may have resulted in the import halting."
33
+ msgstr ""
34
+
35
+ #: common/src/Tribe/Plugins_API.php:37
36
+ msgid "Event Aggregator adds massive import functionality to your calendar. Before you know it, you’ll be importing events from Meetup, Eventbrite, Google Calendar, iCalendar, and other URLs with ease. Schedule imports to run automatically behind-the-scenes or run them manually when you’re ready. Go ahead and import to your heart’s content—Event Aggregator hooks you up with a central dashboard in the admin to make managing your imports a breeze."
37
+ msgstr ""
38
+
39
  #: src/views/month/single-day.php:57
40
  msgid "%s for %s"
41
  msgstr ""
208
  msgid "Do more with Eventbrite Tickets"
209
  msgstr ""
210
 
211
+ #: src/Tribe/Main.php:4114
212
  msgid "Search for %s by month. Please use the format %s."
213
  msgstr ""
214
 
215
+ #: src/Tribe/Main.php:4109
216
  msgid "Search for %s by Date. Please use the format %s."
217
  msgstr ""
218
 
219
+ #: src/Tribe/Main.php:4077 src/Tribe/Main.php:4078
220
  msgid "2 digit month dot 4 digit year"
221
  msgstr ""
222
 
223
+ #: src/Tribe/Main.php:4076
224
  msgid "4 digit year dot 2 digit month"
225
  msgstr ""
226
 
227
+ #: src/Tribe/Main.php:4075
228
  msgid "2 digit month hyphen 4 digit year"
229
  msgstr ""
230
 
231
+ #: src/Tribe/Main.php:4072 src/Tribe/Main.php:4073 src/Tribe/Main.php:4074
232
  msgid "1 digit month hyphen 4 digit year"
233
  msgstr ""
234
 
235
+ #: src/Tribe/Main.php:4069 src/Tribe/Main.php:4071
236
  msgid "2 digit month slash 4 digit year"
237
  msgstr ""
238
 
239
+ #: src/Tribe/Main.php:4068 src/Tribe/Main.php:4070
240
  msgid "1 digit month slash 4 digit year"
241
  msgstr ""
242
 
243
+ #: src/Tribe/Main.php:4067
244
  msgid "4 digit year hyphen 2 digit month"
245
  msgstr ""
246
 
247
+ #: src/Tribe/Main.php:4063
248
  msgid "2 digit day dot 2 digit month dot 4 digit year"
249
  msgstr ""
250
 
251
+ #: src/Tribe/Main.php:4062
252
  msgid "2 digit month dot 2 digit day dot 4 digit year"
253
  msgstr ""
254
 
255
+ #: src/Tribe/Main.php:4061
256
  msgid "4 digit year dot 2 digit month dot 2 digit day"
257
  msgstr ""
258
 
259
+ #: src/Tribe/Main.php:4060
260
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
261
  msgstr ""
262
 
263
+ #: src/Tribe/Main.php:4059
264
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
265
  msgstr ""
266
 
267
+ #: src/Tribe/Main.php:4058
268
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
269
  msgstr ""
270
 
271
+ #: src/Tribe/Main.php:4057
272
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
273
  msgstr ""
274
 
275
+ #: src/Tribe/Main.php:4056
276
  msgid "2 digit day slash 2 digit month slash 4 digit year"
277
  msgstr ""
278
 
279
+ #: src/Tribe/Main.php:4055
280
  msgid "1 digit day slash 1 digit month slash 4 digit year"
281
  msgstr ""
282
 
283
+ #: src/Tribe/Main.php:4054
284
  msgid "2 digit month slash 2 digit day slash 4 digit year"
285
  msgstr ""
286
 
287
+ #: src/Tribe/Main.php:4053
288
  msgid "1 digit month slash 1 digit day slash 4 digit year"
289
  msgstr ""
290
 
291
+ #: src/Tribe/Main.php:4052
292
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
293
  msgstr ""
294
 
295
+ #: src/Tribe/Main.php:4031
296
  msgid "Search for %s by Keyword."
297
  msgstr ""
298
 
520
  msgstr ""
521
 
522
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
523
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:385
524
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
525
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
526
  msgid "The requested page was not found."
534
  msgid "one week"
535
  msgstr ""
536
 
537
+ #: src/Tribe/Aggregator/Record/List_Table.php:577
538
  msgctxt "when the retry will happen, a date"
539
  msgid "retrying at %s"
540
  msgstr ""
541
 
542
+ #: src/Tribe/Aggregator/Record/List_Table.php:574
543
  msgctxt "in human readable time"
544
  msgid "retrying in about %s"
545
  msgstr ""
621
  msgstr ""
622
 
623
  #: common/src/Tribe/Plugins_API.php:71
624
+ msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Guest check in is easy with QR codes and our custom scanning app."
625
  msgstr ""
626
 
627
  #: src/admin-views/tribe-options-general.php:31
653
  msgid "The event with the specified ID is not accessible."
654
  msgstr ""
655
 
656
+ #: src/Tribe/Main.php:1812
657
  msgid "%1$s published. %2$sView %3$s"
658
  msgstr ""
659
 
1004
  msgid "the event post name"
1005
  msgstr ""
1006
 
1007
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:354
1008
  msgid "The event organizer IDs or data"
1009
  msgstr ""
1010
 
1011
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:346
1012
  msgid "The event venue ID or data"
1013
  msgstr ""
1014
 
1251
  msgid "Returns all the organizers matching the search criteria"
1252
  msgstr ""
1253
 
1254
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:494
1255
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1256
  msgstr ""
1257
 
1258
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:488
1259
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1260
  msgstr ""
1261
 
1262
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:482
1263
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1264
  msgstr ""
1265
 
1266
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:477
1267
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1268
  msgid "The event post status"
1269
  msgstr ""
1270
 
1271
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:470
1272
  msgid "Events should be filtered by their featured status"
1273
  msgstr ""
1274
 
1275
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:462
1276
  msgid "Events should be assigned one of the specified organizer IDs"
1277
  msgstr ""
1278
 
1279
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1280
  msgid "Events should be assigned one of the specified venue IDs"
1281
  msgstr ""
1282
 
1370
  msgid "The event status"
1371
  msgstr ""
1372
 
1373
+ #: src/Tribe/Linked_Posts.php:1254
1374
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1375
  msgid "Create or Find %s"
1376
  msgstr ""
1377
 
1378
+ #: src/Tribe/Linked_Posts.php:1245
1379
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1380
  msgid "Find %1$s %2$s"
1381
  msgstr ""
1382
 
1383
+ #: src/Tribe/Linked_Posts.php:1236
1384
  msgid "Find a Venue"
1385
  msgstr ""
1386
 
1387
+ #: src/Tribe/Linked_Posts.php:1235
1388
  msgid "Create or Find a Venue"
1389
  msgstr ""
1390
 
1391
+ #: src/Tribe/Linked_Posts.php:1228
1392
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1393
  msgid "Create or Find %s"
1394
  msgstr ""
1395
 
1396
+ #: src/Tribe/Linked_Posts.php:1219
1397
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1398
  msgid "Find %1$s %2$s"
1399
  msgstr ""
1400
 
1401
+ #: src/Tribe/Linked_Posts.php:1208
1402
  msgid "Find an Organizer"
1403
  msgstr ""
1404
 
1405
+ #: src/Tribe/Linked_Posts.php:1207
1406
  msgid "Create or Find an Organizer"
1407
  msgstr ""
1408
 
1409
+ #: src/Tribe/Linked_Posts.php:1200
1410
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1411
  msgid "Create or Find %s"
1412
  msgstr ""
1413
 
1414
+ #: src/Tribe/Linked_Posts.php:1191
1415
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1416
  msgid "Find %1$s %2$s"
1417
  msgstr ""
1507
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1508
  msgstr "The email address will be obfuscated on this site to avoid it getting harvested by spammers."
1509
 
1510
+ #: src/Tribe/Main.php:996
1511
  msgid "edit Events settings."
1512
  msgstr "edit Events settings."
1513
 
1514
+ #: src/Tribe/Main.php:987
1515
  msgid "Edit the %s slug"
1516
  msgstr "Edit the %s slug"
1517
 
1518
+ #: src/Tribe/Linked_Posts.php:1177
1519
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1520
  msgid "an"
1521
  msgstr "an"
1522
 
1523
+ #: src/Tribe/Linked_Posts.php:1170
1524
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1525
  msgid "a"
1526
  msgstr "a"
1562
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1563
  msgstr "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1564
 
 
 
 
 
1565
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1566
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1567
  msgstr "The Events Calendar could not write WPML default config file: please create the file manually."
1606
  msgid "The event WordPress post ID"
1607
  msgstr "The event WordPress post ID"
1608
 
1609
+ #: src/Tribe/Aggregator/Record/Abstract.php:363
1610
  msgid "Something went wrong while inserting the record in the database."
1611
  msgstr "Something went wrong while inserting the record in the database."
1612
 
1624
  msgid "Please refresh the page and try your request again."
1625
  msgstr "Please refresh the page and try your request again."
1626
 
1627
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:29
1628
  msgid "The image WordPress post ID"
1629
  msgstr "The image WordPress post ID"
1630
 
1684
  msgid "The event last modification date in UTC time"
1685
  msgstr "The event last modification date in UTC time"
1686
 
1687
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:419
1688
  msgid "Events should start after the specified date"
1689
  msgstr "Events should start after the specified date"
1690
 
1691
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:426
1692
  msgid "Events should start before the specified date"
1693
  msgstr "Events should start before the specified date"
1694
 
1724
  msgid "the event post ID"
1725
  msgstr "the event post ID"
1726
 
1727
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:432
1728
  msgid "Events should contain the specified string in the title or description"
1729
  msgstr "Events should contain the specified string in the title or description"
1730
 
2020
  msgstr "The requested URL does not have any upcoming and published events matching the search criteria."
2021
 
2022
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2023
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:404
2024
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2025
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2026
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2027
  msgid "The archive page to return"
2028
  msgstr "The archive page to return"
2029
 
2030
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:412
2031
  msgid "The number of events to return on each page"
2032
  msgstr "The number of events to return on each page"
2033
 
2034
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
2035
  msgid "Events should be assigned one of the specified categories slugs or IDs"
2036
  msgstr "Events should be assigned one of the specified categories' slugs or IDs"
2037
 
2038
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:446
2039
  msgid "Events should be assigned one of the specified tags slugs or IDs"
2040
  msgstr "Events should be assigned one of the specified tags slugs or IDs"
2041
 
2042
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:374
2043
  msgid "Returns all the upcoming events matching the search criteria"
2044
  msgstr "Returns all the upcoming events matching the search criteria"
2045
 
2046
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:36
2047
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:382
2048
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:64
2049
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:53
2050
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:61
2259
  msgid "three months"
2260
  msgstr "three months"
2261
 
2262
+ #: src/Tribe/Aggregator/Tabs/New.php:385
2263
  msgid "%1$d new event tag was created."
2264
  msgid_plural "%1$d new event tags were created."
2265
  msgstr[0] "%1$d new event tag was created."
2266
  msgstr[1] "%1$d new event tags were created."
2267
 
2268
+ #: src/Tribe/Aggregator/Tabs/New.php:389
2269
  msgid "View your event tags"
2270
  msgstr "View your event tags"
2271
 
2324
  msgid "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2325
  msgstr "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2326
 
2327
+ #: src/Tribe/Main.php:763
2328
  msgctxt "all events slug"
2329
  msgid "all"
2330
  msgstr "all"
2365
  msgid "The WordPress term ID"
2366
  msgstr "The WordPress term ID"
2367
 
2368
+ #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:37
2369
  msgid "The link to the image in the specified size on the site"
2370
  msgstr "The link to the image in the specified size on the site"
2371
 
2381
  msgid "The image width in pixels in the specified size"
2382
  msgstr "The image width in pixels in the specified size"
2383
 
2384
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:45
2385
  msgid "The details about each size available for the image"
2386
  msgstr "The details about each size available for the image"
2387
 
2388
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:41
2389
  msgid "The image natural height in pixels"
2390
  msgstr "The image natural height in pixels"
2391
 
2392
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:37
2393
  msgid "The image natural width in pixels"
2394
  msgstr "The image natural width in pixels"
2395
 
2396
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:33
2397
  msgid "The image file extension"
2398
  msgstr "The image file extension"
2399
 
2401
  msgid "The venue WordPress post ID"
2402
  msgstr "The venue WordPress post ID"
2403
 
2404
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:25
2405
  msgid "The URL to the full size version of the image"
2406
  msgstr "The URL to the full size version of the image"
2407
 
2441
  msgid "The cost currency symbol"
2442
  msgstr "The cost currency symbol"
2443
 
2444
+ #: src/Tribe/Main.php:4035
2445
  msgid "Keyword"
2446
  msgstr "Keyword"
2447
 
2516
  msgid "Export Events"
2517
  msgstr "Export Events"
2518
 
2519
+ #: src/Tribe/Main.php:762
2520
  msgctxt "featured events slug"
2521
  msgid "featured"
2522
  msgstr "featured"
2523
 
2524
+ #: src/Tribe/Linked_Posts.php:1133
2525
  msgid "Create: <b><%= term %></b>"
2526
  msgstr "Create: <b><%= term %></b>"
2527
 
2670
  msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2671
  msgstr "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2672
 
2673
+ #: src/Tribe/Assets.php:685 src/deprecated/Tribe__Events__Asset__Dynamic.php:77
2674
  msgid "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2675
  msgstr "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2676
 
2677
+ #: src/Tribe/Assets.php:684 src/deprecated/Tribe__Events__Asset__Dynamic.php:76
2678
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2679
  msgstr "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2680
 
2681
+ #: src/Tribe/Assets.php:683 src/deprecated/Tribe__Events__Asset__Dynamic.php:75
2682
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2683
  msgstr "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2684
 
2685
+ #: src/Tribe/Assets.php:682 src/deprecated/Tribe__Events__Asset__Dynamic.php:74
2686
  msgid "This event is all day on %%startdatewithyear%%."
2687
  msgstr "This event is all day on %%startdatewithyear%%."
2688
 
2689
+ #: src/Tribe/Assets.php:681 src/deprecated/Tribe__Events__Asset__Dynamic.php:73
2690
  msgid "This event is at %%starttime%% on %%startdatewithyear%%."
2691
  msgstr "This event is at %%starttime%% on %%startdatewithyear%%."
2692
 
2693
+ #: src/Tribe/Assets.php:680 src/deprecated/Tribe__Events__Asset__Dynamic.php:72
2694
  msgid "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2695
  msgstr "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2696
 
2697
+ #: src/Tribe/Assets.php:677 src/deprecated/Tribe__Events__Asset__Dynamic.php:69
2698
  msgid "Dec"
2699
  msgstr "Dec"
2700
 
2701
+ #: src/Tribe/Assets.php:676 src/deprecated/Tribe__Events__Asset__Dynamic.php:68
2702
  msgid "Nov"
2703
  msgstr "Nov"
2704
 
2705
+ #: src/Tribe/Assets.php:675 src/deprecated/Tribe__Events__Asset__Dynamic.php:67
2706
  msgid "Oct"
2707
  msgstr "Oct"
2708
 
2709
+ #: src/Tribe/Assets.php:674 src/deprecated/Tribe__Events__Asset__Dynamic.php:66
2710
  msgid "Sep"
2711
  msgstr "Sep"
2712
 
2713
+ #: src/Tribe/Assets.php:673 src/deprecated/Tribe__Events__Asset__Dynamic.php:65
2714
  msgid "Aug"
2715
  msgstr "Aug"
2716
 
2717
+ #: src/Tribe/Assets.php:672 src/deprecated/Tribe__Events__Asset__Dynamic.php:64
2718
  msgid "Jul"
2719
  msgstr "Jul"
2720
 
2721
+ #: src/Tribe/Assets.php:671 src/deprecated/Tribe__Events__Asset__Dynamic.php:63
2722
  msgid "Jun"
2723
  msgstr "Jun"
2724
 
2725
+ #: src/Tribe/Assets.php:669 src/deprecated/Tribe__Events__Asset__Dynamic.php:61
2726
  msgid "Apr"
2727
  msgstr "Apr"
2728
 
2729
+ #: src/Tribe/Assets.php:668 src/deprecated/Tribe__Events__Asset__Dynamic.php:60
2730
  msgid "Mar"
2731
  msgstr "Mar"
2732
 
2733
+ #: src/Tribe/Assets.php:667 src/deprecated/Tribe__Events__Asset__Dynamic.php:59
2734
  msgid "Feb"
2735
  msgstr "Feb"
2736
 
2737
+ #: src/Tribe/Assets.php:666 src/deprecated/Tribe__Events__Asset__Dynamic.php:58
2738
  msgid "Jan"
2739
  msgstr "Jan"
2740
 
2741
+ #: src/Tribe/Assets.php:663 src/deprecated/Tribe__Events__Asset__Dynamic.php:55
2742
  msgid "December"
2743
  msgstr "December"
2744
 
2745
+ #: src/Tribe/Assets.php:662 src/deprecated/Tribe__Events__Asset__Dynamic.php:54
2746
  msgid "November"
2747
  msgstr "November"
2748
 
2749
+ #: src/Tribe/Assets.php:661 src/deprecated/Tribe__Events__Asset__Dynamic.php:53
2750
  msgid "October"
2751
  msgstr "October"
2752
 
2753
+ #: src/Tribe/Assets.php:660 src/deprecated/Tribe__Events__Asset__Dynamic.php:52
2754
  msgid "September"
2755
  msgstr "September"
2756
 
2757
+ #: src/Tribe/Assets.php:659 src/deprecated/Tribe__Events__Asset__Dynamic.php:51
2758
  msgid "August"
2759
  msgstr "August"
2760
 
2761
+ #: src/Tribe/Assets.php:658 src/deprecated/Tribe__Events__Asset__Dynamic.php:50
2762
  msgid "July"
2763
  msgstr "July"
2764
 
2765
+ #: src/Tribe/Assets.php:657 src/deprecated/Tribe__Events__Asset__Dynamic.php:49
2766
  msgid "June"
2767
  msgstr "June"
2768
 
2769
+ #: src/Tribe/Assets.php:656 src/Tribe/Assets.php:670
2770
+ #: src/deprecated/Tribe__Events__Asset__Dynamic.php:48
2771
+ #: src/deprecated/Tribe__Events__Asset__Dynamic.php:62
2772
  msgid "May"
2773
  msgstr "May"
2774
 
2775
+ #: src/Tribe/Assets.php:655 src/deprecated/Tribe__Events__Asset__Dynamic.php:47
2776
  msgid "April"
2777
  msgstr "April"
2778
 
2779
+ #: src/Tribe/Assets.php:654 src/deprecated/Tribe__Events__Asset__Dynamic.php:46
2780
  msgid "March"
2781
  msgstr "March"
2782
 
2783
+ #: src/Tribe/Assets.php:653 src/deprecated/Tribe__Events__Asset__Dynamic.php:45
2784
  msgid "February"
2785
  msgstr "February"
2786
 
2787
+ #: src/Tribe/Assets.php:652 src/deprecated/Tribe__Events__Asset__Dynamic.php:44
2788
  msgid "January"
2789
  msgstr "January"
2790
 
2791
+ #: src/Tribe/Assets.php:649 src/deprecated/Tribe__Events__Asset__Dynamic.php:41
2792
  msgid "Sat"
2793
  msgstr "Sat"
2794
 
2795
+ #: src/Tribe/Assets.php:648 src/deprecated/Tribe__Events__Asset__Dynamic.php:40
2796
  msgid "Fri"
2797
  msgstr "Fri"
2798
 
2799
+ #: src/Tribe/Assets.php:647 src/deprecated/Tribe__Events__Asset__Dynamic.php:39
2800
  msgid "Thu"
2801
  msgstr "Thu"
2802
 
2803
+ #: src/Tribe/Assets.php:646 src/deprecated/Tribe__Events__Asset__Dynamic.php:38
2804
  msgid "Wed"
2805
  msgstr "Wed"
2806
 
2807
+ #: src/Tribe/Assets.php:645 src/deprecated/Tribe__Events__Asset__Dynamic.php:37
2808
  msgid "Tue"
2809
  msgstr "Tue"
2810
 
2811
+ #: src/Tribe/Assets.php:644 src/deprecated/Tribe__Events__Asset__Dynamic.php:36
2812
  msgid "Mon"
2813
  msgstr "Mon"
2814
 
2815
+ #: src/Tribe/Assets.php:643 src/deprecated/Tribe__Events__Asset__Dynamic.php:35
2816
  msgid "Sun"
2817
  msgstr "Sun"
2818
 
2819
+ #: src/Tribe/Assets.php:640 src/deprecated/Tribe__Events__Asset__Dynamic.php:32
2820
  msgid "Saturday"
2821
  msgstr "Saturday"
2822
 
2823
+ #: src/Tribe/Assets.php:639 src/deprecated/Tribe__Events__Asset__Dynamic.php:31
2824
  msgid "Friday"
2825
  msgstr "Friday"
2826
 
2827
+ #: src/Tribe/Assets.php:638 src/deprecated/Tribe__Events__Asset__Dynamic.php:30
2828
  msgid "Thursday"
2829
  msgstr "Thursday"
2830
 
2831
+ #: src/Tribe/Assets.php:637 src/deprecated/Tribe__Events__Asset__Dynamic.php:29
2832
  msgid "Wednesday"
2833
  msgstr "Wednesday"
2834
 
2835
+ #: src/Tribe/Assets.php:636 src/deprecated/Tribe__Events__Asset__Dynamic.php:28
2836
  msgid "Tuesday"
2837
  msgstr "Tuesday"
2838
 
2839
+ #: src/Tribe/Assets.php:635 src/deprecated/Tribe__Events__Asset__Dynamic.php:27
2840
  msgid "Monday"
2841
  msgstr "Monday"
2842
 
2843
+ #: src/Tribe/Assets.php:634 src/deprecated/Tribe__Events__Asset__Dynamic.php:26
2844
  msgid "Sunday"
2845
  msgstr "Sunday"
2846
 
2921
  msgid "Unknown service message"
2922
  msgstr "Unknown service message"
2923
 
2924
+ #: src/Tribe/Aggregator/Record/List_Table.php:540
2925
  msgid "Unknown"
2926
  msgstr "Unknown"
2927
 
2928
+ #: src/Tribe/Aggregator/Record/Abstract.php:1206
2929
  msgid "When this import was last scheduled to run, the daily limit for your Event Aggregator license had already been reached."
2930
  msgstr "When this import was last scheduled to run, the daily limit for your Event Aggregator licence had already been reached."
2931
 
3662
  msgid "mi"
3663
  msgstr "mi"
3664
 
3665
+ #: src/Tribe/Main.php:982
3666
  msgid "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3667
  msgstr "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3668
 
3887
  msgid "Scheduled Imports"
3888
  msgstr "Scheduled Imports"
3889
 
3890
+ #: src/Tribe/Aggregator/Tabs/New.php:615
3891
  msgid "Renew your Event Aggregator license"
3892
  msgstr "Renew your Event Aggregator licence"
3893
 
3894
+ #: src/Tribe/Aggregator/Tabs/New.php:612
3895
  msgid "Renew your license in order to import events from Facebook, iCalendar, Google, or Meetup."
3896
  msgstr "Renew your licence in order to import events from Facebook, iCalendar, Google, or Meetup."
3897
 
3898
+ #: src/Tribe/Aggregator/Tabs/New.php:611
3899
  msgid "Your Event Aggregator license is expired."
3900
  msgstr "Your Event Aggregator licence is expired."
3901
 
3902
+ #: src/Tribe/Aggregator/Tabs/New.php:563
3903
  msgid "Learn More"
3904
  msgstr "Learn More"
3905
 
3906
+ #: src/Tribe/Aggregator/Tabs/New.php:558 src/Tribe/Aggregator/Tabs/New.php:565
3907
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:19
3908
  msgid "opens in a new window"
3909
  msgstr "opens in a new window"
3910
 
3911
+ #: src/Tribe/Aggregator/Tabs/New.php:556
3912
  msgid "Buy It Now"
3913
  msgstr "Buy It Now"
3914
 
3915
+ #: src/Tribe/Aggregator/Tabs/New.php:553
3916
  msgid "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3917
  msgstr "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3918
 
3919
+ #: src/Tribe/Aggregator/Tabs/New.php:551
3920
  msgid "Import Using Event Aggregator"
3921
  msgstr "Import Using Event Aggregator"
3922
 
3923
+ #: src/Tribe/Aggregator/Tabs/New.php:464
3924
  msgid "Unable to save credentials"
3925
  msgstr "Unable to save credentials"
3926
 
3927
+ #: src/Tribe/Aggregator/Tabs/New.php:457
3928
  msgid "Credentials have been saved"
3929
  msgstr "Credentials have been saved"
3930
 
3931
+ #: src/Tribe/Aggregator/Tabs/New.php:448
3932
  msgid "The Meetup API key is required."
3933
  msgstr "The Meetup API key is required."
3934
 
3935
+ #: src/Tribe/Aggregator/Tabs/New.php:439
3936
  msgid "Invalid credential save nonce"
3937
  msgstr "Invalid credential save nonce"
3938
 
3939
+ #: src/Tribe/Aggregator/Tabs/New.php:429
3940
  msgid "Invalid credential save request"
3941
  msgstr "Invalid credential save request"
3942
 
3943
+ #: src/Tribe/Aggregator/Tabs/New.php:417
3944
  msgid "View your scheduled imports."
3945
  msgstr "View your scheduled imports."
3946
 
3947
+ #: src/Tribe/Aggregator/Tabs/New.php:413
3948
  msgid "The next import is scheduled for %1$s."
3949
  msgstr "The next import is scheduled for %1$s."
3950
 
3951
+ #: src/Tribe/Aggregator/Tabs/New.php:406
3952
  msgctxt "separator between date and time"
3953
  msgid " at "
3954
  msgstr " at "
3955
 
3956
+ #: src/Tribe/Aggregator/Tabs/New.php:402
3957
  msgid "Your scheduled import was saved and the first import is complete!"
3958
  msgstr "Your scheduled import was saved and the first import is complete!"
3959
 
3960
+ #: src/Tribe/Aggregator/Tabs/New.php:377
3961
  msgid "View your event categories"
3962
  msgstr "View your event categories"
3963
 
3964
+ #: src/Tribe/Aggregator/Tabs/New.php:373
3965
  msgid "%1$d new event category was created."
3966
  msgid_plural "%1$d new event categories were created."
3967
  msgstr[0] "%1$d new event category was created."
3968
  msgstr[1] "%1$d new event categories were created."
3969
 
3970
+ #: src/Tribe/Aggregator/Tabs/New.php:364
3971
  msgid "View your event organizers"
3972
  msgstr "View your event organisers"
3973
 
3974
+ #: src/Tribe/Aggregator/Tabs/New.php:360
3975
  msgid "%1$d new organizer was imported."
3976
  msgid_plural "%1$d new organizers were imported."
3977
  msgstr[0] "%1$d new organiser was imported."
3978
  msgstr[1] "%1$d new organisers were imported."
3979
 
3980
+ #: src/Tribe/Aggregator/Tabs/New.php:352
3981
  msgid "View your event venues"
3982
  msgstr "View your event venues"
3983
 
3984
+ #: src/Tribe/Aggregator/Tabs/New.php:348
3985
  msgid "%1$d new venue was imported."
3986
  msgid_plural "%1$d new venues were imported."
3987
  msgstr[0] "%1$d new venue was imported."
3988
  msgstr[1] "%1$d new venues were imported."
3989
 
3990
+ #: src/Tribe/Aggregator/Tabs/New.php:338
3991
  msgid "View all %s"
3992
  msgstr "View all %s"
3993
 
3994
+ #: src/Tribe/Aggregator/Tabs/New.php:330
3995
  msgid "No %1$s were imported or updated."
3996
  msgstr "No %1$s were imported or updated."
3997
 
3998
+ #: src/Tribe/Aggregator/Tabs/New.php:323
3999
  msgid "%1$d new image was imported."
4000
  msgid_plural "%1$d new images were imported."
4001
  msgstr[0] "%1$d new image was imported."
4002
  msgstr[1] "%1$d new images were imported."
4003
 
4004
+ #: src/Tribe/Aggregator/Tabs/New.php:314
4005
  msgid "%1$d already-imported %2$s was skipped."
4006
  msgid_plural "%1$d already-imported %2$s were skipped."
4007
  msgstr[0] "%1$d already-imported %2$s was skipped."
4008
  msgstr[1] "%1$d already-imported %2$s were skipped."
4009
 
4010
+ #: src/Tribe/Aggregator/Tabs/New.php:303
4011
  msgid "%1$d existing %2$s was updated."
4012
  msgid_plural "%1$d existing %2$s were updated."
4013
  msgstr[0] "%1$d existing %2$s was updated."
4014
  msgstr[1] "%1$d existing %2$s were updated."
4015
 
4016
+ #: src/Tribe/Aggregator/Tabs/New.php:291
4017
  msgid "%1$d new %2$s was imported."
4018
  msgid_plural "%1$d new %2$s were imported."
4019
  msgstr[0] "%1$d new %2$s was imported."
4277
  msgid "Events Aggregator Record"
4278
  msgstr "Events Aggregator Record"
4279
 
4280
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:183
4281
  msgid "Unable to continue inserting data. Please reload this page to continue/try again."
4282
  msgstr "Unable to continue inserting data. Please reload this page to continue/try again."
4283
 
4297
  msgid "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4298
  msgstr "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4299
 
4300
+ #: src/Tribe/Aggregator/Record/Queue_Processor.php:233
4301
  msgid "Could not process queue for Import Record %1$d: %2$s"
4302
  msgstr "Could not process queue for Import Record %1$d: %2$s"
4303
 
4304
+ #: src/Tribe/Aggregator/Record/List_Table.php:664
4305
  msgid "Select %s"
4306
  msgstr "Select %s"
4307
 
4308
+ #: src/Tribe/Aggregator/Record/List_Table.php:629
4309
+ #: src/Tribe/Aggregator/Record/List_Table.php:638
4310
+ #: src/Tribe/Aggregator/Record/List_Table.php:646
4311
  msgid "updated"
4312
  msgstr "updated"
4313
 
4314
+ #: src/Tribe/Aggregator/Record/List_Table.php:627
4315
+ #: src/Tribe/Aggregator/Record/List_Table.php:635
4316
+ #: src/Tribe/Aggregator/Record/List_Table.php:643
4317
  msgid "new"
4318
  msgstr "new"
4319
 
4320
+ #: src/Tribe/Aggregator/Record/List_Table.php:624
4321
  msgid "Latest Import:"
4322
  msgstr "Latest Import:"
4323
 
4324
+ #: src/Tribe/Aggregator/Record/List_Table.php:622
4325
  msgid "all time"
4326
  msgstr "all time"
4327
 
4328
+ #: src/Tribe/Aggregator/Record/List_Table.php:596
4329
  msgid "One Time"
4330
  msgstr "One Time"
4331
 
4332
+ #: src/Tribe/Aggregator/Record/List_Table.php:593
4333
  msgid "Invalid Frequency"
4334
  msgstr "Invalid Frequency"
4335
 
4336
+ #: src/Tribe/Aggregator/Record/List_Table.php:563 src/Tribe/Aggregator.php:426
4337
  #: src/Tribe/Ignored_Events.php:357
4338
  #: src/admin-views/tribe-options-addons-api.php:36
4339
  msgctxt "in human readable time"
4340
  msgid "in about %s"
4341
  msgstr "in about %s"
4342
 
4343
+ #: src/Tribe/Aggregator/Record/List_Table.php:561 src/Tribe/Aggregator.php:424
4344
  #: src/Tribe/Ignored_Events.php:355
4345
  #: src/admin-views/tribe-options-addons-api.php:34
4346
  msgctxt "human readable time ago"
4347
  msgid "about %s ago"
4348
  msgstr "about %s ago"
4349
 
4350
+ #: src/Tribe/Aggregator/Record/List_Table.php:513
4351
  msgid "Radius:"
4352
  msgstr "Radius:"
4353
 
4354
+ #: src/Tribe/Aggregator/Record/List_Table.php:496
4355
  msgid "Keywords:"
4356
  msgstr "Keywords:"
4357
 
4358
+ #: src/Tribe/Aggregator/Record/List_Table.php:483
4359
  #: src/Tribe/Ignored_Events.php:337
4360
  msgctxt "record via origin"
4361
  msgid "via "
4362
  msgstr "via "
4363
 
4364
+ #: src/Tribe/Aggregator/Record/List_Table.php:440
4365
  msgid "Import preview"
4366
  msgstr "Import preview"
4367
 
4368
+ #: src/Tribe/Aggregator/Record/List_Table.php:436
4369
  msgid "Import pending"
4370
  msgstr "Import pending"
4371
 
4372
+ #: src/Tribe/Aggregator/Record/List_Table.php:432
4373
  msgid "Import schedule"
4374
  msgstr "Import schedule"
4375
 
4376
+ #: src/Tribe/Aggregator/Record/List_Table.php:420
4377
  msgid "Import failed"
4378
  msgstr "Import failed"
4379
 
4380
+ #: src/Tribe/Aggregator/Record/List_Table.php:416
4381
  msgid "Import completed"
4382
  msgstr "Import completed"
4383
 
4462
  msgid "Eventbrite"
4463
  msgstr "Eventbrite"
4464
 
4465
+ #: src/Tribe/Aggregator/Record/Abstract.php:1149
4466
  msgid "Deleted Attachment: %d"
4467
  msgstr "Deleted Attachment: %d"
4468
 
4469
+ #: src/Tribe/Aggregator/Record/Abstract.php:497
4470
  msgid "Record: "
4471
  msgstr "Record: "
4472
 
4501
  msgstr "Hide Filters"
4502
 
4503
  #: src/Tribe/Aggregator/Page.php:96
4504
+ #: src/Tribe/Aggregator/Record/List_Table.php:492
4505
  msgid "View Filters"
4506
  msgstr "View Filters"
4507
 
4859
  msgstr "There is an update for %s. You'll need to %scheck your licence%s to have access to updates, downloads, and support."
4860
 
4861
  #: common/src/Tribe/PUE/Checker.php:961 common/src/Tribe/PUE/Notices.php:285
4862
+ #: src/Tribe/Aggregator/Record/Abstract.php:1164
4863
  msgid " (opens in a new window)"
4864
  msgstr " (opens in a new window)"
4865
 
5160
  msgid "No notable changes detected"
5161
  msgstr "No notable changes detected"
5162
 
5163
+ #: src/Tribe/Main.php:2561
5164
  msgid " (View Full %1$s Description Here: %2$s)"
5165
  msgstr " (View Full %1$s Description Here: %2$s)"
5166
 
5208
  msgid "Keep the Core Plugin %sFREE%s!"
5209
  msgstr "Keep the Core Plugin %sFREE%s!"
5210
 
5211
+ #: src/Tribe/Template_Factory.php:231
5212
  msgid "No results were found for %1$s in or near %2$s."
5213
  msgstr "No results were found for %1$s in or near %2$s."
5214
 
5215
+ #: src/Tribe/Template_Factory.php:229
5216
  msgid "There were no results found for %s."
5217
  msgstr "There were no results found for %s."
5218
 
5219
+ #: src/Tribe/Template/Month.php:458
5220
  msgid "There were no results found for %s this month. Try searching next month."
5221
  msgstr "There were no results found for %s this month. Try searching next month."
5222
 
5223
+ #: src/Tribe/Template/Day.php:154
5224
  msgid "No %1$s scheduled for %2$s. Please try another day."
5225
  msgstr "No %1$s scheduled for %2$s. Please try another day."
5226
 
5227
+ #: src/Tribe/Main.php:3855
5228
  msgid "Check out the %savailable add-ons%s."
5229
  msgstr "Check out the %savailable add-ons%s."
5230
 
5231
+ #: src/Tribe/Main.php:1922
5232
  msgid "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5233
  msgstr "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5234
 
5235
+ #: src/Tribe/Main.php:1853 src/Tribe/Main.php:1873
5236
  msgid "%1$s scheduled for: %2$s."
5237
  msgstr "%1$s scheduled for: %2$s."
5238
 
5239
+ #: src/Tribe/Main.php:1834
5240
  msgid "%1$s draft updated. %2$sPreview %3$s"
5241
  msgstr "%1$s draft updated. %2$sPreview %3$s"
5242
 
5243
+ #: src/Tribe/Main.php:1825
5244
  msgid "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5245
  msgstr "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5246
 
5247
+ #: src/Tribe/Main.php:1819
5248
  msgid "%1$s submitted. %2$sPreview %3$s"
5249
  msgstr "%1$s submitted. %2$sPreview %3$s"
5250
 
5251
+ #: src/Tribe/Main.php:1801
5252
  msgid "%1$s updated. %2$sView %1$s%3$s"
5253
  msgstr "%1$s updated. %2$sView %1$s%3$s"
5254
 
5255
+ #: src/Tribe/Main.php:1476
5256
  msgid "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5257
  msgstr "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5258
 
5259
+ #: src/Tribe/Main.php:1111
5260
  msgid "If you have a valid license for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5261
  msgstr "If you have a valid licence for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5262
 
5263
+ #: src/Tribe/Main.php:1110
5264
  msgid "post a thread"
5265
  msgstr "post a thread"
5266
 
5267
+ #: src/Tribe/Main.php:1106
5268
  msgid "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays."
5269
  msgstr "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a licence and you can post there directly and expect a response within 24-48 hours during weekdays."
5270
 
5271
+ #: src/Tribe/Main.php:1102
5272
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5273
  msgstr "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5274
 
5275
+ #: src/Tribe/Main.php:1101
5276
  msgid "open-source forum on WordPress.org"
5277
  msgstr "open-source forum on WordPress.org"
5278
 
5279
+ #: src/Tribe/Main.php:1097
5280
  msgid "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays"
5281
  msgstr "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a licence and you can post there directly and expect a response within 24-48 hours during weekdays"
5282
 
5283
+ #: src/Tribe/Main.php:1096 src/Tribe/Main.php:1104
5284
  msgid "premium support on our website"
5285
  msgstr "premium support on our website"
5286
 
5287
+ #: src/Tribe/Main.php:1094
5288
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5289
  msgstr "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5290
 
5291
+ #: src/Tribe/Main.php:1093
5292
  msgid "Events Tickets"
5293
  msgstr "Events Tickets"
5294
 
5295
+ #: src/Tribe/Main.php:1078
5296
  msgid "Customizing the Events plugins"
5297
  msgstr "Customising the Events plugins"
5298
 
5299
+ #: src/Tribe/Main.php:1078
5300
  msgid "%s: Code and guides for customizing your calendar in useful and interesting ways."
5301
  msgstr "%s: Code and guides for customising your calendar in useful and interesting ways."
5302
 
5303
+ #: src/Tribe/Main.php:1076
5304
  msgid "Troubleshooting common problems"
5305
  msgstr "Troubleshooting common problems"
5306
 
5307
+ #: src/Tribe/Main.php:1076
5308
  msgid "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5309
  msgstr "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5310
 
5311
+ #: src/Tribe/Main.php:1074
5312
  msgid "Using stylesheets and page templates"
5313
  msgstr "Using stylesheets and page templates"
5314
 
5315
+ #: src/Tribe/Main.php:1074
5316
  msgid "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5317
  msgstr "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5318
 
5319
+ #: src/Tribe/Main.php:1072
5320
  msgid "Themer’s Guide"
5321
  msgstr "Themer’s Guide"
5322
 
5323
+ #: src/Tribe/Main.php:1072
5324
  msgid "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5325
  msgstr "%s: Our most comprehensive outline for customising the calendar to suit your needs, including custom layouts and styles."
5326
 
5327
+ #: src/Tribe/Main.php:1070
5328
  msgid "Features overview"
5329
  msgstr "Features overview"
5330
 
5331
+ #: src/Tribe/Main.php:1070
5332
  msgid "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5333
  msgstr "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5334
 
5335
+ #: src/Tribe/Main.php:1068
5336
  msgid "Settings overview"
5337
  msgstr "Settings overview"
5338
 
5339
+ #: src/Tribe/Main.php:1068
5340
  msgid "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5341
  msgstr "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5342
 
5343
+ #: src/Tribe/Main.php:1065
5344
  msgid "Support for The Events Calendar"
5345
  msgstr "Support for The Events Calendar"
5346
 
5347
+ #: src/Tribe/Main.php:1054
5348
  msgid "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5349
  msgstr "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5350
 
5351
+ #: src/Tribe/Main.php:1052
5352
  msgid "New User Primer"
5353
  msgstr "New User Primer"
5354
 
5371
  msgid "CSV Import Settings"
5372
  msgstr "CSV Import Settings"
5373
 
5374
+ #: src/deprecated/Tribe__Events__Asset__Bootstrap_Datepicker.php:27
5375
  msgid "Clear"
5376
  msgstr "Clear"
5377
 
5383
  msgid "Create New %s"
5384
  msgstr "Create New %s"
5385
 
5386
+ #: src/Tribe/Organizer.php:375
5387
  msgid "Unnamed %s"
5388
  msgstr "Unnamed %s"
5389
 
5571
  msgid "%s must be a positive number or percent."
5572
  msgstr "%s must be a positive number or percent."
5573
 
5574
+ #: src/Tribe/Main.php:999
5575
  msgid "%1$s or %2$s"
5576
  msgstr "%1$s or %2$s"
5577
 
5628
  msgid "Day Navigation"
5629
  msgstr "Day Navigation"
5630
 
5631
+ #: src/Tribe/Aggregator/Tabs/New.php:400
5632
  msgid "Import complete!"
5633
  msgstr "Import complete!"
5634
 
5870
  msgstr "More..."
5871
 
5872
  #: common/src/Tribe/Admin/Help_Page.php:194 common/src/Tribe/Plugins_API.php:43
5873
+ #: src/Tribe/Main.php:1105
5874
  msgid "Events Calendar PRO"
5875
  msgstr "Events Calendar PRO"
5876
 
6309
  msgid "%s Website"
6310
  msgstr "%s Website"
6311
 
6312
+ #: src/Tribe/Aggregator/Record/List_Table.php:509
6313
  msgid "Location:"
6314
  msgstr "Location:"
6315
 
7714
  msgid "Template overrides should be moved to the correct subdirectory: %s"
7715
  msgstr "Template overrides should be moved to the correct subdirectory: %s"
7716
 
7717
+ #: src/Tribe/Template_Factory.php:237
7718
  msgid "No previous %s "
7719
  msgstr "No previous %s "
7720
 
7721
+ #: src/Tribe/Template_Factory.php:235 src/Tribe/Template_Factory.php:240
7722
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7723
  msgstr "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7724
 
7725
+ #: src/Tribe/Template_Factory.php:233
7726
  msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7727
  msgstr "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7728
 
7730
  msgid "This %s has passed."
7731
  msgstr "This %s has passed."
7732
 
7733
+ #: src/Tribe/Template/Month.php:955
7734
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7735
  msgstr "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7736
 
7737
+ #: src/Tribe/Template/Month.php:464 src/Tribe/Template_Factory.php:242
7738
  msgid "There were no results found."
7739
  msgstr "There were no results found."
7740
 
7741
+ #: src/Tribe/Template/Month.php:462
7742
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7743
  msgstr "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7744
 
7745
+ #: src/Tribe/Template/Day.php:152
7746
  msgid "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7747
  msgstr "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7748
 
7749
+ #: src/Tribe/Template/Day.php:118 src/Tribe/Template/Day.php:134
7750
  msgid "Ongoing"
7751
  msgstr "Ongoing"
7752
 
7753
+ #: src/Tribe/Aggregator/Page.php:82 src/Tribe/Template/Day.php:115
7754
+ #: src/Tribe/Template/Day.php:131
7755
  msgid "All Day"
7756
  msgstr "All Day"
7757
 
7846
  msgid "Error"
7847
  msgstr "Error"
7848
 
7849
+ #: src/Tribe/Main.php:4198
7850
  msgid "Once Every 30 Mins"
7851
  msgstr "Once Every 30 Mins"
7852
 
7853
+ #: src/Tribe/Main.php:4118
7854
  msgid "Day Of"
7855
  msgstr "Day Of"
7856
 
7857
+ #: src/Tribe/Main.php:4116
7858
  msgid "%s From"
7859
  msgstr "%s From"
7860
 
7861
+ #: src/Tribe/Main.php:4112
7862
  msgid "%s In"
7863
  msgstr "%s In"
7864
 
7865
+ #: src/Tribe/Main.php:4107 src/Tribe/Main.php:4132
7866
  #: src/admin-views/aggregator/origins/refine.php:7
7867
  msgid "Date"
7868
  msgstr "Date"
7869
 
7870
+ #: src/Tribe/Main.php:4034
7871
  msgid "Search"
7872
  msgstr "Search"
7873
 
7874
+ #: src/Tribe/Main.php:4008 src/admin-views/aggregator/fields/schedule.php:44
7875
  #: src/admin-views/aggregator/fields/schedule.php:62
7876
  msgid "Day"
7877
  msgstr "Day"
7878
 
7879
+ #: src/Tribe/Main.php:3991
7880
  msgid "Month"
7881
  msgstr "Month"
7882
 
7883
+ #: src/Tribe/Main.php:3973
7884
  msgid "List"
7885
  msgstr "List"
7886
 
7887
+ #: src/Tribe/Main.php:3957
7888
  msgid "Calendar"
7889
  msgstr "Calendar"
7890
 
7891
  #: common/src/Tribe/Settings.php:254
7892
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:89 src/Tribe/Main.php:3956
7893
  msgid "Settings"
7894
  msgstr "Settings"
7895
 
7903
  msgid "Add %s"
7904
  msgstr "Add %s"
7905
 
7906
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:45 src/Tribe/Main.php:3907
7907
  msgid "View Calendar"
7908
  msgstr "View Calendar"
7909
 
7911
  msgid "%s"
7912
  msgstr "%s"
7913
 
7914
+ #: src/Tribe/Main.php:3854
7915
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7916
  msgstr "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7917
 
7918
+ #: src/Tribe/Main.php:3849
7919
  msgid "Additional Functionality"
7920
  msgstr "Additional Functionality"
7921
 
7922
+ #: src/Tribe/Main.php:3804
7923
  msgid "News from Modern Tribe"
7924
  msgstr "News from Modern Tribe"
7925
 
7926
+ #: src/Tribe/Main.php:3784
7927
  msgid "View All Add-Ons"
7928
  msgstr "View All Add-Ons"
7929
 
7930
+ #: src/Tribe/Main.php:3781
7931
  msgid "Support"
7932
  msgstr "Support"
7933
 
7934
+ #: src/Tribe/Main.php:3429 src/Tribe/Main.php:3442
7935
  msgid "%s Information"
7936
  msgstr "%s Information"
7937
 
7938
+ #: src/Tribe/Main.php:3420
7939
  msgid "%s Options"
7940
  msgstr "%s Options"
7941
 
7942
+ #: src/Tribe/Main.php:3343 src/Tribe/Main.php:3378
7943
  #: src/functions/template-tags/day.php:157
7944
  #: src/functions/template-tags/day.php:178
7945
  msgid "Date out of range."
7946
  msgstr "Date out of range."
7947
 
7948
+ #: src/Tribe/Main.php:2170
7949
  msgid "all"
7950
  msgstr "all"
7951
 
7952
+ #: src/Tribe/Main.php:2169 src/functions/template-tags/general.php:111
7953
  msgid "events"
7954
  msgstr "events"
7955
 
7956
+ #: src/Tribe/Main.php:2168 src/functions/template-tags/general.php:79
7957
  msgid "event"
7958
  msgstr "event"
7959
 
7960
+ #: src/Tribe/Main.php:2167
7961
  msgid "page"
7962
  msgstr "page"
7963
 
7969
  msgid "Done"
7970
  msgstr "Done"
7971
 
7972
+ #: common/src/Tribe/Main.php:272
7973
+ #: src/deprecated/Tribe__Events__Asset__Bootstrap_Datepicker.php:28
7974
  #: src/functions/template-tags/day.php:104
7975
  msgid "Today"
7976
  msgstr "Today"
7983
  msgid "Next"
7984
  msgstr "Next"
7985
 
7986
+ #: src/Tribe/Linked_Posts.php:1138
7987
  msgid "No saved %s exists."
7988
  msgstr "No saved %s exists."
7989
 
7990
+ #: src/Tribe/Linked_Posts.php:964
7991
  msgid "Available %s"
7992
  msgstr "Available %s"
7993
 
7994
+ #: src/Tribe/Linked_Posts.php:960
7995
  msgid "My %s"
7996
  msgstr "My %s"
7997
 
7998
+ #: src/Tribe/Main.php:1858 src/Tribe/Main.php:1878
7999
  msgid "%s draft updated."
8000
  msgstr "%s draft updated."
8001
 
8002
+ #: src/Tribe/Main.php:1851 src/Tribe/Main.php:1871
8003
  msgid "%s submitted."
8004
  msgstr "%s submitted."
8005
 
8006
+ #: src/Tribe/Main.php:1849 src/Tribe/Main.php:1869
8007
  msgid "%s published."
8008
  msgstr "%s published."
8009
 
8010
  #. translators: %s: date and time of the revision
8011
+ #: src/Tribe/Main.php:1868
8012
  msgid "%s restored to revision from %s"
8013
  msgstr "%s restored to revision from %s"
8014
 
8015
  #. translators: Publish box date format, see http://php.net/date
8016
+ #: src/Tribe/Main.php:1828 src/Tribe/Main.php:1856 src/Tribe/Main.php:1876
8017
  msgid "M j, Y @ G:i"
8018
  msgstr "M j, Y @ G:i"
8019
 
8020
+ #: src/Tribe/Main.php:1817 src/Tribe/Main.php:1850 src/Tribe/Main.php:1870
8021
  msgid "%s saved."
8022
  msgstr "%s saved."
8023
 
8024
  #. translators: %s: date and time of the revision
8025
+ #: src/Tribe/Main.php:1810 src/Tribe/Main.php:1848
8026
  msgid "%1$s restored to revision from %2$s"
8027
  msgstr "%1$s restored to revision from %2$s"
8028
 
8029
+ #: src/Tribe/Main.php:1808 src/Tribe/Main.php:1843 src/Tribe/Main.php:1846
8030
+ #: src/Tribe/Main.php:1863 src/Tribe/Main.php:1866
8031
  msgid "%s updated."
8032
  msgstr "%s updated."
8033
 
8034
+ #: src/Tribe/Main.php:1807 src/Tribe/Main.php:1845 src/Tribe/Main.php:1865
8035
  msgid "Custom field deleted."
8036
  msgstr "Custom field deleted."
8037
 
8038
+ #: src/Tribe/Main.php:1806 src/Tribe/Main.php:1844 src/Tribe/Main.php:1864
8039
  msgid "Custom field updated."
8040
  msgstr "Custom field updated."
8041
 
8042
+ #: src/Tribe/Main.php:1784
8043
  msgid "New %s Category Name"
8044
  msgstr "New %s Category Name"
8045
 
8046
+ #: src/Tribe/Main.php:1783
8047
  msgid "Add New %s Category"
8048
  msgstr "Add New %s Category"
8049
 
8050
+ #: src/Tribe/Main.php:1782
8051
  msgid "Update %s Category"
8052
  msgstr "Update %s Category"
8053
 
8054
+ #: src/Tribe/Main.php:1781
8055
  msgid "Edit %s Category"
8056
  msgstr "Edit %s Category"
8057
 
8058
+ #: src/Tribe/Main.php:1780
8059
  msgid "Parent %s Category:"
8060
  msgstr "Parent %s Category:"
8061
 
8062
+ #: src/Tribe/Main.php:1779
8063
  msgid "Parent %s Category"
8064
  msgstr "Parent %s Category"
8065
 
8066
+ #: src/Tribe/Main.php:1778
8067
  msgid "All %s Categories"
8068
  msgstr "All %s Categories"
8069
 
8070
+ #: src/Tribe/Main.php:1777
8071
  msgid "Search %s Categories"
8072
  msgstr "Search %s Categories"
8073
 
8074
+ #: src/Tribe/Main.php:1776
8075
  msgid "%s Category"
8076
  msgstr "%s Category"
8077
 
8078
+ #: src/Tribe/Main.php:1766 src/Tribe/Organizer.php:98 src/Tribe/Venue.php:117
8079
  msgid "No %s found in Trash"
8080
  msgstr "No %s found in Trash"
8081
 
8082
+ #: src/Tribe/Main.php:1765 src/Tribe/Organizer.php:97 src/Tribe/Venue.php:116
8083
  msgid "No %s found"
8084
  msgstr "No %s found"
8085
 
8086
+ #: src/Tribe/Main.php:1764 src/Tribe/Organizer.php:96 src/Tribe/Venue.php:115
8087
  msgid "Search %s"
8088
  msgstr "Search %s"
8089
 
8090
+ #: src/Tribe/Main.php:1763 src/Tribe/Organizer.php:95 src/Tribe/Venue.php:114
8091
  #: src/views/month/single-day.php:26
8092
  msgid "View %s"
8093
  msgstr "View %s"
8094
 
8095
+ #: src/Tribe/Main.php:1762 src/Tribe/Organizer.php:94 src/Tribe/Venue.php:113
8096
  msgid "New %s"
8097
  msgstr "New %s"
8098
 
8099
+ #: src/Tribe/Main.php:1760 src/Tribe/Main.php:1892 src/Tribe/Main.php:1893
8100
  #: src/Tribe/Organizer.php:92 src/Tribe/Venue.php:111
8101
  msgid "Add New %s"
8102
  msgstr "Add New %s"
8103
 
8104
+ #: src/Tribe/Main.php:1759 src/Tribe/Organizer.php:91 src/Tribe/Venue.php:110
8105
  msgid "Add New"
8106
  msgstr "Add New"
8107
 
8108
+ #: src/Tribe/Main.php:1726 src/Tribe/Main.php:2165
8109
  msgid "tag"
8110
  msgstr "tag"
8111
 
8112
+ #: src/Tribe/Main.php:1712 src/Tribe/Main.php:2166
8113
  msgid "category"
8114
  msgstr "category"
8115
 
8116
+ #: src/Tribe/Main.php:1464
8117
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8118
  msgstr "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8119
 
8120
+ #: src/Tribe/Main.php:1461
8121
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8122
  msgstr "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8123
 
8135
  msgid "Display"
8136
  msgstr "Display"
8137
 
8138
+ #: src/Tribe/Main.php:1308
8139
  msgid "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8140
  msgstr "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8141
 
8142
+ #: src/Tribe/Main.php:1296
8143
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8144
  msgstr "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8145
 
8146
+ #: src/Tribe/Main.php:786
8147
  msgid "Initializing Tribe Events on %s"
8148
  msgstr "Initializing Tribe Events on %s"
8149
 
8150
+ #: src/Tribe/Main.php:761
8151
  msgid "today"
8152
  msgstr "today"
8153
 
8154
+ #: src/Tribe/Main.php:760
8155
  msgid "day"
8156
  msgstr "day"
8157
 
8158
+ #: src/Tribe/Main.php:759
8159
  msgid "past"
8160
  msgstr "past"
8161
 
8162
+ #: src/Tribe/Main.php:758
8163
  msgid "upcoming"
8164
  msgstr "upcoming"
8165
 
8166
+ #: src/Tribe/Main.php:757
8167
  msgid "list"
8168
  msgstr "list"
8169
 
8170
+ #: src/Tribe/Main.php:756
8171
  msgid "month"
8172
  msgstr "month"
8173
 
8174
+ #. #-#-#-#-# the-events-calendar-code.pot (The Events Calendar 4.6.22.1)
8175
  #. #-#-#-#-#
8176
  #. Plugin Name of the plugin/theme
8177
  #: common/src/Tribe/Admin/Help_Page.php:59 common/src/Tribe/Customizer.php:569
8178
+ #: common/src/Tribe/Plugins_API.php:25 src/Tribe/Main.php:749
8179
+ #: src/Tribe/Main.php:1092 src/Tribe/Privacy.php:29
8180
  #: src/functions/template-tags/general.php:1345
8181
  msgid "The Events Calendar"
8182
  msgstr "The Events Calendar"
8183
 
8184
+ #: src/Tribe/Main.php:1162 src/admin-views/aggregator/tabs/import-form.php:185
8185
  #: src/admin-views/aggregator/tabs/import-form.php:197
8186
  #: src/functions/template-tags/general.php:63
8187
  msgid "Event"
8188
  msgstr "Event"
8189
 
8190
  #: common/src/Tribe/Settings.php:177 common/src/Tribe/Settings.php:241
8191
+ #: common/src/Tribe/Settings.php:242 src/Tribe/Main.php:1154
8192
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:207
8193
  #: src/functions/template-tags/general.php:95
8194
  msgid "Events"
8195
  msgstr "Events"
8196
 
8197
+ #: src/Tribe/Organizer.php:157 src/functions/template-tags/organizer.php:112
8198
  msgid "Organizer"
8199
  msgstr "Organiser"
8200
 
8201
  #: src/Tribe/Organizer.php:171
8202
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:206
8203
+ #: src/functions/template-tags/organizer.php:123
8204
  msgid "Organizers"
8205
  msgstr "Organisers"
8206
 
8464
  msgid "End:"
8465
  msgstr "End:"
8466
 
8467
+ #: src/Tribe/Aggregator/Record/List_Table.php:505
8468
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
8469
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
8470
  #: src/views/modules/meta/details.php:66 src/views/modules/meta/details.php:91
8483
  msgid "Start Date"
8484
  msgstr "Start Date"
8485
 
8486
+ #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1775
8487
  msgid "%s Categories"
8488
  msgstr "%s Categories"
8489
 
8494
  #: src/Tribe/Admin/Timezone_Updater.php:87
8495
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
8496
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:100
8497
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:210
8498
  msgid "%d%% complete"
8499
  msgstr "%d%% complete"
8500
 
8507
  msgstr "Please wait while time zone data is added to your events."
8508
 
8509
  #: src/Tribe/Admin/Bar/Default_Configurator.php:62
8510
+ #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:211 src/Tribe/Main.php:1761
8511
+ #: src/Tribe/Main.php:4843 src/Tribe/Main.php:4890 src/Tribe/Organizer.php:93
8512
  #: src/Tribe/Venue.php:112
8513
  msgid "Edit %s"
8514
  msgstr "Edit %s"
8515
 
8516
+ #: src/Tribe/Main.php:4827 src/Tribe/Main.php:4884
8517
  msgid "Use Saved %s:"
8518
  msgstr "Use Saved %s:"
8519
 
8520
+ #: src/Tribe/Main.php:991
8521
  msgid " ask the site administrator set a different Events URL slug."
8522
  msgstr " ask the site administrator set a different Events URL slug."
8523
 
8524
+ #: src/Tribe/Main.php:985
8525
  msgid "Ask the site administrator to edit the %s slug"
8526
  msgstr "Ask the site administrator to edit the %s slug"
8527
 
8529
  msgid "Thanks for Updating The Events Calendar"
8530
  msgstr "Thanks for Updating The Events Calendar"
8531
 
8532
+ #: src/Tribe/Main.php:844 src/Tribe/Main.php:846
8533
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
8534
  msgid "Welcome to The Events Calendar"
8535
  msgstr "Welcome to The Events Calendar"
lang/the-events-calendar-es_ES.mo CHANGED
Binary file
lang/the-events-calendar-es_ES.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - The Events Calendar - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2018-08-27 19:01:54+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -11,6 +11,31 @@ msgstr ""
11
  "Language: es\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: src/views/month/single-day.php:57
15
  msgid "%s for %s"
16
  msgstr "%s del %s"
@@ -183,91 +208,91 @@ msgstr "Leer más"
183
  msgid "Do more with Eventbrite Tickets"
184
  msgstr "Haz más con Eventbrite Tickets"
185
 
186
- #: src/Tribe/Main.php:4513
187
  msgid "Search for %s by month. Please use the format %s."
188
  msgstr "Buscar %s por mes. Por favor, usa el formato %s."
189
 
190
- #: src/Tribe/Main.php:4508
191
  msgid "Search for %s by Date. Please use the format %s."
192
  msgstr "Buscar %s por fecha. Por favor, usa el formato %s."
193
 
194
- #: src/Tribe/Main.php:4476 src/Tribe/Main.php:4477
195
  msgid "2 digit month dot 4 digit year"
196
  msgstr "mes de 2 cifras punto año de 4 cifras"
197
 
198
- #: src/Tribe/Main.php:4475
199
  msgid "4 digit year dot 2 digit month"
200
  msgstr "año de 4 cifras punto mes de 2 cifras"
201
 
202
- #: src/Tribe/Main.php:4474
203
  msgid "2 digit month hyphen 4 digit year"
204
  msgstr "mes de 2 cifras guión año de 4 cifras"
205
 
206
- #: src/Tribe/Main.php:4471 src/Tribe/Main.php:4472 src/Tribe/Main.php:4473
207
  msgid "1 digit month hyphen 4 digit year"
208
  msgstr "mes de 1 cifra guión año de 4 cifras"
209
 
210
- #: src/Tribe/Main.php:4468 src/Tribe/Main.php:4470
211
  msgid "2 digit month slash 4 digit year"
212
  msgstr "mes de 2 cifras barra año de 4 cifras"
213
 
214
- #: src/Tribe/Main.php:4467 src/Tribe/Main.php:4469
215
  msgid "1 digit month slash 4 digit year"
216
  msgstr "mes de 1 cifra barra año de 4 cifras"
217
 
218
- #: src/Tribe/Main.php:4466
219
  msgid "4 digit year hyphen 2 digit month"
220
  msgstr "año de 4 cifras guión mes de 2 cifras"
221
 
222
- #: src/Tribe/Main.php:4462
223
  msgid "2 digit day dot 2 digit month dot 4 digit year"
224
  msgstr "día de 2 cifras punto mes de 2 cifras punto año de 4 cifras"
225
 
226
- #: src/Tribe/Main.php:4461
227
  msgid "2 digit month dot 2 digit day dot 4 digit year"
228
  msgstr "mes de 2 cifras punto día de 2 cifras punto año de 4 cifras"
229
 
230
- #: src/Tribe/Main.php:4460
231
  msgid "4 digit year dot 2 digit month dot 2 digit day"
232
  msgstr "año de 4 cifras punto mes de 2 cifras punto día de 2 cifras"
233
 
234
- #: src/Tribe/Main.php:4459
235
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
236
  msgstr "día de 2 cifras guión mes de 2 cifras guión año de 4 cifras"
237
 
238
- #: src/Tribe/Main.php:4458
239
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
240
  msgstr "día de 1 cifra guión mes de 1 cifra guión año de 4 cifras"
241
 
242
- #: src/Tribe/Main.php:4457
243
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
244
  msgstr "mes de 1 cifra guión día de 2 cifras guión año de 4 cifras"
245
 
246
- #: src/Tribe/Main.php:4456
247
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
248
  msgstr "mes de 1 cifra guión día de 1 cifra guión año de 4 cifras"
249
 
250
- #: src/Tribe/Main.php:4455
251
  msgid "2 digit day slash 2 digit month slash 4 digit year"
252
  msgstr "día de 2 cifras barra mes de 2 cifras barra año de 4 cifras"
253
 
254
- #: src/Tribe/Main.php:4454
255
  msgid "1 digit day slash 1 digit month slash 4 digit year"
256
  msgstr "día de 1 cifra barra mes de 1 cifra barra año de 4 cifras"
257
 
258
- #: src/Tribe/Main.php:4453
259
  msgid "2 digit month slash 2 digit day slash 4 digit year"
260
  msgstr "mes de 2 cifras barra día de 2 cifras barra año de 4 cifras\t"
261
 
262
- #: src/Tribe/Main.php:4452
263
  msgid "1 digit month slash 1 digit day slash 4 digit year"
264
  msgstr "mes de 1 cifra barra día de 1 cifra barra año de 4 cifras"
265
 
266
- #: src/Tribe/Main.php:4451
267
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
268
  msgstr "año de 4 cifras barra mes de 2 cifras barra días de dos cifras"
269
 
270
- #: src/Tribe/Main.php:4430
271
  msgid "Search for %s by Keyword."
272
  msgstr "Buscar %s por palabra clave."
273
 
@@ -407,7 +432,7 @@ msgstr "Importar desde tu cuenta de Eventbrite"
407
 
408
  #: src/admin-views/aggregator/origins/eventbrite.php:8
409
  msgid "One-time imports include all currently listed events, while scheduled imports automatically grab new events and updates from Eventbrite on a set schedule. Single events can be added via a one-time import."
410
- msgstr ""
411
 
412
  #: src/Tribe/Aggregator/Tabs/Abstract.php:190
413
  msgid "Please provide a Eventbrite URL when importing from Eventbrite."
@@ -495,7 +520,7 @@ msgid "Search our support help desk"
495
  msgstr "Busca en nuestro servicio de ayuda"
496
 
497
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
498
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:369
499
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
500
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
501
  msgid "The requested page was not found."
@@ -509,12 +534,12 @@ msgstr "un mes"
509
  msgid "one week"
510
  msgstr "una semana"
511
 
512
- #: src/Tribe/Aggregator/Record/List_Table.php:570
513
  msgctxt "when the retry will happen, a date"
514
  msgid "retrying at %s"
515
  msgstr "reintentándolo el %s"
516
 
517
- #: src/Tribe/Aggregator/Record/List_Table.php:567
518
  msgctxt "in human readable time"
519
  msgid "retrying in about %s"
520
  msgstr "reintentándolo aproximadamente en %s"
@@ -596,7 +621,7 @@ msgid "Main %s Page"
596
  msgstr "Página %s principal"
597
 
598
  #: common/src/Tribe/Plugins_API.php:71
599
- msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Tickets have QR codes for easy check in at the door."
600
  msgstr "Event Tickets Plus te permite vender tickets de tus eventos usando WooCommerce, Easy Digital Downloads o nuestra herramienta Tribe Commerce. Añade tickets en tus entradas, páginas o en %1$sThe Events Calendar%2$s y vende entradas de tu listado de eventos. Crea formularios de registro, gestiona asistentes, con opciones de personalización y mucho más... Los tickets tienen códigos QR para gestionar rápidamente el acceso"
601
 
602
  #: src/admin-views/tribe-options-general.php:31
@@ -628,7 +653,7 @@ msgstr "El evento que busca no existe"
628
  msgid "The event with the specified ID is not accessible."
629
  msgstr "No se puede acceder al evento con el ID especificado."
630
 
631
- #: src/Tribe/Main.php:1813
632
  msgid "%1$s published. %2$sView %3$s"
633
  msgstr "%1$s publicado. %2$sVer %3$s"
634
 
@@ -979,11 +1004,11 @@ msgstr "Devuelve los datos del organizador con el ID indicado"
979
  msgid "the event post name"
980
  msgstr "Nombre de la entrada del evento"
981
 
982
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:341
983
  msgid "The event organizer IDs or data"
984
  msgstr "ID o data del organizador del evento"
985
 
986
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:333
987
  msgid "The event venue ID or data"
988
  msgstr "El ID o data del lugar del evento"
989
 
@@ -1226,32 +1251,32 @@ msgstr "El número de organizadores que devuelve cada página"
1226
  msgid "Returns all the organizers matching the search criteria"
1227
  msgstr "Muestra todos los organizadores que coinciden con el criterio de búsqueda"
1228
 
1229
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:478
1230
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1231
  msgstr "Events Calendar Pro es necesario. Los eventos se filtran por la longitud de la localización del lugar, se debe proporcionar geoloc_lat"
1232
 
1233
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:472
1234
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1235
  msgstr "Requiere de Events Calendar Pro. Los eventos se deberían filtrar por latitud, y deberían proveer geoloc_lng"
1236
 
1237
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:466
1238
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1239
  msgstr "Necesita Events Calendar Pro. Se puede filtrar los eventos según tengan información de ubicación o no."
1240
 
1241
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:461
1242
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1243
  msgid "The event post status"
1244
  msgstr "Estado del evento"
1245
 
1246
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1247
  msgid "Events should be filtered by their featured status"
1248
  msgstr "Lo Eventos se filtran por si están destacados o no"
1249
 
1250
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:446
1251
  msgid "Events should be assigned one of the specified organizer IDs"
1252
  msgstr "Se deben asignar a los eventos la ID de un organizador específico"
1253
 
1254
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
1255
  msgid "Events should be assigned one of the specified venue IDs"
1256
  msgstr "Se deben asignar a los eventos la ID de un lugar "
1257
 
@@ -1345,48 +1370,48 @@ msgstr "El slug del evento"
1345
  msgid "The event status"
1346
  msgstr "Estado del evento"
1347
 
1348
- #: src/Tribe/Linked_Posts.php:1126
1349
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1350
  msgid "Create or Find %s"
1351
  msgstr "Crear o buscar %s"
1352
 
1353
- #: src/Tribe/Linked_Posts.php:1117
1354
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1355
  msgid "Find %1$s %2$s"
1356
  msgstr "Encontrar %1$s %2$s"
1357
 
1358
- #: src/Tribe/Linked_Posts.php:1108
1359
  msgid "Find a Venue"
1360
  msgstr "Encontrar un local"
1361
 
1362
- #: src/Tribe/Linked_Posts.php:1107
1363
  msgid "Create or Find a Venue"
1364
  msgstr "Crear o buscar una ubicación"
1365
 
1366
- #: src/Tribe/Linked_Posts.php:1100
1367
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1368
  msgid "Create or Find %s"
1369
  msgstr "Crear o buscar %s"
1370
 
1371
- #: src/Tribe/Linked_Posts.php:1091
1372
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1373
  msgid "Find %1$s %2$s"
1374
  msgstr "Encontrar %1$s %2$s"
1375
 
1376
- #: src/Tribe/Linked_Posts.php:1080
1377
  msgid "Find an Organizer"
1378
  msgstr "Encontrar un organizador"
1379
 
1380
- #: src/Tribe/Linked_Posts.php:1079
1381
  msgid "Create or Find an Organizer"
1382
  msgstr "Crear o buscar un organizador"
1383
 
1384
- #: src/Tribe/Linked_Posts.php:1072
1385
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1386
  msgid "Create or Find %s"
1387
  msgstr "Crear o buscar %s"
1388
 
1389
- #: src/Tribe/Linked_Posts.php:1063
1390
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1391
  msgid "Find %1$s %2$s"
1392
  msgstr "Encontrar %1$s %2$s"
@@ -1414,12 +1439,12 @@ msgstr "Por rango de fecha"
1414
  #: src/Tribe/Aggregator/Service.php:708
1415
  msgctxt "The placeholder is for the localized version of the iCal UID specification link"
1416
  msgid "Some events at the requested source are missing the UID attribute required by the iCalendar Specification. One-Time and ICS File imports are allowed but successive imports will create duplicated events on your site. Please contact the source provider to fix the UID issue; linking them to %s may help them more quickly resolve their feed's UID issue."
1417
- msgstr ""
1418
 
1419
  #: src/Tribe/Aggregator/Service.php:700
1420
  msgctxt "The placeholder is for the localized version of the iCal UID specification link"
1421
  msgid "Some events at the requested source are missing the UID attribute required by the iCalendar Specification. Creating a scheduled import would generate duplicate events on each import. Instead, please use a One-Time import or contact the source provider to fix the UID issue; linking them to %s may help them more quickly resolve their feed's UID issue."
1422
- msgstr ""
1423
 
1424
  #: src/Tribe/Aggregator/Service.php:668
1425
  msgid "the UID part of the iCalendar Specification"
@@ -1439,7 +1464,7 @@ msgstr "¿Quieres profundizar más?"
1439
 
1440
  #: common/src/admin-views/tribe-options-display.php:28
1441
  msgid "The following three fields accept the date format options available to the PHP %1$s function. <a href=\"%2$s\" target=\"_blank\">Learn how to make your own date format here</a>."
1442
- msgstr ""
1443
 
1444
  #: common/src/Tribe/Validate.php:545
1445
  msgid "%s must be an email address."
@@ -1475,27 +1500,27 @@ msgstr "Islas Âland"
1475
 
1476
  #: common/src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:57
1477
  msgid "A list of links to the term own, archive and parent REST URL"
1478
- msgstr ""
1479
 
1480
  #: src/admin-views/create-organizer-fields.php:19
1481
  #: src/admin-views/organizer-meta-box.php:45
1482
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1483
  msgstr "La dirección de correo electrónico será ocultada para evitar que cualquiera pueda enviarte correo no deseado (spam)."
1484
 
1485
- #: src/Tribe/Main.php:997
1486
  msgid "edit Events settings."
1487
  msgstr "editar ajustes del evento."
1488
 
1489
- #: src/Tribe/Main.php:988
1490
  msgid "Edit the %s slug"
1491
  msgstr "Editar el %s slug"
1492
 
1493
- #: src/Tribe/Linked_Posts.php:1049
1494
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1495
  msgid "an"
1496
  msgstr "un"
1497
 
1498
- #: src/Tribe/Linked_Posts.php:1042
1499
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1500
  msgid "a"
1501
  msgstr "un"
@@ -1537,10 +1562,6 @@ msgstr "Color de resaltado"
1537
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1538
  msgstr "La respuesta del servidor Event Aggregator se creó mal y no se pudo comprender. Por favor, inténtalo de nuevo."
1539
 
1540
- #: common/src/Tribe/Plugins_API.php:37
1541
- msgid "Import events from across the web! Event Aggregator makes it easy to run scheduled or manual imports from Facebook, Meetup, Eventbrite, Google Calendar, and iCalendar, along with uploads from CSV and ICS files. You can also import directly from other sites running The Events Calendar thanks to our built-in REST API support."
1542
- msgstr ""
1543
-
1544
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1545
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1546
  msgstr "The Events Calendar no puede escribir en el fichero de configuración por defecto de WPML: por favor, crea uno manualmente."
@@ -1585,7 +1606,7 @@ msgstr "No se pueden buscar términos sin una taxonomía"
1585
  msgid "The event WordPress post ID"
1586
  msgstr "ID de publicación de WordPress del evento"
1587
 
1588
- #: src/Tribe/Aggregator/Record/Abstract.php:362
1589
  msgid "Something went wrong while inserting the record in the database."
1590
  msgstr "Algo salió mal mientras se guardaba el registro en la base de datos."
1591
 
@@ -1603,7 +1624,7 @@ msgstr[1] "Parece que estás usando %1$s, pero tus claves de licencia no son vá
1603
  msgid "Please refresh the page and try your request again."
1604
  msgstr "Por favor recargue la página y vuelva a intentarlo."
1605
 
1606
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:28
1607
  msgid "The image WordPress post ID"
1608
  msgstr "ID de publicación de WordPress de la imagen"
1609
 
@@ -1663,11 +1684,11 @@ msgstr "La ID de publicación solicitada no existe o no se trata de un organizad
1663
  msgid "The event last modification date in UTC time"
1664
  msgstr "Última modificación del evento en hora UTC"
1665
 
1666
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:403
1667
  msgid "Events should start after the specified date"
1668
  msgstr "Los eventos deben comenzar después de la fecha especificada"
1669
 
1670
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:410
1671
  msgid "Events should start before the specified date"
1672
  msgstr "Los eventos deben comenzar antes de la fecha especificada"
1673
 
@@ -1703,7 +1724,7 @@ msgstr "El parámetro 'search' debe ser una cadena"
1703
  msgid "the event post ID"
1704
  msgstr "ID de publicación del evento"
1705
 
1706
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:416
1707
  msgid "Events should contain the specified string in the title or description"
1708
  msgstr "Los eventos deben contener la cadena especificada en el título o en la descripción"
1709
 
@@ -1999,31 +2020,31 @@ msgid "The requested URL does not have any upcoming and published events matchin
1999
  msgstr "La URL solicitada no contiene eventos próximos ni publicados que coincidan con los criterios de búsqueda."
2000
 
2001
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2002
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:388
2003
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2004
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2005
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2006
  msgid "The archive page to return"
2007
  msgstr "La página de archivo a devolver"
2008
 
2009
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:396
2010
  msgid "The number of events to return on each page"
2011
  msgstr "El número de eventos a devolver en cada página"
2012
 
2013
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:422
2014
  msgid "Events should be assigned one of the specified categories slugs or IDs"
2015
  msgstr "Los eventos deben ser asignados a uno de los slugs o IDs de las categorías especificadas"
2016
 
2017
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:430
2018
  msgid "Events should be assigned one of the specified tags slugs or IDs"
2019
  msgstr "Los eventos deben ser asignados a uno de los slugs o IDs de las etiquetas especificadas"
2020
 
2021
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:358
2022
  msgid "Returns all the upcoming events matching the search criteria"
2023
  msgstr "Devuelve todos los próximos eventos que coinciden con los criterios de búsqueda"
2024
 
2025
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:36
2026
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:366
2027
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:64
2028
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:53
2029
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:61
@@ -2238,13 +2259,13 @@ msgstr "Tres meses"
2238
  msgid "three months"
2239
  msgstr "tres meses"
2240
 
2241
- #: src/Tribe/Aggregator/Tabs/New.php:373
2242
  msgid "%1$d new event tag was created."
2243
  msgid_plural "%1$d new event tags were created."
2244
  msgstr[0] "%1$d nueva etiqueta de evento se ha creado."
2245
  msgstr[1] "%1$d nuevas etiquetas de evento se han creado."
2246
 
2247
- #: src/Tribe/Aggregator/Tabs/New.php:377
2248
  msgid "View your event tags"
2249
  msgstr "Ver tus etiquetas de evento"
2250
 
@@ -2303,7 +2324,7 @@ msgstr "%1$s en %2$s"
2303
  msgid "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2304
  msgstr "Cambiar los 3 eventos por defecto por día en la vista de mes. Para no limitarlo, puedes especificar -1. Ten en cuenta que puede haber problemas de rendimiento si permite demasiados eventos por día. <a href=\"%s\"> Leer más </a>."
2305
 
2306
- #: src/Tribe/Main.php:765
2307
  msgctxt "all events slug"
2308
  msgid "all"
2309
  msgstr "Todo"
@@ -2344,7 +2365,7 @@ msgstr "Nombre del término."
2344
  msgid "The WordPress term ID"
2345
  msgstr "El ID del término de WordPress"
2346
 
2347
- #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:36
2348
  msgid "The link to the image in the specified size on the site"
2349
  msgstr "El enlace a la imagen en el tamaño especificado en el sitio"
2350
 
@@ -2360,19 +2381,19 @@ msgstr "Altura de la imagen en píxeles en el tamaño especificado"
2360
  msgid "The image width in pixels in the specified size"
2361
  msgstr "Anchura de la imagen en píxeles en el tamaño especificado"
2362
 
2363
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:44
2364
  msgid "The details about each size available for the image"
2365
  msgstr "Detalles sobre cada tamaño disponible para la imagen"
2366
 
2367
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:40
2368
  msgid "The image natural height in pixels"
2369
  msgstr "Altura original de la imagen en píxeles"
2370
 
2371
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:36
2372
  msgid "The image natural width in pixels"
2373
  msgstr "Anchura original de la imagen en píxeles"
2374
 
2375
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:32
2376
  msgid "The image file extension"
2377
  msgstr "Extensión de archivo de la imagen"
2378
 
@@ -2380,7 +2401,7 @@ msgstr "Extensión de archivo de la imagen"
2380
  msgid "The venue WordPress post ID"
2381
  msgstr "ID de publicación de WordPress del lugar"
2382
 
2383
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:24
2384
  msgid "The URL to the full size version of the image"
2385
  msgstr "URL de la versión de tamaño completo de la imagen"
2386
 
@@ -2420,7 +2441,7 @@ msgstr "La posición del símbolo de moneda junto al precio"
2420
  msgid "The cost currency symbol"
2421
  msgstr "Símbolo de la moneda"
2422
 
2423
- #: src/Tribe/Main.php:4434
2424
  msgid "Keyword"
2425
  msgstr "Palabra clave"
2426
 
@@ -2495,12 +2516,12 @@ msgstr "Event Aggregator Control"
2495
  msgid "Export Events"
2496
  msgstr "Exportar Eventos"
2497
 
2498
- #: src/Tribe/Main.php:764
2499
  msgctxt "featured events slug"
2500
  msgid "featured"
2501
  msgstr "destacado"
2502
 
2503
- #: src/Tribe/Linked_Posts.php:1005
2504
  msgid "Create: <b><%= term %></b>"
2505
  msgstr "Crear: <b><%= term %></b>"
2506
 
@@ -2649,175 +2670,177 @@ msgstr "Estas configuraciones afectan a todas las vistas de tipo lista, incluyen
2649
  msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2650
  msgstr "Las opciones seleccionadas aquí anulan las que fueron seleccionadas en las secciones \"Temas Generales\" y \"Elementos Globales\""
2651
 
2652
- #: src/Tribe/Asset/Dynamic.php:77
2653
  msgid "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2654
  msgstr "Este evento dura todo el día empezando desde %%startdatenoyear%% y terminando el %%enddatewithyear%%."
2655
 
2656
- #: src/Tribe/Asset/Dynamic.php:76
2657
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2658
  msgstr "Este evento comienza a las %%starttime%% el %%startdatenoyear%% y termina el %%enddatewithyear%%."
2659
 
2660
- #: src/Tribe/Asset/Dynamic.php:75
2661
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2662
  msgstr "Este evento empieza a las %startime% el %%startdatenoyear%% y finaliza a las %%endtime%% el %%enddatewithyear%%"
2663
 
2664
- #: src/Tribe/Asset/Dynamic.php:74
2665
  msgid "This event is all day on %%startdatewithyear%%."
2666
  msgstr "Evento de día completo el %%startdatewithyear%%."
2667
 
2668
- #: src/Tribe/Asset/Dynamic.php:73
2669
  msgid "This event is at %%starttime%% on %%startdatewithyear%%."
2670
  msgstr "Este evento es a las %%starttime%% el %%startdatewithyear%%"
2671
 
2672
- #: src/Tribe/Asset/Dynamic.php:72
2673
  msgid "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2674
  msgstr "Este evento es desde %%starttime%% hasta las %%endtime%% el %%startdatewithyear%%."
2675
 
2676
- #: src/Tribe/Asset/Dynamic.php:69
2677
  msgid "Dec"
2678
  msgstr "Dic"
2679
 
2680
- #: src/Tribe/Asset/Dynamic.php:68
2681
  msgid "Nov"
2682
  msgstr "Nov"
2683
 
2684
- #: src/Tribe/Asset/Dynamic.php:67
2685
  msgid "Oct"
2686
  msgstr "Oct"
2687
 
2688
- #: src/Tribe/Asset/Dynamic.php:66
2689
  msgid "Sep"
2690
  msgstr "Sep"
2691
 
2692
- #: src/Tribe/Asset/Dynamic.php:65
2693
  msgid "Aug"
2694
  msgstr "Ago"
2695
 
2696
- #: src/Tribe/Asset/Dynamic.php:64
2697
  msgid "Jul"
2698
  msgstr "Jul"
2699
 
2700
- #: src/Tribe/Asset/Dynamic.php:63
2701
  msgid "Jun"
2702
  msgstr "Jun"
2703
 
2704
- #: src/Tribe/Asset/Dynamic.php:61
2705
  msgid "Apr"
2706
  msgstr "Abr"
2707
 
2708
- #: src/Tribe/Asset/Dynamic.php:60
2709
  msgid "Mar"
2710
  msgstr "Mar"
2711
 
2712
- #: src/Tribe/Asset/Dynamic.php:59
2713
  msgid "Feb"
2714
  msgstr "Feb"
2715
 
2716
- #: src/Tribe/Asset/Dynamic.php:58
2717
  msgid "Jan"
2718
  msgstr "Ene"
2719
 
2720
- #: src/Tribe/Asset/Dynamic.php:55
2721
  msgid "December"
2722
  msgstr "Diciembre"
2723
 
2724
- #: src/Tribe/Asset/Dynamic.php:54
2725
  msgid "November"
2726
  msgstr "Noviembre"
2727
 
2728
- #: src/Tribe/Asset/Dynamic.php:53
2729
  msgid "October"
2730
  msgstr "Octubre"
2731
 
2732
- #: src/Tribe/Asset/Dynamic.php:52
2733
  msgid "September"
2734
  msgstr "Septiembre"
2735
 
2736
- #: src/Tribe/Asset/Dynamic.php:51
2737
  msgid "August"
2738
  msgstr "Agosto"
2739
 
2740
- #: src/Tribe/Asset/Dynamic.php:50
2741
  msgid "July"
2742
  msgstr "Julio"
2743
 
2744
- #: src/Tribe/Asset/Dynamic.php:49
2745
  msgid "June"
2746
  msgstr "Junio"
2747
 
2748
- #: src/Tribe/Asset/Dynamic.php:48 src/Tribe/Asset/Dynamic.php:62
 
 
2749
  msgid "May"
2750
  msgstr "Mayo"
2751
 
2752
- #: src/Tribe/Asset/Dynamic.php:47
2753
  msgid "April"
2754
  msgstr "Abril"
2755
 
2756
- #: src/Tribe/Asset/Dynamic.php:46
2757
  msgid "March"
2758
  msgstr "Marzo"
2759
 
2760
- #: src/Tribe/Asset/Dynamic.php:45
2761
  msgid "February"
2762
  msgstr "Febrero"
2763
 
2764
- #: src/Tribe/Asset/Dynamic.php:44
2765
  msgid "January"
2766
  msgstr "Enero"
2767
 
2768
- #: src/Tribe/Asset/Dynamic.php:41
2769
  msgid "Sat"
2770
  msgstr "Sab"
2771
 
2772
- #: src/Tribe/Asset/Dynamic.php:40
2773
  msgid "Fri"
2774
  msgstr "Vier"
2775
 
2776
- #: src/Tribe/Asset/Dynamic.php:39
2777
  msgid "Thu"
2778
  msgstr "Jue"
2779
 
2780
- #: src/Tribe/Asset/Dynamic.php:38
2781
  msgid "Wed"
2782
  msgstr "Mier"
2783
 
2784
- #: src/Tribe/Asset/Dynamic.php:37
2785
  msgid "Tue"
2786
  msgstr "Mar"
2787
 
2788
- #: src/Tribe/Asset/Dynamic.php:36
2789
  msgid "Mon"
2790
  msgstr "Lun"
2791
 
2792
- #: src/Tribe/Asset/Dynamic.php:35
2793
  msgid "Sun"
2794
  msgstr "Dom"
2795
 
2796
- #: src/Tribe/Asset/Dynamic.php:32
2797
  msgid "Saturday"
2798
  msgstr "Sábado"
2799
 
2800
- #: src/Tribe/Asset/Dynamic.php:31
2801
  msgid "Friday"
2802
  msgstr "Viernes"
2803
 
2804
- #: src/Tribe/Asset/Dynamic.php:30
2805
  msgid "Thursday"
2806
  msgstr "Jueves"
2807
 
2808
- #: src/Tribe/Asset/Dynamic.php:29
2809
  msgid "Wednesday"
2810
  msgstr "Miércoles"
2811
 
2812
- #: src/Tribe/Asset/Dynamic.php:28
2813
  msgid "Tuesday"
2814
  msgstr "Martes"
2815
 
2816
- #: src/Tribe/Asset/Dynamic.php:27
2817
  msgid "Monday"
2818
  msgstr "Lunes"
2819
 
2820
- #: src/Tribe/Asset/Dynamic.php:26
2821
  msgid "Sunday"
2822
  msgstr "Domingo"
2823
 
@@ -2898,11 +2921,11 @@ msgstr "Para empezar a usar %1$s, por favor instale y active la última versión
2898
  msgid "Unknown service message"
2899
  msgstr "Mensaje de servicio desconocido"
2900
 
2901
- #: src/Tribe/Aggregator/Record/List_Table.php:533
2902
  msgid "Unknown"
2903
  msgstr "Desconocido"
2904
 
2905
- #: src/Tribe/Aggregator/Record/Abstract.php:1205
2906
  msgid "When this import was last scheduled to run, the daily limit for your Event Aggregator license had already been reached."
2907
  msgstr "Cuando se programó por última vez la ejecución de esta importación, ya se había alcanzado el límite diario para su licencia del Agregador de eventos."
2908
 
@@ -3008,7 +3031,7 @@ msgstr "Mapeo de columna:"
3008
 
3009
  #: src/admin-views/aggregator/tabs/import-form.php:160
3010
  msgid "This is a preview of the type of content you will be getting in during the import based on what is on the calendar now."
3011
- msgstr ""
3012
 
3013
  #: src/admin-views/aggregator/tabs/import-form.php:149
3014
  msgid "When you save this scheduled import, the events above will begin importing."
@@ -3016,7 +3039,7 @@ msgstr "Cuando guardes esta importación programada, los eventos de arriba comen
3016
 
3017
  #: src/admin-views/aggregator/tabs/import-form.php:147
3018
  msgid "Select the Event Field that best matches your CSV file column. The contents of that column will then be mapped to the specified event field when the event is created."
3019
- msgstr ""
3020
 
3021
  #: src/admin-views/aggregator/tabs/import-form.php:145
3022
  msgid "These settings will also apply to events imported in the future via this scheduled import."
@@ -3024,7 +3047,7 @@ msgstr "Esta configuración también se aplicará a los eventos importados en el
3024
 
3025
  #: src/admin-views/aggregator/tabs/import-form.php:144
3026
  msgid "Choose a status for the event(s) to be imported with and/or define an Event Category to automatically assign. An assigned category will be added to the event in addition to any Event Categories from the import source."
3027
- msgstr ""
3028
 
3029
  #: src/admin-views/aggregator/tabs/import-form.php:104
3030
  msgid "Access more event sources and automatic imports!"
@@ -3197,7 +3220,7 @@ msgstr "Pagina de ayuda"
3197
 
3198
  #: src/admin-views/aggregator/settings.php:684
3199
  msgid "Use the options below to configure your imports. Global Import Settings apply to all imports, but you can also override the global settings by adjusting the origin-specific options. Check your Event Aggregator Service Status on the %1$s."
3200
- msgstr ""
3201
 
3202
  #: src/admin-views/aggregator/settings.php:419
3203
  msgid "The default event category for events imported via Meetup"
@@ -3339,7 +3362,7 @@ msgstr "Sobrescribe mi evento con cualquier cambio de la fuente original"
3339
 
3340
  #: src/admin-views/aggregator/settings.php:49
3341
  msgid "You can make changes to imported events via The Events Calendar and see those changes reflected on your site’s calendar. The owner of the original event source (e.g. the iCalendar feed or Facebook group) might also make changes to their event. If you choose to re-import an altered event (manually or via a scheduled import), any changes made at the source or on your calendar will need to be addressed."
3342
- msgstr ""
3343
 
3344
  #: src/admin-views/aggregator/settings.php:44
3345
  #: src/admin-views/aggregator/settings.php:54
@@ -3409,7 +3432,7 @@ msgstr "Tu clave API de Meetup se ha guardado a %1$sEventos &gt; Ajustes &gt; AP
3409
 
3410
  #: src/admin-views/aggregator/origins/meetup.php:32
3411
  msgid "Enter your Meetup API key to import Meetup events. %1$sClick here to get your Meetup API key%2$s. You only need to do this once, it will be saved under %3$sEvents &gt; Settings &gt; APIs%4$s"
3412
- msgstr ""
3413
 
3414
  #: src/admin-views/aggregator/origins/meetup.php:7
3415
  msgid "One-time imports include all currently listed events, while scheduled imports automatically grab new events and updates from Meetup on a set schedule. Single events can be added via a one-time import."
@@ -3441,7 +3464,7 @@ msgstr "Copia a este campo la URL provista para importar los eventos a tu sitio
3441
 
3442
  #: src/admin-views/aggregator/origins/gcal.php:88
3443
  msgid "Scroll down to Calendar Address and click the iCal button (note: if your calendar is private, you'll need to click the iCal button next to the Private Address header instead)."
3444
- msgstr ""
3445
 
3446
  #: src/admin-views/aggregator/origins/gcal.php:87
3447
  msgid "Go to Settings &gt; Calendars and select the calendar you wish to import."
@@ -3639,20 +3662,20 @@ msgctxt "Abbreviation for the miles unit of measure"
3639
  msgid "mi"
3640
  msgstr "mil"
3641
 
3642
- #: src/Tribe/Main.php:983
3643
  msgid "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3644
- msgstr ""
3645
 
3646
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:77
3647
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:78
3648
  msgid "Legacy Import"
3649
- msgstr ""
3650
 
3651
  #: src/Tribe/Ignored_Events.php:926
3652
  msgid "Migration: %d Legacy Ignored Post was migrated successfully. To see the migrated event you will first need to refresh this screen."
3653
  msgid_plural "Migration: %d Legacy Ignored Posts were migrated successfully. To see the migrated events you will first need to refresh this screen."
3654
- msgstr[0] ""
3655
- msgstr[1] ""
3656
 
3657
  #: src/Tribe/Ignored_Events.php:919
3658
  msgid "Event %d: %s"
@@ -3667,8 +3690,8 @@ msgstr[1] "Migración:%d publicaciones omitida heredada no se pudieron migrar."
3667
  #: src/Tribe/Ignored_Events.php:895
3668
  msgid "Migration: %d Legacy Ignored Post was migrated but %d failed. To see the migrated event you will first need to refresh this screen."
3669
  msgid_plural "Migration: %d Legacy Ignored Posts were migrated but %d failed. To see the migrated events you will first need to refresh this screen."
3670
- msgstr[0] ""
3671
- msgstr[1] ""
3672
 
3673
  #: src/Tribe/Ignored_Events.php:871
3674
  msgid "There were no Legacy Events to be Migrated, you are ready to rock!"
@@ -3806,7 +3829,7 @@ msgstr "Renovar tu token Event Aggregator de Facebook"
3806
 
3807
  #: src/Tribe/Aggregator.php:438
3808
  msgid "Your Event Aggregator Facebook token will expire %s."
3809
- msgstr ""
3810
 
3811
  #: src/Tribe/Aggregator.php:436
3812
  msgid "Your Event Aggregator Facebook token expired %s."
@@ -3814,7 +3837,7 @@ msgstr "El token de Facebook de tu Event Aggregator expiró %s."
3814
 
3815
  #: src/Tribe/Aggregator.php:388
3816
  msgid "Successfully connected Event Aggregator to Facebook"
3817
- msgstr ""
3818
 
3819
  #: src/Tribe/Aggregator.php:358
3820
  msgid "You must use an integer to reduce the daily import limit"
@@ -3864,133 +3887,133 @@ msgstr "en cola"
3864
  msgid "Scheduled Imports"
3865
  msgstr "Importaciones programadas"
3866
 
3867
- #: src/Tribe/Aggregator/Tabs/New.php:603
3868
  msgid "Renew your Event Aggregator license"
3869
  msgstr "Renueva tu licencia de Event Aggregator"
3870
 
3871
- #: src/Tribe/Aggregator/Tabs/New.php:600
3872
  msgid "Renew your license in order to import events from Facebook, iCalendar, Google, or Meetup."
3873
  msgstr "Renueve su licencia para importar eventos de Facebook, iCalendar, Google o Meetup."
3874
 
3875
- #: src/Tribe/Aggregator/Tabs/New.php:599
3876
  msgid "Your Event Aggregator license is expired."
3877
  msgstr "Tu licencia de Event Aggregator ha finalizado."
3878
 
3879
- #: src/Tribe/Aggregator/Tabs/New.php:551
3880
  msgid "Learn More"
3881
  msgstr "Aprender más"
3882
 
3883
- #: src/Tribe/Aggregator/Tabs/New.php:546 src/Tribe/Aggregator/Tabs/New.php:553
3884
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:19
3885
  msgid "opens in a new window"
3886
  msgstr "se abre en una nueva ventana"
3887
 
3888
- #: src/Tribe/Aggregator/Tabs/New.php:544
3889
  msgid "Buy It Now"
3890
  msgstr "Comprar ahora"
3891
 
3892
- #: src/Tribe/Aggregator/Tabs/New.php:541
3893
  msgid "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3894
  msgstr "Con Event Aggregator, puedes importar eventos desde Facebook, iCalendar, Google, y Meetup.com en un santiamén."
3895
 
3896
- #: src/Tribe/Aggregator/Tabs/New.php:539
3897
  msgid "Import Using Event Aggregator"
3898
  msgstr "Importa usando Event Aggregator "
3899
 
3900
- #: src/Tribe/Aggregator/Tabs/New.php:452
3901
  msgid "Unable to save credentials"
3902
  msgstr "No se pueden guardar las credenciales"
3903
 
3904
- #: src/Tribe/Aggregator/Tabs/New.php:445
3905
  msgid "Credentials have been saved"
3906
  msgstr "Las credenciales se han guardado"
3907
 
3908
- #: src/Tribe/Aggregator/Tabs/New.php:436
3909
  msgid "The Meetup API key is required."
3910
  msgstr "Es necesaria la clave de API de Meetup."
3911
 
3912
- #: src/Tribe/Aggregator/Tabs/New.php:427
3913
  msgid "Invalid credential save nonce"
3914
- msgstr ""
3915
 
3916
- #: src/Tribe/Aggregator/Tabs/New.php:417
3917
  msgid "Invalid credential save request"
3918
  msgstr "Solicitud de guardado de credenciales no válida"
3919
 
3920
- #: src/Tribe/Aggregator/Tabs/New.php:405
3921
  msgid "View your scheduled imports."
3922
  msgstr "Ver tus importaciones programadas"
3923
 
3924
- #: src/Tribe/Aggregator/Tabs/New.php:401
3925
  msgid "The next import is scheduled for %1$s."
3926
  msgstr "La siguiente importación está programada para %1$s."
3927
 
3928
- #: src/Tribe/Aggregator/Tabs/New.php:394
3929
  msgctxt "separator between date and time"
3930
  msgid " at "
3931
  msgstr "a las"
3932
 
3933
- #: src/Tribe/Aggregator/Tabs/New.php:390
3934
  msgid "Your scheduled import was saved and the first import is complete!"
3935
  msgstr "La importación programada se guardó y la primera importación se completó."
3936
 
3937
- #: src/Tribe/Aggregator/Tabs/New.php:365
3938
  msgid "View your event categories"
3939
  msgstr "Ver sus categorías de eventos"
3940
 
3941
- #: src/Tribe/Aggregator/Tabs/New.php:361
3942
  msgid "%1$d new event category was created."
3943
  msgid_plural "%1$d new event categories were created."
3944
  msgstr[0] "%1$d nueva categoría de evento fue creada."
3945
  msgstr[1] "%1$d nuevas categorías de eventos fueron creadas."
3946
 
3947
- #: src/Tribe/Aggregator/Tabs/New.php:352
3948
  msgid "View your event organizers"
3949
  msgstr "Ver los organizadores de su evento"
3950
 
3951
- #: src/Tribe/Aggregator/Tabs/New.php:348
3952
  msgid "%1$d new organizer was imported."
3953
  msgid_plural "%1$d new organizers were imported."
3954
  msgstr[0] "%1$d nuevo organizador fue importado."
3955
  msgstr[1] "%1$d nuevos organizadores fueron importados."
3956
 
3957
- #: src/Tribe/Aggregator/Tabs/New.php:340
3958
  msgid "View your event venues"
3959
  msgstr "Ver los recintos de los eventos"
3960
 
3961
- #: src/Tribe/Aggregator/Tabs/New.php:336
3962
  msgid "%1$d new venue was imported."
3963
  msgid_plural "%1$d new venues were imported."
3964
  msgstr[0] "Se importó %1$d recinto nuevo."
3965
  msgstr[1] "Se importaron %1$d recintos nuevos."
3966
 
3967
- #: src/Tribe/Aggregator/Tabs/New.php:326
3968
  msgid "View all %s"
3969
  msgstr "Ver todo %s"
3970
 
3971
- #: src/Tribe/Aggregator/Tabs/New.php:318
3972
  msgid "No %1$s were imported or updated."
3973
  msgstr "No %1$s fueron importados o actualizados."
3974
 
3975
- #: src/Tribe/Aggregator/Tabs/New.php:311
3976
  msgid "%1$d new image was imported."
3977
  msgid_plural "%1$d new images were imported."
3978
  msgstr[0] "%1$d nueva imagen fue importada."
3979
  msgstr[1] "%1$d nuevas imagenes fueron importadas."
3980
 
3981
- #: src/Tribe/Aggregator/Tabs/New.php:302
3982
  msgid "%1$d already-imported %2$s was skipped."
3983
  msgid_plural "%1$d already-imported %2$s were skipped."
3984
  msgstr[0] "%1$d ya importado %2$s fue omitido."
3985
  msgstr[1] "%1$d ya importados %2$s fueron omitidos."
3986
 
3987
- #: src/Tribe/Aggregator/Tabs/New.php:291
3988
  msgid "%1$d existing %2$s was updated."
3989
  msgid_plural "%1$d existing %2$s were updated."
3990
- msgstr[0] ""
3991
- msgstr[1] ""
3992
 
3993
- #: src/Tribe/Aggregator/Tabs/New.php:279
3994
  msgid "%1$d new %2$s was imported."
3995
  msgid_plural "%1$d new %2$s were imported."
3996
  msgstr[0] "Se importó %1$d nuevo %2$s."
@@ -4123,7 +4146,7 @@ msgstr "La URL proporcionada no pudo ser alcanzada."
4123
 
4124
  #: src/Tribe/Aggregator/Service.php:674
4125
  msgid "Events cannot be imported because Facebook has returned an error. This could mean that the event ID does not exist, the event or source is marked as Private, or the event or source has been otherwise restricted by Facebook. You can <a href=\"https://theeventscalendar.com/knowledgebase/import-errors/\" target=\"_blank\">read more about Facebook restrictions in our knowledgebase</a>."
4126
- msgstr ""
4127
 
4128
  #: src/Tribe/Aggregator/Service.php:672
4129
  msgid "Sorry, but something went wrong. Please try again."
@@ -4254,9 +4277,9 @@ msgstr "Registros de Aggregator"
4254
  msgid "Events Aggregator Record"
4255
  msgstr "Registros de eventos de Aggregator"
4256
 
4257
- #: src/Tribe/Aggregator/Record/Queue_Realtime.php:178
4258
  msgid "Unable to continue inserting data. Please reload this page to continue/try again."
4259
- msgstr ""
4260
 
4261
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:97
4262
  msgid "Skipped:"
@@ -4272,89 +4295,89 @@ msgstr "Creado:"
4272
 
4273
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:91
4274
  msgid "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4275
- msgstr ""
4276
 
4277
- #: src/Tribe/Aggregator/Record/Queue_Processor.php:234
4278
  msgid "Could not process queue for Import Record %1$d: %2$s"
4279
  msgstr "No se pudo procesar la cola para Importar registro %1$d: %2$s"
4280
 
4281
- #: src/Tribe/Aggregator/Record/List_Table.php:657
4282
  msgid "Select %s"
4283
  msgstr "Seleccionar %s"
4284
 
4285
- #: src/Tribe/Aggregator/Record/List_Table.php:622
4286
- #: src/Tribe/Aggregator/Record/List_Table.php:631
4287
- #: src/Tribe/Aggregator/Record/List_Table.php:639
4288
  msgid "updated"
4289
  msgstr "Actualizado"
4290
 
4291
- #: src/Tribe/Aggregator/Record/List_Table.php:620
4292
- #: src/Tribe/Aggregator/Record/List_Table.php:628
4293
- #: src/Tribe/Aggregator/Record/List_Table.php:636
4294
  msgid "new"
4295
  msgstr "nuevo"
4296
 
4297
- #: src/Tribe/Aggregator/Record/List_Table.php:617
4298
  msgid "Latest Import:"
4299
  msgstr "Última importación:"
4300
 
4301
- #: src/Tribe/Aggregator/Record/List_Table.php:615
4302
  msgid "all time"
4303
  msgstr "todo el tiempo"
4304
 
4305
- #: src/Tribe/Aggregator/Record/List_Table.php:589
4306
  msgid "One Time"
4307
  msgstr "Una vez"
4308
 
4309
- #: src/Tribe/Aggregator/Record/List_Table.php:586
4310
  msgid "Invalid Frequency"
4311
  msgstr "Frecuencia no válida"
4312
 
4313
- #: src/Tribe/Aggregator/Record/List_Table.php:556 src/Tribe/Aggregator.php:426
4314
  #: src/Tribe/Ignored_Events.php:357
4315
  #: src/admin-views/tribe-options-addons-api.php:36
4316
  msgctxt "in human readable time"
4317
  msgid "in about %s"
4318
  msgstr "en unos %s"
4319
 
4320
- #: src/Tribe/Aggregator/Record/List_Table.php:554 src/Tribe/Aggregator.php:424
4321
  #: src/Tribe/Ignored_Events.php:355
4322
  #: src/admin-views/tribe-options-addons-api.php:34
4323
  msgctxt "human readable time ago"
4324
  msgid "about %s ago"
4325
  msgstr "hace unas %s"
4326
 
4327
- #: src/Tribe/Aggregator/Record/List_Table.php:506
4328
  msgid "Radius:"
4329
  msgstr "Radio:"
4330
 
4331
- #: src/Tribe/Aggregator/Record/List_Table.php:489
4332
  msgid "Keywords:"
4333
  msgstr "Palabras clave:"
4334
 
4335
- #: src/Tribe/Aggregator/Record/List_Table.php:476
4336
  #: src/Tribe/Ignored_Events.php:337
4337
  msgctxt "record via origin"
4338
  msgid "via "
4339
  msgstr "a través de"
4340
 
4341
- #: src/Tribe/Aggregator/Record/List_Table.php:433
4342
  msgid "Import preview"
4343
  msgstr "Previsualización de la importación"
4344
 
4345
- #: src/Tribe/Aggregator/Record/List_Table.php:429
4346
  msgid "Import pending"
4347
  msgstr "Importación pendiente"
4348
 
4349
- #: src/Tribe/Aggregator/Record/List_Table.php:425
4350
  msgid "Import schedule"
4351
  msgstr "Calendario de importación"
4352
 
4353
- #: src/Tribe/Aggregator/Record/List_Table.php:413
4354
  msgid "Import failed"
4355
  msgstr "Importación fallida"
4356
 
4357
- #: src/Tribe/Aggregator/Record/List_Table.php:409
4358
  msgid "Import completed"
4359
  msgstr "Importación completada"
4360
 
@@ -4364,7 +4387,7 @@ msgstr "Ejecutar importación"
4364
 
4365
  #: src/Tribe/Aggregator/Record/List_Table.php:378
4366
  msgid "Start an import from this source now, regardless of schedule."
4367
- msgstr ""
4368
 
4369
  #: src/Tribe/Aggregator/Record/List_Table.php:333
4370
  msgctxt "column name"
@@ -4439,11 +4462,11 @@ msgstr "ICS"
4439
  msgid "Eventbrite"
4440
  msgstr "Eventbrite"
4441
 
4442
- #: src/Tribe/Aggregator/Record/Abstract.php:1148
4443
  msgid "Deleted Attachment: %d"
4444
  msgstr "Adjunto eliminado: %d"
4445
 
4446
- #: src/Tribe/Aggregator/Record/Abstract.php:496
4447
  msgid "Record: "
4448
  msgstr "Registro:"
4449
 
@@ -4454,8 +4477,8 @@ msgstr "Gestionar plugins activos"
4454
  #: src/Tribe/Aggregator/Page.php:412
4455
  msgid "It looks like you are using our legacy plugin, %1$s, along with our new Event Aggregator service. Event Aggregator includes all the features of the legacy plugin plus enhanced functionality. For best results, please deactivate %1$s."
4456
  msgid_plural "It looks like you are using our legacy plugins, %1$s and %2$s, along with our new Event Aggregator service. Event Aggregator includes all the features of the legacy plugins plus enhanced functionality. For best results, please deactivate %1$s and %2$s."
4457
- msgstr[0] ""
4458
- msgstr[1] ""
4459
 
4460
  #: src/Tribe/Aggregator/Page.php:102
4461
  msgid "Your preview is taking a bit longer than expected, but it <i>is</i> still being generated."
@@ -4478,7 +4501,7 @@ msgid "Hide Filters"
4478
  msgstr "Ocultar filtros"
4479
 
4480
  #: src/Tribe/Aggregator/Page.php:96
4481
- #: src/Tribe/Aggregator/Record/List_Table.php:485
4482
  msgid "View Filters"
4483
  msgstr "Ver filtros"
4484
 
@@ -4542,11 +4565,11 @@ msgstr "No tienes permisos para migrar los ajustes del importador de iCal a Even
4542
 
4543
  #: src/Tribe/Aggregator/Migrate.php:365
4544
  msgid "Error: we were not able to migrate your iCal Importer settings to Event Aggregator. Please try again later."
4545
- msgstr ""
4546
 
4547
  #: src/Tribe/Aggregator/Migrate.php:348
4548
  msgid "Success! The settings from Facebook Events have been migrated to Event Aggregator. You can view your migrated imports on the Scheduled Imports tab."
4549
- msgstr ""
4550
 
4551
  #: src/Tribe/Aggregator/Migrate.php:294
4552
  msgid "We did not find any Facebook Events settings to migrate."
@@ -4554,11 +4577,11 @@ msgstr "No encontramos ninguna configuración de eventos de Facebook para migrar
4554
 
4555
  #: src/Tribe/Aggregator/Migrate.php:287
4556
  msgid "You do not have permission to migrate Facebook Events settings to Event Aggregator"
4557
- msgstr ""
4558
 
4559
  #: src/Tribe/Aggregator/Migrate.php:280
4560
  msgid "Error: we were not able to migrate your Facebook Events settings to Event Aggregator. Please try again later."
4561
- msgstr ""
4562
 
4563
  #: src/Tribe/Aggregator/Migrate.php:80
4564
  msgid "Migrate iCal Importer settings"
@@ -4570,7 +4593,7 @@ msgstr "Migrar la configuración de los eventos de Facebook"
4570
 
4571
  #: src/Tribe/Aggregator/Migrate.php:73
4572
  msgid "Thanks for activating Event Aggregator! It looks like you have some settings and imports configured on our legacy importer plugins. To complete your transition, we need to transfer those options to our new system."
4573
- msgstr ""
4574
 
4575
  #: src/Tribe/Aggregator/Meta_Box.php:38
4576
  msgid "Imported Event"
@@ -4607,7 +4630,7 @@ msgstr "Es posible que haya un problema con el servidor de Event Aggregator. Por
4607
 
4608
  #: src/Tribe/Aggregator/Errors.php:64
4609
  msgid "You must enter an Event Aggregator license key in Events > Settings > Licenses before using this service."
4610
- msgstr ""
4611
 
4612
  #: src/Tribe/Aggregator/Errors.php:63
4613
  msgid "Unable to get a post of the correct type."
@@ -4639,7 +4662,7 @@ msgstr "Recibimos un Token de Facebook no válido del Servicio."
4639
 
4640
  #: src/Tribe/Aggregator/Errors.php:56
4641
  msgid "The Event Aggregator API responded with bad data. Please <a href=\"https://theeventscalendar.com/support/post/\" target=\"_blank\">contact support</a>."
4642
- msgstr ""
4643
 
4644
  #: src/Tribe/Aggregator/Errors.php:55
4645
  msgid "Unable to find an event with the ID of %s."
@@ -4679,7 +4702,7 @@ msgstr "Se alcanzó el límite diario de %d solicitudes de importación al servi
4679
 
4680
  #: src/Tribe/Aggregator/Errors.php:45
4681
  msgid "The image associated with your event could not be attached to the event."
4682
- msgstr ""
4683
 
4684
  #: src/Tribe/Aggregator/Cron.php:203
4685
  msgctxt "aggregator schedule frequency"
@@ -4747,19 +4770,19 @@ msgstr "Todo %s"
4747
 
4748
  #: common/src/admin-views/tribe-options-licenses.php:30
4749
  msgid "Not seeing an update but expecting one? In WordPress, go to %1$sDashboard > Updates%2$s and click \"Check Again\"."
4750
- msgstr ""
4751
 
4752
  #: common/src/admin-views/tribe-options-licenses.php:25
4753
  msgid "If you're seeing a red message telling you that your key isn't valid or is out of installs, visit %1$s to manage your installs or renew / upgrade your license."
4754
- msgstr ""
4755
 
4756
  #: common/src/admin-views/tribe-options-licenses.php:22
4757
  msgid "Each paid add-on has its own unique license key. Simply paste the key into its appropriate field below, and give it a moment to validate. You know you're set when a green expiration date appears alongside a \"valid\" message."
4758
- msgstr ""
4759
 
4760
  #: common/src/admin-views/tribe-options-licenses.php:15
4761
  msgid "The license key you received when completing your purchase from %1$s will grant you access to support and updates until it expires. You do not need to enter the key below for the plugins to work, but you will need to enter it to get automatic updates. %3$sFind your license keys at %2$s%4$s."
4762
- msgstr ""
4763
 
4764
  #: common/src/admin-views/tribe-options-licenses.php:11
4765
  #: common/src/admin-views/tribe-options-licenses.php:16
@@ -4772,7 +4795,7 @@ msgstr "Registro de eventos"
4772
 
4773
  #: common/src/admin-views/tribe-options-help.php:42
4774
  msgid "The details of your calendar plugin and settings is often needed for you or our staff to help troubleshoot an issue. Please opt-in below to automatically share your system information with our support team. This will allow us to assist you faster if you post in our help desk."
4775
- msgstr ""
4776
 
4777
  #: common/src/admin-views/app-shop.php:26
4778
  msgid "Buy This Add-On"
@@ -4804,7 +4827,7 @@ msgstr "Tecla inválida"
4804
 
4805
  #: common/src/Tribe/Support.php:306
4806
  msgid "Your system information will only be used by the Modern Tribe support team. All information is stored securely. We do not share this information with any third parties."
4807
- msgstr ""
4808
 
4809
  #: common/src/Tribe/Support.php:305
4810
  msgid "Yes, automatically share my system information with the Modern Tribe support team"
@@ -4818,14 +4841,14 @@ msgstr "%1$s y %2$s"
4818
  #: common/src/Tribe/PUE/Notices.php:302
4819
  msgid "You have a license key for %1$s but the key is out of installs. %2$sVisit the Events Calendar website%3$s to manage your installs, upgrade your license, or purchase a new one."
4820
  msgid_plural "You have license keys for %1$s but your keys are out of installs. %2$sVisit the Events Calendar website%3$s to manage your installs, upgrade your licenses, or purchase new ones."
4821
- msgstr[0] ""
4822
- msgstr[1] ""
4823
 
4824
  #: common/src/Tribe/PUE/Notices.php:270
4825
  msgid "There is an update available for %1$s but your license has expired. %2$sVisit the Events Calendar website to renew your license.%3$s"
4826
  msgid_plural "Updates are available for %1$s but your license keys have expired. %2$sVisit the Events Calendar website to renew your licenses.%3$s"
4827
- msgstr[0] ""
4828
- msgstr[1] ""
4829
 
4830
  #: common/src/Tribe/PUE/Checker.php:1054
4831
  msgid "There is an update for %s. %sRenew your license%s to get access to bug fixes, security updates, and new features."
@@ -4836,7 +4859,7 @@ msgid "There is an update for %s. You'll need to %scheck your license%s to have
4836
  msgstr "Hay una nueva actualización de %s. Necesitas %scomprobar tu licencia%s para tener acceso a actualizaciones, descargas y soporte."
4837
 
4838
  #: common/src/Tribe/PUE/Checker.php:961 common/src/Tribe/PUE/Notices.php:285
4839
- #: src/Tribe/Aggregator/Record/Abstract.php:1163
4840
  msgid " (opens in a new window)"
4841
  msgstr "(se abre en una nueva ventana)"
4842
 
@@ -4928,7 +4951,7 @@ msgstr "Importador de iCal"
4928
 
4929
  #: common/src/Tribe/Plugins_API.php:116
4930
  msgid "The Eventbrite Tickets add-on allows you to create & sell tickets through The Events Calendar using the power of %1$sEventbrite%2$s. Whether you’re creating your ticket on the WordPress dashboard or importing the details of an already-existing event from %1$sEventbrite.com%2$s, this add-on brings the power of the Eventbrite API to your calendar."
4931
- msgstr ""
4932
 
4933
  #: common/src/Tribe/Plugins_API.php:105
4934
  msgctxt "Names of required plugins for Community Tickets"
@@ -4937,15 +4960,15 @@ msgstr "Event Tickets Plus y eventos de la comunidad"
4937
 
4938
  #: common/src/Tribe/Plugins_API.php:104
4939
  msgid "Enable Community Events organizers to offer tickets to their events. You can set flexible payment and fee options. They can even check-in attendees to their events! All of this managed from the front-end of your site without ever needing to grant access to your admin"
4940
- msgstr ""
4941
 
4942
  #: common/src/Tribe/Plugins_API.php:48
4943
  msgid "The Events Calendar PRO is a paid Add-On to our open source WordPress plugin %1$sThe Events Calendar%2$s. PRO offers a whole host of calendar features including recurring events, custom event attributes, saved venues and organizers, venue pages, advanced event admin and lots more."
4944
- msgstr ""
4945
 
4946
  #: common/src/Tribe/Plugins_API.php:84
4947
  msgid "It is awesome that your calendar is <em>THE PLACE</em> to get hooked up with prime choice ways to spend time. You have more events than Jabba the Hutt has rolls. Too bad visitors are hiring a personal assistant to go through all the choices. Ever wish you could just filter the calendar to only show events in walking distance, on a weekend, that are free? BOOM. Now you can. Introducing… the Filter Bar."
4948
- msgstr ""
4949
 
4950
  #: common/src/Tribe/Admin/Help_Page.php:227 common/src/Tribe/Plugins_API.php:80
4951
  msgid "Filter Bar"
@@ -5137,7 +5160,7 @@ msgstr "Plantillas añadidas o actualizadas con esta versión (%s):"
5137
  msgid "No notable changes detected"
5138
  msgstr "No se han detectado cambios notables"
5139
 
5140
- #: src/Tribe/Main.php:2735
5141
  msgid " (View Full %1$s Description Here: %2$s)"
5142
  msgstr " (Ver descripción completa %1$s Descripción: %2$s)"
5143
 
@@ -5185,147 +5208,147 @@ msgstr "%s Nombre no puede estar vacio"
5185
  msgid "Keep the Core Plugin %sFREE%s!"
5186
  msgstr "¡Manten el núcleo del plugin %sGRATIS%s!"
5187
 
5188
- #: src/Tribe/Template_Factory.php:300
5189
  msgid "No results were found for %1$s in or near %2$s."
5190
  msgstr "No se encontraron resultados en %1$so cerca de %2$s."
5191
 
5192
- #: src/Tribe/Template_Factory.php:298
5193
  msgid "There were no results found for %s."
5194
  msgstr "No se encontraron resultados para %s."
5195
 
5196
- #: src/Tribe/Template/Month.php:456
5197
  msgid "There were no results found for %s this month. Try searching next month."
5198
  msgstr "No se encontraron resultados para %s este mes. Intenta buscando en el próximo mes."
5199
 
5200
- #: src/Tribe/Template/Day.php:153
5201
  msgid "No %1$s scheduled for %2$s. Please try another day."
5202
  msgstr "No existen %1$s programados el %2$s. Por favor busca otro día."
5203
 
5204
- #: src/Tribe/Main.php:4254
5205
  msgid "Check out the %savailable add-ons%s."
5206
  msgstr "Echa un vistazo a %sadd-ons disponibles%s."
5207
 
5208
- #: src/Tribe/Main.php:1923
5209
  msgid "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5210
  msgstr "Sin una ubicación definida, su evento no mostrará %sGoogle Rich Snippet%s en los resultados de búsqueda."
5211
 
5212
- #: src/Tribe/Main.php:1854 src/Tribe/Main.php:1874
5213
  msgid "%1$s scheduled for: %2$s."
5214
  msgstr "%1$s programado para: %2$s."
5215
 
5216
- #: src/Tribe/Main.php:1835
5217
  msgid "%1$s draft updated. %2$sPreview %3$s"
5218
  msgstr "%1$s borrador actualizado. %2$sPrevisualizar%3$s"
5219
 
5220
- #: src/Tribe/Main.php:1826
5221
  msgid "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5222
  msgstr "%1$s programado para: %2$s. %3$sPrevisualizar%4$s"
5223
 
5224
- #: src/Tribe/Main.php:1820
5225
  msgid "%1$s submitted. %2$sPreview %3$s"
5226
  msgstr "%1$s enviado. %2$sPrevisualizar%3$s"
5227
 
5228
- #: src/Tribe/Main.php:1802
5229
  msgid "%1$s updated. %2$sView %1$s%3$s"
5230
  msgstr "%1$s actualizado. %2$sVer%1$s%3$s"
5231
 
5232
- #: src/Tribe/Main.php:1477
5233
  msgid "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5234
  msgstr "¡Parece como si las bibliotecas comunes de tribu no pudieran ser encontradas! El directorio debe estar en el directorio \"común /\" en el plugin de calendario de eventos."
5235
 
5236
- #: src/Tribe/Main.php:1112
5237
  msgid "If you have a valid license for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5238
- msgstr ""
5239
 
5240
- #: src/Tribe/Main.php:1111
5241
  msgid "post a thread"
5242
  msgstr "publicar un hilo"
5243
 
5244
- #: src/Tribe/Main.php:1107
5245
  msgid "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays."
5246
- msgstr ""
5247
 
5248
- #: src/Tribe/Main.php:1103
5249
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5250
- msgstr ""
5251
 
5252
- #: src/Tribe/Main.php:1102
5253
  msgid "open-source forum on WordPress.org"
5254
  msgstr "foro open-source en WordPress.org"
5255
 
5256
- #: src/Tribe/Main.php:1098
5257
  msgid "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays"
5258
- msgstr ""
5259
 
5260
- #: src/Tribe/Main.php:1097 src/Tribe/Main.php:1105
5261
  msgid "premium support on our website"
5262
  msgstr "soporte premium en nuestro sitio web"
5263
 
5264
- #: src/Tribe/Main.php:1095
5265
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5266
- msgstr ""
5267
 
5268
- #: src/Tribe/Main.php:1094
5269
  msgid "Events Tickets"
5270
  msgstr "Entradas de eventos"
5271
 
5272
- #: src/Tribe/Main.php:1079
5273
  msgid "Customizing the Events plugins"
5274
  msgstr "Personalizar los complementos de eventos"
5275
 
5276
- #: src/Tribe/Main.php:1079
5277
  msgid "%s: Code and guides for customizing your calendar in useful and interesting ways."
5278
- msgstr ""
5279
 
5280
- #: src/Tribe/Main.php:1077
5281
  msgid "Troubleshooting common problems"
5282
  msgstr "Soluciones a problemas frecuentes"
5283
 
5284
- #: src/Tribe/Main.php:1077
5285
  msgid "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5286
  msgstr "%s: ¿Ves un problema con tu calendario? Ve aquí primero para encontrar de dónde viene y cómo solucionarlo."
5287
 
5288
- #: src/Tribe/Main.php:1075
5289
  msgid "Using stylesheets and page templates"
5290
  msgstr "Usando hojas de estilo y plantillas de página"
5291
 
5292
- #: src/Tribe/Main.php:1075
5293
  msgid "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5294
  msgstr "%s: una descripción general de las plantillas y estilos predeterminados que se incluyen en el complemento, así como también cómo cambiarlos."
5295
 
5296
- #: src/Tribe/Main.php:1073
5297
  msgid "Themer’s Guide"
5298
  msgstr "Guía del diseñador de temas"
5299
 
5300
- #: src/Tribe/Main.php:1073
5301
  msgid "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5302
- msgstr ""
5303
 
5304
- #: src/Tribe/Main.php:1071
5305
  msgid "Features overview"
5306
  msgstr "Descripción de las características"
5307
 
5308
- #: src/Tribe/Main.php:1071
5309
  msgid "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5310
  msgstr "%s: un vistazo completo a las características que puede esperar ver de inmediato y cómo usarlas."
5311
 
5312
- #: src/Tribe/Main.php:1069
5313
  msgid "Settings overview"
5314
  msgstr "Descripción general de configuración"
5315
 
5316
- #: src/Tribe/Main.php:1069
5317
  msgid "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5318
  msgstr "%s: un recorrido completo de The Events Calendar y la configuración que está disponible para usted."
5319
 
5320
- #: src/Tribe/Main.php:1066
5321
  msgid "Support for The Events Calendar"
5322
  msgstr "Soporte para The Events Calendar"
5323
 
5324
- #: src/Tribe/Main.php:1055
5325
  msgid "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5326
- msgstr ""
5327
 
5328
- #: src/Tribe/Main.php:1053
5329
  msgid "New User Primer"
5330
  msgstr "Nuevo manual de usuario"
5331
 
@@ -5348,7 +5371,7 @@ msgstr "Estado predeterminado para usar para eventos importados"
5348
  msgid "CSV Import Settings"
5349
  msgstr "Ajustes de importación de CSV"
5350
 
5351
- #: src/Tribe/Asset/Bootstrap_Datepicker.php:26
5352
  msgid "Clear"
5353
  msgstr "Limpiar"
5354
 
@@ -5360,7 +5383,7 @@ msgstr "Agregar otro %s"
5360
  msgid "Create New %s"
5361
  msgstr "Crear nuevo %s"
5362
 
5363
- #: src/Tribe/Organizer.php:371
5364
  msgid "Unnamed %s"
5365
  msgstr "Sin nombre %s"
5366
 
@@ -5374,7 +5397,7 @@ msgstr "Lea más acerca de nuestra política de soporte"
5374
 
5375
  #: common/src/admin-views/tribe-options-help.php:37
5376
  msgid "Please note that all hands-on support is provided via the help desk. You can email or tweet at us… ​but we will probably point you back to the help desk 😄"
5377
- msgstr ""
5378
 
5379
  #: common/src/admin-views/tribe-options-help.php:33
5380
  msgid "%s. There are very few issues we haven’t seen and it’s likely another user has already asked your question and gotten an answer from our support staff. While posting to the help desk is open only to paid customers, they are open for anyone to search and review."
@@ -5398,7 +5421,7 @@ msgstr "%s Todas las respuestas comunes (y no tan comunes) a las preguntas que v
5398
 
5399
  #: common/src/admin-views/tribe-options-help.php:27
5400
  msgid "While the resources above help solve a majority of the issues we see, there are times you might be looking for extra support. If you need assistance using our plugins and would like us to take a look, please follow these steps:"
5401
- msgstr ""
5402
 
5403
  #: common/src/admin-views/tribe-options-help.php:26
5404
  msgid "Getting More Help"
@@ -5422,11 +5445,11 @@ msgstr "Obtener soporte"
5422
 
5423
  #: common/src/admin-views/tribe-options-help.php:11
5424
  msgid "Thank you for using %s! All of us at Modern Tribe sincerely appreciate your support and we’re excited to see you using our plugins."
5425
- msgstr ""
5426
 
5427
  #: common/src/admin-views/tribe-options-general.php:15
5428
  msgid "Optimize your site's event listings with %1$sThe Events Calendar%2$s, our free calendar plugin. Looking for additional functionality including recurring events, user-submission, advanced ticket sales and more? Check out our %3$spremium add-ons%4$s."
5429
- msgstr ""
5430
 
5431
  #: common/src/admin-views/tribe-options-general.php:10
5432
  msgid "Thank you for using Event Tickets! All of us at Modern Tribe sincerely appreciate your support and we're excited to see you using our plugins. Check out our handy %1$sNew User Primer%2$s to get started."
@@ -5548,7 +5571,7 @@ msgstr "Cancelar"
5548
  msgid "%s must be a positive number or percent."
5549
  msgstr "%s debe ser un número o porcentaje positivo."
5550
 
5551
- #: src/Tribe/Main.php:1000
5552
  msgid "%1$s or %2$s"
5553
  msgstr "%1$s por %2$s"
5554
 
@@ -5605,7 +5628,7 @@ msgstr "Más información"
5605
  msgid "Day Navigation"
5606
  msgstr "Navegación por día"
5607
 
5608
- #: src/Tribe/Aggregator/Tabs/New.php:388
5609
  msgid "Import complete!"
5610
  msgstr "¡Importación completa!"
5611
 
@@ -5847,7 +5870,7 @@ msgid "More..."
5847
  msgstr "Más..."
5848
 
5849
  #: common/src/Tribe/Admin/Help_Page.php:194 common/src/Tribe/Plugins_API.php:43
5850
- #: src/Tribe/Main.php:1106
5851
  msgid "Events Calendar PRO"
5852
  msgstr "Events Calendar PRO"
5853
 
@@ -6286,7 +6309,7 @@ msgstr "URL:"
6286
  msgid "%s Website"
6287
  msgstr "Página Web %s"
6288
 
6289
- #: src/Tribe/Aggregator/Record/List_Table.php:502
6290
  msgid "Location:"
6291
  msgstr "Ubicación:"
6292
 
@@ -7691,15 +7714,15 @@ msgstr "Las plantillas reemplazadas se deben mover al subdirectorio correcto: tr
7691
  msgid "Template overrides should be moved to the correct subdirectory: %s"
7692
  msgstr "Las plantillas reemplazadas se deben mover al subdirectorio correcto: %s"
7693
 
7694
- #: src/Tribe/Template_Factory.php:306
7695
  msgid "No previous %s "
7696
  msgstr "No hay %s anteriores."
7697
 
7698
- #: src/Tribe/Template_Factory.php:304 src/Tribe/Template_Factory.php:309
7699
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7700
  msgstr "No hay %1$s en %2$s. Accede al calendario completo para ver una lista de %3$s."
7701
 
7702
- #: src/Tribe/Template_Factory.php:302
7703
  msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7704
  msgstr "No hay proximo %1$s listado en %2$s. Revisa los próximos %3$s en éste categoría o ver el calendario completo."
7705
 
@@ -7707,28 +7730,28 @@ msgstr "No hay proximo %1$s listado en %2$s. Revisa los próximos %3$s en éste
7707
  msgid "This %s has passed."
7708
  msgstr "Este %s ha pasado."
7709
 
7710
- #: src/Tribe/Template/Month.php:953
7711
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7712
  msgstr "La fecha \"%s\" no es válida &ndash; se muestra el mes actual en lugar de éste."
7713
 
7714
- #: src/Tribe/Template/Month.php:462 src/Tribe/Template_Factory.php:311
7715
  msgid "There were no results found."
7716
  msgstr "No se ha encontrado ningún resultado."
7717
 
7718
- #: src/Tribe/Template/Month.php:460
7719
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7720
  msgstr "No existe %1$s así listado en %2$s. Favor de intentar ver el calendario completo para ver todos los eventos."
7721
 
7722
- #: src/Tribe/Template/Day.php:151
7723
  msgid "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7724
  msgstr "No hay coincidencias %1$s listadas bajo %2$s programadas para %3$s. Por favor intente con otro día."
7725
 
7726
- #: src/Tribe/Template/Day.php:117 src/Tribe/Template/Day.php:133
7727
  msgid "Ongoing"
7728
  msgstr "En marcha"
7729
 
7730
- #: src/Tribe/Aggregator/Page.php:82 src/Tribe/Template/Day.php:114
7731
- #: src/Tribe/Template/Day.php:130
7732
  msgid "All Day"
7733
  msgstr "Todo el Día"
7734
 
@@ -7823,50 +7846,50 @@ msgstr "Clave de licencia"
7823
  msgid "Error"
7824
  msgstr "Error"
7825
 
7826
- #: src/Tribe/Main.php:4597
7827
  msgid "Once Every 30 Mins"
7828
  msgstr "Una vez cada 30 minutos"
7829
 
7830
- #: src/Tribe/Main.php:4517
7831
  msgid "Day Of"
7832
  msgstr "Día de"
7833
 
7834
- #: src/Tribe/Main.php:4515
7835
  msgid "%s From"
7836
  msgstr "%s Desde"
7837
 
7838
- #: src/Tribe/Main.php:4511
7839
  msgid "%s In"
7840
  msgstr "%s En"
7841
 
7842
- #: src/Tribe/Main.php:4506 src/Tribe/Main.php:4531
7843
  #: src/admin-views/aggregator/origins/refine.php:7
7844
  msgid "Date"
7845
  msgstr "Fecha"
7846
 
7847
- #: src/Tribe/Main.php:4433
7848
  msgid "Search"
7849
  msgstr "Buscar"
7850
 
7851
- #: src/Tribe/Main.php:4407 src/admin-views/aggregator/fields/schedule.php:44
7852
  #: src/admin-views/aggregator/fields/schedule.php:62
7853
  msgid "Day"
7854
  msgstr "Día"
7855
 
7856
- #: src/Tribe/Main.php:4390
7857
  msgid "Month"
7858
  msgstr "Mes"
7859
 
7860
- #: src/Tribe/Main.php:4372
7861
  msgid "List"
7862
  msgstr "Lista"
7863
 
7864
- #: src/Tribe/Main.php:4356
7865
  msgid "Calendar"
7866
  msgstr "Calendario"
7867
 
7868
  #: common/src/Tribe/Settings.php:254
7869
- #: src/Tribe/Admin/Bar/Default_Configurator.php:89 src/Tribe/Main.php:4355
7870
  msgid "Settings"
7871
  msgstr "Ajustes"
7872
 
@@ -7880,7 +7903,7 @@ msgstr "CSV"
7880
  msgid "Add %s"
7881
  msgstr "Añadir %s"
7882
 
7883
- #: src/Tribe/Admin/Bar/Default_Configurator.php:45 src/Tribe/Main.php:4306
7884
  msgid "View Calendar"
7885
  msgstr "Ver calendario"
7886
 
@@ -7888,53 +7911,53 @@ msgstr "Ver calendario"
7888
  msgid "%s"
7889
  msgstr "%s"
7890
 
7891
- #: src/Tribe/Main.php:4253
7892
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7893
  msgstr "¿Buscas funcionalidades adicionales, incluyendo eventos periódicos, venta de entradas, eventos añadidos por el público, vistas adicionales y más?"
7894
 
7895
- #: src/Tribe/Main.php:4248
7896
  msgid "Additional Functionality"
7897
  msgstr "Funcionalidad adicional"
7898
 
7899
- #: src/Tribe/Main.php:4203
7900
  msgid "News from Modern Tribe"
7901
  msgstr "Noticias de Modern Tribe"
7902
 
7903
- #: src/Tribe/Main.php:4183
7904
  msgid "View All Add-Ons"
7905
  msgstr "Ver todos los complementos (Add-Ons)"
7906
 
7907
- #: src/Tribe/Main.php:4180
7908
  msgid "Support"
7909
  msgstr "Soporte"
7910
 
7911
- #: src/Tribe/Main.php:3828 src/Tribe/Main.php:3841
7912
  msgid "%s Information"
7913
  msgstr "Información de %s"
7914
 
7915
- #: src/Tribe/Main.php:3819
7916
  msgid "%s Options"
7917
  msgstr "Opciones de %s"
7918
 
7919
- #: src/Tribe/Main.php:3742 src/Tribe/Main.php:3777
7920
  #: src/functions/template-tags/day.php:157
7921
  #: src/functions/template-tags/day.php:178
7922
  msgid "Date out of range."
7923
  msgstr "Fecha fuera de rango."
7924
 
7925
- #: src/Tribe/Main.php:2344
7926
  msgid "all"
7927
  msgstr "todos"
7928
 
7929
- #: src/Tribe/Main.php:2343 src/functions/template-tags/general.php:111
7930
  msgid "events"
7931
  msgstr "eventos"
7932
 
7933
- #: src/Tribe/Main.php:2342 src/functions/template-tags/general.php:79
7934
  msgid "event"
7935
  msgstr "evento"
7936
 
7937
- #: src/Tribe/Main.php:2341
7938
  msgid "page"
7939
  msgstr "página"
7940
 
@@ -7946,7 +7969,8 @@ msgstr "Red"
7946
  msgid "Done"
7947
  msgstr "Hecho"
7948
 
7949
- #: common/src/Tribe/Main.php:272 src/Tribe/Asset/Bootstrap_Datepicker.php:27
 
7950
  #: src/functions/template-tags/day.php:104
7951
  msgid "Today"
7952
  msgstr "Hoy"
@@ -7959,141 +7983,141 @@ msgstr "Anterior"
7959
  msgid "Next"
7960
  msgstr "Siguiente"
7961
 
7962
- #: src/Tribe/Linked_Posts.php:1010
7963
  msgid "No saved %s exists."
7964
  msgstr "No hay %s guardado."
7965
 
7966
- #: src/Tribe/Linked_Posts.php:840
7967
  msgid "Available %s"
7968
  msgstr " %s Disponibles"
7969
 
7970
- #: src/Tribe/Linked_Posts.php:836
7971
  msgid "My %s"
7972
  msgstr "Mis %s"
7973
 
7974
- #: src/Tribe/Main.php:1859 src/Tribe/Main.php:1879
7975
  msgid "%s draft updated."
7976
  msgstr "El borrador %s actualizado."
7977
 
7978
- #: src/Tribe/Main.php:1852 src/Tribe/Main.php:1872
7979
  msgid "%s submitted."
7980
  msgstr "%s enviado."
7981
 
7982
- #: src/Tribe/Main.php:1850 src/Tribe/Main.php:1870
7983
  msgid "%s published."
7984
  msgstr "%s publicado."
7985
 
7986
  #. translators: %s: date and time of the revision
7987
- #: src/Tribe/Main.php:1869
7988
  msgid "%s restored to revision from %s"
7989
  msgstr "%s restaurado a la revisión de %s"
7990
 
7991
  #. translators: Publish box date format, see http://php.net/date
7992
- #: src/Tribe/Main.php:1829 src/Tribe/Main.php:1857 src/Tribe/Main.php:1877
7993
  msgid "M j, Y @ G:i"
7994
  msgstr "M j, Y ··· G:i"
7995
 
7996
- #: src/Tribe/Main.php:1818 src/Tribe/Main.php:1851 src/Tribe/Main.php:1871
7997
  msgid "%s saved."
7998
  msgstr "%s guardado."
7999
 
8000
  #. translators: %s: date and time of the revision
8001
- #: src/Tribe/Main.php:1811 src/Tribe/Main.php:1849
8002
  msgid "%1$s restored to revision from %2$s"
8003
  msgstr "%1$s restaurada a revisión de %2$s"
8004
 
8005
- #: src/Tribe/Main.php:1809 src/Tribe/Main.php:1844 src/Tribe/Main.php:1847
8006
- #: src/Tribe/Main.php:1864 src/Tribe/Main.php:1867
8007
  msgid "%s updated."
8008
  msgstr "%s actualizado."
8009
 
8010
- #: src/Tribe/Main.php:1808 src/Tribe/Main.php:1846 src/Tribe/Main.php:1866
8011
  msgid "Custom field deleted."
8012
  msgstr "Campo personalizado borrado."
8013
 
8014
- #: src/Tribe/Main.php:1807 src/Tribe/Main.php:1845 src/Tribe/Main.php:1865
8015
  msgid "Custom field updated."
8016
  msgstr "Campo personalizado actualizado."
8017
 
8018
- #: src/Tribe/Main.php:1785
8019
  msgid "New %s Category Name"
8020
  msgstr "Nombre de nueva categoría de %s"
8021
 
8022
- #: src/Tribe/Main.php:1784
8023
  msgid "Add New %s Category"
8024
  msgstr "Añadir nueva categoría de %s"
8025
 
8026
- #: src/Tribe/Main.php:1783
8027
  msgid "Update %s Category"
8028
  msgstr "Actualizar categoría de %s"
8029
 
8030
- #: src/Tribe/Main.php:1782
8031
  msgid "Edit %s Category"
8032
  msgstr "Editar categoría de %s"
8033
 
8034
- #: src/Tribe/Main.php:1781
8035
  msgid "Parent %s Category:"
8036
  msgstr "Categoría superior de %s:"
8037
 
8038
- #: src/Tribe/Main.php:1780
8039
  msgid "Parent %s Category"
8040
  msgstr "Categoría superior de %s"
8041
 
8042
- #: src/Tribe/Main.php:1779
8043
  msgid "All %s Categories"
8044
  msgstr "Todas las categorías de %s"
8045
 
8046
- #: src/Tribe/Main.php:1778
8047
  msgid "Search %s Categories"
8048
  msgstr "Buscar categorías de %s"
8049
 
8050
- #: src/Tribe/Main.php:1777
8051
  msgid "%s Category"
8052
  msgstr "Categoría de %s"
8053
 
8054
- #: src/Tribe/Main.php:1767 src/Tribe/Organizer.php:98 src/Tribe/Venue.php:117
8055
  msgid "No %s found in Trash"
8056
  msgstr "No hay %s en la papelera"
8057
 
8058
- #: src/Tribe/Main.php:1766 src/Tribe/Organizer.php:97 src/Tribe/Venue.php:116
8059
  msgid "No %s found"
8060
  msgstr "No se encontraron %s"
8061
 
8062
- #: src/Tribe/Main.php:1765 src/Tribe/Organizer.php:96 src/Tribe/Venue.php:115
8063
  msgid "Search %s"
8064
  msgstr "Buscar %s "
8065
 
8066
- #: src/Tribe/Main.php:1764 src/Tribe/Organizer.php:95 src/Tribe/Venue.php:114
8067
  #: src/views/month/single-day.php:26
8068
  msgid "View %s"
8069
  msgstr "Mostrar %s"
8070
 
8071
- #: src/Tribe/Main.php:1763 src/Tribe/Organizer.php:94 src/Tribe/Venue.php:113
8072
  msgid "New %s"
8073
  msgstr "Nueva %s"
8074
 
8075
- #: src/Tribe/Main.php:1761 src/Tribe/Main.php:1893 src/Tribe/Main.php:1894
8076
  #: src/Tribe/Organizer.php:92 src/Tribe/Venue.php:111
8077
  msgid "Add New %s"
8078
  msgstr "Agregar nuevo %s"
8079
 
8080
- #: src/Tribe/Main.php:1760 src/Tribe/Organizer.php:91 src/Tribe/Venue.php:110
8081
  msgid "Add New"
8082
  msgstr "Agregar nuevo"
8083
 
8084
- #: src/Tribe/Main.php:1727 src/Tribe/Main.php:2339
8085
  msgid "tag"
8086
  msgstr "etiqueta"
8087
 
8088
- #: src/Tribe/Main.php:1713 src/Tribe/Main.php:2340
8089
  msgid "category"
8090
  msgstr "categoria"
8091
 
8092
- #: src/Tribe/Main.php:1465
8093
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8094
  msgstr "Lo sentimos, The Events Calendar requiere PHP %s o superior. Hable con su proveedor de Hospedaje Web para actualizar a una versión mas reciente de PHP"
8095
 
8096
- #: src/Tribe/Main.php:1462
8097
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8098
  msgstr "Lo sentimos, The Events Calendar requiere Wordpress %s o superior. Por favor, actualice su instalación de Wordpress."
8099
 
@@ -8111,72 +8135,72 @@ msgstr "Ayuda"
8111
  msgid "Display"
8112
  msgstr "Visualización"
8113
 
8114
- #: src/Tribe/Main.php:1309
8115
  msgid "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8116
  msgstr "Los siguientes complementos están desactualizados: %1$s. Todos los complementos contienen dependencias en el Calendario de eventos y no funcionarán correctamente a menos que estén emparejados con la versión correcta. %2$sMás información%3$s."
8117
 
8118
- #: src/Tribe/Main.php:1297
8119
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8120
  msgstr "Su versión de The Events Calendar no se encuentra actualizada con uno de sus add-ons. Por favor, %sactualicela.%s"
8121
 
8122
- #: src/Tribe/Main.php:788
8123
  msgid "Initializing Tribe Events on %s"
8124
  msgstr "Iniciando Tribe Events en %s"
8125
 
8126
- #: src/Tribe/Main.php:763
8127
  msgid "today"
8128
  msgstr "hoy"
8129
 
8130
- #: src/Tribe/Main.php:762
8131
  msgid "day"
8132
  msgstr "día"
8133
 
8134
- #: src/Tribe/Main.php:761
8135
  msgid "past"
8136
  msgstr "pasados"
8137
 
8138
- #: src/Tribe/Main.php:760
8139
  msgid "upcoming"
8140
  msgstr "próximos"
8141
 
8142
- #: src/Tribe/Main.php:759
8143
  msgid "list"
8144
  msgstr "lista"
8145
 
8146
- #: src/Tribe/Main.php:758
8147
  msgid "month"
8148
  msgstr "mes"
8149
 
8150
- #. #-#-#-#-# the-events-calendar-code.pot (The Events Calendar 4.6.20.1)
8151
  #. #-#-#-#-#
8152
  #. Plugin Name of the plugin/theme
8153
  #: common/src/Tribe/Admin/Help_Page.php:59 common/src/Tribe/Customizer.php:569
8154
- #: common/src/Tribe/Plugins_API.php:25 src/Tribe/Main.php:751
8155
- #: src/Tribe/Main.php:1093 src/Tribe/Privacy.php:29
8156
  #: src/functions/template-tags/general.php:1345
8157
  msgid "The Events Calendar"
8158
  msgstr "The Events Calendar"
8159
 
8160
- #: src/Tribe/Main.php:1163 src/admin-views/aggregator/tabs/import-form.php:185
8161
  #: src/admin-views/aggregator/tabs/import-form.php:197
8162
  #: src/functions/template-tags/general.php:63
8163
  msgid "Event"
8164
  msgstr "Evento"
8165
 
8166
  #: common/src/Tribe/Settings.php:177 common/src/Tribe/Settings.php:241
8167
- #: common/src/Tribe/Settings.php:242 src/Tribe/Main.php:1155
8168
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:207
8169
  #: src/functions/template-tags/general.php:95
8170
  msgid "Events"
8171
  msgstr "Eventos"
8172
 
8173
- #: src/Tribe/Organizer.php:157 src/functions/template-tags/organizer.php:115
8174
  msgid "Organizer"
8175
  msgstr "Organizador"
8176
 
8177
  #: src/Tribe/Organizer.php:171
8178
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:206
8179
- #: src/functions/template-tags/organizer.php:126
8180
  msgid "Organizers"
8181
  msgstr "Organizadores"
8182
 
@@ -8440,7 +8464,7 @@ msgstr "Fecha:"
8440
  msgid "End:"
8441
  msgstr "Finaliza:"
8442
 
8443
- #: src/Tribe/Aggregator/Record/List_Table.php:498
8444
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
8445
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
8446
  #: src/views/modules/meta/details.php:66 src/views/modules/meta/details.php:91
@@ -8459,7 +8483,7 @@ msgstr "Fecha de fin"
8459
  msgid "Start Date"
8460
  msgstr "Fecha inicio"
8461
 
8462
- #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1776
8463
  msgid "%s Categories"
8464
  msgstr "Categorías de %s"
8465
 
@@ -8470,7 +8494,7 @@ msgstr "Un problema impidió que terminara el proceso de actualización de zona
8470
  #: src/Tribe/Admin/Timezone_Updater.php:87
8471
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
8472
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:100
8473
- #: src/Tribe/Aggregator/Record/Queue_Realtime.php:203
8474
  msgid "%d%% complete"
8475
  msgstr "%d%% completo"
8476
 
@@ -8483,21 +8507,21 @@ msgid "Please wait while time zone data is added to your events."
8483
  msgstr "Espera mientras que se le añade la información de zona horaria tus eventos."
8484
 
8485
  #: src/Tribe/Admin/Bar/Default_Configurator.php:62
8486
- #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:211 src/Tribe/Main.php:1762
8487
- #: src/Tribe/Main.php:4862 src/Tribe/Main.php:4909 src/Tribe/Organizer.php:93
8488
  #: src/Tribe/Venue.php:112
8489
  msgid "Edit %s"
8490
  msgstr "Editar %s"
8491
 
8492
- #: src/Tribe/Main.php:4846 src/Tribe/Main.php:4903
8493
  msgid "Use Saved %s:"
8494
  msgstr "Utilizar %s guardado: "
8495
 
8496
- #: src/Tribe/Main.php:992
8497
  msgid " ask the site administrator set a different Events URL slug."
8498
  msgstr " Solicitar al administrador del sitio a establecer un diferente slug para el URL de Eventos."
8499
 
8500
- #: src/Tribe/Main.php:986
8501
  msgid "Ask the site administrator to edit the %s slug"
8502
  msgstr "Pide al administrador del sitio que edite el slug de %s"
8503
 
@@ -8505,7 +8529,7 @@ msgstr "Pide al administrador del sitio que edite el slug de %s"
8505
  msgid "Thanks for Updating The Events Calendar"
8506
  msgstr "Gracias por actualizar The Events Calendar"
8507
 
8508
- #: src/Tribe/Main.php:846 src/Tribe/Main.php:848
8509
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
8510
  msgid "Welcome to The Events Calendar"
8511
  msgstr "Bienvenido a The Events Calendar"
2
  # This file is distributed under the same license as the Plugins - The Events Calendar - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2018-09-03 19:15:09+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
11
  "Language: es\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
14
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:337
15
+ msgid "The event tag ID or name"
16
+ msgstr "El ID o nombre de la etiqueta del evento"
17
+
18
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:331
19
+ msgid "The event category ID or name"
20
+ msgstr "El id o nombre de la categoría del evento"
21
+
22
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:508
23
+ msgid "Events should be filtered by their post_parent being the specified one."
24
+ msgstr "Los eventos deben filtrarse por tener el post_parent especificado."
25
+
26
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:498
27
+ msgid "Include events with one of the post IDs specified in the array of CSV list, date filters will be ignored."
28
+ msgstr "Incluir eventos con uno de los IDs de publicación especificados en el array de la lista CSV, los filtros de fecha serán ignorados."
29
+
30
+ #: src/Tribe/Aggregator/Record/Async_Queue.php:348
31
+ #: src/Tribe/Aggregator/Record/Void_Queue.php:122
32
+ msgid "Unable to process this import - a breakage or conflict may have resulted in the import halting."
33
+ msgstr "No se ha podido procesar esta importación - la parada de la importación puede haber producido un fallo o un conflicto."
34
+
35
+ #: common/src/Tribe/Plugins_API.php:37
36
+ msgid "Event Aggregator adds massive import functionality to your calendar. Before you know it, you’ll be importing events from Meetup, Eventbrite, Google Calendar, iCalendar, and other URLs with ease. Schedule imports to run automatically behind-the-scenes or run them manually when you’re ready. Go ahead and import to your heart’s content—Event Aggregator hooks you up with a central dashboard in the admin to make managing your imports a breeze."
37
+ msgstr "Event Aggregator añade funcionalidad de importación masiva a tu calendario. Antes de que te des cuenta estarás importando calendarios de Meetup, Eventbrite, Google Calendar, iCalendar y otras URLs con facilidad. Programa las importaciones para que se ejecuten cuando quieras—Event Aggregator te conecta con un panel central en el escritorio para hacer que la gestión de importaciones sea un suspiro."
38
+
39
  #: src/views/month/single-day.php:57
40
  msgid "%s for %s"
41
  msgstr "%s del %s"
208
  msgid "Do more with Eventbrite Tickets"
209
  msgstr "Haz más con Eventbrite Tickets"
210
 
211
+ #: src/Tribe/Main.php:4114
212
  msgid "Search for %s by month. Please use the format %s."
213
  msgstr "Buscar %s por mes. Por favor, usa el formato %s."
214
 
215
+ #: src/Tribe/Main.php:4109
216
  msgid "Search for %s by Date. Please use the format %s."
217
  msgstr "Buscar %s por fecha. Por favor, usa el formato %s."
218
 
219
+ #: src/Tribe/Main.php:4077 src/Tribe/Main.php:4078
220
  msgid "2 digit month dot 4 digit year"
221
  msgstr "mes de 2 cifras punto año de 4 cifras"
222
 
223
+ #: src/Tribe/Main.php:4076
224
  msgid "4 digit year dot 2 digit month"
225
  msgstr "año de 4 cifras punto mes de 2 cifras"
226
 
227
+ #: src/Tribe/Main.php:4075
228
  msgid "2 digit month hyphen 4 digit year"
229
  msgstr "mes de 2 cifras guión año de 4 cifras"
230
 
231
+ #: src/Tribe/Main.php:4072 src/Tribe/Main.php:4073 src/Tribe/Main.php:4074
232
  msgid "1 digit month hyphen 4 digit year"
233
  msgstr "mes de 1 cifra guión año de 4 cifras"
234
 
235
+ #: src/Tribe/Main.php:4069 src/Tribe/Main.php:4071
236
  msgid "2 digit month slash 4 digit year"
237
  msgstr "mes de 2 cifras barra año de 4 cifras"
238
 
239
+ #: src/Tribe/Main.php:4068 src/Tribe/Main.php:4070
240
  msgid "1 digit month slash 4 digit year"
241
  msgstr "mes de 1 cifra barra año de 4 cifras"
242
 
243
+ #: src/Tribe/Main.php:4067
244
  msgid "4 digit year hyphen 2 digit month"
245
  msgstr "año de 4 cifras guión mes de 2 cifras"
246
 
247
+ #: src/Tribe/Main.php:4063
248
  msgid "2 digit day dot 2 digit month dot 4 digit year"
249
  msgstr "día de 2 cifras punto mes de 2 cifras punto año de 4 cifras"
250
 
251
+ #: src/Tribe/Main.php:4062
252
  msgid "2 digit month dot 2 digit day dot 4 digit year"
253
  msgstr "mes de 2 cifras punto día de 2 cifras punto año de 4 cifras"
254
 
255
+ #: src/Tribe/Main.php:4061
256
  msgid "4 digit year dot 2 digit month dot 2 digit day"
257
  msgstr "año de 4 cifras punto mes de 2 cifras punto día de 2 cifras"
258
 
259
+ #: src/Tribe/Main.php:4060
260
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
261
  msgstr "día de 2 cifras guión mes de 2 cifras guión año de 4 cifras"
262
 
263
+ #: src/Tribe/Main.php:4059
264
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
265
  msgstr "día de 1 cifra guión mes de 1 cifra guión año de 4 cifras"
266
 
267
+ #: src/Tribe/Main.php:4058
268
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
269
  msgstr "mes de 1 cifra guión día de 2 cifras guión año de 4 cifras"
270
 
271
+ #: src/Tribe/Main.php:4057
272
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
273
  msgstr "mes de 1 cifra guión día de 1 cifra guión año de 4 cifras"
274
 
275
+ #: src/Tribe/Main.php:4056
276
  msgid "2 digit day slash 2 digit month slash 4 digit year"
277
  msgstr "día de 2 cifras barra mes de 2 cifras barra año de 4 cifras"
278
 
279
+ #: src/Tribe/Main.php:4055
280
  msgid "1 digit day slash 1 digit month slash 4 digit year"
281
  msgstr "día de 1 cifra barra mes de 1 cifra barra año de 4 cifras"
282
 
283
+ #: src/Tribe/Main.php:4054
284
  msgid "2 digit month slash 2 digit day slash 4 digit year"
285
  msgstr "mes de 2 cifras barra día de 2 cifras barra año de 4 cifras\t"
286
 
287
+ #: src/Tribe/Main.php:4053
288
  msgid "1 digit month slash 1 digit day slash 4 digit year"
289
  msgstr "mes de 1 cifra barra día de 1 cifra barra año de 4 cifras"
290
 
291
+ #: src/Tribe/Main.php:4052
292
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
293
  msgstr "año de 4 cifras barra mes de 2 cifras barra días de dos cifras"
294
 
295
+ #: src/Tribe/Main.php:4031
296
  msgid "Search for %s by Keyword."
297
  msgstr "Buscar %s por palabra clave."
298
 
432
 
433
  #: src/admin-views/aggregator/origins/eventbrite.php:8
434
  msgid "One-time imports include all currently listed events, while scheduled imports automatically grab new events and updates from Eventbrite on a set schedule. Single events can be added via a one-time import."
435
+ msgstr "Las importaciones únicas incluyen todos los los eventos mostrados, mientras que las importaciones programadas recuperan los eventos nuevos de Eventbrite según una programación establecida. Los eventos individuales pueden añadirse mediante importaciones únicas."
436
 
437
  #: src/Tribe/Aggregator/Tabs/Abstract.php:190
438
  msgid "Please provide a Eventbrite URL when importing from Eventbrite."
520
  msgstr "Busca en nuestro servicio de ayuda"
521
 
522
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
523
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:385
524
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
525
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
526
  msgid "The requested page was not found."
534
  msgid "one week"
535
  msgstr "una semana"
536
 
537
+ #: src/Tribe/Aggregator/Record/List_Table.php:577
538
  msgctxt "when the retry will happen, a date"
539
  msgid "retrying at %s"
540
  msgstr "reintentándolo el %s"
541
 
542
+ #: src/Tribe/Aggregator/Record/List_Table.php:574
543
  msgctxt "in human readable time"
544
  msgid "retrying in about %s"
545
  msgstr "reintentándolo aproximadamente en %s"
621
  msgstr "Página %s principal"
622
 
623
  #: common/src/Tribe/Plugins_API.php:71
624
+ msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Guest check in is easy with QR codes and our custom scanning app."
625
  msgstr "Event Tickets Plus te permite vender tickets de tus eventos usando WooCommerce, Easy Digital Downloads o nuestra herramienta Tribe Commerce. Añade tickets en tus entradas, páginas o en %1$sThe Events Calendar%2$s y vende entradas de tu listado de eventos. Crea formularios de registro, gestiona asistentes, con opciones de personalización y mucho más... Los tickets tienen códigos QR para gestionar rápidamente el acceso"
626
 
627
  #: src/admin-views/tribe-options-general.php:31
653
  msgid "The event with the specified ID is not accessible."
654
  msgstr "No se puede acceder al evento con el ID especificado."
655
 
656
+ #: src/Tribe/Main.php:1812
657
  msgid "%1$s published. %2$sView %3$s"
658
  msgstr "%1$s publicado. %2$sVer %3$s"
659
 
1004
  msgid "the event post name"
1005
  msgstr "Nombre de la entrada del evento"
1006
 
1007
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:354
1008
  msgid "The event organizer IDs or data"
1009
  msgstr "ID o data del organizador del evento"
1010
 
1011
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:346
1012
  msgid "The event venue ID or data"
1013
  msgstr "El ID o data del lugar del evento"
1014
 
1251
  msgid "Returns all the organizers matching the search criteria"
1252
  msgstr "Muestra todos los organizadores que coinciden con el criterio de búsqueda"
1253
 
1254
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:494
1255
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1256
  msgstr "Events Calendar Pro es necesario. Los eventos se filtran por la longitud de la localización del lugar, se debe proporcionar geoloc_lat"
1257
 
1258
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:488
1259
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1260
  msgstr "Requiere de Events Calendar Pro. Los eventos se deberían filtrar por latitud, y deberían proveer geoloc_lng"
1261
 
1262
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:482
1263
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1264
  msgstr "Necesita Events Calendar Pro. Se puede filtrar los eventos según tengan información de ubicación o no."
1265
 
1266
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:477
1267
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1268
  msgid "The event post status"
1269
  msgstr "Estado del evento"
1270
 
1271
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:470
1272
  msgid "Events should be filtered by their featured status"
1273
  msgstr "Lo Eventos se filtran por si están destacados o no"
1274
 
1275
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:462
1276
  msgid "Events should be assigned one of the specified organizer IDs"
1277
  msgstr "Se deben asignar a los eventos la ID de un organizador específico"
1278
 
1279
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1280
  msgid "Events should be assigned one of the specified venue IDs"
1281
  msgstr "Se deben asignar a los eventos la ID de un lugar "
1282
 
1370
  msgid "The event status"
1371
  msgstr "Estado del evento"
1372
 
1373
+ #: src/Tribe/Linked_Posts.php:1254
1374
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1375
  msgid "Create or Find %s"
1376
  msgstr "Crear o buscar %s"
1377
 
1378
+ #: src/Tribe/Linked_Posts.php:1245
1379
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1380
  msgid "Find %1$s %2$s"
1381
  msgstr "Encontrar %1$s %2$s"
1382
 
1383
+ #: src/Tribe/Linked_Posts.php:1236
1384
  msgid "Find a Venue"
1385
  msgstr "Encontrar un local"
1386
 
1387
+ #: src/Tribe/Linked_Posts.php:1235
1388
  msgid "Create or Find a Venue"
1389
  msgstr "Crear o buscar una ubicación"
1390
 
1391
+ #: src/Tribe/Linked_Posts.php:1228
1392
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1393
  msgid "Create or Find %s"
1394
  msgstr "Crear o buscar %s"
1395
 
1396
+ #: src/Tribe/Linked_Posts.php:1219
1397
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1398
  msgid "Find %1$s %2$s"
1399
  msgstr "Encontrar %1$s %2$s"
1400
 
1401
+ #: src/Tribe/Linked_Posts.php:1208
1402
  msgid "Find an Organizer"
1403
  msgstr "Encontrar un organizador"
1404
 
1405
+ #: src/Tribe/Linked_Posts.php:1207
1406
  msgid "Create or Find an Organizer"
1407
  msgstr "Crear o buscar un organizador"
1408
 
1409
+ #: src/Tribe/Linked_Posts.php:1200
1410
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1411
  msgid "Create or Find %s"
1412
  msgstr "Crear o buscar %s"
1413
 
1414
+ #: src/Tribe/Linked_Posts.php:1191
1415
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1416
  msgid "Find %1$s %2$s"
1417
  msgstr "Encontrar %1$s %2$s"
1439
  #: src/Tribe/Aggregator/Service.php:708
1440
  msgctxt "The placeholder is for the localized version of the iCal UID specification link"
1441
  msgid "Some events at the requested source are missing the UID attribute required by the iCalendar Specification. One-Time and ICS File imports are allowed but successive imports will create duplicated events on your site. Please contact the source provider to fix the UID issue; linking them to %s may help them more quickly resolve their feed's UID issue."
1442
+ msgstr "Algunos eventos del origen solicitado no tienen el atributo UID requerido en la especificación de iCalendar. Se pueden hacer importaciones de una vez y de ficheros ICS, pero las impotaciones sucesivas crearían eventos sucesivos en tu sitio. Contacta con el proveedor del origen para que arregle el problema del UID; darles un enlace a %s puede ayudarles."
1443
 
1444
  #: src/Tribe/Aggregator/Service.php:700
1445
  msgctxt "The placeholder is for the localized version of the iCal UID specification link"
1446
  msgid "Some events at the requested source are missing the UID attribute required by the iCalendar Specification. Creating a scheduled import would generate duplicate events on each import. Instead, please use a One-Time import or contact the source provider to fix the UID issue; linking them to %s may help them more quickly resolve their feed's UID issue."
1447
+ msgstr "Algunos eventos de la fuente solicitada no disponen del atributo UID requerido por la especificación de iCalendar. Crear una importación programada podría generar eventos duplicados en cada importación. En su lugar, por favor, utiliza una importación manual o contacta con el proveedor de la fuente para solucionar el problema de la UID; enlazarles a %s puede ayudarles a resolver más rápidamente su problema con el UID del feed. "
1448
 
1449
  #: src/Tribe/Aggregator/Service.php:668
1450
  msgid "the UID part of the iCalendar Specification"
1464
 
1465
  #: common/src/admin-views/tribe-options-display.php:28
1466
  msgid "The following three fields accept the date format options available to the PHP %1$s function. <a href=\"%2$s\" target=\"_blank\">Learn how to make your own date format here</a>."
1467
+ msgstr "Los siguientes tres campos aceptan las opciones de formato de fecha disponibles para la función PHP %1$s. <a href=\"%2$s\" target=\"_blank\">Aprende aquí cómo hacer tu propio formato de fecha</a>."
1468
 
1469
  #: common/src/Tribe/Validate.php:545
1470
  msgid "%s must be an email address."
1500
 
1501
  #: common/src/Tribe/Documentation/Swagger/Term_Definition_Provider.php:57
1502
  msgid "A list of links to the term own, archive and parent REST URL"
1503
+ msgstr "Una lista de enlaces a las URLs REST del evento, su archivo y su padre"
1504
 
1505
  #: src/admin-views/create-organizer-fields.php:19
1506
  #: src/admin-views/organizer-meta-box.php:45
1507
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1508
  msgstr "La dirección de correo electrónico será ocultada para evitar que cualquiera pueda enviarte correo no deseado (spam)."
1509
 
1510
+ #: src/Tribe/Main.php:996
1511
  msgid "edit Events settings."
1512
  msgstr "editar ajustes del evento."
1513
 
1514
+ #: src/Tribe/Main.php:987
1515
  msgid "Edit the %s slug"
1516
  msgstr "Editar el %s slug"
1517
 
1518
+ #: src/Tribe/Linked_Posts.php:1177
1519
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1520
  msgid "an"
1521
  msgstr "un"
1522
 
1523
+ #: src/Tribe/Linked_Posts.php:1170
1524
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1525
  msgid "a"
1526
  msgstr "un"
1562
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1563
  msgstr "La respuesta del servidor Event Aggregator se creó mal y no se pudo comprender. Por favor, inténtalo de nuevo."
1564
 
 
 
 
 
1565
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1566
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1567
  msgstr "The Events Calendar no puede escribir en el fichero de configuración por defecto de WPML: por favor, crea uno manualmente."
1606
  msgid "The event WordPress post ID"
1607
  msgstr "ID de publicación de WordPress del evento"
1608
 
1609
+ #: src/Tribe/Aggregator/Record/Abstract.php:363
1610
  msgid "Something went wrong while inserting the record in the database."
1611
  msgstr "Algo salió mal mientras se guardaba el registro en la base de datos."
1612
 
1624
  msgid "Please refresh the page and try your request again."
1625
  msgstr "Por favor recargue la página y vuelva a intentarlo."
1626
 
1627
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:29
1628
  msgid "The image WordPress post ID"
1629
  msgstr "ID de publicación de WordPress de la imagen"
1630
 
1684
  msgid "The event last modification date in UTC time"
1685
  msgstr "Última modificación del evento en hora UTC"
1686
 
1687
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:419
1688
  msgid "Events should start after the specified date"
1689
  msgstr "Los eventos deben comenzar después de la fecha especificada"
1690
 
1691
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:426
1692
  msgid "Events should start before the specified date"
1693
  msgstr "Los eventos deben comenzar antes de la fecha especificada"
1694
 
1724
  msgid "the event post ID"
1725
  msgstr "ID de publicación del evento"
1726
 
1727
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:432
1728
  msgid "Events should contain the specified string in the title or description"
1729
  msgstr "Los eventos deben contener la cadena especificada en el título o en la descripción"
1730
 
2020
  msgstr "La URL solicitada no contiene eventos próximos ni publicados que coincidan con los criterios de búsqueda."
2021
 
2022
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2023
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:404
2024
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2025
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2026
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2027
  msgid "The archive page to return"
2028
  msgstr "La página de archivo a devolver"
2029
 
2030
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:412
2031
  msgid "The number of events to return on each page"
2032
  msgstr "El número de eventos a devolver en cada página"
2033
 
2034
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
2035
  msgid "Events should be assigned one of the specified categories slugs or IDs"
2036
  msgstr "Los eventos deben ser asignados a uno de los slugs o IDs de las categorías especificadas"
2037
 
2038
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:446
2039
  msgid "Events should be assigned one of the specified tags slugs or IDs"
2040
  msgstr "Los eventos deben ser asignados a uno de los slugs o IDs de las etiquetas especificadas"
2041
 
2042
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:374
2043
  msgid "Returns all the upcoming events matching the search criteria"
2044
  msgstr "Devuelve todos los próximos eventos que coinciden con los criterios de búsqueda"
2045
 
2046
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:36
2047
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:382
2048
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:64
2049
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:53
2050
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:61
2259
  msgid "three months"
2260
  msgstr "tres meses"
2261
 
2262
+ #: src/Tribe/Aggregator/Tabs/New.php:385
2263
  msgid "%1$d new event tag was created."
2264
  msgid_plural "%1$d new event tags were created."
2265
  msgstr[0] "%1$d nueva etiqueta de evento se ha creado."
2266
  msgstr[1] "%1$d nuevas etiquetas de evento se han creado."
2267
 
2268
+ #: src/Tribe/Aggregator/Tabs/New.php:389
2269
  msgid "View your event tags"
2270
  msgstr "Ver tus etiquetas de evento"
2271
 
2324
  msgid "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2325
  msgstr "Cambiar los 3 eventos por defecto por día en la vista de mes. Para no limitarlo, puedes especificar -1. Ten en cuenta que puede haber problemas de rendimiento si permite demasiados eventos por día. <a href=\"%s\"> Leer más </a>."
2326
 
2327
+ #: src/Tribe/Main.php:763
2328
  msgctxt "all events slug"
2329
  msgid "all"
2330
  msgstr "Todo"
2365
  msgid "The WordPress term ID"
2366
  msgstr "El ID del término de WordPress"
2367
 
2368
+ #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:37
2369
  msgid "The link to the image in the specified size on the site"
2370
  msgstr "El enlace a la imagen en el tamaño especificado en el sitio"
2371
 
2381
  msgid "The image width in pixels in the specified size"
2382
  msgstr "Anchura de la imagen en píxeles en el tamaño especificado"
2383
 
2384
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:45
2385
  msgid "The details about each size available for the image"
2386
  msgstr "Detalles sobre cada tamaño disponible para la imagen"
2387
 
2388
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:41
2389
  msgid "The image natural height in pixels"
2390
  msgstr "Altura original de la imagen en píxeles"
2391
 
2392
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:37
2393
  msgid "The image natural width in pixels"
2394
  msgstr "Anchura original de la imagen en píxeles"
2395
 
2396
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:33
2397
  msgid "The image file extension"
2398
  msgstr "Extensión de archivo de la imagen"
2399
 
2401
  msgid "The venue WordPress post ID"
2402
  msgstr "ID de publicación de WordPress del lugar"
2403
 
2404
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:25
2405
  msgid "The URL to the full size version of the image"
2406
  msgstr "URL de la versión de tamaño completo de la imagen"
2407
 
2441
  msgid "The cost currency symbol"
2442
  msgstr "Símbolo de la moneda"
2443
 
2444
+ #: src/Tribe/Main.php:4035
2445
  msgid "Keyword"
2446
  msgstr "Palabra clave"
2447
 
2516
  msgid "Export Events"
2517
  msgstr "Exportar Eventos"
2518
 
2519
+ #: src/Tribe/Main.php:762
2520
  msgctxt "featured events slug"
2521
  msgid "featured"
2522
  msgstr "destacado"
2523
 
2524
+ #: src/Tribe/Linked_Posts.php:1133
2525
  msgid "Create: <b><%= term %></b>"
2526
  msgstr "Crear: <b><%= term %></b>"
2527
 
2670
  msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2671
  msgstr "Las opciones seleccionadas aquí anulan las que fueron seleccionadas en las secciones \"Temas Generales\" y \"Elementos Globales\""
2672
 
2673
+ #: src/Tribe/Assets.php:685 src/deprecated/Tribe__Events__Asset__Dynamic.php:77
2674
  msgid "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2675
  msgstr "Este evento dura todo el día empezando desde %%startdatenoyear%% y terminando el %%enddatewithyear%%."
2676
 
2677
+ #: src/Tribe/Assets.php:684 src/deprecated/Tribe__Events__Asset__Dynamic.php:76
2678
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2679
  msgstr "Este evento comienza a las %%starttime%% el %%startdatenoyear%% y termina el %%enddatewithyear%%."
2680
 
2681
+ #: src/Tribe/Assets.php:683 src/deprecated/Tribe__Events__Asset__Dynamic.php:75
2682
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2683
  msgstr "Este evento empieza a las %startime% el %%startdatenoyear%% y finaliza a las %%endtime%% el %%enddatewithyear%%"
2684
 
2685
+ #: src/Tribe/Assets.php:682 src/deprecated/Tribe__Events__Asset__Dynamic.php:74
2686
  msgid "This event is all day on %%startdatewithyear%%."
2687
  msgstr "Evento de día completo el %%startdatewithyear%%."
2688
 
2689
+ #: src/Tribe/Assets.php:681 src/deprecated/Tribe__Events__Asset__Dynamic.php:73
2690
  msgid "This event is at %%starttime%% on %%startdatewithyear%%."
2691
  msgstr "Este evento es a las %%starttime%% el %%startdatewithyear%%"
2692
 
2693
+ #: src/Tribe/Assets.php:680 src/deprecated/Tribe__Events__Asset__Dynamic.php:72
2694
  msgid "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2695
  msgstr "Este evento es desde %%starttime%% hasta las %%endtime%% el %%startdatewithyear%%."
2696
 
2697
+ #: src/Tribe/Assets.php:677 src/deprecated/Tribe__Events__Asset__Dynamic.php:69
2698
  msgid "Dec"
2699
  msgstr "Dic"
2700
 
2701
+ #: src/Tribe/Assets.php:676 src/deprecated/Tribe__Events__Asset__Dynamic.php:68
2702
  msgid "Nov"
2703
  msgstr "Nov"
2704
 
2705
+ #: src/Tribe/Assets.php:675 src/deprecated/Tribe__Events__Asset__Dynamic.php:67
2706
  msgid "Oct"
2707
  msgstr "Oct"
2708
 
2709
+ #: src/Tribe/Assets.php:674 src/deprecated/Tribe__Events__Asset__Dynamic.php:66
2710
  msgid "Sep"
2711
  msgstr "Sep"
2712
 
2713
+ #: src/Tribe/Assets.php:673 src/deprecated/Tribe__Events__Asset__Dynamic.php:65
2714
  msgid "Aug"
2715
  msgstr "Ago"
2716
 
2717
+ #: src/Tribe/Assets.php:672 src/deprecated/Tribe__Events__Asset__Dynamic.php:64
2718
  msgid "Jul"
2719
  msgstr "Jul"
2720
 
2721
+ #: src/Tribe/Assets.php:671 src/deprecated/Tribe__Events__Asset__Dynamic.php:63
2722
  msgid "Jun"
2723
  msgstr "Jun"
2724
 
2725
+ #: src/Tribe/Assets.php:669 src/deprecated/Tribe__Events__Asset__Dynamic.php:61
2726
  msgid "Apr"
2727
  msgstr "Abr"
2728
 
2729
+ #: src/Tribe/Assets.php:668 src/deprecated/Tribe__Events__Asset__Dynamic.php:60
2730
  msgid "Mar"
2731
  msgstr "Mar"
2732
 
2733
+ #: src/Tribe/Assets.php:667 src/deprecated/Tribe__Events__Asset__Dynamic.php:59
2734
  msgid "Feb"
2735
  msgstr "Feb"
2736
 
2737
+ #: src/Tribe/Assets.php:666 src/deprecated/Tribe__Events__Asset__Dynamic.php:58
2738
  msgid "Jan"
2739
  msgstr "Ene"
2740
 
2741
+ #: src/Tribe/Assets.php:663 src/deprecated/Tribe__Events__Asset__Dynamic.php:55
2742
  msgid "December"
2743
  msgstr "Diciembre"
2744
 
2745
+ #: src/Tribe/Assets.php:662 src/deprecated/Tribe__Events__Asset__Dynamic.php:54
2746
  msgid "November"
2747
  msgstr "Noviembre"
2748
 
2749
+ #: src/Tribe/Assets.php:661 src/deprecated/Tribe__Events__Asset__Dynamic.php:53
2750
  msgid "October"
2751
  msgstr "Octubre"
2752
 
2753
+ #: src/Tribe/Assets.php:660 src/deprecated/Tribe__Events__Asset__Dynamic.php:52
2754
  msgid "September"
2755
  msgstr "Septiembre"
2756
 
2757
+ #: src/Tribe/Assets.php:659 src/deprecated/Tribe__Events__Asset__Dynamic.php:51
2758
  msgid "August"
2759
  msgstr "Agosto"
2760
 
2761
+ #: src/Tribe/Assets.php:658 src/deprecated/Tribe__Events__Asset__Dynamic.php:50
2762
  msgid "July"
2763
  msgstr "Julio"
2764
 
2765
+ #: src/Tribe/Assets.php:657 src/deprecated/Tribe__Events__Asset__Dynamic.php:49
2766
  msgid "June"
2767
  msgstr "Junio"
2768
 
2769
+ #: src/Tribe/Assets.php:656 src/Tribe/Assets.php:670
2770
+ #: src/deprecated/Tribe__Events__Asset__Dynamic.php:48
2771
+ #: src/deprecated/Tribe__Events__Asset__Dynamic.php:62
2772
  msgid "May"
2773
  msgstr "Mayo"
2774
 
2775
+ #: src/Tribe/Assets.php:655 src/deprecated/Tribe__Events__Asset__Dynamic.php:47
2776
  msgid "April"
2777
  msgstr "Abril"
2778
 
2779
+ #: src/Tribe/Assets.php:654 src/deprecated/Tribe__Events__Asset__Dynamic.php:46
2780
  msgid "March"
2781
  msgstr "Marzo"
2782
 
2783
+ #: src/Tribe/Assets.php:653 src/deprecated/Tribe__Events__Asset__Dynamic.php:45
2784
  msgid "February"
2785
  msgstr "Febrero"
2786
 
2787
+ #: src/Tribe/Assets.php:652 src/deprecated/Tribe__Events__Asset__Dynamic.php:44
2788
  msgid "January"
2789
  msgstr "Enero"
2790
 
2791
+ #: src/Tribe/Assets.php:649 src/deprecated/Tribe__Events__Asset__Dynamic.php:41
2792
  msgid "Sat"
2793
  msgstr "Sab"
2794
 
2795
+ #: src/Tribe/Assets.php:648 src/deprecated/Tribe__Events__Asset__Dynamic.php:40
2796
  msgid "Fri"
2797
  msgstr "Vier"
2798
 
2799
+ #: src/Tribe/Assets.php:647 src/deprecated/Tribe__Events__Asset__Dynamic.php:39
2800
  msgid "Thu"
2801
  msgstr "Jue"
2802
 
2803
+ #: src/Tribe/Assets.php:646 src/deprecated/Tribe__Events__Asset__Dynamic.php:38
2804
  msgid "Wed"
2805
  msgstr "Mier"
2806
 
2807
+ #: src/Tribe/Assets.php:645 src/deprecated/Tribe__Events__Asset__Dynamic.php:37
2808
  msgid "Tue"
2809
  msgstr "Mar"
2810
 
2811
+ #: src/Tribe/Assets.php:644 src/deprecated/Tribe__Events__Asset__Dynamic.php:36
2812
  msgid "Mon"
2813
  msgstr "Lun"
2814
 
2815
+ #: src/Tribe/Assets.php:643 src/deprecated/Tribe__Events__Asset__Dynamic.php:35
2816
  msgid "Sun"
2817
  msgstr "Dom"
2818
 
2819
+ #: src/Tribe/Assets.php:640 src/deprecated/Tribe__Events__Asset__Dynamic.php:32
2820
  msgid "Saturday"
2821
  msgstr "Sábado"
2822
 
2823
+ #: src/Tribe/Assets.php:639 src/deprecated/Tribe__Events__Asset__Dynamic.php:31
2824
  msgid "Friday"
2825
  msgstr "Viernes"
2826
 
2827
+ #: src/Tribe/Assets.php:638 src/deprecated/Tribe__Events__Asset__Dynamic.php:30
2828
  msgid "Thursday"
2829
  msgstr "Jueves"
2830
 
2831
+ #: src/Tribe/Assets.php:637 src/deprecated/Tribe__Events__Asset__Dynamic.php:29
2832
  msgid "Wednesday"
2833
  msgstr "Miércoles"
2834
 
2835
+ #: src/Tribe/Assets.php:636 src/deprecated/Tribe__Events__Asset__Dynamic.php:28
2836
  msgid "Tuesday"
2837
  msgstr "Martes"
2838
 
2839
+ #: src/Tribe/Assets.php:635 src/deprecated/Tribe__Events__Asset__Dynamic.php:27
2840
  msgid "Monday"
2841
  msgstr "Lunes"
2842
 
2843
+ #: src/Tribe/Assets.php:634 src/deprecated/Tribe__Events__Asset__Dynamic.php:26
2844
  msgid "Sunday"
2845
  msgstr "Domingo"
2846
 
2921
  msgid "Unknown service message"
2922
  msgstr "Mensaje de servicio desconocido"
2923
 
2924
+ #: src/Tribe/Aggregator/Record/List_Table.php:540
2925
  msgid "Unknown"
2926
  msgstr "Desconocido"
2927
 
2928
+ #: src/Tribe/Aggregator/Record/Abstract.php:1206
2929
  msgid "When this import was last scheduled to run, the daily limit for your Event Aggregator license had already been reached."
2930
  msgstr "Cuando se programó por última vez la ejecución de esta importación, ya se había alcanzado el límite diario para su licencia del Agregador de eventos."
2931
 
3031
 
3032
  #: src/admin-views/aggregator/tabs/import-form.php:160
3033
  msgid "This is a preview of the type of content you will be getting in during the import based on what is on the calendar now."
3034
+ msgstr "Esta es una vista previa del tipo de contenido que obtendrás durente la importación basada en lo que hay en el calendario ahora."
3035
 
3036
  #: src/admin-views/aggregator/tabs/import-form.php:149
3037
  msgid "When you save this scheduled import, the events above will begin importing."
3039
 
3040
  #: src/admin-views/aggregator/tabs/import-form.php:147
3041
  msgid "Select the Event Field that best matches your CSV file column. The contents of that column will then be mapped to the specified event field when the event is created."
3042
+ msgstr "Elige el campo de evento que mejor se asjuste a la columna del archivo CSV. Los contenidos de esa columna serán mapeados al campo específco del evento cuando se cree el evento."
3043
 
3044
  #: src/admin-views/aggregator/tabs/import-form.php:145
3045
  msgid "These settings will also apply to events imported in the future via this scheduled import."
3047
 
3048
  #: src/admin-views/aggregator/tabs/import-form.php:144
3049
  msgid "Choose a status for the event(s) to be imported with and/or define an Event Category to automatically assign. An assigned category will be added to the event in addition to any Event Categories from the import source."
3050
+ msgstr "Elige un estado para el/los evento(s) a importar y/o define una categoría de evento que asignarle automáticamente. Se añadirá una categoría asignada al evento además de cualquier categoría de evento de la fuente de importación."
3051
 
3052
  #: src/admin-views/aggregator/tabs/import-form.php:104
3053
  msgid "Access more event sources and automatic imports!"
3220
 
3221
  #: src/admin-views/aggregator/settings.php:684
3222
  msgid "Use the options below to configure your imports. Global Import Settings apply to all imports, but you can also override the global settings by adjusting the origin-specific options. Check your Event Aggregator Service Status on the %1$s."
3223
+ msgstr "Utiliza la siguiente opción para configurar tus importaciones. Los ajuste globales de importación se aplican a todas las importaciones, pero puedes sobreescribir los ajustes globales ajustando las opciones específicas de cada origen. Comprueba el estado de tu servicio Event Aggregator en el %1$s."
3224
 
3225
  #: src/admin-views/aggregator/settings.php:419
3226
  msgid "The default event category for events imported via Meetup"
3362
 
3363
  #: src/admin-views/aggregator/settings.php:49
3364
  msgid "You can make changes to imported events via The Events Calendar and see those changes reflected on your site’s calendar. The owner of the original event source (e.g. the iCalendar feed or Facebook group) might also make changes to their event. If you choose to re-import an altered event (manually or via a scheduled import), any changes made at the source or on your calendar will need to be addressed."
3365
+ msgstr "Puedes hacer cambios a los eventos importados mediante The Events Calendar y ver esos cambios reflejados en el calendario de tu sitio. El propietario de la fuente original del evento (ej. el feed de iCalendar o el Grupo de Facebook) también pueden hacer cambios a su evento. Si decides reimportar un evento modificado (manualmente o mediante una importación programada), tendrás que encargarte de los cambios hechos en el origen o en tu calendario."
3366
 
3367
  #: src/admin-views/aggregator/settings.php:44
3368
  #: src/admin-views/aggregator/settings.php:54
3432
 
3433
  #: src/admin-views/aggregator/origins/meetup.php:32
3434
  msgid "Enter your Meetup API key to import Meetup events. %1$sClick here to get your Meetup API key%2$s. You only need to do this once, it will be saved under %3$sEvents &gt; Settings &gt; APIs%4$s"
3435
+ msgstr "Escribe tu clave del API de Meetup para importar eventos de Meetup. %1$sHaz clic aquí para conseguir tu clave de API de Meetup%2$s. Solo tienes que hacerlo una vez, se guardará en %3$sEventos &gt; Ajustes &gt; APIs%4$s"
3436
 
3437
  #: src/admin-views/aggregator/origins/meetup.php:7
3438
  msgid "One-time imports include all currently listed events, while scheduled imports automatically grab new events and updates from Meetup on a set schedule. Single events can be added via a one-time import."
3464
 
3465
  #: src/admin-views/aggregator/origins/gcal.php:88
3466
  msgid "Scroll down to Calendar Address and click the iCal button (note: if your calendar is private, you'll need to click the iCal button next to the Private Address header instead)."
3467
+ msgstr "Desplázate hacia abajo hasta Dirección del calendario y haz click en el botón de iCal (aviso: si tu calendario es privado tendrás que hacer clic en el botón de iCal que hay junto a la cabecera de Dirección privada)."
3468
 
3469
  #: src/admin-views/aggregator/origins/gcal.php:87
3470
  msgid "Go to Settings &gt; Calendars and select the calendar you wish to import."
3662
  msgid "mi"
3663
  msgstr "mil"
3664
 
3665
+ #: src/Tribe/Main.php:982
3666
  msgid "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3667
+ msgstr "La %3$s \"%1$s\" utiliza el slug \"/%2$s\": el plugin Events Calendar mostrará su calendario en vez de la página."
3668
 
3669
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:77
3670
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:78
3671
  msgid "Legacy Import"
3672
+ msgstr "Importar lo heredado"
3673
 
3674
  #: src/Tribe/Ignored_Events.php:926
3675
  msgid "Migration: %d Legacy Ignored Post was migrated successfully. To see the migrated event you will first need to refresh this screen."
3676
  msgid_plural "Migration: %d Legacy Ignored Posts were migrated successfully. To see the migrated events you will first need to refresh this screen."
3677
+ msgstr[0] "MIgración: %d publicación legada ignorada ha sido migrada correctamente. Tienes que recargas esta pantalla para ver el evento migrado."
3678
+ msgstr[1] "MIgración: %d publicaciones legadas ignoradas han sido migradas correctamente. Tienes que recargas esta pantalla para ver los eventos migrados."
3679
 
3680
  #: src/Tribe/Ignored_Events.php:919
3681
  msgid "Event %d: %s"
3690
  #: src/Tribe/Ignored_Events.php:895
3691
  msgid "Migration: %d Legacy Ignored Post was migrated but %d failed. To see the migrated event you will first need to refresh this screen."
3692
  msgid_plural "Migration: %d Legacy Ignored Posts were migrated but %d failed. To see the migrated events you will first need to refresh this screen."
3693
+ msgstr[0] "MIgración: %d publicación legada ignorada ha sido migrada pero %d han fallado. Tienes que recargas esta pantalla para ver el evento migrado."
3694
+ msgstr[1] "MIgración: %d publicaciones legadas ignoradas han sido migradas pero %d han fallado. Tienes que recargas esta pantalla para ver los eventos migrados."
3695
 
3696
  #: src/Tribe/Ignored_Events.php:871
3697
  msgid "There were no Legacy Events to be Migrated, you are ready to rock!"
3829
 
3830
  #: src/Tribe/Aggregator.php:438
3831
  msgid "Your Event Aggregator Facebook token will expire %s."
3832
+ msgstr "Tu token de Facebook de Event Aggregator caduca el %s."
3833
 
3834
  #: src/Tribe/Aggregator.php:436
3835
  msgid "Your Event Aggregator Facebook token expired %s."
3837
 
3838
  #: src/Tribe/Aggregator.php:388
3839
  msgid "Successfully connected Event Aggregator to Facebook"
3840
+ msgstr "Event Aggregator conectado a Facebook correctamente"
3841
 
3842
  #: src/Tribe/Aggregator.php:358
3843
  msgid "You must use an integer to reduce the daily import limit"
3887
  msgid "Scheduled Imports"
3888
  msgstr "Importaciones programadas"
3889
 
3890
+ #: src/Tribe/Aggregator/Tabs/New.php:615
3891
  msgid "Renew your Event Aggregator license"
3892
  msgstr "Renueva tu licencia de Event Aggregator"
3893
 
3894
+ #: src/Tribe/Aggregator/Tabs/New.php:612
3895
  msgid "Renew your license in order to import events from Facebook, iCalendar, Google, or Meetup."
3896
  msgstr "Renueve su licencia para importar eventos de Facebook, iCalendar, Google o Meetup."
3897
 
3898
+ #: src/Tribe/Aggregator/Tabs/New.php:611
3899
  msgid "Your Event Aggregator license is expired."
3900
  msgstr "Tu licencia de Event Aggregator ha finalizado."
3901
 
3902
+ #: src/Tribe/Aggregator/Tabs/New.php:563
3903
  msgid "Learn More"
3904
  msgstr "Aprender más"
3905
 
3906
+ #: src/Tribe/Aggregator/Tabs/New.php:558 src/Tribe/Aggregator/Tabs/New.php:565
3907
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:19
3908
  msgid "opens in a new window"
3909
  msgstr "se abre en una nueva ventana"
3910
 
3911
+ #: src/Tribe/Aggregator/Tabs/New.php:556
3912
  msgid "Buy It Now"
3913
  msgstr "Comprar ahora"
3914
 
3915
+ #: src/Tribe/Aggregator/Tabs/New.php:553
3916
  msgid "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3917
  msgstr "Con Event Aggregator, puedes importar eventos desde Facebook, iCalendar, Google, y Meetup.com en un santiamén."
3918
 
3919
+ #: src/Tribe/Aggregator/Tabs/New.php:551
3920
  msgid "Import Using Event Aggregator"
3921
  msgstr "Importa usando Event Aggregator "
3922
 
3923
+ #: src/Tribe/Aggregator/Tabs/New.php:464
3924
  msgid "Unable to save credentials"
3925
  msgstr "No se pueden guardar las credenciales"
3926
 
3927
+ #: src/Tribe/Aggregator/Tabs/New.php:457
3928
  msgid "Credentials have been saved"
3929
  msgstr "Las credenciales se han guardado"
3930
 
3931
+ #: src/Tribe/Aggregator/Tabs/New.php:448
3932
  msgid "The Meetup API key is required."
3933
  msgstr "Es necesaria la clave de API de Meetup."
3934
 
3935
+ #: src/Tribe/Aggregator/Tabs/New.php:439
3936
  msgid "Invalid credential save nonce"
3937
+ msgstr "Nonce de guardado de contraseña no válido"
3938
 
3939
+ #: src/Tribe/Aggregator/Tabs/New.php:429
3940
  msgid "Invalid credential save request"
3941
  msgstr "Solicitud de guardado de credenciales no válida"
3942
 
3943
+ #: src/Tribe/Aggregator/Tabs/New.php:417
3944
  msgid "View your scheduled imports."
3945
  msgstr "Ver tus importaciones programadas"
3946
 
3947
+ #: src/Tribe/Aggregator/Tabs/New.php:413
3948
  msgid "The next import is scheduled for %1$s."
3949
  msgstr "La siguiente importación está programada para %1$s."
3950
 
3951
+ #: src/Tribe/Aggregator/Tabs/New.php:406
3952
  msgctxt "separator between date and time"
3953
  msgid " at "
3954
  msgstr "a las"
3955
 
3956
+ #: src/Tribe/Aggregator/Tabs/New.php:402
3957
  msgid "Your scheduled import was saved and the first import is complete!"
3958
  msgstr "La importación programada se guardó y la primera importación se completó."
3959
 
3960
+ #: src/Tribe/Aggregator/Tabs/New.php:377
3961
  msgid "View your event categories"
3962
  msgstr "Ver sus categorías de eventos"
3963
 
3964
+ #: src/Tribe/Aggregator/Tabs/New.php:373
3965
  msgid "%1$d new event category was created."
3966
  msgid_plural "%1$d new event categories were created."
3967
  msgstr[0] "%1$d nueva categoría de evento fue creada."
3968
  msgstr[1] "%1$d nuevas categorías de eventos fueron creadas."
3969
 
3970
+ #: src/Tribe/Aggregator/Tabs/New.php:364
3971
  msgid "View your event organizers"
3972
  msgstr "Ver los organizadores de su evento"
3973
 
3974
+ #: src/Tribe/Aggregator/Tabs/New.php:360
3975
  msgid "%1$d new organizer was imported."
3976
  msgid_plural "%1$d new organizers were imported."
3977
  msgstr[0] "%1$d nuevo organizador fue importado."
3978
  msgstr[1] "%1$d nuevos organizadores fueron importados."
3979
 
3980
+ #: src/Tribe/Aggregator/Tabs/New.php:352
3981
  msgid "View your event venues"
3982
  msgstr "Ver los recintos de los eventos"
3983
 
3984
+ #: src/Tribe/Aggregator/Tabs/New.php:348
3985
  msgid "%1$d new venue was imported."
3986
  msgid_plural "%1$d new venues were imported."
3987
  msgstr[0] "Se importó %1$d recinto nuevo."
3988
  msgstr[1] "Se importaron %1$d recintos nuevos."
3989
 
3990
+ #: src/Tribe/Aggregator/Tabs/New.php:338
3991
  msgid "View all %s"
3992
  msgstr "Ver todo %s"
3993
 
3994
+ #: src/Tribe/Aggregator/Tabs/New.php:330
3995
  msgid "No %1$s were imported or updated."
3996
  msgstr "No %1$s fueron importados o actualizados."
3997
 
3998
+ #: src/Tribe/Aggregator/Tabs/New.php:323
3999
  msgid "%1$d new image was imported."
4000
  msgid_plural "%1$d new images were imported."
4001
  msgstr[0] "%1$d nueva imagen fue importada."
4002
  msgstr[1] "%1$d nuevas imagenes fueron importadas."
4003
 
4004
+ #: src/Tribe/Aggregator/Tabs/New.php:314
4005
  msgid "%1$d already-imported %2$s was skipped."
4006
  msgid_plural "%1$d already-imported %2$s were skipped."
4007
  msgstr[0] "%1$d ya importado %2$s fue omitido."
4008
  msgstr[1] "%1$d ya importados %2$s fueron omitidos."
4009
 
4010
+ #: src/Tribe/Aggregator/Tabs/New.php:303
4011
  msgid "%1$d existing %2$s was updated."
4012
  msgid_plural "%1$d existing %2$s were updated."
4013
+ msgstr[0] "%1$d %2$s existente fue actualizado."
4014
+ msgstr[1] "%1$d %2$s existentes fueron actualizados."
4015
 
4016
+ #: src/Tribe/Aggregator/Tabs/New.php:291
4017
  msgid "%1$d new %2$s was imported."
4018
  msgid_plural "%1$d new %2$s were imported."
4019
  msgstr[0] "Se importó %1$d nuevo %2$s."
4146
 
4147
  #: src/Tribe/Aggregator/Service.php:674
4148
  msgid "Events cannot be imported because Facebook has returned an error. This could mean that the event ID does not exist, the event or source is marked as Private, or the event or source has been otherwise restricted by Facebook. You can <a href=\"https://theeventscalendar.com/knowledgebase/import-errors/\" target=\"_blank\">read more about Facebook restrictions in our knowledgebase</a>."
4149
+ msgstr "No se han podido importar los eventos porque Facebook ha devuelto un error. Esto puede querer decir que el ID de evento no existe, que el evento o el origen han sido marcados como privados, o que el evento o el origen han sido restringidos de alguna manera por Facebook. Puedes <a href=\"https://theeventscalendar.com/knowledgebase/import-errors/\" target=\"_blank\">leer más sobre las restricciones de Facebook</a> en nuestra base de conocimientos</a>."
4150
 
4151
  #: src/Tribe/Aggregator/Service.php:672
4152
  msgid "Sorry, but something went wrong. Please try again."
4277
  msgid "Events Aggregator Record"
4278
  msgstr "Registros de eventos de Aggregator"
4279
 
4280
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:183
4281
  msgid "Unable to continue inserting data. Please reload this page to continue/try again."
4282
+ msgstr "Imposible seguir insertando datos. Recarga esta página pata continuar/reintentarlo."
4283
 
4284
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:97
4285
  msgid "Skipped:"
4295
 
4296
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:91
4297
  msgid "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4298
+ msgstr "Tu importación está en progreso. No te preocupes puedes ir a otra página, la importación seguirá en segundo plano."
4299
 
4300
+ #: src/Tribe/Aggregator/Record/Queue_Processor.php:233
4301
  msgid "Could not process queue for Import Record %1$d: %2$s"
4302
  msgstr "No se pudo procesar la cola para Importar registro %1$d: %2$s"
4303
 
4304
+ #: src/Tribe/Aggregator/Record/List_Table.php:664
4305
  msgid "Select %s"
4306
  msgstr "Seleccionar %s"
4307
 
4308
+ #: src/Tribe/Aggregator/Record/List_Table.php:629
4309
+ #: src/Tribe/Aggregator/Record/List_Table.php:638
4310
+ #: src/Tribe/Aggregator/Record/List_Table.php:646
4311
  msgid "updated"
4312
  msgstr "Actualizado"
4313
 
4314
+ #: src/Tribe/Aggregator/Record/List_Table.php:627
4315
+ #: src/Tribe/Aggregator/Record/List_Table.php:635
4316
+ #: src/Tribe/Aggregator/Record/List_Table.php:643
4317
  msgid "new"
4318
  msgstr "nuevo"
4319
 
4320
+ #: src/Tribe/Aggregator/Record/List_Table.php:624
4321
  msgid "Latest Import:"
4322
  msgstr "Última importación:"
4323
 
4324
+ #: src/Tribe/Aggregator/Record/List_Table.php:622
4325
  msgid "all time"
4326
  msgstr "todo el tiempo"
4327
 
4328
+ #: src/Tribe/Aggregator/Record/List_Table.php:596
4329
  msgid "One Time"
4330
  msgstr "Una vez"
4331
 
4332
+ #: src/Tribe/Aggregator/Record/List_Table.php:593
4333
  msgid "Invalid Frequency"
4334
  msgstr "Frecuencia no válida"
4335
 
4336
+ #: src/Tribe/Aggregator/Record/List_Table.php:563 src/Tribe/Aggregator.php:426
4337
  #: src/Tribe/Ignored_Events.php:357
4338
  #: src/admin-views/tribe-options-addons-api.php:36
4339
  msgctxt "in human readable time"
4340
  msgid "in about %s"
4341
  msgstr "en unos %s"
4342
 
4343
+ #: src/Tribe/Aggregator/Record/List_Table.php:561 src/Tribe/Aggregator.php:424
4344
  #: src/Tribe/Ignored_Events.php:355
4345
  #: src/admin-views/tribe-options-addons-api.php:34
4346
  msgctxt "human readable time ago"
4347
  msgid "about %s ago"
4348
  msgstr "hace unas %s"
4349
 
4350
+ #: src/Tribe/Aggregator/Record/List_Table.php:513
4351
  msgid "Radius:"
4352
  msgstr "Radio:"
4353
 
4354
+ #: src/Tribe/Aggregator/Record/List_Table.php:496
4355
  msgid "Keywords:"
4356
  msgstr "Palabras clave:"
4357
 
4358
+ #: src/Tribe/Aggregator/Record/List_Table.php:483
4359
  #: src/Tribe/Ignored_Events.php:337
4360
  msgctxt "record via origin"
4361
  msgid "via "
4362
  msgstr "a través de"
4363
 
4364
+ #: src/Tribe/Aggregator/Record/List_Table.php:440
4365
  msgid "Import preview"
4366
  msgstr "Previsualización de la importación"
4367
 
4368
+ #: src/Tribe/Aggregator/Record/List_Table.php:436
4369
  msgid "Import pending"
4370
  msgstr "Importación pendiente"
4371
 
4372
+ #: src/Tribe/Aggregator/Record/List_Table.php:432
4373
  msgid "Import schedule"
4374
  msgstr "Calendario de importación"
4375
 
4376
+ #: src/Tribe/Aggregator/Record/List_Table.php:420
4377
  msgid "Import failed"
4378
  msgstr "Importación fallida"
4379
 
4380
+ #: src/Tribe/Aggregator/Record/List_Table.php:416
4381
  msgid "Import completed"
4382
  msgstr "Importación completada"
4383
 
4387
 
4388
  #: src/Tribe/Aggregator/Record/List_Table.php:378
4389
  msgid "Start an import from this source now, regardless of schedule."
4390
+ msgstr "Comienza la importación de la fuente ahora, sin importar su programación."
4391
 
4392
  #: src/Tribe/Aggregator/Record/List_Table.php:333
4393
  msgctxt "column name"
4462
  msgid "Eventbrite"
4463
  msgstr "Eventbrite"
4464
 
4465
+ #: src/Tribe/Aggregator/Record/Abstract.php:1149
4466
  msgid "Deleted Attachment: %d"
4467
  msgstr "Adjunto eliminado: %d"
4468
 
4469
+ #: src/Tribe/Aggregator/Record/Abstract.php:497
4470
  msgid "Record: "
4471
  msgstr "Registro:"
4472
 
4477
  #: src/Tribe/Aggregator/Page.php:412
4478
  msgid "It looks like you are using our legacy plugin, %1$s, along with our new Event Aggregator service. Event Aggregator includes all the features of the legacy plugin plus enhanced functionality. For best results, please deactivate %1$s."
4479
  msgid_plural "It looks like you are using our legacy plugins, %1$s and %2$s, along with our new Event Aggregator service. Event Aggregator includes all the features of the legacy plugins plus enhanced functionality. For best results, please deactivate %1$s and %2$s."
4480
+ msgstr[0] "Parece que estás usando nuestro plugin legado, %1$s, con nuestro nuevo servicio Event Aggregator. Event Aggregator incluye todas las características del plugin legado y muchas más. Desactiva %1$s para obtener mejores resultados."
4481
+ msgstr[1] "Parece que estás usando nuestros plugins legados, %1$s y %2$s, con nuestro nuevo servicio Event Aggregator. Event Aggregator incluye todas las características del plugin legado y muchas más. Desactiva %1$s y %2$s para obtener mejores resultados."
4482
 
4483
  #: src/Tribe/Aggregator/Page.php:102
4484
  msgid "Your preview is taking a bit longer than expected, but it <i>is</i> still being generated."
4501
  msgstr "Ocultar filtros"
4502
 
4503
  #: src/Tribe/Aggregator/Page.php:96
4504
+ #: src/Tribe/Aggregator/Record/List_Table.php:492
4505
  msgid "View Filters"
4506
  msgstr "Ver filtros"
4507
 
4565
 
4566
  #: src/Tribe/Aggregator/Migrate.php:365
4567
  msgid "Error: we were not able to migrate your iCal Importer settings to Event Aggregator. Please try again later."
4568
+ msgstr "Error: no pudimos migrar los ajutes de importación de iCal a Event Aggregator. Por favor, inténtalo de nuevo más tarde."
4569
 
4570
  #: src/Tribe/Aggregator/Migrate.php:348
4571
  msgid "Success! The settings from Facebook Events have been migrated to Event Aggregator. You can view your migrated imports on the Scheduled Imports tab."
4572
+ msgstr "¡Éxito! Los ajustes de Facebook Events han sido migrados a Event Aggregator. Puedes ver tus importaciones migradas en la pestaña Importaciones programadas."
4573
 
4574
  #: src/Tribe/Aggregator/Migrate.php:294
4575
  msgid "We did not find any Facebook Events settings to migrate."
4577
 
4578
  #: src/Tribe/Aggregator/Migrate.php:287
4579
  msgid "You do not have permission to migrate Facebook Events settings to Event Aggregator"
4580
+ msgstr "No tienes permiso para migrar los ajustes de Facebook Events a Event Aggregator"
4581
 
4582
  #: src/Tribe/Aggregator/Migrate.php:280
4583
  msgid "Error: we were not able to migrate your Facebook Events settings to Event Aggregator. Please try again later."
4584
+ msgstr "Error: no hemos podido migrar tus ajustes de Facebook Events a Event Aggregator. Vuelve a intentarlo más tarde."
4585
 
4586
  #: src/Tribe/Aggregator/Migrate.php:80
4587
  msgid "Migrate iCal Importer settings"
4593
 
4594
  #: src/Tribe/Aggregator/Migrate.php:73
4595
  msgid "Thanks for activating Event Aggregator! It looks like you have some settings and imports configured on our legacy importer plugins. To complete your transition, we need to transfer those options to our new system."
4596
+ msgstr "¡Gracias por activar Event Aggregator! Parece que tienes algunos ajustes e importaciones configurados en nuestros plugins importadores legados. Para completar la transición, necesitamos transferir esas opciones a nuestro nuevo sistema."
4597
 
4598
  #: src/Tribe/Aggregator/Meta_Box.php:38
4599
  msgid "Imported Event"
4630
 
4631
  #: src/Tribe/Aggregator/Errors.php:64
4632
  msgid "You must enter an Event Aggregator license key in Events > Settings > Licenses before using this service."
4633
+ msgstr "Tienes que escribir una clave de licencia de Event Aggregator en Eventos > Ajustes > Licencias antes de utilizar este servicio."
4634
 
4635
  #: src/Tribe/Aggregator/Errors.php:63
4636
  msgid "Unable to get a post of the correct type."
4662
 
4663
  #: src/Tribe/Aggregator/Errors.php:56
4664
  msgid "The Event Aggregator API responded with bad data. Please <a href=\"https://theeventscalendar.com/support/post/\" target=\"_blank\">contact support</a>."
4665
+ msgstr "El API de Event Aggregator ha respondido con datos erróneos. <a href=\"https://theeventscalendar.com/support/post/\" target=\"_blank\">Contacta con atención al cliente</a>, por favor."
4666
 
4667
  #: src/Tribe/Aggregator/Errors.php:55
4668
  msgid "Unable to find an event with the ID of %s."
4702
 
4703
  #: src/Tribe/Aggregator/Errors.php:45
4704
  msgid "The image associated with your event could not be attached to the event."
4705
+ msgstr "La imagen asociada con tu evento no ha podido ser asociada al evento."
4706
 
4707
  #: src/Tribe/Aggregator/Cron.php:203
4708
  msgctxt "aggregator schedule frequency"
4770
 
4771
  #: common/src/admin-views/tribe-options-licenses.php:30
4772
  msgid "Not seeing an update but expecting one? In WordPress, go to %1$sDashboard > Updates%2$s and click \"Check Again\"."
4773
+ msgstr "¿no ves ninguna actualización pero esperabas que hubiera una? En WordPress, ve a %1$sEscritorio > Actualizaciones%2$s y haz clic en \"Comprobar de nuevo\"."
4774
 
4775
  #: common/src/admin-views/tribe-options-licenses.php:25
4776
  msgid "If you're seeing a red message telling you that your key isn't valid or is out of installs, visit %1$s to manage your installs or renew / upgrade your license."
4777
+ msgstr "Si ves un mensaje rojo que dice que te clave no es válida o que no le quedan instalaciones, vista %1$s para gestionar tus instalaciones o renovar/ampliar tu licencia."
4778
 
4779
  #: common/src/admin-views/tribe-options-licenses.php:22
4780
  msgid "Each paid add-on has its own unique license key. Simply paste the key into its appropriate field below, and give it a moment to validate. You know you're set when a green expiration date appears alongside a \"valid\" message."
4781
+ msgstr "Cada extensión de pago tiene su propia clave de licencia única. Simplemente pega la clave en su campo correspondiente y déjale un tiempo para que se valide. Sabrás que está listo cuando veas una fecha de caducidad verde junto al mensaje \"válida\"."
4782
 
4783
  #: common/src/admin-views/tribe-options-licenses.php:15
4784
  msgid "The license key you received when completing your purchase from %1$s will grant you access to support and updates until it expires. You do not need to enter the key below for the plugins to work, but you will need to enter it to get automatic updates. %3$sFind your license keys at %2$s%4$s."
4785
+ msgstr "La clave de licencia que recibiste cuando completaste tu compra de %1$s te concede acceso al soporte y las actualizaciones hasta que caduque. No necesitas introducir la clave para que los plugin funcionen, pero tienes que hacerlo para que funcionan las actualizaciones automáticas. %3$sTus claves de licencia están en %2$s%4$s."
4786
 
4787
  #: common/src/admin-views/tribe-options-licenses.php:11
4788
  #: common/src/admin-views/tribe-options-licenses.php:16
4795
 
4796
  #: common/src/admin-views/tribe-options-help.php:42
4797
  msgid "The details of your calendar plugin and settings is often needed for you or our staff to help troubleshoot an issue. Please opt-in below to automatically share your system information with our support team. This will allow us to assist you faster if you post in our help desk."
4798
+ msgstr "Nuestro personal a menudo necesita los detalles de tu plugin de calendario y tus ajustes para poder ayudarte a resolver un problema. Acepta a continuación compartir la información de tu sistema con nuestro equipo de soporte. Esto nos ayudará a proporcionarte asistencia más rápido si publicas en nuestro centro de soporte."
4799
 
4800
  #: common/src/admin-views/app-shop.php:26
4801
  msgid "Buy This Add-On"
4827
 
4828
  #: common/src/Tribe/Support.php:306
4829
  msgid "Your system information will only be used by the Modern Tribe support team. All information is stored securely. We do not share this information with any third parties."
4830
+ msgstr "La información de tu sistema solamente será utilizada por el equipo de soporte de Modern Tribe. Toda la información se almacena de forma segura. No compartimos esta información con ningún tercero."
4831
 
4832
  #: common/src/Tribe/Support.php:305
4833
  msgid "Yes, automatically share my system information with the Modern Tribe support team"
4841
  #: common/src/Tribe/PUE/Notices.php:302
4842
  msgid "You have a license key for %1$s but the key is out of installs. %2$sVisit the Events Calendar website%3$s to manage your installs, upgrade your license, or purchase a new one."
4843
  msgid_plural "You have license keys for %1$s but your keys are out of installs. %2$sVisit the Events Calendar website%3$s to manage your installs, upgrade your licenses, or purchase new ones."
4844
+ msgstr[0] "Tienes una licencia válida para %1$s pero no le quedan instalaciones. %2$sVisita la web de The Events Calendar%3$s para gestionar tus instalaciones, mejorar tu licencia o comprar una nueva."
4845
+ msgstr[1] "Tienes una licencias válidas para %1$s pero no les quedan instalaciones. %2$sVisita la web de The Events Calendar%3$s para gestionar tus instalaciones, mejorar tu licencia o comprar una nueva."
4846
 
4847
  #: common/src/Tribe/PUE/Notices.php:270
4848
  msgid "There is an update available for %1$s but your license has expired. %2$sVisit the Events Calendar website to renew your license.%3$s"
4849
  msgid_plural "Updates are available for %1$s but your license keys have expired. %2$sVisit the Events Calendar website to renew your licenses.%3$s"
4850
+ msgstr[0] "Hay una actualización disponible para %1$s pero tu licencia ha caducado. %2$sVisita la web de The Events Calendar para renovar tu licencia.%3$s"
4851
+ msgstr[1] "Hay una actualización disponible para %1$s pero tus licencia han caducado. %2$sVisita la web de The Events Calendar para renovar tus licencias.%3$s"
4852
 
4853
  #: common/src/Tribe/PUE/Checker.php:1054
4854
  msgid "There is an update for %s. %sRenew your license%s to get access to bug fixes, security updates, and new features."
4859
  msgstr "Hay una nueva actualización de %s. Necesitas %scomprobar tu licencia%s para tener acceso a actualizaciones, descargas y soporte."
4860
 
4861
  #: common/src/Tribe/PUE/Checker.php:961 common/src/Tribe/PUE/Notices.php:285
4862
+ #: src/Tribe/Aggregator/Record/Abstract.php:1164
4863
  msgid " (opens in a new window)"
4864
  msgstr "(se abre en una nueva ventana)"
4865
 
4951
 
4952
  #: common/src/Tribe/Plugins_API.php:116
4953
  msgid "The Eventbrite Tickets add-on allows you to create & sell tickets through The Events Calendar using the power of %1$sEventbrite%2$s. Whether you’re creating your ticket on the WordPress dashboard or importing the details of an already-existing event from %1$sEventbrite.com%2$s, this add-on brings the power of the Eventbrite API to your calendar."
4954
+ msgstr "La extensión de Eventbrite Tickets te permite crear y vender tickets a través de The Events Calendar utilizando el poder de %1$sEventbrite%2$s. Tanto si estás creando tu ticket desde el escritorio de WordPress o importando los detalles de un evento ya existente de %1$sEventbrite.com%2$s, esta extensión te trae el poder del API de Eventbrite a tu calendario."
4955
 
4956
  #: common/src/Tribe/Plugins_API.php:105
4957
  msgctxt "Names of required plugins for Community Tickets"
4960
 
4961
  #: common/src/Tribe/Plugins_API.php:104
4962
  msgid "Enable Community Events organizers to offer tickets to their events. You can set flexible payment and fee options. They can even check-in attendees to their events! All of this managed from the front-end of your site without ever needing to grant access to your admin"
4963
+ msgstr "Le permite a los organizadores de Community Events ofrecer tickets para sus eventos. puedes fijar opciones flexibles de pago y cuota. ¡Pueden incluso hacer la acreditación de los asistentes a sus eventos! todo esto gestionado desde el front-end de tu sitio sin siquiera tener que concederles acceso a tu escritorio."
4964
 
4965
  #: common/src/Tribe/Plugins_API.php:48
4966
  msgid "The Events Calendar PRO is a paid Add-On to our open source WordPress plugin %1$sThe Events Calendar%2$s. PRO offers a whole host of calendar features including recurring events, custom event attributes, saved venues and organizers, venue pages, advanced event admin and lots more."
4967
+ msgstr "The Events Calendar PRO Es una excepción de pago para nuestro plugin opensource de WordPress %1$sThe Events Calendar%2$s. PRO ofrece un montón de características para calendario incluyendo eventos recurrentes, eventos de calendario personalizados, recintos y organizadores guardados, páginas de recinto administración avanzada de eventos y mucho más."
4968
 
4969
  #: common/src/Tribe/Plugins_API.php:84
4970
  msgid "It is awesome that your calendar is <em>THE PLACE</em> to get hooked up with prime choice ways to spend time. You have more events than Jabba the Hutt has rolls. Too bad visitors are hiring a personal assistant to go through all the choices. Ever wish you could just filter the calendar to only show events in walking distance, on a weekend, that are free? BOOM. Now you can. Introducing… the Filter Bar."
4971
+ msgstr "Es genial que tu calendario sea <em>EL SITIO</em> para conectar con sitios geniales en los que pasar el tiempo. Tienes más eventos qué michelines tiene Jabba el Hutt. Es una pena que los visitantes estén contratando un asistente personal para recorrer todas las opciones. ¿no te gustaría poder filtrar el calendario para mostrar solamente los eventos que están a distancia de ir andando, en fin de semana y que son gratis? BOOM. Ahora puedes. Presentando... la barra de filtro."
4972
 
4973
  #: common/src/Tribe/Admin/Help_Page.php:227 common/src/Tribe/Plugins_API.php:80
4974
  msgid "Filter Bar"
5160
  msgid "No notable changes detected"
5161
  msgstr "No se han detectado cambios notables"
5162
 
5163
+ #: src/Tribe/Main.php:2561
5164
  msgid " (View Full %1$s Description Here: %2$s)"
5165
  msgstr " (Ver descripción completa %1$s Descripción: %2$s)"
5166
 
5208
  msgid "Keep the Core Plugin %sFREE%s!"
5209
  msgstr "¡Manten el núcleo del plugin %sGRATIS%s!"
5210
 
5211
+ #: src/Tribe/Template_Factory.php:231
5212
  msgid "No results were found for %1$s in or near %2$s."
5213
  msgstr "No se encontraron resultados en %1$so cerca de %2$s."
5214
 
5215
+ #: src/Tribe/Template_Factory.php:229
5216
  msgid "There were no results found for %s."
5217
  msgstr "No se encontraron resultados para %s."
5218
 
5219
+ #: src/Tribe/Template/Month.php:458
5220
  msgid "There were no results found for %s this month. Try searching next month."
5221
  msgstr "No se encontraron resultados para %s este mes. Intenta buscando en el próximo mes."
5222
 
5223
+ #: src/Tribe/Template/Day.php:154
5224
  msgid "No %1$s scheduled for %2$s. Please try another day."
5225
  msgstr "No existen %1$s programados el %2$s. Por favor busca otro día."
5226
 
5227
+ #: src/Tribe/Main.php:3855
5228
  msgid "Check out the %savailable add-ons%s."
5229
  msgstr "Echa un vistazo a %sadd-ons disponibles%s."
5230
 
5231
+ #: src/Tribe/Main.php:1922
5232
  msgid "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5233
  msgstr "Sin una ubicación definida, su evento no mostrará %sGoogle Rich Snippet%s en los resultados de búsqueda."
5234
 
5235
+ #: src/Tribe/Main.php:1853 src/Tribe/Main.php:1873
5236
  msgid "%1$s scheduled for: %2$s."
5237
  msgstr "%1$s programado para: %2$s."
5238
 
5239
+ #: src/Tribe/Main.php:1834
5240
  msgid "%1$s draft updated. %2$sPreview %3$s"
5241
  msgstr "%1$s borrador actualizado. %2$sPrevisualizar%3$s"
5242
 
5243
+ #: src/Tribe/Main.php:1825
5244
  msgid "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5245
  msgstr "%1$s programado para: %2$s. %3$sPrevisualizar%4$s"
5246
 
5247
+ #: src/Tribe/Main.php:1819
5248
  msgid "%1$s submitted. %2$sPreview %3$s"
5249
  msgstr "%1$s enviado. %2$sPrevisualizar%3$s"
5250
 
5251
+ #: src/Tribe/Main.php:1801
5252
  msgid "%1$s updated. %2$sView %1$s%3$s"
5253
  msgstr "%1$s actualizado. %2$sVer%1$s%3$s"
5254
 
5255
+ #: src/Tribe/Main.php:1476
5256
  msgid "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5257
  msgstr "¡Parece como si las bibliotecas comunes de tribu no pudieran ser encontradas! El directorio debe estar en el directorio \"común /\" en el plugin de calendario de eventos."
5258
 
5259
+ #: src/Tribe/Main.php:1111
5260
  msgid "If you have a valid license for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5261
+ msgstr "Si tienes una licencia válida para uno de nuestros plugins de pago puedes %$s en nuestros foros de soporte premium. Nuestro equipo de soporte monitoriza los foros y te responderá en 24-48 horas (durante la semana)."
5262
 
5263
+ #: src/Tribe/Main.php:1110
5264
  msgid "post a thread"
5265
  msgstr "publicar un hilo"
5266
 
5267
+ #: src/Tribe/Main.php:1106
5268
  msgid "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays."
5269
+ msgstr "<strong>¿Buscas atención inmediata?</strong> Ofrecemos %1$s con la compra de cualquiera de nuestros plugins premium (como %2$s). Consigue una licencia y podrás publicar directamente y recibir respuesta en 24-48 horas en día laborables."
5270
 
5271
+ #: src/Tribe/Main.php:1102
5272
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5273
+ msgstr "Si has probado los pasos anteriores y todavía tienes problemas, puedes publicar un nuevo tema en nuestro %s. Nuestro personal de soporte monitoriza estos foros una vez a la semana y estaré encantado de ayudarte allí."
5274
 
5275
+ #: src/Tribe/Main.php:1101
5276
  msgid "open-source forum on WordPress.org"
5277
  msgstr "foro open-source en WordPress.org"
5278
 
5279
+ #: src/Tribe/Main.php:1097
5280
  msgid "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays"
5281
+ msgstr "<strong>¿Buscas una asistencia más inmediata?</strong> Ofrecemos %s con la compra de cualquiera de nuestros plugins premium. Consigue una licencia y podrás publicar allí directamente y recibir una respuesta en 24-48 horas durante los días laborables"
5282
 
5283
+ #: src/Tribe/Main.php:1096 src/Tribe/Main.php:1104
5284
  msgid "premium support on our website"
5285
  msgstr "soporte premium en nuestro sitio web"
5286
 
5287
+ #: src/Tribe/Main.php:1094
5288
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5289
+ msgstr "Si has intentado realizar los pasos anteriores y sigues teniendo problemas, puedes publicar un nuevo hilo en nuestro foro de WordPress.org en %1$s o %2$s. Nuestro equipo de soporte monitoriza esos foros semanalmente y estará encantado de ayudarte."
5290
 
5291
+ #: src/Tribe/Main.php:1093
5292
  msgid "Events Tickets"
5293
  msgstr "Entradas de eventos"
5294
 
5295
+ #: src/Tribe/Main.php:1078
5296
  msgid "Customizing the Events plugins"
5297
  msgstr "Personalizar los complementos de eventos"
5298
 
5299
+ #: src/Tribe/Main.php:1078
5300
  msgid "%s: Code and guides for customizing your calendar in useful and interesting ways."
5301
+ msgstr "%s: Código y guías para personalizar tu calendario de formas útiles e interesantes."
5302
 
5303
+ #: src/Tribe/Main.php:1076
5304
  msgid "Troubleshooting common problems"
5305
  msgstr "Soluciones a problemas frecuentes"
5306
 
5307
+ #: src/Tribe/Main.php:1076
5308
  msgid "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5309
  msgstr "%s: ¿Ves un problema con tu calendario? Ve aquí primero para encontrar de dónde viene y cómo solucionarlo."
5310
 
5311
+ #: src/Tribe/Main.php:1074
5312
  msgid "Using stylesheets and page templates"
5313
  msgstr "Usando hojas de estilo y plantillas de página"
5314
 
5315
+ #: src/Tribe/Main.php:1074
5316
  msgid "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5317
  msgstr "%s: una descripción general de las plantillas y estilos predeterminados que se incluyen en el complemento, así como también cómo cambiarlos."
5318
 
5319
+ #: src/Tribe/Main.php:1072
5320
  msgid "Themer’s Guide"
5321
  msgstr "Guía del diseñador de temas"
5322
 
5323
+ #: src/Tribe/Main.php:1072
5324
  msgid "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5325
+ msgstr "%s: Nuestra introducción más completa a la personalización del calendario para adaptarlo a tus necesidades, incluyendo diseños y estilos a medida."
5326
 
5327
+ #: src/Tribe/Main.php:1070
5328
  msgid "Features overview"
5329
  msgstr "Descripción de las características"
5330
 
5331
+ #: src/Tribe/Main.php:1070
5332
  msgid "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5333
  msgstr "%s: un vistazo completo a las características que puede esperar ver de inmediato y cómo usarlas."
5334
 
5335
+ #: src/Tribe/Main.php:1068
5336
  msgid "Settings overview"
5337
  msgstr "Descripción general de configuración"
5338
 
5339
+ #: src/Tribe/Main.php:1068
5340
  msgid "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5341
  msgstr "%s: un recorrido completo de The Events Calendar y la configuración que está disponible para usted."
5342
 
5343
+ #: src/Tribe/Main.php:1065
5344
  msgid "Support for The Events Calendar"
5345
  msgstr "Soporte para The Events Calendar"
5346
 
5347
+ #: src/Tribe/Main.php:1054
5348
  msgid "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5349
+ msgstr "Nos hemos comprometido a a ayudarte a hacer que tu calendario sea espectacular y tenemos gran cantidad de recursos disponibles, incluyendo una %s práctica sobre como poner en marcha tu calendario."
5350
 
5351
+ #: src/Tribe/Main.php:1052
5352
  msgid "New User Primer"
5353
  msgstr "Nuevo manual de usuario"
5354
 
5371
  msgid "CSV Import Settings"
5372
  msgstr "Ajustes de importación de CSV"
5373
 
5374
+ #: src/deprecated/Tribe__Events__Asset__Bootstrap_Datepicker.php:27
5375
  msgid "Clear"
5376
  msgstr "Limpiar"
5377
 
5383
  msgid "Create New %s"
5384
  msgstr "Crear nuevo %s"
5385
 
5386
+ #: src/Tribe/Organizer.php:375
5387
  msgid "Unnamed %s"
5388
  msgstr "Sin nombre %s"
5389
 
5397
 
5398
  #: common/src/admin-views/tribe-options-help.php:37
5399
  msgid "Please note that all hands-on support is provided via the help desk. You can email or tweet at us… ​but we will probably point you back to the help desk 😄"
5400
+ msgstr "Ten en cuenta que todo el soporte se proporciona mediante el servicio de asistencia. Puesde escribirnos o tuitearnos... pero seguramente te mandemos al servicio de asistencia 😄"
5401
 
5402
  #: common/src/admin-views/tribe-options-help.php:33
5403
  msgid "%s. There are very few issues we haven’t seen and it’s likely another user has already asked your question and gotten an answer from our support staff. While posting to the help desk is open only to paid customers, they are open for anyone to search and review."
5421
 
5422
  #: common/src/admin-views/tribe-options-help.php:27
5423
  msgid "While the resources above help solve a majority of the issues we see, there are times you might be looking for extra support. If you need assistance using our plugins and would like us to take a look, please follow these steps:"
5424
+ msgstr "Aunque estos recursos solucionan la mayoría de los problemas que nos encontramos, hay ocasiones en los que puedes necesitar más ayuda. Si necesitas ayuda con nuestros plugins y quieres que echemos un vistazo, sigue estos pasos:"
5425
 
5426
  #: common/src/admin-views/tribe-options-help.php:26
5427
  msgid "Getting More Help"
5445
 
5446
  #: common/src/admin-views/tribe-options-help.php:11
5447
  msgid "Thank you for using %s! All of us at Modern Tribe sincerely appreciate your support and we’re excited to see you using our plugins."
5448
+ msgstr "¡Gracias por usar %s! Todos los de Modern Tribe agradecemos sinceramente tu apoyo y nos encanta ver que utilizas nuestros plugins."
5449
 
5450
  #: common/src/admin-views/tribe-options-general.php:15
5451
  msgid "Optimize your site's event listings with %1$sThe Events Calendar%2$s, our free calendar plugin. Looking for additional functionality including recurring events, user-submission, advanced ticket sales and more? Check out our %3$spremium add-ons%4$s."
5452
+ msgstr "Optimiza los listados de eventos de tu sitio con %1$sThe Events Calendar%2$s, nuestro plugin gratuito de calendario. ¿buscas funcionalidad adicional, incluyendo eventos recurrentes, envío por usuarios, venta avanzada de tickets y más? Échale un vistazo a %3$snuestras extensiones premium%4$s."
5453
 
5454
  #: common/src/admin-views/tribe-options-general.php:10
5455
  msgid "Thank you for using Event Tickets! All of us at Modern Tribe sincerely appreciate your support and we're excited to see you using our plugins. Check out our handy %1$sNew User Primer%2$s to get started."
5571
  msgid "%s must be a positive number or percent."
5572
  msgstr "%s debe ser un número o porcentaje positivo."
5573
 
5574
+ #: src/Tribe/Main.php:999
5575
  msgid "%1$s or %2$s"
5576
  msgstr "%1$s por %2$s"
5577
 
5628
  msgid "Day Navigation"
5629
  msgstr "Navegación por día"
5630
 
5631
+ #: src/Tribe/Aggregator/Tabs/New.php:400
5632
  msgid "Import complete!"
5633
  msgstr "¡Importación completa!"
5634
 
5870
  msgstr "Más..."
5871
 
5872
  #: common/src/Tribe/Admin/Help_Page.php:194 common/src/Tribe/Plugins_API.php:43
5873
+ #: src/Tribe/Main.php:1105
5874
  msgid "Events Calendar PRO"
5875
  msgstr "Events Calendar PRO"
5876
 
6309
  msgid "%s Website"
6310
  msgstr "Página Web %s"
6311
 
6312
+ #: src/Tribe/Aggregator/Record/List_Table.php:509
6313
  msgid "Location:"
6314
  msgstr "Ubicación:"
6315
 
7714
  msgid "Template overrides should be moved to the correct subdirectory: %s"
7715
  msgstr "Las plantillas reemplazadas se deben mover al subdirectorio correcto: %s"
7716
 
7717
+ #: src/Tribe/Template_Factory.php:237
7718
  msgid "No previous %s "
7719
  msgstr "No hay %s anteriores."
7720
 
7721
+ #: src/Tribe/Template_Factory.php:235 src/Tribe/Template_Factory.php:240
7722
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7723
  msgstr "No hay %1$s en %2$s. Accede al calendario completo para ver una lista de %3$s."
7724
 
7725
+ #: src/Tribe/Template_Factory.php:233
7726
  msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7727
  msgstr "No hay proximo %1$s listado en %2$s. Revisa los próximos %3$s en éste categoría o ver el calendario completo."
7728
 
7730
  msgid "This %s has passed."
7731
  msgstr "Este %s ha pasado."
7732
 
7733
+ #: src/Tribe/Template/Month.php:955
7734
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7735
  msgstr "La fecha \"%s\" no es válida &ndash; se muestra el mes actual en lugar de éste."
7736
 
7737
+ #: src/Tribe/Template/Month.php:464 src/Tribe/Template_Factory.php:242
7738
  msgid "There were no results found."
7739
  msgstr "No se ha encontrado ningún resultado."
7740
 
7741
+ #: src/Tribe/Template/Month.php:462
7742
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7743
  msgstr "No existe %1$s así listado en %2$s. Favor de intentar ver el calendario completo para ver todos los eventos."
7744
 
7745
+ #: src/Tribe/Template/Day.php:152
7746
  msgid "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7747
  msgstr "No hay coincidencias %1$s listadas bajo %2$s programadas para %3$s. Por favor intente con otro día."
7748
 
7749
+ #: src/Tribe/Template/Day.php:118 src/Tribe/Template/Day.php:134
7750
  msgid "Ongoing"
7751
  msgstr "En marcha"
7752
 
7753
+ #: src/Tribe/Aggregator/Page.php:82 src/Tribe/Template/Day.php:115
7754
+ #: src/Tribe/Template/Day.php:131
7755
  msgid "All Day"
7756
  msgstr "Todo el Día"
7757
 
7846
  msgid "Error"
7847
  msgstr "Error"
7848
 
7849
+ #: src/Tribe/Main.php:4198
7850
  msgid "Once Every 30 Mins"
7851
  msgstr "Una vez cada 30 minutos"
7852
 
7853
+ #: src/Tribe/Main.php:4118
7854
  msgid "Day Of"
7855
  msgstr "Día de"
7856
 
7857
+ #: src/Tribe/Main.php:4116
7858
  msgid "%s From"
7859
  msgstr "%s Desde"
7860
 
7861
+ #: src/Tribe/Main.php:4112
7862
  msgid "%s In"
7863
  msgstr "%s En"
7864
 
7865
+ #: src/Tribe/Main.php:4107 src/Tribe/Main.php:4132
7866
  #: src/admin-views/aggregator/origins/refine.php:7
7867
  msgid "Date"
7868
  msgstr "Fecha"
7869
 
7870
+ #: src/Tribe/Main.php:4034
7871
  msgid "Search"
7872
  msgstr "Buscar"
7873
 
7874
+ #: src/Tribe/Main.php:4008 src/admin-views/aggregator/fields/schedule.php:44
7875
  #: src/admin-views/aggregator/fields/schedule.php:62
7876
  msgid "Day"
7877
  msgstr "Día"
7878
 
7879
+ #: src/Tribe/Main.php:3991
7880
  msgid "Month"
7881
  msgstr "Mes"
7882
 
7883
+ #: src/Tribe/Main.php:3973
7884
  msgid "List"
7885
  msgstr "Lista"
7886
 
7887
+ #: src/Tribe/Main.php:3957
7888
  msgid "Calendar"
7889
  msgstr "Calendario"
7890
 
7891
  #: common/src/Tribe/Settings.php:254
7892
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:89 src/Tribe/Main.php:3956
7893
  msgid "Settings"
7894
  msgstr "Ajustes"
7895
 
7903
  msgid "Add %s"
7904
  msgstr "Añadir %s"
7905
 
7906
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:45 src/Tribe/Main.php:3907
7907
  msgid "View Calendar"
7908
  msgstr "Ver calendario"
7909
 
7911
  msgid "%s"
7912
  msgstr "%s"
7913
 
7914
+ #: src/Tribe/Main.php:3854
7915
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7916
  msgstr "¿Buscas funcionalidades adicionales, incluyendo eventos periódicos, venta de entradas, eventos añadidos por el público, vistas adicionales y más?"
7917
 
7918
+ #: src/Tribe/Main.php:3849
7919
  msgid "Additional Functionality"
7920
  msgstr "Funcionalidad adicional"
7921
 
7922
+ #: src/Tribe/Main.php:3804
7923
  msgid "News from Modern Tribe"
7924
  msgstr "Noticias de Modern Tribe"
7925
 
7926
+ #: src/Tribe/Main.php:3784
7927
  msgid "View All Add-Ons"
7928
  msgstr "Ver todos los complementos (Add-Ons)"
7929
 
7930
+ #: src/Tribe/Main.php:3781
7931
  msgid "Support"
7932
  msgstr "Soporte"
7933
 
7934
+ #: src/Tribe/Main.php:3429 src/Tribe/Main.php:3442
7935
  msgid "%s Information"
7936
  msgstr "Información de %s"
7937
 
7938
+ #: src/Tribe/Main.php:3420
7939
  msgid "%s Options"
7940
  msgstr "Opciones de %s"
7941
 
7942
+ #: src/Tribe/Main.php:3343 src/Tribe/Main.php:3378
7943
  #: src/functions/template-tags/day.php:157
7944
  #: src/functions/template-tags/day.php:178
7945
  msgid "Date out of range."
7946
  msgstr "Fecha fuera de rango."
7947
 
7948
+ #: src/Tribe/Main.php:2170
7949
  msgid "all"
7950
  msgstr "todos"
7951
 
7952
+ #: src/Tribe/Main.php:2169 src/functions/template-tags/general.php:111
7953
  msgid "events"
7954
  msgstr "eventos"
7955
 
7956
+ #: src/Tribe/Main.php:2168 src/functions/template-tags/general.php:79
7957
  msgid "event"
7958
  msgstr "evento"
7959
 
7960
+ #: src/Tribe/Main.php:2167
7961
  msgid "page"
7962
  msgstr "página"
7963
 
7969
  msgid "Done"
7970
  msgstr "Hecho"
7971
 
7972
+ #: common/src/Tribe/Main.php:272
7973
+ #: src/deprecated/Tribe__Events__Asset__Bootstrap_Datepicker.php:28
7974
  #: src/functions/template-tags/day.php:104
7975
  msgid "Today"
7976
  msgstr "Hoy"
7983
  msgid "Next"
7984
  msgstr "Siguiente"
7985
 
7986
+ #: src/Tribe/Linked_Posts.php:1138
7987
  msgid "No saved %s exists."
7988
  msgstr "No hay %s guardado."
7989
 
7990
+ #: src/Tribe/Linked_Posts.php:964
7991
  msgid "Available %s"
7992
  msgstr " %s Disponibles"
7993
 
7994
+ #: src/Tribe/Linked_Posts.php:960
7995
  msgid "My %s"
7996
  msgstr "Mis %s"
7997
 
7998
+ #: src/Tribe/Main.php:1858 src/Tribe/Main.php:1878
7999
  msgid "%s draft updated."
8000
  msgstr "El borrador %s actualizado."
8001
 
8002
+ #: src/Tribe/Main.php:1851 src/Tribe/Main.php:1871
8003
  msgid "%s submitted."
8004
  msgstr "%s enviado."
8005
 
8006
+ #: src/Tribe/Main.php:1849 src/Tribe/Main.php:1869
8007
  msgid "%s published."
8008
  msgstr "%s publicado."
8009
 
8010
  #. translators: %s: date and time of the revision
8011
+ #: src/Tribe/Main.php:1868
8012
  msgid "%s restored to revision from %s"
8013
  msgstr "%s restaurado a la revisión de %s"
8014
 
8015
  #. translators: Publish box date format, see http://php.net/date
8016
+ #: src/Tribe/Main.php:1828 src/Tribe/Main.php:1856 src/Tribe/Main.php:1876
8017
  msgid "M j, Y @ G:i"
8018
  msgstr "M j, Y ··· G:i"
8019
 
8020
+ #: src/Tribe/Main.php:1817 src/Tribe/Main.php:1850 src/Tribe/Main.php:1870
8021
  msgid "%s saved."
8022
  msgstr "%s guardado."
8023
 
8024
  #. translators: %s: date and time of the revision
8025
+ #: src/Tribe/Main.php:1810 src/Tribe/Main.php:1848
8026
  msgid "%1$s restored to revision from %2$s"
8027
  msgstr "%1$s restaurada a revisión de %2$s"
8028
 
8029
+ #: src/Tribe/Main.php:1808 src/Tribe/Main.php:1843 src/Tribe/Main.php:1846
8030
+ #: src/Tribe/Main.php:1863 src/Tribe/Main.php:1866
8031
  msgid "%s updated."
8032
  msgstr "%s actualizado."
8033
 
8034
+ #: src/Tribe/Main.php:1807 src/Tribe/Main.php:1845 src/Tribe/Main.php:1865
8035
  msgid "Custom field deleted."
8036
  msgstr "Campo personalizado borrado."
8037
 
8038
+ #: src/Tribe/Main.php:1806 src/Tribe/Main.php:1844 src/Tribe/Main.php:1864
8039
  msgid "Custom field updated."
8040
  msgstr "Campo personalizado actualizado."
8041
 
8042
+ #: src/Tribe/Main.php:1784
8043
  msgid "New %s Category Name"
8044
  msgstr "Nombre de nueva categoría de %s"
8045
 
8046
+ #: src/Tribe/Main.php:1783
8047
  msgid "Add New %s Category"
8048
  msgstr "Añadir nueva categoría de %s"
8049
 
8050
+ #: src/Tribe/Main.php:1782
8051
  msgid "Update %s Category"
8052
  msgstr "Actualizar categoría de %s"
8053
 
8054
+ #: src/Tribe/Main.php:1781
8055
  msgid "Edit %s Category"
8056
  msgstr "Editar categoría de %s"
8057
 
8058
+ #: src/Tribe/Main.php:1780
8059
  msgid "Parent %s Category:"
8060
  msgstr "Categoría superior de %s:"
8061
 
8062
+ #: src/Tribe/Main.php:1779
8063
  msgid "Parent %s Category"
8064
  msgstr "Categoría superior de %s"
8065
 
8066
+ #: src/Tribe/Main.php:1778
8067
  msgid "All %s Categories"
8068
  msgstr "Todas las categorías de %s"
8069
 
8070
+ #: src/Tribe/Main.php:1777
8071
  msgid "Search %s Categories"
8072
  msgstr "Buscar categorías de %s"
8073
 
8074
+ #: src/Tribe/Main.php:1776
8075
  msgid "%s Category"
8076
  msgstr "Categoría de %s"
8077
 
8078
+ #: src/Tribe/Main.php:1766 src/Tribe/Organizer.php:98 src/Tribe/Venue.php:117
8079
  msgid "No %s found in Trash"
8080
  msgstr "No hay %s en la papelera"
8081
 
8082
+ #: src/Tribe/Main.php:1765 src/Tribe/Organizer.php:97 src/Tribe/Venue.php:116
8083
  msgid "No %s found"
8084
  msgstr "No se encontraron %s"
8085
 
8086
+ #: src/Tribe/Main.php:1764 src/Tribe/Organizer.php:96 src/Tribe/Venue.php:115
8087
  msgid "Search %s"
8088
  msgstr "Buscar %s "
8089
 
8090
+ #: src/Tribe/Main.php:1763 src/Tribe/Organizer.php:95 src/Tribe/Venue.php:114
8091
  #: src/views/month/single-day.php:26
8092
  msgid "View %s"
8093
  msgstr "Mostrar %s"
8094
 
8095
+ #: src/Tribe/Main.php:1762 src/Tribe/Organizer.php:94 src/Tribe/Venue.php:113
8096
  msgid "New %s"
8097
  msgstr "Nueva %s"
8098
 
8099
+ #: src/Tribe/Main.php:1760 src/Tribe/Main.php:1892 src/Tribe/Main.php:1893
8100
  #: src/Tribe/Organizer.php:92 src/Tribe/Venue.php:111
8101
  msgid "Add New %s"
8102
  msgstr "Agregar nuevo %s"
8103
 
8104
+ #: src/Tribe/Main.php:1759 src/Tribe/Organizer.php:91 src/Tribe/Venue.php:110
8105
  msgid "Add New"
8106
  msgstr "Agregar nuevo"
8107
 
8108
+ #: src/Tribe/Main.php:1726 src/Tribe/Main.php:2165
8109
  msgid "tag"
8110
  msgstr "etiqueta"
8111
 
8112
+ #: src/Tribe/Main.php:1712 src/Tribe/Main.php:2166
8113
  msgid "category"
8114
  msgstr "categoria"
8115
 
8116
+ #: src/Tribe/Main.php:1464
8117
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8118
  msgstr "Lo sentimos, The Events Calendar requiere PHP %s o superior. Hable con su proveedor de Hospedaje Web para actualizar a una versión mas reciente de PHP"
8119
 
8120
+ #: src/Tribe/Main.php:1461
8121
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8122
  msgstr "Lo sentimos, The Events Calendar requiere Wordpress %s o superior. Por favor, actualice su instalación de Wordpress."
8123
 
8135
  msgid "Display"
8136
  msgstr "Visualización"
8137
 
8138
+ #: src/Tribe/Main.php:1308
8139
  msgid "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8140
  msgstr "Los siguientes complementos están desactualizados: %1$s. Todos los complementos contienen dependencias en el Calendario de eventos y no funcionarán correctamente a menos que estén emparejados con la versión correcta. %2$sMás información%3$s."
8141
 
8142
+ #: src/Tribe/Main.php:1296
8143
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8144
  msgstr "Su versión de The Events Calendar no se encuentra actualizada con uno de sus add-ons. Por favor, %sactualicela.%s"
8145
 
8146
+ #: src/Tribe/Main.php:786
8147
  msgid "Initializing Tribe Events on %s"
8148
  msgstr "Iniciando Tribe Events en %s"
8149
 
8150
+ #: src/Tribe/Main.php:761
8151
  msgid "today"
8152
  msgstr "hoy"
8153
 
8154
+ #: src/Tribe/Main.php:760
8155
  msgid "day"
8156
  msgstr "día"
8157
 
8158
+ #: src/Tribe/Main.php:759
8159
  msgid "past"
8160
  msgstr "pasados"
8161
 
8162
+ #: src/Tribe/Main.php:758
8163
  msgid "upcoming"
8164
  msgstr "próximos"
8165
 
8166
+ #: src/Tribe/Main.php:757
8167
  msgid "list"
8168
  msgstr "lista"
8169
 
8170
+ #: src/Tribe/Main.php:756
8171
  msgid "month"
8172
  msgstr "mes"
8173
 
8174
+ #. #-#-#-#-# the-events-calendar-code.pot (The Events Calendar 4.6.22.1)
8175
  #. #-#-#-#-#
8176
  #. Plugin Name of the plugin/theme
8177
  #: common/src/Tribe/Admin/Help_Page.php:59 common/src/Tribe/Customizer.php:569
8178
+ #: common/src/Tribe/Plugins_API.php:25 src/Tribe/Main.php:749
8179
+ #: src/Tribe/Main.php:1092 src/Tribe/Privacy.php:29
8180
  #: src/functions/template-tags/general.php:1345
8181
  msgid "The Events Calendar"
8182
  msgstr "The Events Calendar"
8183
 
8184
+ #: src/Tribe/Main.php:1162 src/admin-views/aggregator/tabs/import-form.php:185
8185
  #: src/admin-views/aggregator/tabs/import-form.php:197
8186
  #: src/functions/template-tags/general.php:63
8187
  msgid "Event"
8188
  msgstr "Evento"
8189
 
8190
  #: common/src/Tribe/Settings.php:177 common/src/Tribe/Settings.php:241
8191
+ #: common/src/Tribe/Settings.php:242 src/Tribe/Main.php:1154
8192
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:207
8193
  #: src/functions/template-tags/general.php:95
8194
  msgid "Events"
8195
  msgstr "Eventos"
8196
 
8197
+ #: src/Tribe/Organizer.php:157 src/functions/template-tags/organizer.php:112
8198
  msgid "Organizer"
8199
  msgstr "Organizador"
8200
 
8201
  #: src/Tribe/Organizer.php:171
8202
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:206
8203
+ #: src/functions/template-tags/organizer.php:123
8204
  msgid "Organizers"
8205
  msgstr "Organizadores"
8206
 
8464
  msgid "End:"
8465
  msgstr "Finaliza:"
8466
 
8467
+ #: src/Tribe/Aggregator/Record/List_Table.php:505
8468
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
8469
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
8470
  #: src/views/modules/meta/details.php:66 src/views/modules/meta/details.php:91
8483
  msgid "Start Date"
8484
  msgstr "Fecha inicio"
8485
 
8486
+ #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1775
8487
  msgid "%s Categories"
8488
  msgstr "Categorías de %s"
8489
 
8494
  #: src/Tribe/Admin/Timezone_Updater.php:87
8495
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
8496
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:100
8497
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:210
8498
  msgid "%d%% complete"
8499
  msgstr "%d%% completo"
8500
 
8507
  msgstr "Espera mientras que se le añade la información de zona horaria tus eventos."
8508
 
8509
  #: src/Tribe/Admin/Bar/Default_Configurator.php:62
8510
+ #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:211 src/Tribe/Main.php:1761
8511
+ #: src/Tribe/Main.php:4843 src/Tribe/Main.php:4890 src/Tribe/Organizer.php:93
8512
  #: src/Tribe/Venue.php:112
8513
  msgid "Edit %s"
8514
  msgstr "Editar %s"
8515
 
8516
+ #: src/Tribe/Main.php:4827 src/Tribe/Main.php:4884
8517
  msgid "Use Saved %s:"
8518
  msgstr "Utilizar %s guardado: "
8519
 
8520
+ #: src/Tribe/Main.php:991
8521
  msgid " ask the site administrator set a different Events URL slug."
8522
  msgstr " Solicitar al administrador del sitio a establecer un diferente slug para el URL de Eventos."
8523
 
8524
+ #: src/Tribe/Main.php:985
8525
  msgid "Ask the site administrator to edit the %s slug"
8526
  msgstr "Pide al administrador del sitio que edite el slug de %s"
8527
 
8529
  msgid "Thanks for Updating The Events Calendar"
8530
  msgstr "Gracias por actualizar The Events Calendar"
8531
 
8532
+ #: src/Tribe/Main.php:844 src/Tribe/Main.php:846
8533
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
8534
  msgid "Welcome to The Events Calendar"
8535
  msgstr "Bienvenido a The Events Calendar"
lang/the-events-calendar-es_VE.po CHANGED
@@ -11,6 +11,31 @@ msgstr ""
11
  "Language: es_VE\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: src/views/month/single-day.php:57
15
  msgid "%s for %s"
16
  msgstr ""
@@ -183,91 +208,91 @@ msgstr ""
183
  msgid "Do more with Eventbrite Tickets"
184
  msgstr ""
185
 
186
- #: src/Tribe/Main.php:4513
187
  msgid "Search for %s by month. Please use the format %s."
188
  msgstr ""
189
 
190
- #: src/Tribe/Main.php:4508
191
  msgid "Search for %s by Date. Please use the format %s."
192
  msgstr ""
193
 
194
- #: src/Tribe/Main.php:4476 src/Tribe/Main.php:4477
195
  msgid "2 digit month dot 4 digit year"
196
  msgstr ""
197
 
198
- #: src/Tribe/Main.php:4475
199
  msgid "4 digit year dot 2 digit month"
200
  msgstr ""
201
 
202
- #: src/Tribe/Main.php:4474
203
  msgid "2 digit month hyphen 4 digit year"
204
  msgstr ""
205
 
206
- #: src/Tribe/Main.php:4471 src/Tribe/Main.php:4472 src/Tribe/Main.php:4473
207
  msgid "1 digit month hyphen 4 digit year"
208
  msgstr ""
209
 
210
- #: src/Tribe/Main.php:4468 src/Tribe/Main.php:4470
211
  msgid "2 digit month slash 4 digit year"
212
  msgstr ""
213
 
214
- #: src/Tribe/Main.php:4467 src/Tribe/Main.php:4469
215
  msgid "1 digit month slash 4 digit year"
216
  msgstr ""
217
 
218
- #: src/Tribe/Main.php:4466
219
  msgid "4 digit year hyphen 2 digit month"
220
  msgstr ""
221
 
222
- #: src/Tribe/Main.php:4462
223
  msgid "2 digit day dot 2 digit month dot 4 digit year"
224
  msgstr ""
225
 
226
- #: src/Tribe/Main.php:4461
227
  msgid "2 digit month dot 2 digit day dot 4 digit year"
228
  msgstr ""
229
 
230
- #: src/Tribe/Main.php:4460
231
  msgid "4 digit year dot 2 digit month dot 2 digit day"
232
  msgstr ""
233
 
234
- #: src/Tribe/Main.php:4459
235
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
236
  msgstr ""
237
 
238
- #: src/Tribe/Main.php:4458
239
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
240
  msgstr ""
241
 
242
- #: src/Tribe/Main.php:4457
243
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
244
  msgstr ""
245
 
246
- #: src/Tribe/Main.php:4456
247
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
248
  msgstr ""
249
 
250
- #: src/Tribe/Main.php:4455
251
  msgid "2 digit day slash 2 digit month slash 4 digit year"
252
  msgstr ""
253
 
254
- #: src/Tribe/Main.php:4454
255
  msgid "1 digit day slash 1 digit month slash 4 digit year"
256
  msgstr ""
257
 
258
- #: src/Tribe/Main.php:4453
259
  msgid "2 digit month slash 2 digit day slash 4 digit year"
260
  msgstr ""
261
 
262
- #: src/Tribe/Main.php:4452
263
  msgid "1 digit month slash 1 digit day slash 4 digit year"
264
  msgstr ""
265
 
266
- #: src/Tribe/Main.php:4451
267
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
268
  msgstr ""
269
 
270
- #: src/Tribe/Main.php:4430
271
  msgid "Search for %s by Keyword."
272
  msgstr ""
273
 
@@ -495,7 +520,7 @@ msgid "Search our support help desk"
495
  msgstr ""
496
 
497
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
498
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:369
499
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
500
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
501
  msgid "The requested page was not found."
@@ -509,12 +534,12 @@ msgstr ""
509
  msgid "one week"
510
  msgstr ""
511
 
512
- #: src/Tribe/Aggregator/Record/List_Table.php:570
513
  msgctxt "when the retry will happen, a date"
514
  msgid "retrying at %s"
515
  msgstr ""
516
 
517
- #: src/Tribe/Aggregator/Record/List_Table.php:567
518
  msgctxt "in human readable time"
519
  msgid "retrying in about %s"
520
  msgstr ""
@@ -596,7 +621,7 @@ msgid "Main %s Page"
596
  msgstr ""
597
 
598
  #: common/src/Tribe/Plugins_API.php:71
599
- msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Tickets have QR codes for easy check in at the door."
600
  msgstr ""
601
 
602
  #: src/admin-views/tribe-options-general.php:31
@@ -628,7 +653,7 @@ msgstr ""
628
  msgid "The event with the specified ID is not accessible."
629
  msgstr ""
630
 
631
- #: src/Tribe/Main.php:1813
632
  msgid "%1$s published. %2$sView %3$s"
633
  msgstr ""
634
 
@@ -979,11 +1004,11 @@ msgstr ""
979
  msgid "the event post name"
980
  msgstr ""
981
 
982
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:341
983
  msgid "The event organizer IDs or data"
984
  msgstr ""
985
 
986
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:333
987
  msgid "The event venue ID or data"
988
  msgstr ""
989
 
@@ -1226,32 +1251,32 @@ msgstr ""
1226
  msgid "Returns all the organizers matching the search criteria"
1227
  msgstr ""
1228
 
1229
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:478
1230
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1231
  msgstr ""
1232
 
1233
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:472
1234
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1235
  msgstr ""
1236
 
1237
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:466
1238
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1239
  msgstr ""
1240
 
1241
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:461
1242
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1243
  msgid "The event post status"
1244
  msgstr ""
1245
 
1246
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1247
  msgid "Events should be filtered by their featured status"
1248
  msgstr ""
1249
 
1250
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:446
1251
  msgid "Events should be assigned one of the specified organizer IDs"
1252
  msgstr ""
1253
 
1254
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
1255
  msgid "Events should be assigned one of the specified venue IDs"
1256
  msgstr ""
1257
 
@@ -1345,48 +1370,48 @@ msgstr ""
1345
  msgid "The event status"
1346
  msgstr ""
1347
 
1348
- #: src/Tribe/Linked_Posts.php:1126
1349
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1350
  msgid "Create or Find %s"
1351
  msgstr ""
1352
 
1353
- #: src/Tribe/Linked_Posts.php:1117
1354
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1355
  msgid "Find %1$s %2$s"
1356
  msgstr ""
1357
 
1358
- #: src/Tribe/Linked_Posts.php:1108
1359
  msgid "Find a Venue"
1360
  msgstr ""
1361
 
1362
- #: src/Tribe/Linked_Posts.php:1107
1363
  msgid "Create or Find a Venue"
1364
  msgstr ""
1365
 
1366
- #: src/Tribe/Linked_Posts.php:1100
1367
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1368
  msgid "Create or Find %s"
1369
  msgstr ""
1370
 
1371
- #: src/Tribe/Linked_Posts.php:1091
1372
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1373
  msgid "Find %1$s %2$s"
1374
  msgstr ""
1375
 
1376
- #: src/Tribe/Linked_Posts.php:1080
1377
  msgid "Find an Organizer"
1378
  msgstr ""
1379
 
1380
- #: src/Tribe/Linked_Posts.php:1079
1381
  msgid "Create or Find an Organizer"
1382
  msgstr ""
1383
 
1384
- #: src/Tribe/Linked_Posts.php:1072
1385
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1386
  msgid "Create or Find %s"
1387
  msgstr ""
1388
 
1389
- #: src/Tribe/Linked_Posts.php:1063
1390
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1391
  msgid "Find %1$s %2$s"
1392
  msgstr ""
@@ -1482,20 +1507,20 @@ msgstr ""
1482
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1483
  msgstr ""
1484
 
1485
- #: src/Tribe/Main.php:997
1486
  msgid "edit Events settings."
1487
  msgstr ""
1488
 
1489
- #: src/Tribe/Main.php:988
1490
  msgid "Edit the %s slug"
1491
  msgstr ""
1492
 
1493
- #: src/Tribe/Linked_Posts.php:1049
1494
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1495
  msgid "an"
1496
  msgstr ""
1497
 
1498
- #: src/Tribe/Linked_Posts.php:1042
1499
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1500
  msgid "a"
1501
  msgstr ""
@@ -1537,10 +1562,6 @@ msgstr ""
1537
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1538
  msgstr ""
1539
 
1540
- #: common/src/Tribe/Plugins_API.php:37
1541
- msgid "Import events from across the web! Event Aggregator makes it easy to run scheduled or manual imports from Facebook, Meetup, Eventbrite, Google Calendar, and iCalendar, along with uploads from CSV and ICS files. You can also import directly from other sites running The Events Calendar thanks to our built-in REST API support."
1542
- msgstr ""
1543
-
1544
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1545
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1546
  msgstr ""
@@ -1585,7 +1606,7 @@ msgstr ""
1585
  msgid "The event WordPress post ID"
1586
  msgstr ""
1587
 
1588
- #: src/Tribe/Aggregator/Record/Abstract.php:362
1589
  msgid "Something went wrong while inserting the record in the database."
1590
  msgstr ""
1591
 
@@ -1603,7 +1624,7 @@ msgstr[1] ""
1603
  msgid "Please refresh the page and try your request again."
1604
  msgstr ""
1605
 
1606
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:28
1607
  msgid "The image WordPress post ID"
1608
  msgstr ""
1609
 
@@ -1663,11 +1684,11 @@ msgstr "El ID de la entrada requerida no existe o no es un organizador"
1663
  msgid "The event last modification date in UTC time"
1664
  msgstr "La última modificación de la fecha del evento está en hora UTC"
1665
 
1666
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:403
1667
  msgid "Events should start after the specified date"
1668
  msgstr "Los eventos deben comenzar después de la fecha especificada"
1669
 
1670
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:410
1671
  msgid "Events should start before the specified date"
1672
  msgstr "Los eventos deben comenzar antes de la fecha especificada"
1673
 
@@ -1703,7 +1724,7 @@ msgstr "El parámetro 'search' debe ser una cadena"
1703
  msgid "the event post ID"
1704
  msgstr "el ID de la entrada del evento"
1705
 
1706
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:416
1707
  msgid "Events should contain the specified string in the title or description"
1708
  msgstr "Los eventos deben contener la cadena especificada en el título o descripción"
1709
 
@@ -1999,31 +2020,31 @@ msgid "The requested URL does not have any upcoming and published events matchin
1999
  msgstr "El URL requerido no tiene ningún evento futuro y publicado que corresponda con el criterio de búsqueda"
2000
 
2001
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2002
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:388
2003
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2004
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2005
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2006
  msgid "The archive page to return"
2007
  msgstr "La página de archivo a mostrar"
2008
 
2009
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:396
2010
  msgid "The number of events to return on each page"
2011
  msgstr "El número de eventos a mostrar en cada página"
2012
 
2013
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:422
2014
  msgid "Events should be assigned one of the specified categories slugs or IDs"
2015
  msgstr "Los eventos deberían ser asignados con uno de los slugs o IDs de las categorías especificadas"
2016
 
2017
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:430
2018
  msgid "Events should be assigned one of the specified tags slugs or IDs"
2019
  msgstr "Los eventos deberían ser asignados con uno de los slugs o IDs de las categorías especificadas"
2020
 
2021
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:358
2022
  msgid "Returns all the upcoming events matching the search criteria"
2023
  msgstr "Regresa todos los eventos futuros que correspondan con los criterios de búsqueda"
2024
 
2025
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:36
2026
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:366
2027
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:64
2028
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:53
2029
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:61
@@ -2238,13 +2259,13 @@ msgstr "Tres meses"
2238
  msgid "three months"
2239
  msgstr "tres meses"
2240
 
2241
- #: src/Tribe/Aggregator/Tabs/New.php:373
2242
  msgid "%1$d new event tag was created."
2243
  msgid_plural "%1$d new event tags were created."
2244
  msgstr[0] "%1$d nueva etiqueta de evento fue creada."
2245
  msgstr[1] "%1$d nuevas etiquetas de evento fueron creadas."
2246
 
2247
- #: src/Tribe/Aggregator/Tabs/New.php:377
2248
  msgid "View your event tags"
2249
  msgstr "Vea sus etiquetas de evento"
2250
 
@@ -2303,7 +2324,7 @@ msgstr "%1$s en %2$s"
2303
  msgid "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2304
  msgstr "Cambia los 3 eventos predeterminados por día en vista mensual. Para eliminar los límites, puede especificar -1.Por favor note que puede haber problemas de desempeño si introduce muchos eventos por día. <a href=\"%s\">Leer más</a>."
2305
 
2306
- #: src/Tribe/Main.php:765
2307
  msgctxt "all events slug"
2308
  msgid "all"
2309
  msgstr "todos"
@@ -2344,7 +2365,7 @@ msgstr "El nombre del término"
2344
  msgid "The WordPress term ID"
2345
  msgstr "El ID de término de WordPress"
2346
 
2347
- #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:36
2348
  msgid "The link to the image in the specified size on the site"
2349
  msgstr "El enlace de la imagen en el tamaño especificado en el sitio"
2350
 
@@ -2360,19 +2381,19 @@ msgstr "La altura en píxeles de la imagen en el tamaño especificado"
2360
  msgid "The image width in pixels in the specified size"
2361
  msgstr "El ancho en píxeles de la imagen en el tamaño especificado"
2362
 
2363
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:44
2364
  msgid "The details about each size available for the image"
2365
  msgstr "Los detalles de cada tamaño disponible para la imagen"
2366
 
2367
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:40
2368
  msgid "The image natural height in pixels"
2369
  msgstr "La altura natural de la imagen en píxeles"
2370
 
2371
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:36
2372
  msgid "The image natural width in pixels"
2373
  msgstr "El ancho natural de la imagen en píxeles "
2374
 
2375
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:32
2376
  msgid "The image file extension"
2377
  msgstr "La extensión del archivo de imagen"
2378
 
@@ -2380,7 +2401,7 @@ msgstr "La extensión del archivo de imagen"
2380
  msgid "The venue WordPress post ID"
2381
  msgstr "El lugar de la entrada de la ID de WordPress"
2382
 
2383
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:24
2384
  msgid "The URL to the full size version of the image"
2385
  msgstr "El URL de la imagen en tamaño completo"
2386
 
@@ -2420,7 +2441,7 @@ msgstr "La posición del símbolo de moneda local en el string de costo"
2420
  msgid "The cost currency symbol"
2421
  msgstr "El símbolo de la moneda local"
2422
 
2423
- #: src/Tribe/Main.php:4434
2424
  msgid "Keyword"
2425
  msgstr "Palabra Clave"
2426
 
@@ -2495,12 +2516,12 @@ msgstr "Control del Agregador de Eventos"
2495
  msgid "Export Events"
2496
  msgstr "Exportar Eventos"
2497
 
2498
- #: src/Tribe/Main.php:764
2499
  msgctxt "featured events slug"
2500
  msgid "featured"
2501
  msgstr "destacado"
2502
 
2503
- #: src/Tribe/Linked_Posts.php:1005
2504
  msgid "Create: <b><%= term %></b>"
2505
  msgstr "Crear: <b><%= term %></b>"
2506
 
@@ -2649,175 +2670,177 @@ msgstr "Esta configuración impatará todas las vistas de estilo de lista, inclu
2649
  msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2650
  msgstr "Las opciones seleccionadas aquí anulan las que fueron seleccionadas en las secciones \"Temas Generales\" y \"Elementos Globales\""
2651
 
2652
- #: src/Tribe/Asset/Dynamic.php:77
2653
  msgid "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2654
  msgstr "Este evento dura todo el día empezando desde %%startdatenoyear%% y terminando el %%enddatewithyear%%."
2655
 
2656
- #: src/Tribe/Asset/Dynamic.php:76
2657
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2658
  msgstr "Este evento comienza a las %%starttime%% el %%startdatenoyear%% y termina el %%enddatewithyear%%."
2659
 
2660
- #: src/Tribe/Asset/Dynamic.php:75
2661
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2662
  msgstr "Este evento empieza a las %startime% el %%startdatenoyear%% y finaliza a las %%endtime%% el %%enddatewithyear%%"
2663
 
2664
- #: src/Tribe/Asset/Dynamic.php:74
2665
  msgid "This event is all day on %%startdatewithyear%%."
2666
  msgstr "Evento de día completo el %%startdatewithyear%%."
2667
 
2668
- #: src/Tribe/Asset/Dynamic.php:73
2669
  msgid "This event is at %%starttime%% on %%startdatewithyear%%."
2670
  msgstr "Este evento es a las %%starttime%% el %%startdatewithyear%%"
2671
 
2672
- #: src/Tribe/Asset/Dynamic.php:72
2673
  msgid "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2674
  msgstr "Este evento es desde %%starttime%% hasta las %%endtime%% el %%startdatewithyear%%."
2675
 
2676
- #: src/Tribe/Asset/Dynamic.php:69
2677
  msgid "Dec"
2678
  msgstr "Dic"
2679
 
2680
- #: src/Tribe/Asset/Dynamic.php:68
2681
  msgid "Nov"
2682
  msgstr "Nov"
2683
 
2684
- #: src/Tribe/Asset/Dynamic.php:67
2685
  msgid "Oct"
2686
  msgstr "Oct"
2687
 
2688
- #: src/Tribe/Asset/Dynamic.php:66
2689
  msgid "Sep"
2690
  msgstr "Sep"
2691
 
2692
- #: src/Tribe/Asset/Dynamic.php:65
2693
  msgid "Aug"
2694
  msgstr "Ago"
2695
 
2696
- #: src/Tribe/Asset/Dynamic.php:64
2697
  msgid "Jul"
2698
  msgstr "Jul"
2699
 
2700
- #: src/Tribe/Asset/Dynamic.php:63
2701
  msgid "Jun"
2702
  msgstr "Jun"
2703
 
2704
- #: src/Tribe/Asset/Dynamic.php:61
2705
  msgid "Apr"
2706
  msgstr "Abr"
2707
 
2708
- #: src/Tribe/Asset/Dynamic.php:60
2709
  msgid "Mar"
2710
  msgstr "Mar"
2711
 
2712
- #: src/Tribe/Asset/Dynamic.php:59
2713
  msgid "Feb"
2714
  msgstr "Feb"
2715
 
2716
- #: src/Tribe/Asset/Dynamic.php:58
2717
  msgid "Jan"
2718
  msgstr "Ene"
2719
 
2720
- #: src/Tribe/Asset/Dynamic.php:55
2721
  msgid "December"
2722
  msgstr "Diciembre"
2723
 
2724
- #: src/Tribe/Asset/Dynamic.php:54
2725
  msgid "November"
2726
  msgstr "Noviembre"
2727
 
2728
- #: src/Tribe/Asset/Dynamic.php:53
2729
  msgid "October"
2730
  msgstr "Octubre"
2731
 
2732
- #: src/Tribe/Asset/Dynamic.php:52
2733
  msgid "September"
2734
  msgstr "Septiembre"
2735
 
2736
- #: src/Tribe/Asset/Dynamic.php:51
2737
  msgid "August"
2738
  msgstr "Agosto"
2739
 
2740
- #: src/Tribe/Asset/Dynamic.php:50
2741
  msgid "July"
2742
  msgstr "Julio"
2743
 
2744
- #: src/Tribe/Asset/Dynamic.php:49
2745
  msgid "June"
2746
  msgstr "Junio"
2747
 
2748
- #: src/Tribe/Asset/Dynamic.php:48 src/Tribe/Asset/Dynamic.php:62
 
 
2749
  msgid "May"
2750
  msgstr "Mayo"
2751
 
2752
- #: src/Tribe/Asset/Dynamic.php:47
2753
  msgid "April"
2754
  msgstr "Abril"
2755
 
2756
- #: src/Tribe/Asset/Dynamic.php:46
2757
  msgid "March"
2758
  msgstr "Marzo"
2759
 
2760
- #: src/Tribe/Asset/Dynamic.php:45
2761
  msgid "February"
2762
  msgstr "Febrero"
2763
 
2764
- #: src/Tribe/Asset/Dynamic.php:44
2765
  msgid "January"
2766
  msgstr "Enero"
2767
 
2768
- #: src/Tribe/Asset/Dynamic.php:41
2769
  msgid "Sat"
2770
  msgstr "Sáb"
2771
 
2772
- #: src/Tribe/Asset/Dynamic.php:40
2773
  msgid "Fri"
2774
  msgstr "Vie"
2775
 
2776
- #: src/Tribe/Asset/Dynamic.php:39
2777
  msgid "Thu"
2778
  msgstr "Jue"
2779
 
2780
- #: src/Tribe/Asset/Dynamic.php:38
2781
  msgid "Wed"
2782
  msgstr "Mie"
2783
 
2784
- #: src/Tribe/Asset/Dynamic.php:37
2785
  msgid "Tue"
2786
  msgstr "Mar"
2787
 
2788
- #: src/Tribe/Asset/Dynamic.php:36
2789
  msgid "Mon"
2790
  msgstr "Lun"
2791
 
2792
- #: src/Tribe/Asset/Dynamic.php:35
2793
  msgid "Sun"
2794
  msgstr "Dom"
2795
 
2796
- #: src/Tribe/Asset/Dynamic.php:32
2797
  msgid "Saturday"
2798
  msgstr "Sábado"
2799
 
2800
- #: src/Tribe/Asset/Dynamic.php:31
2801
  msgid "Friday"
2802
  msgstr "Viernes"
2803
 
2804
- #: src/Tribe/Asset/Dynamic.php:30
2805
  msgid "Thursday"
2806
  msgstr "Jueves"
2807
 
2808
- #: src/Tribe/Asset/Dynamic.php:29
2809
  msgid "Wednesday"
2810
  msgstr "Miércoles"
2811
 
2812
- #: src/Tribe/Asset/Dynamic.php:28
2813
  msgid "Tuesday"
2814
  msgstr "Martes"
2815
 
2816
- #: src/Tribe/Asset/Dynamic.php:27
2817
  msgid "Monday"
2818
  msgstr "Lunes"
2819
 
2820
- #: src/Tribe/Asset/Dynamic.php:26
2821
  msgid "Sunday"
2822
  msgstr "Domingo"
2823
 
@@ -2898,11 +2921,11 @@ msgstr "Para empezar a usar %1$s, por favor instale y active la última versión
2898
  msgid "Unknown service message"
2899
  msgstr "Mensaje de servicio desconocido"
2900
 
2901
- #: src/Tribe/Aggregator/Record/List_Table.php:533
2902
  msgid "Unknown"
2903
  msgstr "Desconocido"
2904
 
2905
- #: src/Tribe/Aggregator/Record/Abstract.php:1205
2906
  msgid "When this import was last scheduled to run, the daily limit for your Event Aggregator license had already been reached."
2907
  msgstr "Cuando esta importación fue programada para ejecutarse, el límite diario de su licencia de Agregador de Eventos ya había sido alcanzado."
2908
 
@@ -3639,7 +3662,7 @@ msgctxt "Abbreviation for the miles unit of measure"
3639
  msgid "mi"
3640
  msgstr "mil"
3641
 
3642
- #: src/Tribe/Main.php:983
3643
  msgid "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3644
  msgstr "El %3$s \"%1$s\" utiliza el slug \"/%2$s\": el plugin Events Calendar mostrará su calendario en lugar de la página."
3645
 
@@ -3864,133 +3887,133 @@ msgstr "en espera"
3864
  msgid "Scheduled Imports"
3865
  msgstr "Importaciones Programadas"
3866
 
3867
- #: src/Tribe/Aggregator/Tabs/New.php:603
3868
  msgid "Renew your Event Aggregator license"
3869
  msgstr "Renueve su licencia del Agregador de Eventos"
3870
 
3871
- #: src/Tribe/Aggregator/Tabs/New.php:600
3872
  msgid "Renew your license in order to import events from Facebook, iCalendar, Google, or Meetup."
3873
  msgstr "Renueve su licencia para poder importar eventos de Facebook, iCalendar, Google o Meetup."
3874
 
3875
- #: src/Tribe/Aggregator/Tabs/New.php:599
3876
  msgid "Your Event Aggregator license is expired."
3877
  msgstr "Su licencia del Agregador de eventos ha expirado."
3878
 
3879
- #: src/Tribe/Aggregator/Tabs/New.php:551
3880
  msgid "Learn More"
3881
  msgstr "Saber más"
3882
 
3883
- #: src/Tribe/Aggregator/Tabs/New.php:546 src/Tribe/Aggregator/Tabs/New.php:553
3884
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:19
3885
  msgid "opens in a new window"
3886
  msgstr "abre en una nueva ventana"
3887
 
3888
- #: src/Tribe/Aggregator/Tabs/New.php:544
3889
  msgid "Buy It Now"
3890
  msgstr "Compre Ahora"
3891
 
3892
- #: src/Tribe/Aggregator/Tabs/New.php:541
3893
  msgid "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3894
  msgstr "Con el Agregador de Eventos, puede importar eventos de Facebook, iCalendar, Google y Meetup.com de forma rápida."
3895
 
3896
- #: src/Tribe/Aggregator/Tabs/New.php:539
3897
  msgid "Import Using Event Aggregator"
3898
  msgstr "Importar utilizando el Agregador de Eventos"
3899
 
3900
- #: src/Tribe/Aggregator/Tabs/New.php:452
3901
  msgid "Unable to save credentials"
3902
  msgstr "No es posible guardar los credenciales"
3903
 
3904
- #: src/Tribe/Aggregator/Tabs/New.php:445
3905
  msgid "Credentials have been saved"
3906
  msgstr "Los credenciales han sido guardados"
3907
 
3908
- #: src/Tribe/Aggregator/Tabs/New.php:436
3909
  msgid "The Meetup API key is required."
3910
  msgstr "La Clave API de Meetup es requerida."
3911
 
3912
- #: src/Tribe/Aggregator/Tabs/New.php:427
3913
  msgid "Invalid credential save nonce"
3914
  msgstr ""
3915
 
3916
- #: src/Tribe/Aggregator/Tabs/New.php:417
3917
  msgid "Invalid credential save request"
3918
  msgstr "Requerimiento para guardar credenciales inválido"
3919
 
3920
- #: src/Tribe/Aggregator/Tabs/New.php:405
3921
  msgid "View your scheduled imports."
3922
  msgstr "Ver sus importaciones programadas."
3923
 
3924
- #: src/Tribe/Aggregator/Tabs/New.php:401
3925
  msgid "The next import is scheduled for %1$s."
3926
  msgstr "La próxima importación esta programada para %1$s."
3927
 
3928
- #: src/Tribe/Aggregator/Tabs/New.php:394
3929
  msgctxt "separator between date and time"
3930
  msgid " at "
3931
  msgstr "a la(s)"
3932
 
3933
- #: src/Tribe/Aggregator/Tabs/New.php:390
3934
  msgid "Your scheduled import was saved and the first import is complete!"
3935
  msgstr "¡Su importación programada fue guardada y la primera importación fue completada!"
3936
 
3937
- #: src/Tribe/Aggregator/Tabs/New.php:365
3938
  msgid "View your event categories"
3939
  msgstr "Ver sus categorías de evento"
3940
 
3941
- #: src/Tribe/Aggregator/Tabs/New.php:361
3942
  msgid "%1$d new event category was created."
3943
  msgid_plural "%1$d new event categories were created."
3944
  msgstr[0] "%1$d nueva categoría de evento fue creada."
3945
  msgstr[1] "%1$d nuevas categorías de evento fueron creadas."
3946
 
3947
- #: src/Tribe/Aggregator/Tabs/New.php:352
3948
  msgid "View your event organizers"
3949
  msgstr "Ver sus organizadores de evento"
3950
 
3951
- #: src/Tribe/Aggregator/Tabs/New.php:348
3952
  msgid "%1$d new organizer was imported."
3953
  msgid_plural "%1$d new organizers were imported."
3954
  msgstr[0] "%1$d nuevo organizador fue importado."
3955
  msgstr[1] "%1$d nuevos organizadores fueron importados."
3956
 
3957
- #: src/Tribe/Aggregator/Tabs/New.php:340
3958
  msgid "View your event venues"
3959
  msgstr "Ver los recintos de los eventos"
3960
 
3961
- #: src/Tribe/Aggregator/Tabs/New.php:336
3962
  msgid "%1$d new venue was imported."
3963
  msgid_plural "%1$d new venues were imported."
3964
  msgstr[0] "Se importó %1$d recinto nuevo."
3965
  msgstr[1] "Se importaron %1$d recintos nuevos."
3966
 
3967
- #: src/Tribe/Aggregator/Tabs/New.php:326
3968
  msgid "View all %s"
3969
  msgstr "Ver todo %s"
3970
 
3971
- #: src/Tribe/Aggregator/Tabs/New.php:318
3972
  msgid "No %1$s were imported or updated."
3973
  msgstr "Ningún %1$s fueron importados o actualizados."
3974
 
3975
- #: src/Tribe/Aggregator/Tabs/New.php:311
3976
  msgid "%1$d new image was imported."
3977
  msgid_plural "%1$d new images were imported."
3978
  msgstr[0] "%1$d nueva imagen fue importada."
3979
  msgstr[1] "%1$d nuevas imágenes fueron importadas."
3980
 
3981
- #: src/Tribe/Aggregator/Tabs/New.php:302
3982
  msgid "%1$d already-imported %2$s was skipped."
3983
  msgid_plural "%1$d already-imported %2$s were skipped."
3984
  msgstr[0] "%1$d ya importado %2$s fue ignorado."
3985
  msgstr[1] "%1$d ya importados %2$s fueron ignorados."
3986
 
3987
- #: src/Tribe/Aggregator/Tabs/New.php:291
3988
  msgid "%1$d existing %2$s was updated."
3989
  msgid_plural "%1$d existing %2$s were updated."
3990
  msgstr[0] "%1$d existente %2$s fue actualizado."
3991
  msgstr[1] "%1$d existentes %2$s fueron actualizados."
3992
 
3993
- #: src/Tribe/Aggregator/Tabs/New.php:279
3994
  msgid "%1$d new %2$s was imported."
3995
  msgid_plural "%1$d new %2$s were imported."
3996
  msgstr[0] "%1$d nueva %2$s fue importada."
@@ -4254,7 +4277,7 @@ msgstr "Récords del Agregador"
4254
  msgid "Events Aggregator Record"
4255
  msgstr "Récord del Agregador de Eventos"
4256
 
4257
- #: src/Tribe/Aggregator/Record/Queue_Realtime.php:178
4258
  msgid "Unable to continue inserting data. Please reload this page to continue/try again."
4259
  msgstr "No es posible continuar insertando data. Por favor vuelva a cargar esta página para continuar/intentar de nuevo."
4260
 
@@ -4274,87 +4297,87 @@ msgstr "Creado:"
4274
  msgid "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4275
  msgstr "Su importación está en progreso. No se preocupe, puede navegar&ndash;la importación continuará en el fondo."
4276
 
4277
- #: src/Tribe/Aggregator/Record/Queue_Processor.php:234
4278
  msgid "Could not process queue for Import Record %1$d: %2$s"
4279
  msgstr "No se pudo procesar cola de espera para el Récord de Importación %1$d: %2$s"
4280
 
4281
- #: src/Tribe/Aggregator/Record/List_Table.php:657
4282
  msgid "Select %s"
4283
  msgstr "Seleccionar %s"
4284
 
4285
- #: src/Tribe/Aggregator/Record/List_Table.php:622
4286
- #: src/Tribe/Aggregator/Record/List_Table.php:631
4287
- #: src/Tribe/Aggregator/Record/List_Table.php:639
4288
  msgid "updated"
4289
  msgstr "actualizado"
4290
 
4291
- #: src/Tribe/Aggregator/Record/List_Table.php:620
4292
- #: src/Tribe/Aggregator/Record/List_Table.php:628
4293
- #: src/Tribe/Aggregator/Record/List_Table.php:636
4294
  msgid "new"
4295
  msgstr "nuevo"
4296
 
4297
- #: src/Tribe/Aggregator/Record/List_Table.php:617
4298
  msgid "Latest Import:"
4299
  msgstr "Última Importación:"
4300
 
4301
- #: src/Tribe/Aggregator/Record/List_Table.php:615
4302
  msgid "all time"
4303
  msgstr "siempre"
4304
 
4305
- #: src/Tribe/Aggregator/Record/List_Table.php:589
4306
  msgid "One Time"
4307
  msgstr "Una Vez"
4308
 
4309
- #: src/Tribe/Aggregator/Record/List_Table.php:586
4310
  msgid "Invalid Frequency"
4311
  msgstr "Frecuencia no válida"
4312
 
4313
- #: src/Tribe/Aggregator/Record/List_Table.php:556 src/Tribe/Aggregator.php:426
4314
  #: src/Tribe/Ignored_Events.php:357
4315
  #: src/admin-views/tribe-options-addons-api.php:36
4316
  msgctxt "in human readable time"
4317
  msgid "in about %s"
4318
  msgstr "en unos %s"
4319
 
4320
- #: src/Tribe/Aggregator/Record/List_Table.php:554 src/Tribe/Aggregator.php:424
4321
  #: src/Tribe/Ignored_Events.php:355
4322
  #: src/admin-views/tribe-options-addons-api.php:34
4323
  msgctxt "human readable time ago"
4324
  msgid "about %s ago"
4325
  msgstr "alrededor de %s tiempo atrás"
4326
 
4327
- #: src/Tribe/Aggregator/Record/List_Table.php:506
4328
  msgid "Radius:"
4329
  msgstr "Radio:"
4330
 
4331
- #: src/Tribe/Aggregator/Record/List_Table.php:489
4332
  msgid "Keywords:"
4333
  msgstr "Palabras clave:"
4334
 
4335
- #: src/Tribe/Aggregator/Record/List_Table.php:476
4336
  #: src/Tribe/Ignored_Events.php:337
4337
  msgctxt "record via origin"
4338
  msgid "via "
4339
  msgstr "vía"
4340
 
4341
- #: src/Tribe/Aggregator/Record/List_Table.php:433
4342
  msgid "Import preview"
4343
  msgstr "Vista previa de la importación"
4344
 
4345
- #: src/Tribe/Aggregator/Record/List_Table.php:429
4346
  msgid "Import pending"
4347
  msgstr "Importación pendiente"
4348
 
4349
- #: src/Tribe/Aggregator/Record/List_Table.php:425
4350
  msgid "Import schedule"
4351
  msgstr "Calendario de importación"
4352
 
4353
- #: src/Tribe/Aggregator/Record/List_Table.php:413
4354
  msgid "Import failed"
4355
  msgstr "Importación fallida"
4356
 
4357
- #: src/Tribe/Aggregator/Record/List_Table.php:409
4358
  msgid "Import completed"
4359
  msgstr "Importación completada"
4360
 
@@ -4439,11 +4462,11 @@ msgstr "ICS"
4439
  msgid "Eventbrite"
4440
  msgstr "Eventbrite"
4441
 
4442
- #: src/Tribe/Aggregator/Record/Abstract.php:1148
4443
  msgid "Deleted Attachment: %d"
4444
  msgstr "Eliminar Adjunto: %d"
4445
 
4446
- #: src/Tribe/Aggregator/Record/Abstract.php:496
4447
  msgid "Record: "
4448
  msgstr "Récord:"
4449
 
@@ -4478,7 +4501,7 @@ msgid "Hide Filters"
4478
  msgstr "Ocultar filtros"
4479
 
4480
  #: src/Tribe/Aggregator/Page.php:96
4481
- #: src/Tribe/Aggregator/Record/List_Table.php:485
4482
  msgid "View Filters"
4483
  msgstr "Ver filtros"
4484
 
@@ -4836,7 +4859,7 @@ msgid "There is an update for %s. You'll need to %scheck your license%s to have
4836
  msgstr "Hay una actualización para %s. Necesita %srevisar su licencia%s para tener acceso a actualizaciones, descargas y soporte."
4837
 
4838
  #: common/src/Tribe/PUE/Checker.php:961 common/src/Tribe/PUE/Notices.php:285
4839
- #: src/Tribe/Aggregator/Record/Abstract.php:1163
4840
  msgid " (opens in a new window)"
4841
  msgstr "(abre en una nueva ventana)"
4842
 
@@ -5137,7 +5160,7 @@ msgstr "Plantillas añadidas o actualizadas con esta versión (%s):"
5137
  msgid "No notable changes detected"
5138
  msgstr "No se han detectado cambios notables"
5139
 
5140
- #: src/Tribe/Main.php:2735
5141
  msgid " (View Full %1$s Description Here: %2$s)"
5142
  msgstr " (Ver descripción completa %1$s Descripción: %2$s)"
5143
 
@@ -5185,147 +5208,147 @@ msgstr "%s Nombre no puede estar vacio"
5185
  msgid "Keep the Core Plugin %sFREE%s!"
5186
  msgstr ""
5187
 
5188
- #: src/Tribe/Template_Factory.php:300
5189
  msgid "No results were found for %1$s in or near %2$s."
5190
  msgstr "No se encontraron resultados en %1$so cerca de %2$s."
5191
 
5192
- #: src/Tribe/Template_Factory.php:298
5193
  msgid "There were no results found for %s."
5194
  msgstr "No se encontraron resultados para %s."
5195
 
5196
- #: src/Tribe/Template/Month.php:456
5197
  msgid "There were no results found for %s this month. Try searching next month."
5198
  msgstr "No se encontraron resultados para %s este mes. Intenta buscando en el próximo mes."
5199
 
5200
- #: src/Tribe/Template/Day.php:153
5201
  msgid "No %1$s scheduled for %2$s. Please try another day."
5202
  msgstr "No existen %1$s programados el %2$s. Por favor busca otro día."
5203
 
5204
- #: src/Tribe/Main.php:4254
5205
  msgid "Check out the %savailable add-ons%s."
5206
  msgstr "Observe los %sadd-ons disponibles%s."
5207
 
5208
- #: src/Tribe/Main.php:1923
5209
  msgid "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5210
  msgstr ""
5211
 
5212
- #: src/Tribe/Main.php:1854 src/Tribe/Main.php:1874
5213
  msgid "%1$s scheduled for: %2$s."
5214
  msgstr "%1$s programado para: %2$s."
5215
 
5216
- #: src/Tribe/Main.php:1835
5217
  msgid "%1$s draft updated. %2$sPreview %3$s"
5218
  msgstr "%1$s borrador actualizado. %2$sVista previa %3$s"
5219
 
5220
- #: src/Tribe/Main.php:1826
5221
  msgid "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5222
  msgstr "%1$s programado para: %2$s. %3$sAvance %4$s"
5223
 
5224
- #: src/Tribe/Main.php:1820
5225
  msgid "%1$s submitted. %2$sPreview %3$s"
5226
  msgstr "%1$s cargados. %2$sVista previa %3$s"
5227
 
5228
- #: src/Tribe/Main.php:1802
5229
  msgid "%1$s updated. %2$sView %1$s%3$s"
5230
  msgstr "%1$s actualizado. %2$sVer %3$s"
5231
 
5232
- #: src/Tribe/Main.php:1477
5233
  msgid "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5234
  msgstr ""
5235
 
5236
- #: src/Tribe/Main.php:1112
5237
  msgid "If you have a valid license for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5238
  msgstr "Si tiene una licencia válida para uno de nuestros plugins premium, puede %s en nuestros foros de soporte premium. Nuestro equipo de soporte monitorea los foros y responderá su pregunta entre 24-48 horas después de la solicitud (durante los días de semana)."
5239
 
5240
- #: src/Tribe/Main.php:1111
5241
  msgid "post a thread"
5242
  msgstr "publicar una cadena"
5243
 
5244
- #: src/Tribe/Main.php:1107
5245
  msgid "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays."
5246
  msgstr "<strong>¿Necesita soporte inmediato?</strong> Ofrecemos %1$s con la compra de nuestros plugins premium (como %2$s). Compre una licencia y podrá preguntar en los foros directamente y esperar una respuesta entre 24-48 horas durante los días de semana."
5247
 
5248
- #: src/Tribe/Main.php:1103
5249
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5250
  msgstr "Si ha probado los pasos descritos arriba y aún tiene problemas, puede realizar una entrada a nuestra cadena de los fotos de WordPress.org para %1$s o %2$s. Nuestro equipo de soporte monitorea estos foros una vez a la semana y esta feliz de ayudarlo."
5251
 
5252
- #: src/Tribe/Main.php:1102
5253
  msgid "open-source forum on WordPress.org"
5254
  msgstr "foro de código abierto en WordPress.org"
5255
 
5256
- #: src/Tribe/Main.php:1098
5257
  msgid "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays"
5258
  msgstr "<strong>¿Necesita soporte inmediato?</strong> Ofrecemos %s con la compra de nuestros plugins premium. Compre una licencia y podrá preguntar en los foros directamente y esperar una respuesta entre 24-48 horas durante los días de semana."
5259
 
5260
- #: src/Tribe/Main.php:1097 src/Tribe/Main.php:1105
5261
  msgid "premium support on our website"
5262
  msgstr "soporte premium en nuestra página web"
5263
 
5264
- #: src/Tribe/Main.php:1095
5265
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5266
  msgstr "Si ha probado los pasos descritos arriba y aún tiene problemas, puede realizar una entrada a nuestra cadena de los foros de WordPress.org para %1$s o %2$s. Nuestro equipo de soporte monitorea estos foros una vez a la semana y esta feliz de ayudarlo."
5267
 
5268
- #: src/Tribe/Main.php:1094
5269
  msgid "Events Tickets"
5270
  msgstr "Entradas de eventos"
5271
 
5272
- #: src/Tribe/Main.php:1079
5273
  msgid "Customizing the Events plugins"
5274
  msgstr "Personalizar los plugins de Eventos"
5275
 
5276
- #: src/Tribe/Main.php:1079
5277
  msgid "%s: Code and guides for customizing your calendar in useful and interesting ways."
5278
  msgstr "%s: Código y guías para personalizar su calendario de maneras útiles e interesantes."
5279
 
5280
- #: src/Tribe/Main.php:1077
5281
  msgid "Troubleshooting common problems"
5282
  msgstr "Problemas comunes de la Resolución de Problemas"
5283
 
5284
- #: src/Tribe/Main.php:1077
5285
  msgid "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5286
  msgstr "%s: ¿Encuentra algún problema con su calendario? Entre aquí para encontrar el error y cómo arreglarlo."
5287
 
5288
- #: src/Tribe/Main.php:1075
5289
  msgid "Using stylesheets and page templates"
5290
  msgstr "Utilizar estilos y plantillas de página"
5291
 
5292
- #: src/Tribe/Main.php:1075
5293
  msgid "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5294
  msgstr "%s: Una mirada de las plantillas predeterminadas y de los estilos que están incluidos en el plugin, así como la manera de cambiarlos."
5295
 
5296
- #: src/Tribe/Main.php:1073
5297
  msgid "Themer’s Guide"
5298
  msgstr "Guía del Desarrollador de Temas"
5299
 
5300
- #: src/Tribe/Main.php:1073
5301
  msgid "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5302
  msgstr "%s: Nuestro resumen más completo para personalizar el calendario para que cumpla con todas sus necesidades, incluyendo plantillas y estilos personalizados."
5303
 
5304
- #: src/Tribe/Main.php:1071
5305
  msgid "Features overview"
5306
  msgstr "Vista de las características"
5307
 
5308
- #: src/Tribe/Main.php:1071
5309
  msgid "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5310
  msgstr "%s: Una mirada completa a las características que puede esperar así como la forma de utilizarlas."
5311
 
5312
- #: src/Tribe/Main.php:1069
5313
  msgid "Settings overview"
5314
  msgstr "Vista de la Configuración"
5315
 
5316
- #: src/Tribe/Main.php:1069
5317
  msgid "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5318
  msgstr "%s: Una guía paso a paso de The Events Calendar y las configuraciones disponibles para Usted."
5319
 
5320
- #: src/Tribe/Main.php:1066
5321
  msgid "Support for The Events Calendar"
5322
  msgstr "Soporte para The Events Calendar"
5323
 
5324
- #: src/Tribe/Main.php:1055
5325
  msgid "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5326
  msgstr "Estamos comprometidos a ayudarle para hacer que su calendario sera espectacular y que tenga muchos recursos disponibles, incluyendo útiles %s para que su calendario funcione perfectamente."
5327
 
5328
- #: src/Tribe/Main.php:1053
5329
  msgid "New User Primer"
5330
  msgstr "Manual Básico de Nuevo Usuario"
5331
 
@@ -5348,7 +5371,7 @@ msgstr "Estado predeterminado a ser utilizado en eventos importados"
5348
  msgid "CSV Import Settings"
5349
  msgstr "Configuración para Importar CSV"
5350
 
5351
- #: src/Tribe/Asset/Bootstrap_Datepicker.php:26
5352
  msgid "Clear"
5353
  msgstr "Borrar"
5354
 
@@ -5360,7 +5383,7 @@ msgstr "Agregar otro %s"
5360
  msgid "Create New %s"
5361
  msgstr "Crear nuevo %s"
5362
 
5363
- #: src/Tribe/Organizer.php:371
5364
  msgid "Unnamed %s"
5365
  msgstr "%s sin Nombre"
5366
 
@@ -5548,7 +5571,7 @@ msgstr "Cancelar"
5548
  msgid "%s must be a positive number or percent."
5549
  msgstr "%s debe ser un número positivo o porcentaje."
5550
 
5551
- #: src/Tribe/Main.php:1000
5552
  msgid "%1$s or %2$s"
5553
  msgstr "%1$s por %2$s"
5554
 
@@ -5605,7 +5628,7 @@ msgstr "Más información"
5605
  msgid "Day Navigation"
5606
  msgstr "Navegación por día"
5607
 
5608
- #: src/Tribe/Aggregator/Tabs/New.php:388
5609
  msgid "Import complete!"
5610
  msgstr "¡Importación completa!"
5611
 
@@ -5847,7 +5870,7 @@ msgid "More..."
5847
  msgstr "Más..."
5848
 
5849
  #: common/src/Tribe/Admin/Help_Page.php:194 common/src/Tribe/Plugins_API.php:43
5850
- #: src/Tribe/Main.php:1106
5851
  msgid "Events Calendar PRO"
5852
  msgstr "Events Calendar PRO"
5853
 
@@ -6286,7 +6309,7 @@ msgstr "URL:"
6286
  msgid "%s Website"
6287
  msgstr "Página Web %s"
6288
 
6289
- #: src/Tribe/Aggregator/Record/List_Table.php:502
6290
  msgid "Location:"
6291
  msgstr "Ubicación:"
6292
 
@@ -7691,15 +7714,15 @@ msgstr "Las plantillas reemplazadas se deben mover al subdirectorio correcto: tr
7691
  msgid "Template overrides should be moved to the correct subdirectory: %s"
7692
  msgstr "Las plantillas reemplazadas se deben mover al subdirectorio correcto: %s"
7693
 
7694
- #: src/Tribe/Template_Factory.php:306
7695
  msgid "No previous %s "
7696
  msgstr "No hay %s anteriores."
7697
 
7698
- #: src/Tribe/Template_Factory.php:304 src/Tribe/Template_Factory.php:309
7699
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7700
  msgstr "No hay %1$s así listado en %2$s. Favor de ver el calendario por una lista de %3$s."
7701
 
7702
- #: src/Tribe/Template_Factory.php:302
7703
  msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7704
  msgstr "No hay proximo %1$s listado en %2$s. Revisa los próximos %3$s en éste categoría o ver el calendario completo."
7705
 
@@ -7707,28 +7730,28 @@ msgstr "No hay proximo %1$s listado en %2$s. Revisa los próximos %3$s en éste
7707
  msgid "This %s has passed."
7708
  msgstr "Este %s ha pasado."
7709
 
7710
- #: src/Tribe/Template/Month.php:953
7711
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7712
  msgstr "La fecha \"%s\" no es válida &ndash; se muestra el mes actual en lugar de éste."
7713
 
7714
- #: src/Tribe/Template/Month.php:462 src/Tribe/Template_Factory.php:311
7715
  msgid "There were no results found."
7716
  msgstr "No se ha encontrado ningún resultado."
7717
 
7718
- #: src/Tribe/Template/Month.php:460
7719
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7720
  msgstr "No existe %1$s así listado en %2$s. Favor de intentar ver el calendario completo para ver todos los eventos."
7721
 
7722
- #: src/Tribe/Template/Day.php:151
7723
  msgid "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7724
  msgstr "No hay coincidencias %1$s listadas bajo %2$s programadas para %3$s. Por favor intente con otro día."
7725
 
7726
- #: src/Tribe/Template/Day.php:117 src/Tribe/Template/Day.php:133
7727
  msgid "Ongoing"
7728
  msgstr "En marcha"
7729
 
7730
- #: src/Tribe/Aggregator/Page.php:82 src/Tribe/Template/Day.php:114
7731
- #: src/Tribe/Template/Day.php:130
7732
  msgid "All Day"
7733
  msgstr "Todo el Día"
7734
 
@@ -7823,50 +7846,50 @@ msgstr "Clave de licencia"
7823
  msgid "Error"
7824
  msgstr "Error"
7825
 
7826
- #: src/Tribe/Main.php:4597
7827
  msgid "Once Every 30 Mins"
7828
  msgstr "Una vez cada 30 minutos"
7829
 
7830
- #: src/Tribe/Main.php:4517
7831
  msgid "Day Of"
7832
  msgstr "Día de"
7833
 
7834
- #: src/Tribe/Main.php:4515
7835
  msgid "%s From"
7836
  msgstr "%s Desde"
7837
 
7838
- #: src/Tribe/Main.php:4511
7839
  msgid "%s In"
7840
  msgstr "%s En"
7841
 
7842
- #: src/Tribe/Main.php:4506 src/Tribe/Main.php:4531
7843
  #: src/admin-views/aggregator/origins/refine.php:7
7844
  msgid "Date"
7845
  msgstr "Fecha"
7846
 
7847
- #: src/Tribe/Main.php:4433
7848
  msgid "Search"
7849
  msgstr "Buscar"
7850
 
7851
- #: src/Tribe/Main.php:4407 src/admin-views/aggregator/fields/schedule.php:44
7852
  #: src/admin-views/aggregator/fields/schedule.php:62
7853
  msgid "Day"
7854
  msgstr "Día"
7855
 
7856
- #: src/Tribe/Main.php:4390
7857
  msgid "Month"
7858
  msgstr "Mes"
7859
 
7860
- #: src/Tribe/Main.php:4372
7861
  msgid "List"
7862
  msgstr "Lista"
7863
 
7864
- #: src/Tribe/Main.php:4356
7865
  msgid "Calendar"
7866
  msgstr "Calendario"
7867
 
7868
  #: common/src/Tribe/Settings.php:254
7869
- #: src/Tribe/Admin/Bar/Default_Configurator.php:89 src/Tribe/Main.php:4355
7870
  msgid "Settings"
7871
  msgstr "Ajustes"
7872
 
@@ -7880,7 +7903,7 @@ msgstr "CSV"
7880
  msgid "Add %s"
7881
  msgstr "Añadir %s"
7882
 
7883
- #: src/Tribe/Admin/Bar/Default_Configurator.php:45 src/Tribe/Main.php:4306
7884
  msgid "View Calendar"
7885
  msgstr "Ver calendario"
7886
 
@@ -7888,53 +7911,53 @@ msgstr "Ver calendario"
7888
  msgid "%s"
7889
  msgstr "%s"
7890
 
7891
- #: src/Tribe/Main.php:4253
7892
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7893
  msgstr "¿Buscas funcionalidades adicionales, incluyendo eventos periódicos, venta de entradas, eventos añadidos por el público, vistas adicionales y más?"
7894
 
7895
- #: src/Tribe/Main.php:4248
7896
  msgid "Additional Functionality"
7897
  msgstr "Funcionalidad adicional"
7898
 
7899
- #: src/Tribe/Main.php:4203
7900
  msgid "News from Modern Tribe"
7901
  msgstr "Noticias de Modern Tribe"
7902
 
7903
- #: src/Tribe/Main.php:4183
7904
  msgid "View All Add-Ons"
7905
  msgstr "Ver todos los complementos (Add-Ons)"
7906
 
7907
- #: src/Tribe/Main.php:4180
7908
  msgid "Support"
7909
  msgstr "Soporte"
7910
 
7911
- #: src/Tribe/Main.php:3828 src/Tribe/Main.php:3841
7912
  msgid "%s Information"
7913
  msgstr "Información de %s"
7914
 
7915
- #: src/Tribe/Main.php:3819
7916
  msgid "%s Options"
7917
  msgstr "Opciones de %s"
7918
 
7919
- #: src/Tribe/Main.php:3742 src/Tribe/Main.php:3777
7920
  #: src/functions/template-tags/day.php:157
7921
  #: src/functions/template-tags/day.php:178
7922
  msgid "Date out of range."
7923
  msgstr "Fecha fuera de rango."
7924
 
7925
- #: src/Tribe/Main.php:2344
7926
  msgid "all"
7927
  msgstr "todos"
7928
 
7929
- #: src/Tribe/Main.php:2343 src/functions/template-tags/general.php:111
7930
  msgid "events"
7931
  msgstr "eventos"
7932
 
7933
- #: src/Tribe/Main.php:2342 src/functions/template-tags/general.php:79
7934
  msgid "event"
7935
  msgstr "evento"
7936
 
7937
- #: src/Tribe/Main.php:2341
7938
  msgid "page"
7939
  msgstr "página"
7940
 
@@ -7946,7 +7969,8 @@ msgstr "Red"
7946
  msgid "Done"
7947
  msgstr "Hecho"
7948
 
7949
- #: common/src/Tribe/Main.php:272 src/Tribe/Asset/Bootstrap_Datepicker.php:27
 
7950
  #: src/functions/template-tags/day.php:104
7951
  msgid "Today"
7952
  msgstr "Hoy"
@@ -7959,141 +7983,141 @@ msgstr "Anterior"
7959
  msgid "Next"
7960
  msgstr "Siguiente"
7961
 
7962
- #: src/Tribe/Linked_Posts.php:1010
7963
  msgid "No saved %s exists."
7964
  msgstr "No hay %s guardado."
7965
 
7966
- #: src/Tribe/Linked_Posts.php:840
7967
  msgid "Available %s"
7968
  msgstr " %s Disponibles"
7969
 
7970
- #: src/Tribe/Linked_Posts.php:836
7971
  msgid "My %s"
7972
  msgstr "Mis %s"
7973
 
7974
- #: src/Tribe/Main.php:1859 src/Tribe/Main.php:1879
7975
  msgid "%s draft updated."
7976
  msgstr "El borrador %s actualizado."
7977
 
7978
- #: src/Tribe/Main.php:1852 src/Tribe/Main.php:1872
7979
  msgid "%s submitted."
7980
  msgstr "%s enviado."
7981
 
7982
- #: src/Tribe/Main.php:1850 src/Tribe/Main.php:1870
7983
  msgid "%s published."
7984
  msgstr "%s publicado."
7985
 
7986
  #. translators: %s: date and time of the revision
7987
- #: src/Tribe/Main.php:1869
7988
  msgid "%s restored to revision from %s"
7989
  msgstr "%s restaurado a la revisión de %s"
7990
 
7991
  #. translators: Publish box date format, see http://php.net/date
7992
- #: src/Tribe/Main.php:1829 src/Tribe/Main.php:1857 src/Tribe/Main.php:1877
7993
  msgid "M j, Y @ G:i"
7994
  msgstr "M j, Y ··· G:i"
7995
 
7996
- #: src/Tribe/Main.php:1818 src/Tribe/Main.php:1851 src/Tribe/Main.php:1871
7997
  msgid "%s saved."
7998
  msgstr "%s guardado."
7999
 
8000
  #. translators: %s: date and time of the revision
8001
- #: src/Tribe/Main.php:1811 src/Tribe/Main.php:1849
8002
  msgid "%1$s restored to revision from %2$s"
8003
  msgstr "%1$s restaurada a revisión de %2$s"
8004
 
8005
- #: src/Tribe/Main.php:1809 src/Tribe/Main.php:1844 src/Tribe/Main.php:1847
8006
- #: src/Tribe/Main.php:1864 src/Tribe/Main.php:1867
8007
  msgid "%s updated."
8008
  msgstr "%s actualizado."
8009
 
8010
- #: src/Tribe/Main.php:1808 src/Tribe/Main.php:1846 src/Tribe/Main.php:1866
8011
  msgid "Custom field deleted."
8012
  msgstr "Campo personalizado borrado."
8013
 
8014
- #: src/Tribe/Main.php:1807 src/Tribe/Main.php:1845 src/Tribe/Main.php:1865
8015
  msgid "Custom field updated."
8016
  msgstr "Campo personalizado actualizado."
8017
 
8018
- #: src/Tribe/Main.php:1785
8019
  msgid "New %s Category Name"
8020
  msgstr "Nombre de nueva categoría de %s"
8021
 
8022
- #: src/Tribe/Main.php:1784
8023
  msgid "Add New %s Category"
8024
  msgstr "Añadir nueva categoría de %s"
8025
 
8026
- #: src/Tribe/Main.php:1783
8027
  msgid "Update %s Category"
8028
  msgstr "Actualizar categoría de %s"
8029
 
8030
- #: src/Tribe/Main.php:1782
8031
  msgid "Edit %s Category"
8032
  msgstr "Editar categoría de %s"
8033
 
8034
- #: src/Tribe/Main.php:1781
8035
  msgid "Parent %s Category:"
8036
  msgstr "Categoría superior de %s:"
8037
 
8038
- #: src/Tribe/Main.php:1780
8039
  msgid "Parent %s Category"
8040
  msgstr "Categoría superior de %s"
8041
 
8042
- #: src/Tribe/Main.php:1779
8043
  msgid "All %s Categories"
8044
  msgstr "Todas las categorías de %s"
8045
 
8046
- #: src/Tribe/Main.php:1778
8047
  msgid "Search %s Categories"
8048
  msgstr "Buscar categorías de %s"
8049
 
8050
- #: src/Tribe/Main.php:1777
8051
  msgid "%s Category"
8052
  msgstr "Categoría de %s"
8053
 
8054
- #: src/Tribe/Main.php:1767 src/Tribe/Organizer.php:98 src/Tribe/Venue.php:117
8055
  msgid "No %s found in Trash"
8056
  msgstr "No hay %s en la papelera"
8057
 
8058
- #: src/Tribe/Main.php:1766 src/Tribe/Organizer.php:97 src/Tribe/Venue.php:116
8059
  msgid "No %s found"
8060
  msgstr "No se encontraron %s"
8061
 
8062
- #: src/Tribe/Main.php:1765 src/Tribe/Organizer.php:96 src/Tribe/Venue.php:115
8063
  msgid "Search %s"
8064
  msgstr "Buscar %s "
8065
 
8066
- #: src/Tribe/Main.php:1764 src/Tribe/Organizer.php:95 src/Tribe/Venue.php:114
8067
  #: src/views/month/single-day.php:26
8068
  msgid "View %s"
8069
  msgstr "Mostrar %s"
8070
 
8071
- #: src/Tribe/Main.php:1763 src/Tribe/Organizer.php:94 src/Tribe/Venue.php:113
8072
  msgid "New %s"
8073
  msgstr "Nueva %s"
8074
 
8075
- #: src/Tribe/Main.php:1761 src/Tribe/Main.php:1893 src/Tribe/Main.php:1894
8076
  #: src/Tribe/Organizer.php:92 src/Tribe/Venue.php:111
8077
  msgid "Add New %s"
8078
  msgstr "Agregar nuevo %s"
8079
 
8080
- #: src/Tribe/Main.php:1760 src/Tribe/Organizer.php:91 src/Tribe/Venue.php:110
8081
  msgid "Add New"
8082
  msgstr "Agregar nuevo"
8083
 
8084
- #: src/Tribe/Main.php:1727 src/Tribe/Main.php:2339
8085
  msgid "tag"
8086
  msgstr "etiqueta"
8087
 
8088
- #: src/Tribe/Main.php:1713 src/Tribe/Main.php:2340
8089
  msgid "category"
8090
  msgstr "categoria"
8091
 
8092
- #: src/Tribe/Main.php:1465
8093
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8094
  msgstr "Lo sentimos, The Events Calendar requiere PHP %s o superior. Hable con su proveedor de Hospedaje Web para actualizar a una versión mas reciente de PHP"
8095
 
8096
- #: src/Tribe/Main.php:1462
8097
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8098
  msgstr "Lo sentimos, The Events Calendar requiere Wordpress %s o superior. Por favor, actualice su instalación de Wordpress."
8099
 
@@ -8111,72 +8135,72 @@ msgstr "Ayuda"
8111
  msgid "Display"
8112
  msgstr "Visualización"
8113
 
8114
- #: src/Tribe/Main.php:1309
8115
  msgid "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8116
  msgstr ""
8117
 
8118
- #: src/Tribe/Main.php:1297
8119
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8120
  msgstr "Su versión de The Events Calendar no se encuentra actualizada con uno de sus add-ons. Por favor, %sactualicela.%s"
8121
 
8122
- #: src/Tribe/Main.php:788
8123
  msgid "Initializing Tribe Events on %s"
8124
  msgstr "Iniciando Tribe Events en %s"
8125
 
8126
- #: src/Tribe/Main.php:763
8127
  msgid "today"
8128
  msgstr "hoy"
8129
 
8130
- #: src/Tribe/Main.php:762
8131
  msgid "day"
8132
  msgstr "día"
8133
 
8134
- #: src/Tribe/Main.php:761
8135
  msgid "past"
8136
  msgstr "pasados"
8137
 
8138
- #: src/Tribe/Main.php:760
8139
  msgid "upcoming"
8140
  msgstr "próximos"
8141
 
8142
- #: src/Tribe/Main.php:759
8143
  msgid "list"
8144
  msgstr "lista"
8145
 
8146
- #: src/Tribe/Main.php:758
8147
  msgid "month"
8148
  msgstr "mes"
8149
 
8150
- #. #-#-#-#-# the-events-calendar-code.pot (The Events Calendar 4.6.20.1)
8151
  #. #-#-#-#-#
8152
  #. Plugin Name of the plugin/theme
8153
  #: common/src/Tribe/Admin/Help_Page.php:59 common/src/Tribe/Customizer.php:569
8154
- #: common/src/Tribe/Plugins_API.php:25 src/Tribe/Main.php:751
8155
- #: src/Tribe/Main.php:1093 src/Tribe/Privacy.php:29
8156
  #: src/functions/template-tags/general.php:1345
8157
  msgid "The Events Calendar"
8158
  msgstr "The Events Calendar"
8159
 
8160
- #: src/Tribe/Main.php:1163 src/admin-views/aggregator/tabs/import-form.php:185
8161
  #: src/admin-views/aggregator/tabs/import-form.php:197
8162
  #: src/functions/template-tags/general.php:63
8163
  msgid "Event"
8164
  msgstr "Evento"
8165
 
8166
  #: common/src/Tribe/Settings.php:177 common/src/Tribe/Settings.php:241
8167
- #: common/src/Tribe/Settings.php:242 src/Tribe/Main.php:1155
8168
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:207
8169
  #: src/functions/template-tags/general.php:95
8170
  msgid "Events"
8171
  msgstr "Eventos"
8172
 
8173
- #: src/Tribe/Organizer.php:157 src/functions/template-tags/organizer.php:115
8174
  msgid "Organizer"
8175
  msgstr "Organizador"
8176
 
8177
  #: src/Tribe/Organizer.php:171
8178
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:206
8179
- #: src/functions/template-tags/organizer.php:126
8180
  msgid "Organizers"
8181
  msgstr "Organizadores"
8182
 
@@ -8440,7 +8464,7 @@ msgstr "Fecha:"
8440
  msgid "End:"
8441
  msgstr "Finaliza:"
8442
 
8443
- #: src/Tribe/Aggregator/Record/List_Table.php:498
8444
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
8445
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
8446
  #: src/views/modules/meta/details.php:66 src/views/modules/meta/details.php:91
@@ -8459,7 +8483,7 @@ msgstr "Fecha de fin"
8459
  msgid "Start Date"
8460
  msgstr "Fecha inicio"
8461
 
8462
- #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1776
8463
  msgid "%s Categories"
8464
  msgstr "Categorías de %s"
8465
 
@@ -8470,7 +8494,7 @@ msgstr ""
8470
  #: src/Tribe/Admin/Timezone_Updater.php:87
8471
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
8472
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:100
8473
- #: src/Tribe/Aggregator/Record/Queue_Realtime.php:203
8474
  msgid "%d%% complete"
8475
  msgstr "%d%% completo"
8476
 
@@ -8483,21 +8507,21 @@ msgid "Please wait while time zone data is added to your events."
8483
  msgstr ""
8484
 
8485
  #: src/Tribe/Admin/Bar/Default_Configurator.php:62
8486
- #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:211 src/Tribe/Main.php:1762
8487
- #: src/Tribe/Main.php:4862 src/Tribe/Main.php:4909 src/Tribe/Organizer.php:93
8488
  #: src/Tribe/Venue.php:112
8489
  msgid "Edit %s"
8490
  msgstr "Editar %s"
8491
 
8492
- #: src/Tribe/Main.php:4846 src/Tribe/Main.php:4903
8493
  msgid "Use Saved %s:"
8494
  msgstr "Utilizar %s guardado: "
8495
 
8496
- #: src/Tribe/Main.php:992
8497
  msgid " ask the site administrator set a different Events URL slug."
8498
  msgstr " Solicitar al administrador del sitio a establecer un diferente slug para el URL de Eventos."
8499
 
8500
- #: src/Tribe/Main.php:986
8501
  msgid "Ask the site administrator to edit the %s slug"
8502
  msgstr "Pide al administrador del sitio que edite el slug de %s"
8503
 
@@ -8505,7 +8529,7 @@ msgstr "Pide al administrador del sitio que edite el slug de %s"
8505
  msgid "Thanks for Updating The Events Calendar"
8506
  msgstr "Gracias por actualizar The Events Calendar"
8507
 
8508
- #: src/Tribe/Main.php:846 src/Tribe/Main.php:848
8509
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
8510
  msgid "Welcome to The Events Calendar"
8511
  msgstr "Bienvenido a The Events Calendar"
11
  "Language: es_VE\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
14
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:337
15
+ msgid "The event tag ID or name"
16
+ msgstr ""
17
+
18
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:331
19
+ msgid "The event category ID or name"
20
+ msgstr ""
21
+
22
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:508
23
+ msgid "Events should be filtered by their post_parent being the specified one."
24
+ msgstr ""
25
+
26
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:498
27
+ msgid "Include events with one of the post IDs specified in the array of CSV list, date filters will be ignored."
28
+ msgstr ""
29
+
30
+ #: src/Tribe/Aggregator/Record/Async_Queue.php:348
31
+ #: src/Tribe/Aggregator/Record/Void_Queue.php:122
32
+ msgid "Unable to process this import - a breakage or conflict may have resulted in the import halting."
33
+ msgstr ""
34
+
35
+ #: common/src/Tribe/Plugins_API.php:37
36
+ msgid "Event Aggregator adds massive import functionality to your calendar. Before you know it, you’ll be importing events from Meetup, Eventbrite, Google Calendar, iCalendar, and other URLs with ease. Schedule imports to run automatically behind-the-scenes or run them manually when you’re ready. Go ahead and import to your heart’s content—Event Aggregator hooks you up with a central dashboard in the admin to make managing your imports a breeze."
37
+ msgstr ""
38
+
39
  #: src/views/month/single-day.php:57
40
  msgid "%s for %s"
41
  msgstr ""
208
  msgid "Do more with Eventbrite Tickets"
209
  msgstr ""
210
 
211
+ #: src/Tribe/Main.php:4114
212
  msgid "Search for %s by month. Please use the format %s."
213
  msgstr ""
214
 
215
+ #: src/Tribe/Main.php:4109
216
  msgid "Search for %s by Date. Please use the format %s."
217
  msgstr ""
218
 
219
+ #: src/Tribe/Main.php:4077 src/Tribe/Main.php:4078
220
  msgid "2 digit month dot 4 digit year"
221
  msgstr ""
222
 
223
+ #: src/Tribe/Main.php:4076
224
  msgid "4 digit year dot 2 digit month"
225
  msgstr ""
226
 
227
+ #: src/Tribe/Main.php:4075
228
  msgid "2 digit month hyphen 4 digit year"
229
  msgstr ""
230
 
231
+ #: src/Tribe/Main.php:4072 src/Tribe/Main.php:4073 src/Tribe/Main.php:4074
232
  msgid "1 digit month hyphen 4 digit year"
233
  msgstr ""
234
 
235
+ #: src/Tribe/Main.php:4069 src/Tribe/Main.php:4071
236
  msgid "2 digit month slash 4 digit year"
237
  msgstr ""
238
 
239
+ #: src/Tribe/Main.php:4068 src/Tribe/Main.php:4070
240
  msgid "1 digit month slash 4 digit year"
241
  msgstr ""
242
 
243
+ #: src/Tribe/Main.php:4067
244
  msgid "4 digit year hyphen 2 digit month"
245
  msgstr ""
246
 
247
+ #: src/Tribe/Main.php:4063
248
  msgid "2 digit day dot 2 digit month dot 4 digit year"
249
  msgstr ""
250
 
251
+ #: src/Tribe/Main.php:4062
252
  msgid "2 digit month dot 2 digit day dot 4 digit year"
253
  msgstr ""
254
 
255
+ #: src/Tribe/Main.php:4061
256
  msgid "4 digit year dot 2 digit month dot 2 digit day"
257
  msgstr ""
258
 
259
+ #: src/Tribe/Main.php:4060
260
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
261
  msgstr ""
262
 
263
+ #: src/Tribe/Main.php:4059
264
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
265
  msgstr ""
266
 
267
+ #: src/Tribe/Main.php:4058
268
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
269
  msgstr ""
270
 
271
+ #: src/Tribe/Main.php:4057
272
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
273
  msgstr ""
274
 
275
+ #: src/Tribe/Main.php:4056
276
  msgid "2 digit day slash 2 digit month slash 4 digit year"
277
  msgstr ""
278
 
279
+ #: src/Tribe/Main.php:4055
280
  msgid "1 digit day slash 1 digit month slash 4 digit year"
281
  msgstr ""
282
 
283
+ #: src/Tribe/Main.php:4054
284
  msgid "2 digit month slash 2 digit day slash 4 digit year"
285
  msgstr ""
286
 
287
+ #: src/Tribe/Main.php:4053
288
  msgid "1 digit month slash 1 digit day slash 4 digit year"
289
  msgstr ""
290
 
291
+ #: src/Tribe/Main.php:4052
292
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
293
  msgstr ""
294
 
295
+ #: src/Tribe/Main.php:4031
296
  msgid "Search for %s by Keyword."
297
  msgstr ""
298
 
520
  msgstr ""
521
 
522
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
523
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:385
524
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
525
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
526
  msgid "The requested page was not found."
534
  msgid "one week"
535
  msgstr ""
536
 
537
+ #: src/Tribe/Aggregator/Record/List_Table.php:577
538
  msgctxt "when the retry will happen, a date"
539
  msgid "retrying at %s"
540
  msgstr ""
541
 
542
+ #: src/Tribe/Aggregator/Record/List_Table.php:574
543
  msgctxt "in human readable time"
544
  msgid "retrying in about %s"
545
  msgstr ""
621
  msgstr ""
622
 
623
  #: common/src/Tribe/Plugins_API.php:71
624
+ msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Guest check in is easy with QR codes and our custom scanning app."
625
  msgstr ""
626
 
627
  #: src/admin-views/tribe-options-general.php:31
653
  msgid "The event with the specified ID is not accessible."
654
  msgstr ""
655
 
656
+ #: src/Tribe/Main.php:1812
657
  msgid "%1$s published. %2$sView %3$s"
658
  msgstr ""
659
 
1004
  msgid "the event post name"
1005
  msgstr ""
1006
 
1007
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:354
1008
  msgid "The event organizer IDs or data"
1009
  msgstr ""
1010
 
1011
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:346
1012
  msgid "The event venue ID or data"
1013
  msgstr ""
1014
 
1251
  msgid "Returns all the organizers matching the search criteria"
1252
  msgstr ""
1253
 
1254
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:494
1255
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1256
  msgstr ""
1257
 
1258
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:488
1259
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1260
  msgstr ""
1261
 
1262
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:482
1263
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1264
  msgstr ""
1265
 
1266
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:477
1267
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1268
  msgid "The event post status"
1269
  msgstr ""
1270
 
1271
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:470
1272
  msgid "Events should be filtered by their featured status"
1273
  msgstr ""
1274
 
1275
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:462
1276
  msgid "Events should be assigned one of the specified organizer IDs"
1277
  msgstr ""
1278
 
1279
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1280
  msgid "Events should be assigned one of the specified venue IDs"
1281
  msgstr ""
1282
 
1370
  msgid "The event status"
1371
  msgstr ""
1372
 
1373
+ #: src/Tribe/Linked_Posts.php:1254
1374
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1375
  msgid "Create or Find %s"
1376
  msgstr ""
1377
 
1378
+ #: src/Tribe/Linked_Posts.php:1245
1379
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1380
  msgid "Find %1$s %2$s"
1381
  msgstr ""
1382
 
1383
+ #: src/Tribe/Linked_Posts.php:1236
1384
  msgid "Find a Venue"
1385
  msgstr ""
1386
 
1387
+ #: src/Tribe/Linked_Posts.php:1235
1388
  msgid "Create or Find a Venue"
1389
  msgstr ""
1390
 
1391
+ #: src/Tribe/Linked_Posts.php:1228
1392
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1393
  msgid "Create or Find %s"
1394
  msgstr ""
1395
 
1396
+ #: src/Tribe/Linked_Posts.php:1219
1397
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1398
  msgid "Find %1$s %2$s"
1399
  msgstr ""
1400
 
1401
+ #: src/Tribe/Linked_Posts.php:1208
1402
  msgid "Find an Organizer"
1403
  msgstr ""
1404
 
1405
+ #: src/Tribe/Linked_Posts.php:1207
1406
  msgid "Create or Find an Organizer"
1407
  msgstr ""
1408
 
1409
+ #: src/Tribe/Linked_Posts.php:1200
1410
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1411
  msgid "Create or Find %s"
1412
  msgstr ""
1413
 
1414
+ #: src/Tribe/Linked_Posts.php:1191
1415
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1416
  msgid "Find %1$s %2$s"
1417
  msgstr ""
1507
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1508
  msgstr ""
1509
 
1510
+ #: src/Tribe/Main.php:996
1511
  msgid "edit Events settings."
1512
  msgstr ""
1513
 
1514
+ #: src/Tribe/Main.php:987
1515
  msgid "Edit the %s slug"
1516
  msgstr ""
1517
 
1518
+ #: src/Tribe/Linked_Posts.php:1177
1519
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1520
  msgid "an"
1521
  msgstr ""
1522
 
1523
+ #: src/Tribe/Linked_Posts.php:1170
1524
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1525
  msgid "a"
1526
  msgstr ""
1562
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1563
  msgstr ""
1564
 
 
 
 
 
1565
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1566
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1567
  msgstr ""
1606
  msgid "The event WordPress post ID"
1607
  msgstr ""
1608
 
1609
+ #: src/Tribe/Aggregator/Record/Abstract.php:363
1610
  msgid "Something went wrong while inserting the record in the database."
1611
  msgstr ""
1612
 
1624
  msgid "Please refresh the page and try your request again."
1625
  msgstr ""
1626
 
1627
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:29
1628
  msgid "The image WordPress post ID"
1629
  msgstr ""
1630
 
1684
  msgid "The event last modification date in UTC time"
1685
  msgstr "La última modificación de la fecha del evento está en hora UTC"
1686
 
1687
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:419
1688
  msgid "Events should start after the specified date"
1689
  msgstr "Los eventos deben comenzar después de la fecha especificada"
1690
 
1691
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:426
1692
  msgid "Events should start before the specified date"
1693
  msgstr "Los eventos deben comenzar antes de la fecha especificada"
1694
 
1724
  msgid "the event post ID"
1725
  msgstr "el ID de la entrada del evento"
1726
 
1727
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:432
1728
  msgid "Events should contain the specified string in the title or description"
1729
  msgstr "Los eventos deben contener la cadena especificada en el título o descripción"
1730
 
2020
  msgstr "El URL requerido no tiene ningún evento futuro y publicado que corresponda con el criterio de búsqueda"
2021
 
2022
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2023
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:404
2024
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2025
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2026
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2027
  msgid "The archive page to return"
2028
  msgstr "La página de archivo a mostrar"
2029
 
2030
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:412
2031
  msgid "The number of events to return on each page"
2032
  msgstr "El número de eventos a mostrar en cada página"
2033
 
2034
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
2035
  msgid "Events should be assigned one of the specified categories slugs or IDs"
2036
  msgstr "Los eventos deberían ser asignados con uno de los slugs o IDs de las categorías especificadas"
2037
 
2038
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:446
2039
  msgid "Events should be assigned one of the specified tags slugs or IDs"
2040
  msgstr "Los eventos deberían ser asignados con uno de los slugs o IDs de las categorías especificadas"
2041
 
2042
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:374
2043
  msgid "Returns all the upcoming events matching the search criteria"
2044
  msgstr "Regresa todos los eventos futuros que correspondan con los criterios de búsqueda"
2045
 
2046
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:36
2047
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:382
2048
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:64
2049
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:53
2050
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:61
2259
  msgid "three months"
2260
  msgstr "tres meses"
2261
 
2262
+ #: src/Tribe/Aggregator/Tabs/New.php:385
2263
  msgid "%1$d new event tag was created."
2264
  msgid_plural "%1$d new event tags were created."
2265
  msgstr[0] "%1$d nueva etiqueta de evento fue creada."
2266
  msgstr[1] "%1$d nuevas etiquetas de evento fueron creadas."
2267
 
2268
+ #: src/Tribe/Aggregator/Tabs/New.php:389
2269
  msgid "View your event tags"
2270
  msgstr "Vea sus etiquetas de evento"
2271
 
2324
  msgid "Change the default 3 events per day in month view. To impose no limit, you may specify -1. Please note there may be performance issues if you allow too many events per day. <a href=\"%s\">Read more</a>."
2325
  msgstr "Cambia los 3 eventos predeterminados por día en vista mensual. Para eliminar los límites, puede especificar -1.Por favor note que puede haber problemas de desempeño si introduce muchos eventos por día. <a href=\"%s\">Leer más</a>."
2326
 
2327
+ #: src/Tribe/Main.php:763
2328
  msgctxt "all events slug"
2329
  msgid "all"
2330
  msgstr "todos"
2365
  msgid "The WordPress term ID"
2366
  msgstr "El ID de término de WordPress"
2367
 
2368
+ #: common/src/Tribe/Documentation/Swagger/Image_Size_Definition_Provider.php:37
2369
  msgid "The link to the image in the specified size on the site"
2370
  msgstr "El enlace de la imagen en el tamaño especificado en el sitio"
2371
 
2381
  msgid "The image width in pixels in the specified size"
2382
  msgstr "El ancho en píxeles de la imagen en el tamaño especificado"
2383
 
2384
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:45
2385
  msgid "The details about each size available for the image"
2386
  msgstr "Los detalles de cada tamaño disponible para la imagen"
2387
 
2388
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:41
2389
  msgid "The image natural height in pixels"
2390
  msgstr "La altura natural de la imagen en píxeles"
2391
 
2392
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:37
2393
  msgid "The image natural width in pixels"
2394
  msgstr "El ancho natural de la imagen en píxeles "
2395
 
2396
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:33
2397
  msgid "The image file extension"
2398
  msgstr "La extensión del archivo de imagen"
2399
 
2401
  msgid "The venue WordPress post ID"
2402
  msgstr "El lugar de la entrada de la ID de WordPress"
2403
 
2404
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:25
2405
  msgid "The URL to the full size version of the image"
2406
  msgstr "El URL de la imagen en tamaño completo"
2407
 
2441
  msgid "The cost currency symbol"
2442
  msgstr "El símbolo de la moneda local"
2443
 
2444
+ #: src/Tribe/Main.php:4035
2445
  msgid "Keyword"
2446
  msgstr "Palabra Clave"
2447
 
2516
  msgid "Export Events"
2517
  msgstr "Exportar Eventos"
2518
 
2519
+ #: src/Tribe/Main.php:762
2520
  msgctxt "featured events slug"
2521
  msgid "featured"
2522
  msgstr "destacado"
2523
 
2524
+ #: src/Tribe/Linked_Posts.php:1133
2525
  msgid "Create: <b><%= term %></b>"
2526
  msgstr "Crear: <b><%= term %></b>"
2527
 
2670
  msgid "Options selected here will override what was selected in the \"General Theme\" and \"Global Elements\" sections."
2671
  msgstr "Las opciones seleccionadas aquí anulan las que fueron seleccionadas en las secciones \"Temas Generales\" y \"Elementos Globales\""
2672
 
2673
+ #: src/Tribe/Assets.php:685 src/deprecated/Tribe__Events__Asset__Dynamic.php:77
2674
  msgid "This event is all day starting on %%startdatenoyear%% and ending on %%enddatewithyear%%."
2675
  msgstr "Este evento dura todo el día empezando desde %%startdatenoyear%% y terminando el %%enddatewithyear%%."
2676
 
2677
+ #: src/Tribe/Assets.php:684 src/deprecated/Tribe__Events__Asset__Dynamic.php:76
2678
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends on %%enddatewithyear%%"
2679
  msgstr "Este evento comienza a las %%starttime%% el %%startdatenoyear%% y termina el %%enddatewithyear%%."
2680
 
2681
+ #: src/Tribe/Assets.php:683 src/deprecated/Tribe__Events__Asset__Dynamic.php:75
2682
  msgid "This event starts at %%starttime%% on %%startdatenoyear%% and ends at %%endtime%% on %%enddatewithyear%%"
2683
  msgstr "Este evento empieza a las %startime% el %%startdatenoyear%% y finaliza a las %%endtime%% el %%enddatewithyear%%"
2684
 
2685
+ #: src/Tribe/Assets.php:682 src/deprecated/Tribe__Events__Asset__Dynamic.php:74
2686
  msgid "This event is all day on %%startdatewithyear%%."
2687
  msgstr "Evento de día completo el %%startdatewithyear%%."
2688
 
2689
+ #: src/Tribe/Assets.php:681 src/deprecated/Tribe__Events__Asset__Dynamic.php:73
2690
  msgid "This event is at %%starttime%% on %%startdatewithyear%%."
2691
  msgstr "Este evento es a las %%starttime%% el %%startdatewithyear%%"
2692
 
2693
+ #: src/Tribe/Assets.php:680 src/deprecated/Tribe__Events__Asset__Dynamic.php:72
2694
  msgid "This event is from %%starttime%% to %%endtime%% on %%startdatewithyear%%."
2695
  msgstr "Este evento es desde %%starttime%% hasta las %%endtime%% el %%startdatewithyear%%."
2696
 
2697
+ #: src/Tribe/Assets.php:677 src/deprecated/Tribe__Events__Asset__Dynamic.php:69
2698
  msgid "Dec"
2699
  msgstr "Dic"
2700
 
2701
+ #: src/Tribe/Assets.php:676 src/deprecated/Tribe__Events__Asset__Dynamic.php:68
2702
  msgid "Nov"
2703
  msgstr "Nov"
2704
 
2705
+ #: src/Tribe/Assets.php:675 src/deprecated/Tribe__Events__Asset__Dynamic.php:67
2706
  msgid "Oct"
2707
  msgstr "Oct"
2708
 
2709
+ #: src/Tribe/Assets.php:674 src/deprecated/Tribe__Events__Asset__Dynamic.php:66
2710
  msgid "Sep"
2711
  msgstr "Sep"
2712
 
2713
+ #: src/Tribe/Assets.php:673 src/deprecated/Tribe__Events__Asset__Dynamic.php:65
2714
  msgid "Aug"
2715
  msgstr "Ago"
2716
 
2717
+ #: src/Tribe/Assets.php:672 src/deprecated/Tribe__Events__Asset__Dynamic.php:64
2718
  msgid "Jul"
2719
  msgstr "Jul"
2720
 
2721
+ #: src/Tribe/Assets.php:671 src/deprecated/Tribe__Events__Asset__Dynamic.php:63
2722
  msgid "Jun"
2723
  msgstr "Jun"
2724
 
2725
+ #: src/Tribe/Assets.php:669 src/deprecated/Tribe__Events__Asset__Dynamic.php:61
2726
  msgid "Apr"
2727
  msgstr "Abr"
2728
 
2729
+ #: src/Tribe/Assets.php:668 src/deprecated/Tribe__Events__Asset__Dynamic.php:60
2730
  msgid "Mar"
2731
  msgstr "Mar"
2732
 
2733
+ #: src/Tribe/Assets.php:667 src/deprecated/Tribe__Events__Asset__Dynamic.php:59
2734
  msgid "Feb"
2735
  msgstr "Feb"
2736
 
2737
+ #: src/Tribe/Assets.php:666 src/deprecated/Tribe__Events__Asset__Dynamic.php:58
2738
  msgid "Jan"
2739
  msgstr "Ene"
2740
 
2741
+ #: src/Tribe/Assets.php:663 src/deprecated/Tribe__Events__Asset__Dynamic.php:55
2742
  msgid "December"
2743
  msgstr "Diciembre"
2744
 
2745
+ #: src/Tribe/Assets.php:662 src/deprecated/Tribe__Events__Asset__Dynamic.php:54
2746
  msgid "November"
2747
  msgstr "Noviembre"
2748
 
2749
+ #: src/Tribe/Assets.php:661 src/deprecated/Tribe__Events__Asset__Dynamic.php:53
2750
  msgid "October"
2751
  msgstr "Octubre"
2752
 
2753
+ #: src/Tribe/Assets.php:660 src/deprecated/Tribe__Events__Asset__Dynamic.php:52
2754
  msgid "September"
2755
  msgstr "Septiembre"
2756
 
2757
+ #: src/Tribe/Assets.php:659 src/deprecated/Tribe__Events__Asset__Dynamic.php:51
2758
  msgid "August"
2759
  msgstr "Agosto"
2760
 
2761
+ #: src/Tribe/Assets.php:658 src/deprecated/Tribe__Events__Asset__Dynamic.php:50
2762
  msgid "July"
2763
  msgstr "Julio"
2764
 
2765
+ #: src/Tribe/Assets.php:657 src/deprecated/Tribe__Events__Asset__Dynamic.php:49
2766
  msgid "June"
2767
  msgstr "Junio"
2768
 
2769
+ #: src/Tribe/Assets.php:656 src/Tribe/Assets.php:670
2770
+ #: src/deprecated/Tribe__Events__Asset__Dynamic.php:48
2771
+ #: src/deprecated/Tribe__Events__Asset__Dynamic.php:62
2772
  msgid "May"
2773
  msgstr "Mayo"
2774
 
2775
+ #: src/Tribe/Assets.php:655 src/deprecated/Tribe__Events__Asset__Dynamic.php:47
2776
  msgid "April"
2777
  msgstr "Abril"
2778
 
2779
+ #: src/Tribe/Assets.php:654 src/deprecated/Tribe__Events__Asset__Dynamic.php:46
2780
  msgid "March"
2781
  msgstr "Marzo"
2782
 
2783
+ #: src/Tribe/Assets.php:653 src/deprecated/Tribe__Events__Asset__Dynamic.php:45
2784
  msgid "February"
2785
  msgstr "Febrero"
2786
 
2787
+ #: src/Tribe/Assets.php:652 src/deprecated/Tribe__Events__Asset__Dynamic.php:44
2788
  msgid "January"
2789
  msgstr "Enero"
2790
 
2791
+ #: src/Tribe/Assets.php:649 src/deprecated/Tribe__Events__Asset__Dynamic.php:41
2792
  msgid "Sat"
2793
  msgstr "Sáb"
2794
 
2795
+ #: src/Tribe/Assets.php:648 src/deprecated/Tribe__Events__Asset__Dynamic.php:40
2796
  msgid "Fri"
2797
  msgstr "Vie"
2798
 
2799
+ #: src/Tribe/Assets.php:647 src/deprecated/Tribe__Events__Asset__Dynamic.php:39
2800
  msgid "Thu"
2801
  msgstr "Jue"
2802
 
2803
+ #: src/Tribe/Assets.php:646 src/deprecated/Tribe__Events__Asset__Dynamic.php:38
2804
  msgid "Wed"
2805
  msgstr "Mie"
2806
 
2807
+ #: src/Tribe/Assets.php:645 src/deprecated/Tribe__Events__Asset__Dynamic.php:37
2808
  msgid "Tue"
2809
  msgstr "Mar"
2810
 
2811
+ #: src/Tribe/Assets.php:644 src/deprecated/Tribe__Events__Asset__Dynamic.php:36
2812
  msgid "Mon"
2813
  msgstr "Lun"
2814
 
2815
+ #: src/Tribe/Assets.php:643 src/deprecated/Tribe__Events__Asset__Dynamic.php:35
2816
  msgid "Sun"
2817
  msgstr "Dom"
2818
 
2819
+ #: src/Tribe/Assets.php:640 src/deprecated/Tribe__Events__Asset__Dynamic.php:32
2820
  msgid "Saturday"
2821
  msgstr "Sábado"
2822
 
2823
+ #: src/Tribe/Assets.php:639 src/deprecated/Tribe__Events__Asset__Dynamic.php:31
2824
  msgid "Friday"
2825
  msgstr "Viernes"
2826
 
2827
+ #: src/Tribe/Assets.php:638 src/deprecated/Tribe__Events__Asset__Dynamic.php:30
2828
  msgid "Thursday"
2829
  msgstr "Jueves"
2830
 
2831
+ #: src/Tribe/Assets.php:637 src/deprecated/Tribe__Events__Asset__Dynamic.php:29
2832
  msgid "Wednesday"
2833
  msgstr "Miércoles"
2834
 
2835
+ #: src/Tribe/Assets.php:636 src/deprecated/Tribe__Events__Asset__Dynamic.php:28
2836
  msgid "Tuesday"
2837
  msgstr "Martes"
2838
 
2839
+ #: src/Tribe/Assets.php:635 src/deprecated/Tribe__Events__Asset__Dynamic.php:27
2840
  msgid "Monday"
2841
  msgstr "Lunes"
2842
 
2843
+ #: src/Tribe/Assets.php:634 src/deprecated/Tribe__Events__Asset__Dynamic.php:26
2844
  msgid "Sunday"
2845
  msgstr "Domingo"
2846
 
2921
  msgid "Unknown service message"
2922
  msgstr "Mensaje de servicio desconocido"
2923
 
2924
+ #: src/Tribe/Aggregator/Record/List_Table.php:540
2925
  msgid "Unknown"
2926
  msgstr "Desconocido"
2927
 
2928
+ #: src/Tribe/Aggregator/Record/Abstract.php:1206
2929
  msgid "When this import was last scheduled to run, the daily limit for your Event Aggregator license had already been reached."
2930
  msgstr "Cuando esta importación fue programada para ejecutarse, el límite diario de su licencia de Agregador de Eventos ya había sido alcanzado."
2931
 
3662
  msgid "mi"
3663
  msgstr "mil"
3664
 
3665
+ #: src/Tribe/Main.php:982
3666
  msgid "The %3$s \"%1$s\" uses the \"/%2$s\" slug: the Events Calendar plugin will show its calendar in place of the page."
3667
  msgstr "El %3$s \"%1$s\" utiliza el slug \"/%2$s\": el plugin Events Calendar mostrará su calendario en lugar de la página."
3668
 
3887
  msgid "Scheduled Imports"
3888
  msgstr "Importaciones Programadas"
3889
 
3890
+ #: src/Tribe/Aggregator/Tabs/New.php:615
3891
  msgid "Renew your Event Aggregator license"
3892
  msgstr "Renueve su licencia del Agregador de Eventos"
3893
 
3894
+ #: src/Tribe/Aggregator/Tabs/New.php:612
3895
  msgid "Renew your license in order to import events from Facebook, iCalendar, Google, or Meetup."
3896
  msgstr "Renueve su licencia para poder importar eventos de Facebook, iCalendar, Google o Meetup."
3897
 
3898
+ #: src/Tribe/Aggregator/Tabs/New.php:611
3899
  msgid "Your Event Aggregator license is expired."
3900
  msgstr "Su licencia del Agregador de eventos ha expirado."
3901
 
3902
+ #: src/Tribe/Aggregator/Tabs/New.php:563
3903
  msgid "Learn More"
3904
  msgstr "Saber más"
3905
 
3906
+ #: src/Tribe/Aggregator/Tabs/New.php:558 src/Tribe/Aggregator/Tabs/New.php:565
3907
  #: src/admin-views/aggregator/banners/eventbrite-upsell.php:19
3908
  msgid "opens in a new window"
3909
  msgstr "abre en una nueva ventana"
3910
 
3911
+ #: src/Tribe/Aggregator/Tabs/New.php:556
3912
  msgid "Buy It Now"
3913
  msgstr "Compre Ahora"
3914
 
3915
+ #: src/Tribe/Aggregator/Tabs/New.php:553
3916
  msgid "With Event Aggregator, you can import events from Facebook, iCalendar, Google, and Meetup.com in a jiffy."
3917
  msgstr "Con el Agregador de Eventos, puede importar eventos de Facebook, iCalendar, Google y Meetup.com de forma rápida."
3918
 
3919
+ #: src/Tribe/Aggregator/Tabs/New.php:551
3920
  msgid "Import Using Event Aggregator"
3921
  msgstr "Importar utilizando el Agregador de Eventos"
3922
 
3923
+ #: src/Tribe/Aggregator/Tabs/New.php:464
3924
  msgid "Unable to save credentials"
3925
  msgstr "No es posible guardar los credenciales"
3926
 
3927
+ #: src/Tribe/Aggregator/Tabs/New.php:457
3928
  msgid "Credentials have been saved"
3929
  msgstr "Los credenciales han sido guardados"
3930
 
3931
+ #: src/Tribe/Aggregator/Tabs/New.php:448
3932
  msgid "The Meetup API key is required."
3933
  msgstr "La Clave API de Meetup es requerida."
3934
 
3935
+ #: src/Tribe/Aggregator/Tabs/New.php:439
3936
  msgid "Invalid credential save nonce"
3937
  msgstr ""
3938
 
3939
+ #: src/Tribe/Aggregator/Tabs/New.php:429
3940
  msgid "Invalid credential save request"
3941
  msgstr "Requerimiento para guardar credenciales inválido"
3942
 
3943
+ #: src/Tribe/Aggregator/Tabs/New.php:417
3944
  msgid "View your scheduled imports."
3945
  msgstr "Ver sus importaciones programadas."
3946
 
3947
+ #: src/Tribe/Aggregator/Tabs/New.php:413
3948
  msgid "The next import is scheduled for %1$s."
3949
  msgstr "La próxima importación esta programada para %1$s."
3950
 
3951
+ #: src/Tribe/Aggregator/Tabs/New.php:406
3952
  msgctxt "separator between date and time"
3953
  msgid " at "
3954
  msgstr "a la(s)"
3955
 
3956
+ #: src/Tribe/Aggregator/Tabs/New.php:402
3957
  msgid "Your scheduled import was saved and the first import is complete!"
3958
  msgstr "¡Su importación programada fue guardada y la primera importación fue completada!"
3959
 
3960
+ #: src/Tribe/Aggregator/Tabs/New.php:377
3961
  msgid "View your event categories"
3962
  msgstr "Ver sus categorías de evento"
3963
 
3964
+ #: src/Tribe/Aggregator/Tabs/New.php:373
3965
  msgid "%1$d new event category was created."
3966
  msgid_plural "%1$d new event categories were created."
3967
  msgstr[0] "%1$d nueva categoría de evento fue creada."
3968
  msgstr[1] "%1$d nuevas categorías de evento fueron creadas."
3969
 
3970
+ #: src/Tribe/Aggregator/Tabs/New.php:364
3971
  msgid "View your event organizers"
3972
  msgstr "Ver sus organizadores de evento"
3973
 
3974
+ #: src/Tribe/Aggregator/Tabs/New.php:360
3975
  msgid "%1$d new organizer was imported."
3976
  msgid_plural "%1$d new organizers were imported."
3977
  msgstr[0] "%1$d nuevo organizador fue importado."
3978
  msgstr[1] "%1$d nuevos organizadores fueron importados."
3979
 
3980
+ #: src/Tribe/Aggregator/Tabs/New.php:352
3981
  msgid "View your event venues"
3982
  msgstr "Ver los recintos de los eventos"
3983
 
3984
+ #: src/Tribe/Aggregator/Tabs/New.php:348
3985
  msgid "%1$d new venue was imported."
3986
  msgid_plural "%1$d new venues were imported."
3987
  msgstr[0] "Se importó %1$d recinto nuevo."
3988
  msgstr[1] "Se importaron %1$d recintos nuevos."
3989
 
3990
+ #: src/Tribe/Aggregator/Tabs/New.php:338
3991
  msgid "View all %s"
3992
  msgstr "Ver todo %s"
3993
 
3994
+ #: src/Tribe/Aggregator/Tabs/New.php:330
3995
  msgid "No %1$s were imported or updated."
3996
  msgstr "Ningún %1$s fueron importados o actualizados."
3997
 
3998
+ #: src/Tribe/Aggregator/Tabs/New.php:323
3999
  msgid "%1$d new image was imported."
4000
  msgid_plural "%1$d new images were imported."
4001
  msgstr[0] "%1$d nueva imagen fue importada."
4002
  msgstr[1] "%1$d nuevas imágenes fueron importadas."
4003
 
4004
+ #: src/Tribe/Aggregator/Tabs/New.php:314
4005
  msgid "%1$d already-imported %2$s was skipped."
4006
  msgid_plural "%1$d already-imported %2$s were skipped."
4007
  msgstr[0] "%1$d ya importado %2$s fue ignorado."
4008
  msgstr[1] "%1$d ya importados %2$s fueron ignorados."
4009
 
4010
+ #: src/Tribe/Aggregator/Tabs/New.php:303
4011
  msgid "%1$d existing %2$s was updated."
4012
  msgid_plural "%1$d existing %2$s were updated."
4013
  msgstr[0] "%1$d existente %2$s fue actualizado."
4014
  msgstr[1] "%1$d existentes %2$s fueron actualizados."
4015
 
4016
+ #: src/Tribe/Aggregator/Tabs/New.php:291
4017
  msgid "%1$d new %2$s was imported."
4018
  msgid_plural "%1$d new %2$s were imported."
4019
  msgstr[0] "%1$d nueva %2$s fue importada."
4277
  msgid "Events Aggregator Record"
4278
  msgstr "Récord del Agregador de Eventos"
4279
 
4280
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:183
4281
  msgid "Unable to continue inserting data. Please reload this page to continue/try again."
4282
  msgstr "No es posible continuar insertando data. Por favor vuelva a cargar esta página para continuar/intentar de nuevo."
4283
 
4297
  msgid "Your import is currently in progress. Don't worry, you can safely navigate away&ndash;the import will continue in the background."
4298
  msgstr "Su importación está en progreso. No se preocupe, puede navegar&ndash;la importación continuará en el fondo."
4299
 
4300
+ #: src/Tribe/Aggregator/Record/Queue_Processor.php:233
4301
  msgid "Could not process queue for Import Record %1$d: %2$s"
4302
  msgstr "No se pudo procesar cola de espera para el Récord de Importación %1$d: %2$s"
4303
 
4304
+ #: src/Tribe/Aggregator/Record/List_Table.php:664
4305
  msgid "Select %s"
4306
  msgstr "Seleccionar %s"
4307
 
4308
+ #: src/Tribe/Aggregator/Record/List_Table.php:629
4309
+ #: src/Tribe/Aggregator/Record/List_Table.php:638
4310
+ #: src/Tribe/Aggregator/Record/List_Table.php:646
4311
  msgid "updated"
4312
  msgstr "actualizado"
4313
 
4314
+ #: src/Tribe/Aggregator/Record/List_Table.php:627
4315
+ #: src/Tribe/Aggregator/Record/List_Table.php:635
4316
+ #: src/Tribe/Aggregator/Record/List_Table.php:643
4317
  msgid "new"
4318
  msgstr "nuevo"
4319
 
4320
+ #: src/Tribe/Aggregator/Record/List_Table.php:624
4321
  msgid "Latest Import:"
4322
  msgstr "Última Importación:"
4323
 
4324
+ #: src/Tribe/Aggregator/Record/List_Table.php:622
4325
  msgid "all time"
4326
  msgstr "siempre"
4327
 
4328
+ #: src/Tribe/Aggregator/Record/List_Table.php:596
4329
  msgid "One Time"
4330
  msgstr "Una Vez"
4331
 
4332
+ #: src/Tribe/Aggregator/Record/List_Table.php:593
4333
  msgid "Invalid Frequency"
4334
  msgstr "Frecuencia no válida"
4335
 
4336
+ #: src/Tribe/Aggregator/Record/List_Table.php:563 src/Tribe/Aggregator.php:426
4337
  #: src/Tribe/Ignored_Events.php:357
4338
  #: src/admin-views/tribe-options-addons-api.php:36
4339
  msgctxt "in human readable time"
4340
  msgid "in about %s"
4341
  msgstr "en unos %s"
4342
 
4343
+ #: src/Tribe/Aggregator/Record/List_Table.php:561 src/Tribe/Aggregator.php:424
4344
  #: src/Tribe/Ignored_Events.php:355
4345
  #: src/admin-views/tribe-options-addons-api.php:34
4346
  msgctxt "human readable time ago"
4347
  msgid "about %s ago"
4348
  msgstr "alrededor de %s tiempo atrás"
4349
 
4350
+ #: src/Tribe/Aggregator/Record/List_Table.php:513
4351
  msgid "Radius:"
4352
  msgstr "Radio:"
4353
 
4354
+ #: src/Tribe/Aggregator/Record/List_Table.php:496
4355
  msgid "Keywords:"
4356
  msgstr "Palabras clave:"
4357
 
4358
+ #: src/Tribe/Aggregator/Record/List_Table.php:483
4359
  #: src/Tribe/Ignored_Events.php:337
4360
  msgctxt "record via origin"
4361
  msgid "via "
4362
  msgstr "vía"
4363
 
4364
+ #: src/Tribe/Aggregator/Record/List_Table.php:440
4365
  msgid "Import preview"
4366
  msgstr "Vista previa de la importación"
4367
 
4368
+ #: src/Tribe/Aggregator/Record/List_Table.php:436
4369
  msgid "Import pending"
4370
  msgstr "Importación pendiente"
4371
 
4372
+ #: src/Tribe/Aggregator/Record/List_Table.php:432
4373
  msgid "Import schedule"
4374
  msgstr "Calendario de importación"
4375
 
4376
+ #: src/Tribe/Aggregator/Record/List_Table.php:420
4377
  msgid "Import failed"
4378
  msgstr "Importación fallida"
4379
 
4380
+ #: src/Tribe/Aggregator/Record/List_Table.php:416
4381
  msgid "Import completed"
4382
  msgstr "Importación completada"
4383
 
4462
  msgid "Eventbrite"
4463
  msgstr "Eventbrite"
4464
 
4465
+ #: src/Tribe/Aggregator/Record/Abstract.php:1149
4466
  msgid "Deleted Attachment: %d"
4467
  msgstr "Eliminar Adjunto: %d"
4468
 
4469
+ #: src/Tribe/Aggregator/Record/Abstract.php:497
4470
  msgid "Record: "
4471
  msgstr "Récord:"
4472
 
4501
  msgstr "Ocultar filtros"
4502
 
4503
  #: src/Tribe/Aggregator/Page.php:96
4504
+ #: src/Tribe/Aggregator/Record/List_Table.php:492
4505
  msgid "View Filters"
4506
  msgstr "Ver filtros"
4507
 
4859
  msgstr "Hay una actualización para %s. Necesita %srevisar su licencia%s para tener acceso a actualizaciones, descargas y soporte."
4860
 
4861
  #: common/src/Tribe/PUE/Checker.php:961 common/src/Tribe/PUE/Notices.php:285
4862
+ #: src/Tribe/Aggregator/Record/Abstract.php:1164
4863
  msgid " (opens in a new window)"
4864
  msgstr "(abre en una nueva ventana)"
4865
 
5160
  msgid "No notable changes detected"
5161
  msgstr "No se han detectado cambios notables"
5162
 
5163
+ #: src/Tribe/Main.php:2561
5164
  msgid " (View Full %1$s Description Here: %2$s)"
5165
  msgstr " (Ver descripción completa %1$s Descripción: %2$s)"
5166
 
5208
  msgid "Keep the Core Plugin %sFREE%s!"
5209
  msgstr ""
5210
 
5211
+ #: src/Tribe/Template_Factory.php:231
5212
  msgid "No results were found for %1$s in or near %2$s."
5213
  msgstr "No se encontraron resultados en %1$so cerca de %2$s."
5214
 
5215
+ #: src/Tribe/Template_Factory.php:229
5216
  msgid "There were no results found for %s."
5217
  msgstr "No se encontraron resultados para %s."
5218
 
5219
+ #: src/Tribe/Template/Month.php:458
5220
  msgid "There were no results found for %s this month. Try searching next month."
5221
  msgstr "No se encontraron resultados para %s este mes. Intenta buscando en el próximo mes."
5222
 
5223
+ #: src/Tribe/Template/Day.php:154
5224
  msgid "No %1$s scheduled for %2$s. Please try another day."
5225
  msgstr "No existen %1$s programados el %2$s. Por favor busca otro día."
5226
 
5227
+ #: src/Tribe/Main.php:3855
5228
  msgid "Check out the %savailable add-ons%s."
5229
  msgstr "Observe los %sadd-ons disponibles%s."
5230
 
5231
+ #: src/Tribe/Main.php:1922
5232
  msgid "Without a defined location your event will not display a %sGoogle Rich Snippet%s on the search results."
5233
  msgstr ""
5234
 
5235
+ #: src/Tribe/Main.php:1853 src/Tribe/Main.php:1873
5236
  msgid "%1$s scheduled for: %2$s."
5237
  msgstr "%1$s programado para: %2$s."
5238
 
5239
+ #: src/Tribe/Main.php:1834
5240
  msgid "%1$s draft updated. %2$sPreview %3$s"
5241
  msgstr "%1$s borrador actualizado. %2$sVista previa %3$s"
5242
 
5243
+ #: src/Tribe/Main.php:1825
5244
  msgid "%1$s scheduled for: %2$s. %3$sPreview %4$s"
5245
  msgstr "%1$s programado para: %2$s. %3$sAvance %4$s"
5246
 
5247
+ #: src/Tribe/Main.php:1819
5248
  msgid "%1$s submitted. %2$sPreview %3$s"
5249
  msgstr "%1$s cargados. %2$sVista previa %3$s"
5250
 
5251
+ #: src/Tribe/Main.php:1801
5252
  msgid "%1$s updated. %2$sView %1$s%3$s"
5253
  msgstr "%1$s actualizado. %2$sVer %3$s"
5254
 
5255
+ #: src/Tribe/Main.php:1476
5256
  msgid "It appears as if the tribe-common libraries cannot be found! The directory should be in the \"common/\" directory in the events calendar plugin."
5257
  msgstr ""
5258
 
5259
+ #: src/Tribe/Main.php:1111
5260
  msgid "If you have a valid license for one of our paid plugins, you can %s in our premium support forums. Our support team monitors the forums and will respond to your thread within 24-48 hours (during the week)."
5261
  msgstr "Si tiene una licencia válida para uno de nuestros plugins premium, puede %s en nuestros foros de soporte premium. Nuestro equipo de soporte monitorea los foros y responderá su pregunta entre 24-48 horas después de la solicitud (durante los días de semana)."
5262
 
5263
+ #: src/Tribe/Main.php:1110
5264
  msgid "post a thread"
5265
  msgstr "publicar una cadena"
5266
 
5267
+ #: src/Tribe/Main.php:1106
5268
  msgid "<strong>Looking for more immediate support?</strong> We offer %1$s with the purchase of any of our premium plugins (like %2$s). Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays."
5269
  msgstr "<strong>¿Necesita soporte inmediato?</strong> Ofrecemos %1$s con la compra de nuestros plugins premium (como %2$s). Compre una licencia y podrá preguntar en los foros directamente y esperar una respuesta entre 24-48 horas durante los días de semana."
5270
 
5271
+ #: src/Tribe/Main.php:1102
5272
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our %s. Our support staff monitors these forums once a week and would be happy to assist you there."
5273
  msgstr "Si ha probado los pasos descritos arriba y aún tiene problemas, puede realizar una entrada a nuestra cadena de los fotos de WordPress.org para %1$s o %2$s. Nuestro equipo de soporte monitorea estos foros una vez a la semana y esta feliz de ayudarlo."
5274
 
5275
+ #: src/Tribe/Main.php:1101
5276
  msgid "open-source forum on WordPress.org"
5277
  msgstr "foro de código abierto en WordPress.org"
5278
 
5279
+ #: src/Tribe/Main.php:1097
5280
  msgid "<strong>Looking for more immediate support?</strong> We offer %s with the purchase of any of our premium plugins. Pick up a license and you can post there directly and expect a response within 24-48 hours during weekdays"
5281
  msgstr "<strong>¿Necesita soporte inmediato?</strong> Ofrecemos %s con la compra de nuestros plugins premium. Compre una licencia y podrá preguntar en los foros directamente y esperar una respuesta entre 24-48 horas durante los días de semana."
5282
 
5283
+ #: src/Tribe/Main.php:1096 src/Tribe/Main.php:1104
5284
  msgid "premium support on our website"
5285
  msgstr "soporte premium en nuestra página web"
5286
 
5287
+ #: src/Tribe/Main.php:1094
5288
  msgid "If you have tried the above steps and are still having trouble, you can post a new thread to our WordPress.org forums for %1$s or %2$s. Our support staff monitors these forums once a week and would be happy to assist you there. "
5289
  msgstr "Si ha probado los pasos descritos arriba y aún tiene problemas, puede realizar una entrada a nuestra cadena de los foros de WordPress.org para %1$s o %2$s. Nuestro equipo de soporte monitorea estos foros una vez a la semana y esta feliz de ayudarlo."
5290
 
5291
+ #: src/Tribe/Main.php:1093
5292
  msgid "Events Tickets"
5293
  msgstr "Entradas de eventos"
5294
 
5295
+ #: src/Tribe/Main.php:1078
5296
  msgid "Customizing the Events plugins"
5297
  msgstr "Personalizar los plugins de Eventos"
5298
 
5299
+ #: src/Tribe/Main.php:1078
5300
  msgid "%s: Code and guides for customizing your calendar in useful and interesting ways."
5301
  msgstr "%s: Código y guías para personalizar su calendario de maneras útiles e interesantes."
5302
 
5303
+ #: src/Tribe/Main.php:1076
5304
  msgid "Troubleshooting common problems"
5305
  msgstr "Problemas comunes de la Resolución de Problemas"
5306
 
5307
+ #: src/Tribe/Main.php:1076
5308
  msgid "%s: Do you see an issue with your calendar? Go here first to find where it’s coming from and how to fix it."
5309
  msgstr "%s: ¿Encuentra algún problema con su calendario? Entre aquí para encontrar el error y cómo arreglarlo."
5310
 
5311
+ #: src/Tribe/Main.php:1074
5312
  msgid "Using stylesheets and page templates"
5313
  msgstr "Utilizar estilos y plantillas de página"
5314
 
5315
+ #: src/Tribe/Main.php:1074
5316
  msgid "%s: An overview of the default templates and styles that are included in the plugin, as well as how to change them."
5317
  msgstr "%s: Una mirada de las plantillas predeterminadas y de los estilos que están incluidos en el plugin, así como la manera de cambiarlos."
5318
 
5319
+ #: src/Tribe/Main.php:1072
5320
  msgid "Themer’s Guide"
5321
  msgstr "Guía del Desarrollador de Temas"
5322
 
5323
+ #: src/Tribe/Main.php:1072
5324
  msgid "%s: Our most comprehensive outline for customizing the calendar to suit your needs, including custom layouts and styles."
5325
  msgstr "%s: Nuestro resumen más completo para personalizar el calendario para que cumpla con todas sus necesidades, incluyendo plantillas y estilos personalizados."
5326
 
5327
+ #: src/Tribe/Main.php:1070
5328
  msgid "Features overview"
5329
  msgstr "Vista de las características"
5330
 
5331
+ #: src/Tribe/Main.php:1070
5332
  msgid "%s: A complete look at the features you can expect to see right out of the box as well as how to use them."
5333
  msgstr "%s: Una mirada completa a las características que puede esperar así como la forma de utilizarlas."
5334
 
5335
+ #: src/Tribe/Main.php:1068
5336
  msgid "Settings overview"
5337
  msgstr "Vista de la Configuración"
5338
 
5339
+ #: src/Tribe/Main.php:1068
5340
  msgid "%s: A thorough walkthrough of The Events Calendar and the settings that are available to you."
5341
  msgstr "%s: Una guía paso a paso de The Events Calendar y las configuraciones disponibles para Usted."
5342
 
5343
+ #: src/Tribe/Main.php:1065
5344
  msgid "Support for The Events Calendar"
5345
  msgstr "Soporte para The Events Calendar"
5346
 
5347
+ #: src/Tribe/Main.php:1054
5348
  msgid "We are committed to helping make your calendar spectacular and have a wealth of resources available, including a handy %s to get your calendar up and running."
5349
  msgstr "Estamos comprometidos a ayudarle para hacer que su calendario sera espectacular y que tenga muchos recursos disponibles, incluyendo útiles %s para que su calendario funcione perfectamente."
5350
 
5351
+ #: src/Tribe/Main.php:1052
5352
  msgid "New User Primer"
5353
  msgstr "Manual Básico de Nuevo Usuario"
5354
 
5371
  msgid "CSV Import Settings"
5372
  msgstr "Configuración para Importar CSV"
5373
 
5374
+ #: src/deprecated/Tribe__Events__Asset__Bootstrap_Datepicker.php:27
5375
  msgid "Clear"
5376
  msgstr "Borrar"
5377
 
5383
  msgid "Create New %s"
5384
  msgstr "Crear nuevo %s"
5385
 
5386
+ #: src/Tribe/Organizer.php:375
5387
  msgid "Unnamed %s"
5388
  msgstr "%s sin Nombre"
5389
 
5571
  msgid "%s must be a positive number or percent."
5572
  msgstr "%s debe ser un número positivo o porcentaje."
5573
 
5574
+ #: src/Tribe/Main.php:999
5575
  msgid "%1$s or %2$s"
5576
  msgstr "%1$s por %2$s"
5577
 
5628
  msgid "Day Navigation"
5629
  msgstr "Navegación por día"
5630
 
5631
+ #: src/Tribe/Aggregator/Tabs/New.php:400
5632
  msgid "Import complete!"
5633
  msgstr "¡Importación completa!"
5634
 
5870
  msgstr "Más..."
5871
 
5872
  #: common/src/Tribe/Admin/Help_Page.php:194 common/src/Tribe/Plugins_API.php:43
5873
+ #: src/Tribe/Main.php:1105
5874
  msgid "Events Calendar PRO"
5875
  msgstr "Events Calendar PRO"
5876
 
6309
  msgid "%s Website"
6310
  msgstr "Página Web %s"
6311
 
6312
+ #: src/Tribe/Aggregator/Record/List_Table.php:509
6313
  msgid "Location:"
6314
  msgstr "Ubicación:"
6315
 
7714
  msgid "Template overrides should be moved to the correct subdirectory: %s"
7715
  msgstr "Las plantillas reemplazadas se deben mover al subdirectorio correcto: %s"
7716
 
7717
+ #: src/Tribe/Template_Factory.php:237
7718
  msgid "No previous %s "
7719
  msgstr "No hay %s anteriores."
7720
 
7721
+ #: src/Tribe/Template_Factory.php:235 src/Tribe/Template_Factory.php:240
7722
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of %3$s."
7723
  msgstr "No hay %1$s así listado en %2$s. Favor de ver el calendario por una lista de %3$s."
7724
 
7725
+ #: src/Tribe/Template_Factory.php:233
7726
  msgid "No upcoming %1$s listed under %2$s. Check out upcoming %3$s for this category or view the full calendar."
7727
  msgstr "No hay proximo %1$s listado en %2$s. Revisa los próximos %3$s en éste categoría o ver el calendario completo."
7728
 
7730
  msgid "This %s has passed."
7731
  msgstr "Este %s ha pasado."
7732
 
7733
+ #: src/Tribe/Template/Month.php:955
7734
  msgid "The requested date \"%s\" was not valid &ndash; showing the current month instead"
7735
  msgstr "La fecha \"%s\" no es válida &ndash; se muestra el mes actual en lugar de éste."
7736
 
7737
+ #: src/Tribe/Template/Month.php:464 src/Tribe/Template_Factory.php:242
7738
  msgid "There were no results found."
7739
  msgstr "No se ha encontrado ningún resultado."
7740
 
7741
+ #: src/Tribe/Template/Month.php:462
7742
  msgid "No matching %1$s listed under %2$s. Please try viewing the full calendar for a complete list of events."
7743
  msgstr "No existe %1$s así listado en %2$s. Favor de intentar ver el calendario completo para ver todos los eventos."
7744
 
7745
+ #: src/Tribe/Template/Day.php:152
7746
  msgid "No matching %1$s listed under %2$s scheduled for %3$s. Please try another day."
7747
  msgstr "No hay coincidencias %1$s listadas bajo %2$s programadas para %3$s. Por favor intente con otro día."
7748
 
7749
+ #: src/Tribe/Template/Day.php:118 src/Tribe/Template/Day.php:134
7750
  msgid "Ongoing"
7751
  msgstr "En marcha"
7752
 
7753
+ #: src/Tribe/Aggregator/Page.php:82 src/Tribe/Template/Day.php:115
7754
+ #: src/Tribe/Template/Day.php:131
7755
  msgid "All Day"
7756
  msgstr "Todo el Día"
7757
 
7846
  msgid "Error"
7847
  msgstr "Error"
7848
 
7849
+ #: src/Tribe/Main.php:4198
7850
  msgid "Once Every 30 Mins"
7851
  msgstr "Una vez cada 30 minutos"
7852
 
7853
+ #: src/Tribe/Main.php:4118
7854
  msgid "Day Of"
7855
  msgstr "Día de"
7856
 
7857
+ #: src/Tribe/Main.php:4116
7858
  msgid "%s From"
7859
  msgstr "%s Desde"
7860
 
7861
+ #: src/Tribe/Main.php:4112
7862
  msgid "%s In"
7863
  msgstr "%s En"
7864
 
7865
+ #: src/Tribe/Main.php:4107 src/Tribe/Main.php:4132
7866
  #: src/admin-views/aggregator/origins/refine.php:7
7867
  msgid "Date"
7868
  msgstr "Fecha"
7869
 
7870
+ #: src/Tribe/Main.php:4034
7871
  msgid "Search"
7872
  msgstr "Buscar"
7873
 
7874
+ #: src/Tribe/Main.php:4008 src/admin-views/aggregator/fields/schedule.php:44
7875
  #: src/admin-views/aggregator/fields/schedule.php:62
7876
  msgid "Day"
7877
  msgstr "Día"
7878
 
7879
+ #: src/Tribe/Main.php:3991
7880
  msgid "Month"
7881
  msgstr "Mes"
7882
 
7883
+ #: src/Tribe/Main.php:3973
7884
  msgid "List"
7885
  msgstr "Lista"
7886
 
7887
+ #: src/Tribe/Main.php:3957
7888
  msgid "Calendar"
7889
  msgstr "Calendario"
7890
 
7891
  #: common/src/Tribe/Settings.php:254
7892
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:89 src/Tribe/Main.php:3956
7893
  msgid "Settings"
7894
  msgstr "Ajustes"
7895
 
7903
  msgid "Add %s"
7904
  msgstr "Añadir %s"
7905
 
7906
+ #: src/Tribe/Admin/Bar/Default_Configurator.php:45 src/Tribe/Main.php:3907
7907
  msgid "View Calendar"
7908
  msgstr "Ver calendario"
7909
 
7911
  msgid "%s"
7912
  msgstr "%s"
7913
 
7914
+ #: src/Tribe/Main.php:3854
7915
  msgid "Looking for additional functionality including recurring events, ticket sales, publicly submitted events, new views and more?"
7916
  msgstr "¿Buscas funcionalidades adicionales, incluyendo eventos periódicos, venta de entradas, eventos añadidos por el público, vistas adicionales y más?"
7917
 
7918
+ #: src/Tribe/Main.php:3849
7919
  msgid "Additional Functionality"
7920
  msgstr "Funcionalidad adicional"
7921
 
7922
+ #: src/Tribe/Main.php:3804
7923
  msgid "News from Modern Tribe"
7924
  msgstr "Noticias de Modern Tribe"
7925
 
7926
+ #: src/Tribe/Main.php:3784
7927
  msgid "View All Add-Ons"
7928
  msgstr "Ver todos los complementos (Add-Ons)"
7929
 
7930
+ #: src/Tribe/Main.php:3781
7931
  msgid "Support"
7932
  msgstr "Soporte"
7933
 
7934
+ #: src/Tribe/Main.php:3429 src/Tribe/Main.php:3442
7935
  msgid "%s Information"
7936
  msgstr "Información de %s"
7937
 
7938
+ #: src/Tribe/Main.php:3420
7939
  msgid "%s Options"
7940
  msgstr "Opciones de %s"
7941
 
7942
+ #: src/Tribe/Main.php:3343 src/Tribe/Main.php:3378
7943
  #: src/functions/template-tags/day.php:157
7944
  #: src/functions/template-tags/day.php:178
7945
  msgid "Date out of range."
7946
  msgstr "Fecha fuera de rango."
7947
 
7948
+ #: src/Tribe/Main.php:2170
7949
  msgid "all"
7950
  msgstr "todos"
7951
 
7952
+ #: src/Tribe/Main.php:2169 src/functions/template-tags/general.php:111
7953
  msgid "events"
7954
  msgstr "eventos"
7955
 
7956
+ #: src/Tribe/Main.php:2168 src/functions/template-tags/general.php:79
7957
  msgid "event"
7958
  msgstr "evento"
7959
 
7960
+ #: src/Tribe/Main.php:2167
7961
  msgid "page"
7962
  msgstr "página"
7963
 
7969
  msgid "Done"
7970
  msgstr "Hecho"
7971
 
7972
+ #: common/src/Tribe/Main.php:272
7973
+ #: src/deprecated/Tribe__Events__Asset__Bootstrap_Datepicker.php:28
7974
  #: src/functions/template-tags/day.php:104
7975
  msgid "Today"
7976
  msgstr "Hoy"
7983
  msgid "Next"
7984
  msgstr "Siguiente"
7985
 
7986
+ #: src/Tribe/Linked_Posts.php:1138
7987
  msgid "No saved %s exists."
7988
  msgstr "No hay %s guardado."
7989
 
7990
+ #: src/Tribe/Linked_Posts.php:964
7991
  msgid "Available %s"
7992
  msgstr " %s Disponibles"
7993
 
7994
+ #: src/Tribe/Linked_Posts.php:960
7995
  msgid "My %s"
7996
  msgstr "Mis %s"
7997
 
7998
+ #: src/Tribe/Main.php:1858 src/Tribe/Main.php:1878
7999
  msgid "%s draft updated."
8000
  msgstr "El borrador %s actualizado."
8001
 
8002
+ #: src/Tribe/Main.php:1851 src/Tribe/Main.php:1871
8003
  msgid "%s submitted."
8004
  msgstr "%s enviado."
8005
 
8006
+ #: src/Tribe/Main.php:1849 src/Tribe/Main.php:1869
8007
  msgid "%s published."
8008
  msgstr "%s publicado."
8009
 
8010
  #. translators: %s: date and time of the revision
8011
+ #: src/Tribe/Main.php:1868
8012
  msgid "%s restored to revision from %s"
8013
  msgstr "%s restaurado a la revisión de %s"
8014
 
8015
  #. translators: Publish box date format, see http://php.net/date
8016
+ #: src/Tribe/Main.php:1828 src/Tribe/Main.php:1856 src/Tribe/Main.php:1876
8017
  msgid "M j, Y @ G:i"
8018
  msgstr "M j, Y ··· G:i"
8019
 
8020
+ #: src/Tribe/Main.php:1817 src/Tribe/Main.php:1850 src/Tribe/Main.php:1870
8021
  msgid "%s saved."
8022
  msgstr "%s guardado."
8023
 
8024
  #. translators: %s: date and time of the revision
8025
+ #: src/Tribe/Main.php:1810 src/Tribe/Main.php:1848
8026
  msgid "%1$s restored to revision from %2$s"
8027
  msgstr "%1$s restaurada a revisión de %2$s"
8028
 
8029
+ #: src/Tribe/Main.php:1808 src/Tribe/Main.php:1843 src/Tribe/Main.php:1846
8030
+ #: src/Tribe/Main.php:1863 src/Tribe/Main.php:1866
8031
  msgid "%s updated."
8032
  msgstr "%s actualizado."
8033
 
8034
+ #: src/Tribe/Main.php:1807 src/Tribe/Main.php:1845 src/Tribe/Main.php:1865
8035
  msgid "Custom field deleted."
8036
  msgstr "Campo personalizado borrado."
8037
 
8038
+ #: src/Tribe/Main.php:1806 src/Tribe/Main.php:1844 src/Tribe/Main.php:1864
8039
  msgid "Custom field updated."
8040
  msgstr "Campo personalizado actualizado."
8041
 
8042
+ #: src/Tribe/Main.php:1784
8043
  msgid "New %s Category Name"
8044
  msgstr "Nombre de nueva categoría de %s"
8045
 
8046
+ #: src/Tribe/Main.php:1783
8047
  msgid "Add New %s Category"
8048
  msgstr "Añadir nueva categoría de %s"
8049
 
8050
+ #: src/Tribe/Main.php:1782
8051
  msgid "Update %s Category"
8052
  msgstr "Actualizar categoría de %s"
8053
 
8054
+ #: src/Tribe/Main.php:1781
8055
  msgid "Edit %s Category"
8056
  msgstr "Editar categoría de %s"
8057
 
8058
+ #: src/Tribe/Main.php:1780
8059
  msgid "Parent %s Category:"
8060
  msgstr "Categoría superior de %s:"
8061
 
8062
+ #: src/Tribe/Main.php:1779
8063
  msgid "Parent %s Category"
8064
  msgstr "Categoría superior de %s"
8065
 
8066
+ #: src/Tribe/Main.php:1778
8067
  msgid "All %s Categories"
8068
  msgstr "Todas las categorías de %s"
8069
 
8070
+ #: src/Tribe/Main.php:1777
8071
  msgid "Search %s Categories"
8072
  msgstr "Buscar categorías de %s"
8073
 
8074
+ #: src/Tribe/Main.php:1776
8075
  msgid "%s Category"
8076
  msgstr "Categoría de %s"
8077
 
8078
+ #: src/Tribe/Main.php:1766 src/Tribe/Organizer.php:98 src/Tribe/Venue.php:117
8079
  msgid "No %s found in Trash"
8080
  msgstr "No hay %s en la papelera"
8081
 
8082
+ #: src/Tribe/Main.php:1765 src/Tribe/Organizer.php:97 src/Tribe/Venue.php:116
8083
  msgid "No %s found"
8084
  msgstr "No se encontraron %s"
8085
 
8086
+ #: src/Tribe/Main.php:1764 src/Tribe/Organizer.php:96 src/Tribe/Venue.php:115
8087
  msgid "Search %s"
8088
  msgstr "Buscar %s "
8089
 
8090
+ #: src/Tribe/Main.php:1763 src/Tribe/Organizer.php:95 src/Tribe/Venue.php:114
8091
  #: src/views/month/single-day.php:26
8092
  msgid "View %s"
8093
  msgstr "Mostrar %s"
8094
 
8095
+ #: src/Tribe/Main.php:1762 src/Tribe/Organizer.php:94 src/Tribe/Venue.php:113
8096
  msgid "New %s"
8097
  msgstr "Nueva %s"
8098
 
8099
+ #: src/Tribe/Main.php:1760 src/Tribe/Main.php:1892 src/Tribe/Main.php:1893
8100
  #: src/Tribe/Organizer.php:92 src/Tribe/Venue.php:111
8101
  msgid "Add New %s"
8102
  msgstr "Agregar nuevo %s"
8103
 
8104
+ #: src/Tribe/Main.php:1759 src/Tribe/Organizer.php:91 src/Tribe/Venue.php:110
8105
  msgid "Add New"
8106
  msgstr "Agregar nuevo"
8107
 
8108
+ #: src/Tribe/Main.php:1726 src/Tribe/Main.php:2165
8109
  msgid "tag"
8110
  msgstr "etiqueta"
8111
 
8112
+ #: src/Tribe/Main.php:1712 src/Tribe/Main.php:2166
8113
  msgid "category"
8114
  msgstr "categoria"
8115
 
8116
+ #: src/Tribe/Main.php:1464
8117
  msgid "Sorry, The Events Calendar requires PHP %s or higher. Talk to your Web host about moving you to a newer version of PHP."
8118
  msgstr "Lo sentimos, The Events Calendar requiere PHP %s o superior. Hable con su proveedor de Hospedaje Web para actualizar a una versión mas reciente de PHP"
8119
 
8120
+ #: src/Tribe/Main.php:1461
8121
  msgid "Sorry, The Events Calendar requires WordPress %s or higher. Please upgrade your WordPress install."
8122
  msgstr "Lo sentimos, The Events Calendar requiere Wordpress %s o superior. Por favor, actualice su instalación de Wordpress."
8123
 
8135
  msgid "Display"
8136
  msgstr "Visualización"
8137
 
8138
+ #: src/Tribe/Main.php:1308
8139
  msgid "The following plugins are out of date: %1$s. All add-ons contain dependencies on The Events Calendar and will not function properly unless paired with the right version. %2$sLearn More%3$s."
8140
  msgstr ""
8141
 
8142
+ #: src/Tribe/Main.php:1296
8143
  msgid "Your version of The Events Calendar is not up-to-date with one of your The Events Calendar add-ons. Please %supdate now.%s"
8144
  msgstr "Su versión de The Events Calendar no se encuentra actualizada con uno de sus add-ons. Por favor, %sactualicela.%s"
8145
 
8146
+ #: src/Tribe/Main.php:786
8147
  msgid "Initializing Tribe Events on %s"
8148
  msgstr "Iniciando Tribe Events en %s"
8149
 
8150
+ #: src/Tribe/Main.php:761
8151
  msgid "today"
8152
  msgstr "hoy"
8153
 
8154
+ #: src/Tribe/Main.php:760
8155
  msgid "day"
8156
  msgstr "día"
8157
 
8158
+ #: src/Tribe/Main.php:759
8159
  msgid "past"
8160
  msgstr "pasados"
8161
 
8162
+ #: src/Tribe/Main.php:758
8163
  msgid "upcoming"
8164
  msgstr "próximos"
8165
 
8166
+ #: src/Tribe/Main.php:757
8167
  msgid "list"
8168
  msgstr "lista"
8169
 
8170
+ #: src/Tribe/Main.php:756
8171
  msgid "month"
8172
  msgstr "mes"
8173
 
8174
+ #. #-#-#-#-# the-events-calendar-code.pot (The Events Calendar 4.6.22.1)
8175
  #. #-#-#-#-#
8176
  #. Plugin Name of the plugin/theme
8177
  #: common/src/Tribe/Admin/Help_Page.php:59 common/src/Tribe/Customizer.php:569
8178
+ #: common/src/Tribe/Plugins_API.php:25 src/Tribe/Main.php:749
8179
+ #: src/Tribe/Main.php:1092 src/Tribe/Privacy.php:29
8180
  #: src/functions/template-tags/general.php:1345
8181
  msgid "The Events Calendar"
8182
  msgstr "The Events Calendar"
8183
 
8184
+ #: src/Tribe/Main.php:1162 src/admin-views/aggregator/tabs/import-form.php:185
8185
  #: src/admin-views/aggregator/tabs/import-form.php:197
8186
  #: src/functions/template-tags/general.php:63
8187
  msgid "Event"
8188
  msgstr "Evento"
8189
 
8190
  #: common/src/Tribe/Settings.php:177 common/src/Tribe/Settings.php:241
8191
+ #: common/src/Tribe/Settings.php:242 src/Tribe/Main.php:1154
8192
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:207
8193
  #: src/functions/template-tags/general.php:95
8194
  msgid "Events"
8195
  msgstr "Eventos"
8196
 
8197
+ #: src/Tribe/Organizer.php:157 src/functions/template-tags/organizer.php:112
8198
  msgid "Organizer"
8199
  msgstr "Organizador"
8200
 
8201
  #: src/Tribe/Organizer.php:171
8202
  #: src/deprecated/Tribe__Events__Importer__Admin_Page.php:206
8203
+ #: src/functions/template-tags/organizer.php:123
8204
  msgid "Organizers"
8205
  msgstr "Organizadores"
8206
 
8464
  msgid "End:"
8465
  msgstr "Finaliza:"
8466
 
8467
+ #: src/Tribe/Aggregator/Record/List_Table.php:505
8468
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:48
8469
  #: src/deprecated/Tribe__Events__Advanced_Functions__Register_Meta.php:80
8470
  #: src/views/modules/meta/details.php:66 src/views/modules/meta/details.php:91
8483
  msgid "Start Date"
8484
  msgstr "Fecha inicio"
8485
 
8486
+ #: src/Tribe/Admin_List.php:246 src/Tribe/Main.php:1775
8487
  msgid "%s Categories"
8488
  msgstr "Categorías de %s"
8489
 
8494
  #: src/Tribe/Admin/Timezone_Updater.php:87
8495
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:56
8496
  #: src/Tribe/Aggregator/Record/Queue_Realtime.php:100
8497
+ #: src/Tribe/Aggregator/Record/Queue_Realtime.php:210
8498
  msgid "%d%% complete"
8499
  msgstr "%d%% completo"
8500
 
8507
  msgstr ""
8508
 
8509
  #: src/Tribe/Admin/Bar/Default_Configurator.php:62
8510
+ #: src/Tribe/Linked_Posts/Chooser_Meta_Box.php:211 src/Tribe/Main.php:1761
8511
+ #: src/Tribe/Main.php:4843 src/Tribe/Main.php:4890 src/Tribe/Organizer.php:93
8512
  #: src/Tribe/Venue.php:112
8513
  msgid "Edit %s"
8514
  msgstr "Editar %s"
8515
 
8516
+ #: src/Tribe/Main.php:4827 src/Tribe/Main.php:4884
8517
  msgid "Use Saved %s:"
8518
  msgstr "Utilizar %s guardado: "
8519
 
8520
+ #: src/Tribe/Main.php:991
8521
  msgid " ask the site administrator set a different Events URL slug."
8522
  msgstr " Solicitar al administrador del sitio a establecer un diferente slug para el URL de Eventos."
8523
 
8524
+ #: src/Tribe/Main.php:985
8525
  msgid "Ask the site administrator to edit the %s slug"
8526
  msgstr "Pide al administrador del sitio que edite el slug de %s"
8527
 
8529
  msgid "Thanks for Updating The Events Calendar"
8530
  msgstr "Gracias por actualizar The Events Calendar"
8531
 
8532
+ #: src/Tribe/Main.php:844 src/Tribe/Main.php:846
8533
  #: src/deprecated/Tribe__Events__Activation_Page.php:195
8534
  msgid "Welcome to The Events Calendar"
8535
  msgstr "Bienvenido a The Events Calendar"
lang/the-events-calendar-eu.po CHANGED
@@ -11,6 +11,31 @@ msgstr ""
11
  "Language: eu_ES\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  #: src/views/month/single-day.php:57
15
  msgid "%s for %s"
16
  msgstr ""
@@ -183,91 +208,91 @@ msgstr ""
183
  msgid "Do more with Eventbrite Tickets"
184
  msgstr ""
185
 
186
- #: src/Tribe/Main.php:4513
187
  msgid "Search for %s by month. Please use the format %s."
188
  msgstr ""
189
 
190
- #: src/Tribe/Main.php:4508
191
  msgid "Search for %s by Date. Please use the format %s."
192
  msgstr ""
193
 
194
- #: src/Tribe/Main.php:4476 src/Tribe/Main.php:4477
195
  msgid "2 digit month dot 4 digit year"
196
  msgstr ""
197
 
198
- #: src/Tribe/Main.php:4475
199
  msgid "4 digit year dot 2 digit month"
200
  msgstr ""
201
 
202
- #: src/Tribe/Main.php:4474
203
  msgid "2 digit month hyphen 4 digit year"
204
  msgstr ""
205
 
206
- #: src/Tribe/Main.php:4471 src/Tribe/Main.php:4472 src/Tribe/Main.php:4473
207
  msgid "1 digit month hyphen 4 digit year"
208
  msgstr ""
209
 
210
- #: src/Tribe/Main.php:4468 src/Tribe/Main.php:4470
211
  msgid "2 digit month slash 4 digit year"
212
  msgstr ""
213
 
214
- #: src/Tribe/Main.php:4467 src/Tribe/Main.php:4469
215
  msgid "1 digit month slash 4 digit year"
216
  msgstr ""
217
 
218
- #: src/Tribe/Main.php:4466
219
  msgid "4 digit year hyphen 2 digit month"
220
  msgstr ""
221
 
222
- #: src/Tribe/Main.php:4462
223
  msgid "2 digit day dot 2 digit month dot 4 digit year"
224
  msgstr ""
225
 
226
- #: src/Tribe/Main.php:4461
227
  msgid "2 digit month dot 2 digit day dot 4 digit year"
228
  msgstr ""
229
 
230
- #: src/Tribe/Main.php:4460
231
  msgid "4 digit year dot 2 digit month dot 2 digit day"
232
  msgstr ""
233
 
234
- #: src/Tribe/Main.php:4459
235
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
236
  msgstr ""
237
 
238
- #: src/Tribe/Main.php:4458
239
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
240
  msgstr ""
241
 
242
- #: src/Tribe/Main.php:4457
243
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
244
  msgstr ""
245
 
246
- #: src/Tribe/Main.php:4456
247
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
248
  msgstr ""
249
 
250
- #: src/Tribe/Main.php:4455
251
  msgid "2 digit day slash 2 digit month slash 4 digit year"
252
  msgstr ""
253
 
254
- #: src/Tribe/Main.php:4454
255
  msgid "1 digit day slash 1 digit month slash 4 digit year"
256
  msgstr ""
257
 
258
- #: src/Tribe/Main.php:4453
259
  msgid "2 digit month slash 2 digit day slash 4 digit year"
260
  msgstr ""
261
 
262
- #: src/Tribe/Main.php:4452
263
  msgid "1 digit month slash 1 digit day slash 4 digit year"
264
  msgstr ""
265
 
266
- #: src/Tribe/Main.php:4451
267
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
268
  msgstr ""
269
 
270
- #: src/Tribe/Main.php:4430
271
  msgid "Search for %s by Keyword."
272
  msgstr ""
273
 
@@ -495,7 +520,7 @@ msgid "Search our support help desk"
495
  msgstr ""
496
 
497
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
498
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:369
499
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
500
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
501
  msgid "The requested page was not found."
@@ -509,12 +534,12 @@ msgstr ""
509
  msgid "one week"
510
  msgstr ""
511
 
512
- #: src/Tribe/Aggregator/Record/List_Table.php:570
513
  msgctxt "when the retry will happen, a date"
514
  msgid "retrying at %s"
515
  msgstr ""
516
 
517
- #: src/Tribe/Aggregator/Record/List_Table.php:567
518
  msgctxt "in human readable time"
519
  msgid "retrying in about %s"
520
  msgstr ""
@@ -596,7 +621,7 @@ msgid "Main %s Page"
596
  msgstr ""
597
 
598
  #: common/src/Tribe/Plugins_API.php:71
599
- msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Tickets have QR codes for easy check in at the door."
600
  msgstr ""
601
 
602
  #: src/admin-views/tribe-options-general.php:31
@@ -628,7 +653,7 @@ msgstr ""
628
  msgid "The event with the specified ID is not accessible."
629
  msgstr ""
630
 
631
- #: src/Tribe/Main.php:1813
632
  msgid "%1$s published. %2$sView %3$s"
633
  msgstr ""
634
 
@@ -979,11 +1004,11 @@ msgstr ""
979
  msgid "the event post name"
980
  msgstr ""
981
 
982
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:341
983
  msgid "The event organizer IDs or data"
984
  msgstr ""
985
 
986
- #: src/Tribe/REST/V1/Endpoints/Single_Event.php:333
987
  msgid "The event venue ID or data"
988
  msgstr ""
989
 
@@ -1226,32 +1251,32 @@ msgstr ""
1226
  msgid "Returns all the organizers matching the search criteria"
1227
  msgstr ""
1228
 
1229
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:478
1230
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1231
  msgstr ""
1232
 
1233
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:472
1234
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1235
  msgstr ""
1236
 
1237
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:466
1238
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1239
  msgstr ""
1240
 
1241
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:461
1242
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1243
  msgid "The event post status"
1244
  msgstr ""
1245
 
1246
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1247
  msgid "Events should be filtered by their featured status"
1248
  msgstr ""
1249
 
1250
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:446
1251
  msgid "Events should be assigned one of the specified organizer IDs"
1252
  msgstr ""
1253
 
1254
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
1255
  msgid "Events should be assigned one of the specified venue IDs"
1256
  msgstr ""
1257
 
@@ -1345,48 +1370,48 @@ msgstr ""
1345
  msgid "The event status"
1346
  msgstr ""
1347
 
1348
- #: src/Tribe/Linked_Posts.php:1126
1349
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1350
  msgid "Create or Find %s"
1351
  msgstr ""
1352
 
1353
- #: src/Tribe/Linked_Posts.php:1117
1354
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1355
  msgid "Find %1$s %2$s"
1356
  msgstr ""
1357
 
1358
- #: src/Tribe/Linked_Posts.php:1108
1359
  msgid "Find a Venue"
1360
  msgstr ""
1361
 
1362
- #: src/Tribe/Linked_Posts.php:1107
1363
  msgid "Create or Find a Venue"
1364
  msgstr ""
1365
 
1366
- #: src/Tribe/Linked_Posts.php:1100
1367
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1368
  msgid "Create or Find %s"
1369
  msgstr ""
1370
 
1371
- #: src/Tribe/Linked_Posts.php:1091
1372
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1373
  msgid "Find %1$s %2$s"
1374
  msgstr ""
1375
 
1376
- #: src/Tribe/Linked_Posts.php:1080
1377
  msgid "Find an Organizer"
1378
  msgstr ""
1379
 
1380
- #: src/Tribe/Linked_Posts.php:1079
1381
  msgid "Create or Find an Organizer"
1382
  msgstr ""
1383
 
1384
- #: src/Tribe/Linked_Posts.php:1072
1385
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1386
  msgid "Create or Find %s"
1387
  msgstr ""
1388
 
1389
- #: src/Tribe/Linked_Posts.php:1063
1390
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1391
  msgid "Find %1$s %2$s"
1392
  msgstr ""
@@ -1482,20 +1507,20 @@ msgstr ""
1482
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1483
  msgstr ""
1484
 
1485
- #: src/Tribe/Main.php:997
1486
  msgid "edit Events settings."
1487
  msgstr ""
1488
 
1489
- #: src/Tribe/Main.php:988
1490
  msgid "Edit the %s slug"
1491
  msgstr ""
1492
 
1493
- #: src/Tribe/Linked_Posts.php:1049
1494
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1495
  msgid "an"
1496
  msgstr ""
1497
 
1498
- #: src/Tribe/Linked_Posts.php:1042
1499
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1500
  msgid "a"
1501
  msgstr ""
@@ -1537,10 +1562,6 @@ msgstr ""
1537
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1538
  msgstr ""
1539
 
1540
- #: common/src/Tribe/Plugins_API.php:37
1541
- msgid "Import events from across the web! Event Aggregator makes it easy to run scheduled or manual imports from Facebook, Meetup, Eventbrite, Google Calendar, and iCalendar, along with uploads from CSV and ICS files. You can also import directly from other sites running The Events Calendar thanks to our built-in REST API support."
1542
- msgstr ""
1543
-
1544
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1545
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1546
  msgstr ""
@@ -1585,7 +1606,7 @@ msgstr ""
1585
  msgid "The event WordPress post ID"
1586
  msgstr ""
1587
 
1588
- #: src/Tribe/Aggregator/Record/Abstract.php:362
1589
  msgid "Something went wrong while inserting the record in the database."
1590
  msgstr ""
1591
 
@@ -1603,7 +1624,7 @@ msgstr[1] ""
1603
  msgid "Please refresh the page and try your request again."
1604
  msgstr ""
1605
 
1606
- #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:28
1607
  msgid "The image WordPress post ID"
1608
  msgstr ""
1609
 
@@ -1663,11 +1684,11 @@ msgstr ""
1663
  msgid "The event last modification date in UTC time"
1664
  msgstr ""
1665
 
1666
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:403
1667
  msgid "Events should start after the specified date"
1668
  msgstr ""
1669
 
1670
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:410
1671
  msgid "Events should start before the specified date"
1672
  msgstr ""
1673
 
@@ -1703,7 +1724,7 @@ msgstr ""
1703
  msgid "the event post ID"
1704
  msgstr ""
1705
 
1706
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:416
1707
  msgid "Events should contain the specified string in the title or description"
1708
  msgstr ""
1709
 
@@ -1999,31 +2020,31 @@ msgid "The requested URL does not have any upcoming and published events matchin
1999
  msgstr ""
2000
 
2001
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2002
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:388
2003
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2004
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2005
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2006
  msgid "The archive page to return"
2007
  msgstr ""
2008
 
2009
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:396
2010
  msgid "The number of events to return on each page"
2011
  msgstr ""
2012
 
2013
- #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:422
2014
  msgid "Events should be assigned
11
  "Language: eu_ES\n"
12
  "Project-Id-Version: Plugins - The Events Calendar - Stable (latest release)\n"
13
 
14
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:337
15
+ msgid "The event tag ID or name"
16
+ msgstr ""
17
+
18
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:331
19
+ msgid "The event category ID or name"
20
+ msgstr ""
21
+
22
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:508
23
+ msgid "Events should be filtered by their post_parent being the specified one."
24
+ msgstr ""
25
+
26
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:498
27
+ msgid "Include events with one of the post IDs specified in the array of CSV list, date filters will be ignored."
28
+ msgstr ""
29
+
30
+ #: src/Tribe/Aggregator/Record/Async_Queue.php:348
31
+ #: src/Tribe/Aggregator/Record/Void_Queue.php:122
32
+ msgid "Unable to process this import - a breakage or conflict may have resulted in the import halting."
33
+ msgstr ""
34
+
35
+ #: common/src/Tribe/Plugins_API.php:37
36
+ msgid "Event Aggregator adds massive import functionality to your calendar. Before you know it, you’ll be importing events from Meetup, Eventbrite, Google Calendar, iCalendar, and other URLs with ease. Schedule imports to run automatically behind-the-scenes or run them manually when you’re ready. Go ahead and import to your heart’s content—Event Aggregator hooks you up with a central dashboard in the admin to make managing your imports a breeze."
37
+ msgstr ""
38
+
39
  #: src/views/month/single-day.php:57
40
  msgid "%s for %s"
41
  msgstr ""
208
  msgid "Do more with Eventbrite Tickets"
209
  msgstr ""
210
 
211
+ #: src/Tribe/Main.php:4114
212
  msgid "Search for %s by month. Please use the format %s."
213
  msgstr ""
214
 
215
+ #: src/Tribe/Main.php:4109
216
  msgid "Search for %s by Date. Please use the format %s."
217
  msgstr ""
218
 
219
+ #: src/Tribe/Main.php:4077 src/Tribe/Main.php:4078
220
  msgid "2 digit month dot 4 digit year"
221
  msgstr ""
222
 
223
+ #: src/Tribe/Main.php:4076
224
  msgid "4 digit year dot 2 digit month"
225
  msgstr ""
226
 
227
+ #: src/Tribe/Main.php:4075
228
  msgid "2 digit month hyphen 4 digit year"
229
  msgstr ""
230
 
231
+ #: src/Tribe/Main.php:4072 src/Tribe/Main.php:4073 src/Tribe/Main.php:4074
232
  msgid "1 digit month hyphen 4 digit year"
233
  msgstr ""
234
 
235
+ #: src/Tribe/Main.php:4069 src/Tribe/Main.php:4071
236
  msgid "2 digit month slash 4 digit year"
237
  msgstr ""
238
 
239
+ #: src/Tribe/Main.php:4068 src/Tribe/Main.php:4070
240
  msgid "1 digit month slash 4 digit year"
241
  msgstr ""
242
 
243
+ #: src/Tribe/Main.php:4067
244
  msgid "4 digit year hyphen 2 digit month"
245
  msgstr ""
246
 
247
+ #: src/Tribe/Main.php:4063
248
  msgid "2 digit day dot 2 digit month dot 4 digit year"
249
  msgstr ""
250
 
251
+ #: src/Tribe/Main.php:4062
252
  msgid "2 digit month dot 2 digit day dot 4 digit year"
253
  msgstr ""
254
 
255
+ #: src/Tribe/Main.php:4061
256
  msgid "4 digit year dot 2 digit month dot 2 digit day"
257
  msgstr ""
258
 
259
+ #: src/Tribe/Main.php:4060
260
  msgid "2 digit day hyphen 2 digit month hyphen 4 digit year"
261
  msgstr ""
262
 
263
+ #: src/Tribe/Main.php:4059
264
  msgid "1 digit day hyphen 1 digit month hyphen 4 digit year"
265
  msgstr ""
266
 
267
+ #: src/Tribe/Main.php:4058
268
  msgid "1 digit month hyphen 2 digit day hyphen 4 digit year"
269
  msgstr ""
270
 
271
+ #: src/Tribe/Main.php:4057
272
  msgid "1 digit month hyphen 1 digit day hyphen 4 digit year"
273
  msgstr ""
274
 
275
+ #: src/Tribe/Main.php:4056
276
  msgid "2 digit day slash 2 digit month slash 4 digit year"
277
  msgstr ""
278
 
279
+ #: src/Tribe/Main.php:4055
280
  msgid "1 digit day slash 1 digit month slash 4 digit year"
281
  msgstr ""
282
 
283
+ #: src/Tribe/Main.php:4054
284
  msgid "2 digit month slash 2 digit day slash 4 digit year"
285
  msgstr ""
286
 
287
+ #: src/Tribe/Main.php:4053
288
  msgid "1 digit month slash 1 digit day slash 4 digit year"
289
  msgstr ""
290
 
291
+ #: src/Tribe/Main.php:4052
292
  msgid "4 digit year hyphen 2 digit month hyphen 2 digit day"
293
  msgstr ""
294
 
295
+ #: src/Tribe/Main.php:4031
296
  msgid "Search for %s by Keyword."
297
  msgstr ""
298
 
520
  msgstr ""
521
 
522
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:39
523
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:385
524
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:67
525
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:64
526
  msgid "The requested page was not found."
534
  msgid "one week"
535
  msgstr ""
536
 
537
+ #: src/Tribe/Aggregator/Record/List_Table.php:577
538
  msgctxt "when the retry will happen, a date"
539
  msgid "retrying at %s"
540
  msgstr ""
541
 
542
+ #: src/Tribe/Aggregator/Record/List_Table.php:574
543
  msgctxt "in human readable time"
544
  msgid "retrying in about %s"
545
  msgstr ""
621
  msgstr ""
622
 
623
  #: common/src/Tribe/Plugins_API.php:71
624
+ msgid "Event Tickets Plus allows you to sell tickets to your events using WooCommerce, Easy Digital Downloads, or our built in Tribe Commerce tool. Add tickets to your posts and pages, or add %1$sThe Events Calendar%2$s and sell tickets from your event listings. Create custom registration forms, manage attendees, use custom capacity options, and more. Guest check in is easy with QR codes and our custom scanning app."
625
  msgstr ""
626
 
627
  #: src/admin-views/tribe-options-general.php:31
653
  msgid "The event with the specified ID is not accessible."
654
  msgstr ""
655
 
656
+ #: src/Tribe/Main.php:1812
657
  msgid "%1$s published. %2$sView %3$s"
658
  msgstr ""
659
 
1004
  msgid "the event post name"
1005
  msgstr ""
1006
 
1007
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:354
1008
  msgid "The event organizer IDs or data"
1009
  msgstr ""
1010
 
1011
+ #: src/Tribe/REST/V1/Endpoints/Single_Event.php:346
1012
  msgid "The event venue ID or data"
1013
  msgstr ""
1014
 
1251
  msgid "Returns all the organizers matching the search criteria"
1252
  msgstr ""
1253
 
1254
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:494
1255
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue longitude location, must also provide geoloc_lat"
1256
  msgstr ""
1257
 
1258
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:488
1259
  msgid "Requires Events Calendar Pro. Events should be filtered by their venue latitude location, must also provide geoloc_lng"
1260
  msgstr ""
1261
 
1262
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:482
1263
  msgid "Requires Events Calendar Pro. Events should be filtered by whether their venue has geolocation data"
1264
  msgstr ""
1265
 
1266
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:477
1267
  #: src/Tribe/REST/V1/Endpoints/Single_Event.php:256
1268
  msgid "The event post status"
1269
  msgstr ""
1270
 
1271
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:470
1272
  msgid "Events should be filtered by their featured status"
1273
  msgstr ""
1274
 
1275
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:462
1276
  msgid "Events should be assigned one of the specified organizer IDs"
1277
  msgstr ""
1278
 
1279
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:454
1280
  msgid "Events should be assigned one of the specified venue IDs"
1281
  msgstr ""
1282
 
1370
  msgid "The event status"
1371
  msgstr ""
1372
 
1373
+ #: src/Tribe/Linked_Posts.php:1254
1374
  msgctxt "The \"Create or Find {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1375
  msgid "Create or Find %s"
1376
  msgstr ""
1377
 
1378
+ #: src/Tribe/Linked_Posts.php:1245
1379
  msgctxt "The \"Find a {post type name}\" label for custom linked post types that are *not* Venues or Organizers"
1380
  msgid "Find %1$s %2$s"
1381
  msgstr ""
1382
 
1383
+ #: src/Tribe/Linked_Posts.php:1236
1384
  msgid "Find a Venue"
1385
  msgstr ""
1386
 
1387
+ #: src/Tribe/Linked_Posts.php:1235
1388
  msgid "Create or Find a Venue"
1389
  msgstr ""
1390
 
1391
+ #: src/Tribe/Linked_Posts.php:1228
1392
  msgctxt "\"Create or Find Venue\", but when the word \"Venue\" is customized to something else."
1393
  msgid "Create or Find %s"
1394
  msgstr ""
1395
 
1396
+ #: src/Tribe/Linked_Posts.php:1219
1397
  msgctxt "\"Find a Venue\", but when the word \"Venue\" is customized to something else."
1398
  msgid "Find %1$s %2$s"
1399
  msgstr ""
1400
 
1401
+ #: src/Tribe/Linked_Posts.php:1208
1402
  msgid "Find an Organizer"
1403
  msgstr ""
1404
 
1405
+ #: src/Tribe/Linked_Posts.php:1207
1406
  msgid "Create or Find an Organizer"
1407
  msgstr ""
1408
 
1409
+ #: src/Tribe/Linked_Posts.php:1200
1410
  msgctxt "\"Create or Find Organizer\", but when the word \"Organizer\" is customized to something else."
1411
  msgid "Create or Find %s"
1412
  msgstr ""
1413
 
1414
+ #: src/Tribe/Linked_Posts.php:1191
1415
  msgctxt "\"Find an Organizer\", but when the word \"Organizer\" is customized to something else."
1416
  msgid "Find %1$s %2$s"
1417
  msgstr ""
1507
  msgid "The e-mail address will be obfuscated on this site to avoid it getting harvested by spammers."
1508
  msgstr ""
1509
 
1510
+ #: src/Tribe/Main.php:996
1511
  msgid "edit Events settings."
1512
  msgstr ""
1513
 
1514
+ #: src/Tribe/Main.php:987
1515
  msgid "Edit the %s slug"
1516
  msgstr ""
1517
 
1518
+ #: src/Tribe/Linked_Posts.php:1177
1519
  msgctxt "Indefinite article for the phrase \"Find a {post type name}\" when the {post type name} starts with a vowel, e.g. \"Find an Organizer\"."
1520
  msgid "an"
1521
  msgstr ""
1522
 
1523
+ #: src/Tribe/Linked_Posts.php:1170
1524
  msgctxt "Indefinite article for the phrase \"Find a {post type name}. Will be replaced with \"an\" if the {post type name} starts with a vowel."
1525
  msgid "a"
1526
  msgstr ""
1562
  msgid "The response from the Event Aggregator server was badly formed and could not be understood. Please try again."
1563
  msgstr ""
1564
 
 
 
 
 
1565
  #: src/Tribe/Integrations/WPML/Defaults.php:117
1566
  msgid "The Events Calendar could not write WPML default config file: please create the file manually."
1567
  msgstr ""
1606
  msgid "The event WordPress post ID"
1607
  msgstr ""
1608
 
1609
+ #: src/Tribe/Aggregator/Record/Abstract.php:363
1610
  msgid "Something went wrong while inserting the record in the database."
1611
  msgstr ""
1612
 
1624
  msgid "Please refresh the page and try your request again."
1625
  msgstr ""
1626
 
1627
+ #: common/src/Tribe/Documentation/Swagger/Image_Definition_Provider.php:29
1628
  msgid "The image WordPress post ID"
1629
  msgstr ""
1630
 
1684
  msgid "The event last modification date in UTC time"
1685
  msgstr ""
1686
 
1687
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:419
1688
  msgid "Events should start after the specified date"
1689
  msgstr ""
1690
 
1691
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:426
1692
  msgid "Events should start before the specified date"
1693
  msgstr ""
1694
 
1724
  msgid "the event post ID"
1725
  msgstr ""
1726
 
1727
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:432
1728
  msgid "Events should contain the specified string in the title or description"
1729
  msgstr ""
1730
 
2020
  msgstr ""
2021
 
2022
  #: src/Tribe/REST/V1/Endpoints/Archive_Category.php:93
2023
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:404
2024
  #: src/Tribe/REST/V1/Endpoints/Archive_Organizer.php:194
2025
  #: src/Tribe/REST/V1/Endpoints/Archive_Tag.php:110
2026
  #: src/Tribe/REST/V1/Endpoints/Archive_Venue.php:191
2027
  msgid "The archive page to return"
2028
  msgstr ""
2029
 
2030
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:412
2031
  msgid "The number of events to return on each page"
2032
  msgstr ""
2033
 
2034
+ #: src/Tribe/REST/V1/Endpoints/Archive_Event.php:438
2035
  msgid "Events should be assigned