Event Organiser - Version 3.10.0

Version Description

  • 22nd July 202 =
  • feature: Extended support for RECURRENCE-ID in iCal calendards
  • bugfix: Ensure translated screen help text is escaped
  • bugfix: Replace instances of curly braces for array access (deprecated PHP 7).
Download this release

Release Info

Developer jenkinspress
Plugin Icon 128x128 Event Organiser
Version 3.10.0
Comparing to
See all releases

Code changes from version 3.9.1 to 3.10.0

Files changed (60) hide show
  1. event-organiser.php +2 -2
  2. includes/class-eo-ical-parser.php +31 -9
  3. includes/event-organiser-cpt.php +72 -68
  4. js/admin-calendar.min.js +1 -1
  5. js/edit-event-controller.min.js +1 -1
  6. js/event-manager.min.js +1 -1
  7. js/event.min.js +1 -1
  8. js/frontend.min.js +1 -1
  9. js/fullcalendar.min.js +1 -1
  10. js/jquery-ui-eo-timepicker.min.js +1 -1
  11. js/moment.min.js +1 -1
  12. js/time-picker.min.js +1 -1
  13. js/venue-admin.min.js +1 -1
  14. js/venue-util.js +2 -1
  15. js/venue-util.min.js +2 -2
  16. languages/eventorganiser-af.po +22 -22
  17. languages/eventorganiser-ar.po +22 -22
  18. languages/eventorganiser-bg_BG.po +22 -22
  19. languages/eventorganiser-ca.po +22 -22
  20. languages/eventorganiser-cs_CZ.po +22 -22
  21. languages/eventorganiser-da_DK.po +22 -22
  22. languages/eventorganiser-de_DE.po +22 -22
  23. languages/eventorganiser-el.po +22 -22
  24. languages/eventorganiser-en_CA.po +22 -22
  25. languages/eventorganiser-en_GB.po +22 -22
  26. languages/eventorganiser-es_ES.po +22 -22
  27. languages/eventorganiser-es_PE.po +22 -22
  28. languages/eventorganiser-et.po +22 -22
  29. languages/eventorganiser-fa_IR.po +22 -22
  30. languages/eventorganiser-fi.po +22 -22
  31. languages/eventorganiser-fr_FR.po +22 -22
  32. languages/eventorganiser-he_IL.po +22 -22
  33. languages/eventorganiser-hi_IN.po +22 -22
  34. languages/eventorganiser-hr.po +22 -22
  35. languages/eventorganiser-hu_HU.po +22 -22
  36. languages/eventorganiser-id_ID.po +22 -22
  37. languages/eventorganiser-is_IS.po +22 -22
  38. languages/eventorganiser-it_IT.po +22 -22
  39. languages/eventorganiser-ja.po +22 -22
  40. languages/eventorganiser-lt_LT.po +22 -22
  41. languages/eventorganiser-lv.po +22 -22
  42. languages/eventorganiser-mk_MK.po +22 -22
  43. languages/eventorganiser-nb_NO.po +22 -22
  44. languages/eventorganiser-nl_NL.po +22 -22
  45. languages/eventorganiser-nn_NO.po +22 -22
  46. languages/eventorganiser-pl_PL.po +22 -22
  47. languages/eventorganiser-pt_BR.po +22 -22
  48. languages/eventorganiser-pt_PT.po +22 -22
  49. languages/eventorganiser-ro_RO.po +22 -22
  50. languages/eventorganiser-ru_RU.po +22 -22
  51. languages/eventorganiser-sk_SK.po +22 -22
  52. languages/eventorganiser-sl_SI.po +22 -22
  53. languages/eventorganiser-sv_SE.po +22 -22
  54. languages/eventorganiser-th.po +22 -22
  55. languages/eventorganiser-tr_TR.po +22 -22
  56. languages/eventorganiser-uk.po +22 -22
  57. languages/eventorganiser-zh_CN.po +22 -22
  58. languages/eventorganiser-zh_HK.po +22 -22
  59. languages/eventorganiser.pot +22 -22
  60. readme.txt +7 -2
event-organiser.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Event Organiser
4
  Plugin URI: http://www.wp-event-organiser.com
5
- Version: 3.9.1
6
  Description: Creates a custom post type 'events' with features such as recurring events, venues, Google Maps, calendar views and events and venue pages
7
  Author: Stephen Harris
8
  Author URI: http://www.stephenharris.info
@@ -38,7 +38,7 @@ Domain Path: /languages
38
  /**
39
  * Set the plug-in database version
40
  */
41
- define( 'EVENT_ORGANISER_VER', '3.9.1' );
42
 
43
  add_action( 'after_setup_theme', '_eventorganiser_set_constants' );
44
  function _eventorganiser_set_constants() {
2
  /*
3
  Plugin Name: Event Organiser
4
  Plugin URI: http://www.wp-event-organiser.com
5
+ Version: 3.10.0
6
  Description: Creates a custom post type 'events' with features such as recurring events, venues, Google Maps, calendar views and events and venue pages
7
  Author: Stephen Harris
8
  Author URI: http://www.stephenharris.info
38
  /**
39
  * Set the plug-in database version
40
  */
41
+ define( 'EVENT_ORGANISER_VER', '3.10.0' );
42
 
43
  add_action( 'after_setup_theme', '_eventorganiser_set_constants' );
44
  function _eventorganiser_set_constants() {
includes/class-eo-ical-parser.php CHANGED
@@ -328,7 +328,7 @@ class EO_ICAL_Parser{
328
 
329
  $j = $i+1;
330
 
331
- while( isset( $lines[$j] ) && strlen( $lines[$j] ) > 0 && ( $lines[$j]{0} == ' ' || $lines[$j]{0} == "\t" )) {
332
  $unfolded_lines[$i] .= rtrim( substr( $lines[$j], 1 ), "\n\r" );
333
  $j++;
334
  }
@@ -460,15 +460,18 @@ class EO_ICAL_Parser{
460
  $index = isset( $this->current_event['uid'] ) ? 'uid:'.$this->current_event['uid'] : count( $this->events );
461
  if( isset( $this->events[$index] ) ){
462
 
463
- if( $this->current_event['sequence'] > $this->events[$index]['sequence'] ){
464
- $this->events[$index] = $this->current_event;
465
-
466
- }elseif( isset( $this->events[$index]['recurrence-id'] ) ){
467
- //This event has recurrence ID - replace it.
468
  $this->events[$index] = $this->current_event;
469
 
470
  }elseif( isset( $this->current_event['recurrence-id'] ) ){
471
- //Ignore this event - keep existing
 
 
 
 
 
472
 
473
  }elseif( $this->current_event['sequence'] == $this->events[$index]['sequence'] ){
474
  $this->report_warning(
@@ -485,7 +488,10 @@ class EO_ICAL_Parser{
485
  $this->events[$index] = $this->current_event;
486
  }
487
 
488
- $this->current_event = array();
 
 
 
489
 
490
  //Otherwise, parse event property
491
  }else{
@@ -519,7 +525,7 @@ class EO_ICAL_Parser{
519
  //Begin event
520
  if( $property=='BEGIN' && $value=='VEVENT'){
521
  $this->state = "VEVENT";
522
- $this->current_event = array( '_lines' => array( 'start' => $this->line ) );
523
 
524
  }elseif ( $property=='END' && $value=='VCALENDAR'){
525
  $this->state = "ENDCALENDAR";
@@ -654,7 +660,23 @@ class EO_ICAL_Parser{
654
  case 'RECURRENCE-ID':
655
  //This is not properly implemented yet but is used to detect
656
  //when feed entries may share a UID.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
657
  $this->current_event['recurrence-id'] = $value;
 
 
658
  break;
659
 
660
  case 'CREATED':
328
 
329
  $j = $i+1;
330
 
331
+ while( isset( $lines[$j] ) && strlen( $lines[$j] ) > 0 && ( $lines[$j][0] == ' ' || $lines[$j][0] == "\t" )) {
332
  $unfolded_lines[$i] .= rtrim( substr( $lines[$j], 1 ), "\n\r" );
333
  $j++;
334
  }
460
  $index = isset( $this->current_event['uid'] ) ? 'uid:'.$this->current_event['uid'] : count( $this->events );
461
  if( isset( $this->events[$index] ) ){
462
 
463
+ if( isset( $this->events[$index]['recurrence-id'] ) ){
464
+ $this->current_event['include'] = array_merge($this->current_event['include'], $this->events[$index]['include']);
465
+ $this->current_event['exclude'] = array_merge($this->current_event['exclude'], $this->events[$index]['exclude']);
 
 
466
  $this->events[$index] = $this->current_event;
467
 
468
  }elseif( isset( $this->current_event['recurrence-id'] ) ){
469
+
470
+ $this->events[$index]['include'] = array_merge($this->events[$index]['include'], $this->current_event['include']);
471
+ $this->events[$index]['exclude'] = array_merge($this->events[$index]['exclude'], $this->current_event['exclude']);
472
+
473
+ }elseif( $this->current_event['sequence'] > $this->events[$index]['sequence'] ){
474
+ $this->events[$index] = $this->current_event;
475
 
476
  }elseif( $this->current_event['sequence'] == $this->events[$index]['sequence'] ){
477
  $this->report_warning(
488
  $this->events[$index] = $this->current_event;
489
  }
490
 
491
+ $this->current_event = array(
492
+ 'exclude' => array(),
493
+ 'include' => array()
494
+ );
495
 
496
  //Otherwise, parse event property
497
  }else{
525
  //Begin event
526
  if( $property=='BEGIN' && $value=='VEVENT'){
527
  $this->state = "VEVENT";
528
+ $this->current_event = array( '_lines' => array( 'start' => $this->line ), 'include' => array(), 'exclude' => array() );
529
 
530
  }elseif ( $property=='END' && $value=='VCALENDAR'){
531
  $this->state = "ENDCALENDAR";
660
  case 'RECURRENCE-ID':
661
  //This is not properly implemented yet but is used to detect
662
  //when feed entries may share a UID.
663
+ if( isset( $meta ) && $meta == 'DATE' ):
664
+ $date = $this->parse_ical_date( $value );
665
+ else:
666
+ try{
667
+ $date = $this->parse_ical_datetime( $value, $date_tz );
668
+ } catch ( Exception $datetime_exception ) {
669
+ try{
670
+ $date = $this->parse_ical_date( $value );
671
+ } catch ( Exception $date_exception ) {
672
+ throw $datetime_exception;
673
+ }
674
+ }
675
+
676
+ endif;
677
  $this->current_event['recurrence-id'] = $value;
678
+ $this->current_event['exclude'][] = $date;
679
+ $this->current_event['include'][] = $this->current_event['start'];
680
  break;
681
 
682
  case 'CREATED':
includes/event-organiser-cpt.php CHANGED
@@ -522,85 +522,89 @@ function eventorganiser_cpt_help_text() {
522
  return;
523
  }
524
 
525
- switch($screen_id):
526
- //Add help for event editing / creating page
527
  case 'event':
528
  $screen->add_help_tab( array(
529
- 'id' => 'creating-events',
530
- 'title' => __('Creating events','eventorganiser'),
531
- 'content' => '<p>' . __('Creating events:','eventorganiser') . '</p>'.
532
- '<ul>' .
533
- '<li>' . __('The start date is the date the event starts. If the event is a recurring event, this is the start date of the first occurrence.','eventorganiser') . '</li>' .
534
- '<li>' . __('The end date is the date the event finishes. If the event is a recurring event, this is the end date of the first occurrence.','eventorganiser') . '</li>' .
535
- '<li>' . __('All dates and times must be entered in the specified format. This format can changed in the settings page.','eventorganiser') . '</li>' .
536
- '</ul>'
537
- ));
538
  $screen->add_help_tab( array(
539
- 'id' => 'repeating-events',
540
- 'title' => __('Repeating events','eventorganiser'),
541
- 'content' => '<p>' . __('To repeat an event according to some regular pattern, use the recurrence dropdown menu to select how the event is to repeat. Further options then appear, ','eventorganiser') . '</p>' .
542
- '<ul>' .
543
- '<li>' . __('Specify how regularly the event should repeat (default 1)','eventorganiser') . '</li>' .
544
- '<li>' . __('Choose the recurrence end date. No further occurrences are added after this date, but an occurrence that starts before may finish after this date.','eventorganiser') . '</li>' .
545
- '<li>' . __('If monthly recurrence is selected, select whether this should repeat on that date of the month (e.g. on the 24th) or on the day of the month (e.g. on the third Tuesday) ','eventorganiser') . '</li>' .
546
- '<li>' . __('If weekly recurrence is selected, select which days of the week the event should be repeated. If no days are selected, the day of the start date is used','eventorganiser') . '</li>' .
547
- '</ul>'
548
- ));
549
  $screen->add_help_tab( array(
550
- 'id' => 'selecting-venues',
551
- 'title' => __('Selecting a venue','eventorganiser'),
552
- 'content' => '<p>' . __('Selecting a venue','eventorganiser') . '</p>' .
553
- '<ul>' .
554
- '<li>' . __('Use the venues input field to search for existing venues','eventorganiser') . '</li>' .
555
- '<li>' . __('Only pre-existing venues can be selected. To add a venue, go to the venues page.','eventorganiser') . '</li>' .
556
- '</ul>'
557
- ));
558
  break;
559
 
560
- //Add help for event admin table page
561
  case 'edit-event':
562
-
563
  $screen->add_help_tab( array(
564
- 'id'=>'overview',
565
- 'title' => __('Overview'),
566
- 'content'=>'<p>' . __('This is the list of all saved events. Note that <strong> recurring events appear as a single row </strong> in the table and the start and end date refers to the first occurrence of that event.','eventorganiser') . '</p>' ));
 
567
  break;
568
 
569
- //Add help for venue admin table page
570
  case 'event_page_venues':
571
- $screen->add_help_tab( array(
572
- 'id'=>'overview',
573
- 'title' => __('Overview'),
574
- 'content'=> '<p>' . __("Hovering over a row in the venues list will display action links that allow you to manage that venue. You can perform the following actions:",'eventorganiser') . '</p>' .
575
  '<ul>' .
576
- '<li>' . __('Edit takes you to the editing screen for that venue. You can also reach that screen by clicking on the venue title.','eventorganiser') . '</li>' .
577
- '<li>' . __('Delete will permanently remove the venue','eventorganiser') . '</li>' .
578
- '<li>' . __("View will take you to the venue's page",'eventorganiser') . '</li>' .
579
- '</ul>'
580
- ));
 
 
 
 
 
581
  break;
582
 
583
- //Add help for calendar view
584
  case 'event_page_calendar':
585
  $screen->add_help_tab( array(
586
- 'id'=>'overview',
587
- 'title'=>__('Overview'),
588
- 'content'=>'<p>' . __("This page shows all (occurrances of) events. You can view the summary of an event by clicking on it. If you have the necessary permissions, a link to the event's edit page will appear also.",'eventorganiser'). '</p>' .
589
- '<p>' . __("By clicking the relevant tab, you can view events in Month, Week or Day mode. You can also filter the events by events by category and venue. The 'go to date' button allows you to quickly jump to a specific date.",'eventorganiser'). '</p>'
590
- ));
591
  $screen->add_help_tab( array(
592
- 'id'=>'add-event',
593
- 'title'=>__('Add Event','eventorganiser'),
594
- 'content'=>'<p>' . __("You can create an event on this Calendar, by clicking on day or dragging over multiple days (in Month view) or multiple times (in Week and Day view). You can give the event a title, specify a venue and provide a descripton. The event can be immediately published or saved as a draft. In any case, the event is created and you are forwarded to that event's edit page.",'eventorganiser') . '</p>' ));
 
595
  break;
596
  endswitch;
597
 
598
  //Add a link to Event Organiser documentation on every EO page
599
  $screen->set_help_sidebar(
600
- '<p> <strong>'. __('For more information','eventorganiser').'</strong></br>'
601
- .sprintf(__('See the <a %s> documentation</a>','eventorganiser'),'target="_blank" href="http://docs.wp-event-organiser.com/"').'</p>'
602
- .sprintf('<p><strong><a href="%s">%s</a></strong></p>', admin_url('edit.php?post_type=event&page=debug'),__('Debugging Event Organiser','eventorganiser' ) )
603
- .sprintf('<p><strong><a href="%s">%s</a></strong></p>', admin_url('index.php?page=eo-pro'),__('Go Pro!','eventorganiser'))
604
  );
605
 
606
  }
@@ -1175,15 +1179,15 @@ add_action( 'admin_bar_menu', '_eventorganiser_add_venue_admin_bar_edit_menu', 8
1175
 
1176
 
1177
 
1178
- /**
1179
- * Update venue and category meta data when a term gets split.
1180
  * @since 2.12.0
1181
- * @access private
1182
- * @param int $term_id ID of the formerly shared term.
1183
- * @param int $new_term_id ID of the new term created for the $term_taxonomy_id.
1184
- * @param int $term_taxonomy_id ID for the term_taxonomy row affected by the split.
1185
- * @param string $taxonomy Taxonomy for the split term.
1186
- */
1187
  function _eventorganiser_handle_split_shared_terms( $term_id, $new_term_id, $term_taxonomy_id, $taxonomy ) {
1188
 
1189
  switch( $taxonomy ){
@@ -1203,7 +1207,7 @@ function _eventorganiser_handle_split_shared_terms( $term_id, $new_term_id, $ter
1203
  update_option( "eo-event-category_{$new_term_id}", $value );
1204
  delete_option( "eo-event-category_{$term_id}" );
1205
  break;
1206
- }
1207
-
1208
- }
1209
  add_action( 'split_shared_term', '_eventorganiser_handle_split_shared_terms', 10, 4 );
522
  return;
523
  }
524
 
525
+ switch( $screen_id ):
526
+ // Add help for event editing / creating page
527
  case 'event':
528
  $screen->add_help_tab( array(
529
+ 'id' => 'creating-events',
530
+ 'title' => esc_html__( 'Creating events', 'eventorganiser' ),
531
+ 'content' => '<p>' . esc_html__( 'Creating events:', 'eventorganiser' ) . '</p>' .
532
+ '<ul>' .
533
+ '<li>' . esc_html__( 'The start date is the date the event starts. If the event is a recurring event, this is the start date of the first occurrence.', 'eventorganiser' ) . '</li>' .
534
+ '<li>' . esc_html__( 'The end date is the date the event finishes. If the event is a recurring event, this is the end date of the first occurrence.', 'eventorganiser' ) . '</li>' .
535
+ '<li>' . esc_html__( 'All dates and times must be entered in the specified format. This format can changed in the settings page.', 'eventorganiser' ) . '</li>' .
536
+ '</ul>'
537
+ ) );
538
  $screen->add_help_tab( array(
539
+ 'id' => 'repeating-events',
540
+ 'title' => esc_html__( 'Repeating events', 'eventorganiser' ),
541
+ 'content' => '<p>' . esc_html__( 'To repeat an event according to some regular pattern, use the recurrence dropdown menu to select how the event is to repeat. Further options then appear, ', 'eventorganiser' ) . '</p>' .
542
+ '<ul>' .
543
+ '<li>' . esc_html__( 'Specify how regularly the event should repeat (default 1)','eventorganiser') . '</li>' .
544
+ '<li>' . esc_html__( 'Choose the recurrence end date. No further occurrences are added after this date, but an occurrence that starts before may finish after this date.', 'eventorganiser' ) . '</li>' .
545
+ '<li>' . esc_html__( 'If monthly recurrence is selected, select whether this should repeat on that date of the month (e.g. on the 24th) or on the day of the month (e.g. on the third Tuesday) ', 'eventorganiser' ) . '</li>' .
546
+ '<li>' . esc_html__( 'If weekly recurrence is selected, select which days of the week the event should be repeated. If no days are selected, the day of the start date is used', 'eventorganiser' ) . '</li>' .
547
+ '</ul>'
548
+ ) );
549
  $screen->add_help_tab( array(
550
+ 'id' => 'selecting-venues',
551
+ 'title' => esc_html__( 'Selecting a venue', 'eventorganiser' ),
552
+ 'content' => '<p>' . esc_html__( 'Selecting a venue', 'eventorganiser' ) . '</p>' .
553
+ '<ul>' .
554
+ '<li>' . esc_html__( 'Use the venues input field to search for existing venues', 'eventorganiser' ) . '</li>' .
555
+ '<li>' . esc_html__( 'Only pre-existing venues can be selected. To add a venue, go to the venues page.', 'eventorganiser' ) . '</li>' .
556
+ '</ul>'
557
+ ) );
558
  break;
559
 
560
+ // Add help for event admin table page
561
  case 'edit-event':
 
562
  $screen->add_help_tab( array(
563
+ 'id' => 'overview',
564
+ 'title' => esc_html__( 'Overview', 'eventorganiser' ),
565
+ 'content' => '<p>' . __( 'This is the list of all saved events. Note that <strong> recurring events appear as a single row </strong> in the table and the start and end date refers to the first occurrence of that event.', 'eventorganiser' ) . '</p>'
566
+ ) );
567
  break;
568
 
569
+ // Add help for venue admin table page
570
  case 'event_page_venues':
571
+ $content =
572
+ '<p>' . esc_html__( "Hovering over a row in the venues list will display action links that allow you to manage that venue. You can perform the following actions:", 'eventorganiser' ) . '</p>' .
 
 
573
  '<ul>' .
574
+ '<li>' . esc_html__( 'Edit takes you to the editing screen for that venue. You can also reach that screen by clicking on the venue title.', 'eventorganiser' ) . '</li>' .
575
+ '<li>' . esc_html__( 'Delete will permanently remove the venue', 'eventorganiser' ) . '</li>' .
576
+ '<li>' . esc_html__( "View will take you to the venue's page", 'eventorganiser' ) . '</li>' .
577
+ '</ul>';
578
+
579
+ $screen->add_help_tab( array(
580
+ 'id' => 'overview',
581
+ 'title' => esc_html__( 'Overview', 'eventorganiser' ),
582
+ 'content' => $content
583
+ ) );
584
  break;
585
 
586
+ // Add help for calendar view
587
  case 'event_page_calendar':
588
  $screen->add_help_tab( array(
589
+ 'id' => 'overview',
590
+ 'title' => esc_html__( 'Overview', 'eventorganiser' ),
591
+ 'content' => '<p>' . esc_html__( "This page shows all (occurrances of) events. You can view the summary of an event by clicking on it. If you have the necessary permissions, a link to the event's edit page will appear also.", 'eventorganiser' ) . '</p>' .
592
+ '<p>' . __( "By clicking the relevant tab, you can view events in Month, Week or Day mode. You can also filter the events by events by category and venue. The 'go to date' button allows you to quickly jump to a specific date.", 'eventorganiser' ) . '</p>'
593
+ ) );
594
  $screen->add_help_tab( array(
595
+ 'id' => 'add-event',
596
+ 'title' => esc_html__( 'Add Event', 'eventorganiser' ),
597
+ 'content'=> '<p>' . esc_html__( "You can create an event on this Calendar, by clicking on day or dragging over multiple days (in Month view) or multiple times (in Week and Day view). You can give the event a title, specify a venue and provide a descripton. The event can be immediately published or saved as a draft. In any case, the event is created and you are forwarded to that event's edit page.", 'eventorganiser' ) . '</p>'
598
+ ) );
599
  break;
600
  endswitch;
601
 
602
  //Add a link to Event Organiser documentation on every EO page
603
  $screen->set_help_sidebar(
604
+ '<p> <strong>'. esc_html__( 'For more information', 'eventorganiser' ). '</strong></br>'
605
+ . sprintf( __( 'See the <a %s> documentation</a>','eventorganiser'), 'target="_blank" href="http://docs.wp-event-organiser.com/"' ) . '</p>'
606
+ . sprintf( '<p><strong><a href="%s">%s</a></strong></p>', admin_url( 'edit.php?post_type=event&page=debug' ), esc_html__( 'Debugging Event Organiser', 'eventorganiser' ) )
607
+ . sprintf( '<p><strong><a href="%s">%s</a></strong></p>', admin_url( 'index.php?page=eo-pro' ), esc_html__( 'Go Pro!', 'eventorganiser' ) )
608
  );
609
 
610
  }
1179
 
1180
 
1181
 
1182
+ /**
1183
+ * Update venue and category meta data when a term gets split.
1184
  * @since 2.12.0
1185
+ * @access private
1186
+ * @param int $term_id ID of the formerly shared term.
1187
+ * @param int $new_term_id ID of the new term created for the $term_taxonomy_id.
1188
+ * @param int $term_taxonomy_id ID for the term_taxonomy row affected by the split.
1189
+ * @param string $taxonomy Taxonomy for the split term.
1190
+ */
1191
  function _eventorganiser_handle_split_shared_terms( $term_id, $new_term_id, $term_taxonomy_id, $taxonomy ) {
1192
 
1193
  switch( $taxonomy ){
1207
  update_option( "eo-event-category_{$new_term_id}", $value );
1208
  delete_option( "eo-event-category_{$term_id}" );
1209
  break;
1210
+ }
1211
+
1212
+ }
1213
  add_action( 'split_shared_term', '_eventorganiser_handle_split_shared_terms', 10, 4 );
js/admin-calendar.min.js CHANGED
@@ -1,2 +1,2 @@
1
- /*! event-organiser 3.9.1-0-g845144e 2020-05-28 21:35 */
2
  var eventorganiser=eventorganiser||{};eventorganiser.versionCompare=function(a,b){if(typeof a+typeof b!="stringstring")return!1;for(var c=a.split("."),d=b.split("."),e=0,f=Math.max(c.length,d.length);f>e;e++){if(c[e]&&!d[e]&&parseInt(c[e],10)>0||parseInt(c[e],10)>parseInt(d[e],10))return 1;if(d[e]&&!c[e]&&parseInt(d[e],10)>0||parseInt(c[e],10)<parseInt(d[e],10))return-1}return 0},function(a){a(document).ready(function(){function b(){var b=a("<span class='fc-header-goto'><input type='hidden' id='miniCalendar'/></span>");return b}function c(b){a(".view-button").removeClass("nav-tab-active"),g.fullCalendar("changeView",b),a("#"+b).addClass("nav-tab-active")}function d(b){var c=b.categories;if(c){var d="<select class='eo-cal-filter' id='eo-event-cat'>";d+="<option value=''>"+b.buttonText.cat+"</option>";for(var e=0;e<c.length;e++)d+="<option class='cat-slug-"+c[e].slug+" cat' value='"+c[e].slug+"'>"+c[e].name+"</option>";return d+="</select>",a("<span class='fc-header-dropdown filter-category'></span>").append(d)}}function e(b){var c=b.venues;if(c){var d="<select class='eo-cal-filter' id='eo-event-venue'>";d+="<option value=''>"+b.buttonText.venue+"</option>";for(var e=0;e<c.length;e++)d+="<option value='"+c[e].term_id+"'>"+c[e].name+"</option>";return d+="</select>",a("<span class='fc-header-dropdown filter-venue'></span>").append(d)}}a("#eo-dialog-tabs").tabs(),a(".eo-dialog").dialog({autoOpen:!1,dialogClass:"eo-admin-calendar-dialog",width:527,modal:!0,closeText:"Close modal",draggable:!1,open:function(b,c){a(this).parent(".eo-admin-calendar-dialog").focus()}}),a(".eo-dialog").parent().find(".ui-dialog-titlebar-close").addClass("eo-ui-button"),a("#events-meta").parent().find(".ui-dialog-titlebar-close").appendTo(".ui-tabs-nav").closest(".ui-dialog").children(".ui-dialog-titlebar").remove();var f=a("#eofc_time_format").is(":checked")?"HH:mm":"h:mma",g=jQuery("#eo_admin_calendar").fullCalendar({firstDay:parseInt(EO_Ajax.startday,10),defaultDate:moment(a.cookie("eo_admin_cal_last_viewed_date")),defaultView:a.cookie("eo_admin_cal_last_view")?a.cookie("eo_admin_cal_last_view"):"month",editable:EO_Ajax.perm_edit,eventDurationEditable:!1,eventStartEditable:EO_Ajax.edit_time,durationEditable:!1,snapDuration:"00:05:00",slotDuration:"00:15:00",eventDrop:function(b,c,d,e,f,g){return b.end?void a.ajax({type:"POST",url:EO_Ajax.ajaxurl,data:{action:"eofc-edit-date",start:b.start.format("YYYY-MM-DD HH:mm:ss"),end:b.end.format("YYYY-MM-DD HH:mm:ss"),event_id:b.event_id,occurrence_id:b.occurrence_id,_wpnonce:EO_Ajax.edit_nonce},dataType:"json"}).done(function(a){a.success!==!0&&(alert(a.data.message),d())}).fail(function(a,b,c){alert("Error: "+c),d()}):(alert("Changing the event duration is not supported"),void d())},lazyFetching:"true",eventColor:"#21759B",theme:!1,customButtons:{category:d,venue:""!==EO_Ajax.venues?e:null,"goto":b},buttonText:{today:EO_Ajax.locale.today,month:EO_Ajax.locale.month,week:EO_Ajax.locale.week,day:EO_Ajax.locale.day,cat:EO_Ajax.locale.cat,venue:EO_Ajax.locale.venue,prev:"<",next:">"},monthNames:EO_Ajax.locale.monthNames,monthNamesShort:EO_Ajax.locale.monthAbbrev,dayNames:EO_Ajax.locale.dayNames,dayNamesShort:EO_Ajax.locale.dayAbbrev,isRTL:EO_Ajax.locale.isrtl,header:{left:"title",center:"category venue",right:"prev goto today next"},buttonIcons:!1,buttonui:!0,events:function(a,b,c,d){jQuery.ajax({url:EO_Ajax.ajaxurl+"?action=event-admin-cal",dataType:"JSON",data:{start:a.format("YYYY-MM-DD"),end:b.format("YYYY-MM-DD")},success:d})},categories:EO_Ajax.categories,venues:EO_Ajax.venues,selectable:!0,selectHelper:!0,eventRender:function(a,b){var c=jQuery(".filter-category .eo-cal-filter").val(),d=jQuery(".filter-venue .eo-cal-filter").val();return"undefined"!=typeof c&&""!==c&&jQuery.inArray(c,a.category)<0?"<div></div>":"undefined"!=typeof d&&""!==d&&d!=a.venue?"<div></div>":void 0},viewRender:function(b,c){var d=b.intervalStart.format("YYYY-MM-DD"),e=new Date;e=new Date(e.getTime()+6e5),a.cookie("eo_admin_cal_last_viewed_date",d,{expires:e}),a.cookie("eo_admin_cal_last_view",b.name,{expires:e})},weekMode:"variable",loading:function(a){a?jQuery("#loading").show():jQuery("#loading").hide()},timeFormat:f,axisFormat:f,eventClick:function(b,c,d){c.preventDefault(),a("#eo-dialog-tabs ul li").each(function(){var c=a(this).attr("id").substring(14);a("#eo-dialog-tabs #"+a(this).attr("id")+"-content").html(b[c])}),a("#events-meta").dialog("open")},select:function(b,c,d,e){if(EO_Ajax.perm_edit){d.preventDefault();var g=(jQuery(this)[0].calendar.options,b.format("YYYY-MM-DD")),h=b.format("HH:mm");b.hasTime()?(f="ddd, Do MMMM h:mma",allDay=0):(c.subtract(1,"minute"),f="ddd, Do MMMM",allDay=1);var i=c.format("YYYY-MM-DD"),j=c.format("HH:mm"),k=a.fullCalendar.formatRange(b,c,f);a("#eo_event_create_cal input[name='eo_event[event_title]']").val(""),a("#eo_event_create_cal input.ui-autocomplete-input").val(""),a("#eo_event_create_cal textarea[name='eo_event[event_content]']").val(""),a("#eo_event_create_cal input[name='eo_event[StartDate]']").val(g),a("#eo_event_create_cal input[name='eo_event[StartTime]']").val(h),a("#eo_event_create_cal input[name='eo_event[EndDate]']").val(i),a("#eo_event_create_cal input[name='eo_event[FinishTime]']").val(j),a("#eo_event_create_cal input[name='eo_event[allday]']").val(allDay),a("#eo_event_create_cal td#date").html(k),a("#eo_event_create_cal").dialog("open"),a("form.eo_cal input[type='submit']").removeAttr("disabled"),a("form.eo_cal input#reset").click(function(b){a("#eo_event_create_cal").dialog("close")})}}});a("#eofc_time_format").change(function(){f=a("#eofc_time_format").is(":checked")?"HH:mm":"h:mmtt",g.fullCalendar("option","timeFormat",f),a.post(ajaxurl,{action:"eofc-format-time",is24:a("#eofc_time_format").is(":checked")})}),a(".view-button").click(function(b){b.preventDefault(),c(a(this).attr("id"))}),a(window).on("keypress",function(b){if(!(a(b.target).closest(".ui-dialog").length>0)){switch(b.which){case 49:case 109:case 77:c("month");break;case 50:case 119:case 87:c("agendaWeek");break;case 51:case 100:case 68:c("agendaDay");break;case 116:case 84:g.fullCalendar("today");break;case 103:case 71:break;case 110:case 78:case 106:case 74:g.fullCalendar("next");break;case 107:case 75:case 112:case 80:g.fullCalendar("prev");break;case 63:a("#eo-keyboard-shortcuts").dialog("open");break;default:return}b.preventDefault()}}),a("#eo-keyboard-shortcuts").dialog({autoOpen:!1,dialogClass:"eo-admin-calendar-dialog",title:"Keyboard shortcuts",closeText:"Close modal",draggable:!1,modal:!0,open:function(b,c){a(this).parent(".eo-admin-calendar-dialog").focus()}}),a("#eo-keyboard-sr-shortcut").on("click",function(b){b.preventDefault(),a("#eo-keyboard-shortcuts").dialog("open")});var h=a("#adminmenumain .screen-reader-shortcut");h.length>0&&a("#eo-keyboard-sr-shortcut").insertAfter(h.last()),a("#miniCalendar").datepicker({dateFormat:"DD, d MM, yy",firstDay:parseInt(EO_Ajax.startday,10),changeMonth:!0,monthNamesShort:EO_Ajax.locale.monthAbbrev,dayNamesMin:EO_Ajax.locale.dayAbbrev,changeYear:!0,showOn:"button",buttonText:EO_Ajax.locale.gotodate,onSelect:function(a,b){g.fullCalendar("gotoDate",new Date(Date.parse(a)))}}),a("button.ui-datepicker-trigger").button().addClass("fc-button"),a.widget("ui.combobox",{_create:function(){var b=this.element.hide(),c=b.attr("id"),d=b.children(":selected"),e=d.val()?d.text():"",f=a("<span>").addClass("ui-combobox eo-venue-input").insertAfter(b),g=a('<input type="hidden" name="'+b.attr("name")+'" value="'+e+'"/>'),h=a("<input>").attr("id",c).appendTo(f).val(e).addClass("ui-combobox-input"),i={delay:0,minLength:0,source:function(b,c){h.addClass("eo-waiting"),a.getJSON(EO_Ajax.ajaxurl+"?action=eo-search-venue",b,function(b){var d=a.map(b,function(a){return a.label=a.name,a});c(d),h.removeClass("eo-waiting")})},select:function(a,b){g.val(b.item.term_id)}};h.autocomplete(i).addClass("ui-widget-content ui-corner-left"),this.element.replaceWith(g);var j=a.ui?a.ui.version||0:-1,k=eventorganiser.versionCompare(j,"1.10")>=0?"ui-autocomplete":"autocomplete";h.data(k)._renderItem=function(b,c){if(0===c.term_id)return a("<li></li>").data(k+"-item",c).append("<a>"+c.label+"</a>").appendTo(b);var d=[c.venue_address,c.venue_city,c.venue_state,c.venue_postcode,c.venue_country],e=a.grep(d,function(a){return a}).join(", "),f=eventorganiser.versionCompare(j,"1.10")>=0?"ui-autocomplete-item":"item.autocomplete";return a("<li></li>").data(f,c).append("<a>"+c.label+"</br> <span style='font-size: 0.8em'><em>"+e+"</span></em></a>").appendTo(b)};var l=a("<span>").addClass("eo-venue-combobox-buttons").appendTo(f);a("<a href='#' style='vertical-align: top;margin: 0px -1px;padding: 0px;height:26px;'>").attr("title","Show All Venues").appendTo(l).button({icons:{primary:"ui-icon-triangle-1-s"},text:!1}).removeClass("ui-corner-all").addClass("eo-ui-button ui-corner-right ui-combobox-toggle ui-combobox-button").mousedown(function(){wasOpen=h.autocomplete("widget").is(":visible")}).click(function(b){b.preventDefault(),wasOpen||(a(this).blur(),h.autocomplete("search","").focus())})}}),a("#venue_select").combobox(),a(".eo-cal-filter").change(function(){g.fullCalendar("rerenderEvents")}),a(".filter-venue .eo-cal-filter").selectmenu({wrapperElement:"<span class='fc-header-filter'></span>"}),a(".filter-category .eo-cal-filter").selectmenu({wrapperElement:"<span class='fc-header-filter'></span>",icons:[{find:".cat"}]});var i=a("#eo-event-venue-button").width()+30;a("#eo-event-venue-button").width(i+"px"),a("#eo-event-venue-menu").width(i+"px");var j=a("#eo-event-cat-button").width()+30;a("#eo-event-cat-button").width(j+"px"),a("#eo-event-cat-menu").width(j+"px")})}(jQuery),function(a){a.widget("ui.selectmenu",{options:{appendTo:"body",typeAhead:1e3,style:"dropdown",positionOptions:null,width:null,menuWidth:null,handleWidth:26,maxHeight:null,icons:null,format:null,escapeHtml:!1,bgImage:function(){}},_create:function(){var b=this,c=this.options,d=a.ui?a.ui.version||0:-1,e=eventorganiser.versionCompare(d,"1.9")>=0?this.element.uniqueId().attr("id"):this.element.attr("id")||"ui-selectmenu-"+Math.random().toString(16).slice(2,10);this.ids=[e,e+"-button",e+"-menu"],this._safemouseup=!0,this.isOpen=!1,this.newelement=a("<a />",{"class":"ui-selectmenu ui-widget ui-state-default ui-corner-all",id:this.ids[1],role:"button",href:"#nogo",tabindex:this.element.attr("disabled")?1:0,"aria-haspopup":!0,"aria-owns":this.ids[2]}),this.newelementWrap=a("<span />").append(this.newelement).insertAfter(this.element);var f=this.element.attr("tabindex");f&&this.newelement.attr("tabindex",f),this.newelement.data("selectelement",this.element),this.selectmenuIcon=a('<span class="ui-selectmenu-icon ui-icon"></span>').prependTo(this.newelement),this.newelement.prepend('<span class="ui-selectmenu-status" />'),this.element.bind({"click.selectmenu":function(a){b.newelement.focus(),a.preventDefault()}}),this.newelement.bind("mousedown.selectmenu",function(a){b._toggle(a,!0),"popup"==c.style&&(b._safemouseup=!1,setTimeout(function(){b._safemouseup=!0},300)),a.preventDefault()}).bind("click.selectmenu",function(a){a.preventDefault()}).bind("keydown.selectmenu",function(c){var d=!1;switch(c.keyCode){case a.ui.keyCode.ENTER:d=!0;break;case a.ui.keyCode.SPACE:b._toggle(c);break;case a.ui.keyCode.UP:c.altKey?b.open(c):b._moveSelection(-1);break;case a.ui.keyCode.DOWN:c.altKey?b.open(c):b._moveSelection(1);break;case a.ui.keyCode.LEFT:b._moveSelection(-1);break;case a.ui.keyCode.RIGHT:b._moveSelection(1);break;case a.ui.keyCode.TAB:d=!0;break;case a.ui.keyCode.PAGE_UP:case a.ui.keyCode.HOME:b.index(0);break;case a.ui.keyCode.PAGE_DOWN:case a.ui.keyCode.END:b.index(b._optionLis.length);break;default:d=!0}return d}).bind("keypress.selectmenu",function(a){return a.which>0&&b._typeAhead(a.which,"mouseup"),!0}).bind("mouseover.selectmenu",function(){c.disabled||a(this).addClass("ui-state-hover")}).bind("mouseout.selectmenu",function(){c.disabled||a(this).removeClass("ui-state-hover")}).bind("focus.selectmenu",function(){c.disabled||a(this).addClass("ui-state-focus")}).bind("blur.selectmenu",function(){c.disabled||a(this).removeClass("ui-state-focus")}),a(document).bind("mousedown.selectmenu-"+this.ids[0],function(c){b.isOpen&&!a(c.target).closest("#"+b.ids[1]).length&&b.close(c)}),this.element.bind("click.selectmenu",function(){b._refreshValue()}).bind("focus.selectmenu",function(){b.newelement&&b.newelement[0].focus()}),c.width||(c.width=this.element.outerWidth()),this.newelement.width(c.width),this.element.hide(),this.list=a("<ul />",{"class":"ui-widget ui-widget-content","aria-hidden":!0,role:"listbox","aria-labelledby":this.ids[1],id:this.ids[2]}),this.listWrap=a("<div />",{"class":"ui-selectmenu-menu"}).append(this.list).appendTo(c.appendTo),this.list.bind("keydown.selectmenu",function(c){var d=!1;switch(c.keyCode){case a.ui.keyCode.UP:c.altKey?b.close(c,!0):b._moveFocus(-1);break;case a.ui.keyCode.DOWN:c.altKey?b.close(c,!0):b._moveFocus(1);break;case a.ui.keyCode.LEFT:b._moveFocus(-1);break;case a.ui.keyCode.RIGHT:b._moveFocus(1);break;case a.ui.keyCode.HOME:b._moveFocus(":first");break;case a.ui.keyCode.PAGE_UP:b._scrollPage("up");break;case a.ui.keyCode.PAGE_DOWN:b._scrollPage("down");break;case a.ui.keyCode.END:b._moveFocus(":last");break;case a.ui.keyCode.ENTER:case a.ui.keyCode.SPACE:b.close(c,!0),a(c.target).parents("li:eq(0)").trigger("mouseup");break;case a.ui.keyCode.TAB:d=!0,b.close(c,!0),a(c.target).parents("li:eq(0)").trigger("mouseup");break;case a.ui.keyCode.ESCAPE:b.close(c,!0);break;default:d=!0}return d}).bind("keypress.selectmenu",function(a){return a.which>0&&b._typeAhead(a.which,"focus"),!0}).bind("mousedown.selectmenu mouseup.selectmenu",function(){return!1}),a(window).bind("resize.selectmenu-"+this.ids[0],a.proxy(b.close,this))},_init:function(){var b=this,c=this.options,d=[];this.element.find("option").each(function(){var e=a(this);d.push({value:e.attr("value"),text:b._formatText(e.text(),e),selected:e.attr("selected"),disabled:e.attr("disabled"),classes:e.attr("class"),typeahead:e.attr("typeahead"),parentOptGroup:e.parent("optgroup"),bgImage:c.bgImage.call(e)})});var e="popup"==b.options.style?" ui-state-active":"";if(this.list.html(""),d.length)for(var f=0;f<d.length;f++){var g={role:"presentation"};d[f].disabled&&(g["class"]="ui-state-disabled");var h={html:d[f].text||"&nbsp;",href:"#nogo",tabindex:-1,role:"option","aria-selected":!1};d[f].disabled&&(h["aria-disabled"]=d[f].disabled),d[f].typeahead&&(h.typeahead=d[f].typeahead);var i=a("<a/>",h).bind("focus.selectmenu",function(){a(this).parent().mouseover()}).bind("blur.selectmenu",function(){a(this).parent().mouseout()}),j=a("<li/>",g).append(i).data("index",f).addClass(d[f].classes).data("optionClasses",d[f].classes||"").bind("mouseup.selectmenu",function(c){return!b._safemouseup||b._disabled(c.currentTarget)||b._disabled(a(c.currentTarget).parents("ul > li.ui-selectmenu-group "))||(b.index(a(this).data("index")),b.select(c),b.close(c,!0)),!1}).bind("click.selectmenu",function(){return!1}).bind("mouseover.selectmenu",function(c){a(this).hasClass("ui-state-disabled")||a(this).parent("ul").parent("li").hasClass("ui-state-disabled")||(c.optionValue=b.element[0].options[a(this).data("index")].value,b._trigger("hover",c,b._uiHash()),b._selectedOptionLi().addClass(e),b._focusedOptionLi().removeClass("ui-selectmenu-item-focus ui-state-hover"),a(this).removeClass("ui-state-active").addClass("ui-selectmenu-item-focus ui-state-hover"))}).bind("mouseout.selectmenu",function(c){a(this).is(b._selectedOptionLi())&&a(this).addClass(e),c.optionValue=b.element[0].options[a(this).data("index")].value,b._trigger("blur",c,b._uiHash()),a(this).removeClass("ui-selectmenu-item-focus ui-state-hover")});if(d[f].parentOptGroup.length){var k="ui-selectmenu-group-"+this.element.find("optgroup").index(d[f].parentOptGroup);this.list.find("li."+k).length?this.list.find("li."+k+":last ul").append(j):a('<li role="presentation" class="ui-selectmenu-group '+k+(d[f].parentOptGroup.attr("disabled")?' ui-state-disabled" aria-disabled="true"':'"')+'><span class="ui-selectmenu-group-label">'+d[f].parentOptGroup.attr("label")+"</span><ul></ul></li>").appendTo(this.list).find("ul").append(j)}else j.appendTo(this.list);if(c.icons)for(var l in c.icons)if(j.is(c.icons[l].find)){j.data("optionClasses",d[f].classes+" ui-selectmenu-hasIcon").addClass("ui-selectmenu-hasIcon");var m=c.icons[l].icon||"";j.find("a:eq(0)").prepend('<span class="ui-selectmenu-item-icon ui-icon '+m+'"></span>'),d[f].bgImage&&j.find("span").css("background-image",d[f].bgImage)}}else a(' <li role="presentation"><a href="#nogo" tabindex="-1" role="option"></a></li>').appendTo(this.list);var n="dropdown"==c.style;this.newelement.toggleClass("ui-selectmenu-dropdown",n).toggleClass("ui-selectmenu-popup",!n),this.list.toggleClass("ui-selectmenu-menu-dropdown ui-corner-bottom",n).toggleClass("ui-selectmenu-menu-popup ui-corner-all",!n).find("li:first").toggleClass("ui-corner-top",!n).end().find("li:last").addClass("ui-corner-bottom"),this.selectmenuIcon.toggleClass("ui-icon-triangle-1-s",n).toggleClass("ui-icon-triangle-2-n-s",!n),"dropdown"==c.style?this.list.width(c.menuWidth?c.menuWidth:c.width):this.list.width(c.menuWidth?c.menuWidth:c.width-c.handleWidth),this.list.css("height","auto");var o=this.listWrap.height(),p=a(window).height(),q=c.maxHeight?Math.min(c.maxHeight,p):p/3;o>q&&this.list.height(q),this._optionLis=this.list.find("li:not(.ui-selectmenu-group)"),this.element.attr("disabled")?this.disable():this.enable(),this._refreshValue(),this._selectedOptionLi().addClass("ui-selectmenu-item-focus"),clearTimeout(this.refreshTimeout),this.refreshTimeout=window.setTimeout(function(){b._refreshPosition()},200)},destroy:function(){this.element.removeData(this.widgetName).removeClass("ui-selectmenu-disabled ui-state-disabled").removeAttr("aria-disabled").unbind(".selectmenu"),a(window).unbind(".selectmenu-"+this.ids[0]),a(document).unbind(".selectmenu-"+this.ids[0]),this.newelementWrap.remove(),this.listWrap.remove(),this.element.unbind(".selectmenu").show(),a.Widget.prototype.destroy.apply(this,arguments)},_typeAhead:function(a,b){var c=this,d=String.fromCharCode(a).toLowerCase(),e=null,f=null;c._typeAhead_timer&&(window.clearTimeout(c._typeAhead_timer),c._typeAhead_timer=void 0),c._typeAhead_chars=(void 0===c._typeAhead_chars?"":c._typeAhead_chars).concat(d),c._typeAhead_chars.length<2||c._typeAhead_chars.substr(-2,1)===d&&c._typeAhead_cycling?(c._typeAhead_cycling=!0,e=d):(c._typeAhead_cycling=!1,e=c._typeAhead_chars);for(var g=("focus"!==b?this._selectedOptionLi().data("index"):this._focusedOptionLi().data("index"))||0,h=0;h<this._optionLis.length;h++){var i=this._optionLis.eq(h).text().substr(0,e.length).toLowerCase();if(i===e)if(c._typeAhead_cycling){if(null===f&&(f=h),h>g){f=h;break}}else f=h}null!==f&&this._optionLis.eq(f).find("a").trigger(b),c._typeAhead_timer=window.setTimeout(function(){c._typeAhead_timer=void 0,c._typeAhead_chars=void 0,c._typeAhead_cycling=void 0},c.options.typeAhead)},_uiHash:function(){var b=this.index();return{index:b,option:a("option",this.element).get(b),value:this.element[0].value}},open:function(a){if("true"!=this.newelement.attr("aria-disabled")){var b=this,c=this.options,d=this._selectedOptionLi(),e=d.find("a");b._closeOthers(a),b.newelement.addClass("ui-state-active"),b.list.attr("aria-hidden",!1),b.listWrap.addClass("ui-selectmenu-open"),"dropdown"==c.style?b.newelement.removeClass("ui-corner-all").addClass("ui-corner-top"):this.list.css("left",-5e3).scrollTop(this.list.scrollTop()+d.position().top-this.list.outerHeight()/2+d.outerHeight()/2).css("left","auto"),b._refreshPosition(),e.length&&e[0].focus(),b.isOpen=!0,b._trigger("open",a,b._uiHash())}},close:function(a,b){this.newelement.is(".ui-state-active")&&(this.newelement.removeClass("ui-state-active"),this.listWrap.removeClass("ui-selectmenu-open"),this.list.attr("aria-hidden",!0),"dropdown"==this.options.style&&this.newelement.removeClass("ui-corner-top").addClass("ui-corner-all"),b&&this.newelement.focus(),this.isOpen=!1,this._trigger("close",a,this._uiHash()))},change:function(a){this.element.trigger("change"),this._trigger("change",a,this._uiHash())},select:function(a){return this._disabled(a.currentTarget)?!1:void this._trigger("select",a,this._uiHash())},widget:function(){return this.listWrap.add(this.newelementWrap)},_closeOthers:function(b){a(".ui-selectmenu.ui-state-active").not(this.newelement).each(function(){a(this).data("selectelement").selectmenu("close",b)}),a(".ui-selectmenu.ui-state-hover").trigger("mouseout")},_toggle:function(a,b){this.isOpen?this.close(a,b):this.open(a)},_formatText:function(b,c){return this.options.format?b=this.options.format(b,c):this.options.escapeHtml&&(b=a("<div />").text(b).html()),b},_selectedIndex:function(){return this.element[0].selectedIndex},_selectedOptionLi:function(){return this._optionLis.eq(this._selectedIndex())},_focusedOptionLi:function(){return this.list.find(".ui-selectmenu-item-focus")},_moveSelection:function(a,b){if(!this.options.disabled){var c=parseInt(this._selectedOptionLi().data("index")||0,10),d=c+a;if(0>d&&(d=0),d>this._optionLis.size()-1&&(d=this._optionLis.size()-1),d===b)return!1;this._optionLis.eq(d).hasClass("ui-state-disabled")?(a>0?++a:--a,this._moveSelection(a,d)):this._optionLis.eq(d).trigger("mouseover").trigger("mouseup")}},_moveFocus:function(a,b){var c;if(isNaN(a))c=parseInt(this._optionLis.filter(a).data("index"),10);else{var d=parseInt(this._focusedOptionLi().data("index")||0,10);c=d+a}if(0>c&&(c=0),c>this._optionLis.size()-1&&(c=this._optionLis.size()-1),c===b)return!1;var e="ui-selectmenu-item-"+Math.round(1e3*Math.random());this._focusedOptionLi().find("a:eq(0)").attr("id",""),this._optionLis.eq(c).hasClass("ui-state-disabled")?(a>0?++a:--a,this._moveFocus(a,c)):this._optionLis.eq(c).find("a:eq(0)").attr("id",e).focus(),this.list.attr("aria-activedescendant",e)},_scrollPage:function(a){var b=Math.floor(this.list.outerHeight()/this._optionLis.first().outerHeight());b="up"==a?-b:b,this._moveFocus(b)},_setOption:function(a,b){this.options[a]=b,"disabled"==a&&(b&&this.close(),this.element.add(this.newelement).add(this.list)[b?"addClass":"removeClass"]("ui-selectmenu-disabled ui-state-disabled").attr("aria-disabled",b))},disable:function(a,b){"undefined"==typeof a?this._setOption("disabled",!0):"optgroup"==b?this._toggleOptgroup(a,!1):this._toggleOption(a,!1)},enable:function(a,b){"undefined"==typeof a?this._setOption("disabled",!1):"optgroup"==b?this._toggleOptgroup(a,!0):this._toggleOption(a,!0)},_disabled:function(b){return a(b).hasClass("ui-state-disabled")},_toggleOption:function(a,b){var c=this._optionLis.eq(a);c&&(c.toggleClass("ui-state-disabled",b).find("a").attr("aria-disabled",!b),b?this.element.find("option").eq(a).attr("disabled","disabled"):this.element.find("option").eq(a).removeAttr("disabled"))},_toggleOptgroup:function(a,b){var c=this.list.find("li.ui-selectmenu-group-"+a);c&&(c.toggleClass("ui-state-disabled",b).attr("aria-disabled",!b),b?this.element.find("optgroup").eq(a).attr("disabled","disabled"):this.element.find("optgroup").eq(a).removeAttr("disabled"))},index:function(b){return arguments.length?this._disabled(a(this._optionLis[b]))||b==this._selectedIndex()?!1:(this.element[0].selectedIndex=b,this._refreshValue(),this.change(),void 0):this._selectedIndex()},value:function(a){return arguments.length&&a!=this.element[0].value?(this.element[0].value=a,this._refreshValue(),this.change(),void 0):this.element[0].value},_refreshValue:function(){var a="popup"==this.options.style?" ui-state-active":"",b="ui-selectmenu-item-"+Math.round(1e3*Math.random());this.list.find(".ui-selectmenu-item-selected").removeClass("ui-selectmenu-item-selected"+a).find("a").attr("aria-selected","false").attr("id",""),this._selectedOptionLi().addClass("ui-selectmenu-item-selected"+a).find("a").attr("aria-selected","true").attr("id",b);var c=this.newelement.data("optionClasses")?this.newelement.data("optionClasses"):"",d=this._selectedOptionLi().data("optionClasses")?this._selectedOptionLi().data("optionClasses"):"";this.newelement.removeClass(c).data("optionClasses",d).addClass(d).find(".ui-selectmenu-status").html(this._selectedOptionLi().find("a:eq(0)").html()),this.list.attr("aria-activedescendant",b)},_refreshPosition:function(){var b=this.options,c={of:this.newelement,my:"left top",at:"left bottom",collision:"flip"};if("popup"==b.style){var d=this._selectedOptionLi();c.my="left top"+(this.list.offset().top-d.offset().top-(this.newelement.outerHeight()+d.outerHeight())/2),c.collision="fit"}this.listWrap.removeAttr("style").zIndex(this.element.zIndex()+2).position(a.extend(c,b.positionOptions))}})}(jQuery),function(a){var b;"function"==typeof b&&b.amd?b(["jquery"],a):a(jQuery)}(function(a){function b(a){return a}function c(a){return decodeURIComponent(a.replace(e," "))}function d(a){0===a.indexOf('"')&&(a=a.slice(1,-1).replace(/\\"/g,'"').replace(/\\\\/g,"\\"));try{return f.json?JSON.parse(a):a}catch(b){}}var e=/\+/g,f=a.cookie=function(e,g,h){if(void 0!==g){if(h=a.extend({},f.defaults,h),"number"==typeof h.expires){var i=h.expires,j=h.expires=new Date;j.setDate(j.getDate()+i)}return g=f.json?JSON.stringify(g):String(g),document.cookie=[f.raw?e:encodeURIComponent(e),"=",f.raw?g:encodeURIComponent(g),h.expires?"; expires="+h.expires.toUTCString():"",h.path?"; path="+h.path:"",h.domain?"; domain="+h.domain:"",h.secure?"; secure":""].join(""),document}for(var k=f.raw?b:c,l=document.cookie.split("; "),m=e?void 0:{},n=0,o=l.length;o>n;n++){var p=l[n].split("="),q=k(p.shift()),r=k(p.join("="));if(e&&e===q){m=d(r);break}e||(m[q]=d(r))}return m};f.defaults={},a.removeCookie=function(b,c){return void 0!==a.cookie(b)?(a.cookie(b,"",a.extend({},c,{expires:-1})),!0):!1}});
1
+ /*! event-organiser 3.10.0-0-g5f45c47 2020-07-22 07:59 */
2
  var eventorganiser=eventorganiser||{};eventorganiser.versionCompare=function(a,b){if(typeof a+typeof b!="stringstring")return!1;for(var c=a.split("."),d=b.split("."),e=0,f=Math.max(c.length,d.length);f>e;e++){if(c[e]&&!d[e]&&parseInt(c[e],10)>0||parseInt(c[e],10)>parseInt(d[e],10))return 1;if(d[e]&&!c[e]&&parseInt(d[e],10)>0||parseInt(c[e],10)<parseInt(d[e],10))return-1}return 0},function(a){a(document).ready(function(){function b(){var b=a("<span class='fc-header-goto'><input type='hidden' id='miniCalendar'/></span>");return b}function c(b){a(".view-button").removeClass("nav-tab-active"),g.fullCalendar("changeView",b),a("#"+b).addClass("nav-tab-active")}function d(b){var c=b.categories;if(c){var d="<select class='eo-cal-filter' id='eo-event-cat'>";d+="<option value=''>"+b.buttonText.cat+"</option>";for(var e=0;e<c.length;e++)d+="<option class='cat-slug-"+c[e].slug+" cat' value='"+c[e].slug+"'>"+c[e].name+"</option>";return d+="</select>",a("<span class='fc-header-dropdown filter-category'></span>").append(d)}}function e(b){var c=b.venues;if(c){var d="<select class='eo-cal-filter' id='eo-event-venue'>";d+="<option value=''>"+b.buttonText.venue+"</option>";for(var e=0;e<c.length;e++)d+="<option value='"+c[e].term_id+"'>"+c[e].name+"</option>";return d+="</select>",a("<span class='fc-header-dropdown filter-venue'></span>").append(d)}}a("#eo-dialog-tabs").tabs(),a(".eo-dialog").dialog({autoOpen:!1,dialogClass:"eo-admin-calendar-dialog",width:527,modal:!0,closeText:"Close modal",draggable:!1,open:function(b,c){a(this).parent(".eo-admin-calendar-dialog").focus()}}),a(".eo-dialog").parent().find(".ui-dialog-titlebar-close").addClass("eo-ui-button"),a("#events-meta").parent().find(".ui-dialog-titlebar-close").appendTo(".ui-tabs-nav").closest(".ui-dialog").children(".ui-dialog-titlebar").remove();var f=a("#eofc_time_format").is(":checked")?"HH:mm":"h:mma",g=jQuery("#eo_admin_calendar").fullCalendar({firstDay:parseInt(EO_Ajax.startday,10),defaultDate:moment(a.cookie("eo_admin_cal_last_viewed_date")),defaultView:a.cookie("eo_admin_cal_last_view")?a.cookie("eo_admin_cal_last_view"):"month",editable:EO_Ajax.perm_edit,eventDurationEditable:!1,eventStartEditable:EO_Ajax.edit_time,durationEditable:!1,snapDuration:"00:05:00",slotDuration:"00:15:00",eventDrop:function(b,c,d,e,f,g){return b.end?void a.ajax({type:"POST",url:EO_Ajax.ajaxurl,data:{action:"eofc-edit-date",start:b.start.format("YYYY-MM-DD HH:mm:ss"),end:b.end.format("YYYY-MM-DD HH:mm:ss"),event_id:b.event_id,occurrence_id:b.occurrence_id,_wpnonce:EO_Ajax.edit_nonce},dataType:"json"}).done(function(a){a.success!==!0&&(alert(a.data.message),d())}).fail(function(a,b,c){alert("Error: "+c),d()}):(alert("Changing the event duration is not supported"),void d())},lazyFetching:"true",eventColor:"#21759B",theme:!1,customButtons:{category:d,venue:""!==EO_Ajax.venues?e:null,"goto":b},buttonText:{today:EO_Ajax.locale.today,month:EO_Ajax.locale.month,week:EO_Ajax.locale.week,day:EO_Ajax.locale.day,cat:EO_Ajax.locale.cat,venue:EO_Ajax.locale.venue,prev:"<",next:">"},monthNames:EO_Ajax.locale.monthNames,monthNamesShort:EO_Ajax.locale.monthAbbrev,dayNames:EO_Ajax.locale.dayNames,dayNamesShort:EO_Ajax.locale.dayAbbrev,isRTL:EO_Ajax.locale.isrtl,header:{left:"title",center:"category venue",right:"prev goto today next"},buttonIcons:!1,buttonui:!0,events:function(a,b,c,d){jQuery.ajax({url:EO_Ajax.ajaxurl+"?action=event-admin-cal",dataType:"JSON",data:{start:a.format("YYYY-MM-DD"),end:b.format("YYYY-MM-DD")},success:d})},categories:EO_Ajax.categories,venues:EO_Ajax.venues,selectable:!0,selectHelper:!0,eventRender:function(a,b){var c=jQuery(".filter-category .eo-cal-filter").val(),d=jQuery(".filter-venue .eo-cal-filter").val();return"undefined"!=typeof c&&""!==c&&jQuery.inArray(c,a.category)<0?"<div></div>":"undefined"!=typeof d&&""!==d&&d!=a.venue?"<div></div>":void 0},viewRender:function(b,c){var d=b.intervalStart.format("YYYY-MM-DD"),e=new Date;e=new Date(e.getTime()+6e5),a.cookie("eo_admin_cal_last_viewed_date",d,{expires:e}),a.cookie("eo_admin_cal_last_view",b.name,{expires:e})},weekMode:"variable",loading:function(a){a?jQuery("#loading").show():jQuery("#loading").hide()},timeFormat:f,axisFormat:f,eventClick:function(b,c,d){c.preventDefault(),a("#eo-dialog-tabs ul li").each(function(){var c=a(this).attr("id").substring(14);a("#eo-dialog-tabs #"+a(this).attr("id")+"-content").html(b[c])}),a("#events-meta").dialog("open")},select:function(b,c,d,e){if(EO_Ajax.perm_edit){d.preventDefault();var g=(jQuery(this)[0].calendar.options,b.format("YYYY-MM-DD")),h=b.format("HH:mm");b.hasTime()?(f="ddd, Do MMMM h:mma",allDay=0):(c.subtract(1,"minute"),f="ddd, Do MMMM",allDay=1);var i=c.format("YYYY-MM-DD"),j=c.format("HH:mm"),k=a.fullCalendar.formatRange(b,c,f);a("#eo_event_create_cal input[name='eo_event[event_title]']").val(""),a("#eo_event_create_cal input.ui-autocomplete-input").val(""),a("#eo_event_create_cal textarea[name='eo_event[event_content]']").val(""),a("#eo_event_create_cal input[name='eo_event[StartDate]']").val(g),a("#eo_event_create_cal input[name='eo_event[StartTime]']").val(h),a("#eo_event_create_cal input[name='eo_event[EndDate]']").val(i),a("#eo_event_create_cal input[name='eo_event[FinishTime]']").val(j),a("#eo_event_create_cal input[name='eo_event[allday]']").val(allDay),a("#eo_event_create_cal td#date").html(k),a("#eo_event_create_cal").dialog("open"),a("form.eo_cal input[type='submit']").removeAttr("disabled"),a("form.eo_cal input#reset").click(function(b){a("#eo_event_create_cal").dialog("close")})}}});a("#eofc_time_format").change(function(){f=a("#eofc_time_format").is(":checked")?"HH:mm":"h:mmtt",g.fullCalendar("option","timeFormat",f),a.post(ajaxurl,{action:"eofc-format-time",is24:a("#eofc_time_format").is(":checked")})}),a(".view-button").click(function(b){b.preventDefault(),c(a(this).attr("id"))}),a(window).on("keypress",function(b){if(!(a(b.target).closest(".ui-dialog").length>0)){switch(b.which){case 49:case 109:case 77:c("month");break;case 50:case 119:case 87:c("agendaWeek");break;case 51:case 100:case 68:c("agendaDay");break;case 116:case 84:g.fullCalendar("today");break;case 103:case 71:break;case 110:case 78:case 106:case 74:g.fullCalendar("next");break;case 107:case 75:case 112:case 80:g.fullCalendar("prev");break;case 63:a("#eo-keyboard-shortcuts").dialog("open");break;default:return}b.preventDefault()}}),a("#eo-keyboard-shortcuts").dialog({autoOpen:!1,dialogClass:"eo-admin-calendar-dialog",title:"Keyboard shortcuts",closeText:"Close modal",draggable:!1,modal:!0,open:function(b,c){a(this).parent(".eo-admin-calendar-dialog").focus()}}),a("#eo-keyboard-sr-shortcut").on("click",function(b){b.preventDefault(),a("#eo-keyboard-shortcuts").dialog("open")});var h=a("#adminmenumain .screen-reader-shortcut");h.length>0&&a("#eo-keyboard-sr-shortcut").insertAfter(h.last()),a("#miniCalendar").datepicker({dateFormat:"DD, d MM, yy",firstDay:parseInt(EO_Ajax.startday,10),changeMonth:!0,monthNamesShort:EO_Ajax.locale.monthAbbrev,dayNamesMin:EO_Ajax.locale.dayAbbrev,changeYear:!0,showOn:"button",buttonText:EO_Ajax.locale.gotodate,onSelect:function(a,b){g.fullCalendar("gotoDate",new Date(Date.parse(a)))}}),a("button.ui-datepicker-trigger").button().addClass("fc-button"),a.widget("ui.combobox",{_create:function(){var b=this.element.hide(),c=b.attr("id"),d=b.children(":selected"),e=d.val()?d.text():"",f=a("<span>").addClass("ui-combobox eo-venue-input").insertAfter(b),g=a('<input type="hidden" name="'+b.attr("name")+'" value="'+e+'"/>'),h=a("<input>").attr("id",c).appendTo(f).val(e).addClass("ui-combobox-input"),i={delay:0,minLength:0,source:function(b,c){h.addClass("eo-waiting"),a.getJSON(EO_Ajax.ajaxurl+"?action=eo-search-venue",b,function(b){var d=a.map(b,function(a){return a.label=a.name,a});c(d),h.removeClass("eo-waiting")})},select:function(a,b){g.val(b.item.term_id)}};h.autocomplete(i).addClass("ui-widget-content ui-corner-left"),this.element.replaceWith(g);var j=a.ui?a.ui.version||0:-1,k=eventorganiser.versionCompare(j,"1.10")>=0?"ui-autocomplete":"autocomplete";h.data(k)._renderItem=function(b,c){if(0===c.term_id)return a("<li></li>").data(k+"-item",c).append("<a>"+c.label+"</a>").appendTo(b);var d=[c.venue_address,c.venue_city,c.venue_state,c.venue_postcode,c.venue_country],e=a.grep(d,function(a){return a}).join(", "),f=eventorganiser.versionCompare(j,"1.10")>=0?"ui-autocomplete-item":"item.autocomplete";return a("<li></li>").data(f,c).append("<a>"+c.label+"</br> <span style='font-size: 0.8em'><em>"+e+"</span></em></a>").appendTo(b)};var l=a("<span>").addClass("eo-venue-combobox-buttons").appendTo(f);a("<a href='#' style='vertical-align: top;margin: 0px -1px;padding: 0px;height:26px;'>").attr("title","Show All Venues").appendTo(l).button({icons:{primary:"ui-icon-triangle-1-s"},text:!1}).removeClass("ui-corner-all").addClass("eo-ui-button ui-corner-right ui-combobox-toggle ui-combobox-button").mousedown(function(){wasOpen=h.autocomplete("widget").is(":visible")}).click(function(b){b.preventDefault(),wasOpen||(a(this).blur(),h.autocomplete("search","").focus())})}}),a("#venue_select").combobox(),a(".eo-cal-filter").change(function(){g.fullCalendar("rerenderEvents")}),a(".filter-venue .eo-cal-filter").selectmenu({wrapperElement:"<span class='fc-header-filter'></span>"}),a(".filter-category .eo-cal-filter").selectmenu({wrapperElement:"<span class='fc-header-filter'></span>",icons:[{find:".cat"}]});var i=a("#eo-event-venue-button").width()+30;a("#eo-event-venue-button").width(i+"px"),a("#eo-event-venue-menu").width(i+"px");var j=a("#eo-event-cat-button").width()+30;a("#eo-event-cat-button").width(j+"px"),a("#eo-event-cat-menu").width(j+"px")})}(jQuery),function(a){a.widget("ui.selectmenu",{options:{appendTo:"body",typeAhead:1e3,style:"dropdown",positionOptions:null,width:null,menuWidth:null,handleWidth:26,maxHeight:null,icons:null,format:null,escapeHtml:!1,bgImage:function(){}},_create:function(){var b=this,c=this.options,d=a.ui?a.ui.version||0:-1,e=eventorganiser.versionCompare(d,"1.9")>=0?this.element.uniqueId().attr("id"):this.element.attr("id")||"ui-selectmenu-"+Math.random().toString(16).slice(2,10);this.ids=[e,e+"-button",e+"-menu"],this._safemouseup=!0,this.isOpen=!1,this.newelement=a("<a />",{"class":"ui-selectmenu ui-widget ui-state-default ui-corner-all",id:this.ids[1],role:"button",href:"#nogo",tabindex:this.element.attr("disabled")?1:0,"aria-haspopup":!0,"aria-owns":this.ids[2]}),this.newelementWrap=a("<span />").append(this.newelement).insertAfter(this.element);var f=this.element.attr("tabindex");f&&this.newelement.attr("tabindex",f),this.newelement.data("selectelement",this.element),this.selectmenuIcon=a('<span class="ui-selectmenu-icon ui-icon"></span>').prependTo(this.newelement),this.newelement.prepend('<span class="ui-selectmenu-status" />'),this.element.bind({"click.selectmenu":function(a){b.newelement.focus(),a.preventDefault()}}),this.newelement.bind("mousedown.selectmenu",function(a){b._toggle(a,!0),"popup"==c.style&&(b._safemouseup=!1,setTimeout(function(){b._safemouseup=!0},300)),a.preventDefault()}).bind("click.selectmenu",function(a){a.preventDefault()}).bind("keydown.selectmenu",function(c){var d=!1;switch(c.keyCode){case a.ui.keyCode.ENTER:d=!0;break;case a.ui.keyCode.SPACE:b._toggle(c);break;case a.ui.keyCode.UP:c.altKey?b.open(c):b._moveSelection(-1);break;case a.ui.keyCode.DOWN:c.altKey?b.open(c):b._moveSelection(1);break;case a.ui.keyCode.LEFT:b._moveSelection(-1);break;case a.ui.keyCode.RIGHT:b._moveSelection(1);break;case a.ui.keyCode.TAB:d=!0;break;case a.ui.keyCode.PAGE_UP:case a.ui.keyCode.HOME:b.index(0);break;case a.ui.keyCode.PAGE_DOWN:case a.ui.keyCode.END:b.index(b._optionLis.length);break;default:d=!0}return d}).bind("keypress.selectmenu",function(a){return a.which>0&&b._typeAhead(a.which,"mouseup"),!0}).bind("mouseover.selectmenu",function(){c.disabled||a(this).addClass("ui-state-hover")}).bind("mouseout.selectmenu",function(){c.disabled||a(this).removeClass("ui-state-hover")}).bind("focus.selectmenu",function(){c.disabled||a(this).addClass("ui-state-focus")}).bind("blur.selectmenu",function(){c.disabled||a(this).removeClass("ui-state-focus")}),a(document).bind("mousedown.selectmenu-"+this.ids[0],function(c){b.isOpen&&!a(c.target).closest("#"+b.ids[1]).length&&b.close(c)}),this.element.bind("click.selectmenu",function(){b._refreshValue()}).bind("focus.selectmenu",function(){b.newelement&&b.newelement[0].focus()}),c.width||(c.width=this.element.outerWidth()),this.newelement.width(c.width),this.element.hide(),this.list=a("<ul />",{"class":"ui-widget ui-widget-content","aria-hidden":!0,role:"listbox","aria-labelledby":this.ids[1],id:this.ids[2]}),this.listWrap=a("<div />",{"class":"ui-selectmenu-menu"}).append(this.list).appendTo(c.appendTo),this.list.bind("keydown.selectmenu",function(c){var d=!1;switch(c.keyCode){case a.ui.keyCode.UP:c.altKey?b.close(c,!0):b._moveFocus(-1);break;case a.ui.keyCode.DOWN:c.altKey?b.close(c,!0):b._moveFocus(1);break;case a.ui.keyCode.LEFT:b._moveFocus(-1);break;case a.ui.keyCode.RIGHT:b._moveFocus(1);break;case a.ui.keyCode.HOME:b._moveFocus(":first");break;case a.ui.keyCode.PAGE_UP:b._scrollPage("up");break;case a.ui.keyCode.PAGE_DOWN:b._scrollPage("down");break;case a.ui.keyCode.END:b._moveFocus(":last");break;case a.ui.keyCode.ENTER:case a.ui.keyCode.SPACE:b.close(c,!0),a(c.target).parents("li:eq(0)").trigger("mouseup");break;case a.ui.keyCode.TAB:d=!0,b.close(c,!0),a(c.target).parents("li:eq(0)").trigger("mouseup");break;case a.ui.keyCode.ESCAPE:b.close(c,!0);break;default:d=!0}return d}).bind("keypress.selectmenu",function(a){return a.which>0&&b._typeAhead(a.which,"focus"),!0}).bind("mousedown.selectmenu mouseup.selectmenu",function(){return!1}),a(window).bind("resize.selectmenu-"+this.ids[0],a.proxy(b.close,this))},_init:function(){var b=this,c=this.options,d=[];this.element.find("option").each(function(){var e=a(this);d.push({value:e.attr("value"),text:b._formatText(e.text(),e),selected:e.attr("selected"),disabled:e.attr("disabled"),classes:e.attr("class"),typeahead:e.attr("typeahead"),parentOptGroup:e.parent("optgroup"),bgImage:c.bgImage.call(e)})});var e="popup"==b.options.style?" ui-state-active":"";if(this.list.html(""),d.length)for(var f=0;f<d.length;f++){var g={role:"presentation"};d[f].disabled&&(g["class"]="ui-state-disabled");var h={html:d[f].text||"&nbsp;",href:"#nogo",tabindex:-1,role:"option","aria-selected":!1};d[f].disabled&&(h["aria-disabled"]=d[f].disabled),d[f].typeahead&&(h.typeahead=d[f].typeahead);var i=a("<a/>",h).bind("focus.selectmenu",function(){a(this).parent().mouseover()}).bind("blur.selectmenu",function(){a(this).parent().mouseout()}),j=a("<li/>",g).append(i).data("index",f).addClass(d[f].classes).data("optionClasses",d[f].classes||"").bind("mouseup.selectmenu",function(c){return!b._safemouseup||b._disabled(c.currentTarget)||b._disabled(a(c.currentTarget).parents("ul > li.ui-selectmenu-group "))||(b.index(a(this).data("index")),b.select(c),b.close(c,!0)),!1}).bind("click.selectmenu",function(){return!1}).bind("mouseover.selectmenu",function(c){a(this).hasClass("ui-state-disabled")||a(this).parent("ul").parent("li").hasClass("ui-state-disabled")||(c.optionValue=b.element[0].options[a(this).data("index")].value,b._trigger("hover",c,b._uiHash()),b._selectedOptionLi().addClass(e),b._focusedOptionLi().removeClass("ui-selectmenu-item-focus ui-state-hover"),a(this).removeClass("ui-state-active").addClass("ui-selectmenu-item-focus ui-state-hover"))}).bind("mouseout.selectmenu",function(c){a(this).is(b._selectedOptionLi())&&a(this).addClass(e),c.optionValue=b.element[0].options[a(this).data("index")].value,b._trigger("blur",c,b._uiHash()),a(this).removeClass("ui-selectmenu-item-focus ui-state-hover")});if(d[f].parentOptGroup.length){var k="ui-selectmenu-group-"+this.element.find("optgroup").index(d[f].parentOptGroup);this.list.find("li."+k).length?this.list.find("li."+k+":last ul").append(j):a('<li role="presentation" class="ui-selectmenu-group '+k+(d[f].parentOptGroup.attr("disabled")?' ui-state-disabled" aria-disabled="true"':'"')+'><span class="ui-selectmenu-group-label">'+d[f].parentOptGroup.attr("label")+"</span><ul></ul></li>").appendTo(this.list).find("ul").append(j)}else j.appendTo(this.list);if(c.icons)for(var l in c.icons)if(j.is(c.icons[l].find)){j.data("optionClasses",d[f].classes+" ui-selectmenu-hasIcon").addClass("ui-selectmenu-hasIcon");var m=c.icons[l].icon||"";j.find("a:eq(0)").prepend('<span class="ui-selectmenu-item-icon ui-icon '+m+'"></span>'),d[f].bgImage&&j.find("span").css("background-image",d[f].bgImage)}}else a(' <li role="presentation"><a href="#nogo" tabindex="-1" role="option"></a></li>').appendTo(this.list);var n="dropdown"==c.style;this.newelement.toggleClass("ui-selectmenu-dropdown",n).toggleClass("ui-selectmenu-popup",!n),this.list.toggleClass("ui-selectmenu-menu-dropdown ui-corner-bottom",n).toggleClass("ui-selectmenu-menu-popup ui-corner-all",!n).find("li:first").toggleClass("ui-corner-top",!n).end().find("li:last").addClass("ui-corner-bottom"),this.selectmenuIcon.toggleClass("ui-icon-triangle-1-s",n).toggleClass("ui-icon-triangle-2-n-s",!n),"dropdown"==c.style?this.list.width(c.menuWidth?c.menuWidth:c.width):this.list.width(c.menuWidth?c.menuWidth:c.width-c.handleWidth),this.list.css("height","auto");var o=this.listWrap.height(),p=a(window).height(),q=c.maxHeight?Math.min(c.maxHeight,p):p/3;o>q&&this.list.height(q),this._optionLis=this.list.find("li:not(.ui-selectmenu-group)"),this.element.attr("disabled")?this.disable():this.enable(),this._refreshValue(),this._selectedOptionLi().addClass("ui-selectmenu-item-focus"),clearTimeout(this.refreshTimeout),this.refreshTimeout=window.setTimeout(function(){b._refreshPosition()},200)},destroy:function(){this.element.removeData(this.widgetName).removeClass("ui-selectmenu-disabled ui-state-disabled").removeAttr("aria-disabled").unbind(".selectmenu"),a(window).unbind(".selectmenu-"+this.ids[0]),a(document).unbind(".selectmenu-"+this.ids[0]),this.newelementWrap.remove(),this.listWrap.remove(),this.element.unbind(".selectmenu").show(),a.Widget.prototype.destroy.apply(this,arguments)},_typeAhead:function(a,b){var c=this,d=String.fromCharCode(a).toLowerCase(),e=null,f=null;c._typeAhead_timer&&(window.clearTimeout(c._typeAhead_timer),c._typeAhead_timer=void 0),c._typeAhead_chars=(void 0===c._typeAhead_chars?"":c._typeAhead_chars).concat(d),c._typeAhead_chars.length<2||c._typeAhead_chars.substr(-2,1)===d&&c._typeAhead_cycling?(c._typeAhead_cycling=!0,e=d):(c._typeAhead_cycling=!1,e=c._typeAhead_chars);for(var g=("focus"!==b?this._selectedOptionLi().data("index"):this._focusedOptionLi().data("index"))||0,h=0;h<this._optionLis.length;h++){var i=this._optionLis.eq(h).text().substr(0,e.length).toLowerCase();if(i===e)if(c._typeAhead_cycling){if(null===f&&(f=h),h>g){f=h;break}}else f=h}null!==f&&this._optionLis.eq(f).find("a").trigger(b),c._typeAhead_timer=window.setTimeout(function(){c._typeAhead_timer=void 0,c._typeAhead_chars=void 0,c._typeAhead_cycling=void 0},c.options.typeAhead)},_uiHash:function(){var b=this.index();return{index:b,option:a("option",this.element).get(b),value:this.element[0].value}},open:function(a){if("true"!=this.newelement.attr("aria-disabled")){var b=this,c=this.options,d=this._selectedOptionLi(),e=d.find("a");b._closeOthers(a),b.newelement.addClass("ui-state-active"),b.list.attr("aria-hidden",!1),b.listWrap.addClass("ui-selectmenu-open"),"dropdown"==c.style?b.newelement.removeClass("ui-corner-all").addClass("ui-corner-top"):this.list.css("left",-5e3).scrollTop(this.list.scrollTop()+d.position().top-this.list.outerHeight()/2+d.outerHeight()/2).css("left","auto"),b._refreshPosition(),e.length&&e[0].focus(),b.isOpen=!0,b._trigger("open",a,b._uiHash())}},close:function(a,b){this.newelement.is(".ui-state-active")&&(this.newelement.removeClass("ui-state-active"),this.listWrap.removeClass("ui-selectmenu-open"),this.list.attr("aria-hidden",!0),"dropdown"==this.options.style&&this.newelement.removeClass("ui-corner-top").addClass("ui-corner-all"),b&&this.newelement.focus(),this.isOpen=!1,this._trigger("close",a,this._uiHash()))},change:function(a){this.element.trigger("change"),this._trigger("change",a,this._uiHash())},select:function(a){return this._disabled(a.currentTarget)?!1:void this._trigger("select",a,this._uiHash())},widget:function(){return this.listWrap.add(this.newelementWrap)},_closeOthers:function(b){a(".ui-selectmenu.ui-state-active").not(this.newelement).each(function(){a(this).data("selectelement").selectmenu("close",b)}),a(".ui-selectmenu.ui-state-hover").trigger("mouseout")},_toggle:function(a,b){this.isOpen?this.close(a,b):this.open(a)},_formatText:function(b,c){return this.options.format?b=this.options.format(b,c):this.options.escapeHtml&&(b=a("<div />").text(b).html()),b},_selectedIndex:function(){return this.element[0].selectedIndex},_selectedOptionLi:function(){return this._optionLis.eq(this._selectedIndex())},_focusedOptionLi:function(){return this.list.find(".ui-selectmenu-item-focus")},_moveSelection:function(a,b){if(!this.options.disabled){var c=parseInt(this._selectedOptionLi().data("index")||0,10),d=c+a;if(0>d&&(d=0),d>this._optionLis.size()-1&&(d=this._optionLis.size()-1),d===b)return!1;this._optionLis.eq(d).hasClass("ui-state-disabled")?(a>0?++a:--a,this._moveSelection(a,d)):this._optionLis.eq(d).trigger("mouseover").trigger("mouseup")}},_moveFocus:function(a,b){var c;if(isNaN(a))c=parseInt(this._optionLis.filter(a).data("index"),10);else{var d=parseInt(this._focusedOptionLi().data("index")||0,10);c=d+a}if(0>c&&(c=0),c>this._optionLis.size()-1&&(c=this._optionLis.size()-1),c===b)return!1;var e="ui-selectmenu-item-"+Math.round(1e3*Math.random());this._focusedOptionLi().find("a:eq(0)").attr("id",""),this._optionLis.eq(c).hasClass("ui-state-disabled")?(a>0?++a:--a,this._moveFocus(a,c)):this._optionLis.eq(c).find("a:eq(0)").attr("id",e).focus(),this.list.attr("aria-activedescendant",e)},_scrollPage:function(a){var b=Math.floor(this.list.outerHeight()/this._optionLis.first().outerHeight());b="up"==a?-b:b,this._moveFocus(b)},_setOption:function(a,b){this.options[a]=b,"disabled"==a&&(b&&this.close(),this.element.add(this.newelement).add(this.list)[b?"addClass":"removeClass"]("ui-selectmenu-disabled ui-state-disabled").attr("aria-disabled",b))},disable:function(a,b){"undefined"==typeof a?this._setOption("disabled",!0):"optgroup"==b?this._toggleOptgroup(a,!1):this._toggleOption(a,!1)},enable:function(a,b){"undefined"==typeof a?this._setOption("disabled",!1):"optgroup"==b?this._toggleOptgroup(a,!0):this._toggleOption(a,!0)},_disabled:function(b){return a(b).hasClass("ui-state-disabled")},_toggleOption:function(a,b){var c=this._optionLis.eq(a);c&&(c.toggleClass("ui-state-disabled",b).find("a").attr("aria-disabled",!b),b?this.element.find("option").eq(a).attr("disabled","disabled"):this.element.find("option").eq(a).removeAttr("disabled"))},_toggleOptgroup:function(a,b){var c=this.list.find("li.ui-selectmenu-group-"+a);c&&(c.toggleClass("ui-state-disabled",b).attr("aria-disabled",!b),b?this.element.find("optgroup").eq(a).attr("disabled","disabled"):this.element.find("optgroup").eq(a).removeAttr("disabled"))},index:function(b){return arguments.length?this._disabled(a(this._optionLis[b]))||b==this._selectedIndex()?!1:(this.element[0].selectedIndex=b,this._refreshValue(),this.change(),void 0):this._selectedIndex()},value:function(a){return arguments.length&&a!=this.element[0].value?(this.element[0].value=a,this._refreshValue(),this.change(),void 0):this.element[0].value},_refreshValue:function(){var a="popup"==this.options.style?" ui-state-active":"",b="ui-selectmenu-item-"+Math.round(1e3*Math.random());this.list.find(".ui-selectmenu-item-selected").removeClass("ui-selectmenu-item-selected"+a).find("a").attr("aria-selected","false").attr("id",""),this._selectedOptionLi().addClass("ui-selectmenu-item-selected"+a).find("a").attr("aria-selected","true").attr("id",b);var c=this.newelement.data("optionClasses")?this.newelement.data("optionClasses"):"",d=this._selectedOptionLi().data("optionClasses")?this._selectedOptionLi().data("optionClasses"):"";this.newelement.removeClass(c).data("optionClasses",d).addClass(d).find(".ui-selectmenu-status").html(this._selectedOptionLi().find("a:eq(0)").html()),this.list.attr("aria-activedescendant",b)},_refreshPosition:function(){var b=this.options,c={of:this.newelement,my:"left top",at:"left bottom",collision:"flip"};if("popup"==b.style){var d=this._selectedOptionLi();c.my="left top"+(this.list.offset().top-d.offset().top-(this.newelement.outerHeight()+d.outerHeight())/2),c.collision="fit"}this.listWrap.removeAttr("style").zIndex(this.element.zIndex()+2).position(a.extend(c,b.positionOptions))}})}(jQuery),function(a){var b;"function"==typeof b&&b.amd?b(["jquery"],a):a(jQuery)}(function(a){function b(a){return a}function c(a){return decodeURIComponent(a.replace(e," "))}function d(a){0===a.indexOf('"')&&(a=a.slice(1,-1).replace(/\\"/g,'"').replace(/\\\\/g,"\\"));try{return f.json?JSON.parse(a):a}catch(b){}}var e=/\+/g,f=a.cookie=function(e,g,h){if(void 0!==g){if(h=a.extend({},f.defaults,h),"number"==typeof h.expires){var i=h.expires,j=h.expires=new Date;j.setDate(j.getDate()+i)}return g=f.json?JSON.stringify(g):String(g),document.cookie=[f.raw?e:encodeURIComponent(e),"=",f.raw?g:encodeURIComponent(g),h.expires?"; expires="+h.expires.toUTCString():"",h.path?"; path="+h.path:"",h.domain?"; domain="+h.domain:"",h.secure?"; secure":""].join(""),document}for(var k=f.raw?b:c,l=document.cookie.split("; "),m=e?void 0:{},n=0,o=l.length;o>n;n++){var p=l[n].split("="),q=k(p.shift()),r=k(p.join("="));if(e&&e===q){m=d(r);break}e||(m[q]=d(r))}return m};f.defaults={},a.removeCookie=function(b,c){return void 0!==a.cookie(b)?(a.cookie(b,"",a.extend({},c,{expires:-1})),!0):!1}});
js/edit-event-controller.min.js CHANGED
@@ -1,2 +1,2 @@
1
- /*! event-organiser 3.9.1-0-g845144e 2020-05-28 21:35 */
2
  var eventorganiser=eventorganiser||{};eventorganiser.versionCompare=function(a,b){if(typeof a+typeof b!="stringstring")return!1;for(var c=a.split("."),d=b.split("."),e=Math.max(c.length,d.length),f=0;e>f;f++){if(c[f]&&!d[f]&&parseInt(c[f],10)>0||parseInt(c[f],10)>parseInt(d[f],10))return 1;if(d[f]&&!c[f]&&parseInt(d[f],10)>0||parseInt(c[f],10)<parseInt(d[f],10))return-1}return 0},jQuery(document).ready(function(a){var b;eventOrganiserSchedulePicker.init({views:{start_date:"#eo-start-date",start_time:"#eo-start-time",end_date:"#eo-end-date",end_time:"#eo-end-time",occurrence_picker:"#eo-occurrence-datepicker",occurrence_picker_toggle:".eo_occurrence_toggle",schedule_last_date:"#eo-schedule-last-date",schedule:"#eo-event-recurrence",is_all_day:"#eo-all-day",frequency:"#eo-recurrence-frequency",week_repeat:"#eo-day-of-week-repeat",month_repeat:"#eo-day-of-month-repeat",recurrence_section:".reocurrence_row",include:"#eo-occurrence-includes",exclude:"#eo-occurrence-excludes",schedule_span:"#eo-recurrence-schedule-label",summary:"#eo-event-summary"},format:EO_Ajax_Event.format,is24hour:Boolean(EO_Ajax_Event.is24hour),startday:EO_Ajax_Event.startday,schedule:window.eventOrganiserSchedule,locale:EO_Ajax_Event.locale,editable:"once"==a("#eo-event-recurrence").val()}),a("#eo-event-recurrring-notice").click(function(){window.eventOrganiserSchedulePicker.options.editable=a("#eo-event-recurrring-notice").is(":checked"),window.eventOrganiserSchedulePicker.update_form()}),eovenue.init_map("venuemap",{lat:a("#eo_venue_Lat").val(),lng:a("#eo_venue_Lng").val(),draggable:!1,onPositionchanged:function(a){a.target.latlng.lat+", "+a.target.latlng.lng;jQuery("#eo_venue_Lat").val(a.target.latlng.lat),jQuery("#eo_venue_Lng").val(a.target.latlng.lng),a.target.map.setCenter(a.target.latlng),a.target.map.setZoom(15)}}),a.widget("ui.combobox",{_create:function(){var c=this.element.hide(),d=c.attr("id"),e=c.children(":selected"),f=e.val()?e.text():"",g=a("<span>").addClass("ui-combobox eo-venue-input").insertAfter(c),h=a('<input type="hidden" name="'+c.attr("name")+'" value="'+e.val()+'"/>'),i=a("<input>").attr("id",d).appendTo(g).val(f).addClass("ui-combobox-input"),j={delay:0,minLength:0,source:function(b,c){i.addClass("eo-waiting"),a.getJSON(EO_Ajax_Event.ajaxurl+"?action=eo-search-venue",b,function(b){var d=a.map(b,function(a){return a.label=a.name,a});c(d),i.removeClass("eo-waiting")})},select:function(b,c){a(".venue_row").length>0&&(0===parseInt(c.item.term_id,10)?(a(".venue_row").hide(),a("#eventorganiser_detail .eo-add-new-venue").hide()):(a(".venue_row").show(),a("#eventorganiser_detail .eo-add-new-venue").hide()),eovenue.is_map_enabled()&&eovenue.get_map("venuemap").marker[0].setPosition({lat:parseFloat(c.item.venue_lat),lng:parseFloat(c.item.venue_lng)})),h.val(c.item.term_id)}};i.autocomplete(j).addClass("ui-widget-content ui-corner-left"),this.element.replaceWith(h);var k=a.ui?a.ui.version||0:-1,l=eventorganiser.versionCompare(k,"1.10")>=0?"ui-autocomplete":"autocomplete";i.data(l)._renderItem=function(b,c){if(0===parseInt(c.term_id,10))return a("<li></li>").data(l+"-item",c).append("<a>"+c.label+"</a>").appendTo(b);var d=[c.venue_address,c.venue_city,c.venue_state,c.venue_postcode,c.venue_country],e=a.grep(d,function(a){return a}).join(", "),f=eventorganiser.versionCompare(k,"1.10")>=0?"ui-autocomplete-item":"item.autocomplete";return a("<li></li>").data(f,c).append("<a>"+c.label+"</br> <span style='font-size: 0.8em'><em>"+e+"</span></em></a>").appendTo(b)};var m=a("<span>").addClass("eo-venue-combobox-buttons").appendTo(g);a("<a href='#' style='vertical-align: top;margin: 0px -1px;padding: 0px;height:27px;'>").attr("title","Show All Venues").appendTo(m).button({icons:{primary:"ui-icon-triangle-1-s"},text:!1}).removeClass("ui-corner-all").addClass("eo-ui-button ui-corner-right ui-combobox-toggle ui-combobox-button").mousedown(function(){wasOpen=i.autocomplete("widget").is(":visible")}).click(function(b){b.preventDefault(),wasOpen||(a(this).blur(),i.autocomplete("search","").focus())}),EO_Ajax_Event.current_user_can.manage_venues&&a("<a href='#' style='vertical-align: top;margin: 0px -1px;padding: 0px;height:27px;'>").attr("title","Create New Venue").appendTo(m).button({icons:{primary:"ui-icon-plus"},text:!1}).removeClass("ui-corner-all").addClass("eo-ui-button ui-corner-right add-new-venue ui-combobox-button").click(function(c){if(c.preventDefault(),a("#eventorganiser_detail .eo-add-new-venue").show(),a(".venue_row").show(),b={id:a("[name='eo_input[event-venue]']").val(),label:a(".eo-venue-input input").val(),lat:a("#eo_venue_Lat").val(),lng:a("#eo_venue_Lng").val()},a("[name='eo_input[event-venue]']").val(0),a(".eo-venue-combobox-select").hide(),a(".eo-venue-input input").val(""),eovenue.is_map_enabled()){var d=EO_Ajax_Event.location;d?(d=d.split("/"),eovenue.geocode({city:d[d.length-1]},function(a){a&&eovenue.get_map("venuemap").marker[0].setPosition(a)})):(eovenue.get_map("venuemap").marker[0].setPosition({lat:0,lng:0}),eovenue.get_map("venuemap").map.setZoom(1)),a("#eventorganiser_detail .eo-add-new-venue input").first().focus()}})}}),a("#venue_select").combobox(),a(".eo_addressInput").change(function(){var b={};a(".eo_addressInput").each(function(){var c=a(this).attr("id").replace("eo_venue_add-","");b[c]=a(this).val()}),eovenue.is_map_enabled()&&eovenue.geocode(b,function(a){a&&eovenue.get_map("venuemap").marker[0].setPosition(a)})}),a(".eo-add-new-venue-cancel").click(function(c){c.preventDefault(),a(".eo-venue-combobox-select").show().find("input:visible").first().focus(),a(".eo-add-new-venue input").val(""),eovenue.is_map_enabled()&&(eovenue.get_map("venuemap").marker[0].setPosition({lat:parseFloat(b.lat),lng:parseFloat(b.lng)}),a("[name='eo_input[event-venue]']").val(b.id),a(".eo-venue-input input").val(b.label),a("#eventorganiser_detail .eo-add-new-venue").hide())})});
1
+ /*! event-organiser 3.10.0-0-g5f45c47 2020-07-22 07:59 */
2
  var eventorganiser=eventorganiser||{};eventorganiser.versionCompare=function(a,b){if(typeof a+typeof b!="stringstring")return!1;for(var c=a.split("."),d=b.split("."),e=Math.max(c.length,d.length),f=0;e>f;f++){if(c[f]&&!d[f]&&parseInt(c[f],10)>0||parseInt(c[f],10)>parseInt(d[f],10))return 1;if(d[f]&&!c[f]&&parseInt(d[f],10)>0||parseInt(c[f],10)<parseInt(d[f],10))return-1}return 0},jQuery(document).ready(function(a){var b;eventOrganiserSchedulePicker.init({views:{start_date:"#eo-start-date",start_time:"#eo-start-time",end_date:"#eo-end-date",end_time:"#eo-end-time",occurrence_picker:"#eo-occurrence-datepicker",occurrence_picker_toggle:".eo_occurrence_toggle",schedule_last_date:"#eo-schedule-last-date",schedule:"#eo-event-recurrence",is_all_day:"#eo-all-day",frequency:"#eo-recurrence-frequency",week_repeat:"#eo-day-of-week-repeat",month_repeat:"#eo-day-of-month-repeat",recurrence_section:".reocurrence_row",include:"#eo-occurrence-includes",exclude:"#eo-occurrence-excludes",schedule_span:"#eo-recurrence-schedule-label",summary:"#eo-event-summary"},format:EO_Ajax_Event.format,is24hour:Boolean(EO_Ajax_Event.is24hour),startday:EO_Ajax_Event.startday,schedule:window.eventOrganiserSchedule,locale:EO_Ajax_Event.locale,editable:"once"==a("#eo-event-recurrence").val()}),a("#eo-event-recurrring-notice").click(function(){window.eventOrganiserSchedulePicker.options.editable=a("#eo-event-recurrring-notice").is(":checked"),window.eventOrganiserSchedulePicker.update_form()}),eovenue.init_map("venuemap",{lat:a("#eo_venue_Lat").val(),lng:a("#eo_venue_Lng").val(),draggable:!1,onPositionchanged:function(a){a.target.latlng.lat+", "+a.target.latlng.lng;jQuery("#eo_venue_Lat").val(a.target.latlng.lat),jQuery("#eo_venue_Lng").val(a.target.latlng.lng),a.target.map.setCenter(a.target.latlng),a.target.map.setZoom(15)}}),a.widget("ui.combobox",{_create:function(){var c=this.element.hide(),d=c.attr("id"),e=c.children(":selected"),f=e.val()?e.text():"",g=a("<span>").addClass("ui-combobox eo-venue-input").insertAfter(c),h=a('<input type="hidden" name="'+c.attr("name")+'" value="'+e.val()+'"/>'),i=a("<input>").attr("id",d).appendTo(g).val(f).addClass("ui-combobox-input"),j={delay:0,minLength:0,source:function(b,c){i.addClass("eo-waiting"),a.getJSON(EO_Ajax_Event.ajaxurl+"?action=eo-search-venue",b,function(b){var d=a.map(b,function(a){return a.label=a.name,a});c(d),i.removeClass("eo-waiting")})},select:function(b,c){a(".venue_row").length>0&&(0===parseInt(c.item.term_id,10)?(a(".venue_row").hide(),a("#eventorganiser_detail .eo-add-new-venue").hide()):(a(".venue_row").show(),a("#eventorganiser_detail .eo-add-new-venue").hide()),eovenue.is_map_enabled()&&eovenue.get_map("venuemap").marker[0].setPosition({lat:parseFloat(c.item.venue_lat),lng:parseFloat(c.item.venue_lng)})),h.val(c.item.term_id)}};i.autocomplete(j).addClass("ui-widget-content ui-corner-left"),this.element.replaceWith(h);var k=a.ui?a.ui.version||0:-1,l=eventorganiser.versionCompare(k,"1.10")>=0?"ui-autocomplete":"autocomplete";i.data(l)._renderItem=function(b,c){if(0===parseInt(c.term_id,10))return a("<li></li>").data(l+"-item",c).append("<a>"+c.label+"</a>").appendTo(b);var d=[c.venue_address,c.venue_city,c.venue_state,c.venue_postcode,c.venue_country],e=a.grep(d,function(a){return a}).join(", "),f=eventorganiser.versionCompare(k,"1.10")>=0?"ui-autocomplete-item":"item.autocomplete";return a("<li></li>").data(f,c).append("<a>"+c.label+"</br> <span style='font-size: 0.8em'><em>"+e+"</span></em></a>").appendTo(b)};var m=a("<span>").addClass("eo-venue-combobox-buttons").appendTo(g);a("<a href='#' style='vertical-align: top;margin: 0px -1px;padding: 0px;height:27px;'>").attr("title","Show All Venues").appendTo(m).button({icons:{primary:"ui-icon-triangle-1-s"},text:!1}).removeClass("ui-corner-all").addClass("eo-ui-button ui-corner-right ui-combobox-toggle ui-combobox-button").mousedown(function(){wasOpen=i.autocomplete("widget").is(":visible")}).click(function(b){b.preventDefault(),wasOpen||(a(this).blur(),i.autocomplete("search","").focus())}),EO_Ajax_Event.current_user_can.manage_venues&&a("<a href='#' style='vertical-align: top;margin: 0px -1px;padding: 0px;height:27px;'>").attr("title","Create New Venue").appendTo(m).button({icons:{primary:"ui-icon-plus"},text:!1}).removeClass("ui-corner-all").addClass("eo-ui-button ui-corner-right add-new-venue ui-combobox-button").click(function(c){if(c.preventDefault(),a("#eventorganiser_detail .eo-add-new-venue").show(),a(".venue_row").show(),b={id:a("[name='eo_input[event-venue]']").val(),label:a(".eo-venue-input input").val(),lat:a("#eo_venue_Lat").val(),lng:a("#eo_venue_Lng").val()},a("[name='eo_input[event-venue]']").val(0),a(".eo-venue-combobox-select").hide(),a(".eo-venue-input input").val(""),eovenue.is_map_enabled()){var d=EO_Ajax_Event.location;d?(d=d.split("/"),eovenue.geocode({city:d[d.length-1]},function(a){a&&eovenue.get_map("venuemap").marker[0].setPosition(a)})):(eovenue.get_map("venuemap").marker[0].setPosition({lat:0,lng:0}),eovenue.get_map("venuemap").map.setZoom(1)),a("#eventorganiser_detail .eo-add-new-venue input").first().focus()}})}}),a("#venue_select").combobox(),a(".eo_addressInput").change(function(){var b={};a(".eo_addressInput").each(function(){var c=a(this).attr("id").replace("eo_venue_add-","");b[c]=a(this).val()}),eovenue.is_map_enabled()&&eovenue.geocode(b,function(a){a&&eovenue.get_map("venuemap").marker[0].setPosition(a)})}),a(".eo-add-new-venue-cancel").click(function(c){c.preventDefault(),a(".eo-venue-combobox-select").show().find("input:visible").first().focus(),a(".eo-add-new-venue input").val(""),eovenue.is_map_enabled()&&(eovenue.get_map("venuemap").marker[0].setPosition({lat:parseFloat(b.lat),lng:parseFloat(b.lng)}),a("[name='eo_input[event-venue]']").val(b.id),a(".eo-venue-input input").val(b.label),a("#eventorganiser_detail .eo-add-new-venue").hide())})});
js/event-manager.min.js CHANGED
@@ -1,2 +1,2 @@
1
- /*! event-organiser 3.9.1-0-g845144e 2020-05-28 21:35 */
2
  !function(a,b){"use strict";if("undefined"==typeof a.wp||"undefined"==typeof a.wp.hooks){var c=function(){function a(a,b,c,d){return"string"==typeof a&&"function"==typeof b&&(c=parseInt(c||10,10),h("actions",a,b,c,d)),k}function b(){var a=Array.prototype.slice.call(arguments),b=a.shift();return"string"==typeof b&&j("actions",b,a),k}function c(a,b){return"string"==typeof a&&g("actions",a,b),k}function d(a,b,c,d){return"string"==typeof a&&"function"==typeof b&&(c=parseInt(c||10,10),h("filters",a,b,c)),k}function e(){var a=Array.prototype.slice.call(arguments),b=a.shift();return"string"==typeof b?j("filters",b,a):k}function f(a,b){return"string"==typeof a&&g("filters",a,b),k}function g(a,b,c,d){if(l[a][b])if(c){var e,f=l[a][b];if(d)for(e=f.length;e--;){var g=f[e];g.callback===c&&g.context===d&&f.splice(e,1)}else for(e=f.length;e--;)f[e].callback===c&&f.splice(e,1)}else l[a][b]=[]}function h(a,b,c,d,e){var f={callback:c,priority:d,context:e},g=l[a][b];g?(g.push(f),g=i(g)):g=[f],l[a][b]=g}function i(a){for(var b,c,d,e=1,f=a.length;f>e;e++){for(b=a[e],c=e;(d=a[c-1])&&d.priority>b.priority;)a[c]=a[c-1],--c;a[c]=b}return a}function j(a,b,c){var d=l[a][b];if(!d)return"filters"===a?c[0]:!1;var e=0,f=d.length;if("filters"===a)for(;f>e;e++)c[0]=d[e].callback.apply(d[e].context,c);else for(;f>e;e++)d[e].callback.apply(d[e].context,c);return"filters"===a?c[0]:!0}var k={removeFilter:f,applyFilters:e,applyFilter:e,addFilter:d,removeAction:c,doAction:b,addAction:a},l={actions:{},filters:{}};return k};a.wp=a.wp||{},a.wp.hooks=new c}}(window);
1
+ /*! event-organiser 3.10.0-0-g5f45c47 2020-07-22 07:59 */
2
  !function(a,b){"use strict";if("undefined"==typeof a.wp||"undefined"==typeof a.wp.hooks){var c=function(){function a(a,b,c,d){return"string"==typeof a&&"function"==typeof b&&(c=parseInt(c||10,10),h("actions",a,b,c,d)),k}function b(){var a=Array.prototype.slice.call(arguments),b=a.shift();return"string"==typeof b&&j("actions",b,a),k}function c(a,b){return"string"==typeof a&&g("actions",a,b),k}function d(a,b,c,d){return"string"==typeof a&&"function"==typeof b&&(c=parseInt(c||10,10),h("filters",a,b,c)),k}function e(){var a=Array.prototype.slice.call(arguments),b=a.shift();return"string"==typeof b?j("filters",b,a):k}function f(a,b){return"string"==typeof a&&g("filters",a,b),k}function g(a,b,c,d){if(l[a][b])if(c){var e,f=l[a][b];if(d)for(e=f.length;e--;){var g=f[e];g.callback===c&&g.context===d&&f.splice(e,1)}else for(e=f.length;e--;)f[e].callback===c&&f.splice(e,1)}else l[a][b]=[]}function h(a,b,c,d,e){var f={callback:c,priority:d,context:e},g=l[a][b];g?(g.push(f),g=i(g)):g=[f],l[a][b]=g}function i(a){for(var b,c,d,e=1,f=a.length;f>e;e++){for(b=a[e],c=e;(d=a[c-1])&&d.priority>b.priority;)a[c]=a[c-1],--c;a[c]=b}return a}function j(a,b,c){var d=l[a][b];if(!d)return"filters"===a?c[0]:!1;var e=0,f=d.length;if("filters"===a)for(;f>e;e++)c[0]=d[e].callback.apply(d[e].context,c);else for(;f>e;e++)d[e].callback.apply(d[e].context,c);return"filters"===a?c[0]:!0}var k={removeFilter:f,applyFilters:e,applyFilter:e,addFilter:d,removeAction:c,doAction:b,addAction:a},l={actions:{},filters:{}};return k};a.wp=a.wp||{},a.wp.hooks=new c}}(window);
js/event.min.js CHANGED
@@ -1,2 +1,2 @@
1
- /*! event-organiser 3.9.1-0-g845144e 2020-05-28 21:35 */
2
  var eo_include_dates,eo_exclude_dates,eo_viewing_month;!function(a){function b(b,c,d){var e,f=new Array("SU","MO","TU","WE","TH","FR","SA"),g=[],h=!1;switch(b.schedule){case"once":case"custom":var i=a.datepicker.formatDate("yy-mm-dd",b.start);return g.push(i),g;case"daily":b.start<c?(e=Math.abs((c-b.start)/864e5)-1,e%=b.frequency):e=parseInt(b.start.getDate(),10);var j=b.frequency,k=[],l=new Date(c);l.setDate(c.getDate()+(e-1)),k.push(l);break;case"weekly":var m=c.getDay();k=[],a.each(b.schedule_meta,function(a,d){a=f.indexOf(d),l=new Date(b.start),l.setDate(b.start.getDate()+(a-b.start.getDay()+7)%7),c>l&&(e=Math.abs((c-b.start)/864e5),e-=e%(7*b.frequency),l.setDate(l.getDate()+e)),k.push(l)}),j=7*b.frequency;break;case"monthly":var n=12*(c.getFullYear()-b.start.getFullYear())+(c.getMonth()-b.start.getMonth());if(n%b.frequency!==0)return;if(b.schedule_meta.match(/BYMONTHDAY=(\d+)/)){var o=b.start.getDate(),p=d.getDate();p>=o&&(h=new Date(c.getFullYear(),c.getMonth(),o))}else{var q,r=b.schedule_meta.match(/BYDAY=(\d+)(MO|TU|WE|TH|FR|SA|SU)/),s=parseInt(r[1],10)-1,t=b.start.getDay();if(s>=4){var u=d.getDay();q=d.getDate()+(t-u-7)%7}else{m=c.getDay();var v=(t-m+7)%7;q=v+7*s+1}h=new Date(c),h.setDate(q)}return h&&h<=b.schedule_last&&(i=a.datepicker.formatDate("yy-mm-dd",h),g.push(i)),g;case"yearly":var w=c.getFullYear()-b.start.getFullYear();if(w%b.frequency!==0)return g;var x=new Date(c.getFullYear(),b.start.getMonth(),b.start.getDate());return c.getMonth()==b.start.getMonth()&&x.getMonth()==b.start.getMonth()&&(h=new Date(b.start),h.setYear(c.getFullYear()),h<=b.schedule_last&&(i=a.datepicker.formatDate("yy-mm-dd",h),g.push(i))),g;default:return g}for(var y in k)for(h=new Date(k[y]);d>=h&&h<=b.schedule_last;)i=a.datepicker.formatDate("yy-mm-dd",h),g.push(i),h.setDate(h.getDate()+j);return g}Array.prototype.indexOf||(Array.prototype.indexOf=function(a){var b=this.length,c=Number(arguments[1])||0;for(c=0>c?Math.ceil(c):Math.floor(c),0>c&&(c+=b);b>c;c++)if(c in this&&this[c]===a)return c;return-1}),Date.prototype.eoGetOrdinal=function(){var a=this.getDate();switch(a){case 1:case 21:case 31:return"st";case 2:case 22:return"nd";case 3:case 23:return"rd";default:return"th"}},window.eventOrganiserSchedulePicker={init:function(b){var c=this;this.options=b,this.schedule=b.schedule,this.set_up_datepickers(),this.set_up_timepickers(),a(".event-date :input, .eo-all-day-toggle").change(function(b){c.update_schedule(),c.update_form(),a(this).hasClass("eo-all-day-toggle")||c.update_occurrencepicker_rules()}),this.update_schedule(),this.update_form();var d=new Date;eo_viewing_month=[d.getFullYear(),d.getMonth()+1],this.schedule.generate_dates_by_rule(d.getFullYear(),d.getMonth()+1,{})},set_up_datepickers:function(){var b=this,c=this.options.views,d=this.options.locale;a(c.start_date).data("eo-datepicker","start"),a(c.end_date).data("eo-datepicker","end");if(a(c.is_all_day).addClass("eo-all-day-toggle"),a(c.schedule_last_date))var e=a(c.schedule_last_date).datepicker({nextText:">",prevText:"<",dateFormat:this.options.format,changeMonth:!0,changeYear:!0,monthNamesShort:d.monthAbbrev,dayNamesMin:d.dayAbbrev,isRTL:d.isrtl,firstDay:parseInt(this.options.startday,10),beforeShow:function(b,c){c.hasOwnProperty("dpDiv")?c.dpDiv.addClass("eo-datepicker"):a("#ui-datepicker-div").addClass("eo-datepicker")}}).data("eo-datepicker","schedule_last");var f=a(c.start_date+", "+c.end_date).datepicker({dateFormat:this.options.format,nextText:">",prevText:"<",changeMonth:!0,changeYear:!0,monthNamesShort:d.monthAbbrev,dayNamesMin:d.dayAbbrev,firstDay:parseInt(this.options.startday,10),onSelect:function(d){var g="start"==a(this).data("eo-datepicker")?"minDate":"maxDate",h=a(this).data("datepicker"),i=a.datepicker.parseDate(h.settings.dateFormat||a.datepicker._defaults.dateFormat,d,h.settings);f.not(this).datepicker("option",g,i),"from_date"==this.id&&e.datepicker("option","minDate",i);var j=a(c.start_date).datepicker("getDate"),k=a(c.end_date).datepicker("getDate");if(j.getTime()!=k.getTime()){var l={hour:null,minute:null};a(c.start_time+", "+c.end_time).eotimepicker("option",{maxTime:l,minTime:l})}b.update_schedule(),b.update_occurrencepicker_rules(),b.update_form()},beforeShow:function(b,c){c.hasOwnProperty("dpDiv")?c.dpDiv.addClass("eo-datepicker"):a("#ui-datepicker-div").addClass("eo-datepicker")}}),g=a(c.occurrence_picker);g.length>0&&(g.datepicker({dateFormat:"yy-mm-dd",nextText:">",prevText:"<",changeMonth:!0,changeYear:!0,monthNamesShort:d.monthAbbrev,dayNamesMin:d.dayAbbrev,firstDay:parseInt(this.options.startday,10),onSelect:function(b){eventOrganiserSchedule.add_or_remove_date(b),a(eventOrganiserSchedulePicker.options.views.include).val(eventOrganiserSchedule.include.join(",\r\n")),a(eventOrganiserSchedulePicker.options.views.exclude).val(eventOrganiserSchedule.exclude.join(",\r\n"))},beforeShowDay:function(b){var c=a.datepicker.formatDate("yy-mm-dd",b),d=eventOrganiserSchedule.is_date_eventful(c);return d[0]?[!0,"eo-op-date-selected",""]:[!0,"eo-op-date-not-selected",""]},beforeShow:function(b,c){c.hasOwnProperty("dpDiv")?c.dpDiv.addClass("eo-datepicker"):a("#ui-datepicker-div").addClass("eo-datepicker")},onChangeMonthYear:eventOrganiserSchedule.generate_dates_by_rule}).hide().find(".ui-datepicker-inline").click(function(a){a||(a=window.event),a.cancelBubble=!0,a.stopPropagation&&a.stopPropagation()}),a("html").click(function(){g.hide(),a(c.occurrence_picker_toggle).val(d.showDates)})),a(c.occurrence_picker_toggle).click(function(b){b.preventDefault(),b.stopPropagation(),g.toggle(),g.is(":visible")?(a(this).val(d.hideDates),a(c.occurrence_picker).datepicker("refresh")):a(this).val(d.showDates)})},update_occurrencepicker_rules:function(){eo_exclude_dates=[],eo_include_dates=[],this.schedule.generate_dates_by_rule(eo_viewing_month[0],eo_viewing_month[1],{}),a(this.options.views.occurrence_picker).datepicker("refresh")},set_up_timepickers:function(){var b=this.options,c=this.options.views;a(c.start_time).data("eo-event-data","start-time"),a(c.end_time).data("eo-event-data","end-time"),a(c.start_time+", "+c.end_time).eotimepicker({showPeriodLabels:!b.is24hour,showPeriod:!this.options.is24hour,showLeadingZero:b.is24hour,periodSeparator:"",amPmText:b.locale.meridian,hourText:b.locale.hour,minuteText:b.locale.minute,isRTL:b.locale.isrtl,onSelect:function(b,d){var e=a(c.start_date).datepicker("getDate"),f=a(c.end_date).datepicker("getDate");if(e.getTime()==f.getTime()){var g={hour:d.hours,minute:d.minutes};"start-time"==a(d.input).data("eo-event-data")?a(c.end_time).eotimepicker("option",{minTime:g}):a(c.start_time).eotimepicker("option",{maxTime:g})}}}).addClass("eo-time-picker")},update_schedule:function(){var b=new Array("SU","MO","TU","WE","TH","FR","SA"),c=this.options.views,d={schedule:a(c.schedule).val(),frequency:parseInt(a(c.frequency).val(),10),schedule_last:a(c.schedule_last_date).datepicker("getDate"),start:a(c.start_date).datepicker("getDate"),end:a(c.end_date).datepicker("getDate"),is_all_day:a(c.is_all_day).attr("checked"),include:a(c.include).length>0?a(c.include).val().split(","):[],exclude:a(c.exclude).length>0?a(c.exclude).val().split(","):[]};if("weekly"==d.schedule){if(d.schedule_meta=[],0===a(c.week_repeat+" :checkbox:checked").length){var e=d.start.getDay();a(c.week_repeat+" :checkbox[value='"+b[e]+"']").attr("checked",!0)}a(c.week_repeat+" :checkbox:checked").each(function(){d.schedule_meta.push(a(this).val())})}else if("monthly"==d.schedule)if("BYMONTHDAY="==a(c.month_repeat+" :radio:checked").val())d.schedule_meta="BYMONTHDAY="+d.start.getDate();else{var f=d.start.getDay()%7,g=parseInt(Math.floor((d.start.getDate()-1)/7),10);d.schedule_meta="BYDAY="+(g+1)+b[f]}this.schedule=eventOrganiserSchedule.init(d),eo_exclude_dates=d.exclude,eo_include_dates=d.include},update_form:function(){var b=this.options.views,c=this.options.locale,d=this.schedule,e=700;switch(a(".event-date :input").attr("disabled",!this.options.editable).toggleClass("ui-state-disabled",!this.options.editable),a("label[for=eo-all-day]").toggleClass("ui-state-disabled",!this.options.editable),this.options.editable&&a(b.start_time+", "+b.end_time).attr("disabled",d.is_all_day).toggleClass("ui-state-disabled",d.is_all_day),"once"==d.schedule||"custom"==d.schedule?(a(b.recurrence_section+" :input").attr("disabled",!0),a(b.recurrence_section).hide()):(a(b.recurrence_section+" :input").attr("disabled",!1),a(b.recurrence_section).fadeIn(e)),d.schedule){case"once":case"custom":a(d.frequency).val("1"),a(b.month_repeat+", "+b.week_repeat).show();break;case"weekly":d.frequency>1?a(b.schedule_span).text(c.weeks):a(b.schedule_span).text(c.week),a(b.week_repeat).fadeIn(e),a(b.week_repeat+" :input").attr("disabled",!1),a(b.month_repeat).hide(),a(b.month_repeat+" :input").attr("disabled",!0);break;case"monthly":d.frequency>1?a(b.schedule_span).text(c.months):a(b.schedule_span).text(c.month),a(b.month_repeat).fadeIn(e),a(b.month_repeat+" :input").attr("disabled",!1),a(b.week_repeat).hide(),a(b.week_repeat+" :input").attr("disabled",!0);break;case"daily":d.frequency>1?a(b.schedule_span).text(c.days):a(b.schedule_span).text(c.day),a(b.week_repeat+", "+b.month_repeat).hide(),a(b.week_repeat+" :input, "+b.month_repeat+" :input").attr("disabled",!0);break;case"yearly":d.frequency>1?a(b.schedule_span).text(c.years):a(b.schedule_span).text(c.year),a(b.week_repeat+", "+b.month_repeat).hide(),a(b.week_repeat+" :input, "+b.month_repeat+" :input").attr("disabled",!0)}null===a("#venue_select").val()&&a(".venue_row").hide(),a(b.summary).html(d.generate_summary(c))}},eventOrganiserSchedule={self:this,init:function(b){var c={schedule:"once",frequency:1,schedule_last:new Date,start:new Date,end:new Date,is_all_day:!1,dates_by_rule:[]};b=a.extend({},c,b);for(var d in b)this[d]=b[d];return this},generate_dates_by_rule:function(a,c,d){var e=new Date(a,c-1,1),f=new Date(a,c,1),g=new Date(f-1);eventOrganiserSchedule.schedule_last<e||eventOrganiserSchedule.start>g||(eventOrganiserSchedule.dates_by_rule=b(eventOrganiserSchedule,e,g))},generate_summary:function(b){var c=b.weekDay,d=b.summary+" ",e={monthNamesShort:b.monthAbbrev,dayNamesMin:b.dayAbbrev,monthNames:b.monthNames},f=this.schedule,g=new Array("SU","MO","TU","WE","TH","FR","SA");switch(f){case"once":return"This event will be a one-time event";case"custom":case"daily":d+=this.frequency>1?sprintf(b.dayPlural,this.frequency):b.daySingle;break;case"weekly":d+=this.frequency>1?sprintf(b.weekPlural,this.frequency):b.weekSingle;var h=a.map(this.schedule_meta,function(a,b){return c[g.indexOf(a)]});d+=" "+h.join(", ");break;case"monthly":if(d+=this.frequency>1?sprintf(b.monthPlural,this.frequency):b.monthSingle,this.schedule_meta.match(/BYMONTHDAY=(\d+)/))d=d+" "+this.start.getDate()+this.start.eoGetOrdinal();else{var i=this.schedule_meta.match(/BYDAY=(\d+)(MO|TU|WE|TH|FR|SA|SU)/),j=parseInt(i[1],10)-1;d=d+" "+b.occurrence[j]+" "+c[g.indexOf(i[2])]}break;case"yearly":d+=this.frequency>1?sprintf(b.yearPlural,this.frequency):b.yearSingle;var k;k=b.isUsingOrdinal?a.datepicker.formatDate("MM d",this.start,e)+this.start.eoGetOrdinal():a.datepicker.formatDate("MM d",this.start,e),d=d+" "+k}if(null!==this.schedule_last){var l;l=b.isUsingOrdinal?a.datepicker.formatDate("MM d'"+this.schedule_last.eoGetOrdinal()+"' yy",this.schedule_last,e):a.datepicker.formatDate("MM d yy",this.schedule_last,e),d=d+" "+b.until+" "+l}return d},is_date_eventful:function(b){var c=a.inArray(b,eventOrganiserSchedule.dates_by_rule),d=a.inArray(b,eventOrganiserSchedule.exclude),e=a.inArray(b,eventOrganiserSchedule.include);return c>-1?d>-1&&-1==e?[!1,d]:d>-1&&e>-1?[!0,e]:[!0,-1]:e>-1?[!0,e]:[!1,-1]},add_or_remove_date:function(b,c){var d,e=eventOrganiserSchedule.is_date_eventful(b);e[0]?(d=e[1],d>-1?eventOrganiserSchedule.include.splice(d,1):a.inArray(b,eventOrganiserSchedule.exclude)<0&&eventOrganiserSchedule.exclude.push(b)):(d=e[1],d>-1?eventOrganiserSchedule.exclude.splice(d,1):a.inArray(b,eventOrganiserSchedule.include)<0&&eventOrganiserSchedule.include.push(b)),eo_exclude_dates=eventOrganiserSchedule.exclude,eo_include_dates=eventOrganiserSchedule.include}}}(jQuery),function(a){function b(a){return Object.prototype.toString.call(a).slice(8,-1).toLowerCase()}function c(a,b){for(var c=[];b>0;c[--b]=a);return c.join("")}var d=function(){return d.cache.hasOwnProperty(arguments[0])||(d.cache[arguments[0]]=d.parse(arguments[0])),d.format.call(null,d.cache[arguments[0]],arguments)};d.format=function(a,e){var f,g,h,i,j,k,l,m=1,n=a.length,o="",p=[];for(g=0;n>g;g++)if(o=b(a[g]),"string"===o)p.push(a[g]);else if("array"===o){if(i=a[g],i[2])for(f=e[m],h=0;h<i[2].length;h++){if(!f.hasOwnProperty(i[2][h]))throw d('[sprintf] property "%s" does not exist',i[2][h]);f=f[i[2][h]]}else f=i[1]?e[i[1]]:e[m++];if(/[^s]/.test(i[8])&&"number"!=b(f))throw d("[sprintf] expecting number but found %s",b(f));switch(i[8]){case"b":f=f.toString(2);break;case"c":f=String.fromCharCode(f);break;case"d":f=parseInt(f,10);break;case"e":f=i[7]?f.toExponential(i[7]):f.toExponential();break;case"f":f=i[7]?parseFloat(f).toFixed(i[7]):parseFloat(f);break;case"o":f=f.toString(8);break;case"s":f=(f=String(f))&&i[7]?f.substring(0,i[7]):f;break;case"u":f>>>=0;break;case"x":f=f.toString(16);break;case"X":f=f.toString(16).toUpperCase()}f=/[def]/.test(i[8])&&i[3]&&f>=0?"+"+f:f,k=i[4]?"0"==i[4]?"0":i[4].charAt(1):" ",l=i[6]-String(f).length,j=i[6]?c(k,l):"",p.push(i[5]?f+j:j+f)}return p.join("")},d.cache={},d.parse=function(a){for(var b=a,c=[],d=[],e=0;b;){if(null!==(c=/^[^\x25]+/.exec(b)))d.push(c[0]);else if(null!==(c=/^\x25{2}/.exec(b)))d.push("%");else{if(null===(c=/^\x25(?:([1-9]\d*)\$|\(([^\)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-fosuxX])/.exec(b)))throw"[sprintf] huh?";if(c[2]){e|=1;var f=[],g=c[2],h=[];if(null===(h=/^([a-z_][a-z_\d]*)/i.exec(g)))throw"[sprintf] huh?";for(f.push(h[1]);""!==(g=g.substring(h[0].length));)if(null!==(h=/^\.([a-z_][a-z_\d]*)/i.exec(g)))f.push(h[1]);else{if(null===(h=/^\[(\d+)\]/.exec(g)))throw"[sprintf] huh?";f.push(h[1])}c[2]=f}else e|=2;if(3===e)throw"[sprintf] mixing positional and named placeholders is not (yet) supported";d.push(c)}b=b.substring(c[0].length)}return d};var e=function(a,b,c){return c=b.slice(0),c.splice(0,0,a),d.apply(null,c)};a.sprintf=d,a.vsprintf=e}("undefined"!=typeof exports?exports:window);
1
+ /*! event-organiser 3.10.0-0-g5f45c47 2020-07-22 07:59 */
2
  var eo_include_dates,eo_exclude_dates,eo_viewing_month;!function(a){function b(b,c,d){var e,f=new Array("SU","MO","TU","WE","TH","FR","SA"),g=[],h=!1;switch(b.schedule){case"once":case"custom":var i=a.datepicker.formatDate("yy-mm-dd",b.start);return g.push(i),g;case"daily":b.start<c?(e=Math.abs((c-b.start)/864e5)-1,e%=b.frequency):e=parseInt(b.start.getDate(),10);var j=b.frequency,k=[],l=new Date(c);l.setDate(c.getDate()+(e-1)),k.push(l);break;case"weekly":var m=c.getDay();k=[],a.each(b.schedule_meta,function(a,d){a=f.indexOf(d),l=new Date(b.start),l.setDate(b.start.getDate()+(a-b.start.getDay()+7)%7),c>l&&(e=Math.abs((c-b.start)/864e5),e-=e%(7*b.frequency),l.setDate(l.getDate()+e)),k.push(l)}),j=7*b.frequency;break;case"monthly":var n=12*(c.getFullYear()-b.start.getFullYear())+(c.getMonth()-b.start.getMonth());if(n%b.frequency!==0)return;if(b.schedule_meta.match(/BYMONTHDAY=(\d+)/)){var o=b.start.getDate(),p=d.getDate();p>=o&&(h=new Date(c.getFullYear(),c.getMonth(),o))}else{var q,r=b.schedule_meta.match(/BYDAY=(\d+)(MO|TU|WE|TH|FR|SA|SU)/),s=parseInt(r[1],10)-1,t=b.start.getDay();if(s>=4){var u=d.getDay();q=d.getDate()+(t-u-7)%7}else{m=c.getDay();var v=(t-m+7)%7;q=v+7*s+1}h=new Date(c),h.setDate(q)}return h&&h<=b.schedule_last&&(i=a.datepicker.formatDate("yy-mm-dd",h),g.push(i)),g;case"yearly":var w=c.getFullYear()-b.start.getFullYear();if(w%b.frequency!==0)return g;var x=new Date(c.getFullYear(),b.start.getMonth(),b.start.getDate());return c.getMonth()==b.start.getMonth()&&x.getMonth()==b.start.getMonth()&&(h=new Date(b.start),h.setYear(c.getFullYear()),h<=b.schedule_last&&(i=a.datepicker.formatDate("yy-mm-dd",h),g.push(i))),g;default:return g}for(var y in k)for(h=new Date(k[y]);d>=h&&h<=b.schedule_last;)i=a.datepicker.formatDate("yy-mm-dd",h),g.push(i),h.setDate(h.getDate()+j);return g}Array.prototype.indexOf||(Array.prototype.indexOf=function(a){var b=this.length,c=Number(arguments[1])||0;for(c=0>c?Math.ceil(c):Math.floor(c),0>c&&(c+=b);b>c;c++)if(c in this&&this[c]===a)return c;return-1}),Date.prototype.eoGetOrdinal=function(){var a=this.getDate();switch(a){case 1:case 21:case 31:return"st";case 2:case 22:return"nd";case 3:case 23:return"rd";default:return"th"}},window.eventOrganiserSchedulePicker={init:function(b){var c=this;this.options=b,this.schedule=b.schedule,this.set_up_datepickers(),this.set_up_timepickers(),a(".event-date :input, .eo-all-day-toggle").change(function(b){c.update_schedule(),c.update_form(),a(this).hasClass("eo-all-day-toggle")||c.update_occurrencepicker_rules()}),this.update_schedule(),this.update_form();var d=new Date;eo_viewing_month=[d.getFullYear(),d.getMonth()+1],this.schedule.generate_dates_by_rule(d.getFullYear(),d.getMonth()+1,{})},set_up_datepickers:function(){var b=this,c=this.options.views,d=this.options.locale;a(c.start_date).data("eo-datepicker","start"),a(c.end_date).data("eo-datepicker","end");if(a(c.is_all_day).addClass("eo-all-day-toggle"),a(c.schedule_last_date))var e=a(c.schedule_last_date).datepicker({nextText:">",prevText:"<",dateFormat:this.options.format,changeMonth:!0,changeYear:!0,monthNamesShort:d.monthAbbrev,dayNamesMin:d.dayAbbrev,isRTL:d.isrtl,firstDay:parseInt(this.options.startday,10),beforeShow:function(b,c){c.hasOwnProperty("dpDiv")?c.dpDiv.addClass("eo-datepicker"):a("#ui-datepicker-div").addClass("eo-datepicker")}}).data("eo-datepicker","schedule_last");var f=a(c.start_date+", "+c.end_date).datepicker({dateFormat:this.options.format,nextText:">",prevText:"<",changeMonth:!0,changeYear:!0,monthNamesShort:d.monthAbbrev,dayNamesMin:d.dayAbbrev,firstDay:parseInt(this.options.startday,10),onSelect:function(d){var g="start"==a(this).data("eo-datepicker")?"minDate":"maxDate",h=a(this).data("datepicker"),i=a.datepicker.parseDate(h.settings.dateFormat||a.datepicker._defaults.dateFormat,d,h.settings);f.not(this).datepicker("option",g,i),"from_date"==this.id&&e.datepicker("option","minDate",i);var j=a(c.start_date).datepicker("getDate"),k=a(c.end_date).datepicker("getDate");if(j.getTime()!=k.getTime()){var l={hour:null,minute:null};a(c.start_time+", "+c.end_time).eotimepicker("option",{maxTime:l,minTime:l})}b.update_schedule(),b.update_occurrencepicker_rules(),b.update_form()},beforeShow:function(b,c){c.hasOwnProperty("dpDiv")?c.dpDiv.addClass("eo-datepicker"):a("#ui-datepicker-div").addClass("eo-datepicker")}}),g=a(c.occurrence_picker);g.length>0&&(g.datepicker({dateFormat:"yy-mm-dd",nextText:">",prevText:"<",changeMonth:!0,changeYear:!0,monthNamesShort:d.monthAbbrev,dayNamesMin:d.dayAbbrev,firstDay:parseInt(this.options.startday,10),onSelect:function(b){eventOrganiserSchedule.add_or_remove_date(b),a(eventOrganiserSchedulePicker.options.views.include).val(eventOrganiserSchedule.include.join(",\r\n")),a(eventOrganiserSchedulePicker.options.views.exclude).val(eventOrganiserSchedule.exclude.join(",\r\n"))},beforeShowDay:function(b){var c=a.datepicker.formatDate("yy-mm-dd",b),d=eventOrganiserSchedule.is_date_eventful(c);return d[0]?[!0,"eo-op-date-selected",""]:[!0,"eo-op-date-not-selected",""]},beforeShow:function(b,c){c.hasOwnProperty("dpDiv")?c.dpDiv.addClass("eo-datepicker"):a("#ui-datepicker-div").addClass("eo-datepicker")},onChangeMonthYear:eventOrganiserSchedule.generate_dates_by_rule}).hide().find(".ui-datepicker-inline").click(function(a){a||(a=window.event),a.cancelBubble=!0,a.stopPropagation&&a.stopPropagation()}),a("html").click(function(){g.hide(),a(c.occurrence_picker_toggle).val(d.showDates)})),a(c.occurrence_picker_toggle).click(function(b){b.preventDefault(),b.stopPropagation(),g.toggle(),g.is(":visible")?(a(this).val(d.hideDates),a(c.occurrence_picker).datepicker("refresh")):a(this).val(d.showDates)})},update_occurrencepicker_rules:function(){eo_exclude_dates=[],eo_include_dates=[],this.schedule.generate_dates_by_rule(eo_viewing_month[0],eo_viewing_month[1],{}),a(this.options.views.occurrence_picker).datepicker("refresh")},set_up_timepickers:function(){var b=this.options,c=this.options.views;a(c.start_time).data("eo-event-data","start-time"),a(c.end_time).data("eo-event-data","end-time"),a(c.start_time+", "+c.end_time).eotimepicker({showPeriodLabels:!b.is24hour,showPeriod:!this.options.is24hour,showLeadingZero:b.is24hour,periodSeparator:"",amPmText:b.locale.meridian,hourText:b.locale.hour,minuteText:b.locale.minute,isRTL:b.locale.isrtl,onSelect:function(b,d){var e=a(c.start_date).datepicker("getDate"),f=a(c.end_date).datepicker("getDate");if(e.getTime()==f.getTime()){var g={hour:d.hours,minute:d.minutes};"start-time"==a(d.input).data("eo-event-data")?a(c.end_time).eotimepicker("option",{minTime:g}):a(c.start_time).eotimepicker("option",{maxTime:g})}}}).addClass("eo-time-picker")},update_schedule:function(){var b=new Array("SU","MO","TU","WE","TH","FR","SA"),c=this.options.views,d={schedule:a(c.schedule).val(),frequency:parseInt(a(c.frequency).val(),10),schedule_last:a(c.schedule_last_date).datepicker("getDate"),start:a(c.start_date).datepicker("getDate"),end:a(c.end_date).datepicker("getDate"),is_all_day:a(c.is_all_day).attr("checked"),include:a(c.include).length>0?a(c.include).val().split(","):[],exclude:a(c.exclude).length>0?a(c.exclude).val().split(","):[]};if("weekly"==d.schedule){if(d.schedule_meta=[],0===a(c.week_repeat+" :checkbox:checked").length){var e=d.start.getDay();a(c.week_repeat+" :checkbox[value='"+b[e]+"']").attr("checked",!0)}a(c.week_repeat+" :checkbox:checked").each(function(){d.schedule_meta.push(a(this).val())})}else if("monthly"==d.schedule)if("BYMONTHDAY="==a(c.month_repeat+" :radio:checked").val())d.schedule_meta="BYMONTHDAY="+d.start.getDate();else{var f=d.start.getDay()%7,g=parseInt(Math.floor((d.start.getDate()-1)/7),10);d.schedule_meta="BYDAY="+(g+1)+b[f]}this.schedule=eventOrganiserSchedule.init(d),eo_exclude_dates=d.exclude,eo_include_dates=d.include},update_form:function(){var b=this.options.views,c=this.options.locale,d=this.schedule,e=700;switch(a(".event-date :input").attr("disabled",!this.options.editable).toggleClass("ui-state-disabled",!this.options.editable),a("label[for=eo-all-day]").toggleClass("ui-state-disabled",!this.options.editable),this.options.editable&&a(b.start_time+", "+b.end_time).attr("disabled",d.is_all_day).toggleClass("ui-state-disabled",d.is_all_day),"once"==d.schedule||"custom"==d.schedule?(a(b.recurrence_section+" :input").attr("disabled",!0),a(b.recurrence_section).hide()):(a(b.recurrence_section+" :input").attr("disabled",!1),a(b.recurrence_section).fadeIn(e)),d.schedule){case"once":case"custom":a(d.frequency).val("1"),a(b.month_repeat+", "+b.week_repeat).show();break;case"weekly":d.frequency>1?a(b.schedule_span).text(c.weeks):a(b.schedule_span).text(c.week),a(b.week_repeat).fadeIn(e),a(b.week_repeat+" :input").attr("disabled",!1),a(b.month_repeat).hide(),a(b.month_repeat+" :input").attr("disabled",!0);break;case"monthly":d.frequency>1?a(b.schedule_span).text(c.months):a(b.schedule_span).text(c.month),a(b.month_repeat).fadeIn(e),a(b.month_repeat+" :input").attr("disabled",!1),a(b.week_repeat).hide(),a(b.week_repeat+" :input").attr("disabled",!0);break;case"daily":d.frequency>1?a(b.schedule_span).text(c.days):a(b.schedule_span).text(c.day),a(b.week_repeat+", "+b.month_repeat).hide(),a(b.week_repeat+" :input, "+b.month_repeat+" :input").attr("disabled",!0);break;case"yearly":d.frequency>1?a(b.schedule_span).text(c.years):a(b.schedule_span).text(c.year),a(b.week_repeat+", "+b.month_repeat).hide(),a(b.week_repeat+" :input, "+b.month_repeat+" :input").attr("disabled",!0)}null===a("#venue_select").val()&&a(".venue_row").hide(),a(b.summary).html(d.generate_summary(c))}},eventOrganiserSchedule={self:this,init:function(b){var c={schedule:"once",frequency:1,schedule_last:new Date,start:new Date,end:new Date,is_all_day:!1,dates_by_rule:[]};b=a.extend({},c,b);for(var d in b)this[d]=b[d];return this},generate_dates_by_rule:function(a,c,d){var e=new Date(a,c-1,1),f=new Date(a,c,1),g=new Date(f-1);eventOrganiserSchedule.schedule_last<e||eventOrganiserSchedule.start>g||(eventOrganiserSchedule.dates_by_rule=b(eventOrganiserSchedule,e,g))},generate_summary:function(b){var c=b.weekDay,d=b.summary+" ",e={monthNamesShort:b.monthAbbrev,dayNamesMin:b.dayAbbrev,monthNames:b.monthNames},f=this.schedule,g=new Array("SU","MO","TU","WE","TH","FR","SA");switch(f){case"once":return"This event will be a one-time event";case"custom":case"daily":d+=this.frequency>1?sprintf(b.dayPlural,this.frequency):b.daySingle;break;case"weekly":d+=this.frequency>1?sprintf(b.weekPlural,this.frequency):b.weekSingle;var h=a.map(this.schedule_meta,function(a,b){return c[g.indexOf(a)]});d+=" "+h.join(", ");break;case"monthly":if(d+=this.frequency>1?sprintf(b.monthPlural,this.frequency):b.monthSingle,this.schedule_meta.match(/BYMONTHDAY=(\d+)/))d=d+" "+this.start.getDate()+this.start.eoGetOrdinal();else{var i=this.schedule_meta.match(/BYDAY=(\d+)(MO|TU|WE|TH|FR|SA|SU)/),j=parseInt(i[1],10)-1;d=d+" "+b.occurrence[j]+" "+c[g.indexOf(i[2])]}break;case"yearly":d+=this.frequency>1?sprintf(b.yearPlural,this.frequency):b.yearSingle;var k;k=b.isUsingOrdinal?a.datepicker.formatDate("MM d",this.start,e)+this.start.eoGetOrdinal():a.datepicker.formatDate("MM d",this.start,e),d=d+" "+k}if(null!==this.schedule_last){var l;l=b.isUsingOrdinal?a.datepicker.formatDate("MM d'"+this.schedule_last.eoGetOrdinal()+"' yy",this.schedule_last,e):a.datepicker.formatDate("MM d yy",this.schedule_last,e),d=d+" "+b.until+" "+l}return d},is_date_eventful:function(b){var c=a.inArray(b,eventOrganiserSchedule.dates_by_rule),d=a.inArray(b,eventOrganiserSchedule.exclude),e=a.inArray(b,eventOrganiserSchedule.include);return c>-1?d>-1&&-1==e?[!1,d]:d>-1&&e>-1?[!0,e]:[!0,-1]:e>-1?[!0,e]:[!1,-1]},add_or_remove_date:function(b,c){var d,e=eventOrganiserSchedule.is_date_eventful(b);e[0]?(d=e[1],d>-1?eventOrganiserSchedule.include.splice(d,1):a.inArray(b,eventOrganiserSchedule.exclude)<0&&eventOrganiserSchedule.exclude.push(b)):(d=e[1],d>-1?eventOrganiserSchedule.exclude.splice(d,1):a.inArray(b,eventOrganiserSchedule.include)<0&&eventOrganiserSchedule.include.push(b)),eo_exclude_dates=eventOrganiserSchedule.exclude,eo_include_dates=eventOrganiserSchedule.include}}}(jQuery),function(a){function b(a){return Object.prototype.toString.call(a).slice(8,-1).toLowerCase()}function c(a,b){for(var c=[];b>0;c[--b]=a);return c.join("")}var d=function(){return d.cache.hasOwnProperty(arguments[0])||(d.cache[arguments[0]]=d.parse(arguments[0])),d.format.call(null,d.cache[arguments[0]],arguments)};d.format=function(a,e){var f,g,h,i,j,k,l,m=1,n=a.length,o="",p=[];for(g=0;n>g;g++)if(o=b(a[g]),"string"===o)p.push(a[g]);else if("array"===o){if(i=a[g],i[2])for(f=e[m],h=0;h<i[2].length;h++){if(!f.hasOwnProperty(i[2][h]))throw d('[sprintf] property "%s" does not exist',i[2][h]);f=f[i[2][h]]}else f=i[1]?e[i[1]]:e[m++];if(/[^s]/.test(i[8])&&"number"!=b(f))throw d("[sprintf] expecting number but found %s",b(f));switch(i[8]){case"b":f=f.toString(2);break;case"c":f=String.fromCharCode(f);break;case"d":f=parseInt(f,10);break;case"e":f=i[7]?f.toExponential(i[7]):f.toExponential();break;case"f":f=i[7]?parseFloat(f).toFixed(i[7]):parseFloat(f);break;case"o":f=f.toString(8);break;case"s":f=(f=String(f))&&i[7]?f.substring(0,i[7]):f;break;case"u":f>>>=0;break;case"x":f=f.toString(16);break;case"X":f=f.toString(16).toUpperCase()}f=/[def]/.test(i[8])&&i[3]&&f>=0?"+"+f:f,k=i[4]?"0"==i[4]?"0":i[4].charAt(1):" ",l=i[6]-String(f).length,j=i[6]?c(k,l):"",p.push(i[5]?f+j:j+f)}return p.join("")},d.cache={},d.parse=function(a){for(var b=a,c=[],d=[],e=0;b;){if(null!==(c=/^[^\x25]+/.exec(b)))d.push(c[0]);else if(null!==(c=/^\x25{2}/.exec(b)))d.push("%");else{if(null===(c=/^\x25(?:([1-9]\d*)\$|\(([^\)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-fosuxX])/.exec(b)))throw"[sprintf] huh?";if(c[2]){e|=1;var f=[],g=c[2],h=[];if(null===(h=/^([a-z_][a-z_\d]*)/i.exec(g)))throw"[sprintf] huh?";for(f.push(h[1]);""!==(g=g.substring(h[0].length));)if(null!==(h=/^\.([a-z_][a-z_\d]*)/i.exec(g)))f.push(h[1]);else{if(null===(h=/^\[(\d+)\]/.exec(g)))throw"[sprintf] huh?";f.push(h[1])}c[2]=f}else e|=2;if(3===e)throw"[sprintf] mixing positional and named placeholders is not (yet) supported";d.push(c)}b=b.substring(c[0].length)}return d};var e=function(a,b,c){return c=b.slice(0),c.splice(0,0,a),d.apply(null,c)};a.sprintf=d,a.vsprintf=e}("undefined"!=typeof exports?exports:window);
js/frontend.min.js CHANGED
@@ -1,2 +1,2 @@
1
- /*! event-organiser 3.9.1-0-g845144e 2020-05-28 21:35 */
2
  function eveorg_getParameterByName(a,b){a=a.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");var c="[\\?&]"+a+"=([^&#]*)",d=new RegExp(c),e=d.exec(b);return null===e?"":decodeURIComponent(e[1].replace(/\+/g," "))}var eventorganiser=eventorganiser||{};!function(a){jQuery(document).ready(function(){function b(a,b,c){var d;for(d in a)if(a[b]==c)return d;return!1}function c(c){var d="undefined"!=typeof c.whitelist&&c.whitelist?c.whitelist.trim().split(/\s*,\s*/):!1,e="<select class='eo-fc-filter eo-fc-filter-"+c.type+"' data-filter-type='"+c.type+"'>";e+="<option value=''>"+c.select_none+"</option>";var f;for(var g in c.terms){if(f=c.terms[g],d){var h=!1;-1!==a.inArray(f.slug,d)&&(h=!0);for(var i=f;!h&&i.parent>0;)i=b(c.terms,"term_id",i.parent),-1!==a.inArray(i.slug,d)&&(h=!0);if(!h)continue}e+="<option value='"+f.slug+"'>"+f.name+"</option>"}e+="</select>";var j=a("<span class='fc-header-dropdown filter-"+c.type+"'></span>");return j.append(e),j}function d(b){var c="undefined"!=typeof b.whitelist&&b.whitelist.length>0?b.whitelist:!1,d="<select class='eo-fc-filter eo-fc-filter-organiser' data-filter-type='organiser'>";d+="<option value=''>"+b.select_none+"</option>";var e;for(var f in b.users)e=b.users[f],c&&-1==a.inArray(parseInt(f,10),c)||(d+="<option value='"+f+"'>"+e+"</option>");d+="</select>";var g=a("<span class='fc-header-dropdown filter-organiser'></span>");return g.append(d),g}function e(){return a("<span class='fc-header-goto'><input type='hidden' class='eo-mini-calendar'/></span>")}if(a(".eo-fullcalendar").on("change",".eo-fc-filter",function(){a(".eo-fullcalendar").fullCalendar("rerenderEvents")}),a(".eo-fullcalendar").length>0){var f,g,h=eventorganiser.calendars;g={agendaDay:"listDay",basicDay:"listDay",listDay:"listDay",agendaWeek:"listWeek",basicWeek:"listWeek",listWeek:"listWeek",month:"listMonth",listMonth:"listMonth"};for(var i=0;i<h.length;i++){var j="#eo_fullcalendar_"+(i+1);"undefined"==typeof h[i].category&&(h[i].category=""),"undefined"==typeof h[i].venue&&(h[i].venue="");var k={id:j,defaultDate:h[i].defaultdate?h[i].defaultdate:void 0,category:h[i].event_category,venue:h[i].event_venue,tag:h[i].event_tag,organiser:h[i].event_organiser,event_series:h[i].event_series,customButtons:{category:function(){return c({terms:eventorganiser.fullcal.categories,select_none:EOAjaxFront.locale.cat,whitelist:h[i].event_category,type:"category"})},venue:function(){return c({terms:eventorganiser.fullcal.venues,select_none:EOAjaxFront.locale.venue,whitelist:h[i].event_venue,type:"venue"})},tag:function(){return c({terms:eventorganiser.fullcal.tags,select_none:EOAjaxFront.locale.tag,whitelist:"",type:"tag"})},organiser:function(){return d({users:eventorganiser.fullcal.users,select_none:EOAjaxFront.locale.view_all_organisers,whitelist:h[i].event_organiser})},"goto":e},theme:h[i].theme,isRTL:h[i].isrtl,editable:!1,selectable:!1,weekMode:"variable",tooltip:h[i].tooltip,firstDay:parseInt(eventorganiser.fullcal.firstDay,10),weekends:h[i].weekends,hiddenDays:h[i].hiddendays,slotDuration:h[i].slotduration,allDaySlot:h[i].alldayslot,allDayText:h[i].alldaytext,axisFormat:h[i].axisformat,minTime:h[i].mintime,maxTime:h[i].maxtime,weekNumbers:h[i].weeknumbers,weekNumbersWithinDays:h[i].weeknumberswithindays,eventColor:"#1e8cbe",timeFormatphp:h[i].timeformatphp,timeFormat:h[i].timeformat,columnFormat:{month:h[i].columnformatmonth,week:h[i].columnformatweek,day:h[i].columnformatday},titleFormat:{month:h[i].titleformatmonth,week:h[i].titleformatweek,day:h[i].titleformatday},header:{left:h[i].headerleft,center:h[i].headercenter,right:h[i].headerright},eventRender:function(b,c,d){var e=a(d.calendar.options.id).find(".eo-fc-filter-category").val(),f=a(d.calendar.options.id).find(".eo-fc-filter-venue").val(),g=a(d.calendar.options.id).find(".eo-fc-filter-tag").val(),h=a(d.calendar.options.id).find(".eo-fc-filter-organiser").val(),i=!0;return"undefined"!=typeof e&&""!==e&&a.inArray(e,b.category)<0&&(i=!1),"undefined"!=typeof f&&""!==f&&f!==b.venue_slug&&(i=!1),"undefined"!=typeof g&&""!==g&&a.inArray(g,b.tags)<0&&(i=!1),"undefined"!=typeof h&&""!==h&&parseInt(h,10)!==b.organiser&&(i=!1),(i=wp.hooks.applyFilters("eventorganiser.fullcalendar_render_event",i,b,c,d))?void(d.calendar.options.tooltip&&a(c).qtip({content:{text:b.description,button:!1,title:b.title},position:{my:"top center",at:"bottom center",viewport:a(window),adjust:{method:"shift none"}},hide:{fixed:!0,delay:500,effect:function(b){a(this).fadeOut("50")}},border:{radius:4,width:3},style:{classes:"eo-event-toolip qtip-eo",tip:"topMiddle"}})):!1},buttonText:{today:EOAjaxFront.locale.today,month:EOAjaxFront.locale.month,week:EOAjaxFront.locale.week,day:EOAjaxFront.locale.day},monthNames:EOAjaxFront.locale.monthNames,monthNamesShort:EOAjaxFront.locale.monthAbbrev,dayNames:EOAjaxFront.locale.dayNames,dayNamesShort:EOAjaxFront.locale.dayAbbrev,height:h[i].aspectratio?!1:"auto",aspectRatio:h[i].aspectratio?h[i].aspectratio:!1,responsive:h[i].responsive,responsiveBreakpoint:h[i].responsivebreakpoint,defaultView:a(window).width()<h[i].responsivebreakpoint&&h[i].responsive?g[h[i].defaultview]:h[i].defaultview,previousView:h[i].defaultview,nextDayThreshold:h[i].nextdaythreshold,windowResize:function(b){b.calendar.options.responsive&&a(window).width()<b.calendar.options.responsiveBreakpoint?a(this).fullCalendar("changeView",g[b.calendar.options.previousView]):a(this).fullCalendar("changeView",b.calendar.options.previousView)},lazyFetching:"true",events:function(b,c,d,e){var f=this.options,g={start:b.format("YYYY-MM-DD"),end:c.format("YYYY-MM-DD"),timeformat:f.timeFormatphp,users_events:f.users_events};"undefined"!=typeof f.category&&""!==f.category&&(g.category=f.category),"undefined"!=typeof f.venue&&""!==f.venue&&(g.venue=f.venue),"undefined"!=typeof f.tag&&""!==f.tag&&(g.tag=f.tag),"undefined"!=typeof f.organiser&&0!==f.organiser&&(g.organiser=f.organiser),f.event_series&&(g.event_series=f.event_series),g=wp.hooks.applyFilters("eventorganiser.fullcalendar_request",g,b,c,d,f),a.ajax({url:eventorganiser.ajaxurl+"?action=eventorganiser-fullcal",dataType:"JSON",data:g,complete:function(a,b){},success:e})},loading:function(b){var c=a("#"+a(this).attr("id")+"_loading");b?(window.clearTimeout(f),f=window.setTimeout(function(){c.show()},1e3)):(window.clearTimeout(f),c.hide())}};k=wp.hooks.applyFilters("eventorganiser.fullcalendar_options",k,h[i]),a(j).fullCalendar(k)}}"undefined"!=typeof eventorganiser.fullcal&&a(".eo-mini-calendar").datepicker({dateFormat:"DD, d MM, yy",changeMonth:!0,changeYear:!0,firstDay:parseInt(eventorganiser.fullcal.firstDay,10),buttonText:EOAjaxFront.locale.gotodate,monthNamesShort:EOAjaxFront.locale.monthAbbrev,dayNamesMin:EOAjaxFront.locale.dayAbbrev,nextText:EOAjaxFront.locale.nextText,prevText:EOAjaxFront.locale.prevText,showOn:"button",beforeShow:function(b,c){c.hasOwnProperty("dpDiv")?c.dpDiv.addClass("eo-datepicker eo-fc-mini-calendar eo-fc-datepicker"):a("#ui-datepicker-div").addClass("eo-datepicker eo-fc-mini-calendar eo-fc-datepicker")},onSelect:function(b,c){var d=a(this).parents("div.eo-fullcalendar").attr("id");a("#"+d).fullCalendar("gotoDate",new Date(Date.parse(b)))}}),a("#eo-upcoming-dates, .eo-upcoming-dates").each(function(b,c){var d={el:a(this)};if(d.el.find("li:gt(4)").length>0){var e=5,f={more:EOAjaxFront.locale.ShowMore,less:EOAjaxFront.locale.ShowLess};d.less=a('<a class="eo-upcoming-dates-show-less" href="#"></a>').text(f.less),d.pipe=a('<span class="eo-upcoming-dates-pipe">|</span>'),d.more=a('<a class="eo-upcoming-dates-show-more" href="#"></a>').text(f.more),d.el.find("li:gt("+(e-1)+")").hide().end().after(d.less,d.pipe,d.more),d.pipe.hide(),d.less.hide().click(function(a){a.preventDefault();var b=Math.floor((d.el.find("li:visible").length-1)/e)*e-1;d.el.find("li:gt("+b+")").hide(),d.more.show(),d.pipe.show(),d.el.find("li:visible").length<=e&&(d.less.hide(),d.pipe.hide())}),d.more.click(function(b){b.preventDefault(),d.less.show(),d.pipe.show(),d.el.find("li:hidden:lt("+e+")").show();var c=d.pipe.offset();a("html, body").animate({scrollTop:Math.max(c.top+40-a(window).height(),a(window).scrollTop())}),0===d.el.find("li:hidden").length&&(d.more.hide(),d.pipe.hide())})}}),a(".eo-widget-cal-wrap").length>0&&a(".eo-widget-cal-wrap").on("click","tfoot a",function(b){if(b.preventDefault(),!a(this).data("eo-widget-cal-disabled")){var c=a(this).closest(".eo-widget-cal-wrap"),d=c.data("eo-widget-cal-id");c.find("tfoot a").data("eo-widget-cal-disabled",1);var e={showpastevents:1,"show-long":0,"link-to-single":0};"undefined"!=typeof eventorganiser.widget_calendars&&"undefined"!=typeof eventorganiser.widget_calendars[d]&&(e=eventorganiser.widget_calendars[d]),"undefined"!=typeof eo_widget_cal&&"undefined"!=typeof eo_widget_cal[d]&&(e=eo_widget_cal[d]),e.eo_month=eveorg_getParameterByName("eo_month",a(this).attr("href")),c.addClass("eo-widget-cal-loading"),a("#"+d+"_overlay").remove(),a("#"+d+"_content").prepend('<div class="eo-widget-cal-overlay" id="'+d+'_overlay"><div class="eo-widget-cal-spinner"/></div>'),a.getJSON(eventorganiser.add_query_arg("action","eo_widget_cal",EOAjaxFront.adminajax),e,function(b){a("#"+d+"_content").html(b),c.removeClass("eo-widget-cal-loading")})}})}),eventorganiser.add_query_arg=function(a,b,c){var d=new RegExp("([?&])"+a+"=.*?(&|$)","i"),e=-1!==c.indexOf("?")?"&":"?";return c.match(d)?c.replace(d,"$1"+a+"="+b+"$2"):c+e+a+"="+b},eventorganiser.template=function(b,c,d){var e=/\\|'|\r|\n|\t|\u2028|\u2029/g;d="undefined"!=typeof d?d:{},d=a.extend(!0,{evaluate:/<#([\s\S]+?)#>/g,interpolate:/\{\{\{([\s\S]+?)\}\}\}/g,escape:/\{\{([^\}]+?)\}\}(?!\})/g},d);var f,g={"'":"'","\\":"\\","\r":"r","\n":"n"," ":"t","\u2028":"u2028","\u2029":"u2029"},h=new RegExp([d.escape.source,d.interpolate.source,d.evaluate.source].join("|")+"|$","g"),i=0,j="__p+='";b.replace(h,function(a,c,d,f,h){return j+=b.slice(i,h).replace(e,function(a){return"\\"+g[a]}),c&&(j+="'+\n((__t=("+c+"))==null?'':_.escape(__t))+\n'"),d&&(j+="'+\n((__t=("+d+"))==null?'':__t)+\n'"),f&&(j+="';\n"+f+"\n__p+='"),i=h+a.length,a}),j+="';\n",d.variable||(j="with(obj||{}){\n"+j+"}\n"),j="var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\n"+j+"return __p;\n";try{f=new Function(d.variable||"obj","_",j)}catch(k){throw k.source=j,k}if(c)return f(c);var l=function(a){return f.call(this,a)};return l},eventorganiser.agenda_widget=function(b){this.param=b,moment.locale(EOAjaxFront.locale.locale,{months:EOAjaxFront.locale.monthNames,monthsShort:EOAjaxFront.locale.monthAbbrev,weekdays:EOAjaxFront.locale.dayNames,weekdaysShort:EOAjaxFront.locale.dayAbbrev,weekdaysMin:EOAjaxFront.locale.dayInitial}),this.start=moment().add(-1,"days"),this.end=moment().add(-1,"days"),this.$el=a("#"+this.param.id+"_container"),this.direction=1,this.eventTemplate=eventorganiser.template(a("#eo-tmpl-agenda-widget-item").html(),null,{variable:"event"}),this.groupTemplate=eventorganiser.template(a("#eo-tmpl-agenda-widget-group").html(),null,{variable:"group"})},eventorganiser.agenda_widget.prototype.group_change=function(a,b){return a===!1?!0:"day"!==this.param.mode?!1:a.format("YYYY-MM-DD")!==b.format("YYYY-MM-DD")},eventorganiser.agenda_widget.prototype.init=function(){this.$el.html(eventorganiser.template(a("#eo-tmpl-agenda-widget").html(),{},{variable:"data"})),this.$datesEl=this.$el.find(".dates"),this.load_events(),this.param.add_to_google&&this.$el.on("click",".event",function(){a(this).find(".meta").toggle("400")});var b=this;this.$el.on("click",".eo-agenda-widget-nav-prev,.eo-agenda-widget-nav-next",function(){a(this).hasClass("eo-agenda-widget-nav-prev")?b.direction=-1:b.direction=1,b.load_events()})},eventorganiser.agenda_widget.prototype.load_events=function(){var b=this;a.ajax({url:EOAjaxFront.adminajax,dataType:"JSON",data:{action:"eo_widget_agenda",instance_number:this.param.number,direction:this.direction,start:this.start.format("YYYY-MM-DD"),end:this.end.format("YYYY-MM-DD")},success:function(a){var c=a.length;if(0!==c){for(var d=0;c>d;d++)a[d].start=moment(a[d].start),a[d].end=moment(a[d].end);b.start=a[0].start,b.end=a[c-1].start,b.insert_events(a)}}})},eventorganiser.agenda_widget.prototype.insert_events=function(b){this.$datesEl.html("");for(var c=b.length,d=!1,e=!1,f=!1,g=0;c>g;g++){if(this.group_change(d,b[g].start)){this.$datesEl.append(e);var h={start:b[g].start};e=a(this.groupTemplate(h)),f=e.find(".a-date")}f.append(this.eventTemplate(b[g])),d=b[g].start}this.$datesEl.append(e)},jQuery(document).ready(function(a){if(a(".eo-agenda-widget").length>0)for(var b in eo_widget_agenda)agendaWidget=new eventorganiser.agenda_widget(eo_widget_agenda[b]),agendaWidget.init()})}(jQuery),jQuery(document).ready(function(){if("map"in eventorganiser)for(var a=eventorganiser.map,b=0;b<a.length;b++)if(null!==document.getElementById("eo_venue_map-"+(b+1)))for(var c=a[b],d=new eventorganiserMapsAdapter.provider.map("eo_venue_map-"+(b+1),c),e=0;e<c.locations.length;e++)c.locations[e].position={lat:c.locations[e].lat,lng:c.locations[e].lng},d.addMarker(c.locations[e])});
1
+ /*! event-organiser 3.10.0-0-g5f45c47 2020-07-22 07:59 */
2
  function eveorg_getParameterByName(a,b){a=a.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");var c="[\\?&]"+a+"=([^&#]*)",d=new RegExp(c),e=d.exec(b);return null===e?"":decodeURIComponent(e[1].replace(/\+/g," "))}var eventorganiser=eventorganiser||{};!function(a){jQuery(document).ready(function(){function b(a,b,c){var d;for(d in a)if(a[b]==c)return d;return!1}function c(c){var d="undefined"!=typeof c.whitelist&&c.whitelist?c.whitelist.trim().split(/\s*,\s*/):!1,e="<select class='eo-fc-filter eo-fc-filter-"+c.type+"' data-filter-type='"+c.type+"'>";e+="<option value=''>"+c.select_none+"</option>";var f;for(var g in c.terms){if(f=c.terms[g],d){var h=!1;-1!==a.inArray(f.slug,d)&&(h=!0);for(var i=f;!h&&i.parent>0;)i=b(c.terms,"term_id",i.parent),-1!==a.inArray(i.slug,d)&&(h=!0);if(!h)continue}e+="<option value='"+f.slug+"'>"+f.name+"</option>"}e+="</select>";var j=a("<span class='fc-header-dropdown filter-"+c.type+"'></span>");return j.append(e),j}function d(b){var c="undefined"!=typeof b.whitelist&&b.whitelist.length>0?b.whitelist:!1,d="<select class='eo-fc-filter eo-fc-filter-organiser' data-filter-type='organiser'>";d+="<option value=''>"+b.select_none+"</option>";var e;for(var f in b.users)e=b.users[f],c&&-1==a.inArray(parseInt(f,10),c)||(d+="<option value='"+f+"'>"+e+"</option>");d+="</select>";var g=a("<span class='fc-header-dropdown filter-organiser'></span>");return g.append(d),g}function e(){return a("<span class='fc-header-goto'><input type='hidden' class='eo-mini-calendar'/></span>")}if(a(".eo-fullcalendar").on("change",".eo-fc-filter",function(){a(".eo-fullcalendar").fullCalendar("rerenderEvents")}),a(".eo-fullcalendar").length>0){var f,g,h=eventorganiser.calendars;g={agendaDay:"listDay",basicDay:"listDay",listDay:"listDay",agendaWeek:"listWeek",basicWeek:"listWeek",listWeek:"listWeek",month:"listMonth",listMonth:"listMonth"};for(var i=0;i<h.length;i++){var j="#eo_fullcalendar_"+(i+1);"undefined"==typeof h[i].category&&(h[i].category=""),"undefined"==typeof h[i].venue&&(h[i].venue="");var k={id:j,defaultDate:h[i].defaultdate?h[i].defaultdate:void 0,category:h[i].event_category,venue:h[i].event_venue,tag:h[i].event_tag,organiser:h[i].event_organiser,event_series:h[i].event_series,customButtons:{category:function(){return c({terms:eventorganiser.fullcal.categories,select_none:EOAjaxFront.locale.cat,whitelist:h[i].event_category,type:"category"})},venue:function(){return c({terms:eventorganiser.fullcal.venues,select_none:EOAjaxFront.locale.venue,whitelist:h[i].event_venue,type:"venue"})},tag:function(){return c({terms:eventorganiser.fullcal.tags,select_none:EOAjaxFront.locale.tag,whitelist:"",type:"tag"})},organiser:function(){return d({users:eventorganiser.fullcal.users,select_none:EOAjaxFront.locale.view_all_organisers,whitelist:h[i].event_organiser})},"goto":e},theme:h[i].theme,isRTL:h[i].isrtl,editable:!1,selectable:!1,weekMode:"variable",tooltip:h[i].tooltip,firstDay:parseInt(eventorganiser.fullcal.firstDay,10),weekends:h[i].weekends,hiddenDays:h[i].hiddendays,slotDuration:h[i].slotduration,allDaySlot:h[i].alldayslot,allDayText:h[i].alldaytext,axisFormat:h[i].axisformat,minTime:h[i].mintime,maxTime:h[i].maxtime,weekNumbers:h[i].weeknumbers,weekNumbersWithinDays:h[i].weeknumberswithindays,eventColor:"#1e8cbe",timeFormatphp:h[i].timeformatphp,timeFormat:h[i].timeformat,columnFormat:{month:h[i].columnformatmonth,week:h[i].columnformatweek,day:h[i].columnformatday},titleFormat:{month:h[i].titleformatmonth,week:h[i].titleformatweek,day:h[i].titleformatday},header:{left:h[i].headerleft,center:h[i].headercenter,right:h[i].headerright},eventRender:function(b,c,d){var e=a(d.calendar.options.id).find(".eo-fc-filter-category").val(),f=a(d.calendar.options.id).find(".eo-fc-filter-venue").val(),g=a(d.calendar.options.id).find(".eo-fc-filter-tag").val(),h=a(d.calendar.options.id).find(".eo-fc-filter-organiser").val(),i=!0;return"undefined"!=typeof e&&""!==e&&a.inArray(e,b.category)<0&&(i=!1),"undefined"!=typeof f&&""!==f&&f!==b.venue_slug&&(i=!1),"undefined"!=typeof g&&""!==g&&a.inArray(g,b.tags)<0&&(i=!1),"undefined"!=typeof h&&""!==h&&parseInt(h,10)!==b.organiser&&(i=!1),(i=wp.hooks.applyFilters("eventorganiser.fullcalendar_render_event",i,b,c,d))?void(d.calendar.options.tooltip&&a(c).qtip({content:{text:b.description,button:!1,title:b.title},position:{my:"top center",at:"bottom center",viewport:a(window),adjust:{method:"shift none"}},hide:{fixed:!0,delay:500,effect:function(b){a(this).fadeOut("50")}},border:{radius:4,width:3},style:{classes:"eo-event-toolip qtip-eo",tip:"topMiddle"}})):!1},buttonText:{today:EOAjaxFront.locale.today,month:EOAjaxFront.locale.month,week:EOAjaxFront.locale.week,day:EOAjaxFront.locale.day},monthNames:EOAjaxFront.locale.monthNames,monthNamesShort:EOAjaxFront.locale.monthAbbrev,dayNames:EOAjaxFront.locale.dayNames,dayNamesShort:EOAjaxFront.locale.dayAbbrev,height:h[i].aspectratio?!1:"auto",aspectRatio:h[i].aspectratio?h[i].aspectratio:!1,responsive:h[i].responsive,responsiveBreakpoint:h[i].responsivebreakpoint,defaultView:a(window).width()<h[i].responsivebreakpoint&&h[i].responsive?g[h[i].defaultview]:h[i].defaultview,previousView:h[i].defaultview,nextDayThreshold:h[i].nextdaythreshold,windowResize:function(b){b.calendar.options.responsive&&a(window).width()<b.calendar.options.responsiveBreakpoint?a(this).fullCalendar("changeView",g[b.calendar.options.previousView]):a(this).fullCalendar("changeView",b.calendar.options.previousView)},lazyFetching:"true",events:function(b,c,d,e){var f=this.options,g={start:b.format("YYYY-MM-DD"),end:c.format("YYYY-MM-DD"),timeformat:f.timeFormatphp,users_events:f.users_events};"undefined"!=typeof f.category&&""!==f.category&&(g.category=f.category),"undefined"!=typeof f.venue&&""!==f.venue&&(g.venue=f.venue),"undefined"!=typeof f.tag&&""!==f.tag&&(g.tag=f.tag),"undefined"!=typeof f.organiser&&0!==f.organiser&&(g.organiser=f.organiser),f.event_series&&(g.event_series=f.event_series),g=wp.hooks.applyFilters("eventorganiser.fullcalendar_request",g,b,c,d,f),a.ajax({url:eventorganiser.ajaxurl+"?action=eventorganiser-fullcal",dataType:"JSON",data:g,complete:function(a,b){},success:e})},loading:function(b){var c=a("#"+a(this).attr("id")+"_loading");b?(window.clearTimeout(f),f=window.setTimeout(function(){c.show()},1e3)):(window.clearTimeout(f),c.hide())}};k=wp.hooks.applyFilters("eventorganiser.fullcalendar_options",k,h[i]),a(j).fullCalendar(k)}}"undefined"!=typeof eventorganiser.fullcal&&a(".eo-mini-calendar").datepicker({dateFormat:"DD, d MM, yy",changeMonth:!0,changeYear:!0,firstDay:parseInt(eventorganiser.fullcal.firstDay,10),buttonText:EOAjaxFront.locale.gotodate,monthNamesShort:EOAjaxFront.locale.monthAbbrev,dayNamesMin:EOAjaxFront.locale.dayAbbrev,nextText:EOAjaxFront.locale.nextText,prevText:EOAjaxFront.locale.prevText,showOn:"button",beforeShow:function(b,c){c.hasOwnProperty("dpDiv")?c.dpDiv.addClass("eo-datepicker eo-fc-mini-calendar eo-fc-datepicker"):a("#ui-datepicker-div").addClass("eo-datepicker eo-fc-mini-calendar eo-fc-datepicker")},onSelect:function(b,c){var d=a(this).parents("div.eo-fullcalendar").attr("id");a("#"+d).fullCalendar("gotoDate",new Date(Date.parse(b)))}}),a("#eo-upcoming-dates, .eo-upcoming-dates").each(function(b,c){var d={el:a(this)};if(d.el.find("li:gt(4)").length>0){var e=5,f={more:EOAjaxFront.locale.ShowMore,less:EOAjaxFront.locale.ShowLess};d.less=a('<a class="eo-upcoming-dates-show-less" href="#"></a>').text(f.less),d.pipe=a('<span class="eo-upcoming-dates-pipe">|</span>'),d.more=a('<a class="eo-upcoming-dates-show-more" href="#"></a>').text(f.more),d.el.find("li:gt("+(e-1)+")").hide().end().after(d.less,d.pipe,d.more),d.pipe.hide(),d.less.hide().click(function(a){a.preventDefault();var b=Math.floor((d.el.find("li:visible").length-1)/e)*e-1;d.el.find("li:gt("+b+")").hide(),d.more.show(),d.pipe.show(),d.el.find("li:visible").length<=e&&(d.less.hide(),d.pipe.hide())}),d.more.click(function(b){b.preventDefault(),d.less.show(),d.pipe.show(),d.el.find("li:hidden:lt("+e+")").show();var c=d.pipe.offset();a("html, body").animate({scrollTop:Math.max(c.top+40-a(window).height(),a(window).scrollTop())}),0===d.el.find("li:hidden").length&&(d.more.hide(),d.pipe.hide())})}}),a(".eo-widget-cal-wrap").length>0&&a(".eo-widget-cal-wrap").on("click","tfoot a",function(b){if(b.preventDefault(),!a(this).data("eo-widget-cal-disabled")){var c=a(this).closest(".eo-widget-cal-wrap"),d=c.data("eo-widget-cal-id");c.find("tfoot a").data("eo-widget-cal-disabled",1);var e={showpastevents:1,"show-long":0,"link-to-single":0};"undefined"!=typeof eventorganiser.widget_calendars&&"undefined"!=typeof eventorganiser.widget_calendars[d]&&(e=eventorganiser.widget_calendars[d]),"undefined"!=typeof eo_widget_cal&&"undefined"!=typeof eo_widget_cal[d]&&(e=eo_widget_cal[d]),e.eo_month=eveorg_getParameterByName("eo_month",a(this).attr("href")),c.addClass("eo-widget-cal-loading"),a("#"+d+"_overlay").remove(),a("#"+d+"_content").prepend('<div class="eo-widget-cal-overlay" id="'+d+'_overlay"><div class="eo-widget-cal-spinner"/></div>'),a.getJSON(eventorganiser.add_query_arg("action","eo_widget_cal",EOAjaxFront.adminajax),e,function(b){a("#"+d+"_content").html(b),c.removeClass("eo-widget-cal-loading")})}})}),eventorganiser.add_query_arg=function(a,b,c){var d=new RegExp("([?&])"+a+"=.*?(&|$)","i"),e=-1!==c.indexOf("?")?"&":"?";return c.match(d)?c.replace(d,"$1"+a+"="+b+"$2"):c+e+a+"="+b},eventorganiser.template=function(b,c,d){var e=/\\|'|\r|\n|\t|\u2028|\u2029/g;d="undefined"!=typeof d?d:{},d=a.extend(!0,{evaluate:/<#([\s\S]+?)#>/g,interpolate:/\{\{\{([\s\S]+?)\}\}\}/g,escape:/\{\{([^\}]+?)\}\}(?!\})/g},d);var f,g={"'":"'","\\":"\\","\r":"r","\n":"n"," ":"t","\u2028":"u2028","\u2029":"u2029"},h=new RegExp([d.escape.source,d.interpolate.source,d.evaluate.source].join("|")+"|$","g"),i=0,j="__p+='";b.replace(h,function(a,c,d,f,h){return j+=b.slice(i,h).replace(e,function(a){return"\\"+g[a]}),c&&(j+="'+\n((__t=("+c+"))==null?'':_.escape(__t))+\n'"),d&&(j+="'+\n((__t=("+d+"))==null?'':__t)+\n'"),f&&(j+="';\n"+f+"\n__p+='"),i=h+a.length,a}),j+="';\n",d.variable||(j="with(obj||{}){\n"+j+"}\n"),j="var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\n"+j+"return __p;\n";try{f=new Function(d.variable||"obj","_",j)}catch(k){throw k.source=j,k}if(c)return f(c);var l=function(a){return f.call(this,a)};return l},eventorganiser.agenda_widget=function(b){this.param=b,moment.locale(EOAjaxFront.locale.locale,{months:EOAjaxFront.locale.monthNames,monthsShort:EOAjaxFront.locale.monthAbbrev,weekdays:EOAjaxFront.locale.dayNames,weekdaysShort:EOAjaxFront.locale.dayAbbrev,weekdaysMin:EOAjaxFront.locale.dayInitial}),this.start=moment().add(-1,"days"),this.end=moment().add(-1,"days"),this.$el=a("#"+this.param.id+"_container"),this.direction=1,this.eventTemplate=eventorganiser.template(a("#eo-tmpl-agenda-widget-item").html(),null,{variable:"event"}),this.groupTemplate=eventorganiser.template(a("#eo-tmpl-agenda-widget-group").html(),null,{variable:"group"})},eventorganiser.agenda_widget.prototype.group_change=function(a,b){return a===!1?!0:"day"!==this.param.mode?!1:a.format("YYYY-MM-DD")!==b.format("YYYY-MM-DD")},eventorganiser.agenda_widget.prototype.init=function(){this.$el.html(eventorganiser.template(a("#eo-tmpl-agenda-widget").html(),{},{variable:"data"})),this.$datesEl=this.$el.find(".dates"),this.load_events(),this.param.add_to_google&&this.$el.on("click",".event",function(){a(this).find(".meta").toggle("400")});var b=this;this.$el.on("click",".eo-agenda-widget-nav-prev,.eo-agenda-widget-nav-next",function(){a(this).hasClass("eo-agenda-widget-nav-prev")?b.direction=-1:b.direction=1,b.load_events()})},eventorganiser.agenda_widget.prototype.load_events=function(){var b=this;a.ajax({url:EOAjaxFront.adminajax,dataType:"JSON",data:{action:"eo_widget_agenda",instance_number:this.param.number,direction:this.direction,start:this.start.format("YYYY-MM-DD"),end:this.end.format("YYYY-MM-DD")},success:function(a){var c=a.length;if(0!==c){for(var d=0;c>d;d++)a[d].start=moment(a[d].start),a[d].end=moment(a[d].end);b.start=a[0].start,b.end=a[c-1].start,b.insert_events(a)}}})},eventorganiser.agenda_widget.prototype.insert_events=function(b){this.$datesEl.html("");for(var c=b.length,d=!1,e=!1,f=!1,g=0;c>g;g++){if(this.group_change(d,b[g].start)){this.$datesEl.append(e);var h={start:b[g].start};e=a(this.groupTemplate(h)),f=e.find(".a-date")}f.append(this.eventTemplate(b[g])),d=b[g].start}this.$datesEl.append(e)},jQuery(document).ready(function(a){if(a(".eo-agenda-widget").length>0)for(var b in eo_widget_agenda)agendaWidget=new eventorganiser.agenda_widget(eo_widget_agenda[b]),agendaWidget.init()})}(jQuery),jQuery(document).ready(function(){if("map"in eventorganiser)for(var a=eventorganiser.map,b=0;b<a.length;b++)if(null!==document.getElementById("eo_venue_map-"+(b+1)))for(var c=a[b],d=new eventorganiserMapsAdapter.provider.map("eo_venue_map-"+(b+1),c),e=0;e<c.locations.length;e++)c.locations[e].position={lat:c.locations[e].lat,lng:c.locations[e].lng},d.addMarker(c.locations[e])});
js/fullcalendar.min.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! event-organiser 3.9.1-0-g845144e 2020-05-28 21:35 */
2
  !function(a){"function"==typeof define&&define.amd?define(["jquery","moment"],a):a(jQuery,moment)}(function(a,b){function c(a){d(za,a)}function d(b){function c(c,f){a.isPlainObject(f)&&a.isPlainObject(b[c])&&!e(c)?b[c]=d({},b[c],f):void 0!==f&&(b[c]=f)}for(var f=1;f<arguments.length;f++)a.each(arguments[f],c);return b}function e(a){return/(Time|Duration)$/.test(a)}function f(a){var c=b.localeData||b.langData;return c.call(b,a)||c.call(b,"en")}function g(a,b){b.left&&a.css({"border-left-width":1,"margin-left":b.left-1}),b.right&&a.css({"border-right-width":1,"margin-right":b.right-1})}function h(a){a.css({"margin-left":"","margin-right":"","border-left-width":"","border-right-width":""})}function i(){a("body").addClass("fc-not-allowed")}function j(){a("body").removeClass("fc-not-allowed")}function k(a){return"pointerdown"==a.type||"pointerup"==a.type||"pointermove"==a.type?"touch"===a.originalEvent.pointerType?!0:!1:"touchstart"==a.type||"touchmove"==a.type||"touchend"==a.type||"touchcancel"==a.type?!0:!1}function l(a){var b={x:0,y:0};if("pointerdown"==a.type||"pointerup"==a.type||"pointermove"==a.type||"mousedown"==a.type||"mouseup"==a.type||"mousemove"==a.type||"mouseover"==a.type||"mouseout"==a.type||"mouseenter"==a.type||"mouseleave"==a.type)b.x=a.pageX,b.y=a.pageY;else if(k(a)){var c=a.originalEvent.touches[0]||a.originalEvent.changedTouches[0];b.x=c.pageX,b.y=c.pageY}return b}function m(){return window.navigator.msPointerEnabled?"pointerdown":!Ka&&"ontouchstart"in document.documentElement?"touchstart":"mousedown"}function n(){return window.navigator.msPointerEnabled?"pointerup":!Ka&&"ontouchstart"in document.documentElement?"touchend":"mouseup"}function o(){return window.navigator.msPointerEnabled?"pointermove":!Ka&&"ontouchstart"in document.documentElement?"touchmove":"mousemove"}function p(b,c,d){var e=Math.floor(c/b.length),f=Math.floor(c-e*(b.length-1)),g=[],h=[],i=[],j=0;q(b),b.each(function(c,d){var k=c===b.length-1?f:e,l=a(d).outerHeight(!0);k>l?(g.push(d),h.push(l),i.push(a(d).height())):j+=l}),d&&(c-=j,e=Math.floor(c/g.length),f=Math.floor(c-e*(g.length-1))),a(g).each(function(b,c){var d=b===g.length-1?f:e,j=h[b],k=i[b],l=d-(j-k);d>j&&a(c).height(l)})}function q(a){a.height("")}function r(b){var c=0;return b.find("> *").each(function(b,d){var e=a(d).outerWidth();e>c&&(c=e)}),c++,b.width(c),c}function s(a,b){return a.height(b).addClass("fc-scroller"),a[0].scrollHeight-1>a[0].clientHeight?!0:(t(a),!1)}function t(a){a.height("").removeClass("fc-scroller")}function u(b){var c=b.css("position"),d=b.parents().filter(function(){var b=a(this);return/(auto|scroll)/.test(b.css("overflow")+b.css("overflow-y")+b.css("overflow-x"))}).eq(0);return"fixed"!==c&&d.length?d:a(b[0].ownerDocument||document)}function v(a){var b=a.offset().left,c=b+a.width(),d=a.children(),e=d.offset().left,f=e+d.outerWidth();return{left:e-b,right:c-f}}function w(a){return k(a)?!0:1==a.which&&!a.ctrlKey}function x(a,b){var c,d,e,f,g=a.start,h=a.end,i=b.start,j=b.end;return h>i&&j>g?(g>=i?(c=g.clone(),e=!0):(c=i.clone(),e=!1),j>=h?(d=h.clone(),f=!0):(d=j.clone(),f=!1),{start:c,end:d,isStart:e,isEnd:f}):void 0}function y(a,b){if(a=a||{},void 0!==a[b])return a[b];for(var c,d=b.split(/(?=[A-Z])/),e=d.length-1;e>=0;e--)if(c=a[d[e].toLowerCase()],void 0!==c)return c;return a["default"]}function z(a,c){return b.duration({days:a.clone().stripTime().diff(c.clone().stripTime(),"days"),ms:a.time()-c.time()})}function A(a,c){return b.duration({days:a.clone().stripTime().diff(c.clone().stripTime(),"days")})}function B(a,b){var c,d,e;for(c=0;c<Na.length&&(d=Na[c],e=C(d,a,b),!(e>=1&&P(e)));c++);return d}function C(a,c,d){return null!=d?d.diff(c,a,!0):b.isDuration(c)?c.as(a):c.end.diff(c.start,a,!0)}function D(a){return"[object Date]"===Object.prototype.toString.call(a)||a instanceof Date}function E(a){return/^\d+\:\d+(?:\:\d+\.?(?:\d{3})?)?$/.test(a)}function F(a){var b=function(){};return b.prototype=a,new b}function G(a,b){for(var c in a)H(a,c)&&(b[c]=a[c])}function H(a,b){return Oa.call(a,b)}function I(b){return/undefined|null|boolean|number|string/.test(a.type(b))}function J(b,c,d){if(a.isFunction(b)&&(b=[b]),b){var e,f;for(e=0;e<b.length;e++)f=b[e].apply(c,d)||f;return f}}function K(){for(var a=0;a<arguments.length;a++)if(void 0!==arguments[a])return arguments[a]}function L(a){return(a+"").replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/'/g,"&#039;").replace(/"/g,"&quot;").replace(/\n/g,"<br />")}function M(a){return a.replace(/&.*?;/g,"")}function N(a){return a.charAt(0).toUpperCase()+a.slice(1)}function O(a,b){return a-b}function P(a){return a%1===0}function Q(a,b){var c,d,e,f,g=function(){var h=+new Date-f;b>h&&h>0?c=setTimeout(g,b-h):(c=null,a.apply(e,d),c||(e=d=null))};return function(){e=this,d=arguments,f=+new Date,c||(c=setTimeout(g,b))}}function R(c,d,e){var f,g,h,i,j=c[0],k=1==c.length&&"string"==typeof j;return b.isMoment(j)?(i=b.apply(null,c),T(j,i)):D(j)||void 0===j?i=b.apply(null,c):(f=!1,g=!1,k?Pa.test(j)?(j+="-01",c=[j],f=!0,g=!0):(h=Qa.exec(j))&&(f=!h[5],g=!0):a.isArray(j)&&(g=!0),i=d||f?b.utc.apply(b,c):b.apply(null,c),f?(i._ambigTime=!0,i._ambigZone=!0):e&&(g?i._ambigZone=!0:k&&i.zone(j))),i._fullCalendar=!0,i}function S(a,c){var d,e,f=!1,g=!1,h=a.length,i=[];for(d=0;h>d;d++)e=a[d],b.isMoment(e)||(e=Ca.moment.parseZone(e)),f=f||e._ambigTime,g=g||e._ambigZone,i.push(e);for(d=0;h>d;d++)e=i[d],c||!f||e._ambigTime?g&&!e._ambigZone&&(i[d]=e.clone().stripZone()):i[d]=e.clone().stripTime();return i}function T(a,b){a._ambigTime?b._ambigTime=!0:b._ambigTime&&(b._ambigTime=!1),a._ambigZone?b._ambigZone=!0:b._ambigZone&&(b._ambigZone=!1)}function U(a,b){a.year(b[0]||0).month(b[1]||0).date(b[2]||0).hours(b[3]||0).minutes(b[4]||0).seconds(b[5]||0).milliseconds(b[6]||0)}function V(a,b){return Sa.format.call(a,b)}function W(a,b){return X(a,aa(b))}function X(a,b){var c,d="";for(c=0;c<b.length;c++)d+=Y(a,b[c]);return d}function Y(a,b){var c,d;return"string"==typeof b?b:(c=b.token)?Ta[c]?Ta[c](a):V(a,c):b.maybe&&(d=X(a,b.maybe),d.match(/[1-9]/))?d:""}function Z(a,b,c,d,e){var f;return a=Ca.moment.parseZone(a),b=Ca.moment.parseZone(b),f=(a.localeData||a.lang).call(a),c=f.longDateFormat(c)||c,d=d||" - ",$(a,b,aa(c),d,e)}function $(a,b,c,d,e){var f,g,h,i,j="",k="",l="",m="",n="";for(g=0;g<c.length&&(f=_(a,b,c[g]),f!==!1);g++)j+=f;for(h=c.length-1;h>g&&(f=_(a,b,c[h]),f!==!1);h--)k=f+k;for(i=g;h>=i;i++)l+=Y(a,c[i]),m+=Y(b,c[i]);return(l||m)&&(n=e?m+d+l:l+d+m),j+n+k}function _(a,b,c){var d,e;return"string"==typeof c?c:(d=c.token)&&(e=Ua[d.charAt(0)],e&&a.isSame(b,e))?V(a,d):!1}function aa(a){return a in Va?Va[a]:Va[a]=ba(a)}function ba(a){for(var b,c=[],d=/\[([^\]]*)\]|\(([^\)]*)\)|(LT|(\w)\4*o?)|([^\w\[\(]+)/g;b=d.exec(a);)b[1]?c.push(b[1]):b[2]?c.push({maybe:ba(b[2])}):b[3]?c.push({token:b[3]}):b[5]&&c.push(b[5]);return c}function ca(){}function da(a,b){return a||b?a&&b?a.grid===b.grid&&a.row===b.row&&a.col===b.col:!1:!0}function ea(a){var b=ga(a);return"background"===b||"inverse-background"===b}function fa(a){return"inverse-background"===ga(a)}function ga(a){return K((a.source||{}).rendering,a.rendering)}function ha(a){var b,c,d={};for(b=0;b<a.length;b++)c=a[b],(d[c._id]||(d[c._id]=[])).push(c);return d}function ia(a,b){return a.eventStartMS-b.eventStartMS}function ja(a,b){return a.eventStartMS-b.eventStartMS||b.eventDurationMS-a.eventDurationMS||b.event.allDay-a.event.allDay||(a.event.title||"").localeCompare(b.event.title)}function ka(c){var d,e,f,g,h=Ca.dataAttrPrefix;return h&&(h+="-"),d=c.data(h+"event")||null,d&&(d="object"==typeof d?a.extend({},d):{},e=d.start,null==e&&(e=d.time),f=d.duration,g=d.stick,delete d.start,delete d.time,delete d.duration,delete d.stick),null==e&&(e=c.data(h+"start")),null==e&&(e=c.data(h+"time")),null==f&&(f=c.data(h+"duration")),null==g&&(g=c.data(h+"stick")),e=null!=e?b.duration(e):null,f=null!=f?b.duration(f):null,g=Boolean(g),{eventProps:d,startTime:e,duration:f,stick:g}}function la(a,b){var c,d;for(c=0;c<b.length;c++)if(d=b[c],d.leftCol<=a.rightCol&&d.rightCol>=a.leftCol)return!0;return!1}function ma(a,b){return a.leftCol-b.leftCol}function na(a){var b,c,d;if(a.sort(ja),b=oa(a),pa(b),c=b[0]){for(d=0;d<c.length;d++)qa(c[d]);for(d=0;d<c.length;d++)ra(c[d],0,0)}}function oa(a){var b,c,d,e=[];for(b=0;b<a.length;b++){for(c=a[b],d=0;d<e.length&&sa(c,e[d]).length;d++);c.level=d,(e[d]||(e[d]=[])).push(c)}return e}function pa(a){var b,c,d,e,f;for(b=0;b<a.length;b++)for(c=a[b],d=0;d<c.length;d++)for(e=c[d],e.forwardSegs=[],f=b+1;f<a.length;f++)sa(e,a[f],e.forwardSegs)}function qa(a){var b,c,d=a.forwardSegs,e=0;if(void 0===a.forwardPressure){for(b=0;b<d.length;b++)c=d[b],qa(c),e=Math.max(e,1+c.forwardPressure);a.forwardPressure=e}}function ra(a,b,c){var d,e=a.forwardSegs;if(void 0===a.forwardCoord)for(e.length?(e.sort(ua),ra(e[0],b+1,c),a.forwardCoord=e[0].backwardCoord):a.forwardCoord=1,a.backwardCoord=a.forwardCoord-(a.forwardCoord-c)/(b+1),d=0;d<e.length;d++)ra(e[d],0,a.forwardCoord)}function sa(a,b,c){c=c||[];for(var d=0;d<b.length;d++)ta(a,b[d])&&c.push(b[d]);return c}function ta(a,b){return a.bottom>b.top&&a.top<b.bottom}function ua(a,b){return b.forwardPressure-a.forwardPressure||(a.backwardCoord||0)-(b.backwardCoord||0)||ja(a,b)}function va(c,e){function g(a){return(a.locale||a.lang).call(a,$.lang).humanize()}function h(a){da?k()&&(r(),l(a)):i()}function i(){ea=$.theme?"ui":"fc",c.addClass("fc"),$.isRTL?c.addClass("fc-rtl"):c.addClass("fc-ltr"),$.theme?c.addClass("ui-widget"):c.addClass("fc-unthemed"),da=a("<div class='fc-view-container'/>").prependTo(c),ba=new wa(Y,$),ca=ba.render(),ca&&c.prepend(ca),l($.defaultView),$.handleWindowResize&&(ha=Q(t,$.windowResizeDelay),a(window).resize(ha))}function j(){fa&&fa.destroyView(),ba.destroy(),da.remove(),c.removeClass("fc fc-ltr fc-rtl fc-unthemed ui-widget"),a(window).unbind("resize",ha)}function k(){return c.is(":visible")}function l(b){na++,fa&&b&&fa.type!==b&&(ba.deactivateButton(fa.type),S(),fa.start&&fa.destroyView(),fa.el.remove(),fa=null),!fa&&b&&(fa=m(b),fa.el=a("<div class='fc-view fc-"+b+"-view' />").appendTo(da),ba.activateButton(b)),fa&&(ia=fa.massageCurrentDate(ia),fa.start&&ia.isWithin(fa.intervalStart,fa.intervalEnd)||k()&&(S(),fa.start&&fa.destroyView(),fa.setDate(ia),fa.renderView(),T(),C(),D(),x())),T(),na--}function m(a){var b=n(a);return new b["class"](Y,b.options,a)}function n(c){function d(b){"function"==typeof b?f=b:"object"==typeof b&&a.extend(e,b)}var e,f,h,i,j,k=$.defaultButtonText||{},l=$.buttonText||{},m=$.views||{},n=c,o=[],p=!1;if(ma[c])return ma[c];for(;n&&!f;)e={},d(Da[n]),d(m[n]),o.unshift(e),n=e.type;return o.unshift({}),e=a.extend.apply(a,o),f?(h=e.duration||f.duration,h&&(h=b.duration(h),i=B(h),p=1===h.as(i)),p&&m[i]&&(e=a.extend({},m[i],e)),j=l[c]||(p?l[i]:null)||k[c]||(p?k[i]:null)||e.buttonText||f.buttonText||(h?g(h):null)||c,ma[c]={"class":f,options:e,buttonText:j}):void 0}function o(a){return Boolean(n(a))}function p(a){var b=n(a);return b?b.buttonText:void 0}function q(a){return k()?(a&&s(),na++,fa.updateSize(!0),na--,!0):void 0}function r(){k()&&s()}function s(){ga="number"==typeof $.contentHeight?$.contentHeight:"number"==typeof $.height?$.height-(ca?ca.outerHeight(!0):0):"undefined"!=typeof $.height&&"parent"===$.height?a(la).parent().height()-(ca?ca.outerHeight(!0):0):Math.round(da.width()/Math.max($.aspectRatio,.5))}function t(a){!na&&a.target===window&&fa.start&&q(!0)&&fa.trigger("windowResize",la)}function u(){w(),y()}function v(){k()&&(S(),fa.destroyViewEvents(),fa.renderViewEvents(oa),T())}function w(){S(),fa.destroyViewEvents(),T()}function x(){!$.lazyFetching||ja(fa.start,fa.end)?y():v()}function y(){ka(fa.start,fa.end)}function z(a){oa=a,v()}function A(){v()}function C(){ba.updateTitle(fa.title)}function D(){var a=Y.getNow();a.isWithin(fa.intervalStart,fa.intervalEnd)?ba.disableButton("today"):ba.enableButton("today")}function E(a,b){a=Y.moment(a),b=b?Y.moment(b):a.hasTime()?a.clone().add(Y.defaultTimedEventDuration):a.clone().add(Y.defaultAllDayEventDuration),fa.select({start:a,end:b})}function G(){fa&&fa.unselect()}function H(){ia=fa.computePrevDate(ia),l()}function I(){ia=fa.computeNextDate(ia),l()}function J(){ia.add(-1,"years"),l()}function K(){ia.add(1,"years"),l()}function L(){ia=Y.getNow(),l()}function M(a){ia=Y.moment(a),l()}function O(a){ia.add(b.duration(a)),l()}function P(a,b){var c,d;b&&o(b)||(b=b||"day",c=ba.getViewsWithButtons().join(" "),d=c.match(new RegExp("\\w+"+N(b))),d||(d=c.match(/\w+Day/)),b=d?d[0]:"agendaDay"),ia=a,l(b)}function R(){return ia.clone()}function S(){da.css({width:"100%",height:da.height(),overflow:"hidden"})}function T(){da.css({width:"",height:"",overflow:""})}function U(){return Y}function V(){return fa}function W(a,b){return void 0===b?$[a]:void(("height"==a||"contentHeight"==a||"aspectRatio"==a)&&($[a]=b,q(!0)))}function X(a,b){return $[a]?$[a].apply(b||la,Array.prototype.slice.call(arguments,2)):void 0}var Y=this;e=e||{};var Z,$=d({},za,e);Z=$.lang in Ea?Ea[$.lang]:Ea[za.lang],Z&&($=d({},za,Z,e)),$.isRTL&&($=d({},za,Ba,Z||{},e)),Y.options=$,Y.render=h,Y.destroy=j,Y.refetchEvents=u,Y.reportEvents=z,Y.reportEventChange=A,Y.rerenderEvents=v,Y.changeView=l,Y.select=E,Y.unselect=G,Y.prev=H,Y.next=I,Y.prevYear=J,Y.nextYear=K,Y.today=L,Y.gotoDate=M,Y.incrementDate=O,Y.zoomTo=P,Y.getDate=R,Y.getCalendar=U,Y.getView=V,Y.option=W,Y.trigger=X,Y.isValidViewType=o,Y.getViewButtonText=p;var _=F(f($.lang));if($.monthNames&&(_._months=$.monthNames),$.monthNamesShort&&(_._monthsShort=$.monthNamesShort),$.dayNames&&(_._weekdays=$.dayNames),$.dayNamesShort&&(_._weekdaysShort=$.dayNamesShort),null!=$.firstDay){var aa=F(_._week);aa.dow=$.firstDay,_._week=aa}Y.defaultAllDayEventDuration=b.duration($.defaultAllDayEventDuration),Y.defaultTimedEventDuration=b.duration($.defaultTimedEventDuration),Y.moment=function(){var a;return"local"===$.timezone?(a=Ca.moment.apply(null,arguments),a.hasTime()&&a.local()):a="UTC"===$.timezone?Ca.moment.utc.apply(null,arguments):Ca.moment.parseZone.apply(null,arguments),"_locale"in a?a._locale=_:a._lang=_,a},Y.getIsAmbigTimezone=function(){return"local"!==$.timezone&&"UTC"!==$.timezone},Y.rezoneDate=function(a){return Y.moment(a.toArray())},Y.getNow=function(){var a=$.now;return"function"==typeof a&&(a=a()),Y.moment(a)},Y.calculateWeekNumber=function(a){var b=$.weekNumberCalculation;return"function"==typeof b?b(a):"local"===b?a.week():"ISO"===b.toUpperCase()?a.isoWeek():void 0},Y.getEventEnd=function(a){return a.end?a.end.clone():Y.getDefaultEventEnd(a.allDay,a.start)},Y.getDefaultEventEnd=function(a,b){var c=b.clone();return a?c.stripTime().add(Y.defaultAllDayEventDuration):c.add(Y.defaultTimedEventDuration),Y.getIsAmbigTimezone()&&c.stripZone(),c},xa.call(Y,$);var ba,ca,da,ea,fa,ga,ha,ia,ja=Y.isFetchNeeded,ka=Y.fetchEvents,la=c[0],ma={},na=0,oa=[];ia=null!=$.defaultDate?Y.moment($.defaultDate):Y.getNow(),Y.getSuggestedViewHeight=function(){return void 0===ga&&r(),ga},Y.isHeightAuto=function(){return"auto"===$.contentHeight||"auto"===$.height}}function wa(b,c){function d(){var b=c.header;return n=c.theme?"ui":"fc",b?o=a("<div class='fc-toolbar'/>").append(f("left")).append(f("right")).append(f("center")).append('<div class="fc-clear"/>'):void 0}function e(){o.remove()}function f(d){var e=a('<div class="fc-'+d+'"/>'),f=c.header[d];return f&&a.each(f.split(" "),function(d){var f,g=a(),h=!0;a.each(this.split(","),function(d,e){var f,i,j,k,l,m,o,q,r;if("title"==e)g=g.add(a('<h2 aria-live="polite">&nbsp;</h2>')),h=!1;else if(a.isFunction(c.customButtons[e])){var s=a(c.customButtons[e](c));g=g.add(s)}else b[e]?f=function(){b[e]()}:b.isValidViewType(e)&&(f=function(){b.changeView(e)},p.push(e),l=b.getViewButtonText(e)),f&&(i=y(c.themeButtonIcons,e),j=y(c.buttonIcons,e),k=y(c.defaultButtonText,e),m=y(c.buttonText,e),o=l||m?L(l||m):i&&c.theme?"<span class='ui-icon ui-icon-"+i+"'></span>":j&&!c.theme?"<span class='fc-icon fc-icon-"+j+"'></span>":L(k||e),q=["fc-"+e+"-button",n+"-button",n+"-state-default"],r=a('<button type="button" class="'+q.join(" ")+'">'+o+"</button>").click(function(){r.hasClass(n+"-state-disabled")||(f(),(r.hasClass(n+"-state-active")||r.hasClass(n+"-state-disabled"))&&r.removeClass(n+"-state-hover"))}).mousedown(function(){r.not("."+n+"-state-active").not("."+n+"-state-disabled").addClass(n+"-state-down")}).mouseup(function(){r.removeClass(n+"-state-down")}).hover(function(){r.not("."+n+"-state-active").not("."+n+"-state-disabled").addClass(n+"-state-hover")},function(){r.removeClass(n+"-state-hover").removeClass(n+"-state-down")}),g=g.add(r))}),h&&g.first().addClass(n+"-corner-left").end().last().addClass(n+"-corner-right").end(),g.length>1||h?(f=a("<div/>"),h&&f.addClass("fc-button-group"),f.append(g),e.append(f)):e.append(g)}),e}function g(a){o.find("h2").text(a)}function h(a){o.find(".fc-"+a+"-button").addClass(n+"-state-active")}function i(a){o.find(".fc-"+a+"-button").removeClass(n+"-state-active")}function j(a){o.find(".fc-"+a+"-button").attr("disabled","disabled").addClass(n+"-state-disabled")}function k(a){o.find(".fc-"+a+"-button").removeAttr("disabled").removeClass(n+"-state-disabled")}function l(){return p}var m=this;m.render=d,m.destroy=e,m.updateTitle=g,m.activateButton=h,m.deactivateButton=i,m.disableButton=j,m.enableButton=k,m.getViewsWithButtons=l;var n,o=a(),p=[]}function xa(c){function d(a,b){return!Q||a.clone().stripZone()<Q.clone().stripZone()||b.clone().stripZone()>R.clone().stripZone()}function e(a,b){Q=a,R=b,$=[];var c=++X,d=W.length;Y=d;for(var e=0;d>e;e++)f(W[e],c)}function f(b,c){g(b,function(d){var e,f,g,h=a.isArray(b.events);if(c==X){if(d)for(e=0;e<d.length;e++)f=d[e],g=h?f:u(f,b),g&&$.push.apply($,y(g));Y--,Y||U($)}})}function g(b,d){var e,f,h=Ca.sourceFetchers;for(e=0;e<h.length;e++){if(f=h[e].call(P,b,Q.clone(),R.clone(),c.timezone,d),f===!0)return;if("object"==typeof f)return void g(f,d)}var i=b.events;if(i)a.isFunction(i)?(s(),i.call(P,Q.clone(),R.clone(),c.timezone,function(a){d(a),t()})):a.isArray(i)?d(i):d();else{var j=b.url;if(j){var k,l=b.success,m=b.error,n=b.complete;k=a.isFunction(b.data)?b.data():b.data;var o=a.extend({},k||{}),p=K(b.startParam,c.startParam),q=K(b.endParam,c.endParam),r=K(b.timezoneParam,c.timezoneParam);p&&(o[p]=Q.format()),q&&(o[q]=R.format()),c.timezone&&"local"!=c.timezone&&(o[r]=c.timezone),s(),a.ajax(a.extend({},eb,b,{data:o,success:function(b){b=b||[];var c=J(l,this,arguments);a.isArray(c)&&(b=c),d(b)},error:function(){J(m,this,arguments),d()},complete:function(){J(n,this,arguments),t()}}))}else d()}}function h(a){var b=i(a);b&&(W.push(b),Y++,f(b,X))}function i(b){var c,d,e=Ca.sourceNormalizers;if(a.isFunction(b)||a.isArray(b)?c={events:b}:"string"==typeof b?c={url:b}:"object"==typeof b&&(c=a.extend({},b)),c){for(c.className?"string"==typeof c.className&&(c.className=c.className.split(/\s+/)):c.className=[],a.isArray(c.events)&&(c.origArray=c.events,c.events=a.map(c.events,function(a){return u(a,c)})),d=0;d<e.length;d++)e[d].call(P,c);return c}}function j(b){W=a.grep(W,function(a){return!k(a,b)}),$=a.grep($,function(a){return!k(a.source,b)}),U($)}function k(a,b){return a&&b&&l(a)==l(b)}function l(a){return("object"==typeof a?a.origArray||a.googleCalendarId||a.url||a.events:null)||a}function m(a){a.start=P.moment(a.start),a.end?a.end=P.moment(a.end):a.end=null,B(a,n(a)),U($)}function n(b){var c={};return a.each(b,function(a,b){o(a)&&void 0!==b&&I(b)&&(c[a]=b)}),c}function o(a){return!/^_|^(id|allDay|start|end)$/.test(a)}function p(a,b){var c,d,e,f=u(a);if(f){for(c=y(f),d=0;d<c.length;d++)e=c[d],e.source||(b&&(V.events.push(e),e.source=V),$.push(e));return U($),c}return[]}function q(b){var c,d;for(null==b?b=function(){return!0}:a.isFunction(b)||(c=b+"",b=function(a){return a._id==c}),$=a.grep($,b,!0),d=0;d<W.length;d++)a.isArray(W[d].events)&&(W[d].events=a.grep(W[d].events,b,!0));U($)}function r(b){return a.isFunction(b)?a.grep($,b):null!=b?(b+="",a.grep($,function(a){return a._id==b})):$}function s(){Z++||S("loading",null,!0,T())}function t(){--Z||S("loading",null,!1,T())}function u(d,e){var f,g,h,i={};if(c.eventDataTransform&&(d=c.eventDataTransform(d)),e&&e.eventDataTransform&&(d=e.eventDataTransform(d)),a.extend(i,d),e&&(i.source=e),i._id=d._id||(void 0===d.id?"_fc"+fb++:d.id+""),d.className?"string"==typeof d.className?i.className=d.className.split(/\s+/):i.className=d.className:i.className=[],f=d.start||d.date,g=d.end,E(f)&&(f=b.duration(f)),E(g)&&(g=b.duration(g)),d.dow||b.isDuration(f)||b.isDuration(g))i.start=f?b.duration(f):null,i.end=g?b.duration(g):null,i._recurring=!0;else{if(f&&(f=P.moment(f),!f.isValid()))return!1;g&&(g=P.moment(g),g.isValid()||(g=null)),h=d.allDay,void 0===h&&(h=K(e?e.allDayDefault:void 0,c.allDayDefault)),v(f,g,h,i)}return i}function v(a,b,c,d){d.start=a,d.end=b,d.allDay=c,w(d),ya(d)}function w(a){null==a.allDay&&(a.allDay=!(a.start.hasTime()||a.end&&a.end.hasTime())),a.allDay?(a.start.stripTime(),a.end&&a.end.stripTime()):(a.start.hasTime()||(a.start=P.rezoneDate(a.start)),a.end&&!a.end.hasTime()&&(a.end=P.rezoneDate(a.end))),a.end&&!a.end.isAfter(a.start)&&(a.end=null),a.end||(c.forceEventDuration?a.end=P.getDefaultEventEnd(a.allDay,a.start):a.end=null)}function x(a){var b;return a.end||(b=a.allDay,null==b&&(b=!a.start.hasTime()),a={start:a.start,end:P.getDefaultEventEnd(b,a.start)}),a}function y(b,c,d){var e,f,g,h,i,j,k,l,m,n=[];if(c=c||Q,d=d||R,b)if(b._recurring){if(f=b.dow)for(e={},g=0;g<f.length;g++)e[f[g]]=!0;for(h=c.clone().stripTime();h.isBefore(d);)(!e||e[h.day()])&&(i=b.start,j=b.end,k=h.clone(),l=null,i&&(k=k.time(i)),j&&(l=h.clone().time(j)),m=a.extend({},b),v(k,l,!i&&!j,m),n.push(m)),h.add(1,"days")}else n.push(b);return n}function B(b,c){var d,e,f,g,h={};return c=c||{},c.start||(c.start=b.start.clone()),void 0===c.end&&(c.end=b.end?b.end.clone():null),null==c.allDay&&(c.allDay=b.allDay),w(c),d=null!==b._end&&null===c.end,e=c.allDay?A(c.start,b._start):z(c.start,b._start),!d&&c.end&&(f=z(c.end,c.start).subtract(z(b._end||P.getDefaultEventEnd(b._allDay,b._start),b._start))),a.each(c,function(a,b){o(a)&&void 0!==b&&(h[a]=b)}),g=C(r(b._id),d,c.allDay,e,f,h),{dateDelta:e,durationDelta:f,undo:g}}function C(b,c,d,e,f,g){var h=P.getIsAmbigTimezone(),i=[];return e&&!e.valueOf()&&(e=null),f&&!f.valueOf()&&(f=null),a.each(b,function(b,j){var k,l;k={start:j.start.clone(),end:j.end?j.end.clone():null,allDay:j.allDay},a.each(g,function(a){k[a]=j[a]}),l={start:j._start,end:j._end,allDay:j._allDay},c&&(l.end=null),l.allDay=d,w(l),e&&(l.start.add(e),l.end&&l.end.add(e)),f&&(l.end||(l.end=P.getDefaultEventEnd(l.allDay,l.start)),l.end.add(f)),h&&!l.allDay&&(e||f)&&(l.start.stripZone(),l.end&&l.end.stripZone()),a.extend(j,g,l),ya(j),i.push(function(){a.extend(j,k),ya(j)})}),function(){for(var a=0;a<i.length;a++)i[a]()}}function D(){var b,d=c.businessHours,e={className:"fc-nonbusiness",start:"09:00",end:"17:00",dow:[1,2,3,4,5],rendering:"inverse-background"},f=P.getView();return d&&(b="object"==typeof d?a.extend({},e,d):e),b?y(u(b),f.start,f.end):[]}function F(a,b){var d=b.source||{},e=K(b.constraint,d.constraint,c.eventConstraint),f=K(b.overlap,d.overlap,c.eventOverlap);return a=x(a),L(a,e,f,b)}function G(a){return L(a,c.selectConstraint,c.selectOverlap)}function H(b,c){var d,e;return c&&(d=a.extend({},c,b),e=y(u(d))[0]),e?F(b,e):(b=x(b),G(b))}function L(a,b,c,d){var e,f,g,h,i;if(a={start:a.start.clone().stripZone(),end:a.end.clone().stripZone()},null!=b){for(e=M(b),f=!1,g=0;g<e.length;g++)if(N(e[g],a)){f=!0;break}if(!f)return!1}for(g=0;g<$.length;g++)if(h=$[g],(!d||d._id!==h._id)&&O(h,a)){if(c===!1)return!1;if("function"==typeof c&&!c(h,d))return!1;if(d){if(i=K(h.overlap,(h.source||{}).overlap),i===!1)return!1;if("function"==typeof i&&!i(d,h))return!1}}return!0}function M(a){return"businessHours"===a?D():"object"==typeof a?y(u(a)):r(a)}function N(a,b){var c=a.start.clone().stripZone(),d=P.getEventEnd(a).stripZone();return b.start>=c&&b.end<=d}function O(a,b){var c=a.start.clone().stripZone(),d=P.getEventEnd(a).stripZone();return b.start<d&&b.end>c}var P=this;P.isFetchNeeded=d,P.fetchEvents=e,P.addEventSource=h,P.removeEventSource=j,P.updateEvent=m,P.renderEvent=p,P.removeEvents=q,P.clientEvents=r,P.mutateEvent=B,P.normalizeEventDateProps=w,P.ensureVisibleEventRange=x;var Q,R,S=P.trigger,T=P.getView,U=P.reportEvents,V={events:[]},W=[V],X=0,Y=0,Z=0,$=[];a.each((c.events?[c.events]:[]).concat(c.eventSources||[]),function(a,b){var c=i(b);c&&W.push(c)}),P.getBusinessHoursEvents=D,P.isEventRangeAllowed=F,P.isSelectionRangeAllowed=G,P.isExternalDropRangeAllowed=H}function ya(a){a._allDay=a.allDay,a._start=a.start.clone(),a._end=a.end?a.end.clone():null}var za={titleRangeSeparator:" — ",monthYearFormat:"MMMM YYYY",defaultTimedEventDuration:"02:00:00",defaultAllDayEventDuration:{days:1},forceEventDuration:!1,nextDayThreshold:"09:00:00",defaultView:"month",aspectRatio:1.35,header:{left:"title",center:"",right:"today prev,next"},weekends:!0,weekNumbers:!1,weekNumberTitle:"W",weekNumberCalculation:"local",lazyFetching:!0,startParam:"start",endParam:"end",timezoneParam:"timezone",timezone:!1,isRTL:!1,defaultButtonText:{prev:"prev",next:"next",prevYear:"prev year",nextYear:"next year",today:"today",month:"month",week:"week",day:"day"},buttonIcons:{prev:"left-single-arrow",next:"right-single-arrow",prevYear:"left-double-arrow",nextYear:"right-double-arrow"},theme:!1,themeButtonIcons:{prev:"circle-triangle-w",next:"circle-triangle-e",prevYear:"seek-prev",nextYear:"seek-next"},dragOpacity:.75,dragRevertDuration:500,dragScroll:!0,unselectAuto:!0,dropAccept:"*",eventLimit:!1,eventLimitText:"more",eventLimitClick:"popover",dayPopoverFormat:"LL",handleWindowResize:!0,windowResizeDelay:200},Aa={dayPopoverFormat:"dddd, MMMM D"},Ba={header:{left:"next,prev today",center:"",right:"title"},buttonIcons:{prev:"right-single-arrow",next:"left-single-arrow",prevYear:"right-double-arrow",nextYear:"left-double-arrow"},themeButtonIcons:{prev:"circle-triangle-e",next:"circle-triangle-w",nextYear:"seek-prev",prevYear:"seek-next"}},Ca=a.fullCalendar={version:"2.2.7"},Da=Ca.views={};a.fn.fullCalendar=function(b){var c=Array.prototype.slice.call(arguments,1),d=this;return this.each(function(e,f){var g,h=a(f),i=h.data("fullCalendar");"string"==typeof b?i&&a.isFunction(i[b])&&(g=i[b].apply(i,c),e||(d=g),"destroy"===b&&h.removeData("fullCalendar")):i||(i=new va(h,b),h.data("fullCalendar",i),i.render())}),d};var Ea=Ca.langs={};Ca.datepickerLang=function(b,c,d){var e=Ea[b]||(Ea[b]={});e.isRTL=d.isRTL,e.weekNumberTitle=d.weekHeader,a.each(Fa,function(a,b){e[a]=b(d)}),a.datepicker&&(a.datepicker.regional[c]=a.datepicker.regional[b]=d,a.datepicker.regional.en=a.datepicker.regional[""],a.datepicker.setDefaults(d))},Ca.lang=function(b,c){var e,g;e=Ea[b]||(Ea[b]={}),c&&d(e,c),g=f(b),a.each(Ga,function(a,b){void 0===e[a]&&(e[a]=b(g,e))}),za.lang=b};var Fa={defaultButtonText:function(a){return{prev:M(a.prevText),next:M(a.nextText),today:M(a.currentText)}},monthYearFormat:function(a){return a.showMonthAfterYear?"YYYY["+a.yearSuffix+"] MMMM":"MMMM YYYY["+a.yearSuffix+"]"}},Ga={dayOfMonthFormat:function(a,b){var c=a.longDateFormat("l");return c=c.replace(/^Y+[^\w\s]*|[^\w\s]*Y+$/g,""),b.isRTL?c+=" ddd":c="ddd "+c,c},smallTimeFormat:function(a){return a.longDateFormat("LT").replace(":mm","(:mm)").replace(/(\Wmm)$/,"($1)").replace(/\s*a$/i,"a")},extraSmallTimeFormat:function(a){return a.longDateFormat("LT").replace(":mm","(:mm)").replace(/(\Wmm)$/,"($1)").replace(/\s*a$/i,"t")},noMeridiemTimeFormat:function(a){return a.longDateFormat("LT").replace(/\s*a$/i,"")}};Ca.lang("en",Aa),Ca.intersectionToSeg=x,Ca.applyAll=J,Ca.debounce=Q;var Ha,Ia,Ja,Ka=-1!==navigator.userAgent.toLowerCase().indexOf("phantom"),La=!1,Ma=["sun","mon","tue","wed","thu","fri","sat"],Na=["year","month","week","day","hour","minute","second","millisecond"],Oa={}.hasOwnProperty,Pa=/^\s*\d{4}-\d\d$/,Qa=/^\s*\d{4}-(?:(\d\d-\d\d)|(W\d\d$)|(W\d\d-\d)|(\d\d\d))((T| )(\d\d(:\d\d(:\d\d(\.\d+)?)?)?)?)?$/,Ra=b.fn,Sa=a.extend({},Ra);Ca.moment=function(){return R(arguments)},Ca.moment.utc=function(){var a=R(arguments,!0);return a.hasTime()&&a.utc(),a},Ca.moment.parseZone=function(){return R(arguments,!0,!0)},Ra.clone=function(){var a=Sa.clone.apply(this,arguments);return T(this,a),this._fullCalendar&&(a._fullCalendar=!0),a},Ra.time=function(a){if(!this._fullCalendar)return Sa.time.apply(this,arguments);if(null==a)return b.duration({hours:this.hours(),minutes:this.minutes(),seconds:this.seconds(),milliseconds:this.milliseconds()});this._ambigTime=!1,b.isDuration(a)||b.isMoment(a)||(a=b.duration(a));var c=0;return b.isDuration(a)&&(c=24*Math.floor(a.asDays())),this.hours(c+a.hours()).minutes(a.minutes()).seconds(a.seconds()).milliseconds(a.milliseconds())},Ra.stripTime=function(){var a;return this._ambigTime||(a=this.toArray(),this.utc(),Ia(this,a.slice(0,3)),this._ambigTime=!0,this._ambigZone=!0),this},Ra.hasTime=function(){return!this._ambigTime},Ra.stripZone=function(){var a,b;return this._ambigZone||(a=this.toArray(),b=this._ambigTime,this.utc(),Ia(this,a),this._ambigTime=b||!1,this._ambigZone=!0),this},Ra.hasZone=function(){return!this._ambigZone},Ra.local=function(){var a=this.toArray(),b=this._ambigZone;return Sa.local.apply(this,arguments),this._ambigTime=!1,this._ambigZone=!1,b&&Ja(this,a),this},Ra.utc=function(){return Sa.utc.apply(this,arguments),this._ambigTime=!1,this._ambigZone=!1,this},a.each(["zone","utcOffset"],function(a,b){Sa[b]&&(Ra[b]=function(a){return null!=a&&(this._ambigTime=!1,this._ambigZone=!1),Sa[b].apply(this,arguments)})}),Ra.format=function(){return this._fullCalendar&&arguments[0]?W(this,arguments[0]):this._ambigTime?V(this,"YYYY-MM-DD"):this._ambigZone?V(this,"YYYY-MM-DD[T]HH:mm:ss"):Sa.format.apply(this,arguments)},Ra.toISOString=function(){return this._ambigTime?V(this,"YYYY-MM-DD"):this._ambigZone?V(this,"YYYY-MM-DD[T]HH:mm:ss"):Sa.toISOString.apply(this,arguments)},Ra.isWithin=function(a,b){var c=S([this,a,b]);return c[0]>=c[1]&&c[0]<c[2]},Ra.isSame=function(a,b){var c;return this._fullCalendar?b?(c=S([this,a],!0),Sa.isSame.call(c[0],c[1],b)):(a=Ca.moment.parseZone(a),Sa.isSame.call(this,a)&&Boolean(this._ambigTime)===Boolean(a._ambigTime)&&Boolean(this._ambigZone)===Boolean(a._ambigZone)):Sa.isSame.apply(this,arguments)},a.each(["isBefore","isAfter"],function(a,b){Ra[b]=function(a,c){var d;return this._fullCalendar?(d=S([this,a]),Sa[b].call(d[0],d[1],c)):Sa[b].apply(this,arguments)}}),Ha="_d"in b()&&"updateOffset"in b,Ia=Ha?function(a,c){a._d.setTime(Date.UTC.apply(Date,c)),b.updateOffset(a,!1)}:U,Ja=Ha?function(a,c){a._d.setTime(+new Date(c[0]||0,c[1]||0,c[2]||0,c[3]||0,c[4]||0,c[5]||0,c[6]||0)),b.updateOffset(a,!1)}:U;var Ta={t:function(a){return V(a,"a").charAt(0)},T:function(a){return V(a,"A").charAt(0)}};Ca.formatRange=Z;var Ua={Y:"year",M:"month",D:"day",d:"day",A:"second",a:"second",T:"second",t:"second",H:"second",h:"second",m:"second",s:"second"},Va={};Ca.Class=ca,ca.extend=function(a){var b,c=this;return a=a||{},H(a,"constructor")&&(b=a.constructor),"function"!=typeof b&&(b=a.constructor=function(){c.apply(this,arguments)}),b.prototype=F(c.prototype),G(a,b.prototype),G(c,b),b},ca.mixin=function(a){G(a.prototype||a,this.prototype)};var Wa=ca.extend({isHidden:!0,options:null,el:null,documentMousedownProxy:null,margin:10,constructor:function(a){this.options=a||{}},show:function(){this.isHidden&&(this.el||this.render(),this.el.show(),this.position(),this.isHidden=!1,this.trigger("show"))},hide:function(){this.isHidden||(this.el.hide(),this.isHidden=!0,this.trigger("hide"))},render:function(){var b=this,c=this.options;this.el=a('<div class="fc-popover"/>').addClass(c.className||"").css({top:0,left:0}).append(c.content).appendTo(c.parentEl),this.el.on("click",".fc-close",function(){b.hide()}),c.autoHide&&a(document).on(m(),this.documentMousedownProxy=a.proxy(this,"documentMousedown"))},documentMousedown:function(b){this.el&&!a(b.target).closest(this.el).length&&(this.hide(),b.stopPropagation())},destroy:function(){this.hide(),this.el&&(this.el.remove(),this.el=null),
3
  a(document).off(m(),this.documentMousedownProxy)},position:function(){var b,c,d,e,f,g=this.options,h=this.el.offsetParent().offset(),i=this.el.outerWidth(),j=this.el.outerHeight(),k=a(window),l=u(this.el);e=g.top||0,f=void 0!==g.left?g.left:void 0!==g.right?g.right-i:0,l.is(window)||l.is(document)?(l=k,b=0,c=0):(d=l.offset(),b=d.top,c=d.left),b+=k.scrollTop(),c+=k.scrollLeft(),g.viewportConstrain!==!1&&(e=Math.min(e,b+l.outerHeight()-j-this.margin),e=Math.max(e,b+this.margin),f=Math.min(f,c+l.outerWidth()-i-this.margin),f=Math.max(f,c+this.margin)),this.el.css({top:e-h.top,left:f-h.left})},trigger:function(a){this.options[a]&&this.options[a].apply(this,Array.prototype.slice.call(arguments,1))}}),Xa=ca.extend({grid:null,rowCoords:null,colCoords:null,containerEl:null,minX:null,maxX:null,minY:null,maxY:null,constructor:function(a){this.grid=a},build:function(){this.rowCoords=this.grid.computeRowCoords(),this.colCoords=this.grid.computeColCoords(),this.computeBounds()},clear:function(){this.rowCoords=null,this.colCoords=null},getCell:function(a,b){var c,d,e,f=this.rowCoords,g=this.colCoords,h=null,i=null;if(this.inBounds(a,b)){for(c=0;c<f.length;c++)if(d=f[c],b>=d.top&&b<d.bottom){h=c;break}for(c=0;c<g.length;c++)if(d=g[c],a>=d.left&&a<d.right){i=c;break}if(null!==h&&null!==i)return e=this.grid.getCell(h,i),e.grid=this.grid,e}return null},computeBounds:function(){var a;this.containerEl&&(a=this.containerEl.offset(),this.minX=a.left,this.maxX=a.left+this.containerEl.outerWidth(),this.minY=a.top,this.maxY=a.top+this.containerEl.outerHeight())},inBounds:function(a,b){return this.containerEl?a>=this.minX&&a<this.maxX&&b>=this.minY&&b<this.maxY:!0}}),Ya=ca.extend({coordMaps:null,constructor:function(a){this.coordMaps=a},build:function(){var a,b=this.coordMaps;for(a=0;a<b.length;a++)b[a].build()},getCell:function(a,b){var c,d=this.coordMaps,e=null;for(c=0;c<d.length&&!e;c++)e=d[c].getCell(a,b);return e},clear:function(){var a,b=this.coordMaps;for(a=0;a<b.length;a++)b[a].clear()}}),Za=ca.extend({coordMap:null,options:null,isListening:!1,isDragging:!1,origCell:null,cell:null,mouseX0:null,mouseY0:null,mousemoveProxy:null,mouseupProxy:null,scrollEl:null,scrollBounds:null,scrollTopVel:null,scrollLeftVel:null,scrollIntervalId:null,scrollHandlerProxy:null,scrollSensitivity:30,scrollSpeed:200,scrollIntervalMs:50,constructor:function(a,b){this.coordMap=a,this.options=b||{}},mousedown:function(a){w(a)&&(k(a)||a.preventDefault(),this.startListening(a),this.options.distance||this.startDrag(a))},startListening:function(b){var c,d;this.isListening||(b&&this.options.scroll&&(c=u(a(b.target)),c.is(window)||c.is(document)||(this.scrollEl=c,this.scrollHandlerProxy=Q(a.proxy(this,"scrollHandler"),100),this.scrollEl.on("scroll",this.scrollHandlerProxy))),this.computeCoords(),b&&(d=this.getCell(b),this.origCell=d,this.mouseX0=l(b).x,this.mouseY0=l(b).y),a(document).on(o(),this.mousemoveProxy=a.proxy(this,"mousemove")).on(n(),this.mouseupProxy=a.proxy(this,"mouseup")).on("selectstart",this.preventDefault),this.isListening=!0,this.trigger("listenStart",b))},computeCoords:function(){this.coordMap.build(),this.computeScrollBounds()},mousemove:function(a){var b,c;this.isDragging||(b=this.options.distance||1,c=Math.pow(l(a).x-this.mouseX0,2)+Math.pow(l(a).y-this.mouseY0,2),c>=b*b&&this.startDrag(a)),this.isDragging&&this.drag(a)},startDrag:function(a){var b;this.isListening||this.startListening(),this.isDragging||(this.isDragging=!0,this.trigger("dragStart",a),b=this.getCell(a),b&&this.cellOver(b))},drag:function(a){var b;this.isDragging&&(b=this.getCell(a),da(b,this.cell)||(this.cell&&this.cellOut(),!b||k(a)&&!La||this.cellOver(b)),this.dragScroll(a))},cellOver:function(a){this.cell=a,this.trigger("cellOver",a,da(a,this.origCell))},cellOut:function(){this.cell&&(this.trigger("cellOut",this.cell),this.cell=null)},mouseup:function(a){this.stopDrag(a),this.stopListening(a)},stopDrag:function(a){this.isDragging&&(this.stopScrolling(),this.trigger("dragStop",a),this.isDragging=!1)},stopListening:function(b){this.isListening&&(this.scrollEl&&(this.scrollEl.off("scroll",this.scrollHandlerProxy),this.scrollHandlerProxy=null),a(document).off(o(),this.mousemoveProxy).off(n(),this.mouseupProxy).off("selectstart",this.preventDefault),this.mousemoveProxy=null,this.mouseupProxy=null,this.isListening=!1,this.trigger("listenStop",b),this.origCell=this.cell=null,this.coordMap.clear())},getCell:function(a){return this.coordMap.getCell(l(a).x,l(a).y)},trigger:function(a){this.options[a]&&this.options[a].apply(this,Array.prototype.slice.call(arguments,1))},preventDefault:function(a){a.preventDefault()},computeScrollBounds:function(){var a,b=this.scrollEl;b&&(a=b.offset(),this.scrollBounds={top:a.top,left:a.left,bottom:a.top+b.outerHeight(),right:a.left+b.outerWidth()})},dragScroll:function(a){var b,c,d,e,f=this.scrollSensitivity,g=this.scrollBounds,h=0,i=0;g&&(b=(f-(l(a).y-g.top))/f,c=(f-(g.bottom-l(a).y))/f,d=(f-(l(a).x-g.left))/f,e=(f-(g.right-l(a).x))/f,b>=0&&1>=b?h=b*this.scrollSpeed*-1:c>=0&&1>=c&&(h=c*this.scrollSpeed),d>=0&&1>=d?i=d*this.scrollSpeed*-1:e>=0&&1>=e&&(i=e*this.scrollSpeed)),this.setScrollVel(h,i)},setScrollVel:function(b,c){this.scrollTopVel=b,this.scrollLeftVel=c,this.constrainScrollVel(),!this.scrollTopVel&&!this.scrollLeftVel||this.scrollIntervalId||(this.scrollIntervalId=setInterval(a.proxy(this,"scrollIntervalFunc"),this.scrollIntervalMs))},constrainScrollVel:function(){var a=this.scrollEl;this.scrollTopVel<0?a.scrollTop()<=0&&(this.scrollTopVel=0):this.scrollTopVel>0&&a.scrollTop()+a[0].clientHeight>=a[0].scrollHeight&&(this.scrollTopVel=0),this.scrollLeftVel<0?a.scrollLeft()<=0&&(this.scrollLeftVel=0):this.scrollLeftVel>0&&a.scrollLeft()+a[0].clientWidth>=a[0].scrollWidth&&(this.scrollLeftVel=0)},scrollIntervalFunc:function(){var a=this.scrollEl,b=this.scrollIntervalMs/1e3;this.scrollTopVel&&a.scrollTop(a.scrollTop()+this.scrollTopVel*b),this.scrollLeftVel&&a.scrollLeft(a.scrollLeft()+this.scrollLeftVel*b),this.constrainScrollVel(),this.scrollTopVel||this.scrollLeftVel||this.stopScrolling()},stopScrolling:function(){this.scrollIntervalId&&(clearInterval(this.scrollIntervalId),this.scrollIntervalId=null,this.computeCoords())},scrollHandler:function(){this.scrollIntervalId||this.computeCoords()}}),$a=ca.extend({options:null,sourceEl:null,el:null,parentEl:null,top0:null,left0:null,mouseY0:null,mouseX0:null,topDelta:null,leftDelta:null,mousemoveProxy:null,isFollowing:!1,isHidden:!1,isAnimating:!1,constructor:function(b,c){this.options=c=c||{},this.sourceEl=b,this.parentEl=c.parentEl?a(c.parentEl):b.parent()},start:function(b){this.isFollowing||(this.isFollowing=!0,this.mouseY0=l(b).y,this.mouseX0=l(b).x,this.topDelta=0,this.leftDelta=0,this.isHidden||this.updatePosition(),a(document).on(o(),this.mousemoveProxy=a.proxy(this,"mousemove")))},stop:function(b,c){function d(){this.isAnimating=!1,e.destroyEl(),this.top0=this.left0=null,c&&c()}var e=this,f=this.options.revertDuration;this.isFollowing&&!this.isAnimating&&(this.isFollowing=!1,a(document).off(o(),this.mousemoveProxy),b&&f&&!this.isHidden?(this.isAnimating=!0,this.el.animate({top:this.top0,left:this.left0},{duration:f,complete:d})):d())},getEl:function(){var a=this.el;return a||(this.sourceEl.width(),a=this.el=this.sourceEl.clone().css({position:"absolute",visibility:"",display:this.isHidden?"none":"",margin:0,right:"auto",bottom:"auto",width:this.sourceEl.width(),height:this.sourceEl.height(),opacity:this.options.opacity||"",zIndex:this.options.zIndex}).appendTo(this.parentEl)),a},destroyEl:function(){this.el&&(this.el.remove(),this.el=null)},updatePosition:function(){var a,b;this.getEl(),null===this.top0&&(this.sourceEl.width(),a=this.sourceEl.offset(),b=this.el.offsetParent().offset(),this.top0=a.top-b.top,this.left0=a.left-b.left),this.el.css({top:this.top0+this.topDelta,left:this.left0+this.leftDelta})},mousemove:function(a){this.topDelta=l(a).y-this.mouseY0,this.leftDelta=l(a).x-this.mouseX0,this.isHidden||this.updatePosition()},hide:function(){this.isHidden||(this.isHidden=!0,this.el&&this.el.hide())},show:function(){this.isHidden&&(this.isHidden=!1,this.updatePosition(),this.getEl().show())}}),_a=ca.extend({view:null,isRTL:null,cellHtml:"<td/>",constructor:function(a){this.view=a,this.isRTL=a.opt("isRTL")},rowHtml:function(a,b){var c,d,e=this.getHtmlRenderer("cell",a),f="";for(b=b||0,c=0;c<this.colCnt;c++)d=this.getCell(b,c),f+=e(d);return f=this.bookendCells(f,a,b),"<tr>"+f+"</tr>"},bookendCells:function(a,b,c){var d=this.getHtmlRenderer("intro",b)(c||0),e=this.getHtmlRenderer("outro",b)(c||0),f=this.isRTL?e:d,g=this.isRTL?d:e;return"string"==typeof a?f+a+g:a.prepend(f).append(g)},getHtmlRenderer:function(a,b){var c,d,e,f,g=this.view;return c=a+"Html",b&&(d=b+N(a)+"Html"),d&&(f=g[d])?e=g:d&&(f=this[d])?e=this:(f=g[c])?e=g:(f=this[c])&&(e=this),"function"==typeof f?function(){return f.apply(e,arguments)||""}:function(){return f||""}}}),ab=Ca.Grid=_a.extend({start:null,end:null,rowCnt:0,colCnt:0,rowData:null,colData:null,el:null,coordMap:null,elsByFill:null,documentDragStartProxy:null,colHeadFormat:null,eventTimeFormat:null,displayEventEnd:null,constructor:function(){_a.apply(this,arguments),this.coordMap=new Xa(this),this.elsByFill={},this.documentDragStartProxy=a.proxy(this,"documentDragStart")},render:function(){this.bindHandlers()},destroy:function(){this.unbindHandlers()},computeColHeadFormat:function(){},computeEventTimeFormat:function(){return this.view.opt("smallTimeFormat")},computeDisplayEventEnd:function(){return!1},setRange:function(a){var b=this.view;this.start=a.start.clone(),this.end=a.end.clone(),this.rowData=[],this.colData=[],this.updateCells(),this.colHeadFormat=b.opt("columnFormat")||this.computeColHeadFormat(),this.eventTimeFormat=b.opt("timeFormat")||this.computeEventTimeFormat(),this.displayEventEnd=b.opt("displayEventEnd"),null==this.displayEventEnd&&(this.displayEventEnd=this.computeDisplayEventEnd())},updateCells:function(){},rangeToSegs:function(a){},getCell:function(b,c){var d;return null==c&&("number"==typeof b?(c=b%this.colCnt,b=Math.floor(b/this.colCnt)):(c=b.col,b=b.row)),d={row:b,col:c},a.extend(d,this.getRowData(b),this.getColData(c)),a.extend(d,this.computeCellRange(d)),d},computeCellRange:function(a){},getRowData:function(a){return this.rowData[a]||{}},getColData:function(a){return this.colData[a]||{}},getRowEl:function(a){},getColEl:function(a){},getCellDayEl:function(a){return this.getColEl(a.col)||this.getRowEl(a.row)},computeRowCoords:function(){var a,b,c,d=[];for(a=0;a<this.rowCnt;a++)b=this.getRowEl(a),c={top:b.offset().top},a>0&&(d[a-1].bottom=c.top),d.push(c);return c.bottom=c.top+b.outerHeight(),d},computeColCoords:function(){var a,b,c,d=[];for(a=0;a<this.colCnt;a++)b=this.getColEl(a),c={left:b.offset().left},a>0&&(d[a-1].right=c.left),d.push(c);return c.right=c.left+b.outerWidth(),d},bindHandlers:function(){var b=this;this.el.on(m(),function(c){a(c.target).is(".fc-event-container *, .fc-more")||b.view.el.find(".fc-popover").length||a(c.target).closest(".fc-popover").length||b.dayMousedown(c)}),this.bindSegHandlers(),a(document).on("dragstart",this.documentDragStartProxy)},unbindHandlers:function(){a(document).off("dragstart",this.documentDragStartProxy)},dayMousedown:function(a){var b,c,d=this,e=this.view,f=e.opt("selectable"),g=new Za(this.coordMap,{scroll:e.opt("dragScroll"),dragStart:function(){e.unselect()},cellOver:function(a,e){var h=g.origCell;h&&(b=e?a:null,f&&(c=d.computeSelection(h,a),c?d.renderSelection(c):i()))},cellOut:function(a){b=null,c=null,d.destroySelection(),j()},listenStop:function(a){b&&(a.preventDefault(),e.trigger("dayClick",d.getCellDayEl(b),b.start,a)),c&&e.reportSelection(c,a),j()}});g.mousedown(a)},renderRangeHelper:function(a,b){var c;c=b?F(b.event):{},c.start=a.start.clone(),c.end=a.end?a.end.clone():null,c.allDay=null,this.view.calendar.normalizeEventDateProps(c),c.className=(c.className||[]).concat("fc-helper"),b||(c.editable=!1),this.renderHelper(c,b)},renderHelper:function(a,b){},destroyHelper:function(){},renderSelection:function(a){this.renderHighlight(a)},destroySelection:function(){this.destroyHighlight()},computeSelection:function(a,b){var c,d=[a.start,a.end,b.start,b.end];return d.sort(O),c={start:d[0].clone(),end:d[3].clone()},this.view.calendar.isSelectionRangeAllowed(c)?c:null},renderHighlight:function(a){this.renderFill("highlight",this.rangeToSegs(a))},destroyHighlight:function(){this.destroyFill("highlight")},highlightSegClasses:function(){return["fc-highlight"]},renderFill:function(a,b){},destroyFill:function(a){var b=this.elsByFill[a];b&&(b.remove(),delete this.elsByFill[a])},renderFillSegEls:function(b,c){var d,e=this,f=this[b+"SegEl"],g="",h=[];if(c.length){for(d=0;d<c.length;d++)g+=this.fillSegHtml(b,c[d]);a(g).each(function(b,d){var g=c[b],i=a(d);f&&(i=f.call(e,g,i)),i&&(i=a(i),i.is(e.fillSegTag)&&(g.el=i,h.push(g)))})}return h},fillSegTag:"div",fillSegHtml:function(a,b){var c=this[a+"SegClasses"],d=this[a+"SegStyles"],e=c?c.call(this,b):[],f=d?d.call(this,b):"";return"<"+this.fillSegTag+(e.length?' class="'+e.join(" ")+'"':"")+(f?' style="'+f+'"':"")+" />"},headHtml:function(){return'<div class="fc-row '+this.view.widgetHeaderClass+'"><table><thead>'+this.rowHtml("head")+"</thead></table></div>"},headCellHtml:function(a){var b=this.view,c=a.start;return'<th class="fc-day-header '+b.widgetHeaderClass+" fc-"+Ma[c.day()]+'">'+L(c.format(this.colHeadFormat))+"</th>"},bgCellHtml:function(a){var b=this.view,c=a.start,d=this.getDayClasses(c);return d.unshift("fc-day",b.widgetContentClass),'<td class="'+d.join(" ")+'" data-date="'+c.format("YYYY-MM-DD")+'"></td>'},getDayClasses:function(a){var b=this.view,c=b.calendar.getNow().stripTime(),d=["fc-"+Ma[a.day()]];return"month"===b.name&&a.month()!=b.intervalStart.month()&&d.push("fc-other-month"),a.isSame(c,"day")?d.push("fc-today",b.highlightStateClass):c>a?d.push("fc-past"):d.push("fc-future"),d}});ab.mixin({mousedOverSeg:null,isDraggingSeg:!1,isResizingSeg:!1,segs:null,renderEvents:function(a){var b,c,d=this.eventsToSegs(a),e=[],f=[];for(b=0;b<d.length;b++)c=d[b],ea(c.event)?e.push(c):f.push(c);e=this.renderBgSegs(e)||e,f=this.renderFgSegs(f)||f,this.segs=e.concat(f)},destroyEvents:function(){this.triggerSegMouseout(),this.destroyFgSegs(),this.destroyBgSegs(),this.segs=null},getEventSegs:function(){return this.segs||[]},renderFgSegs:function(a){},destroyFgSegs:function(){},renderFgSegEls:function(b,c){var d,e=this.view,f="",g=[];if(b.length){for(d=0;d<b.length;d++)f+=this.fgSegHtml(b[d],c);a(f).each(function(c,d){var f=b[c],h=e.resolveEventEl(f.event,a(d));h&&(h.data("fc-seg",f),f.el=h,g.push(f))})}return g},fgSegHtml:function(a,b){},renderBgSegs:function(a){return this.renderFill("bgEvent",a)},destroyBgSegs:function(){this.destroyFill("bgEvent")},bgEventSegEl:function(a,b){return this.view.resolveEventEl(a.event,b)},bgEventSegClasses:function(a){var b=a.event,c=b.source||{};return["fc-bgevent"].concat(b.className,c.className||[])},bgEventSegStyles:function(a){var b=this.view,c=a.event,d=c.source||{},e=c.color,f=d.color,g=b.opt("eventColor"),h=c.backgroundColor||e||d.backgroundColor||f||b.opt("eventBackgroundColor")||g;return h?"background-color:"+h:""},businessHoursSegClasses:function(a){return["fc-nonbusiness","fc-bgevent"]},bindSegHandlers:function(){var b=this,c=this.view,d={};d.mouseenter=function(a,c){b.triggerSegMouseover(a,c)},d.mouseleave=function(a,c){b.triggerSegMouseout(a,c)},d.click=function(a,b){return c.trigger("eventClick",this,a.event,b)},d[m()]=function(d,e){a(e.target).is(".fc-resizer")&&c.isEventResizable(d.event)?b.segResizeMousedown(d,e):!c.isEventDraggable(d.event)||k(e)&&!La||b.segDragMousedown(d,e)},a.each(d,function(c,d){b.el.on(c,".fc-event-container > *",function(c){var e=a(this).data("fc-seg");return!e||b.isDraggingSeg||b.isResizingSeg?void 0:d.call(this,e,c)})})},triggerSegMouseover:function(a,b){this.mousedOverSeg||(this.mousedOverSeg=a,this.view.trigger("eventMouseover",a.el[0],a.event,b))},triggerSegMouseout:function(a,b){b=b||{},this.mousedOverSeg&&(a=a||this.mousedOverSeg,this.mousedOverSeg=null,this.view.trigger("eventMouseout",a.el[0],a.event,b))},segDragMousedown:function(a,b){var c,d=this,e=this.view,f=a.el,g=a.event,h=new $a(a.el,{parentEl:e.el,opacity:e.opt("dragOpacity"),revertDuration:e.opt("dragRevertDuration"),zIndex:2}),k=new Za(e.coordMap,{distance:5,scroll:e.opt("dragScroll"),listenStart:function(a){h.hide(),h.start(a)},dragStart:function(b){d.triggerSegMouseout(a,b),d.isDraggingSeg=!0,e.hideEvent(g),e.trigger("eventDragStart",f[0],g,b,{})},cellOver:function(b,f){var j=a.cell||k.origCell;c=d.computeEventDrop(j,b,g),c?(e.renderDrag(c,a)?h.hide():h.show(),f&&(c=null)):(h.show(),i())},cellOut:function(){c=null,e.destroyDrag(),h.show(),j()},dragStop:function(a){h.stop(!c,function(){d.isDraggingSeg=!1,e.destroyDrag(),e.showEvent(g),e.trigger("eventDragStop",f[0],g,a,{}),c&&e.reportEventDrop(g,c,f,a)}),j()},listenStop:function(){h.stop()}});k.mousedown(b)},computeEventDrop:function(a,b,c){var d,e,f,g,h,i=a.start,j=b.start;return i.hasTime()===j.hasTime()?(d=z(j,i),e=c.start.clone().add(d),f=null===c.end?null:c.end.clone().add(d),g=c.allDay):(e=j.clone(),f=null,g=!j.hasTime()),h={start:e,end:f,allDay:g},this.view.calendar.isEventRangeAllowed(h,c)?h:null},documentDragStart:function(b,c){var d,e,f=this.view;f.opt("droppable")&&(d=a(b.target),e=f.opt("dropAccept"),(a.isFunction(e)?e.call(d[0],d):d.is(e))&&this.startExternalDrag(d,b,c))},startExternalDrag:function(b,c,d){var e,f,g=this,h=ka(b);e=new Za(this.coordMap,{cellOver:function(a){f=g.computeExternalDrop(a,h),f?g.renderDrag(f):i()},cellOut:function(){f=null,g.destroyDrag(),j()}}),a(document).one("dragstop",function(a,c){g.destroyDrag(),j(),f&&g.view.reportExternalDrop(h,f,b,a,c)}),e.startDrag(c)},computeExternalDrop:function(a,b){var c={start:a.start.clone(),end:null};return b.startTime&&!c.start.hasTime()&&c.start.time(b.startTime),b.duration&&(c.end=c.start.clone().add(b.duration)),this.view.calendar.isExternalDropRangeAllowed(c,b.eventProps)?c:null},renderDrag:function(a,b){},destroyDrag:function(){},segResizeMousedown:function(a,b){function c(){f.destroyEventResize(),g.showEvent(l),j()}var d,e,f=this,g=this.view,h=g.calendar,k=a.el,l=a.event,m=l.start,n=h.getEventEnd(l);e=new Za(this.coordMap,{distance:5,scroll:g.opt("dragScroll"),dragStart:function(b){f.triggerSegMouseout(a,b),f.isResizingSeg=!0,g.trigger("eventResizeStart",k[0],l,b,{})},cellOver:function(b){d=b.end,d.isAfter(m)||(d=m.clone().add(z(b.end,b.start))),d.isSame(n)?d=null:h.isEventRangeAllowed({start:m,end:d},l)?(f.renderEventResize({start:m,end:d},a),g.hideEvent(l)):(d=null,i())},cellOut:function(){d=null,c()},dragStop:function(a){f.isResizingSeg=!1,c(),g.trigger("eventResizeStop",k[0],l,a,{}),d&&g.reportEventResize(l,d,k,a)}}),e.mousedown(b)},renderEventResize:function(a,b){},destroyEventResize:function(){},getEventTimeText:function(a,b){return b=b||this.eventTimeFormat,a.end&&this.displayEventEnd?this.view.formatRange(a,b):a.start.format(b)},getSegClasses:function(a,b,c){var d=a.event,e=["fc-event",a.isStart?"fc-start":"fc-not-start",a.isEnd?"fc-end":"fc-not-end"].concat(d.className,d.source?d.source.className:[]);return b&&e.push("fc-draggable"),c&&e.push("fc-resizable"),e},getEventSkinCss:function(a){var b=this.view,c=a.source||{},d=a.color,e=c.color,f=b.opt("eventColor"),g=a.backgroundColor||d||c.backgroundColor||e||b.opt("eventBackgroundColor")||f,h=a.borderColor||d||c.borderColor||e||b.opt("eventBorderColor")||f,i=a.textColor||c.textColor||b.opt("eventTextColor"),j=[];return g&&j.push("background-color:"+g),h&&j.push("border-color:"+h),i&&j.push("color:"+i),j.join(";")},eventsToSegs:function(a,b){var c,d=this.eventsToRanges(a),e=[];for(c=0;c<d.length;c++)e.push.apply(e,this.eventRangeToSegs(d[c],b));return e},eventsToRanges:function(b){var c=this,d=ha(b),e=[];return a.each(d,function(a,b){b.length&&e.push.apply(e,fa(b[0])?c.eventsToInverseRanges(b):c.eventsToNormalRanges(b))}),e},eventsToNormalRanges:function(a){var b,c,d,e,f=this.view.calendar,g=[];for(b=0;b<a.length;b++)c=a[b],d=c.start.clone().stripZone(),e=f.getEventEnd(c).stripZone(),g.push({event:c,start:d,end:e,eventStartMS:+d,eventDurationMS:e-d});return g},eventsToInverseRanges:function(a){var b,c,d=this.view,e=d.start.clone().stripZone(),f=d.end.clone().stripZone(),g=this.eventsToNormalRanges(a),h=[],i=a[0],j=e;for(g.sort(ia),b=0;b<g.length;b++)c=g[b],c.start>j&&h.push({event:i,start:j,end:c.start}),j=c.end;return f>j&&h.push({event:i,start:j,end:f}),h},eventRangeToSegs:function(a,b){var c,d,e;for(c=b?b(a):this.rangeToSegs(a),d=0;d<c.length;d++)e=c[d],e.event=a.event,e.eventStartMS=a.eventStartMS,e.eventDurationMS=a.eventDurationMS;return c}}),Ca.compareSegs=ja,Ca.dataAttrPrefix="";var bb=ab.extend({numbersVisible:!1,bottomCoordPadding:0,breakOnWeeks:null,cellDates:null,dayToCellOffsets:null,rowEls:null,dayEls:null,helperEls:null,render:function(a){var b,c,d,e=this.view,f=this.rowCnt,g=this.colCnt,h=f*g,i="";for(b=0;f>b;b++)i+=this.dayRowHtml(b,a);for(this.el.html(i),this.rowEls=this.el.find(".fc-row"),this.dayEls=this.el.find(".fc-day"),c=0;h>c;c++)d=this.getCell(c),e.trigger("dayRender",null,d.start,this.dayEls.eq(c));ab.prototype.render.call(this)},destroy:function(){this.destroySegPopover(),ab.prototype.destroy.call(this)},dayRowHtml:function(a,b){var c=this.view,d=["fc-row","fc-week",c.widgetContentClass];return b&&d.push("fc-rigid"),'<div class="'+d.join(" ")+'"><div class="fc-bg"><table>'+this.rowHtml("day",a)+'</table></div><div class="fc-content-skeleton"><table>'+(this.numbersVisible?"<thead>"+this.rowHtml("number",a)+"</thead>":"")+"</table></div></div>"},dayCellHtml:function(a){return this.bgCellHtml(a)},computeColHeadFormat:function(){return this.rowCnt>1?"ddd":this.colCnt>1?this.view.opt("dayOfMonthFormat"):"dddd"},computeEventTimeFormat:function(){return this.view.opt("extraSmallTimeFormat")},computeDisplayEventEnd:function(){return 1==this.colCnt},updateCells:function(){var a,b,c,d;if(this.updateCellDates(),a=this.cellDates,this.breakOnWeeks){for(b=a[0].day(),d=1;d<a.length&&a[d].day()!=b;d++);c=Math.ceil(a.length/d)}else c=1,d=a.length;this.rowCnt=c,this.colCnt=d},updateCellDates:function(){for(var a=this.view,b=this.start.clone(),c=[],d=-1,e=[];b.isBefore(this.end);)a.isHiddenDay(b)?e.push(d+.5):(d++,e.push(d),c.push(b.clone())),b.add(1,"days");this.cellDates=c,this.dayToCellOffsets=e},computeCellRange:function(a){var b=this.colCnt,c=a.row*b+(this.isRTL?b-a.col-1:a.col),d=this.cellDates[c].clone(),e=d.clone().add(1,"day");return{start:d,end:e}},getRowEl:function(a){return this.rowEls.eq(a)},getColEl:function(a){return this.dayEls.eq(a)},getCellDayEl:function(a){return this.dayEls.eq(a.row*this.colCnt+a.col)},computeRowCoords:function(){var a=ab.prototype.computeRowCoords.call(this);return a[a.length-1].bottom+=this.bottomCoordPadding,a},rangeToSegs:function(a){var b,c,d,e,f,g,h,i,j,k,l=this.isRTL,m=this.rowCnt,n=this.colCnt,o=[];for(a=this.view.computeDayRange(a),b=this.dateToCellOffset(a.start),c=this.dateToCellOffset(a.end.subtract(1,"days")),d=0;m>d;d++)e=d*n,f=e+n-1,i=Math.max(e,b),j=Math.min(f,c),i=Math.ceil(i),j=Math.floor(j),j>=i&&(g=i===b,h=j===c,i-=e,j-=e,k={row:d,isStart:g,isEnd:h},l?(k.leftCol=n-j-1,k.rightCol=n-i-1):(k.leftCol=i,k.rightCol=j),o.push(k));return o},dateToCellOffset:function(a){var b=this.dayToCellOffsets,c=a.diff(this.start,"days");return 0>c?b[0]-1:c>=b.length?b[b.length-1]+1:b[c]},renderDrag:function(a,b){var c;return this.renderHighlight(this.view.calendar.ensureVisibleEventRange(a)),b&&!b.el.closest(this.el).length?(this.renderRangeHelper(a,b),c=this.view.opt("dragOpacity"),void 0!==c&&this.helperEls.css("opacity",c),!0):void 0},destroyDrag:function(){this.destroyHighlight(),this.destroyHelper()},renderEventResize:function(a,b){this.renderHighlight(a),this.renderRangeHelper(a,b)},destroyEventResize:function(){this.destroyHighlight(),this.destroyHelper()},renderHelper:function(b,c){var d,e=[],f=this.eventsToSegs([b]);f=this.renderFgSegEls(f),d=this.renderSegRows(f),this.rowEls.each(function(b,f){var g,h=a(f),i=a('<div class="fc-helper-skeleton"><table/></div>');g=c&&c.row===b?c.el.position().top:h.find(".fc-content-skeleton tbody").position().top,i.css("top",g).find("table").append(d[b].tbodyEl),h.append(i),e.push(i[0])}),this.helperEls=a(e)},destroyHelper:function(){this.helperEls&&(this.helperEls.remove(),this.helperEls=null)},fillSegTag:"td",renderFill:function(b,c){var d,e,f,g=[];for(c=this.renderFillSegEls(b,c),d=0;d<c.length;d++)e=c[d],f=this.renderFillRow(b,e),this.rowEls.eq(e.row).append(f),g.push(f[0]);return this.elsByFill[b]=a(g),c},renderFillRow:function(b,c){var d,e,f=this.colCnt,g=c.leftCol,h=c.rightCol+1;return d=a('<div class="fc-'+b.toLowerCase()+'-skeleton"><table><tr/></table></div>'),e=d.find("tr"),g>0&&e.append('<td colspan="'+g+'"/>'),e.append(c.el.attr("colspan",h-g)),f>h&&e.append('<td colspan="'+(f-h)+'"/>'),this.bookendCells(e,b),d}});bb.mixin({rowStructs:null,destroyEvents:function(){this.destroySegPopover(),ab.prototype.destroyEvents.apply(this,arguments)},getEventSegs:function(){return ab.prototype.getEventSegs.call(this).concat(this.popoverSegs||[])},renderBgSegs:function(b){var c=a.grep(b,function(a){return a.event.allDay});return ab.prototype.renderBgSegs.call(this,c)},renderFgSegs:function(b){var c;return b=this.renderFgSegEls(b),c=this.rowStructs=this.renderSegRows(b),this.rowEls.each(function(b,d){a(d).find(".fc-content-skeleton > table").append(c[b].tbodyEl)}),b},destroyFgSegs:function(){for(var a,b=this.rowStructs||[];a=b.pop();)a.tbodyEl.remove();this.rowStructs=null},renderSegRows:function(a){var b,c,d=[];for(b=this.groupSegRows(a),c=0;c<b.length;c++)d.push(this.renderSegRow(c,b[c]));return d},fgSegHtml:function(a,b){var c,d=this.view,e=a.event,f=d.isEventDraggable(e),g=!b&&e.allDay&&a.isEnd&&d.isEventResizable(e),h=this.getSegClasses(a,f,g),i=this.getEventSkinCss(e),j="";h.unshift("fc-day-grid-event"),!e.allDay&&a.isStart&&(j='<span class="fc-time">'+L(this.getEventTimeText(e))+"</span>");var k='<span class="eo-fullcalendar-screen-reader-text screen-reader-text"> '+L(this.getEventTimeText(e,"dddd, MMMM Do YYYY"))+" </span>";return c='<span class="fc-title">'+(L(e.title||"")||"&nbsp;")+"</span>",'<a class="'+h.join(" ")+'"'+(e.url?' href="'+L(e.url)+'"':"")+(i?' style="'+i+'"':"")+'><div class="fc-content">'+(this.isRTL?c+" "+j+k:k+j+" "+c)+"</div>"+(g?'<div class="fc-resizer"/>':"")+"</a>"},renderSegRow:function(b,c){function d(b){for(;b>g;)k=(r[e-1]||[])[g],k?k.attr("rowspan",parseInt(k.attr("rowspan")||1,10)+1):(k=a("<td/>"),h.append(k)),q[e][g]=k,r[e][g]=k,g++}var e,f,g,h,i,j,k,l=this.colCnt,m=this.buildSegLevels(c),n=Math.max(1,m.length),o=a("<tbody/>"),p=[],q=[],r=[];for(e=0;n>e;e++){if(f=m[e],g=0,h=a("<tr/>"),p.push([]),q.push([]),r.push([]),f)for(i=0;i<f.length;i++){for(j=f[i],d(j.leftCol),k=a('<td class="fc-event-container"/>').append(j.el),j.leftCol!=j.rightCol?k.attr("colspan",j.rightCol-j.leftCol+1):r[e][g]=k;g<=j.rightCol;)q[e][g]=k,p[e][g]=j,g++;h.append(k)}d(l),this.bookendCells(h,"eventSkeleton"),o.append(h)}return{row:b,tbodyEl:o,cellMatrix:q,segMatrix:p,segLevels:m,segs:c}},buildSegLevels:function(a){var b,c,d,e=[];for(a.sort(ja),b=0;b<a.length;b++){for(c=a[b],d=0;d<e.length&&la(c,e[d]);d++);c.level=d,(e[d]||(e[d]=[])).push(c)}for(d=0;d<e.length;d++)e[d].sort(ma);return e},groupSegRows:function(a){var b,c=[];for(b=0;b<this.rowCnt;b++)c.push([]);for(b=0;b<a.length;b++)c[a[b].row].push(a[b]);return c}}),bb.mixin({segPopover:null,popoverSegs:null,destroySegPopover:function(){this.segPopover&&this.segPopover.hide()},limitRows:function(a){var b,c,d=this.rowStructs||[];for(b=0;b<d.length;b++)this.unlimitRow(b),c=a?"number"==typeof a?a:this.computeRowLevelLimit(b):!1,c!==!1&&this.limitRow(b,c)},computeRowLevelLimit:function(a){var b,c,d=this.rowEls.eq(a),e=d.height(),f=this.rowStructs[a].tbodyEl.children();for(b=0;b<f.length;b++)if(c=f.eq(b).removeClass("fc-limited"),c.position().top+c.outerHeight()>e)return b;return!1},limitRow:function(b,c){function d(d){for(;d>x;)e=u.getCell(b,x),k=u.getCellSegs(e,c),k.length&&(n=g[c-1][x],t=u.renderMoreLink(e,k),s=a("<div/>").append(t),n.append(s),w.push(s[0])),x++}var e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u=this,v=this.rowStructs[b],w=[],x=0;if(c&&c<v.segLevels.length){for(f=v.segLevels[c-1],g=v.cellMatrix,h=v.tbodyEl.children().slice(c).addClass("fc-limited").get(),i=0;i<f.length;i++){for(j=f[i],d(j.leftCol),m=[],l=0;x<=j.rightCol;)e=this.getCell(b,x),k=this.getCellSegs(e,c),m.push(k),l+=k.length,x++;if(l){for(n=g[c-1][j.leftCol],o=n.attr("rowspan")||1,p=[],q=0;q<m.length;q++)r=a('<td class="fc-more-cell"/>').attr("rowspan",o),k=m[q],e=this.getCell(b,j.leftCol+q),t=this.renderMoreLink(e,[j].concat(k)),s=a("<div/>").append(t),r.append(s),p.push(r[0]),w.push(r[0]);n.addClass("fc-limited").after(a(p)),h.push(n[0])}}d(this.colCnt),v.moreEls=a(w),v.limitedEls=a(h)}},unlimitRow:function(a){var b=this.rowStructs[a];b.moreEls&&(b.moreEls.remove(),b.moreEls=null),b.limitedEls&&(b.limitedEls.removeClass("fc-limited"),b.limitedEls=null)},renderMoreLink:function(b,c){var d=this,e=this.view;return a('<a class="fc-more"/>').text(this.getMoreLinkText(c.length)).on("click",function(f){var g=e.opt("eventLimitClick"),h=b.start,i=a(this),j=d.getCellDayEl(b),k=d.getCellSegs(b),l=d.resliceDaySegs(k,h),m=d.resliceDaySegs(c,h);"function"==typeof g&&(g=e.trigger("eventLimitClick",null,{date:h,dayEl:j,moreEl:i,segs:l,hiddenSegs:m},f)),"popover"===g?d.showSegPopover(b,i,l):"string"==typeof g&&e.calendar.zoomTo(h,g)})},showSegPopover:function(a,b,c){var d,e,f=this,g=this.view,h=b.parent();d=1==this.rowCnt?g.el:this.rowEls.eq(a.row),e={className:"fc-more-popover",content:this.renderSegPopoverContent(a,c),parentEl:this.el,top:d.offset().top,autoHide:!0,viewportConstrain:g.opt("popoverViewportConstrain"),hide:function(){f.segPopover.destroy(),f.segPopover=null,f.popoverSegs=null}},this.isRTL?e.right=h.offset().left+h.outerWidth()+1:e.left=h.offset().left-1,this.segPopover=new Wa(e),this.segPopover.show()},renderSegPopoverContent:function(b,c){var d,e=this.view,f=e.opt("theme"),g=b.start.format(e.opt("dayPopoverFormat")),h=a('<div class="fc-header '+e.widgetHeaderClass+'"><span class="fc-close '+(f?"ui-icon ui-icon-closethick":"fc-icon fc-icon-x")+'"></span><span class="fc-title">'+L(g)+'</span><div class="fc-clear"/></div><div class="fc-body '+e.widgetContentClass+'"><div class="fc-event-container"></div></div>'),i=h.find(".fc-event-container");for(c=this.renderFgSegEls(c,!0),this.popoverSegs=c,d=0;d<c.length;d++)c[d].cell=b,i.append(c[d].el);return h},resliceDaySegs:function(b,c){var d=a.map(b,function(a){return a.event}),e=c.clone().stripTime(),f=e.clone().add(1,"days"),g={start:e,end:f};return this.eventsToSegs(d,function(a){var b=x(a,g);return b?[b]:[]})},getMoreLinkText:function(a){var b=this.view.opt("eventLimitText");return"function"==typeof b?b(a):"+"+a+" "+b},getCellSegs:function(a,b){for(var c,d=this.rowStructs[a.row].segMatrix,e=b||0,f=[];e<d.length;)c=d[e][a.col],c&&f.push(c),e++;return f}});var cb=ab.extend({slotDuration:null,snapDuration:null,minTime:null,maxTime:null,axisFormat:null,dayEls:null,slatEls:null,slatTops:null,helperEl:null,businessHourSegs:null,constructor:function(){ab.apply(this,arguments),this.processOptions()},render:function(){this.el.html(this.renderHtml()),this.dayEls=this.el.find(".fc-day"),this.slatEls=this.el.find(".fc-slats tr"),this.computeSlatTops(),this.renderBusinessHours(),ab.prototype.render.call(this)},renderBusinessHours:function(){var a=this.view.calendar.getBusinessHoursEvents();this.businessHourSegs=this.renderFill("businessHours",this.eventsToSegs(a),"bgevent")},renderHtml:function(){return'<div class="fc-bg"><table>'+this.rowHtml("slotBg")+'</table></div><div class="fc-slats"><table>'+this.slatRowHtml()+"</table></div>"},slotBgCellHtml:function(a){return this.bgCellHtml(a)},slatRowHtml:function(){for(var a,c,d,e=this.view,f=this.isRTL,g="",h=this.slotDuration.asMinutes()%15===0,i=b.duration(+this.minTime);i<this.maxTime;)a=this.start.clone().time(i),
4
  c=a.minutes(),d='<td class="fc-axis fc-time '+e.widgetContentClass+'" '+e.axisStyleAttr()+">"+(h&&c?"":"<span>"+L(a.format(this.axisFormat))+"</span>")+"</td>",g+="<tr "+(c?'class="fc-minor"':"")+">"+(f?"":d)+'<td class="'+e.widgetContentClass+'"/>'+(f?d:"")+"</tr>",i.add(this.slotDuration);return g},processOptions:function(){var a=this.view,c=a.opt("slotDuration"),d=a.opt("snapDuration");c=b.duration(c),d=d?b.duration(d):c,this.slotDuration=c,this.snapDuration=d,this.minTime=b.duration(a.opt("minTime")),this.maxTime=b.duration(a.opt("maxTime")),this.axisFormat=a.opt("axisFormat")||a.opt("smallTimeFormat")},computeColHeadFormat:function(){return this.colCnt>1?this.view.opt("dayOfMonthFormat"):"dddd"},computeEventTimeFormat:function(){return this.view.opt("noMeridiemTimeFormat")},computeDisplayEventEnd:function(){return!0},updateCells:function(){var a,b=this.view,c=[];for(a=this.start.clone();a.isBefore(this.end);)c.push({day:a.clone()}),a.add(1,"day"),a=b.skipHiddenDays(a);this.isRTL&&c.reverse(),this.colData=c,this.colCnt=c.length,this.rowCnt=Math.ceil((this.maxTime-this.minTime)/this.snapDuration)},computeCellRange:function(a){var b=this.computeSnapTime(a.row),c=this.view.calendar.rezoneDate(a.day).time(b),d=c.clone().add(this.snapDuration);return{start:c,end:d}},getColEl:function(a){return this.dayEls.eq(a)},computeSnapTime:function(a){return b.duration(this.minTime+this.snapDuration*a)},rangeToSegs:function(a){var b,c,d,e,f=this.colCnt,g=[];for(a={start:a.start.clone().stripZone(),end:a.end.clone().stripZone()},c=0;f>c;c++)d=this.colData[c].day,e={start:d.clone().time(this.minTime),end:d.clone().time(this.maxTime)},b=x(a,e),b&&(b.col=c,g.push(b));return g},resize:function(){this.computeSlatTops(),this.updateSegVerticals()},computeRowCoords:function(){var a,b,c=this.el.offset().top,d=[];for(a=0;a<this.rowCnt;a++)b={top:c+this.computeTimeTop(this.computeSnapTime(a))},a>0&&(d[a-1].bottom=b.top),d.push(b);return b.bottom=b.top+this.computeTimeTop(this.computeSnapTime(a)),d},computeDateTop:function(a,c){return this.computeTimeTop(b.duration(a.clone().stripZone()-c.clone().stripTime()))},computeTimeTop:function(a){var b,c,d,e,f=(a-this.minTime)/this.slotDuration;return f=Math.max(0,f),f=Math.min(this.slatEls.length,f),b=Math.floor(f),c=f-b,d=this.slatTops[b],c?(e=this.slatTops[b+1],d+(e-d)*c):d},computeSlatTops:function(){var b,c=[];this.slatEls.each(function(d,e){b=a(e).position().top,c.push(b)}),c.push(b+this.slatEls.last().outerHeight()),this.slatTops=c},renderDrag:function(a,b){var c;return b?(this.renderRangeHelper(a,b),c=this.view.opt("dragOpacity"),void 0!==c&&this.helperEl.css("opacity",c),!0):void this.renderHighlight(this.view.calendar.ensureVisibleEventRange(a))},destroyDrag:function(){this.destroyHelper(),this.destroyHighlight()},renderEventResize:function(a,b){this.renderRangeHelper(a,b)},destroyEventResize:function(){this.destroyHelper()},renderHelper:function(b,c){var d,e,f,g,h=this.eventsToSegs([b]);for(h=this.renderFgSegEls(h),d=this.renderSegTable(h),e=0;e<h.length;e++)f=h[e],c&&c.col===f.col&&(g=c.el,f.el.css({left:g.css("left"),right:g.css("right"),"margin-left":g.css("margin-left"),"margin-right":g.css("margin-right")}));this.helperEl=a('<div class="fc-helper-skeleton"/>').append(d).appendTo(this.el)},destroyHelper:function(){this.helperEl&&(this.helperEl.remove(),this.helperEl=null)},renderSelection:function(a){this.view.opt("selectHelper")?this.renderRangeHelper(a):this.renderHighlight(a)},destroySelection:function(){this.destroyHelper(),this.destroyHighlight()},renderFill:function(b,c,d){var e,f,g,h,i,j,k,l,m,n;if(c.length){for(c=this.renderFillSegEls(b,c),e=this.groupSegCols(c),d=d||b.toLowerCase(),f=a('<div class="fc-'+d+'-skeleton"><table><tr/></table></div>'),g=f.find("tr"),h=0;h<e.length;h++)if(i=e[h],j=a("<td/>").appendTo(g),i.length)for(k=a('<div class="fc-'+d+'-container"/>').appendTo(j),l=this.colData[h].day,m=0;m<i.length;m++)n=i[m],k.append(n.el.css({top:this.computeDateTop(n.start,l),bottom:-this.computeDateTop(n.end,l)}));this.bookendCells(g,b),this.el.append(f),this.elsByFill[b]=f}return c}});cb.mixin({eventSkeletonEl:null,renderFgSegs:function(b){return b=this.renderFgSegEls(b),this.el.append(this.eventSkeletonEl=a('<div class="fc-content-skeleton"/>').append(this.renderSegTable(b))),b},destroyFgSegs:function(a){this.eventSkeletonEl&&(this.eventSkeletonEl.remove(),this.eventSkeletonEl=null)},renderSegTable:function(b){var c,d,e,f,g,h,i=a("<table><tr/></table>"),j=i.find("tr");for(c=this.groupSegCols(b),this.computeSegVerticals(b),f=0;f<c.length;f++){for(g=c[f],na(g),h=a('<div class="fc-event-container"/>'),d=0;d<g.length;d++)e=g[d],e.el.css(this.generateSegPositionCss(e)),e.bottom-e.top<30&&e.el.addClass("fc-short"),h.append(e.el);j.append(a("<td/>").append(h))}return this.bookendCells(j,"eventSkeleton"),i},updateSegVerticals:function(){var a,b=(this.segs||[]).concat(this.businessHourSegs||[]);for(this.computeSegVerticals(b),a=0;a<b.length;a++)b[a].el.css(this.generateSegVerticalCss(b[a]))},computeSegVerticals:function(a){var b,c;for(b=0;b<a.length;b++)c=a[b],c.top=this.computeDateTop(c.start,c.start),c.bottom=this.computeDateTop(c.end,c.start)},fgSegHtml:function(a,b){var c,d,e,f=this.view,g=a.event,h=f.isEventDraggable(g),i=!b&&a.isEnd&&f.isEventResizable(g),j=this.getSegClasses(a,h,i),k=this.getEventSkinCss(g);return j.unshift("fc-time-grid-event"),f.isMultiDayEvent(g)?(a.isStart||a.isEnd)&&(c=this.getEventTimeText(a),d=this.getEventTimeText(a,"LT"),e=this.getEventTimeText({start:a.start})):(c=this.getEventTimeText(g),d=this.getEventTimeText(g,"LT"),e=this.getEventTimeText({start:g.start})),'<a class="'+j.join(" ")+'"'+(g.url?' href="'+L(g.url)+'"':"")+(k?' style="'+k+'"':"")+'><div class="fc-content">'+(c?'<div class="fc-time" data-start="'+L(e)+'" data-full="'+L(d)+'"><span>'+L(c)+"</span></div>":"")+(g.title?'<div class="fc-title">'+L(g.title)+"</div>":"")+'</div><div class="fc-bg"/>'+(i?'<div class="fc-resizer"/>':"")+"</a>"},generateSegPositionCss:function(a){var b,c,d=this.view.opt("slotEventOverlap"),e=a.backwardCoord,f=a.forwardCoord,g=this.generateSegVerticalCss(a);return d&&(f=Math.min(1,e+2*(f-e))),this.isRTL?(b=1-f,c=e):(b=e,c=1-f),g.zIndex=a.level+1,g.left=100*b+"%",g.right=100*c+"%",d&&a.forwardPressure&&(g[this.isRTL?"marginLeft":"marginRight"]=20),g},generateSegVerticalCss:function(a){return{top:a.top,bottom:-a.bottom}},groupSegCols:function(a){var b,c=[];for(b=0;b<this.colCnt;b++)c.push([]);for(b=0;b<a.length;b++)c[a[b].col].push(a[b]);return c}});var db=Ca.View=ca.extend({type:null,name:null,title:null,calendar:null,options:null,coordMap:null,el:null,start:null,end:null,intervalStart:null,intervalEnd:null,intervalDuration:null,intervalUnit:null,isSelected:!1,scrollerEl:null,scrollTop:null,widgetHeaderClass:null,widgetContentClass:null,highlightStateClass:null,nextDayThreshold:null,isHiddenDayHash:null,documentMousedownProxy:null,constructor:function(c,d,e){this.calendar=c,this.options=d,this.type=this.name=e,this.nextDayThreshold=b.duration(this.opt("nextDayThreshold")),this.initTheming(),this.initHiddenDays(),this.documentMousedownProxy=a.proxy(this,"documentMousedown"),this.initialize()},initialize:function(){},opt:function(b){var c;return c=this.options[b],void 0!==c?c:(c=this.calendar.options[b],a.isPlainObject(c)&&!e(b)?y(c,this.type):c)},trigger:function(a,b){var c=this.calendar;return c.trigger.apply(c,[a,b||this].concat(Array.prototype.slice.call(arguments,2),[this]))},setDate:function(a){this.setRange(this.computeRange(a))},setRange:function(b){a.extend(this,b),this.updateTitle()},computeRange:function(a){var c,d,e=b.duration(this.opt("duration")||this.constructor.duration||{days:1}),f=B(e),g=a.clone().startOf(f),h=g.clone().add(e);return/year|month|week|day/.test(f)?(g.stripTime(),h.stripTime()):(g.hasTime()||(g=this.calendar.rezoneDate(g)),h.hasTime()||(h=this.calendar.rezoneDate(h))),c=g.clone(),c=this.skipHiddenDays(c),d=h.clone(),d=this.skipHiddenDays(d,-1,!0),{intervalDuration:e,intervalUnit:f,intervalStart:g,intervalEnd:h,start:c,end:d}},computePrevDate:function(a){return this.massageCurrentDate(a.clone().startOf(this.intervalUnit).subtract(this.intervalDuration),-1)},computeNextDate:function(a){return this.massageCurrentDate(a.clone().startOf(this.intervalUnit).add(this.intervalDuration))},massageCurrentDate:function(a,c){return this.intervalDuration<=b.duration({days:1})&&this.isHiddenDay(a)&&(a=this.skipHiddenDays(a,c),a.startOf("day")),a},updateTitle:function(){this.title=this.computeTitle()},computeTitle:function(){return this.formatRange({start:this.intervalStart,end:this.intervalEnd},this.opt("titleFormat")||this.computeTitleFormat(),this.opt("titleRangeSeparator"))},computeTitleFormat:function(){return"year"==this.intervalUnit?"YYYY":"month"==this.intervalUnit?this.opt("monthYearFormat"):this.intervalDuration.as("days")>1?"ll":"LL"},formatRange:function(a,b,c){var d=a.end;return d.hasTime()||(d=d.clone().subtract(1)),Z(a.start,d,b,c,this.opt("isRTL"))},renderView:function(){this.render(),this.updateSize(),this.initializeScroll(),this.trigger("viewRender",this,this,this.el),a(document).on(m(),this.documentMousedownProxy)},render:function(){},destroyView:function(){this.unselect(),this.destroyViewEvents(),this.destroy(),this.trigger("viewDestroy",this,this,this.el),a(document).off(m(),this.documentMousedownProxy)},destroy:function(){this.el.empty()},initTheming:function(){var a=this.opt("theme")?"ui":"fc";this.widgetHeaderClass=a+"-widget-header",this.widgetContentClass=a+"-widget-content",this.highlightStateClass=a+"-state-highlight"},updateSize:function(a){a&&this.recordScroll(),this.updateHeight(),this.updateWidth()},updateWidth:function(){},updateHeight:function(){var a=this.calendar;this.setHeight(a.getSuggestedViewHeight(),a.isHeightAuto())},setHeight:function(a,b){},computeScrollerHeight:function(a,b){var c,d;return b=b||this.scrollerEl,c=this.el.add(b),c.css({position:"relative",left:-1}),d=this.el.outerHeight()-b.height(),c.css({position:"",left:""}),a-d},initializeScroll:function(){},recordScroll:function(){this.scrollerEl&&(this.scrollTop=this.scrollerEl.scrollTop())},restoreScroll:function(){null!==this.scrollTop&&this.scrollerEl.scrollTop(this.scrollTop)},renderViewEvents:function(a){this.renderEvents(a),this.eventSegEach(function(a){this.trigger("eventAfterRender",a.event,a.event,a.el)}),this.trigger("eventAfterAllRender")},renderEvents:function(){},destroyViewEvents:function(){this.eventSegEach(function(a){this.trigger("eventDestroy",a.event,a.event,a.el)}),this.destroyEvents()},destroyEvents:function(){},resolveEventEl:function(b,c){var d=this.trigger("eventRender",b,b,c);return d===!1?c=null:d&&d!==!0&&(c=a(d)),c},showEvent:function(a){this.eventSegEach(function(a){a.el.css("visibility","")},a)},hideEvent:function(a){this.eventSegEach(function(a){a.el.css("visibility","hidden")},a)},eventSegEach:function(a,b){var c,d=this.getEventSegs();for(c=0;c<d.length;c++)b&&d[c].event._id!==b._id||a.call(this,d[c])},getEventSegs:function(){return[]},isEventDraggable:function(a){var b=a.source||{};return K(a.startEditable,b.startEditable,this.opt("eventStartEditable"),a.editable,b.editable,this.opt("editable"))},reportEventDrop:function(a,b,c,d){var e=this.calendar,f=e.mutateEvent(a,b),g=function(){f.undo(),e.reportEventChange()};this.triggerEventDrop(a,f.dateDelta,g,c,d),e.reportEventChange()},triggerEventDrop:function(a,b,c,d,e){this.trigger("eventDrop",d[0],a,b,c,e,{})},reportExternalDrop:function(b,c,d,e,f){var g,h,i=b.eventProps;i&&(g=a.extend({},i,c),h=this.calendar.renderEvent(g,b.stick)[0]),this.triggerExternalDrop(h,c,d,e,f)},triggerExternalDrop:function(a,b,c,d,e){this.trigger("drop",c[0],b.start,d,e),a&&this.trigger("eventReceive",null,a)},renderDrag:function(a,b){},destroyDrag:function(){},isEventResizable:function(a){var b=a.source||{};return K(a.durationEditable,b.durationEditable,this.opt("eventDurationEditable"),a.editable,b.editable,this.opt("editable"))},reportEventResize:function(a,b,c,d){var e=this.calendar,f=e.mutateEvent(a,{end:b}),g=function(){f.undo(),e.reportEventChange()};this.triggerEventResize(a,f.durationDelta,g,c,d),e.reportEventChange()},triggerEventResize:function(a,b,c,d,e){this.trigger("eventResize",d[0],a,b,c,e,{})},select:function(a,b){this.unselect(b),this.renderSelection(a),this.reportSelection(a,b)},renderSelection:function(a){},reportSelection:function(a,b){this.isSelected=!0,this.trigger("select",null,a.start,a.end,b)},unselect:function(a){this.isSelected&&(this.isSelected=!1,this.destroySelection(),this.trigger("unselect",null,a))},destroySelection:function(){},documentMousedown:function(b){var c;this.isSelected&&this.opt("unselectAuto")&&w(b)&&(c=this.opt("unselectCancel"),c&&a(b.target).closest(c).length||this.unselect(b))},initHiddenDays:function(){var b,c=this.opt("hiddenDays")||[],d=[],e=0;for(this.opt("weekends")===!1&&c.push(0,6),b=0;7>b;b++)(d[b]=-1!==a.inArray(b,c))||e++;if(!e)throw"invalid hiddenDays";this.isHiddenDayHash=d},isHiddenDay:function(a){return b.isMoment(a)&&(a=a.day()),this.isHiddenDayHash[a]},skipHiddenDays:function(a,b,c){var d=a.clone();for(b=b||1;this.isHiddenDayHash[(d.day()+(c?b:0)+7)%7];)d.add(b,"days");return d},computeDayRange:function(a){var b,c=a.start.clone().stripTime(),d=a.end,e=null;return d&&(e=d.clone().stripTime(),b=+d.time(),b&&b>=this.nextDayThreshold&&e.add(1,"days")),(!d||c>=e)&&(e=c.clone().add(1,"days")),{start:c,end:e}},isMultiDayEvent:function(a){var b=this.computeDayRange(a);return b.end.diff(b.start,"days")>1}});Ca.sourceNormalizers=[],Ca.sourceFetchers=[];var eb={dataType:"json",cache:!1},fb=1,gb=Da.basic=db.extend({dayGrid:null,dayNumbersVisible:!1,weekNumbersVisible:!1,weekNumberWidth:null,headRowEl:null,initialize:function(){this.dayGrid=new bb(this),this.coordMap=this.dayGrid.coordMap},setRange:function(a){db.prototype.setRange.call(this,a),this.dayGrid.breakOnWeeks=/year|month|week/.test(this.intervalUnit),this.dayGrid.setRange(a)},computeRange:function(a){var b=db.prototype.computeRange.call(this,a);return/year|month/.test(b.intervalUnit)&&(b.start.startOf("week"),b.start=this.skipHiddenDays(b.start),b.end.weekday()&&(b.end.add(1,"week").startOf("week"),b.end=this.skipHiddenDays(b.end,-1,!0))),b},render:function(){this.dayNumbersVisible=this.dayGrid.rowCnt>1,this.weekNumbersVisible=this.opt("weekNumbers"),this.dayGrid.numbersVisible=this.dayNumbersVisible||this.weekNumbersVisible,this.el.addClass("fc-basic-view").html(this.renderHtml()),this.headRowEl=this.el.find("thead .fc-row"),this.scrollerEl=this.el.find(".fc-day-grid-container"),this.dayGrid.coordMap.containerEl=this.scrollerEl,this.dayGrid.el=this.el.find(".fc-day-grid"),this.dayGrid.render(this.hasRigidRows())},destroy:function(){this.dayGrid.destroy(),db.prototype.destroy.call(this)},renderHtml:function(){return'<table><thead><tr><td class="'+this.widgetHeaderClass+'">'+this.dayGrid.headHtml()+'</td></tr></thead><tbody><tr><td class="'+this.widgetContentClass+'"><div class="fc-day-grid-container"><div class="fc-day-grid"/></div></td></tr></tbody></table>'},headIntroHtml:function(){return this.weekNumbersVisible?'<th class="fc-week-number '+this.widgetHeaderClass+'" '+this.weekNumberStyleAttr()+"><span>"+L(this.opt("weekNumberTitle"))+"</span></th>":void 0},numberIntroHtml:function(a){return this.weekNumbersVisible?'<td class="fc-week-number" '+this.weekNumberStyleAttr()+"><span>"+this.calendar.calculateWeekNumber(this.dayGrid.getCell(a,0).start)+"</span></td>":void 0},dayIntroHtml:function(){return this.weekNumbersVisible?'<td class="fc-week-number '+this.widgetContentClass+'" '+this.weekNumberStyleAttr()+"></td>":void 0},introHtml:function(){return this.weekNumbersVisible?'<td class="fc-week-number" '+this.weekNumberStyleAttr()+"></td>":void 0},numberCellHtml:function(a){var b,c=a.start;return this.dayNumbersVisible?(b=this.dayGrid.getDayClasses(c),b.unshift("fc-day-number"),'<td class="'+b.join(" ")+'" data-date="'+c.format()+'">'+c.date()+"</td>"):"<td/>"},weekNumberStyleAttr:function(){return null!==this.weekNumberWidth?'style="width:'+this.weekNumberWidth+'px"':""},hasRigidRows:function(){var a=this.opt("eventLimit");return a&&"number"!=typeof a},updateWidth:function(){this.weekNumbersVisible&&(this.weekNumberWidth=r(this.el.find(".fc-week-number")))},setHeight:function(a,b){var c,d=this.opt("eventLimit");t(this.scrollerEl),h(this.headRowEl),this.dayGrid.destroySegPopover(),d&&"number"==typeof d&&this.dayGrid.limitRows(d),c=this.computeScrollerHeight(a),this.setGridHeight(c,b),d&&"number"!=typeof d&&this.dayGrid.limitRows(d),!b&&s(this.scrollerEl,c)&&(g(this.headRowEl,v(this.scrollerEl)),c=this.computeScrollerHeight(a),this.scrollerEl.height(c),this.restoreScroll())},setGridHeight:function(a,b){b?q(this.dayGrid.rowEls):p(this.dayGrid.rowEls,a,!0)},renderEvents:function(a){this.dayGrid.renderEvents(a),this.updateHeight()},getEventSegs:function(){return this.dayGrid.getEventSegs()},destroyEvents:function(){this.recordScroll(),this.dayGrid.destroyEvents()},renderDrag:function(a,b){return this.dayGrid.renderDrag(a,b)},destroyDrag:function(){this.dayGrid.destroyDrag()},renderSelection:function(a){this.dayGrid.renderSelection(a)},destroySelection:function(){this.dayGrid.destroySelection()}});c({fixedWeekCount:!0});var hb=Da.month=gb.extend({computeRange:function(a){var b,c=gb.prototype.computeRange.call(this,a);return this.isFixedWeeks()&&(b=Math.ceil(c.end.diff(c.start,"weeks",!0)),c.end.add(6-b,"weeks")),c},setGridHeight:function(a,b){b=b||"variable"===this.opt("weekMode"),b&&(a*=this.rowCnt/6),p(this.dayGrid.rowEls,a,!b)},isFixedWeeks:function(){var a=this.opt("weekMode");return a?"fixed"===a:this.opt("fixedWeekCount")}});hb.duration={months:1},Da.basicWeek={type:"basic",duration:{weeks:1}},Da.basicDay={type:"basic",duration:{days:1}},c({allDaySlot:!0,allDayText:"all-day",scrollTime:"06:00:00",slotDuration:"00:30:00",minTime:"00:00:00",maxTime:"24:00:00",slotEventOverlap:!0});var ib=5;Da.agenda=db.extend({timeGrid:null,dayGrid:null,axisWidth:null,noScrollRowEls:null,bottomRuleEl:null,bottomRuleHeight:null,initialize:function(){this.timeGrid=new cb(this),this.opt("allDaySlot")?(this.dayGrid=new bb(this),this.coordMap=new Ya([this.dayGrid.coordMap,this.timeGrid.coordMap])):this.coordMap=this.timeGrid.coordMap},setRange:function(a){db.prototype.setRange.call(this,a),this.timeGrid.setRange(a),this.dayGrid&&this.dayGrid.setRange(a)},render:function(){this.el.addClass("fc-agenda-view").html(this.renderHtml()),this.scrollerEl=this.el.find(".fc-time-grid-container"),this.timeGrid.coordMap.containerEl=this.scrollerEl,this.timeGrid.el=this.el.find(".fc-time-grid"),this.timeGrid.render(),this.bottomRuleEl=a('<hr class="'+this.widgetHeaderClass+'"/>').appendTo(this.timeGrid.el),this.dayGrid&&(this.dayGrid.el=this.el.find(".fc-day-grid"),this.dayGrid.render(),this.dayGrid.bottomCoordPadding=this.dayGrid.el.next("hr").outerHeight()),this.noScrollRowEls=this.el.find(".fc-row:not(.fc-scroller *)")},destroy:function(){this.timeGrid.destroy(),this.dayGrid&&this.dayGrid.destroy(),db.prototype.destroy.call(this)},renderHtml:function(){return'<table><thead><tr><td class="'+this.widgetHeaderClass+'">'+this.timeGrid.headHtml()+'</td></tr></thead><tbody><tr><td class="'+this.widgetContentClass+'">'+(this.dayGrid?'<div class="fc-day-grid"/><hr class="'+this.widgetHeaderClass+'"/>':"")+'<div class="fc-time-grid-container"><div class="fc-time-grid"/></div></td></tr></tbody></table>'},headIntroHtml:function(){var a,b,c,d;return this.opt("weekNumbers")?(a=this.timeGrid.getCell(0).start,b=this.calendar.calculateWeekNumber(a),c=this.opt("weekNumberTitle"),d=this.opt("isRTL")?b+c:c+b,'<th class="fc-axis fc-week-number '+this.widgetHeaderClass+'" '+this.axisStyleAttr()+"><span>"+L(d)+"</span></th>"):'<th class="fc-axis '+this.widgetHeaderClass+'" '+this.axisStyleAttr()+"></th>"},dayIntroHtml:function(){return'<td class="fc-axis '+this.widgetContentClass+'" '+this.axisStyleAttr()+"><span>"+(this.opt("allDayHtml")||L(this.opt("allDayText")))+"</span></td>"},slotBgIntroHtml:function(){return'<td class="fc-axis '+this.widgetContentClass+'" '+this.axisStyleAttr()+"></td>"},introHtml:function(){return'<td class="fc-axis" '+this.axisStyleAttr()+"></td>"},axisStyleAttr:function(){return null!==this.axisWidth?'style="width:'+this.axisWidth+'px"':""},updateSize:function(a){a&&this.timeGrid.resize(),db.prototype.updateSize.call(this,a)},updateWidth:function(){this.axisWidth=r(this.el.find(".fc-axis"))},setHeight:function(a,b){var c,d;null===this.bottomRuleHeight&&(this.bottomRuleHeight=this.bottomRuleEl.outerHeight()),this.bottomRuleEl.hide(),this.scrollerEl.css("overflow",""),t(this.scrollerEl),h(this.noScrollRowEls),this.dayGrid&&(this.dayGrid.destroySegPopover(),c=this.opt("eventLimit"),c&&"number"!=typeof c&&(c=ib),c&&this.dayGrid.limitRows(c)),b||(d=this.computeScrollerHeight(a),s(this.scrollerEl,d)?(g(this.noScrollRowEls,v(this.scrollerEl)),d=this.computeScrollerHeight(a),this.scrollerEl.height(d),this.restoreScroll()):(this.scrollerEl.height(d).css("overflow","hidden"),this.bottomRuleEl.show()))},initializeScroll:function(){function a(){c.scrollerEl.scrollTop(e)}var c=this,d=b.duration(this.opt("scrollTime")),e=this.timeGrid.computeTimeTop(d);e=Math.ceil(e),e&&e++,a(),setTimeout(a,0)},renderEvents:function(a){var b,c,d=[],e=[],f=[];for(c=0;c<a.length;c++)a[c].allDay?d.push(a[c]):e.push(a[c]);b=this.timeGrid.renderEvents(e),this.dayGrid&&(f=this.dayGrid.renderEvents(d)),this.updateHeight()},getEventSegs:function(){return this.timeGrid.getEventSegs().concat(this.dayGrid?this.dayGrid.getEventSegs():[])},destroyEvents:function(){this.recordScroll(),this.timeGrid.destroyEvents(),this.dayGrid&&this.dayGrid.destroyEvents()},renderDrag:function(a,b){return a.start.hasTime()?this.timeGrid.renderDrag(a,b):this.dayGrid?this.dayGrid.renderDrag(a,b):void 0},destroyDrag:function(){this.timeGrid.destroyDrag(),this.dayGrid&&this.dayGrid.destroyDrag()},renderSelection:function(a){a.start.hasTime()||a.end.hasTime()?this.timeGrid.renderSelection(a):this.dayGrid&&this.dayGrid.renderSelection(a)},destroySelection:function(){this.timeGrid.destroySelection(),this.dayGrid&&this.dayGrid.destroySelection()}}),Da.agendaWeek={type:"agenda",duration:{weeks:1}},Da.agendaDay={type:"agenda",duration:{days:1}};var jb=Da.list=db.extend({dayGrid:null,weekNumberWidth:null,headRowEl:null,defultEventLimit:5,viewDateOnLeft:!1,initialize:function(){this.dayGrid=new bb(this),this.coordMap=this.dayGrid.coordMap},setRange:function(a){db.prototype.setRange.call(this,a),this.dayGrid.breakOnWeeks=/year|month|week/.test(this.intervalUnit),this.dayGrid.setRange(a)},render:function(){this.dayGrid.colCnt=1,this.dayGrid.rowCnt=this.dayGrid.cellDates.length,this.dayGrid.numbersVisible=!0,this.opt("viewDateOnLeft")?(this.viewDateOnLeft=this.opt("viewDateOnLeft"),this.el.removeClass("fc-display-date-above")):this.el.addClass("fc-display-date-above"),this.el.addClass("fc-basic-view").html(this.renderHtml()),this.headRowEl=this.el.find("thead .fc-row"),this.scrollerEl=this.el.find(".fc-day-grid-container"),this.dayGrid.coordMap.containerEl=this.scrollerEl,this.dayGrid.el=this.el.find(".fc-day-grid"),this.dayGrid.render(this.hasRigidRows()),db.prototype.render.call(this)},destroy:function(){this.dayGrid.destroy(),db.prototype.destroy.call(this)},renderHtml:function(){return'<table><tbody><tr><td class="'+this.widgetContentClass+'"><div class="fc-day-grid-container"><div class="fc-day-grid"/></div></td></tr></tbody></table>'},headIntroHtml:function(){return this.viewDateOnLeft===!0?'<th class="fc-week-number '+this.widgetHeaderClass+'" '+this.weekNumberStyleAttr()+"><span></span></th>":""},numberIntroHtml:function(a){return this.viewDateOnLeft===!0?'<td class="fc-week-number" '+this.weekNumberStyleAttr()+"><span>"+this.dayGrid.getCell(a,0).start.format("ddd MMM D, YYYY")+"</span></td>":""},dayIntroHtml:function(){return this.viewDateOnLeft===!0?'<td class="fc-week-number '+this.widgetContentClass+'" '+this.weekNumberStyleAttr()+"></td>":""},introHtml:function(){return this.viewDateOnLeft===!0?'<td class="fc-week-number" '+this.weekNumberStyleAttr()+"></td>":""},numberCellHtml:function(a){if(this.viewDateOnLeft===!0)return"<td/>";var b,c=a.start;return b=this.dayGrid.getDayClasses(c),b.unshift("fc-day-number"),'<td class="'+b.join(" ")+'" data-date="'+c.format()+'"><span class="fc-list-header-left">'+c.format("dddd")+'</span><span class="fc-list-header-right">'+c.format("MMM D")+"</span></td>"},weekNumberStyleAttr:function(){return null!==this.weekNumberWidth?'style="width:'+this.weekNumberWidth+'px"':""},hasRigidRows:function(){var a=this.opt("eventLimit");return a===!0&&(a=this.defultEventLimit),a&&"number"!=typeof a},updateWidth:function(){this.weekNumberWidth=r(this.el.find(".fc-week-number"))},setHeight:function(a,b){var c=this.opt("eventLimit");c===!0&&(c=this.defultEventLimit);var d;t(this.scrollerEl),h(this.headRowEl),this.dayGrid.destroySegPopover(),c&&"number"==typeof c&&this.dayGrid.limitRows(c),d=this.computeScrollerHeight(a),this.setGridHeight(d,b),c&&"number"!=typeof c&&this.dayGrid.limitRows(c),!b&&s(this.scrollerEl,d)&&(g(this.headRowEl,v(this.scrollerEl)),d=this.computeScrollerHeight(a),this.scrollerEl.height(d),this.restoreScroll())},setGridHeight:function(a,b){b?q(this.dayGrid.rowEls):p(this.dayGrid.rowEls,a,!0)},renderEvents:function(a){this.dayGrid.renderEvents(a),this.updateHeight(),db.prototype.renderEvents.call(this,a)},getSegs:function(){return this.dayGrid.getSegs()},destroyEvents:function(){db.prototype.destroyEvents.call(this),this.recordScroll(),this.dayGrid.destroyEvents()},renderDrag:function(a,b,c){return this.dayGrid.renderDrag(a,b,c)},destroyDrag:function(){this.dayGrid.destroyDrag()},renderSelection:function(a,b){this.dayGrid.renderSelection(a,b)},destroySelection:function(){this.dayGrid.destroySelection()}});jb.duration={months:1},Da.listMonth={type:"list",duration:{months:1}},Da.listWeek={type:"list",duration:{weeks:1}},Da.listDay={type:"list",duration:{days:1}}});
1
+ /*! event-organiser 3.10.0-0-g5f45c47 2020-07-22 07:59 */
2
  !function(a){"function"==typeof define&&define.amd?define(["jquery","moment"],a):a(jQuery,moment)}(function(a,b){function c(a){d(za,a)}function d(b){function c(c,f){a.isPlainObject(f)&&a.isPlainObject(b[c])&&!e(c)?b[c]=d({},b[c],f):void 0!==f&&(b[c]=f)}for(var f=1;f<arguments.length;f++)a.each(arguments[f],c);return b}function e(a){return/(Time|Duration)$/.test(a)}function f(a){var c=b.localeData||b.langData;return c.call(b,a)||c.call(b,"en")}function g(a,b){b.left&&a.css({"border-left-width":1,"margin-left":b.left-1}),b.right&&a.css({"border-right-width":1,"margin-right":b.right-1})}function h(a){a.css({"margin-left":"","margin-right":"","border-left-width":"","border-right-width":""})}function i(){a("body").addClass("fc-not-allowed")}function j(){a("body").removeClass("fc-not-allowed")}function k(a){return"pointerdown"==a.type||"pointerup"==a.type||"pointermove"==a.type?"touch"===a.originalEvent.pointerType?!0:!1:"touchstart"==a.type||"touchmove"==a.type||"touchend"==a.type||"touchcancel"==a.type?!0:!1}function l(a){var b={x:0,y:0};if("pointerdown"==a.type||"pointerup"==a.type||"pointermove"==a.type||"mousedown"==a.type||"mouseup"==a.type||"mousemove"==a.type||"mouseover"==a.type||"mouseout"==a.type||"mouseenter"==a.type||"mouseleave"==a.type)b.x=a.pageX,b.y=a.pageY;else if(k(a)){var c=a.originalEvent.touches[0]||a.originalEvent.changedTouches[0];b.x=c.pageX,b.y=c.pageY}return b}function m(){return window.navigator.msPointerEnabled?"pointerdown":!Ka&&"ontouchstart"in document.documentElement?"touchstart":"mousedown"}function n(){return window.navigator.msPointerEnabled?"pointerup":!Ka&&"ontouchstart"in document.documentElement?"touchend":"mouseup"}function o(){return window.navigator.msPointerEnabled?"pointermove":!Ka&&"ontouchstart"in document.documentElement?"touchmove":"mousemove"}function p(b,c,d){var e=Math.floor(c/b.length),f=Math.floor(c-e*(b.length-1)),g=[],h=[],i=[],j=0;q(b),b.each(function(c,d){var k=c===b.length-1?f:e,l=a(d).outerHeight(!0);k>l?(g.push(d),h.push(l),i.push(a(d).height())):j+=l}),d&&(c-=j,e=Math.floor(c/g.length),f=Math.floor(c-e*(g.length-1))),a(g).each(function(b,c){var d=b===g.length-1?f:e,j=h[b],k=i[b],l=d-(j-k);d>j&&a(c).height(l)})}function q(a){a.height("")}function r(b){var c=0;return b.find("> *").each(function(b,d){var e=a(d).outerWidth();e>c&&(c=e)}),c++,b.width(c),c}function s(a,b){return a.height(b).addClass("fc-scroller"),a[0].scrollHeight-1>a[0].clientHeight?!0:(t(a),!1)}function t(a){a.height("").removeClass("fc-scroller")}function u(b){var c=b.css("position"),d=b.parents().filter(function(){var b=a(this);return/(auto|scroll)/.test(b.css("overflow")+b.css("overflow-y")+b.css("overflow-x"))}).eq(0);return"fixed"!==c&&d.length?d:a(b[0].ownerDocument||document)}function v(a){var b=a.offset().left,c=b+a.width(),d=a.children(),e=d.offset().left,f=e+d.outerWidth();return{left:e-b,right:c-f}}function w(a){return k(a)?!0:1==a.which&&!a.ctrlKey}function x(a,b){var c,d,e,f,g=a.start,h=a.end,i=b.start,j=b.end;return h>i&&j>g?(g>=i?(c=g.clone(),e=!0):(c=i.clone(),e=!1),j>=h?(d=h.clone(),f=!0):(d=j.clone(),f=!1),{start:c,end:d,isStart:e,isEnd:f}):void 0}function y(a,b){if(a=a||{},void 0!==a[b])return a[b];for(var c,d=b.split(/(?=[A-Z])/),e=d.length-1;e>=0;e--)if(c=a[d[e].toLowerCase()],void 0!==c)return c;return a["default"]}function z(a,c){return b.duration({days:a.clone().stripTime().diff(c.clone().stripTime(),"days"),ms:a.time()-c.time()})}function A(a,c){return b.duration({days:a.clone().stripTime().diff(c.clone().stripTime(),"days")})}function B(a,b){var c,d,e;for(c=0;c<Na.length&&(d=Na[c],e=C(d,a,b),!(e>=1&&P(e)));c++);return d}function C(a,c,d){return null!=d?d.diff(c,a,!0):b.isDuration(c)?c.as(a):c.end.diff(c.start,a,!0)}function D(a){return"[object Date]"===Object.prototype.toString.call(a)||a instanceof Date}function E(a){return/^\d+\:\d+(?:\:\d+\.?(?:\d{3})?)?$/.test(a)}function F(a){var b=function(){};return b.prototype=a,new b}function G(a,b){for(var c in a)H(a,c)&&(b[c]=a[c])}function H(a,b){return Oa.call(a,b)}function I(b){return/undefined|null|boolean|number|string/.test(a.type(b))}function J(b,c,d){if(a.isFunction(b)&&(b=[b]),b){var e,f;for(e=0;e<b.length;e++)f=b[e].apply(c,d)||f;return f}}function K(){for(var a=0;a<arguments.length;a++)if(void 0!==arguments[a])return arguments[a]}function L(a){return(a+"").replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/'/g,"&#039;").replace(/"/g,"&quot;").replace(/\n/g,"<br />")}function M(a){return a.replace(/&.*?;/g,"")}function N(a){return a.charAt(0).toUpperCase()+a.slice(1)}function O(a,b){return a-b}function P(a){return a%1===0}function Q(a,b){var c,d,e,f,g=function(){var h=+new Date-f;b>h&&h>0?c=setTimeout(g,b-h):(c=null,a.apply(e,d),c||(e=d=null))};return function(){e=this,d=arguments,f=+new Date,c||(c=setTimeout(g,b))}}function R(c,d,e){var f,g,h,i,j=c[0],k=1==c.length&&"string"==typeof j;return b.isMoment(j)?(i=b.apply(null,c),T(j,i)):D(j)||void 0===j?i=b.apply(null,c):(f=!1,g=!1,k?Pa.test(j)?(j+="-01",c=[j],f=!0,g=!0):(h=Qa.exec(j))&&(f=!h[5],g=!0):a.isArray(j)&&(g=!0),i=d||f?b.utc.apply(b,c):b.apply(null,c),f?(i._ambigTime=!0,i._ambigZone=!0):e&&(g?i._ambigZone=!0:k&&i.zone(j))),i._fullCalendar=!0,i}function S(a,c){var d,e,f=!1,g=!1,h=a.length,i=[];for(d=0;h>d;d++)e=a[d],b.isMoment(e)||(e=Ca.moment.parseZone(e)),f=f||e._ambigTime,g=g||e._ambigZone,i.push(e);for(d=0;h>d;d++)e=i[d],c||!f||e._ambigTime?g&&!e._ambigZone&&(i[d]=e.clone().stripZone()):i[d]=e.clone().stripTime();return i}function T(a,b){a._ambigTime?b._ambigTime=!0:b._ambigTime&&(b._ambigTime=!1),a._ambigZone?b._ambigZone=!0:b._ambigZone&&(b._ambigZone=!1)}function U(a,b){a.year(b[0]||0).month(b[1]||0).date(b[2]||0).hours(b[3]||0).minutes(b[4]||0).seconds(b[5]||0).milliseconds(b[6]||0)}function V(a,b){return Sa.format.call(a,b)}function W(a,b){return X(a,aa(b))}function X(a,b){var c,d="";for(c=0;c<b.length;c++)d+=Y(a,b[c]);return d}function Y(a,b){var c,d;return"string"==typeof b?b:(c=b.token)?Ta[c]?Ta[c](a):V(a,c):b.maybe&&(d=X(a,b.maybe),d.match(/[1-9]/))?d:""}function Z(a,b,c,d,e){var f;return a=Ca.moment.parseZone(a),b=Ca.moment.parseZone(b),f=(a.localeData||a.lang).call(a),c=f.longDateFormat(c)||c,d=d||" - ",$(a,b,aa(c),d,e)}function $(a,b,c,d,e){var f,g,h,i,j="",k="",l="",m="",n="";for(g=0;g<c.length&&(f=_(a,b,c[g]),f!==!1);g++)j+=f;for(h=c.length-1;h>g&&(f=_(a,b,c[h]),f!==!1);h--)k=f+k;for(i=g;h>=i;i++)l+=Y(a,c[i]),m+=Y(b,c[i]);return(l||m)&&(n=e?m+d+l:l+d+m),j+n+k}function _(a,b,c){var d,e;return"string"==typeof c?c:(d=c.token)&&(e=Ua[d.charAt(0)],e&&a.isSame(b,e))?V(a,d):!1}function aa(a){return a in Va?Va[a]:Va[a]=ba(a)}function ba(a){for(var b,c=[],d=/\[([^\]]*)\]|\(([^\)]*)\)|(LT|(\w)\4*o?)|([^\w\[\(]+)/g;b=d.exec(a);)b[1]?c.push(b[1]):b[2]?c.push({maybe:ba(b[2])}):b[3]?c.push({token:b[3]}):b[5]&&c.push(b[5]);return c}function ca(){}function da(a,b){return a||b?a&&b?a.grid===b.grid&&a.row===b.row&&a.col===b.col:!1:!0}function ea(a){var b=ga(a);return"background"===b||"inverse-background"===b}function fa(a){return"inverse-background"===ga(a)}function ga(a){return K((a.source||{}).rendering,a.rendering)}function ha(a){var b,c,d={};for(b=0;b<a.length;b++)c=a[b],(d[c._id]||(d[c._id]=[])).push(c);return d}function ia(a,b){return a.eventStartMS-b.eventStartMS}function ja(a,b){return a.eventStartMS-b.eventStartMS||b.eventDurationMS-a.eventDurationMS||b.event.allDay-a.event.allDay||(a.event.title||"").localeCompare(b.event.title)}function ka(c){var d,e,f,g,h=Ca.dataAttrPrefix;return h&&(h+="-"),d=c.data(h+"event")||null,d&&(d="object"==typeof d?a.extend({},d):{},e=d.start,null==e&&(e=d.time),f=d.duration,g=d.stick,delete d.start,delete d.time,delete d.duration,delete d.stick),null==e&&(e=c.data(h+"start")),null==e&&(e=c.data(h+"time")),null==f&&(f=c.data(h+"duration")),null==g&&(g=c.data(h+"stick")),e=null!=e?b.duration(e):null,f=null!=f?b.duration(f):null,g=Boolean(g),{eventProps:d,startTime:e,duration:f,stick:g}}function la(a,b){var c,d;for(c=0;c<b.length;c++)if(d=b[c],d.leftCol<=a.rightCol&&d.rightCol>=a.leftCol)return!0;return!1}function ma(a,b){return a.leftCol-b.leftCol}function na(a){var b,c,d;if(a.sort(ja),b=oa(a),pa(b),c=b[0]){for(d=0;d<c.length;d++)qa(c[d]);for(d=0;d<c.length;d++)ra(c[d],0,0)}}function oa(a){var b,c,d,e=[];for(b=0;b<a.length;b++){for(c=a[b],d=0;d<e.length&&sa(c,e[d]).length;d++);c.level=d,(e[d]||(e[d]=[])).push(c)}return e}function pa(a){var b,c,d,e,f;for(b=0;b<a.length;b++)for(c=a[b],d=0;d<c.length;d++)for(e=c[d],e.forwardSegs=[],f=b+1;f<a.length;f++)sa(e,a[f],e.forwardSegs)}function qa(a){var b,c,d=a.forwardSegs,e=0;if(void 0===a.forwardPressure){for(b=0;b<d.length;b++)c=d[b],qa(c),e=Math.max(e,1+c.forwardPressure);a.forwardPressure=e}}function ra(a,b,c){var d,e=a.forwardSegs;if(void 0===a.forwardCoord)for(e.length?(e.sort(ua),ra(e[0],b+1,c),a.forwardCoord=e[0].backwardCoord):a.forwardCoord=1,a.backwardCoord=a.forwardCoord-(a.forwardCoord-c)/(b+1),d=0;d<e.length;d++)ra(e[d],0,a.forwardCoord)}function sa(a,b,c){c=c||[];for(var d=0;d<b.length;d++)ta(a,b[d])&&c.push(b[d]);return c}function ta(a,b){return a.bottom>b.top&&a.top<b.bottom}function ua(a,b){return b.forwardPressure-a.forwardPressure||(a.backwardCoord||0)-(b.backwardCoord||0)||ja(a,b)}function va(c,e){function g(a){return(a.locale||a.lang).call(a,$.lang).humanize()}function h(a){da?k()&&(r(),l(a)):i()}function i(){ea=$.theme?"ui":"fc",c.addClass("fc"),$.isRTL?c.addClass("fc-rtl"):c.addClass("fc-ltr"),$.theme?c.addClass("ui-widget"):c.addClass("fc-unthemed"),da=a("<div class='fc-view-container'/>").prependTo(c),ba=new wa(Y,$),ca=ba.render(),ca&&c.prepend(ca),l($.defaultView),$.handleWindowResize&&(ha=Q(t,$.windowResizeDelay),a(window).resize(ha))}function j(){fa&&fa.destroyView(),ba.destroy(),da.remove(),c.removeClass("fc fc-ltr fc-rtl fc-unthemed ui-widget"),a(window).unbind("resize",ha)}function k(){return c.is(":visible")}function l(b){na++,fa&&b&&fa.type!==b&&(ba.deactivateButton(fa.type),S(),fa.start&&fa.destroyView(),fa.el.remove(),fa=null),!fa&&b&&(fa=m(b),fa.el=a("<div class='fc-view fc-"+b+"-view' />").appendTo(da),ba.activateButton(b)),fa&&(ia=fa.massageCurrentDate(ia),fa.start&&ia.isWithin(fa.intervalStart,fa.intervalEnd)||k()&&(S(),fa.start&&fa.destroyView(),fa.setDate(ia),fa.renderView(),T(),C(),D(),x())),T(),na--}function m(a){var b=n(a);return new b["class"](Y,b.options,a)}function n(c){function d(b){"function"==typeof b?f=b:"object"==typeof b&&a.extend(e,b)}var e,f,h,i,j,k=$.defaultButtonText||{},l=$.buttonText||{},m=$.views||{},n=c,o=[],p=!1;if(ma[c])return ma[c];for(;n&&!f;)e={},d(Da[n]),d(m[n]),o.unshift(e),n=e.type;return o.unshift({}),e=a.extend.apply(a,o),f?(h=e.duration||f.duration,h&&(h=b.duration(h),i=B(h),p=1===h.as(i)),p&&m[i]&&(e=a.extend({},m[i],e)),j=l[c]||(p?l[i]:null)||k[c]||(p?k[i]:null)||e.buttonText||f.buttonText||(h?g(h):null)||c,ma[c]={"class":f,options:e,buttonText:j}):void 0}function o(a){return Boolean(n(a))}function p(a){var b=n(a);return b?b.buttonText:void 0}function q(a){return k()?(a&&s(),na++,fa.updateSize(!0),na--,!0):void 0}function r(){k()&&s()}function s(){ga="number"==typeof $.contentHeight?$.contentHeight:"number"==typeof $.height?$.height-(ca?ca.outerHeight(!0):0):"undefined"!=typeof $.height&&"parent"===$.height?a(la).parent().height()-(ca?ca.outerHeight(!0):0):Math.round(da.width()/Math.max($.aspectRatio,.5))}function t(a){!na&&a.target===window&&fa.start&&q(!0)&&fa.trigger("windowResize",la)}function u(){w(),y()}function v(){k()&&(S(),fa.destroyViewEvents(),fa.renderViewEvents(oa),T())}function w(){S(),fa.destroyViewEvents(),T()}function x(){!$.lazyFetching||ja(fa.start,fa.end)?y():v()}function y(){ka(fa.start,fa.end)}function z(a){oa=a,v()}function A(){v()}function C(){ba.updateTitle(fa.title)}function D(){var a=Y.getNow();a.isWithin(fa.intervalStart,fa.intervalEnd)?ba.disableButton("today"):ba.enableButton("today")}function E(a,b){a=Y.moment(a),b=b?Y.moment(b):a.hasTime()?a.clone().add(Y.defaultTimedEventDuration):a.clone().add(Y.defaultAllDayEventDuration),fa.select({start:a,end:b})}function G(){fa&&fa.unselect()}function H(){ia=fa.computePrevDate(ia),l()}function I(){ia=fa.computeNextDate(ia),l()}function J(){ia.add(-1,"years"),l()}function K(){ia.add(1,"years"),l()}function L(){ia=Y.getNow(),l()}function M(a){ia=Y.moment(a),l()}function O(a){ia.add(b.duration(a)),l()}function P(a,b){var c,d;b&&o(b)||(b=b||"day",c=ba.getViewsWithButtons().join(" "),d=c.match(new RegExp("\\w+"+N(b))),d||(d=c.match(/\w+Day/)),b=d?d[0]:"agendaDay"),ia=a,l(b)}function R(){return ia.clone()}function S(){da.css({width:"100%",height:da.height(),overflow:"hidden"})}function T(){da.css({width:"",height:"",overflow:""})}function U(){return Y}function V(){return fa}function W(a,b){return void 0===b?$[a]:void(("height"==a||"contentHeight"==a||"aspectRatio"==a)&&($[a]=b,q(!0)))}function X(a,b){return $[a]?$[a].apply(b||la,Array.prototype.slice.call(arguments,2)):void 0}var Y=this;e=e||{};var Z,$=d({},za,e);Z=$.lang in Ea?Ea[$.lang]:Ea[za.lang],Z&&($=d({},za,Z,e)),$.isRTL&&($=d({},za,Ba,Z||{},e)),Y.options=$,Y.render=h,Y.destroy=j,Y.refetchEvents=u,Y.reportEvents=z,Y.reportEventChange=A,Y.rerenderEvents=v,Y.changeView=l,Y.select=E,Y.unselect=G,Y.prev=H,Y.next=I,Y.prevYear=J,Y.nextYear=K,Y.today=L,Y.gotoDate=M,Y.incrementDate=O,Y.zoomTo=P,Y.getDate=R,Y.getCalendar=U,Y.getView=V,Y.option=W,Y.trigger=X,Y.isValidViewType=o,Y.getViewButtonText=p;var _=F(f($.lang));if($.monthNames&&(_._months=$.monthNames),$.monthNamesShort&&(_._monthsShort=$.monthNamesShort),$.dayNames&&(_._weekdays=$.dayNames),$.dayNamesShort&&(_._weekdaysShort=$.dayNamesShort),null!=$.firstDay){var aa=F(_._week);aa.dow=$.firstDay,_._week=aa}Y.defaultAllDayEventDuration=b.duration($.defaultAllDayEventDuration),Y.defaultTimedEventDuration=b.duration($.defaultTimedEventDuration),Y.moment=function(){var a;return"local"===$.timezone?(a=Ca.moment.apply(null,arguments),a.hasTime()&&a.local()):a="UTC"===$.timezone?Ca.moment.utc.apply(null,arguments):Ca.moment.parseZone.apply(null,arguments),"_locale"in a?a._locale=_:a._lang=_,a},Y.getIsAmbigTimezone=function(){return"local"!==$.timezone&&"UTC"!==$.timezone},Y.rezoneDate=function(a){return Y.moment(a.toArray())},Y.getNow=function(){var a=$.now;return"function"==typeof a&&(a=a()),Y.moment(a)},Y.calculateWeekNumber=function(a){var b=$.weekNumberCalculation;return"function"==typeof b?b(a):"local"===b?a.week():"ISO"===b.toUpperCase()?a.isoWeek():void 0},Y.getEventEnd=function(a){return a.end?a.end.clone():Y.getDefaultEventEnd(a.allDay,a.start)},Y.getDefaultEventEnd=function(a,b){var c=b.clone();return a?c.stripTime().add(Y.defaultAllDayEventDuration):c.add(Y.defaultTimedEventDuration),Y.getIsAmbigTimezone()&&c.stripZone(),c},xa.call(Y,$);var ba,ca,da,ea,fa,ga,ha,ia,ja=Y.isFetchNeeded,ka=Y.fetchEvents,la=c[0],ma={},na=0,oa=[];ia=null!=$.defaultDate?Y.moment($.defaultDate):Y.getNow(),Y.getSuggestedViewHeight=function(){return void 0===ga&&r(),ga},Y.isHeightAuto=function(){return"auto"===$.contentHeight||"auto"===$.height}}function wa(b,c){function d(){var b=c.header;return n=c.theme?"ui":"fc",b?o=a("<div class='fc-toolbar'/>").append(f("left")).append(f("right")).append(f("center")).append('<div class="fc-clear"/>'):void 0}function e(){o.remove()}function f(d){var e=a('<div class="fc-'+d+'"/>'),f=c.header[d];return f&&a.each(f.split(" "),function(d){var f,g=a(),h=!0;a.each(this.split(","),function(d,e){var f,i,j,k,l,m,o,q,r;if("title"==e)g=g.add(a('<h2 aria-live="polite">&nbsp;</h2>')),h=!1;else if(a.isFunction(c.customButtons[e])){var s=a(c.customButtons[e](c));g=g.add(s)}else b[e]?f=function(){b[e]()}:b.isValidViewType(e)&&(f=function(){b.changeView(e)},p.push(e),l=b.getViewButtonText(e)),f&&(i=y(c.themeButtonIcons,e),j=y(c.buttonIcons,e),k=y(c.defaultButtonText,e),m=y(c.buttonText,e),o=l||m?L(l||m):i&&c.theme?"<span class='ui-icon ui-icon-"+i+"'></span>":j&&!c.theme?"<span class='fc-icon fc-icon-"+j+"'></span>":L(k||e),q=["fc-"+e+"-button",n+"-button",n+"-state-default"],r=a('<button type="button" class="'+q.join(" ")+'">'+o+"</button>").click(function(){r.hasClass(n+"-state-disabled")||(f(),(r.hasClass(n+"-state-active")||r.hasClass(n+"-state-disabled"))&&r.removeClass(n+"-state-hover"))}).mousedown(function(){r.not("."+n+"-state-active").not("."+n+"-state-disabled").addClass(n+"-state-down")}).mouseup(function(){r.removeClass(n+"-state-down")}).hover(function(){r.not("."+n+"-state-active").not("."+n+"-state-disabled").addClass(n+"-state-hover")},function(){r.removeClass(n+"-state-hover").removeClass(n+"-state-down")}),g=g.add(r))}),h&&g.first().addClass(n+"-corner-left").end().last().addClass(n+"-corner-right").end(),g.length>1||h?(f=a("<div/>"),h&&f.addClass("fc-button-group"),f.append(g),e.append(f)):e.append(g)}),e}function g(a){o.find("h2").text(a)}function h(a){o.find(".fc-"+a+"-button").addClass(n+"-state-active")}function i(a){o.find(".fc-"+a+"-button").removeClass(n+"-state-active")}function j(a){o.find(".fc-"+a+"-button").attr("disabled","disabled").addClass(n+"-state-disabled")}function k(a){o.find(".fc-"+a+"-button").removeAttr("disabled").removeClass(n+"-state-disabled")}function l(){return p}var m=this;m.render=d,m.destroy=e,m.updateTitle=g,m.activateButton=h,m.deactivateButton=i,m.disableButton=j,m.enableButton=k,m.getViewsWithButtons=l;var n,o=a(),p=[]}function xa(c){function d(a,b){return!Q||a.clone().stripZone()<Q.clone().stripZone()||b.clone().stripZone()>R.clone().stripZone()}function e(a,b){Q=a,R=b,$=[];var c=++X,d=W.length;Y=d;for(var e=0;d>e;e++)f(W[e],c)}function f(b,c){g(b,function(d){var e,f,g,h=a.isArray(b.events);if(c==X){if(d)for(e=0;e<d.length;e++)f=d[e],g=h?f:u(f,b),g&&$.push.apply($,y(g));Y--,Y||U($)}})}function g(b,d){var e,f,h=Ca.sourceFetchers;for(e=0;e<h.length;e++){if(f=h[e].call(P,b,Q.clone(),R.clone(),c.timezone,d),f===!0)return;if("object"==typeof f)return void g(f,d)}var i=b.events;if(i)a.isFunction(i)?(s(),i.call(P,Q.clone(),R.clone(),c.timezone,function(a){d(a),t()})):a.isArray(i)?d(i):d();else{var j=b.url;if(j){var k,l=b.success,m=b.error,n=b.complete;k=a.isFunction(b.data)?b.data():b.data;var o=a.extend({},k||{}),p=K(b.startParam,c.startParam),q=K(b.endParam,c.endParam),r=K(b.timezoneParam,c.timezoneParam);p&&(o[p]=Q.format()),q&&(o[q]=R.format()),c.timezone&&"local"!=c.timezone&&(o[r]=c.timezone),s(),a.ajax(a.extend({},eb,b,{data:o,success:function(b){b=b||[];var c=J(l,this,arguments);a.isArray(c)&&(b=c),d(b)},error:function(){J(m,this,arguments),d()},complete:function(){J(n,this,arguments),t()}}))}else d()}}function h(a){var b=i(a);b&&(W.push(b),Y++,f(b,X))}function i(b){var c,d,e=Ca.sourceNormalizers;if(a.isFunction(b)||a.isArray(b)?c={events:b}:"string"==typeof b?c={url:b}:"object"==typeof b&&(c=a.extend({},b)),c){for(c.className?"string"==typeof c.className&&(c.className=c.className.split(/\s+/)):c.className=[],a.isArray(c.events)&&(c.origArray=c.events,c.events=a.map(c.events,function(a){return u(a,c)})),d=0;d<e.length;d++)e[d].call(P,c);return c}}function j(b){W=a.grep(W,function(a){return!k(a,b)}),$=a.grep($,function(a){return!k(a.source,b)}),U($)}function k(a,b){return a&&b&&l(a)==l(b)}function l(a){return("object"==typeof a?a.origArray||a.googleCalendarId||a.url||a.events:null)||a}function m(a){a.start=P.moment(a.start),a.end?a.end=P.moment(a.end):a.end=null,B(a,n(a)),U($)}function n(b){var c={};return a.each(b,function(a,b){o(a)&&void 0!==b&&I(b)&&(c[a]=b)}),c}function o(a){return!/^_|^(id|allDay|start|end)$/.test(a)}function p(a,b){var c,d,e,f=u(a);if(f){for(c=y(f),d=0;d<c.length;d++)e=c[d],e.source||(b&&(V.events.push(e),e.source=V),$.push(e));return U($),c}return[]}function q(b){var c,d;for(null==b?b=function(){return!0}:a.isFunction(b)||(c=b+"",b=function(a){return a._id==c}),$=a.grep($,b,!0),d=0;d<W.length;d++)a.isArray(W[d].events)&&(W[d].events=a.grep(W[d].events,b,!0));U($)}function r(b){return a.isFunction(b)?a.grep($,b):null!=b?(b+="",a.grep($,function(a){return a._id==b})):$}function s(){Z++||S("loading",null,!0,T())}function t(){--Z||S("loading",null,!1,T())}function u(d,e){var f,g,h,i={};if(c.eventDataTransform&&(d=c.eventDataTransform(d)),e&&e.eventDataTransform&&(d=e.eventDataTransform(d)),a.extend(i,d),e&&(i.source=e),i._id=d._id||(void 0===d.id?"_fc"+fb++:d.id+""),d.className?"string"==typeof d.className?i.className=d.className.split(/\s+/):i.className=d.className:i.className=[],f=d.start||d.date,g=d.end,E(f)&&(f=b.duration(f)),E(g)&&(g=b.duration(g)),d.dow||b.isDuration(f)||b.isDuration(g))i.start=f?b.duration(f):null,i.end=g?b.duration(g):null,i._recurring=!0;else{if(f&&(f=P.moment(f),!f.isValid()))return!1;g&&(g=P.moment(g),g.isValid()||(g=null)),h=d.allDay,void 0===h&&(h=K(e?e.allDayDefault:void 0,c.allDayDefault)),v(f,g,h,i)}return i}function v(a,b,c,d){d.start=a,d.end=b,d.allDay=c,w(d),ya(d)}function w(a){null==a.allDay&&(a.allDay=!(a.start.hasTime()||a.end&&a.end.hasTime())),a.allDay?(a.start.stripTime(),a.end&&a.end.stripTime()):(a.start.hasTime()||(a.start=P.rezoneDate(a.start)),a.end&&!a.end.hasTime()&&(a.end=P.rezoneDate(a.end))),a.end&&!a.end.isAfter(a.start)&&(a.end=null),a.end||(c.forceEventDuration?a.end=P.getDefaultEventEnd(a.allDay,a.start):a.end=null)}function x(a){var b;return a.end||(b=a.allDay,null==b&&(b=!a.start.hasTime()),a={start:a.start,end:P.getDefaultEventEnd(b,a.start)}),a}function y(b,c,d){var e,f,g,h,i,j,k,l,m,n=[];if(c=c||Q,d=d||R,b)if(b._recurring){if(f=b.dow)for(e={},g=0;g<f.length;g++)e[f[g]]=!0;for(h=c.clone().stripTime();h.isBefore(d);)(!e||e[h.day()])&&(i=b.start,j=b.end,k=h.clone(),l=null,i&&(k=k.time(i)),j&&(l=h.clone().time(j)),m=a.extend({},b),v(k,l,!i&&!j,m),n.push(m)),h.add(1,"days")}else n.push(b);return n}function B(b,c){var d,e,f,g,h={};return c=c||{},c.start||(c.start=b.start.clone()),void 0===c.end&&(c.end=b.end?b.end.clone():null),null==c.allDay&&(c.allDay=b.allDay),w(c),d=null!==b._end&&null===c.end,e=c.allDay?A(c.start,b._start):z(c.start,b._start),!d&&c.end&&(f=z(c.end,c.start).subtract(z(b._end||P.getDefaultEventEnd(b._allDay,b._start),b._start))),a.each(c,function(a,b){o(a)&&void 0!==b&&(h[a]=b)}),g=C(r(b._id),d,c.allDay,e,f,h),{dateDelta:e,durationDelta:f,undo:g}}function C(b,c,d,e,f,g){var h=P.getIsAmbigTimezone(),i=[];return e&&!e.valueOf()&&(e=null),f&&!f.valueOf()&&(f=null),a.each(b,function(b,j){var k,l;k={start:j.start.clone(),end:j.end?j.end.clone():null,allDay:j.allDay},a.each(g,function(a){k[a]=j[a]}),l={start:j._start,end:j._end,allDay:j._allDay},c&&(l.end=null),l.allDay=d,w(l),e&&(l.start.add(e),l.end&&l.end.add(e)),f&&(l.end||(l.end=P.getDefaultEventEnd(l.allDay,l.start)),l.end.add(f)),h&&!l.allDay&&(e||f)&&(l.start.stripZone(),l.end&&l.end.stripZone()),a.extend(j,g,l),ya(j),i.push(function(){a.extend(j,k),ya(j)})}),function(){for(var a=0;a<i.length;a++)i[a]()}}function D(){var b,d=c.businessHours,e={className:"fc-nonbusiness",start:"09:00",end:"17:00",dow:[1,2,3,4,5],rendering:"inverse-background"},f=P.getView();return d&&(b="object"==typeof d?a.extend({},e,d):e),b?y(u(b),f.start,f.end):[]}function F(a,b){var d=b.source||{},e=K(b.constraint,d.constraint,c.eventConstraint),f=K(b.overlap,d.overlap,c.eventOverlap);return a=x(a),L(a,e,f,b)}function G(a){return L(a,c.selectConstraint,c.selectOverlap)}function H(b,c){var d,e;return c&&(d=a.extend({},c,b),e=y(u(d))[0]),e?F(b,e):(b=x(b),G(b))}function L(a,b,c,d){var e,f,g,h,i;if(a={start:a.start.clone().stripZone(),end:a.end.clone().stripZone()},null!=b){for(e=M(b),f=!1,g=0;g<e.length;g++)if(N(e[g],a)){f=!0;break}if(!f)return!1}for(g=0;g<$.length;g++)if(h=$[g],(!d||d._id!==h._id)&&O(h,a)){if(c===!1)return!1;if("function"==typeof c&&!c(h,d))return!1;if(d){if(i=K(h.overlap,(h.source||{}).overlap),i===!1)return!1;if("function"==typeof i&&!i(d,h))return!1}}return!0}function M(a){return"businessHours"===a?D():"object"==typeof a?y(u(a)):r(a)}function N(a,b){var c=a.start.clone().stripZone(),d=P.getEventEnd(a).stripZone();return b.start>=c&&b.end<=d}function O(a,b){var c=a.start.clone().stripZone(),d=P.getEventEnd(a).stripZone();return b.start<d&&b.end>c}var P=this;P.isFetchNeeded=d,P.fetchEvents=e,P.addEventSource=h,P.removeEventSource=j,P.updateEvent=m,P.renderEvent=p,P.removeEvents=q,P.clientEvents=r,P.mutateEvent=B,P.normalizeEventDateProps=w,P.ensureVisibleEventRange=x;var Q,R,S=P.trigger,T=P.getView,U=P.reportEvents,V={events:[]},W=[V],X=0,Y=0,Z=0,$=[];a.each((c.events?[c.events]:[]).concat(c.eventSources||[]),function(a,b){var c=i(b);c&&W.push(c)}),P.getBusinessHoursEvents=D,P.isEventRangeAllowed=F,P.isSelectionRangeAllowed=G,P.isExternalDropRangeAllowed=H}function ya(a){a._allDay=a.allDay,a._start=a.start.clone(),a._end=a.end?a.end.clone():null}var za={titleRangeSeparator:" — ",monthYearFormat:"MMMM YYYY",defaultTimedEventDuration:"02:00:00",defaultAllDayEventDuration:{days:1},forceEventDuration:!1,nextDayThreshold:"09:00:00",defaultView:"month",aspectRatio:1.35,header:{left:"title",center:"",right:"today prev,next"},weekends:!0,weekNumbers:!1,weekNumberTitle:"W",weekNumberCalculation:"local",lazyFetching:!0,startParam:"start",endParam:"end",timezoneParam:"timezone",timezone:!1,isRTL:!1,defaultButtonText:{prev:"prev",next:"next",prevYear:"prev year",nextYear:"next year",today:"today",month:"month",week:"week",day:"day"},buttonIcons:{prev:"left-single-arrow",next:"right-single-arrow",prevYear:"left-double-arrow",nextYear:"right-double-arrow"},theme:!1,themeButtonIcons:{prev:"circle-triangle-w",next:"circle-triangle-e",prevYear:"seek-prev",nextYear:"seek-next"},dragOpacity:.75,dragRevertDuration:500,dragScroll:!0,unselectAuto:!0,dropAccept:"*",eventLimit:!1,eventLimitText:"more",eventLimitClick:"popover",dayPopoverFormat:"LL",handleWindowResize:!0,windowResizeDelay:200},Aa={dayPopoverFormat:"dddd, MMMM D"},Ba={header:{left:"next,prev today",center:"",right:"title"},buttonIcons:{prev:"right-single-arrow",next:"left-single-arrow",prevYear:"right-double-arrow",nextYear:"left-double-arrow"},themeButtonIcons:{prev:"circle-triangle-e",next:"circle-triangle-w",nextYear:"seek-prev",prevYear:"seek-next"}},Ca=a.fullCalendar={version:"2.2.7"},Da=Ca.views={};a.fn.fullCalendar=function(b){var c=Array.prototype.slice.call(arguments,1),d=this;return this.each(function(e,f){var g,h=a(f),i=h.data("fullCalendar");"string"==typeof b?i&&a.isFunction(i[b])&&(g=i[b].apply(i,c),e||(d=g),"destroy"===b&&h.removeData("fullCalendar")):i||(i=new va(h,b),h.data("fullCalendar",i),i.render())}),d};var Ea=Ca.langs={};Ca.datepickerLang=function(b,c,d){var e=Ea[b]||(Ea[b]={});e.isRTL=d.isRTL,e.weekNumberTitle=d.weekHeader,a.each(Fa,function(a,b){e[a]=b(d)}),a.datepicker&&(a.datepicker.regional[c]=a.datepicker.regional[b]=d,a.datepicker.regional.en=a.datepicker.regional[""],a.datepicker.setDefaults(d))},Ca.lang=function(b,c){var e,g;e=Ea[b]||(Ea[b]={}),c&&d(e,c),g=f(b),a.each(Ga,function(a,b){void 0===e[a]&&(e[a]=b(g,e))}),za.lang=b};var Fa={defaultButtonText:function(a){return{prev:M(a.prevText),next:M(a.nextText),today:M(a.currentText)}},monthYearFormat:function(a){return a.showMonthAfterYear?"YYYY["+a.yearSuffix+"] MMMM":"MMMM YYYY["+a.yearSuffix+"]"}},Ga={dayOfMonthFormat:function(a,b){var c=a.longDateFormat("l");return c=c.replace(/^Y+[^\w\s]*|[^\w\s]*Y+$/g,""),b.isRTL?c+=" ddd":c="ddd "+c,c},smallTimeFormat:function(a){return a.longDateFormat("LT").replace(":mm","(:mm)").replace(/(\Wmm)$/,"($1)").replace(/\s*a$/i,"a")},extraSmallTimeFormat:function(a){return a.longDateFormat("LT").replace(":mm","(:mm)").replace(/(\Wmm)$/,"($1)").replace(/\s*a$/i,"t")},noMeridiemTimeFormat:function(a){return a.longDateFormat("LT").replace(/\s*a$/i,"")}};Ca.lang("en",Aa),Ca.intersectionToSeg=x,Ca.applyAll=J,Ca.debounce=Q;var Ha,Ia,Ja,Ka=-1!==navigator.userAgent.toLowerCase().indexOf("phantom"),La=!1,Ma=["sun","mon","tue","wed","thu","fri","sat"],Na=["year","month","week","day","hour","minute","second","millisecond"],Oa={}.hasOwnProperty,Pa=/^\s*\d{4}-\d\d$/,Qa=/^\s*\d{4}-(?:(\d\d-\d\d)|(W\d\d$)|(W\d\d-\d)|(\d\d\d))((T| )(\d\d(:\d\d(:\d\d(\.\d+)?)?)?)?)?$/,Ra=b.fn,Sa=a.extend({},Ra);Ca.moment=function(){return R(arguments)},Ca.moment.utc=function(){var a=R(arguments,!0);return a.hasTime()&&a.utc(),a},Ca.moment.parseZone=function(){return R(arguments,!0,!0)},Ra.clone=function(){var a=Sa.clone.apply(this,arguments);return T(this,a),this._fullCalendar&&(a._fullCalendar=!0),a},Ra.time=function(a){if(!this._fullCalendar)return Sa.time.apply(this,arguments);if(null==a)return b.duration({hours:this.hours(),minutes:this.minutes(),seconds:this.seconds(),milliseconds:this.milliseconds()});this._ambigTime=!1,b.isDuration(a)||b.isMoment(a)||(a=b.duration(a));var c=0;return b.isDuration(a)&&(c=24*Math.floor(a.asDays())),this.hours(c+a.hours()).minutes(a.minutes()).seconds(a.seconds()).milliseconds(a.milliseconds())},Ra.stripTime=function(){var a;return this._ambigTime||(a=this.toArray(),this.utc(),Ia(this,a.slice(0,3)),this._ambigTime=!0,this._ambigZone=!0),this},Ra.hasTime=function(){return!this._ambigTime},Ra.stripZone=function(){var a,b;return this._ambigZone||(a=this.toArray(),b=this._ambigTime,this.utc(),Ia(this,a),this._ambigTime=b||!1,this._ambigZone=!0),this},Ra.hasZone=function(){return!this._ambigZone},Ra.local=function(){var a=this.toArray(),b=this._ambigZone;return Sa.local.apply(this,arguments),this._ambigTime=!1,this._ambigZone=!1,b&&Ja(this,a),this},Ra.utc=function(){return Sa.utc.apply(this,arguments),this._ambigTime=!1,this._ambigZone=!1,this},a.each(["zone","utcOffset"],function(a,b){Sa[b]&&(Ra[b]=function(a){return null!=a&&(this._ambigTime=!1,this._ambigZone=!1),Sa[b].apply(this,arguments)})}),Ra.format=function(){return this._fullCalendar&&arguments[0]?W(this,arguments[0]):this._ambigTime?V(this,"YYYY-MM-DD"):this._ambigZone?V(this,"YYYY-MM-DD[T]HH:mm:ss"):Sa.format.apply(this,arguments)},Ra.toISOString=function(){return this._ambigTime?V(this,"YYYY-MM-DD"):this._ambigZone?V(this,"YYYY-MM-DD[T]HH:mm:ss"):Sa.toISOString.apply(this,arguments)},Ra.isWithin=function(a,b){var c=S([this,a,b]);return c[0]>=c[1]&&c[0]<c[2]},Ra.isSame=function(a,b){var c;return this._fullCalendar?b?(c=S([this,a],!0),Sa.isSame.call(c[0],c[1],b)):(a=Ca.moment.parseZone(a),Sa.isSame.call(this,a)&&Boolean(this._ambigTime)===Boolean(a._ambigTime)&&Boolean(this._ambigZone)===Boolean(a._ambigZone)):Sa.isSame.apply(this,arguments)},a.each(["isBefore","isAfter"],function(a,b){Ra[b]=function(a,c){var d;return this._fullCalendar?(d=S([this,a]),Sa[b].call(d[0],d[1],c)):Sa[b].apply(this,arguments)}}),Ha="_d"in b()&&"updateOffset"in b,Ia=Ha?function(a,c){a._d.setTime(Date.UTC.apply(Date,c)),b.updateOffset(a,!1)}:U,Ja=Ha?function(a,c){a._d.setTime(+new Date(c[0]||0,c[1]||0,c[2]||0,c[3]||0,c[4]||0,c[5]||0,c[6]||0)),b.updateOffset(a,!1)}:U;var Ta={t:function(a){return V(a,"a").charAt(0)},T:function(a){return V(a,"A").charAt(0)}};Ca.formatRange=Z;var Ua={Y:"year",M:"month",D:"day",d:"day",A:"second",a:"second",T:"second",t:"second",H:"second",h:"second",m:"second",s:"second"},Va={};Ca.Class=ca,ca.extend=function(a){var b,c=this;return a=a||{},H(a,"constructor")&&(b=a.constructor),"function"!=typeof b&&(b=a.constructor=function(){c.apply(this,arguments)}),b.prototype=F(c.prototype),G(a,b.prototype),G(c,b),b},ca.mixin=function(a){G(a.prototype||a,this.prototype)};var Wa=ca.extend({isHidden:!0,options:null,el:null,documentMousedownProxy:null,margin:10,constructor:function(a){this.options=a||{}},show:function(){this.isHidden&&(this.el||this.render(),this.el.show(),this.position(),this.isHidden=!1,this.trigger("show"))},hide:function(){this.isHidden||(this.el.hide(),this.isHidden=!0,this.trigger("hide"))},render:function(){var b=this,c=this.options;this.el=a('<div class="fc-popover"/>').addClass(c.className||"").css({top:0,left:0}).append(c.content).appendTo(c.parentEl),this.el.on("click",".fc-close",function(){b.hide()}),c.autoHide&&a(document).on(m(),this.documentMousedownProxy=a.proxy(this,"documentMousedown"))},documentMousedown:function(b){this.el&&!a(b.target).closest(this.el).length&&(this.hide(),b.stopPropagation())},destroy:function(){this.hide(),this.el&&(this.el.remove(),this.el=null),
3
  a(document).off(m(),this.documentMousedownProxy)},position:function(){var b,c,d,e,f,g=this.options,h=this.el.offsetParent().offset(),i=this.el.outerWidth(),j=this.el.outerHeight(),k=a(window),l=u(this.el);e=g.top||0,f=void 0!==g.left?g.left:void 0!==g.right?g.right-i:0,l.is(window)||l.is(document)?(l=k,b=0,c=0):(d=l.offset(),b=d.top,c=d.left),b+=k.scrollTop(),c+=k.scrollLeft(),g.viewportConstrain!==!1&&(e=Math.min(e,b+l.outerHeight()-j-this.margin),e=Math.max(e,b+this.margin),f=Math.min(f,c+l.outerWidth()-i-this.margin),f=Math.max(f,c+this.margin)),this.el.css({top:e-h.top,left:f-h.left})},trigger:function(a){this.options[a]&&this.options[a].apply(this,Array.prototype.slice.call(arguments,1))}}),Xa=ca.extend({grid:null,rowCoords:null,colCoords:null,containerEl:null,minX:null,maxX:null,minY:null,maxY:null,constructor:function(a){this.grid=a},build:function(){this.rowCoords=this.grid.computeRowCoords(),this.colCoords=this.grid.computeColCoords(),this.computeBounds()},clear:function(){this.rowCoords=null,this.colCoords=null},getCell:function(a,b){var c,d,e,f=this.rowCoords,g=this.colCoords,h=null,i=null;if(this.inBounds(a,b)){for(c=0;c<f.length;c++)if(d=f[c],b>=d.top&&b<d.bottom){h=c;break}for(c=0;c<g.length;c++)if(d=g[c],a>=d.left&&a<d.right){i=c;break}if(null!==h&&null!==i)return e=this.grid.getCell(h,i),e.grid=this.grid,e}return null},computeBounds:function(){var a;this.containerEl&&(a=this.containerEl.offset(),this.minX=a.left,this.maxX=a.left+this.containerEl.outerWidth(),this.minY=a.top,this.maxY=a.top+this.containerEl.outerHeight())},inBounds:function(a,b){return this.containerEl?a>=this.minX&&a<this.maxX&&b>=this.minY&&b<this.maxY:!0}}),Ya=ca.extend({coordMaps:null,constructor:function(a){this.coordMaps=a},build:function(){var a,b=this.coordMaps;for(a=0;a<b.length;a++)b[a].build()},getCell:function(a,b){var c,d=this.coordMaps,e=null;for(c=0;c<d.length&&!e;c++)e=d[c].getCell(a,b);return e},clear:function(){var a,b=this.coordMaps;for(a=0;a<b.length;a++)b[a].clear()}}),Za=ca.extend({coordMap:null,options:null,isListening:!1,isDragging:!1,origCell:null,cell:null,mouseX0:null,mouseY0:null,mousemoveProxy:null,mouseupProxy:null,scrollEl:null,scrollBounds:null,scrollTopVel:null,scrollLeftVel:null,scrollIntervalId:null,scrollHandlerProxy:null,scrollSensitivity:30,scrollSpeed:200,scrollIntervalMs:50,constructor:function(a,b){this.coordMap=a,this.options=b||{}},mousedown:function(a){w(a)&&(k(a)||a.preventDefault(),this.startListening(a),this.options.distance||this.startDrag(a))},startListening:function(b){var c,d;this.isListening||(b&&this.options.scroll&&(c=u(a(b.target)),c.is(window)||c.is(document)||(this.scrollEl=c,this.scrollHandlerProxy=Q(a.proxy(this,"scrollHandler"),100),this.scrollEl.on("scroll",this.scrollHandlerProxy))),this.computeCoords(),b&&(d=this.getCell(b),this.origCell=d,this.mouseX0=l(b).x,this.mouseY0=l(b).y),a(document).on(o(),this.mousemoveProxy=a.proxy(this,"mousemove")).on(n(),this.mouseupProxy=a.proxy(this,"mouseup")).on("selectstart",this.preventDefault),this.isListening=!0,this.trigger("listenStart",b))},computeCoords:function(){this.coordMap.build(),this.computeScrollBounds()},mousemove:function(a){var b,c;this.isDragging||(b=this.options.distance||1,c=Math.pow(l(a).x-this.mouseX0,2)+Math.pow(l(a).y-this.mouseY0,2),c>=b*b&&this.startDrag(a)),this.isDragging&&this.drag(a)},startDrag:function(a){var b;this.isListening||this.startListening(),this.isDragging||(this.isDragging=!0,this.trigger("dragStart",a),b=this.getCell(a),b&&this.cellOver(b))},drag:function(a){var b;this.isDragging&&(b=this.getCell(a),da(b,this.cell)||(this.cell&&this.cellOut(),!b||k(a)&&!La||this.cellOver(b)),this.dragScroll(a))},cellOver:function(a){this.cell=a,this.trigger("cellOver",a,da(a,this.origCell))},cellOut:function(){this.cell&&(this.trigger("cellOut",this.cell),this.cell=null)},mouseup:function(a){this.stopDrag(a),this.stopListening(a)},stopDrag:function(a){this.isDragging&&(this.stopScrolling(),this.trigger("dragStop",a),this.isDragging=!1)},stopListening:function(b){this.isListening&&(this.scrollEl&&(this.scrollEl.off("scroll",this.scrollHandlerProxy),this.scrollHandlerProxy=null),a(document).off(o(),this.mousemoveProxy).off(n(),this.mouseupProxy).off("selectstart",this.preventDefault),this.mousemoveProxy=null,this.mouseupProxy=null,this.isListening=!1,this.trigger("listenStop",b),this.origCell=this.cell=null,this.coordMap.clear())},getCell:function(a){return this.coordMap.getCell(l(a).x,l(a).y)},trigger:function(a){this.options[a]&&this.options[a].apply(this,Array.prototype.slice.call(arguments,1))},preventDefault:function(a){a.preventDefault()},computeScrollBounds:function(){var a,b=this.scrollEl;b&&(a=b.offset(),this.scrollBounds={top:a.top,left:a.left,bottom:a.top+b.outerHeight(),right:a.left+b.outerWidth()})},dragScroll:function(a){var b,c,d,e,f=this.scrollSensitivity,g=this.scrollBounds,h=0,i=0;g&&(b=(f-(l(a).y-g.top))/f,c=(f-(g.bottom-l(a).y))/f,d=(f-(l(a).x-g.left))/f,e=(f-(g.right-l(a).x))/f,b>=0&&1>=b?h=b*this.scrollSpeed*-1:c>=0&&1>=c&&(h=c*this.scrollSpeed),d>=0&&1>=d?i=d*this.scrollSpeed*-1:e>=0&&1>=e&&(i=e*this.scrollSpeed)),this.setScrollVel(h,i)},setScrollVel:function(b,c){this.scrollTopVel=b,this.scrollLeftVel=c,this.constrainScrollVel(),!this.scrollTopVel&&!this.scrollLeftVel||this.scrollIntervalId||(this.scrollIntervalId=setInterval(a.proxy(this,"scrollIntervalFunc"),this.scrollIntervalMs))},constrainScrollVel:function(){var a=this.scrollEl;this.scrollTopVel<0?a.scrollTop()<=0&&(this.scrollTopVel=0):this.scrollTopVel>0&&a.scrollTop()+a[0].clientHeight>=a[0].scrollHeight&&(this.scrollTopVel=0),this.scrollLeftVel<0?a.scrollLeft()<=0&&(this.scrollLeftVel=0):this.scrollLeftVel>0&&a.scrollLeft()+a[0].clientWidth>=a[0].scrollWidth&&(this.scrollLeftVel=0)},scrollIntervalFunc:function(){var a=this.scrollEl,b=this.scrollIntervalMs/1e3;this.scrollTopVel&&a.scrollTop(a.scrollTop()+this.scrollTopVel*b),this.scrollLeftVel&&a.scrollLeft(a.scrollLeft()+this.scrollLeftVel*b),this.constrainScrollVel(),this.scrollTopVel||this.scrollLeftVel||this.stopScrolling()},stopScrolling:function(){this.scrollIntervalId&&(clearInterval(this.scrollIntervalId),this.scrollIntervalId=null,this.computeCoords())},scrollHandler:function(){this.scrollIntervalId||this.computeCoords()}}),$a=ca.extend({options:null,sourceEl:null,el:null,parentEl:null,top0:null,left0:null,mouseY0:null,mouseX0:null,topDelta:null,leftDelta:null,mousemoveProxy:null,isFollowing:!1,isHidden:!1,isAnimating:!1,constructor:function(b,c){this.options=c=c||{},this.sourceEl=b,this.parentEl=c.parentEl?a(c.parentEl):b.parent()},start:function(b){this.isFollowing||(this.isFollowing=!0,this.mouseY0=l(b).y,this.mouseX0=l(b).x,this.topDelta=0,this.leftDelta=0,this.isHidden||this.updatePosition(),a(document).on(o(),this.mousemoveProxy=a.proxy(this,"mousemove")))},stop:function(b,c){function d(){this.isAnimating=!1,e.destroyEl(),this.top0=this.left0=null,c&&c()}var e=this,f=this.options.revertDuration;this.isFollowing&&!this.isAnimating&&(this.isFollowing=!1,a(document).off(o(),this.mousemoveProxy),b&&f&&!this.isHidden?(this.isAnimating=!0,this.el.animate({top:this.top0,left:this.left0},{duration:f,complete:d})):d())},getEl:function(){var a=this.el;return a||(this.sourceEl.width(),a=this.el=this.sourceEl.clone().css({position:"absolute",visibility:"",display:this.isHidden?"none":"",margin:0,right:"auto",bottom:"auto",width:this.sourceEl.width(),height:this.sourceEl.height(),opacity:this.options.opacity||"",zIndex:this.options.zIndex}).appendTo(this.parentEl)),a},destroyEl:function(){this.el&&(this.el.remove(),this.el=null)},updatePosition:function(){var a,b;this.getEl(),null===this.top0&&(this.sourceEl.width(),a=this.sourceEl.offset(),b=this.el.offsetParent().offset(),this.top0=a.top-b.top,this.left0=a.left-b.left),this.el.css({top:this.top0+this.topDelta,left:this.left0+this.leftDelta})},mousemove:function(a){this.topDelta=l(a).y-this.mouseY0,this.leftDelta=l(a).x-this.mouseX0,this.isHidden||this.updatePosition()},hide:function(){this.isHidden||(this.isHidden=!0,this.el&&this.el.hide())},show:function(){this.isHidden&&(this.isHidden=!1,this.updatePosition(),this.getEl().show())}}),_a=ca.extend({view:null,isRTL:null,cellHtml:"<td/>",constructor:function(a){this.view=a,this.isRTL=a.opt("isRTL")},rowHtml:function(a,b){var c,d,e=this.getHtmlRenderer("cell",a),f="";for(b=b||0,c=0;c<this.colCnt;c++)d=this.getCell(b,c),f+=e(d);return f=this.bookendCells(f,a,b),"<tr>"+f+"</tr>"},bookendCells:function(a,b,c){var d=this.getHtmlRenderer("intro",b)(c||0),e=this.getHtmlRenderer("outro",b)(c||0),f=this.isRTL?e:d,g=this.isRTL?d:e;return"string"==typeof a?f+a+g:a.prepend(f).append(g)},getHtmlRenderer:function(a,b){var c,d,e,f,g=this.view;return c=a+"Html",b&&(d=b+N(a)+"Html"),d&&(f=g[d])?e=g:d&&(f=this[d])?e=this:(f=g[c])?e=g:(f=this[c])&&(e=this),"function"==typeof f?function(){return f.apply(e,arguments)||""}:function(){return f||""}}}),ab=Ca.Grid=_a.extend({start:null,end:null,rowCnt:0,colCnt:0,rowData:null,colData:null,el:null,coordMap:null,elsByFill:null,documentDragStartProxy:null,colHeadFormat:null,eventTimeFormat:null,displayEventEnd:null,constructor:function(){_a.apply(this,arguments),this.coordMap=new Xa(this),this.elsByFill={},this.documentDragStartProxy=a.proxy(this,"documentDragStart")},render:function(){this.bindHandlers()},destroy:function(){this.unbindHandlers()},computeColHeadFormat:function(){},computeEventTimeFormat:function(){return this.view.opt("smallTimeFormat")},computeDisplayEventEnd:function(){return!1},setRange:function(a){var b=this.view;this.start=a.start.clone(),this.end=a.end.clone(),this.rowData=[],this.colData=[],this.updateCells(),this.colHeadFormat=b.opt("columnFormat")||this.computeColHeadFormat(),this.eventTimeFormat=b.opt("timeFormat")||this.computeEventTimeFormat(),this.displayEventEnd=b.opt("displayEventEnd"),null==this.displayEventEnd&&(this.displayEventEnd=this.computeDisplayEventEnd())},updateCells:function(){},rangeToSegs:function(a){},getCell:function(b,c){var d;return null==c&&("number"==typeof b?(c=b%this.colCnt,b=Math.floor(b/this.colCnt)):(c=b.col,b=b.row)),d={row:b,col:c},a.extend(d,this.getRowData(b),this.getColData(c)),a.extend(d,this.computeCellRange(d)),d},computeCellRange:function(a){},getRowData:function(a){return this.rowData[a]||{}},getColData:function(a){return this.colData[a]||{}},getRowEl:function(a){},getColEl:function(a){},getCellDayEl:function(a){return this.getColEl(a.col)||this.getRowEl(a.row)},computeRowCoords:function(){var a,b,c,d=[];for(a=0;a<this.rowCnt;a++)b=this.getRowEl(a),c={top:b.offset().top},a>0&&(d[a-1].bottom=c.top),d.push(c);return c.bottom=c.top+b.outerHeight(),d},computeColCoords:function(){var a,b,c,d=[];for(a=0;a<this.colCnt;a++)b=this.getColEl(a),c={left:b.offset().left},a>0&&(d[a-1].right=c.left),d.push(c);return c.right=c.left+b.outerWidth(),d},bindHandlers:function(){var b=this;this.el.on(m(),function(c){a(c.target).is(".fc-event-container *, .fc-more")||b.view.el.find(".fc-popover").length||a(c.target).closest(".fc-popover").length||b.dayMousedown(c)}),this.bindSegHandlers(),a(document).on("dragstart",this.documentDragStartProxy)},unbindHandlers:function(){a(document).off("dragstart",this.documentDragStartProxy)},dayMousedown:function(a){var b,c,d=this,e=this.view,f=e.opt("selectable"),g=new Za(this.coordMap,{scroll:e.opt("dragScroll"),dragStart:function(){e.unselect()},cellOver:function(a,e){var h=g.origCell;h&&(b=e?a:null,f&&(c=d.computeSelection(h,a),c?d.renderSelection(c):i()))},cellOut:function(a){b=null,c=null,d.destroySelection(),j()},listenStop:function(a){b&&(a.preventDefault(),e.trigger("dayClick",d.getCellDayEl(b),b.start,a)),c&&e.reportSelection(c,a),j()}});g.mousedown(a)},renderRangeHelper:function(a,b){var c;c=b?F(b.event):{},c.start=a.start.clone(),c.end=a.end?a.end.clone():null,c.allDay=null,this.view.calendar.normalizeEventDateProps(c),c.className=(c.className||[]).concat("fc-helper"),b||(c.editable=!1),this.renderHelper(c,b)},renderHelper:function(a,b){},destroyHelper:function(){},renderSelection:function(a){this.renderHighlight(a)},destroySelection:function(){this.destroyHighlight()},computeSelection:function(a,b){var c,d=[a.start,a.end,b.start,b.end];return d.sort(O),c={start:d[0].clone(),end:d[3].clone()},this.view.calendar.isSelectionRangeAllowed(c)?c:null},renderHighlight:function(a){this.renderFill("highlight",this.rangeToSegs(a))},destroyHighlight:function(){this.destroyFill("highlight")},highlightSegClasses:function(){return["fc-highlight"]},renderFill:function(a,b){},destroyFill:function(a){var b=this.elsByFill[a];b&&(b.remove(),delete this.elsByFill[a])},renderFillSegEls:function(b,c){var d,e=this,f=this[b+"SegEl"],g="",h=[];if(c.length){for(d=0;d<c.length;d++)g+=this.fillSegHtml(b,c[d]);a(g).each(function(b,d){var g=c[b],i=a(d);f&&(i=f.call(e,g,i)),i&&(i=a(i),i.is(e.fillSegTag)&&(g.el=i,h.push(g)))})}return h},fillSegTag:"div",fillSegHtml:function(a,b){var c=this[a+"SegClasses"],d=this[a+"SegStyles"],e=c?c.call(this,b):[],f=d?d.call(this,b):"";return"<"+this.fillSegTag+(e.length?' class="'+e.join(" ")+'"':"")+(f?' style="'+f+'"':"")+" />"},headHtml:function(){return'<div class="fc-row '+this.view.widgetHeaderClass+'"><table><thead>'+this.rowHtml("head")+"</thead></table></div>"},headCellHtml:function(a){var b=this.view,c=a.start;return'<th class="fc-day-header '+b.widgetHeaderClass+" fc-"+Ma[c.day()]+'">'+L(c.format(this.colHeadFormat))+"</th>"},bgCellHtml:function(a){var b=this.view,c=a.start,d=this.getDayClasses(c);return d.unshift("fc-day",b.widgetContentClass),'<td class="'+d.join(" ")+'" data-date="'+c.format("YYYY-MM-DD")+'"></td>'},getDayClasses:function(a){var b=this.view,c=b.calendar.getNow().stripTime(),d=["fc-"+Ma[a.day()]];return"month"===b.name&&a.month()!=b.intervalStart.month()&&d.push("fc-other-month"),a.isSame(c,"day")?d.push("fc-today",b.highlightStateClass):c>a?d.push("fc-past"):d.push("fc-future"),d}});ab.mixin({mousedOverSeg:null,isDraggingSeg:!1,isResizingSeg:!1,segs:null,renderEvents:function(a){var b,c,d=this.eventsToSegs(a),e=[],f=[];for(b=0;b<d.length;b++)c=d[b],ea(c.event)?e.push(c):f.push(c);e=this.renderBgSegs(e)||e,f=this.renderFgSegs(f)||f,this.segs=e.concat(f)},destroyEvents:function(){this.triggerSegMouseout(),this.destroyFgSegs(),this.destroyBgSegs(),this.segs=null},getEventSegs:function(){return this.segs||[]},renderFgSegs:function(a){},destroyFgSegs:function(){},renderFgSegEls:function(b,c){var d,e=this.view,f="",g=[];if(b.length){for(d=0;d<b.length;d++)f+=this.fgSegHtml(b[d],c);a(f).each(function(c,d){var f=b[c],h=e.resolveEventEl(f.event,a(d));h&&(h.data("fc-seg",f),f.el=h,g.push(f))})}return g},fgSegHtml:function(a,b){},renderBgSegs:function(a){return this.renderFill("bgEvent",a)},destroyBgSegs:function(){this.destroyFill("bgEvent")},bgEventSegEl:function(a,b){return this.view.resolveEventEl(a.event,b)},bgEventSegClasses:function(a){var b=a.event,c=b.source||{};return["fc-bgevent"].concat(b.className,c.className||[])},bgEventSegStyles:function(a){var b=this.view,c=a.event,d=c.source||{},e=c.color,f=d.color,g=b.opt("eventColor"),h=c.backgroundColor||e||d.backgroundColor||f||b.opt("eventBackgroundColor")||g;return h?"background-color:"+h:""},businessHoursSegClasses:function(a){return["fc-nonbusiness","fc-bgevent"]},bindSegHandlers:function(){var b=this,c=this.view,d={};d.mouseenter=function(a,c){b.triggerSegMouseover(a,c)},d.mouseleave=function(a,c){b.triggerSegMouseout(a,c)},d.click=function(a,b){return c.trigger("eventClick",this,a.event,b)},d[m()]=function(d,e){a(e.target).is(".fc-resizer")&&c.isEventResizable(d.event)?b.segResizeMousedown(d,e):!c.isEventDraggable(d.event)||k(e)&&!La||b.segDragMousedown(d,e)},a.each(d,function(c,d){b.el.on(c,".fc-event-container > *",function(c){var e=a(this).data("fc-seg");return!e||b.isDraggingSeg||b.isResizingSeg?void 0:d.call(this,e,c)})})},triggerSegMouseover:function(a,b){this.mousedOverSeg||(this.mousedOverSeg=a,this.view.trigger("eventMouseover",a.el[0],a.event,b))},triggerSegMouseout:function(a,b){b=b||{},this.mousedOverSeg&&(a=a||this.mousedOverSeg,this.mousedOverSeg=null,this.view.trigger("eventMouseout",a.el[0],a.event,b))},segDragMousedown:function(a,b){var c,d=this,e=this.view,f=a.el,g=a.event,h=new $a(a.el,{parentEl:e.el,opacity:e.opt("dragOpacity"),revertDuration:e.opt("dragRevertDuration"),zIndex:2}),k=new Za(e.coordMap,{distance:5,scroll:e.opt("dragScroll"),listenStart:function(a){h.hide(),h.start(a)},dragStart:function(b){d.triggerSegMouseout(a,b),d.isDraggingSeg=!0,e.hideEvent(g),e.trigger("eventDragStart",f[0],g,b,{})},cellOver:function(b,f){var j=a.cell||k.origCell;c=d.computeEventDrop(j,b,g),c?(e.renderDrag(c,a)?h.hide():h.show(),f&&(c=null)):(h.show(),i())},cellOut:function(){c=null,e.destroyDrag(),h.show(),j()},dragStop:function(a){h.stop(!c,function(){d.isDraggingSeg=!1,e.destroyDrag(),e.showEvent(g),e.trigger("eventDragStop",f[0],g,a,{}),c&&e.reportEventDrop(g,c,f,a)}),j()},listenStop:function(){h.stop()}});k.mousedown(b)},computeEventDrop:function(a,b,c){var d,e,f,g,h,i=a.start,j=b.start;return i.hasTime()===j.hasTime()?(d=z(j,i),e=c.start.clone().add(d),f=null===c.end?null:c.end.clone().add(d),g=c.allDay):(e=j.clone(),f=null,g=!j.hasTime()),h={start:e,end:f,allDay:g},this.view.calendar.isEventRangeAllowed(h,c)?h:null},documentDragStart:function(b,c){var d,e,f=this.view;f.opt("droppable")&&(d=a(b.target),e=f.opt("dropAccept"),(a.isFunction(e)?e.call(d[0],d):d.is(e))&&this.startExternalDrag(d,b,c))},startExternalDrag:function(b,c,d){var e,f,g=this,h=ka(b);e=new Za(this.coordMap,{cellOver:function(a){f=g.computeExternalDrop(a,h),f?g.renderDrag(f):i()},cellOut:function(){f=null,g.destroyDrag(),j()}}),a(document).one("dragstop",function(a,c){g.destroyDrag(),j(),f&&g.view.reportExternalDrop(h,f,b,a,c)}),e.startDrag(c)},computeExternalDrop:function(a,b){var c={start:a.start.clone(),end:null};return b.startTime&&!c.start.hasTime()&&c.start.time(b.startTime),b.duration&&(c.end=c.start.clone().add(b.duration)),this.view.calendar.isExternalDropRangeAllowed(c,b.eventProps)?c:null},renderDrag:function(a,b){},destroyDrag:function(){},segResizeMousedown:function(a,b){function c(){f.destroyEventResize(),g.showEvent(l),j()}var d,e,f=this,g=this.view,h=g.calendar,k=a.el,l=a.event,m=l.start,n=h.getEventEnd(l);e=new Za(this.coordMap,{distance:5,scroll:g.opt("dragScroll"),dragStart:function(b){f.triggerSegMouseout(a,b),f.isResizingSeg=!0,g.trigger("eventResizeStart",k[0],l,b,{})},cellOver:function(b){d=b.end,d.isAfter(m)||(d=m.clone().add(z(b.end,b.start))),d.isSame(n)?d=null:h.isEventRangeAllowed({start:m,end:d},l)?(f.renderEventResize({start:m,end:d},a),g.hideEvent(l)):(d=null,i())},cellOut:function(){d=null,c()},dragStop:function(a){f.isResizingSeg=!1,c(),g.trigger("eventResizeStop",k[0],l,a,{}),d&&g.reportEventResize(l,d,k,a)}}),e.mousedown(b)},renderEventResize:function(a,b){},destroyEventResize:function(){},getEventTimeText:function(a,b){return b=b||this.eventTimeFormat,a.end&&this.displayEventEnd?this.view.formatRange(a,b):a.start.format(b)},getSegClasses:function(a,b,c){var d=a.event,e=["fc-event",a.isStart?"fc-start":"fc-not-start",a.isEnd?"fc-end":"fc-not-end"].concat(d.className,d.source?d.source.className:[]);return b&&e.push("fc-draggable"),c&&e.push("fc-resizable"),e},getEventSkinCss:function(a){var b=this.view,c=a.source||{},d=a.color,e=c.color,f=b.opt("eventColor"),g=a.backgroundColor||d||c.backgroundColor||e||b.opt("eventBackgroundColor")||f,h=a.borderColor||d||c.borderColor||e||b.opt("eventBorderColor")||f,i=a.textColor||c.textColor||b.opt("eventTextColor"),j=[];return g&&j.push("background-color:"+g),h&&j.push("border-color:"+h),i&&j.push("color:"+i),j.join(";")},eventsToSegs:function(a,b){var c,d=this.eventsToRanges(a),e=[];for(c=0;c<d.length;c++)e.push.apply(e,this.eventRangeToSegs(d[c],b));return e},eventsToRanges:function(b){var c=this,d=ha(b),e=[];return a.each(d,function(a,b){b.length&&e.push.apply(e,fa(b[0])?c.eventsToInverseRanges(b):c.eventsToNormalRanges(b))}),e},eventsToNormalRanges:function(a){var b,c,d,e,f=this.view.calendar,g=[];for(b=0;b<a.length;b++)c=a[b],d=c.start.clone().stripZone(),e=f.getEventEnd(c).stripZone(),g.push({event:c,start:d,end:e,eventStartMS:+d,eventDurationMS:e-d});return g},eventsToInverseRanges:function(a){var b,c,d=this.view,e=d.start.clone().stripZone(),f=d.end.clone().stripZone(),g=this.eventsToNormalRanges(a),h=[],i=a[0],j=e;for(g.sort(ia),b=0;b<g.length;b++)c=g[b],c.start>j&&h.push({event:i,start:j,end:c.start}),j=c.end;return f>j&&h.push({event:i,start:j,end:f}),h},eventRangeToSegs:function(a,b){var c,d,e;for(c=b?b(a):this.rangeToSegs(a),d=0;d<c.length;d++)e=c[d],e.event=a.event,e.eventStartMS=a.eventStartMS,e.eventDurationMS=a.eventDurationMS;return c}}),Ca.compareSegs=ja,Ca.dataAttrPrefix="";var bb=ab.extend({numbersVisible:!1,bottomCoordPadding:0,breakOnWeeks:null,cellDates:null,dayToCellOffsets:null,rowEls:null,dayEls:null,helperEls:null,render:function(a){var b,c,d,e=this.view,f=this.rowCnt,g=this.colCnt,h=f*g,i="";for(b=0;f>b;b++)i+=this.dayRowHtml(b,a);for(this.el.html(i),this.rowEls=this.el.find(".fc-row"),this.dayEls=this.el.find(".fc-day"),c=0;h>c;c++)d=this.getCell(c),e.trigger("dayRender",null,d.start,this.dayEls.eq(c));ab.prototype.render.call(this)},destroy:function(){this.destroySegPopover(),ab.prototype.destroy.call(this)},dayRowHtml:function(a,b){var c=this.view,d=["fc-row","fc-week",c.widgetContentClass];return b&&d.push("fc-rigid"),'<div class="'+d.join(" ")+'"><div class="fc-bg"><table>'+this.rowHtml("day",a)+'</table></div><div class="fc-content-skeleton"><table>'+(this.numbersVisible?"<thead>"+this.rowHtml("number",a)+"</thead>":"")+"</table></div></div>"},dayCellHtml:function(a){return this.bgCellHtml(a)},computeColHeadFormat:function(){return this.rowCnt>1?"ddd":this.colCnt>1?this.view.opt("dayOfMonthFormat"):"dddd"},computeEventTimeFormat:function(){return this.view.opt("extraSmallTimeFormat")},computeDisplayEventEnd:function(){return 1==this.colCnt},updateCells:function(){var a,b,c,d;if(this.updateCellDates(),a=this.cellDates,this.breakOnWeeks){for(b=a[0].day(),d=1;d<a.length&&a[d].day()!=b;d++);c=Math.ceil(a.length/d)}else c=1,d=a.length;this.rowCnt=c,this.colCnt=d},updateCellDates:function(){for(var a=this.view,b=this.start.clone(),c=[],d=-1,e=[];b.isBefore(this.end);)a.isHiddenDay(b)?e.push(d+.5):(d++,e.push(d),c.push(b.clone())),b.add(1,"days");this.cellDates=c,this.dayToCellOffsets=e},computeCellRange:function(a){var b=this.colCnt,c=a.row*b+(this.isRTL?b-a.col-1:a.col),d=this.cellDates[c].clone(),e=d.clone().add(1,"day");return{start:d,end:e}},getRowEl:function(a){return this.rowEls.eq(a)},getColEl:function(a){return this.dayEls.eq(a)},getCellDayEl:function(a){return this.dayEls.eq(a.row*this.colCnt+a.col)},computeRowCoords:function(){var a=ab.prototype.computeRowCoords.call(this);return a[a.length-1].bottom+=this.bottomCoordPadding,a},rangeToSegs:function(a){var b,c,d,e,f,g,h,i,j,k,l=this.isRTL,m=this.rowCnt,n=this.colCnt,o=[];for(a=this.view.computeDayRange(a),b=this.dateToCellOffset(a.start),c=this.dateToCellOffset(a.end.subtract(1,"days")),d=0;m>d;d++)e=d*n,f=e+n-1,i=Math.max(e,b),j=Math.min(f,c),i=Math.ceil(i),j=Math.floor(j),j>=i&&(g=i===b,h=j===c,i-=e,j-=e,k={row:d,isStart:g,isEnd:h},l?(k.leftCol=n-j-1,k.rightCol=n-i-1):(k.leftCol=i,k.rightCol=j),o.push(k));return o},dateToCellOffset:function(a){var b=this.dayToCellOffsets,c=a.diff(this.start,"days");return 0>c?b[0]-1:c>=b.length?b[b.length-1]+1:b[c]},renderDrag:function(a,b){var c;return this.renderHighlight(this.view.calendar.ensureVisibleEventRange(a)),b&&!b.el.closest(this.el).length?(this.renderRangeHelper(a,b),c=this.view.opt("dragOpacity"),void 0!==c&&this.helperEls.css("opacity",c),!0):void 0},destroyDrag:function(){this.destroyHighlight(),this.destroyHelper()},renderEventResize:function(a,b){this.renderHighlight(a),this.renderRangeHelper(a,b)},destroyEventResize:function(){this.destroyHighlight(),this.destroyHelper()},renderHelper:function(b,c){var d,e=[],f=this.eventsToSegs([b]);f=this.renderFgSegEls(f),d=this.renderSegRows(f),this.rowEls.each(function(b,f){var g,h=a(f),i=a('<div class="fc-helper-skeleton"><table/></div>');g=c&&c.row===b?c.el.position().top:h.find(".fc-content-skeleton tbody").position().top,i.css("top",g).find("table").append(d[b].tbodyEl),h.append(i),e.push(i[0])}),this.helperEls=a(e)},destroyHelper:function(){this.helperEls&&(this.helperEls.remove(),this.helperEls=null)},fillSegTag:"td",renderFill:function(b,c){var d,e,f,g=[];for(c=this.renderFillSegEls(b,c),d=0;d<c.length;d++)e=c[d],f=this.renderFillRow(b,e),this.rowEls.eq(e.row).append(f),g.push(f[0]);return this.elsByFill[b]=a(g),c},renderFillRow:function(b,c){var d,e,f=this.colCnt,g=c.leftCol,h=c.rightCol+1;return d=a('<div class="fc-'+b.toLowerCase()+'-skeleton"><table><tr/></table></div>'),e=d.find("tr"),g>0&&e.append('<td colspan="'+g+'"/>'),e.append(c.el.attr("colspan",h-g)),f>h&&e.append('<td colspan="'+(f-h)+'"/>'),this.bookendCells(e,b),d}});bb.mixin({rowStructs:null,destroyEvents:function(){this.destroySegPopover(),ab.prototype.destroyEvents.apply(this,arguments)},getEventSegs:function(){return ab.prototype.getEventSegs.call(this).concat(this.popoverSegs||[])},renderBgSegs:function(b){var c=a.grep(b,function(a){return a.event.allDay});return ab.prototype.renderBgSegs.call(this,c)},renderFgSegs:function(b){var c;return b=this.renderFgSegEls(b),c=this.rowStructs=this.renderSegRows(b),this.rowEls.each(function(b,d){a(d).find(".fc-content-skeleton > table").append(c[b].tbodyEl)}),b},destroyFgSegs:function(){for(var a,b=this.rowStructs||[];a=b.pop();)a.tbodyEl.remove();this.rowStructs=null},renderSegRows:function(a){var b,c,d=[];for(b=this.groupSegRows(a),c=0;c<b.length;c++)d.push(this.renderSegRow(c,b[c]));return d},fgSegHtml:function(a,b){var c,d=this.view,e=a.event,f=d.isEventDraggable(e),g=!b&&e.allDay&&a.isEnd&&d.isEventResizable(e),h=this.getSegClasses(a,f,g),i=this.getEventSkinCss(e),j="";h.unshift("fc-day-grid-event"),!e.allDay&&a.isStart&&(j='<span class="fc-time">'+L(this.getEventTimeText(e))+"</span>");var k='<span class="eo-fullcalendar-screen-reader-text screen-reader-text"> '+L(this.getEventTimeText(e,"dddd, MMMM Do YYYY"))+" </span>";return c='<span class="fc-title">'+(L(e.title||"")||"&nbsp;")+"</span>",'<a class="'+h.join(" ")+'"'+(e.url?' href="'+L(e.url)+'"':"")+(i?' style="'+i+'"':"")+'><div class="fc-content">'+(this.isRTL?c+" "+j+k:k+j+" "+c)+"</div>"+(g?'<div class="fc-resizer"/>':"")+"</a>"},renderSegRow:function(b,c){function d(b){for(;b>g;)k=(r[e-1]||[])[g],k?k.attr("rowspan",parseInt(k.attr("rowspan")||1,10)+1):(k=a("<td/>"),h.append(k)),q[e][g]=k,r[e][g]=k,g++}var e,f,g,h,i,j,k,l=this.colCnt,m=this.buildSegLevels(c),n=Math.max(1,m.length),o=a("<tbody/>"),p=[],q=[],r=[];for(e=0;n>e;e++){if(f=m[e],g=0,h=a("<tr/>"),p.push([]),q.push([]),r.push([]),f)for(i=0;i<f.length;i++){for(j=f[i],d(j.leftCol),k=a('<td class="fc-event-container"/>').append(j.el),j.leftCol!=j.rightCol?k.attr("colspan",j.rightCol-j.leftCol+1):r[e][g]=k;g<=j.rightCol;)q[e][g]=k,p[e][g]=j,g++;h.append(k)}d(l),this.bookendCells(h,"eventSkeleton"),o.append(h)}return{row:b,tbodyEl:o,cellMatrix:q,segMatrix:p,segLevels:m,segs:c}},buildSegLevels:function(a){var b,c,d,e=[];for(a.sort(ja),b=0;b<a.length;b++){for(c=a[b],d=0;d<e.length&&la(c,e[d]);d++);c.level=d,(e[d]||(e[d]=[])).push(c)}for(d=0;d<e.length;d++)e[d].sort(ma);return e},groupSegRows:function(a){var b,c=[];for(b=0;b<this.rowCnt;b++)c.push([]);for(b=0;b<a.length;b++)c[a[b].row].push(a[b]);return c}}),bb.mixin({segPopover:null,popoverSegs:null,destroySegPopover:function(){this.segPopover&&this.segPopover.hide()},limitRows:function(a){var b,c,d=this.rowStructs||[];for(b=0;b<d.length;b++)this.unlimitRow(b),c=a?"number"==typeof a?a:this.computeRowLevelLimit(b):!1,c!==!1&&this.limitRow(b,c)},computeRowLevelLimit:function(a){var b,c,d=this.rowEls.eq(a),e=d.height(),f=this.rowStructs[a].tbodyEl.children();for(b=0;b<f.length;b++)if(c=f.eq(b).removeClass("fc-limited"),c.position().top+c.outerHeight()>e)return b;return!1},limitRow:function(b,c){function d(d){for(;d>x;)e=u.getCell(b,x),k=u.getCellSegs(e,c),k.length&&(n=g[c-1][x],t=u.renderMoreLink(e,k),s=a("<div/>").append(t),n.append(s),w.push(s[0])),x++}var e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u=this,v=this.rowStructs[b],w=[],x=0;if(c&&c<v.segLevels.length){for(f=v.segLevels[c-1],g=v.cellMatrix,h=v.tbodyEl.children().slice(c).addClass("fc-limited").get(),i=0;i<f.length;i++){for(j=f[i],d(j.leftCol),m=[],l=0;x<=j.rightCol;)e=this.getCell(b,x),k=this.getCellSegs(e,c),m.push(k),l+=k.length,x++;if(l){for(n=g[c-1][j.leftCol],o=n.attr("rowspan")||1,p=[],q=0;q<m.length;q++)r=a('<td class="fc-more-cell"/>').attr("rowspan",o),k=m[q],e=this.getCell(b,j.leftCol+q),t=this.renderMoreLink(e,[j].concat(k)),s=a("<div/>").append(t),r.append(s),p.push(r[0]),w.push(r[0]);n.addClass("fc-limited").after(a(p)),h.push(n[0])}}d(this.colCnt),v.moreEls=a(w),v.limitedEls=a(h)}},unlimitRow:function(a){var b=this.rowStructs[a];b.moreEls&&(b.moreEls.remove(),b.moreEls=null),b.limitedEls&&(b.limitedEls.removeClass("fc-limited"),b.limitedEls=null)},renderMoreLink:function(b,c){var d=this,e=this.view;return a('<a class="fc-more"/>').text(this.getMoreLinkText(c.length)).on("click",function(f){var g=e.opt("eventLimitClick"),h=b.start,i=a(this),j=d.getCellDayEl(b),k=d.getCellSegs(b),l=d.resliceDaySegs(k,h),m=d.resliceDaySegs(c,h);"function"==typeof g&&(g=e.trigger("eventLimitClick",null,{date:h,dayEl:j,moreEl:i,segs:l,hiddenSegs:m},f)),"popover"===g?d.showSegPopover(b,i,l):"string"==typeof g&&e.calendar.zoomTo(h,g)})},showSegPopover:function(a,b,c){var d,e,f=this,g=this.view,h=b.parent();d=1==this.rowCnt?g.el:this.rowEls.eq(a.row),e={className:"fc-more-popover",content:this.renderSegPopoverContent(a,c),parentEl:this.el,top:d.offset().top,autoHide:!0,viewportConstrain:g.opt("popoverViewportConstrain"),hide:function(){f.segPopover.destroy(),f.segPopover=null,f.popoverSegs=null}},this.isRTL?e.right=h.offset().left+h.outerWidth()+1:e.left=h.offset().left-1,this.segPopover=new Wa(e),this.segPopover.show()},renderSegPopoverContent:function(b,c){var d,e=this.view,f=e.opt("theme"),g=b.start.format(e.opt("dayPopoverFormat")),h=a('<div class="fc-header '+e.widgetHeaderClass+'"><span class="fc-close '+(f?"ui-icon ui-icon-closethick":"fc-icon fc-icon-x")+'"></span><span class="fc-title">'+L(g)+'</span><div class="fc-clear"/></div><div class="fc-body '+e.widgetContentClass+'"><div class="fc-event-container"></div></div>'),i=h.find(".fc-event-container");for(c=this.renderFgSegEls(c,!0),this.popoverSegs=c,d=0;d<c.length;d++)c[d].cell=b,i.append(c[d].el);return h},resliceDaySegs:function(b,c){var d=a.map(b,function(a){return a.event}),e=c.clone().stripTime(),f=e.clone().add(1,"days"),g={start:e,end:f};return this.eventsToSegs(d,function(a){var b=x(a,g);return b?[b]:[]})},getMoreLinkText:function(a){var b=this.view.opt("eventLimitText");return"function"==typeof b?b(a):"+"+a+" "+b},getCellSegs:function(a,b){for(var c,d=this.rowStructs[a.row].segMatrix,e=b||0,f=[];e<d.length;)c=d[e][a.col],c&&f.push(c),e++;return f}});var cb=ab.extend({slotDuration:null,snapDuration:null,minTime:null,maxTime:null,axisFormat:null,dayEls:null,slatEls:null,slatTops:null,helperEl:null,businessHourSegs:null,constructor:function(){ab.apply(this,arguments),this.processOptions()},render:function(){this.el.html(this.renderHtml()),this.dayEls=this.el.find(".fc-day"),this.slatEls=this.el.find(".fc-slats tr"),this.computeSlatTops(),this.renderBusinessHours(),ab.prototype.render.call(this)},renderBusinessHours:function(){var a=this.view.calendar.getBusinessHoursEvents();this.businessHourSegs=this.renderFill("businessHours",this.eventsToSegs(a),"bgevent")},renderHtml:function(){return'<div class="fc-bg"><table>'+this.rowHtml("slotBg")+'</table></div><div class="fc-slats"><table>'+this.slatRowHtml()+"</table></div>"},slotBgCellHtml:function(a){return this.bgCellHtml(a)},slatRowHtml:function(){for(var a,c,d,e=this.view,f=this.isRTL,g="",h=this.slotDuration.asMinutes()%15===0,i=b.duration(+this.minTime);i<this.maxTime;)a=this.start.clone().time(i),
4
  c=a.minutes(),d='<td class="fc-axis fc-time '+e.widgetContentClass+'" '+e.axisStyleAttr()+">"+(h&&c?"":"<span>"+L(a.format(this.axisFormat))+"</span>")+"</td>",g+="<tr "+(c?'class="fc-minor"':"")+">"+(f?"":d)+'<td class="'+e.widgetContentClass+'"/>'+(f?d:"")+"</tr>",i.add(this.slotDuration);return g},processOptions:function(){var a=this.view,c=a.opt("slotDuration"),d=a.opt("snapDuration");c=b.duration(c),d=d?b.duration(d):c,this.slotDuration=c,this.snapDuration=d,this.minTime=b.duration(a.opt("minTime")),this.maxTime=b.duration(a.opt("maxTime")),this.axisFormat=a.opt("axisFormat")||a.opt("smallTimeFormat")},computeColHeadFormat:function(){return this.colCnt>1?this.view.opt("dayOfMonthFormat"):"dddd"},computeEventTimeFormat:function(){return this.view.opt("noMeridiemTimeFormat")},computeDisplayEventEnd:function(){return!0},updateCells:function(){var a,b=this.view,c=[];for(a=this.start.clone();a.isBefore(this.end);)c.push({day:a.clone()}),a.add(1,"day"),a=b.skipHiddenDays(a);this.isRTL&&c.reverse(),this.colData=c,this.colCnt=c.length,this.rowCnt=Math.ceil((this.maxTime-this.minTime)/this.snapDuration)},computeCellRange:function(a){var b=this.computeSnapTime(a.row),c=this.view.calendar.rezoneDate(a.day).time(b),d=c.clone().add(this.snapDuration);return{start:c,end:d}},getColEl:function(a){return this.dayEls.eq(a)},computeSnapTime:function(a){return b.duration(this.minTime+this.snapDuration*a)},rangeToSegs:function(a){var b,c,d,e,f=this.colCnt,g=[];for(a={start:a.start.clone().stripZone(),end:a.end.clone().stripZone()},c=0;f>c;c++)d=this.colData[c].day,e={start:d.clone().time(this.minTime),end:d.clone().time(this.maxTime)},b=x(a,e),b&&(b.col=c,g.push(b));return g},resize:function(){this.computeSlatTops(),this.updateSegVerticals()},computeRowCoords:function(){var a,b,c=this.el.offset().top,d=[];for(a=0;a<this.rowCnt;a++)b={top:c+this.computeTimeTop(this.computeSnapTime(a))},a>0&&(d[a-1].bottom=b.top),d.push(b);return b.bottom=b.top+this.computeTimeTop(this.computeSnapTime(a)),d},computeDateTop:function(a,c){return this.computeTimeTop(b.duration(a.clone().stripZone()-c.clone().stripTime()))},computeTimeTop:function(a){var b,c,d,e,f=(a-this.minTime)/this.slotDuration;return f=Math.max(0,f),f=Math.min(this.slatEls.length,f),b=Math.floor(f),c=f-b,d=this.slatTops[b],c?(e=this.slatTops[b+1],d+(e-d)*c):d},computeSlatTops:function(){var b,c=[];this.slatEls.each(function(d,e){b=a(e).position().top,c.push(b)}),c.push(b+this.slatEls.last().outerHeight()),this.slatTops=c},renderDrag:function(a,b){var c;return b?(this.renderRangeHelper(a,b),c=this.view.opt("dragOpacity"),void 0!==c&&this.helperEl.css("opacity",c),!0):void this.renderHighlight(this.view.calendar.ensureVisibleEventRange(a))},destroyDrag:function(){this.destroyHelper(),this.destroyHighlight()},renderEventResize:function(a,b){this.renderRangeHelper(a,b)},destroyEventResize:function(){this.destroyHelper()},renderHelper:function(b,c){var d,e,f,g,h=this.eventsToSegs([b]);for(h=this.renderFgSegEls(h),d=this.renderSegTable(h),e=0;e<h.length;e++)f=h[e],c&&c.col===f.col&&(g=c.el,f.el.css({left:g.css("left"),right:g.css("right"),"margin-left":g.css("margin-left"),"margin-right":g.css("margin-right")}));this.helperEl=a('<div class="fc-helper-skeleton"/>').append(d).appendTo(this.el)},destroyHelper:function(){this.helperEl&&(this.helperEl.remove(),this.helperEl=null)},renderSelection:function(a){this.view.opt("selectHelper")?this.renderRangeHelper(a):this.renderHighlight(a)},destroySelection:function(){this.destroyHelper(),this.destroyHighlight()},renderFill:function(b,c,d){var e,f,g,h,i,j,k,l,m,n;if(c.length){for(c=this.renderFillSegEls(b,c),e=this.groupSegCols(c),d=d||b.toLowerCase(),f=a('<div class="fc-'+d+'-skeleton"><table><tr/></table></div>'),g=f.find("tr"),h=0;h<e.length;h++)if(i=e[h],j=a("<td/>").appendTo(g),i.length)for(k=a('<div class="fc-'+d+'-container"/>').appendTo(j),l=this.colData[h].day,m=0;m<i.length;m++)n=i[m],k.append(n.el.css({top:this.computeDateTop(n.start,l),bottom:-this.computeDateTop(n.end,l)}));this.bookendCells(g,b),this.el.append(f),this.elsByFill[b]=f}return c}});cb.mixin({eventSkeletonEl:null,renderFgSegs:function(b){return b=this.renderFgSegEls(b),this.el.append(this.eventSkeletonEl=a('<div class="fc-content-skeleton"/>').append(this.renderSegTable(b))),b},destroyFgSegs:function(a){this.eventSkeletonEl&&(this.eventSkeletonEl.remove(),this.eventSkeletonEl=null)},renderSegTable:function(b){var c,d,e,f,g,h,i=a("<table><tr/></table>"),j=i.find("tr");for(c=this.groupSegCols(b),this.computeSegVerticals(b),f=0;f<c.length;f++){for(g=c[f],na(g),h=a('<div class="fc-event-container"/>'),d=0;d<g.length;d++)e=g[d],e.el.css(this.generateSegPositionCss(e)),e.bottom-e.top<30&&e.el.addClass("fc-short"),h.append(e.el);j.append(a("<td/>").append(h))}return this.bookendCells(j,"eventSkeleton"),i},updateSegVerticals:function(){var a,b=(this.segs||[]).concat(this.businessHourSegs||[]);for(this.computeSegVerticals(b),a=0;a<b.length;a++)b[a].el.css(this.generateSegVerticalCss(b[a]))},computeSegVerticals:function(a){var b,c;for(b=0;b<a.length;b++)c=a[b],c.top=this.computeDateTop(c.start,c.start),c.bottom=this.computeDateTop(c.end,c.start)},fgSegHtml:function(a,b){var c,d,e,f=this.view,g=a.event,h=f.isEventDraggable(g),i=!b&&a.isEnd&&f.isEventResizable(g),j=this.getSegClasses(a,h,i),k=this.getEventSkinCss(g);return j.unshift("fc-time-grid-event"),f.isMultiDayEvent(g)?(a.isStart||a.isEnd)&&(c=this.getEventTimeText(a),d=this.getEventTimeText(a,"LT"),e=this.getEventTimeText({start:a.start})):(c=this.getEventTimeText(g),d=this.getEventTimeText(g,"LT"),e=this.getEventTimeText({start:g.start})),'<a class="'+j.join(" ")+'"'+(g.url?' href="'+L(g.url)+'"':"")+(k?' style="'+k+'"':"")+'><div class="fc-content">'+(c?'<div class="fc-time" data-start="'+L(e)+'" data-full="'+L(d)+'"><span>'+L(c)+"</span></div>":"")+(g.title?'<div class="fc-title">'+L(g.title)+"</div>":"")+'</div><div class="fc-bg"/>'+(i?'<div class="fc-resizer"/>':"")+"</a>"},generateSegPositionCss:function(a){var b,c,d=this.view.opt("slotEventOverlap"),e=a.backwardCoord,f=a.forwardCoord,g=this.generateSegVerticalCss(a);return d&&(f=Math.min(1,e+2*(f-e))),this.isRTL?(b=1-f,c=e):(b=e,c=1-f),g.zIndex=a.level+1,g.left=100*b+"%",g.right=100*c+"%",d&&a.forwardPressure&&(g[this.isRTL?"marginLeft":"marginRight"]=20),g},generateSegVerticalCss:function(a){return{top:a.top,bottom:-a.bottom}},groupSegCols:function(a){var b,c=[];for(b=0;b<this.colCnt;b++)c.push([]);for(b=0;b<a.length;b++)c[a[b].col].push(a[b]);return c}});var db=Ca.View=ca.extend({type:null,name:null,title:null,calendar:null,options:null,coordMap:null,el:null,start:null,end:null,intervalStart:null,intervalEnd:null,intervalDuration:null,intervalUnit:null,isSelected:!1,scrollerEl:null,scrollTop:null,widgetHeaderClass:null,widgetContentClass:null,highlightStateClass:null,nextDayThreshold:null,isHiddenDayHash:null,documentMousedownProxy:null,constructor:function(c,d,e){this.calendar=c,this.options=d,this.type=this.name=e,this.nextDayThreshold=b.duration(this.opt("nextDayThreshold")),this.initTheming(),this.initHiddenDays(),this.documentMousedownProxy=a.proxy(this,"documentMousedown"),this.initialize()},initialize:function(){},opt:function(b){var c;return c=this.options[b],void 0!==c?c:(c=this.calendar.options[b],a.isPlainObject(c)&&!e(b)?y(c,this.type):c)},trigger:function(a,b){var c=this.calendar;return c.trigger.apply(c,[a,b||this].concat(Array.prototype.slice.call(arguments,2),[this]))},setDate:function(a){this.setRange(this.computeRange(a))},setRange:function(b){a.extend(this,b),this.updateTitle()},computeRange:function(a){var c,d,e=b.duration(this.opt("duration")||this.constructor.duration||{days:1}),f=B(e),g=a.clone().startOf(f),h=g.clone().add(e);return/year|month|week|day/.test(f)?(g.stripTime(),h.stripTime()):(g.hasTime()||(g=this.calendar.rezoneDate(g)),h.hasTime()||(h=this.calendar.rezoneDate(h))),c=g.clone(),c=this.skipHiddenDays(c),d=h.clone(),d=this.skipHiddenDays(d,-1,!0),{intervalDuration:e,intervalUnit:f,intervalStart:g,intervalEnd:h,start:c,end:d}},computePrevDate:function(a){return this.massageCurrentDate(a.clone().startOf(this.intervalUnit).subtract(this.intervalDuration),-1)},computeNextDate:function(a){return this.massageCurrentDate(a.clone().startOf(this.intervalUnit).add(this.intervalDuration))},massageCurrentDate:function(a,c){return this.intervalDuration<=b.duration({days:1})&&this.isHiddenDay(a)&&(a=this.skipHiddenDays(a,c),a.startOf("day")),a},updateTitle:function(){this.title=this.computeTitle()},computeTitle:function(){return this.formatRange({start:this.intervalStart,end:this.intervalEnd},this.opt("titleFormat")||this.computeTitleFormat(),this.opt("titleRangeSeparator"))},computeTitleFormat:function(){return"year"==this.intervalUnit?"YYYY":"month"==this.intervalUnit?this.opt("monthYearFormat"):this.intervalDuration.as("days")>1?"ll":"LL"},formatRange:function(a,b,c){var d=a.end;return d.hasTime()||(d=d.clone().subtract(1)),Z(a.start,d,b,c,this.opt("isRTL"))},renderView:function(){this.render(),this.updateSize(),this.initializeScroll(),this.trigger("viewRender",this,this,this.el),a(document).on(m(),this.documentMousedownProxy)},render:function(){},destroyView:function(){this.unselect(),this.destroyViewEvents(),this.destroy(),this.trigger("viewDestroy",this,this,this.el),a(document).off(m(),this.documentMousedownProxy)},destroy:function(){this.el.empty()},initTheming:function(){var a=this.opt("theme")?"ui":"fc";this.widgetHeaderClass=a+"-widget-header",this.widgetContentClass=a+"-widget-content",this.highlightStateClass=a+"-state-highlight"},updateSize:function(a){a&&this.recordScroll(),this.updateHeight(),this.updateWidth()},updateWidth:function(){},updateHeight:function(){var a=this.calendar;this.setHeight(a.getSuggestedViewHeight(),a.isHeightAuto())},setHeight:function(a,b){},computeScrollerHeight:function(a,b){var c,d;return b=b||this.scrollerEl,c=this.el.add(b),c.css({position:"relative",left:-1}),d=this.el.outerHeight()-b.height(),c.css({position:"",left:""}),a-d},initializeScroll:function(){},recordScroll:function(){this.scrollerEl&&(this.scrollTop=this.scrollerEl.scrollTop())},restoreScroll:function(){null!==this.scrollTop&&this.scrollerEl.scrollTop(this.scrollTop)},renderViewEvents:function(a){this.renderEvents(a),this.eventSegEach(function(a){this.trigger("eventAfterRender",a.event,a.event,a.el)}),this.trigger("eventAfterAllRender")},renderEvents:function(){},destroyViewEvents:function(){this.eventSegEach(function(a){this.trigger("eventDestroy",a.event,a.event,a.el)}),this.destroyEvents()},destroyEvents:function(){},resolveEventEl:function(b,c){var d=this.trigger("eventRender",b,b,c);return d===!1?c=null:d&&d!==!0&&(c=a(d)),c},showEvent:function(a){this.eventSegEach(function(a){a.el.css("visibility","")},a)},hideEvent:function(a){this.eventSegEach(function(a){a.el.css("visibility","hidden")},a)},eventSegEach:function(a,b){var c,d=this.getEventSegs();for(c=0;c<d.length;c++)b&&d[c].event._id!==b._id||a.call(this,d[c])},getEventSegs:function(){return[]},isEventDraggable:function(a){var b=a.source||{};return K(a.startEditable,b.startEditable,this.opt("eventStartEditable"),a.editable,b.editable,this.opt("editable"))},reportEventDrop:function(a,b,c,d){var e=this.calendar,f=e.mutateEvent(a,b),g=function(){f.undo(),e.reportEventChange()};this.triggerEventDrop(a,f.dateDelta,g,c,d),e.reportEventChange()},triggerEventDrop:function(a,b,c,d,e){this.trigger("eventDrop",d[0],a,b,c,e,{})},reportExternalDrop:function(b,c,d,e,f){var g,h,i=b.eventProps;i&&(g=a.extend({},i,c),h=this.calendar.renderEvent(g,b.stick)[0]),this.triggerExternalDrop(h,c,d,e,f)},triggerExternalDrop:function(a,b,c,d,e){this.trigger("drop",c[0],b.start,d,e),a&&this.trigger("eventReceive",null,a)},renderDrag:function(a,b){},destroyDrag:function(){},isEventResizable:function(a){var b=a.source||{};return K(a.durationEditable,b.durationEditable,this.opt("eventDurationEditable"),a.editable,b.editable,this.opt("editable"))},reportEventResize:function(a,b,c,d){var e=this.calendar,f=e.mutateEvent(a,{end:b}),g=function(){f.undo(),e.reportEventChange()};this.triggerEventResize(a,f.durationDelta,g,c,d),e.reportEventChange()},triggerEventResize:function(a,b,c,d,e){this.trigger("eventResize",d[0],a,b,c,e,{})},select:function(a,b){this.unselect(b),this.renderSelection(a),this.reportSelection(a,b)},renderSelection:function(a){},reportSelection:function(a,b){this.isSelected=!0,this.trigger("select",null,a.start,a.end,b)},unselect:function(a){this.isSelected&&(this.isSelected=!1,this.destroySelection(),this.trigger("unselect",null,a))},destroySelection:function(){},documentMousedown:function(b){var c;this.isSelected&&this.opt("unselectAuto")&&w(b)&&(c=this.opt("unselectCancel"),c&&a(b.target).closest(c).length||this.unselect(b))},initHiddenDays:function(){var b,c=this.opt("hiddenDays")||[],d=[],e=0;for(this.opt("weekends")===!1&&c.push(0,6),b=0;7>b;b++)(d[b]=-1!==a.inArray(b,c))||e++;if(!e)throw"invalid hiddenDays";this.isHiddenDayHash=d},isHiddenDay:function(a){return b.isMoment(a)&&(a=a.day()),this.isHiddenDayHash[a]},skipHiddenDays:function(a,b,c){var d=a.clone();for(b=b||1;this.isHiddenDayHash[(d.day()+(c?b:0)+7)%7];)d.add(b,"days");return d},computeDayRange:function(a){var b,c=a.start.clone().stripTime(),d=a.end,e=null;return d&&(e=d.clone().stripTime(),b=+d.time(),b&&b>=this.nextDayThreshold&&e.add(1,"days")),(!d||c>=e)&&(e=c.clone().add(1,"days")),{start:c,end:e}},isMultiDayEvent:function(a){var b=this.computeDayRange(a);return b.end.diff(b.start,"days")>1}});Ca.sourceNormalizers=[],Ca.sourceFetchers=[];var eb={dataType:"json",cache:!1},fb=1,gb=Da.basic=db.extend({dayGrid:null,dayNumbersVisible:!1,weekNumbersVisible:!1,weekNumberWidth:null,headRowEl:null,initialize:function(){this.dayGrid=new bb(this),this.coordMap=this.dayGrid.coordMap},setRange:function(a){db.prototype.setRange.call(this,a),this.dayGrid.breakOnWeeks=/year|month|week/.test(this.intervalUnit),this.dayGrid.setRange(a)},computeRange:function(a){var b=db.prototype.computeRange.call(this,a);return/year|month/.test(b.intervalUnit)&&(b.start.startOf("week"),b.start=this.skipHiddenDays(b.start),b.end.weekday()&&(b.end.add(1,"week").startOf("week"),b.end=this.skipHiddenDays(b.end,-1,!0))),b},render:function(){this.dayNumbersVisible=this.dayGrid.rowCnt>1,this.weekNumbersVisible=this.opt("weekNumbers"),this.dayGrid.numbersVisible=this.dayNumbersVisible||this.weekNumbersVisible,this.el.addClass("fc-basic-view").html(this.renderHtml()),this.headRowEl=this.el.find("thead .fc-row"),this.scrollerEl=this.el.find(".fc-day-grid-container"),this.dayGrid.coordMap.containerEl=this.scrollerEl,this.dayGrid.el=this.el.find(".fc-day-grid"),this.dayGrid.render(this.hasRigidRows())},destroy:function(){this.dayGrid.destroy(),db.prototype.destroy.call(this)},renderHtml:function(){return'<table><thead><tr><td class="'+this.widgetHeaderClass+'">'+this.dayGrid.headHtml()+'</td></tr></thead><tbody><tr><td class="'+this.widgetContentClass+'"><div class="fc-day-grid-container"><div class="fc-day-grid"/></div></td></tr></tbody></table>'},headIntroHtml:function(){return this.weekNumbersVisible?'<th class="fc-week-number '+this.widgetHeaderClass+'" '+this.weekNumberStyleAttr()+"><span>"+L(this.opt("weekNumberTitle"))+"</span></th>":void 0},numberIntroHtml:function(a){return this.weekNumbersVisible?'<td class="fc-week-number" '+this.weekNumberStyleAttr()+"><span>"+this.calendar.calculateWeekNumber(this.dayGrid.getCell(a,0).start)+"</span></td>":void 0},dayIntroHtml:function(){return this.weekNumbersVisible?'<td class="fc-week-number '+this.widgetContentClass+'" '+this.weekNumberStyleAttr()+"></td>":void 0},introHtml:function(){return this.weekNumbersVisible?'<td class="fc-week-number" '+this.weekNumberStyleAttr()+"></td>":void 0},numberCellHtml:function(a){var b,c=a.start;return this.dayNumbersVisible?(b=this.dayGrid.getDayClasses(c),b.unshift("fc-day-number"),'<td class="'+b.join(" ")+'" data-date="'+c.format()+'">'+c.date()+"</td>"):"<td/>"},weekNumberStyleAttr:function(){return null!==this.weekNumberWidth?'style="width:'+this.weekNumberWidth+'px"':""},hasRigidRows:function(){var a=this.opt("eventLimit");return a&&"number"!=typeof a},updateWidth:function(){this.weekNumbersVisible&&(this.weekNumberWidth=r(this.el.find(".fc-week-number")))},setHeight:function(a,b){var c,d=this.opt("eventLimit");t(this.scrollerEl),h(this.headRowEl),this.dayGrid.destroySegPopover(),d&&"number"==typeof d&&this.dayGrid.limitRows(d),c=this.computeScrollerHeight(a),this.setGridHeight(c,b),d&&"number"!=typeof d&&this.dayGrid.limitRows(d),!b&&s(this.scrollerEl,c)&&(g(this.headRowEl,v(this.scrollerEl)),c=this.computeScrollerHeight(a),this.scrollerEl.height(c),this.restoreScroll())},setGridHeight:function(a,b){b?q(this.dayGrid.rowEls):p(this.dayGrid.rowEls,a,!0)},renderEvents:function(a){this.dayGrid.renderEvents(a),this.updateHeight()},getEventSegs:function(){return this.dayGrid.getEventSegs()},destroyEvents:function(){this.recordScroll(),this.dayGrid.destroyEvents()},renderDrag:function(a,b){return this.dayGrid.renderDrag(a,b)},destroyDrag:function(){this.dayGrid.destroyDrag()},renderSelection:function(a){this.dayGrid.renderSelection(a)},destroySelection:function(){this.dayGrid.destroySelection()}});c({fixedWeekCount:!0});var hb=Da.month=gb.extend({computeRange:function(a){var b,c=gb.prototype.computeRange.call(this,a);return this.isFixedWeeks()&&(b=Math.ceil(c.end.diff(c.start,"weeks",!0)),c.end.add(6-b,"weeks")),c},setGridHeight:function(a,b){b=b||"variable"===this.opt("weekMode"),b&&(a*=this.rowCnt/6),p(this.dayGrid.rowEls,a,!b)},isFixedWeeks:function(){var a=this.opt("weekMode");return a?"fixed"===a:this.opt("fixedWeekCount")}});hb.duration={months:1},Da.basicWeek={type:"basic",duration:{weeks:1}},Da.basicDay={type:"basic",duration:{days:1}},c({allDaySlot:!0,allDayText:"all-day",scrollTime:"06:00:00",slotDuration:"00:30:00",minTime:"00:00:00",maxTime:"24:00:00",slotEventOverlap:!0});var ib=5;Da.agenda=db.extend({timeGrid:null,dayGrid:null,axisWidth:null,noScrollRowEls:null,bottomRuleEl:null,bottomRuleHeight:null,initialize:function(){this.timeGrid=new cb(this),this.opt("allDaySlot")?(this.dayGrid=new bb(this),this.coordMap=new Ya([this.dayGrid.coordMap,this.timeGrid.coordMap])):this.coordMap=this.timeGrid.coordMap},setRange:function(a){db.prototype.setRange.call(this,a),this.timeGrid.setRange(a),this.dayGrid&&this.dayGrid.setRange(a)},render:function(){this.el.addClass("fc-agenda-view").html(this.renderHtml()),this.scrollerEl=this.el.find(".fc-time-grid-container"),this.timeGrid.coordMap.containerEl=this.scrollerEl,this.timeGrid.el=this.el.find(".fc-time-grid"),this.timeGrid.render(),this.bottomRuleEl=a('<hr class="'+this.widgetHeaderClass+'"/>').appendTo(this.timeGrid.el),this.dayGrid&&(this.dayGrid.el=this.el.find(".fc-day-grid"),this.dayGrid.render(),this.dayGrid.bottomCoordPadding=this.dayGrid.el.next("hr").outerHeight()),this.noScrollRowEls=this.el.find(".fc-row:not(.fc-scroller *)")},destroy:function(){this.timeGrid.destroy(),this.dayGrid&&this.dayGrid.destroy(),db.prototype.destroy.call(this)},renderHtml:function(){return'<table><thead><tr><td class="'+this.widgetHeaderClass+'">'+this.timeGrid.headHtml()+'</td></tr></thead><tbody><tr><td class="'+this.widgetContentClass+'">'+(this.dayGrid?'<div class="fc-day-grid"/><hr class="'+this.widgetHeaderClass+'"/>':"")+'<div class="fc-time-grid-container"><div class="fc-time-grid"/></div></td></tr></tbody></table>'},headIntroHtml:function(){var a,b,c,d;return this.opt("weekNumbers")?(a=this.timeGrid.getCell(0).start,b=this.calendar.calculateWeekNumber(a),c=this.opt("weekNumberTitle"),d=this.opt("isRTL")?b+c:c+b,'<th class="fc-axis fc-week-number '+this.widgetHeaderClass+'" '+this.axisStyleAttr()+"><span>"+L(d)+"</span></th>"):'<th class="fc-axis '+this.widgetHeaderClass+'" '+this.axisStyleAttr()+"></th>"},dayIntroHtml:function(){return'<td class="fc-axis '+this.widgetContentClass+'" '+this.axisStyleAttr()+"><span>"+(this.opt("allDayHtml")||L(this.opt("allDayText")))+"</span></td>"},slotBgIntroHtml:function(){return'<td class="fc-axis '+this.widgetContentClass+'" '+this.axisStyleAttr()+"></td>"},introHtml:function(){return'<td class="fc-axis" '+this.axisStyleAttr()+"></td>"},axisStyleAttr:function(){return null!==this.axisWidth?'style="width:'+this.axisWidth+'px"':""},updateSize:function(a){a&&this.timeGrid.resize(),db.prototype.updateSize.call(this,a)},updateWidth:function(){this.axisWidth=r(this.el.find(".fc-axis"))},setHeight:function(a,b){var c,d;null===this.bottomRuleHeight&&(this.bottomRuleHeight=this.bottomRuleEl.outerHeight()),this.bottomRuleEl.hide(),this.scrollerEl.css("overflow",""),t(this.scrollerEl),h(this.noScrollRowEls),this.dayGrid&&(this.dayGrid.destroySegPopover(),c=this.opt("eventLimit"),c&&"number"!=typeof c&&(c=ib),c&&this.dayGrid.limitRows(c)),b||(d=this.computeScrollerHeight(a),s(this.scrollerEl,d)?(g(this.noScrollRowEls,v(this.scrollerEl)),d=this.computeScrollerHeight(a),this.scrollerEl.height(d),this.restoreScroll()):(this.scrollerEl.height(d).css("overflow","hidden"),this.bottomRuleEl.show()))},initializeScroll:function(){function a(){c.scrollerEl.scrollTop(e)}var c=this,d=b.duration(this.opt("scrollTime")),e=this.timeGrid.computeTimeTop(d);e=Math.ceil(e),e&&e++,a(),setTimeout(a,0)},renderEvents:function(a){var b,c,d=[],e=[],f=[];for(c=0;c<a.length;c++)a[c].allDay?d.push(a[c]):e.push(a[c]);b=this.timeGrid.renderEvents(e),this.dayGrid&&(f=this.dayGrid.renderEvents(d)),this.updateHeight()},getEventSegs:function(){return this.timeGrid.getEventSegs().concat(this.dayGrid?this.dayGrid.getEventSegs():[])},destroyEvents:function(){this.recordScroll(),this.timeGrid.destroyEvents(),this.dayGrid&&this.dayGrid.destroyEvents()},renderDrag:function(a,b){return a.start.hasTime()?this.timeGrid.renderDrag(a,b):this.dayGrid?this.dayGrid.renderDrag(a,b):void 0},destroyDrag:function(){this.timeGrid.destroyDrag(),this.dayGrid&&this.dayGrid.destroyDrag()},renderSelection:function(a){a.start.hasTime()||a.end.hasTime()?this.timeGrid.renderSelection(a):this.dayGrid&&this.dayGrid.renderSelection(a)},destroySelection:function(){this.timeGrid.destroySelection(),this.dayGrid&&this.dayGrid.destroySelection()}}),Da.agendaWeek={type:"agenda",duration:{weeks:1}},Da.agendaDay={type:"agenda",duration:{days:1}};var jb=Da.list=db.extend({dayGrid:null,weekNumberWidth:null,headRowEl:null,defultEventLimit:5,viewDateOnLeft:!1,initialize:function(){this.dayGrid=new bb(this),this.coordMap=this.dayGrid.coordMap},setRange:function(a){db.prototype.setRange.call(this,a),this.dayGrid.breakOnWeeks=/year|month|week/.test(this.intervalUnit),this.dayGrid.setRange(a)},render:function(){this.dayGrid.colCnt=1,this.dayGrid.rowCnt=this.dayGrid.cellDates.length,this.dayGrid.numbersVisible=!0,this.opt("viewDateOnLeft")?(this.viewDateOnLeft=this.opt("viewDateOnLeft"),this.el.removeClass("fc-display-date-above")):this.el.addClass("fc-display-date-above"),this.el.addClass("fc-basic-view").html(this.renderHtml()),this.headRowEl=this.el.find("thead .fc-row"),this.scrollerEl=this.el.find(".fc-day-grid-container"),this.dayGrid.coordMap.containerEl=this.scrollerEl,this.dayGrid.el=this.el.find(".fc-day-grid"),this.dayGrid.render(this.hasRigidRows()),db.prototype.render.call(this)},destroy:function(){this.dayGrid.destroy(),db.prototype.destroy.call(this)},renderHtml:function(){return'<table><tbody><tr><td class="'+this.widgetContentClass+'"><div class="fc-day-grid-container"><div class="fc-day-grid"/></div></td></tr></tbody></table>'},headIntroHtml:function(){return this.viewDateOnLeft===!0?'<th class="fc-week-number '+this.widgetHeaderClass+'" '+this.weekNumberStyleAttr()+"><span></span></th>":""},numberIntroHtml:function(a){return this.viewDateOnLeft===!0?'<td class="fc-week-number" '+this.weekNumberStyleAttr()+"><span>"+this.dayGrid.getCell(a,0).start.format("ddd MMM D, YYYY")+"</span></td>":""},dayIntroHtml:function(){return this.viewDateOnLeft===!0?'<td class="fc-week-number '+this.widgetContentClass+'" '+this.weekNumberStyleAttr()+"></td>":""},introHtml:function(){return this.viewDateOnLeft===!0?'<td class="fc-week-number" '+this.weekNumberStyleAttr()+"></td>":""},numberCellHtml:function(a){if(this.viewDateOnLeft===!0)return"<td/>";var b,c=a.start;return b=this.dayGrid.getDayClasses(c),b.unshift("fc-day-number"),'<td class="'+b.join(" ")+'" data-date="'+c.format()+'"><span class="fc-list-header-left">'+c.format("dddd")+'</span><span class="fc-list-header-right">'+c.format("MMM D")+"</span></td>"},weekNumberStyleAttr:function(){return null!==this.weekNumberWidth?'style="width:'+this.weekNumberWidth+'px"':""},hasRigidRows:function(){var a=this.opt("eventLimit");return a===!0&&(a=this.defultEventLimit),a&&"number"!=typeof a},updateWidth:function(){this.weekNumberWidth=r(this.el.find(".fc-week-number"))},setHeight:function(a,b){var c=this.opt("eventLimit");c===!0&&(c=this.defultEventLimit);var d;t(this.scrollerEl),h(this.headRowEl),this.dayGrid.destroySegPopover(),c&&"number"==typeof c&&this.dayGrid.limitRows(c),d=this.computeScrollerHeight(a),this.setGridHeight(d,b),c&&"number"!=typeof c&&this.dayGrid.limitRows(c),!b&&s(this.scrollerEl,d)&&(g(this.headRowEl,v(this.scrollerEl)),d=this.computeScrollerHeight(a),this.scrollerEl.height(d),this.restoreScroll())},setGridHeight:function(a,b){b?q(this.dayGrid.rowEls):p(this.dayGrid.rowEls,a,!0)},renderEvents:function(a){this.dayGrid.renderEvents(a),this.updateHeight(),db.prototype.renderEvents.call(this,a)},getSegs:function(){return this.dayGrid.getSegs()},destroyEvents:function(){db.prototype.destroyEvents.call(this),this.recordScroll(),this.dayGrid.destroyEvents()},renderDrag:function(a,b,c){return this.dayGrid.renderDrag(a,b,c)},destroyDrag:function(){this.dayGrid.destroyDrag()},renderSelection:function(a,b){this.dayGrid.renderSelection(a,b)},destroySelection:function(){this.dayGrid.destroySelection()}});jb.duration={months:1},Da.listMonth={type:"list",duration:{months:1}},Da.listWeek={type:"list",duration:{weeks:1}},Da.listDay={type:"list",duration:{days:1}}});
js/jquery-ui-eo-timepicker.min.js CHANGED
@@ -1,2 +1,2 @@
1
- /*! event-organiser 3.9.1-0-g845144e 2020-05-28 21:35 */
2
  !function($){function eoTimepicker(){this.debug=!0,this._curInst=null,this._disabledInputs=[],this._timepickerShowing=!1,this._inDialog=!1,this._dialogClass="ui-timepicker-dialog",this._mainDivId="ui-timepicker-div",this._inlineClass="ui-timepicker-inline",this._currentClass="ui-timepicker-current",this._dayOverClass="ui-timepicker-days-cell-over",this.regional=[],this.regional[""]={hourText:"Hour",minuteText:"Minute",amPmText:["AM","PM"],closeButtonText:"Done",nowButtonText:"Now",deselectButtonText:"Deselect"},this._defaults={showOn:"focus",button:null,showAnim:"fadeIn",showOptions:{},appendText:"",beforeShow:null,onSelect:null,onClose:null,timeSeparator:":",periodSeparator:" ",showPeriod:!1,showPeriodLabels:!0,showLeadingZero:!0,showMinutesLeadingZero:!0,altField:"",defaultTime:"now",myPosition:"left top",atPosition:"left bottom",onHourShow:null,onMinuteShow:null,hours:{starts:0,ends:23},minutes:{starts:0,ends:55,interval:5,manual:[]},rows:4,showHours:!0,showMinutes:!0,optionalMinutes:!1,showCloseButton:!1,showNowButton:!1,showDeselectButton:!1,maxTime:{hour:null,minute:null},minTime:{hour:null,minute:null}},$.extend(this._defaults,this.regional[""]),this.tpDiv=$('<div id="'+this._mainDivId+'" class="ui-timepicker ui-widget ui-helper-clearfix ui-corner-all " style="display: none"></div>')}function extendRemove(a,b){$.extend(a,b);for(var c in b)(null==b[c]||void 0==b[c])&&(a[c]=b[c]);return a}$.extend($.ui,{eotimepicker:{version:"0.3.3"}});var PROP_NAME="eotimepicker",tpuuid=(new Date).getTime();$.extend(eoTimepicker.prototype,{markerClassName:"hasTimepicker",log:function(){this.debug&&console.log.apply("",arguments)},_widgetTimepicker:function(){return this.tpDiv},setDefaults:function(a){return extendRemove(this._defaults,a||{}),this},_attachTimepicker:function(target,settings){var inlineSettings=null;for(var attrName in this._defaults){var attrValue=target.getAttribute("time:"+attrName);if(attrValue){inlineSettings=inlineSettings||{};try{inlineSettings[attrName]=eval(attrValue)}catch(err){inlineSettings[attrName]=attrValue}}}var nodeName=target.nodeName.toLowerCase(),inline="div"==nodeName||"span"==nodeName;target.id||(this.uuid+=1,target.id="tp"+this.uuid);var inst=this._newInst($(target),inline);inst.settings=$.extend({},settings||{},inlineSettings||{}),"input"==nodeName?(this._connectTimepicker(target,inst),this._setTimeFromField(inst)):inline&&this._inlineTimepicker(target,inst)},_newInst:function(a,b){var c=a[0].id.replace(/([^A-Za-z0-9_-])/g,"\\\\$1");return{id:c,input:a,inline:b,tpDiv:b?$('<div class="'+this._inlineClass+' ui-timepicker ui-widget ui-helper-clearfix"></div>'):this.tpDiv}},_connectTimepicker:function(a,b){var c=$(a);b.append=$([]),b.trigger=$([]),c.hasClass(this.markerClassName)||(this._attachments(c,b),c.addClass(this.markerClassName).keydown(this._doKeyDown).keyup(this._doKeyUp).bind("setData.eotimepicker",function(a,c,d){b.settings[c]=d}).bind("getData.eotimepicker",function(a,c){return this._get(b,c)}),$.data(a,PROP_NAME,b))},_getHours:function(a){var b=Array(),c=this._get(a,"hours");for(h=c.starts;h<=c.ends;h++)b.push(h);return b},_getMinutes:function(a){var b=this._get(a,"minutes"),c=Array();for(b.starts||(b.starts=0),b.ends||(b.ends=59),b.manual||(b.manual=[]),m=b.starts;m<=b.ends;m+=b.interval)c.push(m);for(i=0;i<b.manual.length;i++){var d=b.manual[i];"number"!=typeof d||0>d||d>59||$.inArray(d,c)>=0||c.push(d)}return c.sort(function(a,b){return a-b}),c},_modulo:function(a,b){return(a%b+b)%b},_doKeyDown:function(a){var b=$.eotimepicker._getInst(a.target),c=!0;if(b._keyEvent=!0,$.eotimepicker._timepickerShowing){var d=a.ctrlKey||a.metaKey,e=a.shiftKey,f=$.eotimepicker._getHours(b),g=$.eotimepicker._getMinutes(b),h=$.eotimepicker._get(b,"rows"),i=Math.ceil(f.length/h),j=Math.round(g.length/h+.49);switch(a.keyCode){case 9:$.eotimepicker._hideTimepicker(),c=!1;break;case 13:return b.hours=b.hlHours,b.minutes=b.hlMinutes,$.eotimepicker._updateSelectedValue(b),$.eotimepicker._hideTimepicker(),!1;case 27:$.eotimepicker._hideTimepicker();break;case 37:c=d||e,e?$.eotimepicker._moveHighlight(b,-1,"minute"):d&&$.eotimepicker._moveHighlight(b,-1,"hour");break;case 38:c=d||e,e?$.eotimepicker._moveHighlight(b,-j,"minute"):d&&$.eotimepicker._moveHighlight(b,-i,"hour");break;case 39:c=d||e,e?$.eotimepicker._moveHighlight(b,1,"minute"):d&&$.eotimepicker._moveHighlight(b,1,"hour");break;case 40:c=d||e,e?$.eotimepicker._moveHighlight(b,j,"minute"):d&&$.eotimepicker._moveHighlight(b,i,"hour");break;default:c=!1}}else 36==a.keyCode&&a.ctrlKey?$.eotimepicker._showTimepicker(this):c=!1;c&&(a.preventDefault(),a.stopPropagation())},_moveHighlight:function(a,b,c){var d=this._getMinutes(a),e=this._getHours(a),f=this._get(a,"maxTime"),g=this._get(a,"minTime");if("hour"==c.toLowerCase()){var h=$.inArray(a.hlHours,e);a.hlHours=e[this._modulo(h+b,e.length)]}else{var h=$.inArray(a.hlMinutes,d);a.hlMinutes=d[this._modulo(h+b,d.length)]}g.hour&&(a.hlHours=Math.max(a.hlHours,g.hour)),f.hour&&(a.hlHours=Math.min(a.hlHours,f.hour)),g.minute&&a.hlHours<=g.hour&&(a.hlMinutes=Math.max(a.hlMinutes,g.minute)),f.minute&&a.hlHours>=f.hour&&(a.hlMinutes=Math.min(a.hlMinutes,f.minute))},_doKeyUp:function(a){var b=$.eotimepicker._getInst(a.target);$.eotimepicker._setTimeFromField(b),$.eotimepicker._updateTimepicker(b)},_attachments:function(a,b){var c=this._get(b,"appendText"),d=this._get(b,"isRTL");b.append&&b.append.remove(),c&&(b.append=$('<span class="'+this._appendClass+'">'+c+"</span>"),a[d?"before":"after"](b.append)),a.unbind("focus.eotimepicker",this._showTimepicker),a.unbind("click.eotimepicker",this._adjustZIndex),b.trigger&&b.trigger.remove();var e=this._get(b,"showOn");if(("focus"==e||"both"==e)&&(a.bind("focus.eotimepicker",this._showTimepicker),a.bind("click.eotimepicker",this._adjustZIndex)),"button"==e||"both"==e){var f=this._get(b,"button");null==f&&(f=$('<button class="ui-timepicker-trigger" type="button">...</button>'),a.after(f)),$(f).bind("click.eotimepicker",function(){return $.eotimepicker._timepickerShowing&&$.eotimepicker._lastInput==a[0]?$.eotimepicker._hideTimepicker():b.input.is(":disabled")||$.eotimepicker._showTimepicker(a[0]),!1})}},_inlineTimepicker:function(a,b){var c=$(a);c.hasClass(this.markerClassName)||(c.addClass(this.markerClassName).append(b.tpDiv).bind("setData.eotimepicker",function(a,c,d){b.settings[c]=d}).bind("getData.eotimepicker",function(a,c){return this._get(b,c)}),$.data(a,PROP_NAME,b),this._setTimeFromField(b),this._updateTimepicker(b),b.tpDiv.show())},_adjustZIndex:function(a){a=a.target||a;var b=$.eotimepicker._getInst(a);b.tpDiv.css("zIndex",$.eotimepicker._getZIndex(a)+1)},_showTimepicker:function(a){if(a=a.target||a,"input"!=a.nodeName.toLowerCase()&&(a=$("input",a.parentNode)[0]),!$.eotimepicker._isDisabledTimepicker(a)&&$.eotimepicker._lastInput!=a){$.eotimepicker._hideTimepicker();var b=$.eotimepicker._getInst(a);$.eotimepicker._curInst&&$.eotimepicker._curInst!=b&&$.eotimepicker._curInst.tpDiv.stop(!0,!0);var c=$.eotimepicker._get(b,"beforeShow");extendRemove(b.settings,c?c.apply(a,[a,b]):{}),b.lastVal=null,$.eotimepicker._lastInput=a,$.eotimepicker._setTimeFromField(b),b.hlMinutes=b.minutes,b.hlHours=b.hours,$.eotimepicker._inDialog&&(a.value=""),$.eotimepicker._pos||($.eotimepicker._pos=$.eotimepicker._findPos(a),$.eotimepicker._pos[1]+=a.offsetHeight);var d=!1;$(a).parents().each(function(){return d|="fixed"==$(this).css("position"),!d});var e={left:$.eotimepicker._pos[0],top:$.eotimepicker._pos[1]};if($.eotimepicker._pos=null,b.tpDiv.css({position:"absolute",display:"block",top:"-1000px"}),$.eotimepicker._updateTimepicker(b),!b.inline&&"object"==typeof $.ui.position){b.tpDiv.position({of:b.input,my:$.eotimepicker._get(b,"myPosition"),at:$.eotimepicker._get(b,"atPosition"),collision:"flip"});var e=b.tpDiv.offset();$.eotimepicker._pos=[e.top,e.left]}if(b._hoursClicked=!1,b._minutesClicked=!1,e=$.eotimepicker._checkOffset(b,e,d),b.tpDiv.css({position:$.eotimepicker._inDialog&&$.blockUI?"static":d?"fixed":"absolute",display:"none",left:e.left+"px",top:e.top+"px"}),!b.inline){var f=$.eotimepicker._get(b,"showAnim"),g=$.eotimepicker._get(b,"duration"),h=function(){$.eotimepicker._timepickerShowing=!0;var a=$.eotimepicker._getBorders(b.tpDiv);b.tpDiv.find("iframe.ui-timepicker-cover").css({left:-a[0],top:-a[1],width:b.tpDiv.outerWidth(),height:b.tpDiv.outerHeight()})};$.eotimepicker._adjustZIndex(a),$.effects&&$.effects[f]?b.tpDiv.show(f,$.eotimepicker._get(b,"showOptions"),g,h):b.tpDiv.show(f?g:null,h),f&&g||h(),b.input.is(":visible")&&!b.input.is(":disabled")&&b.input.focus(),$.eotimepicker._curInst=b}}},_getZIndex:function(a){for(var b,c,d=$(a),e=0;d.length&&d[0]!==document;)b=d.css("position"),("absolute"===b||"relative"===b||"fixed"===b)&&(c=parseInt(d.css("zIndex"),10),isNaN(c)||0===c||c>e&&(e=c)),d=d.parent();return e},_refreshTimepicker:function(a){var b=this._getInst(a);b&&this._updateTimepicker(b)},_updateTimepicker:function(a){a.tpDiv.empty().append(this._generateHTML(a)),this._rebindDialogEvents(a)},_rebindDialogEvents:function(a){var b=$.eotimepicker._getBorders(a.tpDiv),c=this;a.tpDiv.find("iframe.ui-timepicker-cover").css({left:-b[0],top:-b[1],width:a.tpDiv.outerWidth(),height:a.tpDiv.outerHeight()}).end().find(".ui-timepicker-minute-cell").unbind().bind("click",{fromDoubleClick:!1},$.proxy($.eotimepicker.selectMinutes,this)).bind("dblclick",{fromDoubleClick:!0},$.proxy($.eotimepicker.selectMinutes,this)).end().find(".ui-timepicker-hour-cell").unbind().bind("click",{fromDoubleClick:!1},$.proxy($.eotimepicker.selectHours,this)).bind("dblclick",{fromDoubleClick:!0},$.proxy($.eotimepicker.selectHours,this)).end().find(".ui-timepicker td a").unbind().bind("mouseout",function(){$(this).removeClass("ui-state-hover"),-1!=this.className.indexOf("ui-timepicker-prev")&&$(this).removeClass("ui-timepicker-prev-hover"),-1!=this.className.indexOf("ui-timepicker-next")&&$(this).removeClass("ui-timepicker-next-hover")}).bind("mouseover",function(){c._isDisabledTimepicker(a.inline?a.tpDiv.parent()[0]:a.input[0])||($(this).parents(".ui-timepicker-calendar").find("a").removeClass("ui-state-hover"),$(this).addClass("ui-state-hover"),-1!=this.className.indexOf("ui-timepicker-prev")&&$(this).addClass("ui-timepicker-prev-hover"),-1!=this.className.indexOf("ui-timepicker-next")&&$(this).addClass("ui-timepicker-next-hover"))}).end().find("."+this._dayOverClass+" a").trigger("mouseover").end().find(".ui-timepicker-now").bind("click",function(a){$.eotimepicker.selectNow(a)}).end().find(".ui-timepicker-deselect").bind("click",function(a){$.eotimepicker.deselectTime(a)}).end().find(".ui-timepicker-close").bind("click",function(a){$.eotimepicker._hideTimepicker()}).end()},_generateHTML:function(a){var b,c,d,e=1==this._get(a,"showPeriod"),f=1==this._get(a,"showPeriodLabels"),g=1==this._get(a,"showLeadingZero"),h=1==this._get(a,"showHours"),i=1==this._get(a,"showMinutes"),j=this._get(a,"amPmText"),k=this._get(a,"rows"),l=0,m=0,n=0,o=0,p=0,q=0,r=Array(),s=null,t=0,u=this._get(a,"hourText"),v=this._get(a,"showCloseButton"),w=this._get(a,"closeButtonText"),x=this._get(a,"showNowButton"),y=this._get(a,"nowButtonText"),z=this._get(a,"showDeselectButton"),A=this._get(a,"deselectButtonText"),B=v||x||z;if(r=this._getHours(a),s=Math.ceil(r.length/k),f){for(t=0;t<r.length;t++)r[t]<12?n++:o++;t=0,l=Math.floor(n/r.length*k),m=Math.floor(o/r.length*k),k!=l+m&&(n&&(!o||!l||m&&n/l>=o/m)?l++:m++),p=Math.min(l,1),q=l+1,s=0==l?Math.ceil(o/m):0==m?Math.ceil(n/l):Math.ceil(Math.max(n/l,o/m))}if(d='<table class="ui-timepicker-table ui-widget-content ui-corner-all"><tr>',h){for(d+='<td class="ui-timepicker-hours"><div class="ui-timepicker-title ui-widget-header ui-helper-clearfix ui-corner-all">'+u+'</div><table class="ui-timepicker">',b=1;k>=b;b++){for(d+="<tr>",b==p&&f&&(d+='<th rowspan="'+l.toString()+'" class="periods" scope="row">'+j[0]+"</th>"),b==q&&f&&(d+='<th rowspan="'+m.toString()+'" class="periods" scope="row">'+j[1]+"</th>"),c=1;s>=c;c++)f&&q>b&&r[t]>=12?d+=this._generateHTMLHourCell(a,void 0,e,g):(d+=this._generateHTMLHourCell(a,r[t],e,g),t++);d+="</tr>"}d+="</table></td>"}if(i&&(d+='<td class="ui-timepicker-minutes">',d+=this._generateHTMLMinutes(a),d+="</td>"),d+="</tr>",B){var C='<tr><td colspan="3"><div class="ui-timepicker-buttonpane ui-widget-content">';x&&(C+='<button type="button" class="ui-timepicker-now ui-state-default ui-corner-all" data-timepicker-instance-id="#'+a.id.replace(/\\\\/g,"\\")+'" >'+y+"</button>"),z&&(C+='<button type="button" class="ui-timepicker-deselect ui-state-default ui-corner-all" data-timepicker-instance-id="#'+a.id.replace(/\\\\/g,"\\")+'" >'+A+"</button>"),v&&(C+='<button type="button" class="ui-timepicker-close ui-state-default ui-corner-all" data-timepicker-instance-id="#'+a.id.replace(/\\\\/g,"\\")+'" >'+w+"</button>"),d+=C+"</div></td></tr>"}return d+="</table>"},_updateMinuteDisplay:function(a){var b=this._generateHTMLMinutes(a);a.tpDiv.find("td.ui-timepicker-minutes").html(b),this._rebindDialogEvents(a)},_generateHTMLMinutes:function(a){var b,c,d="",e=this._get(a,"rows"),f=Array(),g=null,h=0,i=1==this._get(a,"showMinutesLeadingZero"),j=this._get(a,"onMinuteShow"),k=this._get(a,"minuteText");if(f=this._getMinutes(a),g=Math.round(f.length/e+.49),j&&0==j.apply(a.input?a.input[0]:null,[a.hours,a.minutes]))for(h=0;h<f.length;h+=1)if(b=f[h],j.apply(a.input?a.input[0]:null,[a.hours,b])){a.minutes=b;break}for(d+='<div class="ui-timepicker-title ui-widget-header ui-helper-clearfix ui-corner-all">'+k+'</div><table class="ui-timepicker">',h=0,c=1;e>=c;c++){for(d+="<tr>";c*g>h;){var b=f[h],l="";void 0!==b&&(l=10>b&&i?"0"+b.toString():b.toString()),d+=this._generateHTMLMinuteCell(a,b,l),h++}d+="</tr>"}return d+="</table>"},_generateHTMLHourCell:function(a,b,c,d){var e=b;b>12&&c&&(e=b-12),0==e&&c&&(e=12),10>e&&d&&(e="0"+e);var f="",g=!0,h=this._get(a,"onHourShow"),i=this._get(a,"maxTime"),j=this._get(a,"minTime");return void 0==b?f='<td><span class="ui-state-default ui-state-disabled">&nbsp;</span></td>':(h&&(g=h.apply(a.input?a.input[0]:null,[b])),g&&(!isNaN(parseInt(i.hour))&&b>i.hour&&(g=!1),!isNaN(parseInt(j.hour))&&b<j.hour&&(g=!1)),f=g?'<td class="ui-timepicker-hour-cell" data-timepicker-instance-id="#'+a.id.replace(/\\\\/g,"\\")+'" data-hour="'+b.toString()+'"><a href="#" class="ui-state-default '+(b==a.hours?"ui-state-active":"")+" "+(b==a.hlHours?"ui-state-hover":"")+'">'+e.toString()+"</a></td>":'<td><span class="ui-state-default ui-state-disabled '+(b==a.hours?" ui-state-active ":" ")+'">'+e.toString()+"</span></td>")},_generateHTMLMinuteCell:function(a,b,c){var d="",e=!0,f=a.hlHours,g=this._get(a,"onMinuteShow"),h=this._get(a,"maxTime"),i=this._get(a,"minTime");return g&&(e=g.apply(a.input?a.input[0]:null,[a.hours,b])),void 0==b?d='<td><span class="ui-state-default ui-state-disabled">&nbsp;</span></td>':(e&&null!==f&&(!isNaN(parseInt(h.hour))&&!isNaN(parseInt(h.minute))&&f>=h.hour&&b>h.minute&&(e=!1),!isNaN(parseInt(i.hour))&&!isNaN(parseInt(i.minute))&&f<=i.hour&&b<i.minute&&(e=!1)),d=e?'<td class="ui-timepicker-minute-cell" data-timepicker-instance-id="#'+a.id.replace(/\\\\/g,"\\")+'" data-minute="'+b.toString()+'" ><a href="#" class="ui-state-default '+(b==a.minutes?"ui-state-active":"")+" "+(b==a.hlMinutes?"ui-state-hover":"")+'" >'+c+"</a></td>":'<td><span class="ui-state-default ui-state-disabled" >'+c+"</span></td>")},_destroyTimepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(b.hasClass(this.markerClassName)){var d=a.nodeName.toLowerCase();$.removeData(a,PROP_NAME),"input"==d?(c.append.remove(),c.trigger.remove(),b.removeClass(this.markerClassName).unbind("focus.eotimepicker",this._showTimepicker).unbind("click.eotimepicker",this._adjustZIndex)):("div"==d||"span"==d)&&b.removeClass(this.markerClassName).empty()}},_enableTimepicker:function(a){var b=$(a),c=b.attr("id"),d=$.data(a,PROP_NAME);if(b.hasClass(this.markerClassName)){var e=a.nodeName.toLowerCase();if("input"==e){a.disabled=!1;var f=this._get(d,"button");$(f).removeClass("ui-state-disabled").disabled=!1,d.trigger.filter("button").each(function(){this.disabled=!1}).end()}else if("div"==e||"span"==e){var g=b.children("."+this._inlineClass);g.children().removeClass("ui-state-disabled"),g.find("button").each(function(){this.disabled=!1})}this._disabledInputs=$.map(this._disabledInputs,function(a){return a==c?null:a})}},_disableTimepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(b.hasClass(this.markerClassName)){var d=a.nodeName.toLowerCase();if("input"==d){var e=this._get(c,"button");$(e).addClass("ui-state-disabled").disabled=!0,a.disabled=!0,c.trigger.filter("button").each(function(){this.disabled=!0}).end()}else if("div"==d||"span"==d){var f=b.children("."+this._inlineClass);f.children().addClass("ui-state-disabled"),f.find("button").each(function(){this.disabled=!0})}this._disabledInputs=$.map(this._disabledInputs,function(b){return b==a?null:b}),this._disabledInputs[this._disabledInputs.length]=b.attr("id")}},_isDisabledTimepicker:function(a){if(!a)return!1;for(var b=0;b<this._disabledInputs.length;b++)if(this._disabledInputs[b]==a)return!0;return!1},_checkOffset:function(a,b,c){var d=a.tpDiv.outerWidth(),e=a.tpDiv.outerHeight(),f=a.input?a.input.outerWidth():0,g=a.input?a.input.outerHeight():0,h=document.documentElement.clientWidth+$(document).scrollLeft(),i=document.documentElement.clientHeight+$(document).scrollTop();return b.left-=this._get(a,"isRTL")?d-f:0,b.left-=c&&b.left==a.input.offset().left?$(document).scrollLeft():0,b.top-=c&&b.top==a.input.offset().top+g?$(document).scrollTop():0,b.left-=Math.min(b.left,b.left+d>h&&h>d?Math.abs(b.left+d-h):0),b.top-=Math.min(b.top,b.top+e>i&&i>e?Math.abs(e+g):0),b},_findPos:function(a){for(var b=this._getInst(a),c=this._get(b,"isRTL");a&&("hidden"==a.type||1!=a.nodeType);)a=a[c?"previousSibling":"nextSibling"];var d=$(a).offset();return[d.left,d.top]},_getBorders:function(a){var b=function(a){return{thin:1,medium:2,thick:3}[a]||a};return[parseFloat(b(a.css("border-left-width"))),parseFloat(b(a.css("border-top-width")))]},_checkExternalClick:function(a){if($.eotimepicker._curInst){var b=$(a.target);b[0].id==$.eotimepicker._mainDivId||0!=b.parents("#"+$.eotimepicker._mainDivId).length||b.hasClass($.eotimepicker.markerClassName)||b.hasClass($.eotimepicker._triggerClass)||!$.eotimepicker._timepickerShowing||$.eotimepicker._inDialog&&$.blockUI||$.eotimepicker._hideTimepicker()}},_hideTimepicker:function(a){var b=this._curInst;if(b&&(!a||b==$.data(a,PROP_NAME))&&this._timepickerShowing){var c=this._get(b,"showAnim"),d=this._get(b,"duration"),e=function(){$.eotimepicker._tidyDialog(b),this._curInst=null};$.effects&&$.effects[c]?b.tpDiv.hide(c,$.eotimepicker._get(b,"showOptions"),d,e):b.tpDiv["slideDown"==c?"slideUp":"fadeIn"==c?"fadeOut":"hide"](c?d:null,e),c||e(),this._timepickerShowing=!1,this._lastInput=null,this._inDialog&&(this._dialogInput.css({position:"absolute",left:"0",top:"-100px"}),$.blockUI&&($.unblockUI(),$("body").append(this.tpDiv))),this._inDialog=!1;var f=this._get(b,"onClose");f&&f.apply(b.input?b.input[0]:null,[b.input?b.input.val():"",b])}},_tidyDialog:function(a){a.tpDiv.removeClass(this._dialogClass).unbind(".ui-timepicker")},_getInst:function(a){try{return $.data(a,PROP_NAME)}catch(b){throw"Missing instance data for this timepicker"}},_get:function(a,b){return void 0!==a.settings[b]?a.settings[b]:this._defaults[b]},_setTimeFromField:function(a){if(a.input.val()!=a.lastVal){var b=this._get(a,"defaultTime"),c="now"==b?this._getCurrentTimeRounded(a):b;if(0==a.inline&&""!=a.input.val()&&(c=a.input.val()),c instanceof Date)a.hours=c.getHours(),a.minutes=c.getMinutes();else{var d=a.lastVal=c;if(""==c)a.hours=-1,a.minutes=-1;else{var e=this.parseTime(a,d);a.hours=e.hours,a.minutes=e.minutes}}$.eotimepicker._updateTimepicker(a)}},_optionTimepicker:function(a,b,c){var d=this._getInst(a);if(2==arguments.length&&"string"==typeof b)return"defaults"==b?$.extend({},$.eotimepicker._defaults):d?"all"==b?$.extend({},d.settings):this._get(d,b):null;var e=b||{};"string"==typeof b&&(e={},e[b]=c),d&&(extendRemove(d.settings,e),this._curInst==d&&(this._hideTimepicker(),this._updateTimepicker(d)),d.inline&&this._updateTimepicker(d))},_setTimeTimepicker:function(a,b){var c=this._getInst(a);c&&(this._setTime(c,b),this._updateTimepicker(c),this._updateAlternate(c,b))},_setTime:function(a,b,c){var d=a.hours,e=a.minutes;if(b instanceof Date)a.hours=b.getHours(),a.minutes=b.getMinutes();else{var b=this.parseTime(a,b);a.hours=b.hours,a.minutes=b.minutes}d==a.hours&&e==a.minutes||c||a.input.trigger("change"),this._updateTimepicker(a),this._updateSelectedValue(a)},_getCurrentTimeRounded:function(a){var b=new Date,c=b.getMinutes(),d=this._get(a,"minutes"),e=Math.round(c/d.interval)*d.interval;return b.setMinutes(e),b},parseTime:function(a,b){var c=new Object;if(c.hours=-1,c.minutes=-1,!b)return"";var d=this._get(a,"timeSeparator"),e=this._get(a,"amPmText"),f=this._get(a,"showHours"),g=this._get(a,"showMinutes"),h=this._get(a,"optionalMinutes"),i=1==this._get(a,"showPeriod"),j=b.indexOf(d);if(-1!=j?(c.hours=parseInt(b.substr(0,j),10),c.minutes=parseInt(b.substr(j+1),10)):!f||g&&!h?!f&&g&&(c.minutes=parseInt(b,10)):c.hours=parseInt(b,10),f){var k=b.toUpperCase();c.hours<12&&i&&-1!=k.indexOf(e[1].toUpperCase())&&(c.hours+=12),12==c.hours&&i&&-1!=k.indexOf(e[0].toUpperCase())&&(c.hours=0)}return c},selectNow:function(a){var b=$(a.target).attr("data-timepicker-instance-id"),c=$(b),d=this._getInst(c[0]),e=new Date;d.hours=e.getHours(),d.minutes=e.getMinutes(),this._updateSelectedValue(d),this._updateTimepicker(d),this._hideTimepicker()},deselectTime:function(a){var b=$(a.target).attr("data-timepicker-instance-id"),c=$(b),d=this._getInst(c[0]);d.hours=-1,d.minutes=-1,this._updateSelectedValue(d),this._hideTimepicker()},selectHours:function(a){var b=$(a.currentTarget),c=b.attr("data-timepicker-instance-id"),d=parseInt(b.attr("data-hour")),e=a.data.fromDoubleClick,f=$(c),g=this._getInst(f[0]),h=1==this._get(g,"showMinutes");if($.eotimepicker._isDisabledTimepicker(f.attr("id")))return!1;b.parents(".ui-timepicker-hours:first").find("a").removeClass("ui-state-active"),b.children("a").addClass("ui-state-active"),g.hours=d;var i=this._get(g,"onMinuteShow"),j=this._get(g,"maxTime"),k=this._get(g,"minTime");return(i||j.minute||k.minute)&&this._updateMinuteDisplay(g),this._updateSelectedValue(g),g._hoursClicked=!0,(g._minutesClicked||e||0==h)&&$.eotimepicker._hideTimepicker(),!1},selectMinutes:function(a){var b=$(a.currentTarget),c=b.attr("data-timepicker-instance-id"),d=parseInt(b.attr("data-minute")),e=a.data.fromDoubleClick,f=$(c),g=this._getInst(f[0]),h=1==this._get(g,"showHours");return $.eotimepicker._isDisabledTimepicker(f.attr("id"))?!1:(b.parents(".ui-timepicker-minutes:first").find("a").removeClass("ui-state-active"),b.children("a").addClass("ui-state-active"),g.minutes=d,this._updateSelectedValue(g),g._minutesClicked=!0,g._hoursClicked||e||0==h?($.eotimepicker._hideTimepicker(),!1):!1)},_updateSelectedValue:function(a){var b=this._getParsedTime(a);a.input&&(a.input.val(b),a.input.trigger("change"));var c=this._get(a,"onSelect");return c&&c.apply(a.input?a.input[0]:null,[b,a]),this._updateAlternate(a,b),b},_getParsedTime:function(a){if(-1==a.hours&&-1==a.minutes)return"";(a.hours<a.hours.starts||a.hours>a.hours.ends)&&(a.hours=0),(a.minutes<a.minutes.starts||a.minutes>a.minutes.ends)&&(a.minutes=0);var b="",c=1==this._get(a,"showPeriod"),d=1==this._get(a,"showLeadingZero"),e=1==this._get(a,"showHours"),f=1==this._get(a,"showMinutes"),g=1==this._get(a,"optionalMinutes"),h=this._get(a,"amPmText"),i=a.hours?a.hours:0,j=a.minutes?a.minutes:0,k=i?i:0,l="";-1==k&&(k=0),-1==j&&(j=0),c&&(0==a.hours&&(k=12),a.hours<12?b=h[0]:(b=h[1],k>12&&(k-=12)));var m=k.toString();d&&10>k&&(m="0"+m);var n=j.toString();return 10>j&&(n="0"+n),e&&(l+=m),!e||!f||g&&0==n||(l+=this._get(a,"timeSeparator")),!f||g&&0==n||(l+=n),e&&b.length>0&&(l+=this._get(a,"periodSeparator")+b),l},_updateAlternate:function(a,b){var c=this._get(a,"altField");c&&$(c).each(function(a,c){$(c).val(b)})},_getTimeAsDateTimepicker:function(a){var b=this._getInst(a);return-1==b.hours&&-1==b.minutes?"":((b.hours<b.hours.starts||b.hours>b.hours.ends)&&(b.hours=0),(b.minutes<b.minutes.starts||b.minutes>b.minutes.ends)&&(b.minutes=0),new Date(0,0,0,b.hours,b.minutes,0))},_getTimeTimepicker:function(a){var b=this._getInst(a);return this._getParsedTime(b)},_getHourTimepicker:function(a){var b=this._getInst(a);return void 0==b?-1:b.hours},_getMinuteTimepicker:function(a){var b=this._getInst(a);return void 0==b?-1:b.minutes}}),$.fn.eotimepicker=function(a){$.eotimepicker.initialized||($(document).mousedown($.eotimepicker._checkExternalClick),$.eotimepicker.initialized=!0),0===$("#"+$.eotimepicker._mainDivId).length&&$("body").append($.eotimepicker.tpDiv);var b=Array.prototype.slice.call(arguments,1);return"string"!=typeof a||"getTime"!=a&&"getTimeAsDate"!=a&&"getHour"!=a&&"getMinute"!=a?"option"==a&&2==arguments.length&&"string"==typeof arguments[1]?$.eotimepicker["_"+a+"Timepicker"].apply($.eotimepicker,[this[0]].concat(b)):this.each(function(){"string"==typeof a?$.eotimepicker["_"+a+"Timepicker"].apply($.eotimepicker,[this].concat(b)):$.eotimepicker._attachTimepicker(this,a)}):$.eotimepicker["_"+a+"Timepicker"].apply($.eotimepicker,[this[0]].concat(b))},$.eotimepicker=new eoTimepicker,$.eotimepicker.initialized=!1,$.eotimepicker.uuid=(new Date).getTime(),$.eotimepicker.version="0.3.3",window["TP_jQuery_"+tpuuid]=$}(jQuery);
1
+ /*! event-organiser 3.10.0-0-g5f45c47 2020-07-22 07:59 */
2
  !function($){function eoTimepicker(){this.debug=!0,this._curInst=null,this._disabledInputs=[],this._timepickerShowing=!1,this._inDialog=!1,this._dialogClass="ui-timepicker-dialog",this._mainDivId="ui-timepicker-div",this._inlineClass="ui-timepicker-inline",this._currentClass="ui-timepicker-current",this._dayOverClass="ui-timepicker-days-cell-over",this.regional=[],this.regional[""]={hourText:"Hour",minuteText:"Minute",amPmText:["AM","PM"],closeButtonText:"Done",nowButtonText:"Now",deselectButtonText:"Deselect"},this._defaults={showOn:"focus",button:null,showAnim:"fadeIn",showOptions:{},appendText:"",beforeShow:null,onSelect:null,onClose:null,timeSeparator:":",periodSeparator:" ",showPeriod:!1,showPeriodLabels:!0,showLeadingZero:!0,showMinutesLeadingZero:!0,altField:"",defaultTime:"now",myPosition:"left top",atPosition:"left bottom",onHourShow:null,onMinuteShow:null,hours:{starts:0,ends:23},minutes:{starts:0,ends:55,interval:5,manual:[]},rows:4,showHours:!0,showMinutes:!0,optionalMinutes:!1,showCloseButton:!1,showNowButton:!1,showDeselectButton:!1,maxTime:{hour:null,minute:null},minTime:{hour:null,minute:null}},$.extend(this._defaults,this.regional[""]),this.tpDiv=$('<div id="'+this._mainDivId+'" class="ui-timepicker ui-widget ui-helper-clearfix ui-corner-all " style="display: none"></div>')}function extendRemove(a,b){$.extend(a,b);for(var c in b)(null==b[c]||void 0==b[c])&&(a[c]=b[c]);return a}$.extend($.ui,{eotimepicker:{version:"0.3.3"}});var PROP_NAME="eotimepicker",tpuuid=(new Date).getTime();$.extend(eoTimepicker.prototype,{markerClassName:"hasTimepicker",log:function(){this.debug&&console.log.apply("",arguments)},_widgetTimepicker:function(){return this.tpDiv},setDefaults:function(a){return extendRemove(this._defaults,a||{}),this},_attachTimepicker:function(target,settings){var inlineSettings=null;for(var attrName in this._defaults){var attrValue=target.getAttribute("time:"+attrName);if(attrValue){inlineSettings=inlineSettings||{};try{inlineSettings[attrName]=eval(attrValue)}catch(err){inlineSettings[attrName]=attrValue}}}var nodeName=target.nodeName.toLowerCase(),inline="div"==nodeName||"span"==nodeName;target.id||(this.uuid+=1,target.id="tp"+this.uuid);var inst=this._newInst($(target),inline);inst.settings=$.extend({},settings||{},inlineSettings||{}),"input"==nodeName?(this._connectTimepicker(target,inst),this._setTimeFromField(inst)):inline&&this._inlineTimepicker(target,inst)},_newInst:function(a,b){var c=a[0].id.replace(/([^A-Za-z0-9_-])/g,"\\\\$1");return{id:c,input:a,inline:b,tpDiv:b?$('<div class="'+this._inlineClass+' ui-timepicker ui-widget ui-helper-clearfix"></div>'):this.tpDiv}},_connectTimepicker:function(a,b){var c=$(a);b.append=$([]),b.trigger=$([]),c.hasClass(this.markerClassName)||(this._attachments(c,b),c.addClass(this.markerClassName).keydown(this._doKeyDown).keyup(this._doKeyUp).bind("setData.eotimepicker",function(a,c,d){b.settings[c]=d}).bind("getData.eotimepicker",function(a,c){return this._get(b,c)}),$.data(a,PROP_NAME,b))},_getHours:function(a){var b=Array(),c=this._get(a,"hours");for(h=c.starts;h<=c.ends;h++)b.push(h);return b},_getMinutes:function(a){var b=this._get(a,"minutes"),c=Array();for(b.starts||(b.starts=0),b.ends||(b.ends=59),b.manual||(b.manual=[]),m=b.starts;m<=b.ends;m+=b.interval)c.push(m);for(i=0;i<b.manual.length;i++){var d=b.manual[i];"number"!=typeof d||0>d||d>59||$.inArray(d,c)>=0||c.push(d)}return c.sort(function(a,b){return a-b}),c},_modulo:function(a,b){return(a%b+b)%b},_doKeyDown:function(a){var b=$.eotimepicker._getInst(a.target),c=!0;if(b._keyEvent=!0,$.eotimepicker._timepickerShowing){var d=a.ctrlKey||a.metaKey,e=a.shiftKey,f=$.eotimepicker._getHours(b),g=$.eotimepicker._getMinutes(b),h=$.eotimepicker._get(b,"rows"),i=Math.ceil(f.length/h),j=Math.round(g.length/h+.49);switch(a.keyCode){case 9:$.eotimepicker._hideTimepicker(),c=!1;break;case 13:return b.hours=b.hlHours,b.minutes=b.hlMinutes,$.eotimepicker._updateSelectedValue(b),$.eotimepicker._hideTimepicker(),!1;case 27:$.eotimepicker._hideTimepicker();break;case 37:c=d||e,e?$.eotimepicker._moveHighlight(b,-1,"minute"):d&&$.eotimepicker._moveHighlight(b,-1,"hour");break;case 38:c=d||e,e?$.eotimepicker._moveHighlight(b,-j,"minute"):d&&$.eotimepicker._moveHighlight(b,-i,"hour");break;case 39:c=d||e,e?$.eotimepicker._moveHighlight(b,1,"minute"):d&&$.eotimepicker._moveHighlight(b,1,"hour");break;case 40:c=d||e,e?$.eotimepicker._moveHighlight(b,j,"minute"):d&&$.eotimepicker._moveHighlight(b,i,"hour");break;default:c=!1}}else 36==a.keyCode&&a.ctrlKey?$.eotimepicker._showTimepicker(this):c=!1;c&&(a.preventDefault(),a.stopPropagation())},_moveHighlight:function(a,b,c){var d=this._getMinutes(a),e=this._getHours(a),f=this._get(a,"maxTime"),g=this._get(a,"minTime");if("hour"==c.toLowerCase()){var h=$.inArray(a.hlHours,e);a.hlHours=e[this._modulo(h+b,e.length)]}else{var h=$.inArray(a.hlMinutes,d);a.hlMinutes=d[this._modulo(h+b,d.length)]}g.hour&&(a.hlHours=Math.max(a.hlHours,g.hour)),f.hour&&(a.hlHours=Math.min(a.hlHours,f.hour)),g.minute&&a.hlHours<=g.hour&&(a.hlMinutes=Math.max(a.hlMinutes,g.minute)),f.minute&&a.hlHours>=f.hour&&(a.hlMinutes=Math.min(a.hlMinutes,f.minute))},_doKeyUp:function(a){var b=$.eotimepicker._getInst(a.target);$.eotimepicker._setTimeFromField(b),$.eotimepicker._updateTimepicker(b)},_attachments:function(a,b){var c=this._get(b,"appendText"),d=this._get(b,"isRTL");b.append&&b.append.remove(),c&&(b.append=$('<span class="'+this._appendClass+'">'+c+"</span>"),a[d?"before":"after"](b.append)),a.unbind("focus.eotimepicker",this._showTimepicker),a.unbind("click.eotimepicker",this._adjustZIndex),b.trigger&&b.trigger.remove();var e=this._get(b,"showOn");if(("focus"==e||"both"==e)&&(a.bind("focus.eotimepicker",this._showTimepicker),a.bind("click.eotimepicker",this._adjustZIndex)),"button"==e||"both"==e){var f=this._get(b,"button");null==f&&(f=$('<button class="ui-timepicker-trigger" type="button">...</button>'),a.after(f)),$(f).bind("click.eotimepicker",function(){return $.eotimepicker._timepickerShowing&&$.eotimepicker._lastInput==a[0]?$.eotimepicker._hideTimepicker():b.input.is(":disabled")||$.eotimepicker._showTimepicker(a[0]),!1})}},_inlineTimepicker:function(a,b){var c=$(a);c.hasClass(this.markerClassName)||(c.addClass(this.markerClassName).append(b.tpDiv).bind("setData.eotimepicker",function(a,c,d){b.settings[c]=d}).bind("getData.eotimepicker",function(a,c){return this._get(b,c)}),$.data(a,PROP_NAME,b),this._setTimeFromField(b),this._updateTimepicker(b),b.tpDiv.show())},_adjustZIndex:function(a){a=a.target||a;var b=$.eotimepicker._getInst(a);b.tpDiv.css("zIndex",$.eotimepicker._getZIndex(a)+1)},_showTimepicker:function(a){if(a=a.target||a,"input"!=a.nodeName.toLowerCase()&&(a=$("input",a.parentNode)[0]),!$.eotimepicker._isDisabledTimepicker(a)&&$.eotimepicker._lastInput!=a){$.eotimepicker._hideTimepicker();var b=$.eotimepicker._getInst(a);$.eotimepicker._curInst&&$.eotimepicker._curInst!=b&&$.eotimepicker._curInst.tpDiv.stop(!0,!0);var c=$.eotimepicker._get(b,"beforeShow");extendRemove(b.settings,c?c.apply(a,[a,b]):{}),b.lastVal=null,$.eotimepicker._lastInput=a,$.eotimepicker._setTimeFromField(b),b.hlMinutes=b.minutes,b.hlHours=b.hours,$.eotimepicker._inDialog&&(a.value=""),$.eotimepicker._pos||($.eotimepicker._pos=$.eotimepicker._findPos(a),$.eotimepicker._pos[1]+=a.offsetHeight);var d=!1;$(a).parents().each(function(){return d|="fixed"==$(this).css("position"),!d});var e={left:$.eotimepicker._pos[0],top:$.eotimepicker._pos[1]};if($.eotimepicker._pos=null,b.tpDiv.css({position:"absolute",display:"block",top:"-1000px"}),$.eotimepicker._updateTimepicker(b),!b.inline&&"object"==typeof $.ui.position){b.tpDiv.position({of:b.input,my:$.eotimepicker._get(b,"myPosition"),at:$.eotimepicker._get(b,"atPosition"),collision:"flip"});var e=b.tpDiv.offset();$.eotimepicker._pos=[e.top,e.left]}if(b._hoursClicked=!1,b._minutesClicked=!1,e=$.eotimepicker._checkOffset(b,e,d),b.tpDiv.css({position:$.eotimepicker._inDialog&&$.blockUI?"static":d?"fixed":"absolute",display:"none",left:e.left+"px",top:e.top+"px"}),!b.inline){var f=$.eotimepicker._get(b,"showAnim"),g=$.eotimepicker._get(b,"duration"),h=function(){$.eotimepicker._timepickerShowing=!0;var a=$.eotimepicker._getBorders(b.tpDiv);b.tpDiv.find("iframe.ui-timepicker-cover").css({left:-a[0],top:-a[1],width:b.tpDiv.outerWidth(),height:b.tpDiv.outerHeight()})};$.eotimepicker._adjustZIndex(a),$.effects&&$.effects[f]?b.tpDiv.show(f,$.eotimepicker._get(b,"showOptions"),g,h):b.tpDiv.show(f?g:null,h),f&&g||h(),b.input.is(":visible")&&!b.input.is(":disabled")&&b.input.focus(),$.eotimepicker._curInst=b}}},_getZIndex:function(a){for(var b,c,d=$(a),e=0;d.length&&d[0]!==document;)b=d.css("position"),("absolute"===b||"relative"===b||"fixed"===b)&&(c=parseInt(d.css("zIndex"),10),isNaN(c)||0===c||c>e&&(e=c)),d=d.parent();return e},_refreshTimepicker:function(a){var b=this._getInst(a);b&&this._updateTimepicker(b)},_updateTimepicker:function(a){a.tpDiv.empty().append(this._generateHTML(a)),this._rebindDialogEvents(a)},_rebindDialogEvents:function(a){var b=$.eotimepicker._getBorders(a.tpDiv),c=this;a.tpDiv.find("iframe.ui-timepicker-cover").css({left:-b[0],top:-b[1],width:a.tpDiv.outerWidth(),height:a.tpDiv.outerHeight()}).end().find(".ui-timepicker-minute-cell").unbind().bind("click",{fromDoubleClick:!1},$.proxy($.eotimepicker.selectMinutes,this)).bind("dblclick",{fromDoubleClick:!0},$.proxy($.eotimepicker.selectMinutes,this)).end().find(".ui-timepicker-hour-cell").unbind().bind("click",{fromDoubleClick:!1},$.proxy($.eotimepicker.selectHours,this)).bind("dblclick",{fromDoubleClick:!0},$.proxy($.eotimepicker.selectHours,this)).end().find(".ui-timepicker td a").unbind().bind("mouseout",function(){$(this).removeClass("ui-state-hover"),-1!=this.className.indexOf("ui-timepicker-prev")&&$(this).removeClass("ui-timepicker-prev-hover"),-1!=this.className.indexOf("ui-timepicker-next")&&$(this).removeClass("ui-timepicker-next-hover")}).bind("mouseover",function(){c._isDisabledTimepicker(a.inline?a.tpDiv.parent()[0]:a.input[0])||($(this).parents(".ui-timepicker-calendar").find("a").removeClass("ui-state-hover"),$(this).addClass("ui-state-hover"),-1!=this.className.indexOf("ui-timepicker-prev")&&$(this).addClass("ui-timepicker-prev-hover"),-1!=this.className.indexOf("ui-timepicker-next")&&$(this).addClass("ui-timepicker-next-hover"))}).end().find("."+this._dayOverClass+" a").trigger("mouseover").end().find(".ui-timepicker-now").bind("click",function(a){$.eotimepicker.selectNow(a)}).end().find(".ui-timepicker-deselect").bind("click",function(a){$.eotimepicker.deselectTime(a)}).end().find(".ui-timepicker-close").bind("click",function(a){$.eotimepicker._hideTimepicker()}).end()},_generateHTML:function(a){var b,c,d,e=1==this._get(a,"showPeriod"),f=1==this._get(a,"showPeriodLabels"),g=1==this._get(a,"showLeadingZero"),h=1==this._get(a,"showHours"),i=1==this._get(a,"showMinutes"),j=this._get(a,"amPmText"),k=this._get(a,"rows"),l=0,m=0,n=0,o=0,p=0,q=0,r=Array(),s=null,t=0,u=this._get(a,"hourText"),v=this._get(a,"showCloseButton"),w=this._get(a,"closeButtonText"),x=this._get(a,"showNowButton"),y=this._get(a,"nowButtonText"),z=this._get(a,"showDeselectButton"),A=this._get(a,"deselectButtonText"),B=v||x||z;if(r=this._getHours(a),s=Math.ceil(r.length/k),f){for(t=0;t<r.length;t++)r[t]<12?n++:o++;t=0,l=Math.floor(n/r.length*k),m=Math.floor(o/r.length*k),k!=l+m&&(n&&(!o||!l||m&&n/l>=o/m)?l++:m++),p=Math.min(l,1),q=l+1,s=0==l?Math.ceil(o/m):0==m?Math.ceil(n/l):Math.ceil(Math.max(n/l,o/m))}if(d='<table class="ui-timepicker-table ui-widget-content ui-corner-all"><tr>',h){for(d+='<td class="ui-timepicker-hours"><div class="ui-timepicker-title ui-widget-header ui-helper-clearfix ui-corner-all">'+u+'</div><table class="ui-timepicker">',b=1;k>=b;b++){for(d+="<tr>",b==p&&f&&(d+='<th rowspan="'+l.toString()+'" class="periods" scope="row">'+j[0]+"</th>"),b==q&&f&&(d+='<th rowspan="'+m.toString()+'" class="periods" scope="row">'+j[1]+"</th>"),c=1;s>=c;c++)f&&q>b&&r[t]>=12?d+=this._generateHTMLHourCell(a,void 0,e,g):(d+=this._generateHTMLHourCell(a,r[t],e,g),t++);d+="</tr>"}d+="</table></td>"}if(i&&(d+='<td class="ui-timepicker-minutes">',d+=this._generateHTMLMinutes(a),d+="</td>"),d+="</tr>",B){var C='<tr><td colspan="3"><div class="ui-timepicker-buttonpane ui-widget-content">';x&&(C+='<button type="button" class="ui-timepicker-now ui-state-default ui-corner-all" data-timepicker-instance-id="#'+a.id.replace(/\\\\/g,"\\")+'" >'+y+"</button>"),z&&(C+='<button type="button" class="ui-timepicker-deselect ui-state-default ui-corner-all" data-timepicker-instance-id="#'+a.id.replace(/\\\\/g,"\\")+'" >'+A+"</button>"),v&&(C+='<button type="button" class="ui-timepicker-close ui-state-default ui-corner-all" data-timepicker-instance-id="#'+a.id.replace(/\\\\/g,"\\")+'" >'+w+"</button>"),d+=C+"</div></td></tr>"}return d+="</table>"},_updateMinuteDisplay:function(a){var b=this._generateHTMLMinutes(a);a.tpDiv.find("td.ui-timepicker-minutes").html(b),this._rebindDialogEvents(a)},_generateHTMLMinutes:function(a){var b,c,d="",e=this._get(a,"rows"),f=Array(),g=null,h=0,i=1==this._get(a,"showMinutesLeadingZero"),j=this._get(a,"onMinuteShow"),k=this._get(a,"minuteText");if(f=this._getMinutes(a),g=Math.round(f.length/e+.49),j&&0==j.apply(a.input?a.input[0]:null,[a.hours,a.minutes]))for(h=0;h<f.length;h+=1)if(b=f[h],j.apply(a.input?a.input[0]:null,[a.hours,b])){a.minutes=b;break}for(d+='<div class="ui-timepicker-title ui-widget-header ui-helper-clearfix ui-corner-all">'+k+'</div><table class="ui-timepicker">',h=0,c=1;e>=c;c++){for(d+="<tr>";c*g>h;){var b=f[h],l="";void 0!==b&&(l=10>b&&i?"0"+b.toString():b.toString()),d+=this._generateHTMLMinuteCell(a,b,l),h++}d+="</tr>"}return d+="</table>"},_generateHTMLHourCell:function(a,b,c,d){var e=b;b>12&&c&&(e=b-12),0==e&&c&&(e=12),10>e&&d&&(e="0"+e);var f="",g=!0,h=this._get(a,"onHourShow"),i=this._get(a,"maxTime"),j=this._get(a,"minTime");return void 0==b?f='<td><span class="ui-state-default ui-state-disabled">&nbsp;</span></td>':(h&&(g=h.apply(a.input?a.input[0]:null,[b])),g&&(!isNaN(parseInt(i.hour))&&b>i.hour&&(g=!1),!isNaN(parseInt(j.hour))&&b<j.hour&&(g=!1)),f=g?'<td class="ui-timepicker-hour-cell" data-timepicker-instance-id="#'+a.id.replace(/\\\\/g,"\\")+'" data-hour="'+b.toString()+'"><a href="#" class="ui-state-default '+(b==a.hours?"ui-state-active":"")+" "+(b==a.hlHours?"ui-state-hover":"")+'">'+e.toString()+"</a></td>":'<td><span class="ui-state-default ui-state-disabled '+(b==a.hours?" ui-state-active ":" ")+'">'+e.toString()+"</span></td>")},_generateHTMLMinuteCell:function(a,b,c){var d="",e=!0,f=a.hlHours,g=this._get(a,"onMinuteShow"),h=this._get(a,"maxTime"),i=this._get(a,"minTime");return g&&(e=g.apply(a.input?a.input[0]:null,[a.hours,b])),void 0==b?d='<td><span class="ui-state-default ui-state-disabled">&nbsp;</span></td>':(e&&null!==f&&(!isNaN(parseInt(h.hour))&&!isNaN(parseInt(h.minute))&&f>=h.hour&&b>h.minute&&(e=!1),!isNaN(parseInt(i.hour))&&!isNaN(parseInt(i.minute))&&f<=i.hour&&b<i.minute&&(e=!1)),d=e?'<td class="ui-timepicker-minute-cell" data-timepicker-instance-id="#'+a.id.replace(/\\\\/g,"\\")+'" data-minute="'+b.toString()+'" ><a href="#" class="ui-state-default '+(b==a.minutes?"ui-state-active":"")+" "+(b==a.hlMinutes?"ui-state-hover":"")+'" >'+c+"</a></td>":'<td><span class="ui-state-default ui-state-disabled" >'+c+"</span></td>")},_destroyTimepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(b.hasClass(this.markerClassName)){var d=a.nodeName.toLowerCase();$.removeData(a,PROP_NAME),"input"==d?(c.append.remove(),c.trigger.remove(),b.removeClass(this.markerClassName).unbind("focus.eotimepicker",this._showTimepicker).unbind("click.eotimepicker",this._adjustZIndex)):("div"==d||"span"==d)&&b.removeClass(this.markerClassName).empty()}},_enableTimepicker:function(a){var b=$(a),c=b.attr("id"),d=$.data(a,PROP_NAME);if(b.hasClass(this.markerClassName)){var e=a.nodeName.toLowerCase();if("input"==e){a.disabled=!1;var f=this._get(d,"button");$(f).removeClass("ui-state-disabled").disabled=!1,d.trigger.filter("button").each(function(){this.disabled=!1}).end()}else if("div"==e||"span"==e){var g=b.children("."+this._inlineClass);g.children().removeClass("ui-state-disabled"),g.find("button").each(function(){this.disabled=!1})}this._disabledInputs=$.map(this._disabledInputs,function(a){return a==c?null:a})}},_disableTimepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(b.hasClass(this.markerClassName)){var d=a.nodeName.toLowerCase();if("input"==d){var e=this._get(c,"button");$(e).addClass("ui-state-disabled").disabled=!0,a.disabled=!0,c.trigger.filter("button").each(function(){this.disabled=!0}).end()}else if("div"==d||"span"==d){var f=b.children("."+this._inlineClass);f.children().addClass("ui-state-disabled"),f.find("button").each(function(){this.disabled=!0})}this._disabledInputs=$.map(this._disabledInputs,function(b){return b==a?null:b}),this._disabledInputs[this._disabledInputs.length]=b.attr("id")}},_isDisabledTimepicker:function(a){if(!a)return!1;for(var b=0;b<this._disabledInputs.length;b++)if(this._disabledInputs[b]==a)return!0;return!1},_checkOffset:function(a,b,c){var d=a.tpDiv.outerWidth(),e=a.tpDiv.outerHeight(),f=a.input?a.input.outerWidth():0,g=a.input?a.input.outerHeight():0,h=document.documentElement.clientWidth+$(document).scrollLeft(),i=document.documentElement.clientHeight+$(document).scrollTop();return b.left-=this._get(a,"isRTL")?d-f:0,b.left-=c&&b.left==a.input.offset().left?$(document).scrollLeft():0,b.top-=c&&b.top==a.input.offset().top+g?$(document).scrollTop():0,b.left-=Math.min(b.left,b.left+d>h&&h>d?Math.abs(b.left+d-h):0),b.top-=Math.min(b.top,b.top+e>i&&i>e?Math.abs(e+g):0),b},_findPos:function(a){for(var b=this._getInst(a),c=this._get(b,"isRTL");a&&("hidden"==a.type||1!=a.nodeType);)a=a[c?"previousSibling":"nextSibling"];var d=$(a).offset();return[d.left,d.top]},_getBorders:function(a){var b=function(a){return{thin:1,medium:2,thick:3}[a]||a};return[parseFloat(b(a.css("border-left-width"))),parseFloat(b(a.css("border-top-width")))]},_checkExternalClick:function(a){if($.eotimepicker._curInst){var b=$(a.target);b[0].id==$.eotimepicker._mainDivId||0!=b.parents("#"+$.eotimepicker._mainDivId).length||b.hasClass($.eotimepicker.markerClassName)||b.hasClass($.eotimepicker._triggerClass)||!$.eotimepicker._timepickerShowing||$.eotimepicker._inDialog&&$.blockUI||$.eotimepicker._hideTimepicker()}},_hideTimepicker:function(a){var b=this._curInst;if(b&&(!a||b==$.data(a,PROP_NAME))&&this._timepickerShowing){var c=this._get(b,"showAnim"),d=this._get(b,"duration"),e=function(){$.eotimepicker._tidyDialog(b),this._curInst=null};$.effects&&$.effects[c]?b.tpDiv.hide(c,$.eotimepicker._get(b,"showOptions"),d,e):b.tpDiv["slideDown"==c?"slideUp":"fadeIn"==c?"fadeOut":"hide"](c?d:null,e),c||e(),this._timepickerShowing=!1,this._lastInput=null,this._inDialog&&(this._dialogInput.css({position:"absolute",left:"0",top:"-100px"}),$.blockUI&&($.unblockUI(),$("body").append(this.tpDiv))),this._inDialog=!1;var f=this._get(b,"onClose");f&&f.apply(b.input?b.input[0]:null,[b.input?b.input.val():"",b])}},_tidyDialog:function(a){a.tpDiv.removeClass(this._dialogClass).unbind(".ui-timepicker")},_getInst:function(a){try{return $.data(a,PROP_NAME)}catch(b){throw"Missing instance data for this timepicker"}},_get:function(a,b){return void 0!==a.settings[b]?a.settings[b]:this._defaults[b]},_setTimeFromField:function(a){if(a.input.val()!=a.lastVal){var b=this._get(a,"defaultTime"),c="now"==b?this._getCurrentTimeRounded(a):b;if(0==a.inline&&""!=a.input.val()&&(c=a.input.val()),c instanceof Date)a.hours=c.getHours(),a.minutes=c.getMinutes();else{var d=a.lastVal=c;if(""==c)a.hours=-1,a.minutes=-1;else{var e=this.parseTime(a,d);a.hours=e.hours,a.minutes=e.minutes}}$.eotimepicker._updateTimepicker(a)}},_optionTimepicker:function(a,b,c){var d=this._getInst(a);if(2==arguments.length&&"string"==typeof b)return"defaults"==b?$.extend({},$.eotimepicker._defaults):d?"all"==b?$.extend({},d.settings):this._get(d,b):null;var e=b||{};"string"==typeof b&&(e={},e[b]=c),d&&(extendRemove(d.settings,e),this._curInst==d&&(this._hideTimepicker(),this._updateTimepicker(d)),d.inline&&this._updateTimepicker(d))},_setTimeTimepicker:function(a,b){var c=this._getInst(a);c&&(this._setTime(c,b),this._updateTimepicker(c),this._updateAlternate(c,b))},_setTime:function(a,b,c){var d=a.hours,e=a.minutes;if(b instanceof Date)a.hours=b.getHours(),a.minutes=b.getMinutes();else{var b=this.parseTime(a,b);a.hours=b.hours,a.minutes=b.minutes}d==a.hours&&e==a.minutes||c||a.input.trigger("change"),this._updateTimepicker(a),this._updateSelectedValue(a)},_getCurrentTimeRounded:function(a){var b=new Date,c=b.getMinutes(),d=this._get(a,"minutes"),e=Math.round(c/d.interval)*d.interval;return b.setMinutes(e),b},parseTime:function(a,b){var c=new Object;if(c.hours=-1,c.minutes=-1,!b)return"";var d=this._get(a,"timeSeparator"),e=this._get(a,"amPmText"),f=this._get(a,"showHours"),g=this._get(a,"showMinutes"),h=this._get(a,"optionalMinutes"),i=1==this._get(a,"showPeriod"),j=b.indexOf(d);if(-1!=j?(c.hours=parseInt(b.substr(0,j),10),c.minutes=parseInt(b.substr(j+1),10)):!f||g&&!h?!f&&g&&(c.minutes=parseInt(b,10)):c.hours=parseInt(b,10),f){var k=b.toUpperCase();c.hours<12&&i&&-1!=k.indexOf(e[1].toUpperCase())&&(c.hours+=12),12==c.hours&&i&&-1!=k.indexOf(e[0].toUpperCase())&&(c.hours=0)}return c},selectNow:function(a){var b=$(a.target).attr("data-timepicker-instance-id"),c=$(b),d=this._getInst(c[0]),e=new Date;d.hours=e.getHours(),d.minutes=e.getMinutes(),this._updateSelectedValue(d),this._updateTimepicker(d),this._hideTimepicker()},deselectTime:function(a){var b=$(a.target).attr("data-timepicker-instance-id"),c=$(b),d=this._getInst(c[0]);d.hours=-1,d.minutes=-1,this._updateSelectedValue(d),this._hideTimepicker()},selectHours:function(a){var b=$(a.currentTarget),c=b.attr("data-timepicker-instance-id"),d=parseInt(b.attr("data-hour")),e=a.data.fromDoubleClick,f=$(c),g=this._getInst(f[0]),h=1==this._get(g,"showMinutes");if($.eotimepicker._isDisabledTimepicker(f.attr("id")))return!1;b.parents(".ui-timepicker-hours:first").find("a").removeClass("ui-state-active"),b.children("a").addClass("ui-state-active"),g.hours=d;var i=this._get(g,"onMinuteShow"),j=this._get(g,"maxTime"),k=this._get(g,"minTime");return(i||j.minute||k.minute)&&this._updateMinuteDisplay(g),this._updateSelectedValue(g),g._hoursClicked=!0,(g._minutesClicked||e||0==h)&&$.eotimepicker._hideTimepicker(),!1},selectMinutes:function(a){var b=$(a.currentTarget),c=b.attr("data-timepicker-instance-id"),d=parseInt(b.attr("data-minute")),e=a.data.fromDoubleClick,f=$(c),g=this._getInst(f[0]),h=1==this._get(g,"showHours");return $.eotimepicker._isDisabledTimepicker(f.attr("id"))?!1:(b.parents(".ui-timepicker-minutes:first").find("a").removeClass("ui-state-active"),b.children("a").addClass("ui-state-active"),g.minutes=d,this._updateSelectedValue(g),g._minutesClicked=!0,g._hoursClicked||e||0==h?($.eotimepicker._hideTimepicker(),!1):!1)},_updateSelectedValue:function(a){var b=this._getParsedTime(a);a.input&&(a.input.val(b),a.input.trigger("change"));var c=this._get(a,"onSelect");return c&&c.apply(a.input?a.input[0]:null,[b,a]),this._updateAlternate(a,b),b},_getParsedTime:function(a){if(-1==a.hours&&-1==a.minutes)return"";(a.hours<a.hours.starts||a.hours>a.hours.ends)&&(a.hours=0),(a.minutes<a.minutes.starts||a.minutes>a.minutes.ends)&&(a.minutes=0);var b="",c=1==this._get(a,"showPeriod"),d=1==this._get(a,"showLeadingZero"),e=1==this._get(a,"showHours"),f=1==this._get(a,"showMinutes"),g=1==this._get(a,"optionalMinutes"),h=this._get(a,"amPmText"),i=a.hours?a.hours:0,j=a.minutes?a.minutes:0,k=i?i:0,l="";-1==k&&(k=0),-1==j&&(j=0),c&&(0==a.hours&&(k=12),a.hours<12?b=h[0]:(b=h[1],k>12&&(k-=12)));var m=k.toString();d&&10>k&&(m="0"+m);var n=j.toString();return 10>j&&(n="0"+n),e&&(l+=m),!e||!f||g&&0==n||(l+=this._get(a,"timeSeparator")),!f||g&&0==n||(l+=n),e&&b.length>0&&(l+=this._get(a,"periodSeparator")+b),l},_updateAlternate:function(a,b){var c=this._get(a,"altField");c&&$(c).each(function(a,c){$(c).val(b)})},_getTimeAsDateTimepicker:function(a){var b=this._getInst(a);return-1==b.hours&&-1==b.minutes?"":((b.hours<b.hours.starts||b.hours>b.hours.ends)&&(b.hours=0),(b.minutes<b.minutes.starts||b.minutes>b.minutes.ends)&&(b.minutes=0),new Date(0,0,0,b.hours,b.minutes,0))},_getTimeTimepicker:function(a){var b=this._getInst(a);return this._getParsedTime(b)},_getHourTimepicker:function(a){var b=this._getInst(a);return void 0==b?-1:b.hours},_getMinuteTimepicker:function(a){var b=this._getInst(a);return void 0==b?-1:b.minutes}}),$.fn.eotimepicker=function(a){$.eotimepicker.initialized||($(document).mousedown($.eotimepicker._checkExternalClick),$.eotimepicker.initialized=!0),0===$("#"+$.eotimepicker._mainDivId).length&&$("body").append($.eotimepicker.tpDiv);var b=Array.prototype.slice.call(arguments,1);return"string"!=typeof a||"getTime"!=a&&"getTimeAsDate"!=a&&"getHour"!=a&&"getMinute"!=a?"option"==a&&2==arguments.length&&"string"==typeof arguments[1]?$.eotimepicker["_"+a+"Timepicker"].apply($.eotimepicker,[this[0]].concat(b)):this.each(function(){"string"==typeof a?$.eotimepicker["_"+a+"Timepicker"].apply($.eotimepicker,[this].concat(b)):$.eotimepicker._attachTimepicker(this,a)}):$.eotimepicker["_"+a+"Timepicker"].apply($.eotimepicker,[this[0]].concat(b))},$.eotimepicker=new eoTimepicker,$.eotimepicker.initialized=!1,$.eotimepicker.uuid=(new Date).getTime(),$.eotimepicker.version="0.3.3",window["TP_jQuery_"+tpuuid]=$}(jQuery);
js/moment.min.js CHANGED
@@ -1,3 +1,3 @@
1
- /*! event-organiser 3.9.1-0-g845144e 2020-05-28 21:35 */
2
  (function(a){function b(a,b,c){switch(arguments.length){case 2:return null!=a?a:b;case 3:return null!=a?a:null!=b?b:c;default:throw new Error("Implement me")}}function c(a,b){return Ba.call(a,b)}function d(){return{empty:!1,unusedTokens:[],unusedInput:[],overflow:-2,charsLeftOver:0,nullInput:!1,invalidMonth:null,invalidFormat:!1,userInvalidated:!1,iso:!1}}function e(a){va.suppressDeprecationWarnings===!1&&"undefined"!=typeof console&&console.warn&&console.warn("Deprecation warning: "+a)}function f(a,b){var c=!0;return o(function(){return c&&(e(a),c=!1),b.apply(this,arguments)},b)}function g(a,b){sb[a]||(e(b),sb[a]=!0)}function h(a,b){return function(c){return r(a.call(this,c),b)}}function i(a,b){return function(c){return this.localeData().ordinal(a.call(this,c),b)}}function j(a,b){var c,d,e=12*(b.year()-a.year())+(b.month()-a.month()),f=a.clone().add(e,"months");return 0>b-f?(c=a.clone().add(e-1,"months"),d=(b-f)/(f-c)):(c=a.clone().add(e+1,"months"),d=(b-f)/(c-f)),-(e+d)}function k(a,b,c){var d;return null==c?b:null!=a.meridiemHour?a.meridiemHour(b,c):null!=a.isPM?(d=a.isPM(c),d&&12>b&&(b+=12),d||12!==b||(b=0),b):b}function l(){}function m(a,b){b!==!1&&H(a),p(this,a),this._d=new Date(+a._d),ub===!1&&(ub=!0,va.updateOffset(this),ub=!1)}function n(a){var b=A(a),c=b.year||0,d=b.quarter||0,e=b.month||0,f=b.week||0,g=b.day||0,h=b.hour||0,i=b.minute||0,j=b.second||0,k=b.millisecond||0;this._milliseconds=+k+1e3*j+6e4*i+36e5*h,this._days=+g+7*f,this._months=+e+3*d+12*c,this._data={},this._locale=va.localeData(),this._bubble()}function o(a,b){for(var d in b)c(b,d)&&(a[d]=b[d]);return c(b,"toString")&&(a.toString=b.toString),c(b,"valueOf")&&(a.valueOf=b.valueOf),a}function p(a,b){var c,d,e;if("undefined"!=typeof b._isAMomentObject&&(a._isAMomentObject=b._isAMomentObject),"undefined"!=typeof b._i&&(a._i=b._i),"undefined"!=typeof b._f&&(a._f=b._f),"undefined"!=typeof b._l&&(a._l=b._l),"undefined"!=typeof b._strict&&(a._strict=b._strict),"undefined"!=typeof b._tzm&&(a._tzm=b._tzm),"undefined"!=typeof b._isUTC&&(a._isUTC=b._isUTC),"undefined"!=typeof b._offset&&(a._offset=b._offset),"undefined"!=typeof b._pf&&(a._pf=b._pf),"undefined"!=typeof b._locale&&(a._locale=b._locale),Ka.length>0)for(c in Ka)d=Ka[c],e=b[d],"undefined"!=typeof e&&(a[d]=e);return a}function q(a){return 0>a?Math.ceil(a):Math.floor(a)}function r(a,b,c){for(var d=""+Math.abs(a),e=a>=0;d.length<b;)d="0"+d;return(e?c?"+":"":"-")+d}function s(a,b){var c={milliseconds:0,months:0};return c.months=b.month()-a.month()+12*(b.year()-a.year()),a.clone().add(c.months,"M").isAfter(b)&&--c.months,c.milliseconds=+b-+a.clone().add(c.months,"M"),c}function t(a,b){var c;return b=M(b,a),a.isBefore(b)?c=s(a,b):(c=s(b,a),c.milliseconds=-c.milliseconds,c.months=-c.months),c}function u(a,b){return function(c,d){var e,f;return null===d||isNaN(+d)||(g(b,"moment()."+b+"(period, number) is deprecated. Please use moment()."+b+"(number, period)."),f=c,c=d,d=f),c="string"==typeof c?+c:c,e=va.duration(c,d),v(this,e,a),this}}function v(a,b,c,d){var e=b._milliseconds,f=b._days,g=b._months;d=null==d?!0:d,e&&a._d.setTime(+a._d+e*c),f&&pa(a,"Date",oa(a,"Date")+f*c),g&&na(a,oa(a,"Month")+g*c),d&&va.updateOffset(a,f||g)}function w(a){return"[object Array]"===Object.prototype.toString.call(a)}function x(a){return"[object Date]"===Object.prototype.toString.call(a)||a instanceof Date}function y(a,b,c){var d,e=Math.min(a.length,b.length),f=Math.abs(a.length-b.length),g=0;for(d=0;e>d;d++)(c&&a[d]!==b[d]||!c&&C(a[d])!==C(b[d]))&&g++;return g+f}function z(a){if(a){var b=a.toLowerCase().replace(/(.)s$/,"$1");a=lb[a]||mb[b]||b}return a}function A(a){var b,d,e={};for(d in a)c(a,d)&&(b=z(d),b&&(e[b]=a[d]));return e}function B(b){var c,d;if(0===b.indexOf("week"))c=7,d="day";else{if(0!==b.indexOf("month"))return;c=12,d="month"}va[b]=function(e,f){var g,h,i=va._locale[b],j=[];if("number"==typeof e&&(f=e,e=a),h=function(a){var b=va().utc().set(d,a);return i.call(va._locale,b,e||"")},null!=f)return h(f);for(g=0;c>g;g++)j.push(h(g));return j}}function C(a){var b=+a,c=0;return 0!==b&&isFinite(b)&&(c=b>=0?Math.floor(b):Math.ceil(b)),c}function D(a,b){return new Date(Date.UTC(a,b+1,0)).getUTCDate()}function E(a,b,c){return ja(va([a,11,31+b-c]),b,c).week}function F(a){return G(a)?366:365}function G(a){return a%4===0&&a%100!==0||a%400===0}function H(a){var b;a._a&&-2===a._pf.overflow&&(b=a._a[Da]<0||a._a[Da]>11?Da:a._a[Ea]<1||a._a[Ea]>D(a._a[Ca],a._a[Da])?Ea:a._a[Fa]<0||a._a[Fa]>24||24===a._a[Fa]&&(0!==a._a[Ga]||0!==a._a[Ha]||0!==a._a[Ia])?Fa:a._a[Ga]<0||a._a[Ga]>59?Ga:a._a[Ha]<0||a._a[Ha]>59?Ha:a._a[Ia]<0||a._a[Ia]>999?Ia:-1,a._pf._overflowDayOfYear&&(Ca>b||b>Ea)&&(b=Ea),a._pf.overflow=b)}function I(b){return null==b._isValid&&(b._isValid=!isNaN(b._d.getTime())&&b._pf.overflow<0&&!b._pf.empty&&!b._pf.invalidMonth&&!b._pf.nullInput&&!b._pf.invalidFormat&&!b._pf.userInvalidated,b._strict&&(b._isValid=b._isValid&&0===b._pf.charsLeftOver&&0===b._pf.unusedTokens.length&&b._pf.bigHour===a)),b._isValid}function J(a){return a?a.toLowerCase().replace("_","-"):a}function K(a){for(var b,c,d,e,f=0;f<a.length;){for(e=J(a[f]).split("-"),b=e.length,c=J(a[f+1]),c=c?c.split("-"):null;b>0;){if(d=L(e.slice(0,b).join("-")))return d;if(c&&c.length>=b&&y(e,c,!0)>=b-1)break;b--}f++}return null}function L(a){var b=null;if(!Ja[a]&&La)try{b=va.locale(),require("./locale/"+a),va.locale(b)}catch(c){}return Ja[a]}function M(a,b){var c,d;return b._isUTC?(c=b.clone(),d=(va.isMoment(a)||x(a)?+a:+va(a))-+c,c._d.setTime(+c._d+d),va.updateOffset(c,!1),c):va(a).local()}function N(a){return a.match(/\[[\s\S]/)?a.replace(/^\[|\]$/g,""):a.replace(/\\/g,"")}function O(a){var b,c,d=a.match(Pa);for(b=0,c=d.length;c>b;b++)rb[d[b]]?d[b]=rb[d[b]]:d[b]=N(d[b]);return function(e){var f="";for(b=0;c>b;b++)f+=d[b]instanceof Function?d[b].call(e,a):d[b];return f}}function P(a,b){return a.isValid()?(b=Q(b,a.localeData()),nb[b]||(nb[b]=O(b)),nb[b](a)):a.localeData().invalidDate()}function Q(a,b){function c(a){return b.longDateFormat(a)||a}var d=5;for(Qa.lastIndex=0;d>=0&&Qa.test(a);)a=a.replace(Qa,c),Qa.lastIndex=0,d-=1;return a}function R(a,b){var c,d=b._strict;switch(a){case"Q":return _a;case"DDDD":return bb;case"YYYY":case"GGGG":case"gggg":return d?cb:Ta;case"Y":case"G":case"g":return eb;case"YYYYYY":case"YYYYY":case"GGGGG":case"ggggg":return d?db:Ua;case"S":if(d)return _a;case"SS":if(d)return ab;case"SSS":if(d)return bb;case"DDD":return Sa;case"MMM":case"MMMM":case"dd":case"ddd":case"dddd":return Wa;case"a":case"A":return b._locale._meridiemParse;case"x":return Za;case"X":return $a;case"Z":case"ZZ":return Xa;case"T":return Ya;case"SSSS":return Va;case"MM":case"DD":case"YY":case"GG":case"gg":case"HH":case"hh":case"mm":case"ss":case"ww":case"WW":return d?ab:Ra;case"M":case"D":case"d":case"H":case"h":case"m":case"s":case"w":case"W":case"e":case"E":return Ra;case"Do":return d?b._locale._ordinalParse:b._locale._ordinalParseLenient;default:return c=new RegExp($(Z(a.replace("\\","")),"i"))}}function S(a){a=a||"";var b=a.match(Xa)||[],c=b[b.length-1]||[],d=(c+"").match(jb)||["-",0,0],e=+(60*d[1])+C(d[2]);return"+"===d[0]?e:-e}function T(a,b,c){var d,e=c._a;switch(a){case"Q":null!=b&&(e[Da]=3*(C(b)-1));break;case"M":case"MM":null!=b&&(e[Da]=C(b)-1);break;case"MMM":case"MMMM":d=c._locale.monthsParse(b,a,c._strict),null!=d?e[Da]=d:c._pf.invalidMonth=b;break;case"D":case"DD":null!=b&&(e[Ea]=C(b));break;case"Do":null!=b&&(e[Ea]=C(parseInt(b.match(/\d{1,2}/)[0],10)));break;case"DDD":case"DDDD":null!=b&&(c._dayOfYear=C(b));break;case"YY":e[Ca]=va.parseTwoDigitYear(b);break;case"YYYY":case"YYYYY":case"YYYYYY":e[Ca]=C(b);break;case"a":case"A":c._meridiem=b;break;case"h":case"hh":c._pf.bigHour=!0;case"H":case"HH":e[Fa]=C(b);break;case"m":case"mm":e[Ga]=C(b);break;case"s":case"ss":e[Ha]=C(b);break;case"S":case"SS":case"SSS":case"SSSS":e[Ia]=C(1e3*("0."+b));break;case"x":c._d=new Date(C(b));break;case"X":c._d=new Date(1e3*parseFloat(b));break;case"Z":case"ZZ":c._useUTC=!0,c._tzm=S(b);break;case"dd":case"ddd":case"dddd":d=c._locale.weekdaysParse(b),null!=d?(c._w=c._w||{},c._w.d=d):c._pf.invalidWeekday=b;break;case"w":case"ww":case"W":case"WW":case"d":case"e":case"E":a=a.substr(0,1);case"gggg":case"GGGG":case"GGGGG":a=a.substr(0,2),b&&(c._w=c._w||{},c._w[a]=C(b));break;case"gg":case"GG":c._w=c._w||{},c._w[a]=va.parseTwoDigitYear(b)}}function U(a){var c,d,e,f,g,h,i;c=a._w,null!=c.GG||null!=c.W||null!=c.E?(g=1,h=4,d=b(c.GG,a._a[Ca],ja(va(),1,4).year),e=b(c.W,1),f=b(c.E,1)):(g=a._locale._week.dow,h=a._locale._week.doy,d=b(c.gg,a._a[Ca],ja(va(),g,h).year),e=b(c.w,1),null!=c.d?(f=c.d,g>f&&++e):f=null!=c.e?c.e+g:g),i=ka(d,e,f,h,g),a._a[Ca]=i.year,a._dayOfYear=i.dayOfYear}function V(a){var c,d,e,f,g=[];if(!a._d){for(e=X(a),a._w&&null==a._a[Ea]&&null==a._a[Da]&&U(a),a._dayOfYear&&(f=b(a._a[Ca],e[Ca]),a._dayOfYear>F(f)&&(a._pf._overflowDayOfYear=!0),d=fa(f,0,a._dayOfYear),a._a[Da]=d.getUTCMonth(),a._a[Ea]=d.getUTCDate()),c=0;3>c&&null==a._a[c];++c)a._a[c]=g[c]=e[c];for(;7>c;c++)a._a[c]=g[c]=null==a._a[c]?2===c?1:0:a._a[c];24===a._a[Fa]&&0===a._a[Ga]&&0===a._a[Ha]&&0===a._a[Ia]&&(a._nextDay=!0,a._a[Fa]=0),a._d=(a._useUTC?fa:ea).apply(null,g),null!=a._tzm&&a._d.setUTCMinutes(a._d.getUTCMinutes()-a._tzm),a._nextDay&&(a._a[Fa]=24)}}function W(a){var b;a._d||(b=A(a._i),a._a=[b.year,b.month,b.day||b.date,b.hour,b.minute,b.second,b.millisecond],V(a))}function X(a){var b=new Date;return a._useUTC?[b.getUTCFullYear(),b.getUTCMonth(),b.getUTCDate()]:[b.getFullYear(),b.getMonth(),b.getDate()]}function Y(b){if(b._f===va.ISO_8601)return void aa(b);b._a=[],b._pf.empty=!0;var c,d,e,f,g,h=""+b._i,i=h.length,j=0;for(e=Q(b._f,b._locale).match(Pa)||[],c=0;c<e.length;c++)f=e[c],d=(h.match(R(f,b))||[])[0],d&&(g=h.substr(0,h.indexOf(d)),g.length>0&&b._pf.unusedInput.push(g),h=h.slice(h.indexOf(d)+d.length),j+=d.length),rb[f]?(d?b._pf.empty=!1:b._pf.unusedTokens.push(f),T(f,d,b)):b._strict&&!d&&b._pf.unusedTokens.push(f);b._pf.charsLeftOver=i-j,h.length>0&&b._pf.unusedInput.push(h),b._pf.bigHour===!0&&b._a[Fa]<=12&&(b._pf.bigHour=a),b._a[Fa]=k(b._locale,b._a[Fa],b._meridiem),V(b),H(b)}function Z(a){return a.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(a,b,c,d,e){return b||c||d||e})}function $(a){return a.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function _(a){var b,c,e,f,g;if(0===a._f.length)return a._pf.invalidFormat=!0,void(a._d=new Date(NaN));for(f=0;f<a._f.length;f++)g=0,b=p({},a),null!=a._useUTC&&(b._useUTC=a._useUTC),b._pf=d(),b._f=a._f[f],Y(b),I(b)&&(g+=b._pf.charsLeftOver,g+=10*b._pf.unusedTokens.length,b._pf.score=g,(null==e||e>g)&&(e=g,c=b));o(a,c||b)}function aa(a){var b,c,d=a._i,e=fb.exec(d);if(e){for(a._pf.iso=!0,b=0,c=hb.length;c>b;b++)if(hb[b][1].exec(d)){a._f=hb[b][0]+(e[6]||" ");break}for(b=0,c=ib.length;c>b;b++)if(ib[b][1].exec(d)){a._f+=ib[b][0];break}d.match(Xa)&&(a._f+="Z"),Y(a)}else a._isValid=!1}function ba(a){aa(a),a._isValid===!1&&(delete a._isValid,va.createFromInputFallback(a))}function ca(a,b){var c,d=[];for(c=0;c<a.length;++c)d.push(b(a[c],c));return d}function da(b){var c,d=b._i;d===a?b._d=new Date:x(d)?b._d=new Date(+d):null!==(c=Ma.exec(d))?b._d=new Date(+c[1]):"string"==typeof d?ba(b):w(d)?(b._a=ca(d.slice(0),function(a){return parseInt(a,10)}),V(b)):"object"==typeof d?W(b):"number"==typeof d?b._d=new Date(d):va.createFromInputFallback(b)}function ea(a,b,c,d,e,f,g){var h=new Date(a,b,c,d,e,f,g);return 1970>a&&h.setFullYear(a),h}function fa(a){var b=new Date(Date.UTC.apply(null,arguments));return 1970>a&&b.setUTCFullYear(a),b}function ga(a,b){if("string"==typeof a)if(isNaN(a)){if(a=b.weekdaysParse(a),"number"!=typeof a)return null}else a=parseInt(a,10);return a}function ha(a,b,c,d,e){return e.relativeTime(b||1,!!c,a,d)}function ia(a,b,c){var d=va.duration(a).abs(),e=Aa(d.as("s")),f=Aa(d.as("m")),g=Aa(d.as("h")),h=Aa(d.as("d")),i=Aa(d.as("M")),j=Aa(d.as("y")),k=e<ob.s&&["s",e]||1===f&&["m"]||f<ob.m&&["mm",f]||1===g&&["h"]||g<ob.h&&["hh",g]||1===h&&["d"]||h<ob.d&&["dd",h]||1===i&&["M"]||i<ob.M&&["MM",i]||1===j&&["y"]||["yy",j];return k[2]=b,k[3]=+a>0,k[4]=c,ha.apply({},k)}function ja(a,b,c){var d,e=c-b,f=c-a.day();return f>e&&(f-=7),e-7>f&&(f+=7),d=va(a).add(f,"d"),{week:Math.ceil(d.dayOfYear()/7),year:d.year()}}function ka(a,b,c,d,e){var f,g,h=fa(a,0,1).getUTCDay();return h=0===h?7:h,c=null!=c?c:e,f=e-h+(h>d?7:0)-(e>h?7:0),g=7*(b-1)+(c-e)+f+1,{year:g>0?a:a-1,dayOfYear:g>0?g:F(a-1)+g}}function la(b){var c,d=b._i,e=b._f;return b._locale=b._locale||va.localeData(b._l),null===d||e===a&&""===d?va.invalid({nullInput:!0}):("string"==typeof d&&(b._i=d=b._locale.preparse(d)),va.isMoment(d)?new m(d,!0):(e?w(e)?_(b):Y(b):da(b),c=new m(b),c._nextDay&&(c.add(1,"d"),c._nextDay=a),c))}function ma(a,b){var c,d;if(1===b.length&&w(b[0])&&(b=b[0]),!b.length)return va();for(c=b[0],d=1;d<b.length;++d)b[d][a](c)&&(c=b[d]);return c}function na(a,b){var c;return"string"==typeof b&&(b=a.localeData().monthsParse(b),"number"!=typeof b)?a:(c=Math.min(a.date(),D(a.year(),b)),a._d["set"+(a._isUTC?"UTC":"")+"Month"](b,c),a)}function oa(a,b){return a._d["get"+(a._isUTC?"UTC":"")+b]()}function pa(a,b,c){return"Month"===b?na(a,c):a._d["set"+(a._isUTC?"UTC":"")+b](c)}function qa(a,b){return function(c){return null!=c?(pa(this,a,c),va.updateOffset(this,b),this):oa(this,a)}}function ra(a){return 400*a/146097}function sa(a){return 146097*a/400}function ta(a){va.duration.fn[a]=function(){return this._data[a]}}function ua(a){"undefined"==typeof ender&&(wa=za.moment,a?za.moment=f("Accessing Moment through the global scope is deprecated, and will be removed in an upcoming release.",va):za.moment=va)}for(var va,wa,xa,ya="2.9.0",za="undefined"==typeof global||"undefined"!=typeof window&&window!==global.window?this:global,Aa=Math.round,Ba=Object.prototype.hasOwnProperty,Ca=0,Da=1,Ea=2,Fa=3,Ga=4,Ha=5,Ia=6,Ja={},Ka=[],La="undefined"!=typeof module&&module&&module.exports,Ma=/^\/?Date\((\-?\d+)/i,Na=/(\-)?(?:(\d*)\.)?(\d+)\:(\d+)(?:\:(\d+)\.?(\d{3})?)?/,Oa=/^(-)?P(?:(?:([0-9,.]*)Y)?(?:([0-9,.]*)M)?(?:([0-9,.]*)D)?(?:T(?:([0-9,.]*)H)?(?:([0-9,.]*)M)?(?:([0-9,.]*)S)?)?|([0-9,.]*)W)$/,Pa=/(\[[^\[]*\])|(\\)?(Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Q|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|mm?|ss?|S{1,4}|x|X|zz?|ZZ?|.)/g,Qa=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,Ra=/\d\d?/,Sa=/\d{1,3}/,Ta=/\d{1,4}/,Ua=/[+\-]?\d{1,6}/,Va=/\d+/,Wa=/[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\/]+(\s*?[\u0600-\u06FF]+){1,2}/i,Xa=/Z|[\+\-]\d\d:?\d\d/gi,Ya=/T/i,Za=/[\+\-]?\d+/,$a=/[\+\-]?\d+(\.\d{1,3})?/,_a=/\d/,ab=/\d\d/,bb=/\d{3}/,cb=/\d{4}/,db=/[+-]?\d{6}/,eb=/[+-]?\d+/,fb=/^\s*(?:[+-]\d{6}|\d{4})-(?:(\d\d-\d\d)|(W\d\d$)|(W\d\d-\d)|(\d\d\d))((T| )(\d\d(:\d\d(:\d\d(\.\d+)?)?)?)?([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,gb="YYYY-MM-DDTHH:mm:ssZ",hb=[["YYYYYY-MM-DD",/[+-]\d{6}-\d{2}-\d{2}/],["YYYY-MM-DD",/\d{4}-\d{2}-\d{2}/],["GGGG-[W]WW-E",/\d{4}-W\d{2}-\d/],["GGGG-[W]WW",/\d{4}-W\d{2}/],["YYYY-DDD",/\d{4}-\d{3}/]],ib=[["HH:mm:ss.SSSS",/(T| )\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss",/(T| )\d\d:\d\d:\d\d/],["HH:mm",/(T| )\d\d:\d\d/],["HH",/(T| )\d\d/]],jb=/([\+\-]|\d\d)/gi,kb=("Date|Hours|Minutes|Seconds|Milliseconds".split("|"),{Milliseconds:1,Seconds:1e3,Minutes:6e4,Hours:36e5,Days:864e5,Months:2592e6,Years:31536e6}),lb={ms:"millisecond",s:"second",m:"minute",h:"hour",d:"day",D:"date",w:"week",W:"isoWeek",M:"month",Q:"quarter",y:"year",DDD:"dayOfYear",e:"weekday",E:"isoWeekday",gg:"weekYear",GG:"isoWeekYear"},mb={dayofyear:"dayOfYear",isoweekday:"isoWeekday",isoweek:"isoWeek",weekyear:"weekYear",isoweekyear:"isoWeekYear"},nb={},ob={s:45,m:45,h:22,d:26,M:11},pb="DDD w W M D d".split(" "),qb="M D H h m s w W".split(" "),rb={M:function(){return this.month()+1},MMM:function(a){return this.localeData().monthsShort(this,a)},MMMM:function(a){return this.localeData().months(this,a)},D:function(){return this.date()},DDD:function(){return this.dayOfYear()},d:function(){return this.day()},dd:function(a){return this.localeData().weekdaysMin(this,a)},ddd:function(a){return this.localeData().weekdaysShort(this,a)},dddd:function(a){return this.localeData().weekdays(this,a)},w:function(){return this.week()},W:function(){return this.isoWeek()},YY:function(){return r(this.year()%100,2)},YYYY:function(){return r(this.year(),4)},YYYYY:function(){return r(this.year(),5)},YYYYYY:function(){var a=this.year(),b=a>=0?"+":"-";return b+r(Math.abs(a),6)},gg:function(){return r(this.weekYear()%100,2)},gggg:function(){return r(this.weekYear(),4)},ggggg:function(){return r(this.weekYear(),5)},GG:function(){return r(this.isoWeekYear()%100,2)},GGGG:function(){return r(this.isoWeekYear(),4)},GGGGG:function(){return r(this.isoWeekYear(),5)},e:function(){return this.weekday()},E:function(){return this.isoWeekday()},a:function(){return this.localeData().meridiem(this.hours(),this.minutes(),!0)},A:function(){return this.localeData().meridiem(this.hours(),this.minutes(),!1)},H:function(){return this.hours()},h:function(){return this.hours()%12||12},m:function(){return this.minutes()},s:function(){return this.seconds()},S:function(){return C(this.milliseconds()/100)},SS:function(){return r(C(this.milliseconds()/10),2)},SSS:function(){return r(this.milliseconds(),3)},SSSS:function(){return r(this.milliseconds(),3)},Z:function(){var a=this.utcOffset(),b="+";return 0>a&&(a=-a,b="-"),b+r(C(a/60),2)+":"+r(C(a)%60,2)},ZZ:function(){var a=this.utcOffset(),b="+";return 0>a&&(a=-a,b="-"),b+r(C(a/60),2)+r(C(a)%60,2)},z:function(){return this.zoneAbbr()},zz:function(){return this.zoneName()},x:function(){return this.valueOf()},X:function(){return this.unix()},Q:function(){return this.quarter()}},sb={},tb=["months","monthsShort","weekdays","weekdaysShort","weekdaysMin"],ub=!1;pb.length;)xa=pb.pop(),rb[xa+"o"]=i(rb[xa],xa);for(;qb.length;)xa=qb.pop(),rb[xa+xa]=h(rb[xa],2);rb.DDDD=h(rb.DDD,3),o(l.prototype,{set:function(a){var b,c;for(c in a)b=a[c],"function"==typeof b?this[c]=b:this["_"+c]=b;this._ordinalParseLenient=new RegExp(this._ordinalParse.source+"|"+/\d{1,2}/.source)},_months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),months:function(a){return this._months[a.month()]},_monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),monthsShort:function(a){return this._monthsShort[a.month()]},monthsParse:function(a,b,c){var d,e,f;for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),d=0;12>d;d++){if(e=va.utc([2e3,d]),c&&!this._longMonthsParse[d]&&(this._longMonthsParse[d]=new RegExp("^"+this.months(e,"").replace(".","")+"$","i"),this._shortMonthsParse[d]=new RegExp("^"+this.monthsShort(e,"").replace(".","")+"$","i")),c||this._monthsParse[d]||(f="^"+this.months(e,"")+"|^"+this.monthsShort(e,""),this._monthsParse[d]=new RegExp(f.replace(".",""),"i")),c&&"MMMM"===b&&this._longMonthsParse[d].test(a))return d;if(c&&"MMM"===b&&this._shortMonthsParse[d].test(a))return d;if(!c&&this._monthsParse[d].test(a))return d}},_weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdays:function(a){return this._weekdays[a.day()]},_weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysShort:function(a){return this._weekdaysShort[a.day()]},_weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),weekdaysMin:function(a){return this._weekdaysMin[a.day()]},weekdaysParse:function(a){var b,c,d;for(this._weekdaysParse||(this._weekdaysParse=[]),b=0;7>b;b++)if(this._weekdaysParse[b]||(c=va([2e3,1]).day(b),d="^"+this.weekdays(c,"")+"|^"+this.weekdaysShort(c,"")+"|^"+this.weekdaysMin(c,""),this._weekdaysParse[b]=new RegExp(d.replace(".",""),"i")),this._weekdaysParse[b].test(a))return b},_longDateFormat:{LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY LT",LLLL:"dddd, MMMM D, YYYY LT"},longDateFormat:function(a){var b=this._longDateFormat[a];return!b&&this._longDateFormat[a.toUpperCase()]&&(b=this._longDateFormat[a.toUpperCase()].replace(/MMMM|MM|DD|dddd/g,function(a){return a.slice(1)}),this._longDateFormat[a]=b),b},isPM:function(a){return"p"===(a+"").toLowerCase().charAt(0)},_meridiemParse:/[ap]\.?m?\.?/i,meridiem:function(a,b,c){return a>11?c?"pm":"PM":c?"am":"AM"},_calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},calendar:function(a,b,c){var d=this._calendar[a];return"function"==typeof d?d.apply(b,[c]):d},_relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},relativeTime:function(a,b,c,d){var e=this._relativeTime[c];return"function"==typeof e?e(a,b,c,d):e.replace(/%d/i,a)},pastFuture:function(a,b){var c=this._relativeTime[a>0?"future":"past"];return"function"==typeof c?c(b):c.replace(/%s/i,b)},ordinal:function(a){return this._ordinal.replace("%d",a)},_ordinal:"%d",_ordinalParse:/\d{1,2}/,preparse:function(a){return a},postformat:function(a){return a},week:function(a){return ja(a,this._week.dow,this._week.doy).week},_week:{dow:0,doy:6},firstDayOfWeek:function(){return this._week.dow},firstDayOfYear:function(){return this._week.doy},_invalidDate:"Invalid date",invalidDate:function(){return this._invalidDate}}),va=function(b,c,e,f){var g;return"boolean"==typeof e&&(f=e,e=a),g={},g._isAMomentObject=!0,g._i=b,g._f=c,g._l=e,g._strict=f,g._isUTC=!1,g._pf=d(),la(g)},va.suppressDeprecationWarnings=!1,va.createFromInputFallback=f("moment construction falls back to js Date. This is discouraged and will be removed in upcoming major release. Please refer to https://github.com/moment/moment/issues/1407 for more info.",function(a){a._d=new Date(a._i+(a._useUTC?" UTC":""))}),va.min=function(){var a=[].slice.call(arguments,0);return ma("isBefore",a)},va.max=function(){var a=[].slice.call(arguments,0);return ma("isAfter",a)},va.utc=function(b,c,e,f){var g;return"boolean"==typeof e&&(f=e,e=a),g={},g._isAMomentObject=!0,g._useUTC=!0,g._isUTC=!0,g._l=e,g._i=b,g._f=c,g._strict=f,g._pf=d(),la(g).utc()},va.unix=function(a){return va(1e3*a)},va.duration=function(a,b){var d,e,f,g,h=a,i=null;return va.isDuration(a)?h={ms:a._milliseconds,d:a._days,M:a._months}:"number"==typeof a?(h={},b?h[b]=a:h.milliseconds=a):(i=Na.exec(a))?(d="-"===i[1]?-1:1,h={y:0,d:C(i[Ea])*d,h:C(i[Fa])*d,m:C(i[Ga])*d,s:C(i[Ha])*d,ms:C(i[Ia])*d}):(i=Oa.exec(a))?(d="-"===i[1]?-1:1,f=function(a){var b=a&&parseFloat(a.replace(",","."));return(isNaN(b)?0:b)*d},h={y:f(i[2]),M:f(i[3]),d:f(i[4]),h:f(i[5]),m:f(i[6]),s:f(i[7]),w:f(i[8])}):null==h?h={}:"object"==typeof h&&("from"in h||"to"in h)&&(g=t(va(h.from),va(h.to)),h={},h.ms=g.milliseconds,h.M=g.months),e=new n(h),va.isDuration(a)&&c(a,"_locale")&&(e._locale=a._locale),e},va.version=ya,va.defaultFormat=gb,va.ISO_8601=function(){},va.momentProperties=Ka,va.updateOffset=function(){},va.relativeTimeThreshold=function(b,c){return ob[b]===a?!1:c===a?ob[b]:(ob[b]=c,!0)},va.lang=f("moment.lang is deprecated. Use moment.locale instead.",function(a,b){return va.locale(a,b)}),va.locale=function(a,b){var c;return a&&(c="undefined"!=typeof b?va.defineLocale(a,b):va.localeData(a),c&&(va.duration._locale=va._locale=c)),va._locale._abbr},va.defineLocale=function(a,b){return null!==b?(b.abbr=a,Ja[a]||(Ja[a]=new l),Ja[a].set(b),va.locale(a),Ja[a]):(delete Ja[a],null)},va.langData=f("moment.langData is deprecated. Use moment.localeData instead.",function(a){return va.localeData(a)}),va.localeData=function(a){var b;if(a&&a._locale&&a._locale._abbr&&(a=a._locale._abbr),!a)return va._locale;if(!w(a)){if(b=L(a))return b;a=[a]}return K(a)},va.isMoment=function(a){return a instanceof m||null!=a&&c(a,"_isAMomentObject")},va.isDuration=function(a){return a instanceof n};for(xa=tb.length-1;xa>=0;--xa)B(tb[xa]);va.normalizeUnits=function(a){return z(a)},va.invalid=function(a){var b=va.utc(NaN);return null!=a?o(b._pf,a):b._pf.userInvalidated=!0,b},va.parseZone=function(){return va.apply(null,arguments).parseZone()},va.parseTwoDigitYear=function(a){return C(a)+(C(a)>68?1900:2e3)},va.isDate=x,o(va.fn=m.prototype,{clone:function(){return va(this)},valueOf:function(){return+this._d-6e4*(this._offset||0)},unix:function(){return Math.floor(+this/1e3)},toString:function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},toDate:function(){return this._offset?new Date(+this):this._d},toISOString:function(){var a=va(this).utc();return 0<a.year()&&a.year()<=9999?"function"==typeof Date.prototype.toISOString?this.toDate().toISOString():P(a,"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]"):P(a,"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]")},toArray:function(){var a=this;return[a.year(),a.month(),a.date(),a.hours(),a.minutes(),a.seconds(),a.milliseconds()]},isValid:function(){return I(this)},isDSTShifted:function(){return this._a?this.isValid()&&y(this._a,(this._isUTC?va.utc(this._a):va(this._a)).toArray())>0:!1},parsingFlags:function(){return o({},this._pf)},invalidAt:function(){return this._pf.overflow},utc:function(a){return this.utcOffset(0,a)},local:function(a){return this._isUTC&&(this.utcOffset(0,a),this._isUTC=!1,a&&this.subtract(this._dateUtcOffset(),"m")),this},format:function(a){var b=P(this,a||va.defaultFormat);return this.localeData().postformat(b)},add:u(1,"add"),subtract:u(-1,"subtract"),diff:function(a,b,c){var d,e,f=M(a,this),g=6e4*(f.utcOffset()-this.utcOffset());return b=z(b),"year"===b||"month"===b||"quarter"===b?(e=j(this,f),"quarter"===b?e/=3:"year"===b&&(e/=12)):(d=this-f,e="second"===b?d/1e3:"minute"===b?d/6e4:"hour"===b?d/36e5:"day"===b?(d-g)/864e5:"week"===b?(d-g)/6048e5:d),c?e:q(e)},from:function(a,b){return va.duration({to:this,from:a}).locale(this.locale()).humanize(!b)},fromNow:function(a){return this.from(va(),a)},calendar:function(a){var b=a||va(),c=M(b,this).startOf("day"),d=this.diff(c,"days",!0),e=-6>d?"sameElse":-1>d?"lastWeek":0>d?"lastDay":1>d?"sameDay":2>d?"nextDay":7>d?"nextWeek":"sameElse";return this.format(this.localeData().calendar(e,this,va(b)))},isLeapYear:function(){return G(this.year())},isDST:function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},day:function(a){var b=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=a?(a=ga(a,this.localeData()),this.add(a-b,"d")):b},month:qa("Month",!0),startOf:function(a){switch(a=z(a)){case"year":this.month(0);case"quarter":case"month":this.date(1);case"week":case"isoWeek":case"day":this.hours(0);case"hour":this.minutes(0);case"minute":this.seconds(0);case"second":this.milliseconds(0)}return"week"===a?this.weekday(0):"isoWeek"===a&&this.isoWeekday(1),"quarter"===a&&this.month(3*Math.floor(this.month()/3)),this},endOf:function(b){return b=z(b),b===a||"millisecond"===b?this:this.startOf(b).add(1,"isoWeek"===b?"week":b).subtract(1,"ms")},isAfter:function(a,b){var c;return b=z("undefined"!=typeof b?b:"millisecond"),"millisecond"===b?(a=va.isMoment(a)?a:va(a),+this>+a):(c=va.isMoment(a)?+a:+va(a),c<+this.clone().startOf(b))},isBefore:function(a,b){var c;return b=z("undefined"!=typeof b?b:"millisecond"),"millisecond"===b?(a=va.isMoment(a)?a:va(a),+a>+this):(c=va.isMoment(a)?+a:+va(a),+this.clone().endOf(b)<c)},isBetween:function(a,b,c){return this.isAfter(a,c)&&this.isBefore(b,c)},isSame:function(a,b){var c;return b=z(b||"millisecond"),"millisecond"===b?(a=va.isMoment(a)?a:va(a),+this===+a):(c=+va(a),+this.clone().startOf(b)<=c&&c<=+this.clone().endOf(b))},min:f("moment().min is deprecated, use moment.min instead. https://github.com/moment/moment/issues/1548",function(a){return a=va.apply(null,arguments),this>a?this:a}),max:f("moment().max is deprecated, use moment.max instead. https://github.com/moment/moment/issues/1548",function(a){return a=va.apply(null,arguments),a>this?this:a}),zone:f("moment().zone is deprecated, use moment().utcOffset instead. https://github.com/moment/moment/issues/1779",function(a,b){return null!=a?("string"!=typeof a&&(a=-a),this.utcOffset(a,b),this):-this.utcOffset()}),utcOffset:function(a,b){var c,d=this._offset||0;return null!=a?("string"==typeof a&&(a=S(a)),Math.abs(a)<16&&(a=60*a),!this._isUTC&&b&&(c=this._dateUtcOffset()),this._offset=a,this._isUTC=!0,null!=c&&this.add(c,"m"),d!==a&&(!b||this._changeInProgress?v(this,va.duration(a-d,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,va.updateOffset(this,!0),this._changeInProgress=null)),this):this._isUTC?d:this._dateUtcOffset()},isLocal:function(){return!this._isUTC},isUtcOffset:function(){return this._isUTC},isUtc:function(){return this._isUTC&&0===this._offset},zoneAbbr:function(){return this._isUTC?"UTC":""},zoneName:function(){return this._isUTC?"Coordinated Universal Time":""},parseZone:function(){return this._tzm?this.utcOffset(this._tzm):"string"==typeof this._i&&this.utcOffset(S(this._i)),this},hasAlignedHourOffset:function(a){return a=a?va(a).utcOffset():0,(this.utcOffset()-a)%60===0},daysInMonth:function(){return D(this.year(),this.month())},dayOfYear:function(a){var b=Aa((va(this).startOf("day")-va(this).startOf("year"))/864e5)+1;return null==a?b:this.add(a-b,"d")},quarter:function(a){return null==a?Math.ceil((this.month()+1)/3):this.month(3*(a-1)+this.month()%3)},weekYear:function(a){var b=ja(this,this.localeData()._week.dow,this.localeData()._week.doy).year;return null==a?b:this.add(a-b,"y")},isoWeekYear:function(a){var b=ja(this,1,4).year;return null==a?b:this.add(a-b,"y")},week:function(a){var b=this.localeData().week(this);return null==a?b:this.add(7*(a-b),"d")},isoWeek:function(a){var b=ja(this,1,4).week;return null==a?b:this.add(7*(a-b),"d")},weekday:function(a){var b=(this.day()+7-this.localeData()._week.dow)%7;return null==a?b:this.add(a-b,"d")},isoWeekday:function(a){return null==a?this.day()||7:this.day(this.day()%7?a:a-7)},isoWeeksInYear:function(){return E(this.year(),1,4)},weeksInYear:function(){var a=this.localeData()._week;return E(this.year(),a.dow,a.doy)},get:function(a){return a=z(a),this[a]()},set:function(a,b){var c;if("object"==typeof a)for(c in a)this.set(c,a[c]);else a=z(a),"function"==typeof this[a]&&this[a](b);return this},locale:function(b){var c;return b===a?this._locale._abbr:(c=va.localeData(b),null!=c&&(this._locale=c),this)},lang:f("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(b){return b===a?this.localeData():this.locale(b)}),localeData:function(){return this._locale},_dateUtcOffset:function(){return 15*-Math.round(this._d.getTimezoneOffset()/15)}}),va.fn.millisecond=va.fn.milliseconds=qa("Milliseconds",!1),va.fn.second=va.fn.seconds=qa("Seconds",!1),va.fn.minute=va.fn.minutes=qa("Minutes",!1),va.fn.hour=va.fn.hours=qa("Hours",!0),va.fn.date=qa("Date",!0),va.fn.dates=f("dates accessor is deprecated. Use date instead.",qa("Date",!0)),va.fn.year=qa("FullYear",!0),va.fn.years=f("years accessor is deprecated. Use year instead.",qa("FullYear",!0)),va.fn.days=va.fn.day,va.fn.months=va.fn.month,va.fn.weeks=va.fn.week,va.fn.isoWeeks=va.fn.isoWeek,va.fn.quarters=va.fn.quarter,va.fn.toJSON=va.fn.toISOString,va.fn.isUTC=va.fn.isUtc,o(va.duration.fn=n.prototype,{_bubble:function(){var a,b,c,d=this._milliseconds,e=this._days,f=this._months,g=this._data,h=0;g.milliseconds=d%1e3,a=q(d/1e3),g.seconds=a%60,b=q(a/60),g.minutes=b%60,c=q(b/60),g.hours=c%24,e+=q(c/24),h=q(ra(e)),e-=q(sa(h)),f+=q(e/30),e%=30,h+=q(f/12),f%=12,g.days=e,g.months=f,g.years=h},abs:function(){return this._milliseconds=Math.abs(this._milliseconds),this._days=Math.abs(this._days),this._months=Math.abs(this._months),this._data.milliseconds=Math.abs(this._data.milliseconds),this._data.seconds=Math.abs(this._data.seconds),this._data.minutes=Math.abs(this._data.minutes),this._data.hours=Math.abs(this._data.hours),this._data.months=Math.abs(this._data.months),this._data.years=Math.abs(this._data.years),this},weeks:function(){return q(this.days()/7)},valueOf:function(){return this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*C(this._months/12);
3
  },humanize:function(a){var b=ia(this,!a,this.localeData());return a&&(b=this.localeData().pastFuture(+this,b)),this.localeData().postformat(b)},add:function(a,b){var c=va.duration(a,b);return this._milliseconds+=c._milliseconds,this._days+=c._days,this._months+=c._months,this._bubble(),this},subtract:function(a,b){var c=va.duration(a,b);return this._milliseconds-=c._milliseconds,this._days-=c._days,this._months-=c._months,this._bubble(),this},get:function(a){return a=z(a),this[a.toLowerCase()+"s"]()},as:function(a){var b,c;if(a=z(a),"month"===a||"year"===a)return b=this._days+this._milliseconds/864e5,c=this._months+12*ra(b),"month"===a?c:c/12;switch(b=this._days+Math.round(sa(this._months/12)),a){case"week":return b/7+this._milliseconds/6048e5;case"day":return b+this._milliseconds/864e5;case"hour":return 24*b+this._milliseconds/36e5;case"minute":return 24*b*60+this._milliseconds/6e4;case"second":return 24*b*60*60+this._milliseconds/1e3;case"millisecond":return Math.floor(24*b*60*60*1e3)+this._milliseconds;default:throw new Error("Unknown unit "+a)}},lang:va.fn.lang,locale:va.fn.locale,toIsoString:f("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",function(){return this.toISOString()}),toISOString:function(){var a=Math.abs(this.years()),b=Math.abs(this.months()),c=Math.abs(this.days()),d=Math.abs(this.hours()),e=Math.abs(this.minutes()),f=Math.abs(this.seconds()+this.milliseconds()/1e3);return this.asSeconds()?(this.asSeconds()<0?"-":"")+"P"+(a?a+"Y":"")+(b?b+"M":"")+(c?c+"D":"")+(d||e||f?"T":"")+(d?d+"H":"")+(e?e+"M":"")+(f?f+"S":""):"P0D"},localeData:function(){return this._locale},toJSON:function(){return this.toISOString()}}),va.duration.fn.toString=va.duration.fn.toISOString;for(xa in kb)c(kb,xa)&&ta(xa.toLowerCase());va.duration.fn.asMilliseconds=function(){return this.as("ms")},va.duration.fn.asSeconds=function(){return this.as("s")},va.duration.fn.asMinutes=function(){return this.as("m")},va.duration.fn.asHours=function(){return this.as("h")},va.duration.fn.asDays=function(){return this.as("d")},va.duration.fn.asWeeks=function(){return this.as("weeks")},va.duration.fn.asMonths=function(){return this.as("M")},va.duration.fn.asYears=function(){return this.as("y")},va.locale("en",{ordinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(a){var b=a%10,c=1===C(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th";return a+c}}),La?module.exports=va:"function"==typeof define&&define.amd?(define(function(a,b,c){return c.config&&c.config()&&c.config().noGlobal===!0&&(za.moment=wa),va}),ua(!0)):ua()}).call(this);
1
+ /*! event-organiser 3.10.0-0-g5f45c47 2020-07-22 07:59 */
2
  (function(a){function b(a,b,c){switch(arguments.length){case 2:return null!=a?a:b;case 3:return null!=a?a:null!=b?b:c;default:throw new Error("Implement me")}}function c(a,b){return Ba.call(a,b)}function d(){return{empty:!1,unusedTokens:[],unusedInput:[],overflow:-2,charsLeftOver:0,nullInput:!1,invalidMonth:null,invalidFormat:!1,userInvalidated:!1,iso:!1}}function e(a){va.suppressDeprecationWarnings===!1&&"undefined"!=typeof console&&console.warn&&console.warn("Deprecation warning: "+a)}function f(a,b){var c=!0;return o(function(){return c&&(e(a),c=!1),b.apply(this,arguments)},b)}function g(a,b){sb[a]||(e(b),sb[a]=!0)}function h(a,b){return function(c){return r(a.call(this,c),b)}}function i(a,b){return function(c){return this.localeData().ordinal(a.call(this,c),b)}}function j(a,b){var c,d,e=12*(b.year()-a.year())+(b.month()-a.month()),f=a.clone().add(e,"months");return 0>b-f?(c=a.clone().add(e-1,"months"),d=(b-f)/(f-c)):(c=a.clone().add(e+1,"months"),d=(b-f)/(c-f)),-(e+d)}function k(a,b,c){var d;return null==c?b:null!=a.meridiemHour?a.meridiemHour(b,c):null!=a.isPM?(d=a.isPM(c),d&&12>b&&(b+=12),d||12!==b||(b=0),b):b}function l(){}function m(a,b){b!==!1&&H(a),p(this,a),this._d=new Date(+a._d),ub===!1&&(ub=!0,va.updateOffset(this),ub=!1)}function n(a){var b=A(a),c=b.year||0,d=b.quarter||0,e=b.month||0,f=b.week||0,g=b.day||0,h=b.hour||0,i=b.minute||0,j=b.second||0,k=b.millisecond||0;this._milliseconds=+k+1e3*j+6e4*i+36e5*h,this._days=+g+7*f,this._months=+e+3*d+12*c,this._data={},this._locale=va.localeData(),this._bubble()}function o(a,b){for(var d in b)c(b,d)&&(a[d]=b[d]);return c(b,"toString")&&(a.toString=b.toString),c(b,"valueOf")&&(a.valueOf=b.valueOf),a}function p(a,b){var c,d,e;if("undefined"!=typeof b._isAMomentObject&&(a._isAMomentObject=b._isAMomentObject),"undefined"!=typeof b._i&&(a._i=b._i),"undefined"!=typeof b._f&&(a._f=b._f),"undefined"!=typeof b._l&&(a._l=b._l),"undefined"!=typeof b._strict&&(a._strict=b._strict),"undefined"!=typeof b._tzm&&(a._tzm=b._tzm),"undefined"!=typeof b._isUTC&&(a._isUTC=b._isUTC),"undefined"!=typeof b._offset&&(a._offset=b._offset),"undefined"!=typeof b._pf&&(a._pf=b._pf),"undefined"!=typeof b._locale&&(a._locale=b._locale),Ka.length>0)for(c in Ka)d=Ka[c],e=b[d],"undefined"!=typeof e&&(a[d]=e);return a}function q(a){return 0>a?Math.ceil(a):Math.floor(a)}function r(a,b,c){for(var d=""+Math.abs(a),e=a>=0;d.length<b;)d="0"+d;return(e?c?"+":"":"-")+d}function s(a,b){var c={milliseconds:0,months:0};return c.months=b.month()-a.month()+12*(b.year()-a.year()),a.clone().add(c.months,"M").isAfter(b)&&--c.months,c.milliseconds=+b-+a.clone().add(c.months,"M"),c}function t(a,b){var c;return b=M(b,a),a.isBefore(b)?c=s(a,b):(c=s(b,a),c.milliseconds=-c.milliseconds,c.months=-c.months),c}function u(a,b){return function(c,d){var e,f;return null===d||isNaN(+d)||(g(b,"moment()."+b+"(period, number) is deprecated. Please use moment()."+b+"(number, period)."),f=c,c=d,d=f),c="string"==typeof c?+c:c,e=va.duration(c,d),v(this,e,a),this}}function v(a,b,c,d){var e=b._milliseconds,f=b._days,g=b._months;d=null==d?!0:d,e&&a._d.setTime(+a._d+e*c),f&&pa(a,"Date",oa(a,"Date")+f*c),g&&na(a,oa(a,"Month")+g*c),d&&va.updateOffset(a,f||g)}function w(a){return"[object Array]"===Object.prototype.toString.call(a)}function x(a){return"[object Date]"===Object.prototype.toString.call(a)||a instanceof Date}function y(a,b,c){var d,e=Math.min(a.length,b.length),f=Math.abs(a.length-b.length),g=0;for(d=0;e>d;d++)(c&&a[d]!==b[d]||!c&&C(a[d])!==C(b[d]))&&g++;return g+f}function z(a){if(a){var b=a.toLowerCase().replace(/(.)s$/,"$1");a=lb[a]||mb[b]||b}return a}function A(a){var b,d,e={};for(d in a)c(a,d)&&(b=z(d),b&&(e[b]=a[d]));return e}function B(b){var c,d;if(0===b.indexOf("week"))c=7,d="day";else{if(0!==b.indexOf("month"))return;c=12,d="month"}va[b]=function(e,f){var g,h,i=va._locale[b],j=[];if("number"==typeof e&&(f=e,e=a),h=function(a){var b=va().utc().set(d,a);return i.call(va._locale,b,e||"")},null!=f)return h(f);for(g=0;c>g;g++)j.push(h(g));return j}}function C(a){var b=+a,c=0;return 0!==b&&isFinite(b)&&(c=b>=0?Math.floor(b):Math.ceil(b)),c}function D(a,b){return new Date(Date.UTC(a,b+1,0)).getUTCDate()}function E(a,b,c){return ja(va([a,11,31+b-c]),b,c).week}function F(a){return G(a)?366:365}function G(a){return a%4===0&&a%100!==0||a%400===0}function H(a){var b;a._a&&-2===a._pf.overflow&&(b=a._a[Da]<0||a._a[Da]>11?Da:a._a[Ea]<1||a._a[Ea]>D(a._a[Ca],a._a[Da])?Ea:a._a[Fa]<0||a._a[Fa]>24||24===a._a[Fa]&&(0!==a._a[Ga]||0!==a._a[Ha]||0!==a._a[Ia])?Fa:a._a[Ga]<0||a._a[Ga]>59?Ga:a._a[Ha]<0||a._a[Ha]>59?Ha:a._a[Ia]<0||a._a[Ia]>999?Ia:-1,a._pf._overflowDayOfYear&&(Ca>b||b>Ea)&&(b=Ea),a._pf.overflow=b)}function I(b){return null==b._isValid&&(b._isValid=!isNaN(b._d.getTime())&&b._pf.overflow<0&&!b._pf.empty&&!b._pf.invalidMonth&&!b._pf.nullInput&&!b._pf.invalidFormat&&!b._pf.userInvalidated,b._strict&&(b._isValid=b._isValid&&0===b._pf.charsLeftOver&&0===b._pf.unusedTokens.length&&b._pf.bigHour===a)),b._isValid}function J(a){return a?a.toLowerCase().replace("_","-"):a}function K(a){for(var b,c,d,e,f=0;f<a.length;){for(e=J(a[f]).split("-"),b=e.length,c=J(a[f+1]),c=c?c.split("-"):null;b>0;){if(d=L(e.slice(0,b).join("-")))return d;if(c&&c.length>=b&&y(e,c,!0)>=b-1)break;b--}f++}return null}function L(a){var b=null;if(!Ja[a]&&La)try{b=va.locale(),require("./locale/"+a),va.locale(b)}catch(c){}return Ja[a]}function M(a,b){var c,d;return b._isUTC?(c=b.clone(),d=(va.isMoment(a)||x(a)?+a:+va(a))-+c,c._d.setTime(+c._d+d),va.updateOffset(c,!1),c):va(a).local()}function N(a){return a.match(/\[[\s\S]/)?a.replace(/^\[|\]$/g,""):a.replace(/\\/g,"")}function O(a){var b,c,d=a.match(Pa);for(b=0,c=d.length;c>b;b++)rb[d[b]]?d[b]=rb[d[b]]:d[b]=N(d[b]);return function(e){var f="";for(b=0;c>b;b++)f+=d[b]instanceof Function?d[b].call(e,a):d[b];return f}}function P(a,b){return a.isValid()?(b=Q(b,a.localeData()),nb[b]||(nb[b]=O(b)),nb[b](a)):a.localeData().invalidDate()}function Q(a,b){function c(a){return b.longDateFormat(a)||a}var d=5;for(Qa.lastIndex=0;d>=0&&Qa.test(a);)a=a.replace(Qa,c),Qa.lastIndex=0,d-=1;return a}function R(a,b){var c,d=b._strict;switch(a){case"Q":return _a;case"DDDD":return bb;case"YYYY":case"GGGG":case"gggg":return d?cb:Ta;case"Y":case"G":case"g":return eb;case"YYYYYY":case"YYYYY":case"GGGGG":case"ggggg":return d?db:Ua;case"S":if(d)return _a;case"SS":if(d)return ab;case"SSS":if(d)return bb;case"DDD":return Sa;case"MMM":case"MMMM":case"dd":case"ddd":case"dddd":return Wa;case"a":case"A":return b._locale._meridiemParse;case"x":return Za;case"X":return $a;case"Z":case"ZZ":return Xa;case"T":return Ya;case"SSSS":return Va;case"MM":case"DD":case"YY":case"GG":case"gg":case"HH":case"hh":case"mm":case"ss":case"ww":case"WW":return d?ab:Ra;case"M":case"D":case"d":case"H":case"h":case"m":case"s":case"w":case"W":case"e":case"E":return Ra;case"Do":return d?b._locale._ordinalParse:b._locale._ordinalParseLenient;default:return c=new RegExp($(Z(a.replace("\\","")),"i"))}}function S(a){a=a||"";var b=a.match(Xa)||[],c=b[b.length-1]||[],d=(c+"").match(jb)||["-",0,0],e=+(60*d[1])+C(d[2]);return"+"===d[0]?e:-e}function T(a,b,c){var d,e=c._a;switch(a){case"Q":null!=b&&(e[Da]=3*(C(b)-1));break;case"M":case"MM":null!=b&&(e[Da]=C(b)-1);break;case"MMM":case"MMMM":d=c._locale.monthsParse(b,a,c._strict),null!=d?e[Da]=d:c._pf.invalidMonth=b;break;case"D":case"DD":null!=b&&(e[Ea]=C(b));break;case"Do":null!=b&&(e[Ea]=C(parseInt(b.match(/\d{1,2}/)[0],10)));break;case"DDD":case"DDDD":null!=b&&(c._dayOfYear=C(b));break;case"YY":e[Ca]=va.parseTwoDigitYear(b);break;case"YYYY":case"YYYYY":case"YYYYYY":e[Ca]=C(b);break;case"a":case"A":c._meridiem=b;break;case"h":case"hh":c._pf.bigHour=!0;case"H":case"HH":e[Fa]=C(b);break;case"m":case"mm":e[Ga]=C(b);break;case"s":case"ss":e[Ha]=C(b);break;case"S":case"SS":case"SSS":case"SSSS":e[Ia]=C(1e3*("0."+b));break;case"x":c._d=new Date(C(b));break;case"X":c._d=new Date(1e3*parseFloat(b));break;case"Z":case"ZZ":c._useUTC=!0,c._tzm=S(b);break;case"dd":case"ddd":case"dddd":d=c._locale.weekdaysParse(b),null!=d?(c._w=c._w||{},c._w.d=d):c._pf.invalidWeekday=b;break;case"w":case"ww":case"W":case"WW":case"d":case"e":case"E":a=a.substr(0,1);case"gggg":case"GGGG":case"GGGGG":a=a.substr(0,2),b&&(c._w=c._w||{},c._w[a]=C(b));break;case"gg":case"GG":c._w=c._w||{},c._w[a]=va.parseTwoDigitYear(b)}}function U(a){var c,d,e,f,g,h,i;c=a._w,null!=c.GG||null!=c.W||null!=c.E?(g=1,h=4,d=b(c.GG,a._a[Ca],ja(va(),1,4).year),e=b(c.W,1),f=b(c.E,1)):(g=a._locale._week.dow,h=a._locale._week.doy,d=b(c.gg,a._a[Ca],ja(va(),g,h).year),e=b(c.w,1),null!=c.d?(f=c.d,g>f&&++e):f=null!=c.e?c.e+g:g),i=ka(d,e,f,h,g),a._a[Ca]=i.year,a._dayOfYear=i.dayOfYear}function V(a){var c,d,e,f,g=[];if(!a._d){for(e=X(a),a._w&&null==a._a[Ea]&&null==a._a[Da]&&U(a),a._dayOfYear&&(f=b(a._a[Ca],e[Ca]),a._dayOfYear>F(f)&&(a._pf._overflowDayOfYear=!0),d=fa(f,0,a._dayOfYear),a._a[Da]=d.getUTCMonth(),a._a[Ea]=d.getUTCDate()),c=0;3>c&&null==a._a[c];++c)a._a[c]=g[c]=e[c];for(;7>c;c++)a._a[c]=g[c]=null==a._a[c]?2===c?1:0:a._a[c];24===a._a[Fa]&&0===a._a[Ga]&&0===a._a[Ha]&&0===a._a[Ia]&&(a._nextDay=!0,a._a[Fa]=0),a._d=(a._useUTC?fa:ea).apply(null,g),null!=a._tzm&&a._d.setUTCMinutes(a._d.getUTCMinutes()-a._tzm),a._nextDay&&(a._a[Fa]=24)}}function W(a){var b;a._d||(b=A(a._i),a._a=[b.year,b.month,b.day||b.date,b.hour,b.minute,b.second,b.millisecond],V(a))}function X(a){var b=new Date;return a._useUTC?[b.getUTCFullYear(),b.getUTCMonth(),b.getUTCDate()]:[b.getFullYear(),b.getMonth(),b.getDate()]}function Y(b){if(b._f===va.ISO_8601)return void aa(b);b._a=[],b._pf.empty=!0;var c,d,e,f,g,h=""+b._i,i=h.length,j=0;for(e=Q(b._f,b._locale).match(Pa)||[],c=0;c<e.length;c++)f=e[c],d=(h.match(R(f,b))||[])[0],d&&(g=h.substr(0,h.indexOf(d)),g.length>0&&b._pf.unusedInput.push(g),h=h.slice(h.indexOf(d)+d.length),j+=d.length),rb[f]?(d?b._pf.empty=!1:b._pf.unusedTokens.push(f),T(f,d,b)):b._strict&&!d&&b._pf.unusedTokens.push(f);b._pf.charsLeftOver=i-j,h.length>0&&b._pf.unusedInput.push(h),b._pf.bigHour===!0&&b._a[Fa]<=12&&(b._pf.bigHour=a),b._a[Fa]=k(b._locale,b._a[Fa],b._meridiem),V(b),H(b)}function Z(a){return a.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(a,b,c,d,e){return b||c||d||e})}function $(a){return a.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function _(a){var b,c,e,f,g;if(0===a._f.length)return a._pf.invalidFormat=!0,void(a._d=new Date(NaN));for(f=0;f<a._f.length;f++)g=0,b=p({},a),null!=a._useUTC&&(b._useUTC=a._useUTC),b._pf=d(),b._f=a._f[f],Y(b),I(b)&&(g+=b._pf.charsLeftOver,g+=10*b._pf.unusedTokens.length,b._pf.score=g,(null==e||e>g)&&(e=g,c=b));o(a,c||b)}function aa(a){var b,c,d=a._i,e=fb.exec(d);if(e){for(a._pf.iso=!0,b=0,c=hb.length;c>b;b++)if(hb[b][1].exec(d)){a._f=hb[b][0]+(e[6]||" ");break}for(b=0,c=ib.length;c>b;b++)if(ib[b][1].exec(d)){a._f+=ib[b][0];break}d.match(Xa)&&(a._f+="Z"),Y(a)}else a._isValid=!1}function ba(a){aa(a),a._isValid===!1&&(delete a._isValid,va.createFromInputFallback(a))}function ca(a,b){var c,d=[];for(c=0;c<a.length;++c)d.push(b(a[c],c));return d}function da(b){var c,d=b._i;d===a?b._d=new Date:x(d)?b._d=new Date(+d):null!==(c=Ma.exec(d))?b._d=new Date(+c[1]):"string"==typeof d?ba(b):w(d)?(b._a=ca(d.slice(0),function(a){return parseInt(a,10)}),V(b)):"object"==typeof d?W(b):"number"==typeof d?b._d=new Date(d):va.createFromInputFallback(b)}function ea(a,b,c,d,e,f,g){var h=new Date(a,b,c,d,e,f,g);return 1970>a&&h.setFullYear(a),h}function fa(a){var b=new Date(Date.UTC.apply(null,arguments));return 1970>a&&b.setUTCFullYear(a),b}function ga(a,b){if("string"==typeof a)if(isNaN(a)){if(a=b.weekdaysParse(a),"number"!=typeof a)return null}else a=parseInt(a,10);return a}function ha(a,b,c,d,e){return e.relativeTime(b||1,!!c,a,d)}function ia(a,b,c){var d=va.duration(a).abs(),e=Aa(d.as("s")),f=Aa(d.as("m")),g=Aa(d.as("h")),h=Aa(d.as("d")),i=Aa(d.as("M")),j=Aa(d.as("y")),k=e<ob.s&&["s",e]||1===f&&["m"]||f<ob.m&&["mm",f]||1===g&&["h"]||g<ob.h&&["hh",g]||1===h&&["d"]||h<ob.d&&["dd",h]||1===i&&["M"]||i<ob.M&&["MM",i]||1===j&&["y"]||["yy",j];return k[2]=b,k[3]=+a>0,k[4]=c,ha.apply({},k)}function ja(a,b,c){var d,e=c-b,f=c-a.day();return f>e&&(f-=7),e-7>f&&(f+=7),d=va(a).add(f,"d"),{week:Math.ceil(d.dayOfYear()/7),year:d.year()}}function ka(a,b,c,d,e){var f,g,h=fa(a,0,1).getUTCDay();return h=0===h?7:h,c=null!=c?c:e,f=e-h+(h>d?7:0)-(e>h?7:0),g=7*(b-1)+(c-e)+f+1,{year:g>0?a:a-1,dayOfYear:g>0?g:F(a-1)+g}}function la(b){var c,d=b._i,e=b._f;return b._locale=b._locale||va.localeData(b._l),null===d||e===a&&""===d?va.invalid({nullInput:!0}):("string"==typeof d&&(b._i=d=b._locale.preparse(d)),va.isMoment(d)?new m(d,!0):(e?w(e)?_(b):Y(b):da(b),c=new m(b),c._nextDay&&(c.add(1,"d"),c._nextDay=a),c))}function ma(a,b){var c,d;if(1===b.length&&w(b[0])&&(b=b[0]),!b.length)return va();for(c=b[0],d=1;d<b.length;++d)b[d][a](c)&&(c=b[d]);return c}function na(a,b){var c;return"string"==typeof b&&(b=a.localeData().monthsParse(b),"number"!=typeof b)?a:(c=Math.min(a.date(),D(a.year(),b)),a._d["set"+(a._isUTC?"UTC":"")+"Month"](b,c),a)}function oa(a,b){return a._d["get"+(a._isUTC?"UTC":"")+b]()}function pa(a,b,c){return"Month"===b?na(a,c):a._d["set"+(a._isUTC?"UTC":"")+b](c)}function qa(a,b){return function(c){return null!=c?(pa(this,a,c),va.updateOffset(this,b),this):oa(this,a)}}function ra(a){return 400*a/146097}function sa(a){return 146097*a/400}function ta(a){va.duration.fn[a]=function(){return this._data[a]}}function ua(a){"undefined"==typeof ender&&(wa=za.moment,a?za.moment=f("Accessing Moment through the global scope is deprecated, and will be removed in an upcoming release.",va):za.moment=va)}for(var va,wa,xa,ya="2.9.0",za="undefined"==typeof global||"undefined"!=typeof window&&window!==global.window?this:global,Aa=Math.round,Ba=Object.prototype.hasOwnProperty,Ca=0,Da=1,Ea=2,Fa=3,Ga=4,Ha=5,Ia=6,Ja={},Ka=[],La="undefined"!=typeof module&&module&&module.exports,Ma=/^\/?Date\((\-?\d+)/i,Na=/(\-)?(?:(\d*)\.)?(\d+)\:(\d+)(?:\:(\d+)\.?(\d{3})?)?/,Oa=/^(-)?P(?:(?:([0-9,.]*)Y)?(?:([0-9,.]*)M)?(?:([0-9,.]*)D)?(?:T(?:([0-9,.]*)H)?(?:([0-9,.]*)M)?(?:([0-9,.]*)S)?)?|([0-9,.]*)W)$/,Pa=/(\[[^\[]*\])|(\\)?(Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Q|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|mm?|ss?|S{1,4}|x|X|zz?|ZZ?|.)/g,Qa=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,Ra=/\d\d?/,Sa=/\d{1,3}/,Ta=/\d{1,4}/,Ua=/[+\-]?\d{1,6}/,Va=/\d+/,Wa=/[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\/]+(\s*?[\u0600-\u06FF]+){1,2}/i,Xa=/Z|[\+\-]\d\d:?\d\d/gi,Ya=/T/i,Za=/[\+\-]?\d+/,$a=/[\+\-]?\d+(\.\d{1,3})?/,_a=/\d/,ab=/\d\d/,bb=/\d{3}/,cb=/\d{4}/,db=/[+-]?\d{6}/,eb=/[+-]?\d+/,fb=/^\s*(?:[+-]\d{6}|\d{4})-(?:(\d\d-\d\d)|(W\d\d$)|(W\d\d-\d)|(\d\d\d))((T| )(\d\d(:\d\d(:\d\d(\.\d+)?)?)?)?([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,gb="YYYY-MM-DDTHH:mm:ssZ",hb=[["YYYYYY-MM-DD",/[+-]\d{6}-\d{2}-\d{2}/],["YYYY-MM-DD",/\d{4}-\d{2}-\d{2}/],["GGGG-[W]WW-E",/\d{4}-W\d{2}-\d/],["GGGG-[W]WW",/\d{4}-W\d{2}/],["YYYY-DDD",/\d{4}-\d{3}/]],ib=[["HH:mm:ss.SSSS",/(T| )\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss",/(T| )\d\d:\d\d:\d\d/],["HH:mm",/(T| )\d\d:\d\d/],["HH",/(T| )\d\d/]],jb=/([\+\-]|\d\d)/gi,kb=("Date|Hours|Minutes|Seconds|Milliseconds".split("|"),{Milliseconds:1,Seconds:1e3,Minutes:6e4,Hours:36e5,Days:864e5,Months:2592e6,Years:31536e6}),lb={ms:"millisecond",s:"second",m:"minute",h:"hour",d:"day",D:"date",w:"week",W:"isoWeek",M:"month",Q:"quarter",y:"year",DDD:"dayOfYear",e:"weekday",E:"isoWeekday",gg:"weekYear",GG:"isoWeekYear"},mb={dayofyear:"dayOfYear",isoweekday:"isoWeekday",isoweek:"isoWeek",weekyear:"weekYear",isoweekyear:"isoWeekYear"},nb={},ob={s:45,m:45,h:22,d:26,M:11},pb="DDD w W M D d".split(" "),qb="M D H h m s w W".split(" "),rb={M:function(){return this.month()+1},MMM:function(a){return this.localeData().monthsShort(this,a)},MMMM:function(a){return this.localeData().months(this,a)},D:function(){return this.date()},DDD:function(){return this.dayOfYear()},d:function(){return this.day()},dd:function(a){return this.localeData().weekdaysMin(this,a)},ddd:function(a){return this.localeData().weekdaysShort(this,a)},dddd:function(a){return this.localeData().weekdays(this,a)},w:function(){return this.week()},W:function(){return this.isoWeek()},YY:function(){return r(this.year()%100,2)},YYYY:function(){return r(this.year(),4)},YYYYY:function(){return r(this.year(),5)},YYYYYY:function(){var a=this.year(),b=a>=0?"+":"-";return b+r(Math.abs(a),6)},gg:function(){return r(this.weekYear()%100,2)},gggg:function(){return r(this.weekYear(),4)},ggggg:function(){return r(this.weekYear(),5)},GG:function(){return r(this.isoWeekYear()%100,2)},GGGG:function(){return r(this.isoWeekYear(),4)},GGGGG:function(){return r(this.isoWeekYear(),5)},e:function(){return this.weekday()},E:function(){return this.isoWeekday()},a:function(){return this.localeData().meridiem(this.hours(),this.minutes(),!0)},A:function(){return this.localeData().meridiem(this.hours(),this.minutes(),!1)},H:function(){return this.hours()},h:function(){return this.hours()%12||12},m:function(){return this.minutes()},s:function(){return this.seconds()},S:function(){return C(this.milliseconds()/100)},SS:function(){return r(C(this.milliseconds()/10),2)},SSS:function(){return r(this.milliseconds(),3)},SSSS:function(){return r(this.milliseconds(),3)},Z:function(){var a=this.utcOffset(),b="+";return 0>a&&(a=-a,b="-"),b+r(C(a/60),2)+":"+r(C(a)%60,2)},ZZ:function(){var a=this.utcOffset(),b="+";return 0>a&&(a=-a,b="-"),b+r(C(a/60),2)+r(C(a)%60,2)},z:function(){return this.zoneAbbr()},zz:function(){return this.zoneName()},x:function(){return this.valueOf()},X:function(){return this.unix()},Q:function(){return this.quarter()}},sb={},tb=["months","monthsShort","weekdays","weekdaysShort","weekdaysMin"],ub=!1;pb.length;)xa=pb.pop(),rb[xa+"o"]=i(rb[xa],xa);for(;qb.length;)xa=qb.pop(),rb[xa+xa]=h(rb[xa],2);rb.DDDD=h(rb.DDD,3),o(l.prototype,{set:function(a){var b,c;for(c in a)b=a[c],"function"==typeof b?this[c]=b:this["_"+c]=b;this._ordinalParseLenient=new RegExp(this._ordinalParse.source+"|"+/\d{1,2}/.source)},_months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),months:function(a){return this._months[a.month()]},_monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),monthsShort:function(a){return this._monthsShort[a.month()]},monthsParse:function(a,b,c){var d,e,f;for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),d=0;12>d;d++){if(e=va.utc([2e3,d]),c&&!this._longMonthsParse[d]&&(this._longMonthsParse[d]=new RegExp("^"+this.months(e,"").replace(".","")+"$","i"),this._shortMonthsParse[d]=new RegExp("^"+this.monthsShort(e,"").replace(".","")+"$","i")),c||this._monthsParse[d]||(f="^"+this.months(e,"")+"|^"+this.monthsShort(e,""),this._monthsParse[d]=new RegExp(f.replace(".",""),"i")),c&&"MMMM"===b&&this._longMonthsParse[d].test(a))return d;if(c&&"MMM"===b&&this._shortMonthsParse[d].test(a))return d;if(!c&&this._monthsParse[d].test(a))return d}},_weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdays:function(a){return this._weekdays[a.day()]},_weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysShort:function(a){return this._weekdaysShort[a.day()]},_weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),weekdaysMin:function(a){return this._weekdaysMin[a.day()]},weekdaysParse:function(a){var b,c,d;for(this._weekdaysParse||(this._weekdaysParse=[]),b=0;7>b;b++)if(this._weekdaysParse[b]||(c=va([2e3,1]).day(b),d="^"+this.weekdays(c,"")+"|^"+this.weekdaysShort(c,"")+"|^"+this.weekdaysMin(c,""),this._weekdaysParse[b]=new RegExp(d.replace(".",""),"i")),this._weekdaysParse[b].test(a))return b},_longDateFormat:{LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY LT",LLLL:"dddd, MMMM D, YYYY LT"},longDateFormat:function(a){var b=this._longDateFormat[a];return!b&&this._longDateFormat[a.toUpperCase()]&&(b=this._longDateFormat[a.toUpperCase()].replace(/MMMM|MM|DD|dddd/g,function(a){return a.slice(1)}),this._longDateFormat[a]=b),b},isPM:function(a){return"p"===(a+"").toLowerCase().charAt(0)},_meridiemParse:/[ap]\.?m?\.?/i,meridiem:function(a,b,c){return a>11?c?"pm":"PM":c?"am":"AM"},_calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},calendar:function(a,b,c){var d=this._calendar[a];return"function"==typeof d?d.apply(b,[c]):d},_relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},relativeTime:function(a,b,c,d){var e=this._relativeTime[c];return"function"==typeof e?e(a,b,c,d):e.replace(/%d/i,a)},pastFuture:function(a,b){var c=this._relativeTime[a>0?"future":"past"];return"function"==typeof c?c(b):c.replace(/%s/i,b)},ordinal:function(a){return this._ordinal.replace("%d",a)},_ordinal:"%d",_ordinalParse:/\d{1,2}/,preparse:function(a){return a},postformat:function(a){return a},week:function(a){return ja(a,this._week.dow,this._week.doy).week},_week:{dow:0,doy:6},firstDayOfWeek:function(){return this._week.dow},firstDayOfYear:function(){return this._week.doy},_invalidDate:"Invalid date",invalidDate:function(){return this._invalidDate}}),va=function(b,c,e,f){var g;return"boolean"==typeof e&&(f=e,e=a),g={},g._isAMomentObject=!0,g._i=b,g._f=c,g._l=e,g._strict=f,g._isUTC=!1,g._pf=d(),la(g)},va.suppressDeprecationWarnings=!1,va.createFromInputFallback=f("moment construction falls back to js Date. This is discouraged and will be removed in upcoming major release. Please refer to https://github.com/moment/moment/issues/1407 for more info.",function(a){a._d=new Date(a._i+(a._useUTC?" UTC":""))}),va.min=function(){var a=[].slice.call(arguments,0);return ma("isBefore",a)},va.max=function(){var a=[].slice.call(arguments,0);return ma("isAfter",a)},va.utc=function(b,c,e,f){var g;return"boolean"==typeof e&&(f=e,e=a),g={},g._isAMomentObject=!0,g._useUTC=!0,g._isUTC=!0,g._l=e,g._i=b,g._f=c,g._strict=f,g._pf=d(),la(g).utc()},va.unix=function(a){return va(1e3*a)},va.duration=function(a,b){var d,e,f,g,h=a,i=null;return va.isDuration(a)?h={ms:a._milliseconds,d:a._days,M:a._months}:"number"==typeof a?(h={},b?h[b]=a:h.milliseconds=a):(i=Na.exec(a))?(d="-"===i[1]?-1:1,h={y:0,d:C(i[Ea])*d,h:C(i[Fa])*d,m:C(i[Ga])*d,s:C(i[Ha])*d,ms:C(i[Ia])*d}):(i=Oa.exec(a))?(d="-"===i[1]?-1:1,f=function(a){var b=a&&parseFloat(a.replace(",","."));return(isNaN(b)?0:b)*d},h={y:f(i[2]),M:f(i[3]),d:f(i[4]),h:f(i[5]),m:f(i[6]),s:f(i[7]),w:f(i[8])}):null==h?h={}:"object"==typeof h&&("from"in h||"to"in h)&&(g=t(va(h.from),va(h.to)),h={},h.ms=g.milliseconds,h.M=g.months),e=new n(h),va.isDuration(a)&&c(a,"_locale")&&(e._locale=a._locale),e},va.version=ya,va.defaultFormat=gb,va.ISO_8601=function(){},va.momentProperties=Ka,va.updateOffset=function(){},va.relativeTimeThreshold=function(b,c){return ob[b]===a?!1:c===a?ob[b]:(ob[b]=c,!0)},va.lang=f("moment.lang is deprecated. Use moment.locale instead.",function(a,b){return va.locale(a,b)}),va.locale=function(a,b){var c;return a&&(c="undefined"!=typeof b?va.defineLocale(a,b):va.localeData(a),c&&(va.duration._locale=va._locale=c)),va._locale._abbr},va.defineLocale=function(a,b){return null!==b?(b.abbr=a,Ja[a]||(Ja[a]=new l),Ja[a].set(b),va.locale(a),Ja[a]):(delete Ja[a],null)},va.langData=f("moment.langData is deprecated. Use moment.localeData instead.",function(a){return va.localeData(a)}),va.localeData=function(a){var b;if(a&&a._locale&&a._locale._abbr&&(a=a._locale._abbr),!a)return va._locale;if(!w(a)){if(b=L(a))return b;a=[a]}return K(a)},va.isMoment=function(a){return a instanceof m||null!=a&&c(a,"_isAMomentObject")},va.isDuration=function(a){return a instanceof n};for(xa=tb.length-1;xa>=0;--xa)B(tb[xa]);va.normalizeUnits=function(a){return z(a)},va.invalid=function(a){var b=va.utc(NaN);return null!=a?o(b._pf,a):b._pf.userInvalidated=!0,b},va.parseZone=function(){return va.apply(null,arguments).parseZone()},va.parseTwoDigitYear=function(a){return C(a)+(C(a)>68?1900:2e3)},va.isDate=x,o(va.fn=m.prototype,{clone:function(){return va(this)},valueOf:function(){return+this._d-6e4*(this._offset||0)},unix:function(){return Math.floor(+this/1e3)},toString:function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},toDate:function(){return this._offset?new Date(+this):this._d},toISOString:function(){var a=va(this).utc();return 0<a.year()&&a.year()<=9999?"function"==typeof Date.prototype.toISOString?this.toDate().toISOString():P(a,"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]"):P(a,"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]")},toArray:function(){var a=this;return[a.year(),a.month(),a.date(),a.hours(),a.minutes(),a.seconds(),a.milliseconds()]},isValid:function(){return I(this)},isDSTShifted:function(){return this._a?this.isValid()&&y(this._a,(this._isUTC?va.utc(this._a):va(this._a)).toArray())>0:!1},parsingFlags:function(){return o({},this._pf)},invalidAt:function(){return this._pf.overflow},utc:function(a){return this.utcOffset(0,a)},local:function(a){return this._isUTC&&(this.utcOffset(0,a),this._isUTC=!1,a&&this.subtract(this._dateUtcOffset(),"m")),this},format:function(a){var b=P(this,a||va.defaultFormat);return this.localeData().postformat(b)},add:u(1,"add"),subtract:u(-1,"subtract"),diff:function(a,b,c){var d,e,f=M(a,this),g=6e4*(f.utcOffset()-this.utcOffset());return b=z(b),"year"===b||"month"===b||"quarter"===b?(e=j(this,f),"quarter"===b?e/=3:"year"===b&&(e/=12)):(d=this-f,e="second"===b?d/1e3:"minute"===b?d/6e4:"hour"===b?d/36e5:"day"===b?(d-g)/864e5:"week"===b?(d-g)/6048e5:d),c?e:q(e)},from:function(a,b){return va.duration({to:this,from:a}).locale(this.locale()).humanize(!b)},fromNow:function(a){return this.from(va(),a)},calendar:function(a){var b=a||va(),c=M(b,this).startOf("day"),d=this.diff(c,"days",!0),e=-6>d?"sameElse":-1>d?"lastWeek":0>d?"lastDay":1>d?"sameDay":2>d?"nextDay":7>d?"nextWeek":"sameElse";return this.format(this.localeData().calendar(e,this,va(b)))},isLeapYear:function(){return G(this.year())},isDST:function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},day:function(a){var b=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=a?(a=ga(a,this.localeData()),this.add(a-b,"d")):b},month:qa("Month",!0),startOf:function(a){switch(a=z(a)){case"year":this.month(0);case"quarter":case"month":this.date(1);case"week":case"isoWeek":case"day":this.hours(0);case"hour":this.minutes(0);case"minute":this.seconds(0);case"second":this.milliseconds(0)}return"week"===a?this.weekday(0):"isoWeek"===a&&this.isoWeekday(1),"quarter"===a&&this.month(3*Math.floor(this.month()/3)),this},endOf:function(b){return b=z(b),b===a||"millisecond"===b?this:this.startOf(b).add(1,"isoWeek"===b?"week":b).subtract(1,"ms")},isAfter:function(a,b){var c;return b=z("undefined"!=typeof b?b:"millisecond"),"millisecond"===b?(a=va.isMoment(a)?a:va(a),+this>+a):(c=va.isMoment(a)?+a:+va(a),c<+this.clone().startOf(b))},isBefore:function(a,b){var c;return b=z("undefined"!=typeof b?b:"millisecond"),"millisecond"===b?(a=va.isMoment(a)?a:va(a),+a>+this):(c=va.isMoment(a)?+a:+va(a),+this.clone().endOf(b)<c)},isBetween:function(a,b,c){return this.isAfter(a,c)&&this.isBefore(b,c)},isSame:function(a,b){var c;return b=z(b||"millisecond"),"millisecond"===b?(a=va.isMoment(a)?a:va(a),+this===+a):(c=+va(a),+this.clone().startOf(b)<=c&&c<=+this.clone().endOf(b))},min:f("moment().min is deprecated, use moment.min instead. https://github.com/moment/moment/issues/1548",function(a){return a=va.apply(null,arguments),this>a?this:a}),max:f("moment().max is deprecated, use moment.max instead. https://github.com/moment/moment/issues/1548",function(a){return a=va.apply(null,arguments),a>this?this:a}),zone:f("moment().zone is deprecated, use moment().utcOffset instead. https://github.com/moment/moment/issues/1779",function(a,b){return null!=a?("string"!=typeof a&&(a=-a),this.utcOffset(a,b),this):-this.utcOffset()}),utcOffset:function(a,b){var c,d=this._offset||0;return null!=a?("string"==typeof a&&(a=S(a)),Math.abs(a)<16&&(a=60*a),!this._isUTC&&b&&(c=this._dateUtcOffset()),this._offset=a,this._isUTC=!0,null!=c&&this.add(c,"m"),d!==a&&(!b||this._changeInProgress?v(this,va.duration(a-d,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,va.updateOffset(this,!0),this._changeInProgress=null)),this):this._isUTC?d:this._dateUtcOffset()},isLocal:function(){return!this._isUTC},isUtcOffset:function(){return this._isUTC},isUtc:function(){return this._isUTC&&0===this._offset},zoneAbbr:function(){return this._isUTC?"UTC":""},zoneName:function(){return this._isUTC?"Coordinated Universal Time":""},parseZone:function(){return this._tzm?this.utcOffset(this._tzm):"string"==typeof this._i&&this.utcOffset(S(this._i)),this},hasAlignedHourOffset:function(a){return a=a?va(a).utcOffset():0,(this.utcOffset()-a)%60===0},daysInMonth:function(){return D(this.year(),this.month())},dayOfYear:function(a){var b=Aa((va(this).startOf("day")-va(this).startOf("year"))/864e5)+1;return null==a?b:this.add(a-b,"d")},quarter:function(a){return null==a?Math.ceil((this.month()+1)/3):this.month(3*(a-1)+this.month()%3)},weekYear:function(a){var b=ja(this,this.localeData()._week.dow,this.localeData()._week.doy).year;return null==a?b:this.add(a-b,"y")},isoWeekYear:function(a){var b=ja(this,1,4).year;return null==a?b:this.add(a-b,"y")},week:function(a){var b=this.localeData().week(this);return null==a?b:this.add(7*(a-b),"d")},isoWeek:function(a){var b=ja(this,1,4).week;return null==a?b:this.add(7*(a-b),"d")},weekday:function(a){var b=(this.day()+7-this.localeData()._week.dow)%7;return null==a?b:this.add(a-b,"d")},isoWeekday:function(a){return null==a?this.day()||7:this.day(this.day()%7?a:a-7)},isoWeeksInYear:function(){return E(this.year(),1,4)},weeksInYear:function(){var a=this.localeData()._week;return E(this.year(),a.dow,a.doy)},get:function(a){return a=z(a),this[a]()},set:function(a,b){var c;if("object"==typeof a)for(c in a)this.set(c,a[c]);else a=z(a),"function"==typeof this[a]&&this[a](b);return this},locale:function(b){var c;return b===a?this._locale._abbr:(c=va.localeData(b),null!=c&&(this._locale=c),this)},lang:f("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(b){return b===a?this.localeData():this.locale(b)}),localeData:function(){return this._locale},_dateUtcOffset:function(){return 15*-Math.round(this._d.getTimezoneOffset()/15)}}),va.fn.millisecond=va.fn.milliseconds=qa("Milliseconds",!1),va.fn.second=va.fn.seconds=qa("Seconds",!1),va.fn.minute=va.fn.minutes=qa("Minutes",!1),va.fn.hour=va.fn.hours=qa("Hours",!0),va.fn.date=qa("Date",!0),va.fn.dates=f("dates accessor is deprecated. Use date instead.",qa("Date",!0)),va.fn.year=qa("FullYear",!0),va.fn.years=f("years accessor is deprecated. Use year instead.",qa("FullYear",!0)),va.fn.days=va.fn.day,va.fn.months=va.fn.month,va.fn.weeks=va.fn.week,va.fn.isoWeeks=va.fn.isoWeek,va.fn.quarters=va.fn.quarter,va.fn.toJSON=va.fn.toISOString,va.fn.isUTC=va.fn.isUtc,o(va.duration.fn=n.prototype,{_bubble:function(){var a,b,c,d=this._milliseconds,e=this._days,f=this._months,g=this._data,h=0;g.milliseconds=d%1e3,a=q(d/1e3),g.seconds=a%60,b=q(a/60),g.minutes=b%60,c=q(b/60),g.hours=c%24,e+=q(c/24),h=q(ra(e)),e-=q(sa(h)),f+=q(e/30),e%=30,h+=q(f/12),f%=12,g.days=e,g.months=f,g.years=h},abs:function(){return this._milliseconds=Math.abs(this._milliseconds),this._days=Math.abs(this._days),this._months=Math.abs(this._months),this._data.milliseconds=Math.abs(this._data.milliseconds),this._data.seconds=Math.abs(this._data.seconds),this._data.minutes=Math.abs(this._data.minutes),this._data.hours=Math.abs(this._data.hours),this._data.months=Math.abs(this._data.months),this._data.years=Math.abs(this._data.years),this},weeks:function(){return q(this.days()/7)},valueOf:function(){return this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*C(this._months/12);
3
  },humanize:function(a){var b=ia(this,!a,this.localeData());return a&&(b=this.localeData().pastFuture(+this,b)),this.localeData().postformat(b)},add:function(a,b){var c=va.duration(a,b);return this._milliseconds+=c._milliseconds,this._days+=c._days,this._months+=c._months,this._bubble(),this},subtract:function(a,b){var c=va.duration(a,b);return this._milliseconds-=c._milliseconds,this._days-=c._days,this._months-=c._months,this._bubble(),this},get:function(a){return a=z(a),this[a.toLowerCase()+"s"]()},as:function(a){var b,c;if(a=z(a),"month"===a||"year"===a)return b=this._days+this._milliseconds/864e5,c=this._months+12*ra(b),"month"===a?c:c/12;switch(b=this._days+Math.round(sa(this._months/12)),a){case"week":return b/7+this._milliseconds/6048e5;case"day":return b+this._milliseconds/864e5;case"hour":return 24*b+this._milliseconds/36e5;case"minute":return 24*b*60+this._milliseconds/6e4;case"second":return 24*b*60*60+this._milliseconds/1e3;case"millisecond":return Math.floor(24*b*60*60*1e3)+this._milliseconds;default:throw new Error("Unknown unit "+a)}},lang:va.fn.lang,locale:va.fn.locale,toIsoString:f("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",function(){return this.toISOString()}),toISOString:function(){var a=Math.abs(this.years()),b=Math.abs(this.months()),c=Math.abs(this.days()),d=Math.abs(this.hours()),e=Math.abs(this.minutes()),f=Math.abs(this.seconds()+this.milliseconds()/1e3);return this.asSeconds()?(this.asSeconds()<0?"-":"")+"P"+(a?a+"Y":"")+(b?b+"M":"")+(c?c+"D":"")+(d||e||f?"T":"")+(d?d+"H":"")+(e?e+"M":"")+(f?f+"S":""):"P0D"},localeData:function(){return this._locale},toJSON:function(){return this.toISOString()}}),va.duration.fn.toString=va.duration.fn.toISOString;for(xa in kb)c(kb,xa)&&ta(xa.toLowerCase());va.duration.fn.asMilliseconds=function(){return this.as("ms")},va.duration.fn.asSeconds=function(){return this.as("s")},va.duration.fn.asMinutes=function(){return this.as("m")},va.duration.fn.asHours=function(){return this.as("h")},va.duration.fn.asDays=function(){return this.as("d")},va.duration.fn.asWeeks=function(){return this.as("weeks")},va.duration.fn.asMonths=function(){return this.as("M")},va.duration.fn.asYears=function(){return this.as("y")},va.locale("en",{ordinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(a){var b=a%10,c=1===C(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th";return a+c}}),La?module.exports=va:"function"==typeof define&&define.amd?(define(function(a,b,c){return c.config&&c.config()&&c.config().noGlobal===!0&&(za.moment=wa),va}),ua(!0)):ua()}).call(this);
js/time-picker.min.js CHANGED
@@ -1,2 +1,2 @@
1
- /*! event-organiser 3.9.1-0-g845144e 2020-05-28 21:35 */
2
  !function($){function Timepicker(){this._curInst=null,this._disabledInputs=[],this._timepickerShowing=!1,this._inDialog=!1,this._dialogClass="ui-timepicker-dialog",this._mainDivId="ui-timepicker-div",this._inlineClass="ui-timepicker-inline",this._currentClass="ui-timepicker-current",this._dayOverClass="ui-timepicker-days-cell-over",this.regional=[],this.regional[""]={hourText:"Hour",minuteText:"Minute",amPmText:["AM","PM"],closeButtonText:"Done",nowButtonText:"Now",deselectButtonText:"Deselect"},this._defaults={showOn:"focus",button:null,showAnim:"fadeIn",showOptions:{},appendText:"",beforeShow:null,onSelect:null,onClose:null,timeSeparator:":",periodSeparator:" ",showPeriod:!1,showPeriodLabels:!0,showLeadingZero:!0,showMinutesLeadingZero:!0,altField:"",defaultTime:"now",myPosition:"left top",atPosition:"left bottom",onHourShow:null,onMinuteShow:null,hours:{starts:0,ends:23},minutes:{starts:0,ends:55,interval:5},rows:4,showHours:!0,showMinutes:!0,optionalMinutes:!1,showCloseButton:!1,showNowButton:!1,showDeselectButton:!1},$.extend(this._defaults,this.regional[""]),this.tpDiv=$('<div id="'+this._mainDivId+'" class="ui-timepicker ui-widget ui-helper-clearfix ui-corner-all " style="display: none"></div>')}function extendRemove(a,b){$.extend(a,b);for(var c in b)(null==b[c]||void 0==b[c])&&(a[c]=b[c]);return a}$.extend($.ui,{timepicker:{version:"0.3.1"}});var PROP_NAME="timepicker",tpuuid=(new Date).getTime();$.extend(Timepicker.prototype,{markerClassName:"hasTimepicker",log:function(){},_widgetTimepicker:function(){return this.tpDiv},setDefaults:function(a){return extendRemove(this._defaults,a||{}),this},_attachTimepicker:function(target,settings){var inlineSettings=null;for(var attrName in this._defaults){var attrValue=target.getAttribute("time:"+attrName);if(attrValue){inlineSettings=inlineSettings||{};try{inlineSettings[attrName]=eval(attrValue)}catch(err){inlineSettings[attrName]=attrValue}}}var nodeName=target.nodeName.toLowerCase(),inline="div"==nodeName||"span"==nodeName;target.id||(this.uuid+=1,target.id="tp"+this.uuid);var inst=this._newInst($(target),inline);inst.settings=$.extend({},settings||{},inlineSettings||{}),"input"==nodeName?(this._connectTimepicker(target,inst),this._setTimeFromField(inst)):inline&&this._inlineTimepicker(target,inst)},_newInst:function(a,b){var c=a[0].id.replace(/([^A-Za-z0-9_-])/g,"\\\\$1");return{id:c,input:a,inline:b,tpDiv:b?$('<div class="'+this._inlineClass+' ui-timepicker ui-widget ui-helper-clearfix"></div>'):this.tpDiv}},_connectTimepicker:function(a,b){var c=$(a);b.append=$([]),b.trigger=$([]),c.hasClass(this.markerClassName)||(this._attachments(c,b),c.addClass(this.markerClassName).keydown(this._doKeyDown).keyup(this._doKeyUp).bind("setData.timepicker",function(a,c,d){b.settings[c]=d}).bind("getData.timepicker",function(a,c){return this._get(b,c)}),$.data(a,PROP_NAME,b))},_doKeyDown:function(a){var b=$.timepicker._getInst(a.target),c=!0;if(b._keyEvent=!0,$.timepicker._timepickerShowing)switch(a.keyCode){case 9:$.timepicker._hideTimepicker(),c=!1;break;case 13:return $.timepicker._updateSelectedValue(b),$.timepicker._hideTimepicker(),!1;case 27:$.timepicker._hideTimepicker();break;default:c=!1}else 36==a.keyCode&&a.ctrlKey?$.timepicker._showTimepicker(this):c=!1;c&&(a.preventDefault(),a.stopPropagation())},_doKeyUp:function(a){var b=$.timepicker._getInst(a.target);$.timepicker._setTimeFromField(b),$.timepicker._updateTimepicker(b)},_attachments:function(a,b){var c=this._get(b,"appendText"),d=this._get(b,"isRTL");b.append&&b.append.remove(),c&&(b.append=$('<span class="'+this._appendClass+'">'+c+"</span>"),a[d?"before":"after"](b.append)),a.unbind("focus.timepicker",this._showTimepicker),a.unbind("click.timepicker",this._adjustZIndex),b.trigger&&b.trigger.remove();var e=this._get(b,"showOn");if(("focus"==e||"both"==e)&&(a.bind("focus.timepicker",this._showTimepicker),a.bind("click.timepicker",this._adjustZIndex)),"button"==e||"both"==e){var f=this._get(b,"button");$(f).bind("click.timepicker",function(){return $.timepicker._timepickerShowing&&$.timepicker._lastInput==a[0]?$.timepicker._hideTimepicker():b.input.is(":disabled")||$.timepicker._showTimepicker(a[0]),!1})}},_inlineTimepicker:function(a,b){var c=$(a);c.hasClass(this.markerClassName)||(c.addClass(this.markerClassName).append(b.tpDiv).bind("setData.timepicker",function(a,c,d){b.settings[c]=d}).bind("getData.timepicker",function(a,c){return this._get(b,c)}),$.data(a,PROP_NAME,b),this._setTimeFromField(b),this._updateTimepicker(b),b.tpDiv.show())},_adjustZIndex:function(a){a=a.target||a;var b=$.timepicker._getInst(a);b.tpDiv.css("zIndex",$.timepicker._getZIndex(a)+1)},_showTimepicker:function(a){if(a=a.target||a,"input"!=a.nodeName.toLowerCase()&&(a=$("input",a.parentNode)[0]),!$.timepicker._isDisabledTimepicker(a)&&$.timepicker._lastInput!=a){$.timepicker._hideTimepicker();var b=$.timepicker._getInst(a);$.timepicker._curInst&&$.timepicker._curInst!=b&&$.timepicker._curInst.tpDiv.stop(!0,!0);var c=$.timepicker._get(b,"beforeShow");extendRemove(b.settings,c?c.apply(a,[a,b]):{}),b.lastVal=null,$.timepicker._lastInput=a,$.timepicker._setTimeFromField(b),$.timepicker._inDialog&&(a.value=""),$.timepicker._pos||($.timepicker._pos=$.timepicker._findPos(a),$.timepicker._pos[1]+=a.offsetHeight);var d=!1;$(a).parents().each(function(){return d|="fixed"==$(this).css("position"),!d}),d&&$.browser.opera&&($.timepicker._pos[0]-=document.documentElement.scrollLeft,$.timepicker._pos[1]-=document.documentElement.scrollTop);var e={left:$.timepicker._pos[0],top:$.timepicker._pos[1]};if($.timepicker._pos=null,b.tpDiv.css({position:"absolute",display:"block",top:"-1000px"}),$.timepicker._updateTimepicker(b),b.inline||"object"!=typeof $.ui.position||(b.tpDiv.position({of:b.input,my:$.timepicker._get(b,"myPosition"),at:$.timepicker._get(b,"atPosition"),collision:"flip"}),e=b.tpDiv.offset(),$.timepicker._pos=[e.top,e.left]),b._hoursClicked=!1,b._minutesClicked=!1,e=$.timepicker._checkOffset(b,e,d),b.tpDiv.css({position:$.timepicker._inDialog&&$.blockUI?"static":d?"fixed":"absolute",display:"none",left:e.left+"px",top:e.top+"px"}),!b.inline){var f=$.timepicker._get(b,"showAnim"),g=$.timepicker._get(b,"duration"),h=function(){$.timepicker._timepickerShowing=!0;var a=$.timepicker._getBorders(b.tpDiv);b.tpDiv.find("iframe.ui-timepicker-cover").css({left:-a[0],top:-a[1],width:b.tpDiv.outerWidth(),height:b.tpDiv.outerHeight()})};$.timepicker._adjustZIndex(a),$.effects&&$.effects[f]?b.tpDiv.show(f,$.timepicker._get(b,"showOptions"),g,h):b.tpDiv[f||"show"](f?g:null,h),f&&g||h(),b.input.is(":visible")&&!b.input.is(":disabled")&&b.input.focus(),$.timepicker._curInst=b}}},_getZIndex:function(a){for(var b,c,d=$(a);d.length&&d[0]!==document;){if(b=d.css("position"),("absolute"===b||"relative"===b||"fixed"===b)&&(c=parseInt(d.css("zIndex"),10),!isNaN(c)&&0!==c))return c;d=d.parent()}},_refreshTimepicker:function(a){var b=this._getInst(a);b&&this._updateTimepicker(b)},_updateTimepicker:function(a){a.tpDiv.empty().append(this._generateHTML(a)),this._rebindDialogEvents(a)},_rebindDialogEvents:function(a){var b=$.timepicker._getBorders(a.tpDiv),c=this;a.tpDiv.find("iframe.ui-timepicker-cover").css({left:-b[0],top:-b[1],width:a.tpDiv.outerWidth(),height:a.tpDiv.outerHeight()}).end().find(".ui-timepicker-minute-cell").unbind().bind("click",{fromDoubleClick:!1},$.proxy($.timepicker.selectMinutes,this)).bind("dblclick",{fromDoubleClick:!0},$.proxy($.timepicker.selectMinutes,this)).end().find(".ui-timepicker-hour-cell").unbind().bind("click",{fromDoubleClick:!1},$.proxy($.timepicker.selectHours,this)).bind("dblclick",{fromDoubleClick:!0},$.proxy($.timepicker.selectHours,this)).end().find(".ui-timepicker td a").unbind().bind("mouseout",function(){$(this).removeClass("ui-state-hover"),-1!=this.className.indexOf("ui-timepicker-prev")&&$(this).removeClass("ui-timepicker-prev-hover"),-1!=this.className.indexOf("ui-timepicker-next")&&$(this).removeClass("ui-timepicker-next-hover")}).bind("mouseover",function(){c._isDisabledTimepicker(a.inline?a.tpDiv.parent()[0]:a.input[0])||($(this).parents(".ui-timepicker-calendar").find("a").removeClass("ui-state-hover"),$(this).addClass("ui-state-hover"),-1!=this.className.indexOf("ui-timepicker-prev")&&$(this).addClass("ui-timepicker-prev-hover"),-1!=this.className.indexOf("ui-timepicker-next")&&$(this).addClass("ui-timepicker-next-hover"))}).end().find("."+this._dayOverClass+" a").trigger("mouseover").end().find(".ui-timepicker-now").bind("click",function(a){$.timepicker.selectNow(a)}).end().find(".ui-timepicker-deselect").bind("click",function(a){$.timepicker.deselectTime(a)}).end().find(".ui-timepicker-close").bind("click",function(a){$.timepicker._hideTimepicker()}).end()},_generateHTML:function(a){var b,c,d,e,f=1==this._get(a,"showPeriod"),g=1==this._get(a,"showPeriodLabels"),h=1==this._get(a,"showLeadingZero"),i=1==this._get(a,"showHours"),j=1==this._get(a,"showMinutes"),k=this._get(a,"amPmText"),l=this._get(a,"rows"),m=0,n=0,o=0,p=0,q=0,r=0,s=Array(),t=this._get(a,"hours"),u=null,v=0,w=this._get(a,"hourText"),x=this._get(a,"showCloseButton"),y=this._get(a,"closeButtonText"),z=this._get(a,"showNowButton"),A=this._get(a,"nowButtonText"),B=this._get(a,"showDeselectButton"),C=this._get(a,"deselectButtonText"),D=x||z||B;for(b=t.starts;b<=t.ends;b++)s.push(b);if(u=Math.ceil(s.length/l),g){for(v=0;v<s.length;v++)s[v]<12?o++:p++;v=0,m=Math.floor(o/s.length*l),n=Math.floor(p/s.length*l),l!=m+n&&(o&&(!p||!m||n&&o/m>=p/n)?m++:n++),q=Math.min(m,1),r=m+1,u=Math.ceil(Math.max(o/m,p/n))}if(e='<table class="ui-timepicker-table ui-widget-content ui-corner-all"><tr>',i){for(e+='<td class="ui-timepicker-hours"><div class="ui-timepicker-title ui-widget-header ui-helper-clearfix ui-corner-all">'+w+'</div><table class="ui-timepicker">',c=1;l>=c;c++){for(e+="<tr>",c==q&&g&&(e+='<th rowspan="'+m.toString()+'" class="periods" scope="row">'+k[0]+"</th>"),c==r&&g&&(e+='<th rowspan="'+n.toString()+'" class="periods" scope="row">'+k[1]+"</th>"),d=1;u>=d;d++)g&&r>c&&s[v]>=12?e+=this._generateHTMLHourCell(a,void 0,f,h):(e+=this._generateHTMLHourCell(a,s[v],f,h),v++);e+="</tr>"}e+="</tr></table></td>"}if(j&&(e+='<td class="ui-timepicker-minutes">',e+=this._generateHTMLMinutes(a),e+="</td>"),e+="</tr>",D){var E='<tr><td colspan="3"><div class="ui-timepicker-buttonpane ui-widget-content">';z&&(E+='<button type="button" class="ui-timepicker-now ui-state-default ui-corner-all" data-timepicker-instance-id="#'+a.id.replace(/\\\\/g,"\\")+'" >'+A+"</button>"),B&&(E+='<button type="button" class="ui-timepicker-deselect ui-state-default ui-corner-all" data-timepicker-instance-id="#'+a.id.replace(/\\\\/g,"\\")+'" >'+C+"</button>"),x&&(E+='<button type="button" class="ui-timepicker-close ui-state-default ui-corner-all" data-timepicker-instance-id="#'+a.id.replace(/\\\\/g,"\\")+'" >'+y+"</button>"),e+=E+"</div></td></tr>"}return e+="</table>",e+=$.browser.msie&&parseInt($.browser.version,10)<7&&!a.inline?'<iframe src="javascript:false;" class="ui-timepicker-cover" frameborder="0"></iframe>':""},_updateMinuteDisplay:function(a){var b=this._generateHTMLMinutes(a);a.tpDiv.find("td.ui-timepicker-minutes").html(b),this._rebindDialogEvents(a)},_generateHTMLMinutes:function(a){var b,c,d="",e=this._get(a,"rows"),f=Array(),g=this._get(a,"minutes"),h=null,i=0,j=1==this._get(a,"showMinutesLeadingZero"),k=this._get(a,"onMinuteShow"),l=this._get(a,"minuteText");for(g.starts||(g.starts=0),g.ends||(g.ends=59),b=g.starts;b<=g.ends;b+=g.interval)f.push(b);if(h=Math.round(f.length/e+.49),k&&0==k.apply(a.input?a.input[0]:null,[a.hours,a.minutes]))for(i=0;i<f.length;i+=1)if(b=f[i],k.apply(a.input?a.input[0]:null,[a.hours,b])){a.minutes=b;break}for(d+='<div class="ui-timepicker-title ui-widget-header ui-helper-clearfix ui-corner-all">'+l+'</div><table class="ui-timepicker">',i=0,c=1;e>=c;c++){for(d+="<tr>";c*h>i;){b=f[i];var m="";void 0!==b&&(m=10>b&&j?"0"+b.toString():b.toString()),d+=this._generateHTMLMinuteCell(a,b,m),i++}d+="</tr>"}return d+="</table>"},_generateHTMLHourCell:function(a,b,c,d){var e=b;b>12&&c&&(e=b-12),0==e&&c&&(e=12),10>e&&d&&(e="0"+e);var f="",g=!0,h=this._get(a,"onHourShow");return void 0==b?f='<td><span class="ui-state-default ui-state-disabled">&nbsp;</span></td>':(h&&(g=h.apply(a.input?a.input[0]:null,[b])),f=g?'<td class="ui-timepicker-hour-cell" data-timepicker-instance-id="#'+a.id.replace(/\\\\/g,"\\")+'" data-hour="'+b.toString()+'"><a class="ui-state-default '+(b==a.hours?"ui-state-active":"")+'">'+e.toString()+"</a></td>":'<td><span class="ui-state-default ui-state-disabled '+(b==a.hours?" ui-state-active ":" ")+'">'+e.toString()+"</span></td>")},_generateHTMLMinuteCell:function(a,b,c){var d="",e=!0,f=this._get(a,"onMinuteShow");return f&&(e=f.apply(a.input?a.input[0]:null,[a.hours,b])),d=void 0==b?'<td><span class="ui-state-default ui-state-disabled">&nbsp;</span></td>':e?'<td class="ui-timepicker-minute-cell" data-timepicker-instance-id="#'+a.id.replace(/\\\\/g,"\\")+'" data-minute="'+b.toString()+'" ><a class="ui-state-default '+(b==a.minutes?"ui-state-active":"")+'" >'+c+"</a></td>":'<td><span class="ui-state-default ui-state-disabled" >'+c+"</span></td>"},_destroyTimepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(b.hasClass(this.markerClassName)){var d=a.nodeName.toLowerCase();$.removeData(a,PROP_NAME),"input"==d?(c.append.remove(),c.trigger.remove(),b.removeClass(this.markerClassName).unbind("focus.timepicker",this._showTimepicker).unbind("click.timepicker",this._adjustZIndex)):("div"==d||"span"==d)&&b.removeClass(this.markerClassName).empty()}},_enableTimepicker:function(a){var b=$(a),c=b.attr("id"),d=$.data(a,PROP_NAME);if(b.hasClass(this.markerClassName)){var e=a.nodeName.toLowerCase();if("input"==e){a.disabled=!1;var f=this._get(d,"button");$(f).removeClass("ui-state-disabled").disabled=!1,d.trigger.filter("button").each(function(){this.disabled=!1}).end()}else if("div"==e||"span"==e){var g=b.children("."+this._inlineClass);g.children().removeClass("ui-state-disabled"),g.find("button").each(function(){this.disabled=!1})}this._disabledInputs=$.map(this._disabledInputs,function(a){return a==c?null:a})}},_disableTimepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(b.hasClass(this.markerClassName)){var d=a.nodeName.toLowerCase();if("input"==d){var e=this._get(c,"button");$(e).addClass("ui-state-disabled").disabled=!0,a.disabled=!0,c.trigger.filter("button").each(function(){this.disabled=!0}).end()}else if("div"==d||"span"==d){var f=b.children("."+this._inlineClass);f.children().addClass("ui-state-disabled"),f.find("button").each(function(){this.disabled=!0})}this._disabledInputs=$.map(this._disabledInputs,function(b){return b==a?null:b}),this._disabledInputs[this._disabledInputs.length]=b.attr("id")}},_isDisabledTimepicker:function(a){if(!a)return!1;for(var b=0;b<this._disabledInputs.length;b++)if(this._disabledInputs[b]==a)return!0;return!1},_checkOffset:function(a,b,c){var d=a.tpDiv.outerWidth(),e=a.tpDiv.outerHeight(),f=a.input?a.input.outerWidth():0,g=a.input?a.input.outerHeight():0,h=document.documentElement.clientWidth+$(document).scrollLeft(),i=document.documentElement.clientHeight+$(document).scrollTop();return b.left-=this._get(a,"isRTL")?d-f:0,b.left-=c&&b.left==a.input.offset().left?$(document).scrollLeft():0,b.top-=c&&b.top==a.input.offset().top+g?$(document).scrollTop():0,b.left-=Math.min(b.left,b.left+d>h&&h>d?Math.abs(b.left+d-h):0),b.top-=Math.min(b.top,b.top+e>i&&i>e?Math.abs(e+g):0),b},_findPos:function(a){for(var b=this._getInst(a),c=this._get(b,"isRTL");a&&("hidden"==a.type||1!=a.nodeType);)a=a[c?"previousSibling":"nextSibling"];var d=$(a).offset();return[d.left,d.top]},_getBorders:function(a){var b=function(a){return{thin:1,medium:2,thick:3}[a]||a};return[parseFloat(b(a.css("border-left-width"))),parseFloat(b(a.css("border-top-width")))]},_checkExternalClick:function(a){if($.timepicker._curInst){var b=$(a.target);b[0].id==$.timepicker._mainDivId||0!=b.parents("#"+$.timepicker._mainDivId).length||b.hasClass($.timepicker.markerClassName)||b.hasClass($.timepicker._triggerClass)||!$.timepicker._timepickerShowing||$.timepicker._inDialog&&$.blockUI||$.timepicker._hideTimepicker()}},_hideTimepicker:function(a){var b=this._curInst;if(b&&(!a||b==$.data(a,PROP_NAME))&&this._timepickerShowing){var c=this._get(b,"showAnim"),d=this._get(b,"duration"),e=function(){$.timepicker._tidyDialog(b),this._curInst=null};$.effects&&$.effects[c]?b.tpDiv.hide(c,$.timepicker._get(b,"showOptions"),d,e):b.tpDiv["slideDown"==c?"slideUp":"fadeIn"==c?"fadeOut":"hide"](c?d:null,e),c||e(),this._timepickerShowing=!1,this._lastInput=null,this._inDialog&&(this._dialogInput.css({position:"absolute",left:"0",top:"-100px"}),$.blockUI&&($.unblockUI(),$("body").append(this.tpDiv))),this._inDialog=!1;var f=this._get(b,"onClose");f&&f.apply(b.input?b.input[0]:null,[b.input?b.input.val():"",b])}},_tidyDialog:function(a){a.tpDiv.removeClass(this._dialogClass).unbind(".ui-timepicker")},_getInst:function(a){try{return $.data(a,PROP_NAME)}catch(b){throw"Missing instance data for this timepicker"}},_get:function(a,b){return void 0!==a.settings[b]?a.settings[b]:this._defaults[b]},_setTimeFromField:function(a){if(a.input.val()!=a.lastVal){var b=this._get(a,"defaultTime"),c="now"==b?this._getCurrentTimeRounded(a):b;if(0==a.inline&&""!=a.input.val()&&(c=a.input.val()),c instanceof Date)a.hours=c.getHours(),a.minutes=c.getMinutes();else{var d=a.lastVal=c;if(""==c)a.hours=-1,a.minutes=-1;else{var e=this.parseTime(a,d);a.hours=e.hours,a.minutes=e.minutes}}$.timepicker._updateTimepicker(a)}},_optionTimepicker:function(a,b,c){var d=this._getInst(a);if(2==arguments.length&&"string"==typeof b)return"defaults"==b?$.extend({},$.timepicker._defaults):d?"all"==b?$.extend({},d.settings):this._get(d,b):null;var e=b||{};"string"==typeof b&&(e={},e[b]=c),d&&(this._curInst==d&&this._hideTimepicker(),extendRemove(d.settings,e),this._updateTimepicker(d))},_setTimeTimepicker:function(a,b){var c=this._getInst(a);c&&(this._setTime(c,b),this._updateTimepicker(c),this._updateAlternate(c,b))},_setTime:function(a,b,c){var d=a.hours,e=a.minutes;b=this.parseTime(a,b),a.hours=b.hours,a.minutes=b.minutes,d==a.hours&&e==a.minuts||c||a.input.trigger("change"),this._updateTimepicker(a),this._updateSelectedValue(a)},_getCurrentTimeRounded:function(a){var b=new Date,c=b.getMinutes(),d=5*Math.round(c/5);return b.setMinutes(d),b},parseTime:function(a,b){var c=new Object;c.hours=-1,c.minutes=-1;var d=this._get(a,"timeSeparator"),e=this._get(a,"amPmText"),f=this._get(a,"showHours"),g=this._get(a,"showMinutes"),h=this._get(a,"optionalMinutes"),i=1==this._get(a,"showPeriod"),j=b.indexOf(d);if(-1!=j?(c.hours=parseInt(b.substr(0,j),10),c.minutes=parseInt(b.substr(j+1),10)):!f||g&&!h?!f&&g&&(c.minutes=parseInt(b,10)):c.hours=parseInt(b,10),f){var k=b.toUpperCase();c.hours<12&&i&&-1!=k.indexOf(e[1].toUpperCase())&&(c.hours+=12),12==c.hours&&i&&-1!=k.indexOf(e[0].toUpperCase())&&(c.hours=0)}return c},selectNow:function(a){var b=$(a.target).attr("data-timepicker-instance-id"),c=$(b),d=this._getInst(c[0]),e=new Date;d.hours=e.getHours(),d.minutes=e.getMinutes(),this._updateSelectedValue(d),this._updateTimepicker(d),this._hideTimepicker()},deselectTime:function(a){var b=$(a.target).attr("data-timepicker-instance-id"),c=$(b),d=this._getInst(c[0]);d.hours=-1,d.minutes=-1,this._updateSelectedValue(d),this._hideTimepicker()},selectHours:function(a){var b=$(a.currentTarget),c=b.attr("data-timepicker-instance-id"),d=parseInt(b.attr("data-hour")),e=a.data.fromDoubleClick,f=$(c),g=this._getInst(f[0]),h=1==this._get(g,"showMinutes");if($.timepicker._isDisabledTimepicker(f.attr("id")))return!1;b.parents(".ui-timepicker-hours:first").find("a").removeClass("ui-state-active"),b.children("a").addClass("ui-state-active"),g.hours=d;var i=this._get(g,"onMinuteShow");return i&&this._updateMinuteDisplay(g),this._updateSelectedValue(g),g._hoursClicked=!0,(g._minutesClicked||e||0==h)&&$.timepicker._hideTimepicker(),!1},selectMinutes:function(a){var b=$(a.currentTarget),c=b.attr("data-timepicker-instance-id"),d=parseInt(b.attr("data-minute")),e=a.data.fromDoubleClick,f=$(c),g=this._getInst(f[0]),h=1==this._get(g,"showHours");return $.timepicker._isDisabledTimepicker(f.attr("id"))?!1:(b.parents(".ui-timepicker-minutes:first").find("a").removeClass("ui-state-active"),b.children("a").addClass("ui-state-active"),g.minutes=d,this._updateSelectedValue(g),g._minutesClicked=!0,g._hoursClicked||e||0==h?($.timepicker._hideTimepicker(),!1):!1)},_updateSelectedValue:function(a){var b=this._getParsedTime(a);a.input&&(a.input.val(b),a.input.trigger("change"));var c=this._get(a,"onSelect");return c&&c.apply(a.input?a.input[0]:null,[b,a]),this._updateAlternate(a,b),b},_getParsedTime:function(a){if(-1==a.hours&&-1==a.minutes)return"";(a.hours<a.hours.starts||a.hours>a.hours.ends)&&(a.hours=0),(a.minutes<a.minutes.starts||a.minutes>a.minutes.ends)&&(a.minutes=0);var b="",c=1==this._get(a,"showPeriod"),d=1==this._get(a,"showLeadingZero"),e=1==this._get(a,"showHours"),f=1==this._get(a,"showMinutes"),g=1==this._get(a,"optionalMinutes"),h=this._get(a,"amPmText"),i=a.hours?a.hours:0,j=a.minutes?a.minutes:0,k=i?i:0,l="";c&&(0==a.hours&&(k=12),a.hours<12?b=h[0]:(b=h[1],k>12&&(k-=12)));var m=k.toString();d&&10>k&&(m="0"+m);var n=j.toString();return 10>j&&(n="0"+n),e&&(l+=m),!e||!f||g&&0==n||(l+=this._get(a,"timeSeparator")),!f||g&&0==n||(l+=n),e&&b.length>0&&(l+=this._get(a,"periodSeparator")+b),l},_updateAlternate:function(a,b){var c=this._get(a,"altField");c&&$(c).each(function(a,c){$(c).val(b)})},_getTimeTimepicker:function(a){var b=this._getInst(a);return this._getParsedTime(b)},_getHourTimepicker:function(a){var b=this._getInst(a);return void 0==b?-1:b.hours},_getMinuteTimepicker:function(a){var b=this._getInst(a);return void 0==b?-1:b.minutes}}),$.fn.timepicker=function(a){$.timepicker.initialized||($(document).mousedown($.timepicker._checkExternalClick).find("body").append($.timepicker.tpDiv),$.timepicker.initialized=!0);var b=Array.prototype.slice.call(arguments,1);return"string"!=typeof a||"getTime"!=a&&"getHour"!=a&&"getMinute"!=a?"option"==a&&2==arguments.length&&"string"==typeof arguments[1]?$.timepicker["_"+a+"Timepicker"].apply($.timepicker,[this[0]].concat(b)):this.each(function(){"string"==typeof a?$.timepicker["_"+a+"Timepicker"].apply($.timepicker,[this].concat(b)):$.timepicker._attachTimepicker(this,a)}):$.timepicker["_"+a+"Timepicker"].apply($.timepicker,[this[0]].concat(b))},$.timepicker=new Timepicker,$.timepicker.initialized=!1,$.timepicker.uuid=(new Date).getTime(),$.timepicker.version="0.3.1",window["TP_jQuery_"+tpuuid]=$}(jQuery);
1
+ /*! event-organiser 3.10.0-0-g5f45c47 2020-07-22 07:59 */
2
  !function($){function Timepicker(){this._curInst=null,this._disabledInputs=[],this._timepickerShowing=!1,this._inDialog=!1,this._dialogClass="ui-timepicker-dialog",this._mainDivId="ui-timepicker-div",this._inlineClass="ui-timepicker-inline",this._currentClass="ui-timepicker-current",this._dayOverClass="ui-timepicker-days-cell-over",this.regional=[],this.regional[""]={hourText:"Hour",minuteText:"Minute",amPmText:["AM","PM"],closeButtonText:"Done",nowButtonText:"Now",deselectButtonText:"Deselect"},this._defaults={showOn:"focus",button:null,showAnim:"fadeIn",showOptions:{},appendText:"",beforeShow:null,onSelect:null,onClose:null,timeSeparator:":",periodSeparator:" ",showPeriod:!1,showPeriodLabels:!0,showLeadingZero:!0,showMinutesLeadingZero:!0,altField:"",defaultTime:"now",myPosition:"left top",atPosition:"left bottom",onHourShow:null,onMinuteShow:null,hours:{starts:0,ends:23},minutes:{starts:0,ends:55,interval:5},rows:4,showHours:!0,showMinutes:!0,optionalMinutes:!1,showCloseButton:!1,showNowButton:!1,showDeselectButton:!1},$.extend(this._defaults,this.regional[""]),this.tpDiv=$('<div id="'+this._mainDivId+'" class="ui-timepicker ui-widget ui-helper-clearfix ui-corner-all " style="display: none"></div>')}function extendRemove(a,b){$.extend(a,b);for(var c in b)(null==b[c]||void 0==b[c])&&(a[c]=b[c]);return a}$.extend($.ui,{timepicker:{version:"0.3.1"}});var PROP_NAME="timepicker",tpuuid=(new Date).getTime();$.extend(Timepicker.prototype,{markerClassName:"hasTimepicker",log:function(){},_widgetTimepicker:function(){return this.tpDiv},setDefaults:function(a){return extendRemove(this._defaults,a||{}),this},_attachTimepicker:function(target,settings){var inlineSettings=null;for(var attrName in this._defaults){var attrValue=target.getAttribute("time:"+attrName);if(attrValue){inlineSettings=inlineSettings||{};try{inlineSettings[attrName]=eval(attrValue)}catch(err){inlineSettings[attrName]=attrValue}}}var nodeName=target.nodeName.toLowerCase(),inline="div"==nodeName||"span"==nodeName;target.id||(this.uuid+=1,target.id="tp"+this.uuid);var inst=this._newInst($(target),inline);inst.settings=$.extend({},settings||{},inlineSettings||{}),"input"==nodeName?(this._connectTimepicker(target,inst),this._setTimeFromField(inst)):inline&&this._inlineTimepicker(target,inst)},_newInst:function(a,b){var c=a[0].id.replace(/([^A-Za-z0-9_-])/g,"\\\\$1");return{id:c,input:a,inline:b,tpDiv:b?$('<div class="'+this._inlineClass+' ui-timepicker ui-widget ui-helper-clearfix"></div>'):this.tpDiv}},_connectTimepicker:function(a,b){var c=$(a);b.append=$([]),b.trigger=$([]),c.hasClass(this.markerClassName)||(this._attachments(c,b),c.addClass(this.markerClassName).keydown(this._doKeyDown).keyup(this._doKeyUp).bind("setData.timepicker",function(a,c,d){b.settings[c]=d}).bind("getData.timepicker",function(a,c){return this._get(b,c)}),$.data(a,PROP_NAME,b))},_doKeyDown:function(a){var b=$.timepicker._getInst(a.target),c=!0;if(b._keyEvent=!0,$.timepicker._timepickerShowing)switch(a.keyCode){case 9:$.timepicker._hideTimepicker(),c=!1;break;case 13:return $.timepicker._updateSelectedValue(b),$.timepicker._hideTimepicker(),!1;case 27:$.timepicker._hideTimepicker();break;default:c=!1}else 36==a.keyCode&&a.ctrlKey?$.timepicker._showTimepicker(this):c=!1;c&&(a.preventDefault(),a.stopPropagation())},_doKeyUp:function(a){var b=$.timepicker._getInst(a.target);$.timepicker._setTimeFromField(b),$.timepicker._updateTimepicker(b)},_attachments:function(a,b){var c=this._get(b,"appendText"),d=this._get(b,"isRTL");b.append&&b.append.remove(),c&&(b.append=$('<span class="'+this._appendClass+'">'+c+"</span>"),a[d?"before":"after"](b.append)),a.unbind("focus.timepicker",this._showTimepicker),a.unbind("click.timepicker",this._adjustZIndex),b.trigger&&b.trigger.remove();var e=this._get(b,"showOn");if(("focus"==e||"both"==e)&&(a.bind("focus.timepicker",this._showTimepicker),a.bind("click.timepicker",this._adjustZIndex)),"button"==e||"both"==e){var f=this._get(b,"button");$(f).bind("click.timepicker",function(){return $.timepicker._timepickerShowing&&$.timepicker._lastInput==a[0]?$.timepicker._hideTimepicker():b.input.is(":disabled")||$.timepicker._showTimepicker(a[0]),!1})}},_inlineTimepicker:function(a,b){var c=$(a);c.hasClass(this.markerClassName)||(c.addClass(this.markerClassName).append(b.tpDiv).bind("setData.timepicker",function(a,c,d){b.settings[c]=d}).bind("getData.timepicker",function(a,c){return this._get(b,c)}),$.data(a,PROP_NAME,b),this._setTimeFromField(b),this._updateTimepicker(b),b.tpDiv.show())},_adjustZIndex:function(a){a=a.target||a;var b=$.timepicker._getInst(a);b.tpDiv.css("zIndex",$.timepicker._getZIndex(a)+1)},_showTimepicker:function(a){if(a=a.target||a,"input"!=a.nodeName.toLowerCase()&&(a=$("input",a.parentNode)[0]),!$.timepicker._isDisabledTimepicker(a)&&$.timepicker._lastInput!=a){$.timepicker._hideTimepicker();var b=$.timepicker._getInst(a);$.timepicker._curInst&&$.timepicker._curInst!=b&&$.timepicker._curInst.tpDiv.stop(!0,!0);var c=$.timepicker._get(b,"beforeShow");extendRemove(b.settings,c?c.apply(a,[a,b]):{}),b.lastVal=null,$.timepicker._lastInput=a,$.timepicker._setTimeFromField(b),$.timepicker._inDialog&&(a.value=""),$.timepicker._pos||($.timepicker._pos=$.timepicker._findPos(a),$.timepicker._pos[1]+=a.offsetHeight);var d=!1;$(a).parents().each(function(){return d|="fixed"==$(this).css("position"),!d}),d&&$.browser.opera&&($.timepicker._pos[0]-=document.documentElement.scrollLeft,$.timepicker._pos[1]-=document.documentElement.scrollTop);var e={left:$.timepicker._pos[0],top:$.timepicker._pos[1]};if($.timepicker._pos=null,b.tpDiv.css({position:"absolute",display:"block",top:"-1000px"}),$.timepicker._updateTimepicker(b),b.inline||"object"!=typeof $.ui.position||(b.tpDiv.position({of:b.input,my:$.timepicker._get(b,"myPosition"),at:$.timepicker._get(b,"atPosition"),collision:"flip"}),e=b.tpDiv.offset(),$.timepicker._pos=[e.top,e.left]),b._hoursClicked=!1,b._minutesClicked=!1,e=$.timepicker._checkOffset(b,e,d),b.tpDiv.css({position:$.timepicker._inDialog&&$.blockUI?"static":d?"fixed":"absolute",display:"none",left:e.left+"px",top:e.top+"px"}),!b.inline){var f=$.timepicker._get(b,"showAnim"),g=$.timepicker._get(b,"duration"),h=function(){$.timepicker._timepickerShowing=!0;var a=$.timepicker._getBorders(b.tpDiv);b.tpDiv.find("iframe.ui-timepicker-cover").css({left:-a[0],top:-a[1],width:b.tpDiv.outerWidth(),height:b.tpDiv.outerHeight()})};$.timepicker._adjustZIndex(a),$.effects&&$.effects[f]?b.tpDiv.show(f,$.timepicker._get(b,"showOptions"),g,h):b.tpDiv[f||"show"](f?g:null,h),f&&g||h(),b.input.is(":visible")&&!b.input.is(":disabled")&&b.input.focus(),$.timepicker._curInst=b}}},_getZIndex:function(a){for(var b,c,d=$(a);d.length&&d[0]!==document;){if(b=d.css("position"),("absolute"===b||"relative"===b||"fixed"===b)&&(c=parseInt(d.css("zIndex"),10),!isNaN(c)&&0!==c))return c;d=d.parent()}},_refreshTimepicker:function(a){var b=this._getInst(a);b&&this._updateTimepicker(b)},_updateTimepicker:function(a){a.tpDiv.empty().append(this._generateHTML(a)),this._rebindDialogEvents(a)},_rebindDialogEvents:function(a){var b=$.timepicker._getBorders(a.tpDiv),c=this;a.tpDiv.find("iframe.ui-timepicker-cover").css({left:-b[0],top:-b[1],width:a.tpDiv.outerWidth(),height:a.tpDiv.outerHeight()}).end().find(".ui-timepicker-minute-cell").unbind().bind("click",{fromDoubleClick:!1},$.proxy($.timepicker.selectMinutes,this)).bind("dblclick",{fromDoubleClick:!0},$.proxy($.timepicker.selectMinutes,this)).end().find(".ui-timepicker-hour-cell").unbind().bind("click",{fromDoubleClick:!1},$.proxy($.timepicker.selectHours,this)).bind("dblclick",{fromDoubleClick:!0},$.proxy($.timepicker.selectHours,this)).end().find(".ui-timepicker td a").unbind().bind("mouseout",function(){$(this).removeClass("ui-state-hover"),-1!=this.className.indexOf("ui-timepicker-prev")&&$(this).removeClass("ui-timepicker-prev-hover"),-1!=this.className.indexOf("ui-timepicker-next")&&$(this).removeClass("ui-timepicker-next-hover")}).bind("mouseover",function(){c._isDisabledTimepicker(a.inline?a.tpDiv.parent()[0]:a.input[0])||($(this).parents(".ui-timepicker-calendar").find("a").removeClass("ui-state-hover"),$(this).addClass("ui-state-hover"),-1!=this.className.indexOf("ui-timepicker-prev")&&$(this).addClass("ui-timepicker-prev-hover"),-1!=this.className.indexOf("ui-timepicker-next")&&$(this).addClass("ui-timepicker-next-hover"))}).end().find("."+this._dayOverClass+" a").trigger("mouseover").end().find(".ui-timepicker-now").bind("click",function(a){$.timepicker.selectNow(a)}).end().find(".ui-timepicker-deselect").bind("click",function(a){$.timepicker.deselectTime(a)}).end().find(".ui-timepicker-close").bind("click",function(a){$.timepicker._hideTimepicker()}).end()},_generateHTML:function(a){var b,c,d,e,f=1==this._get(a,"showPeriod"),g=1==this._get(a,"showPeriodLabels"),h=1==this._get(a,"showLeadingZero"),i=1==this._get(a,"showHours"),j=1==this._get(a,"showMinutes"),k=this._get(a,"amPmText"),l=this._get(a,"rows"),m=0,n=0,o=0,p=0,q=0,r=0,s=Array(),t=this._get(a,"hours"),u=null,v=0,w=this._get(a,"hourText"),x=this._get(a,"showCloseButton"),y=this._get(a,"closeButtonText"),z=this._get(a,"showNowButton"),A=this._get(a,"nowButtonText"),B=this._get(a,"showDeselectButton"),C=this._get(a,"deselectButtonText"),D=x||z||B;for(b=t.starts;b<=t.ends;b++)s.push(b);if(u=Math.ceil(s.length/l),g){for(v=0;v<s.length;v++)s[v]<12?o++:p++;v=0,m=Math.floor(o/s.length*l),n=Math.floor(p/s.length*l),l!=m+n&&(o&&(!p||!m||n&&o/m>=p/n)?m++:n++),q=Math.min(m,1),r=m+1,u=Math.ceil(Math.max(o/m,p/n))}if(e='<table class="ui-timepicker-table ui-widget-content ui-corner-all"><tr>',i){for(e+='<td class="ui-timepicker-hours"><div class="ui-timepicker-title ui-widget-header ui-helper-clearfix ui-corner-all">'+w+'</div><table class="ui-timepicker">',c=1;l>=c;c++){for(e+="<tr>",c==q&&g&&(e+='<th rowspan="'+m.toString()+'" class="periods" scope="row">'+k[0]+"</th>"),c==r&&g&&(e+='<th rowspan="'+n.toString()+'" class="periods" scope="row">'+k[1]+"</th>"),d=1;u>=d;d++)g&&r>c&&s[v]>=12?e+=this._generateHTMLHourCell(a,void 0,f,h):(e+=this._generateHTMLHourCell(a,s[v],f,h),v++);e+="</tr>"}e+="</tr></table></td>"}if(j&&(e+='<td class="ui-timepicker-minutes">',e+=this._generateHTMLMinutes(a),e+="</td>"),e+="</tr>",D){var E='<tr><td colspan="3"><div class="ui-timepicker-buttonpane ui-widget-content">';z&&(E+='<button type="button" class="ui-timepicker-now ui-state-default ui-corner-all" data-timepicker-instance-id="#'+a.id.replace(/\\\\/g,"\\")+'" >'+A+"</button>"),B&&(E+='<button type="button" class="ui-timepicker-deselect ui-state-default ui-corner-all" data-timepicker-instance-id="#'+a.id.replace(/\\\\/g,"\\")+'" >'+C+"</button>"),x&&(E+='<button type="button" class="ui-timepicker-close ui-state-default ui-corner-all" data-timepicker-instance-id="#'+a.id.replace(/\\\\/g,"\\")+'" >'+y+"</button>"),e+=E+"</div></td></tr>"}return e+="</table>",e+=$.browser.msie&&parseInt($.browser.version,10)<7&&!a.inline?'<iframe src="javascript:false;" class="ui-timepicker-cover" frameborder="0"></iframe>':""},_updateMinuteDisplay:function(a){var b=this._generateHTMLMinutes(a);a.tpDiv.find("td.ui-timepicker-minutes").html(b),this._rebindDialogEvents(a)},_generateHTMLMinutes:function(a){var b,c,d="",e=this._get(a,"rows"),f=Array(),g=this._get(a,"minutes"),h=null,i=0,j=1==this._get(a,"showMinutesLeadingZero"),k=this._get(a,"onMinuteShow"),l=this._get(a,"minuteText");for(g.starts||(g.starts=0),g.ends||(g.ends=59),b=g.starts;b<=g.ends;b+=g.interval)f.push(b);if(h=Math.round(f.length/e+.49),k&&0==k.apply(a.input?a.input[0]:null,[a.hours,a.minutes]))for(i=0;i<f.length;i+=1)if(b=f[i],k.apply(a.input?a.input[0]:null,[a.hours,b])){a.minutes=b;break}for(d+='<div class="ui-timepicker-title ui-widget-header ui-helper-clearfix ui-corner-all">'+l+'</div><table class="ui-timepicker">',i=0,c=1;e>=c;c++){for(d+="<tr>";c*h>i;){b=f[i];var m="";void 0!==b&&(m=10>b&&j?"0"+b.toString():b.toString()),d+=this._generateHTMLMinuteCell(a,b,m),i++}d+="</tr>"}return d+="</table>"},_generateHTMLHourCell:function(a,b,c,d){var e=b;b>12&&c&&(e=b-12),0==e&&c&&(e=12),10>e&&d&&(e="0"+e);var f="",g=!0,h=this._get(a,"onHourShow");return void 0==b?f='<td><span class="ui-state-default ui-state-disabled">&nbsp;</span></td>':(h&&(g=h.apply(a.input?a.input[0]:null,[b])),f=g?'<td class="ui-timepicker-hour-cell" data-timepicker-instance-id="#'+a.id.replace(/\\\\/g,"\\")+'" data-hour="'+b.toString()+'"><a class="ui-state-default '+(b==a.hours?"ui-state-active":"")+'">'+e.toString()+"</a></td>":'<td><span class="ui-state-default ui-state-disabled '+(b==a.hours?" ui-state-active ":" ")+'">'+e.toString()+"</span></td>")},_generateHTMLMinuteCell:function(a,b,c){var d="",e=!0,f=this._get(a,"onMinuteShow");return f&&(e=f.apply(a.input?a.input[0]:null,[a.hours,b])),d=void 0==b?'<td><span class="ui-state-default ui-state-disabled">&nbsp;</span></td>':e?'<td class="ui-timepicker-minute-cell" data-timepicker-instance-id="#'+a.id.replace(/\\\\/g,"\\")+'" data-minute="'+b.toString()+'" ><a class="ui-state-default '+(b==a.minutes?"ui-state-active":"")+'" >'+c+"</a></td>":'<td><span class="ui-state-default ui-state-disabled" >'+c+"</span></td>"},_destroyTimepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(b.hasClass(this.markerClassName)){var d=a.nodeName.toLowerCase();$.removeData(a,PROP_NAME),"input"==d?(c.append.remove(),c.trigger.remove(),b.removeClass(this.markerClassName).unbind("focus.timepicker",this._showTimepicker).unbind("click.timepicker",this._adjustZIndex)):("div"==d||"span"==d)&&b.removeClass(this.markerClassName).empty()}},_enableTimepicker:function(a){var b=$(a),c=b.attr("id"),d=$.data(a,PROP_NAME);if(b.hasClass(this.markerClassName)){var e=a.nodeName.toLowerCase();if("input"==e){a.disabled=!1;var f=this._get(d,"button");$(f).removeClass("ui-state-disabled").disabled=!1,d.trigger.filter("button").each(function(){this.disabled=!1}).end()}else if("div"==e||"span"==e){var g=b.children("."+this._inlineClass);g.children().removeClass("ui-state-disabled"),g.find("button").each(function(){this.disabled=!1})}this._disabledInputs=$.map(this._disabledInputs,function(a){return a==c?null:a})}},_disableTimepicker:function(a){var b=$(a),c=$.data(a,PROP_NAME);if(b.hasClass(this.markerClassName)){var d=a.nodeName.toLowerCase();if("input"==d){var e=this._get(c,"button");$(e).addClass("ui-state-disabled").disabled=!0,a.disabled=!0,c.trigger.filter("button").each(function(){this.disabled=!0}).end()}else if("div"==d||"span"==d){var f=b.children("."+this._inlineClass);f.children().addClass("ui-state-disabled"),f.find("button").each(function(){this.disabled=!0})}this._disabledInputs=$.map(this._disabledInputs,function(b){return b==a?null:b}),this._disabledInputs[this._disabledInputs.length]=b.attr("id")}},_isDisabledTimepicker:function(a){if(!a)return!1;for(var b=0;b<this._disabledInputs.length;b++)if(this._disabledInputs[b]==a)return!0;return!1},_checkOffset:function(a,b,c){var d=a.tpDiv.outerWidth(),e=a.tpDiv.outerHeight(),f=a.input?a.input.outerWidth():0,g=a.input?a.input.outerHeight():0,h=document.documentElement.clientWidth+$(document).scrollLeft(),i=document.documentElement.clientHeight+$(document).scrollTop();return b.left-=this._get(a,"isRTL")?d-f:0,b.left-=c&&b.left==a.input.offset().left?$(document).scrollLeft():0,b.top-=c&&b.top==a.input.offset().top+g?$(document).scrollTop():0,b.left-=Math.min(b.left,b.left+d>h&&h>d?Math.abs(b.left+d-h):0),b.top-=Math.min(b.top,b.top+e>i&&i>e?Math.abs(e+g):0),b},_findPos:function(a){for(var b=this._getInst(a),c=this._get(b,"isRTL");a&&("hidden"==a.type||1!=a.nodeType);)a=a[c?"previousSibling":"nextSibling"];var d=$(a).offset();return[d.left,d.top]},_getBorders:function(a){var b=function(a){return{thin:1,medium:2,thick:3}[a]||a};return[parseFloat(b(a.css("border-left-width"))),parseFloat(b(a.css("border-top-width")))]},_checkExternalClick:function(a){if($.timepicker._curInst){var b=$(a.target);b[0].id==$.timepicker._mainDivId||0!=b.parents("#"+$.timepicker._mainDivId).length||b.hasClass($.timepicker.markerClassName)||b.hasClass($.timepicker._triggerClass)||!$.timepicker._timepickerShowing||$.timepicker._inDialog&&$.blockUI||$.timepicker._hideTimepicker()}},_hideTimepicker:function(a){var b=this._curInst;if(b&&(!a||b==$.data(a,PROP_NAME))&&this._timepickerShowing){var c=this._get(b,"showAnim"),d=this._get(b,"duration"),e=function(){$.timepicker._tidyDialog(b),this._curInst=null};$.effects&&$.effects[c]?b.tpDiv.hide(c,$.timepicker._get(b,"showOptions"),d,e):b.tpDiv["slideDown"==c?"slideUp":"fadeIn"==c?"fadeOut":"hide"](c?d:null,e),c||e(),this._timepickerShowing=!1,this._lastInput=null,this._inDialog&&(this._dialogInput.css({position:"absolute",left:"0",top:"-100px"}),$.blockUI&&($.unblockUI(),$("body").append(this.tpDiv))),this._inDialog=!1;var f=this._get(b,"onClose");f&&f.apply(b.input?b.input[0]:null,[b.input?b.input.val():"",b])}},_tidyDialog:function(a){a.tpDiv.removeClass(this._dialogClass).unbind(".ui-timepicker")},_getInst:function(a){try{return $.data(a,PROP_NAME)}catch(b){throw"Missing instance data for this timepicker"}},_get:function(a,b){return void 0!==a.settings[b]?a.settings[b]:this._defaults[b]},_setTimeFromField:function(a){if(a.input.val()!=a.lastVal){var b=this._get(a,"defaultTime"),c="now"==b?this._getCurrentTimeRounded(a):b;if(0==a.inline&&""!=a.input.val()&&(c=a.input.val()),c instanceof Date)a.hours=c.getHours(),a.minutes=c.getMinutes();else{var d=a.lastVal=c;if(""==c)a.hours=-1,a.minutes=-1;else{var e=this.parseTime(a,d);a.hours=e.hours,a.minutes=e.minutes}}$.timepicker._updateTimepicker(a)}},_optionTimepicker:function(a,b,c){var d=this._getInst(a);if(2==arguments.length&&"string"==typeof b)return"defaults"==b?$.extend({},$.timepicker._defaults):d?"all"==b?$.extend({},d.settings):this._get(d,b):null;var e=b||{};"string"==typeof b&&(e={},e[b]=c),d&&(this._curInst==d&&this._hideTimepicker(),extendRemove(d.settings,e),this._updateTimepicker(d))},_setTimeTimepicker:function(a,b){var c=this._getInst(a);c&&(this._setTime(c,b),this._updateTimepicker(c),this._updateAlternate(c,b))},_setTime:function(a,b,c){var d=a.hours,e=a.minutes;b=this.parseTime(a,b),a.hours=b.hours,a.minutes=b.minutes,d==a.hours&&e==a.minuts||c||a.input.trigger("change"),this._updateTimepicker(a),this._updateSelectedValue(a)},_getCurrentTimeRounded:function(a){var b=new Date,c=b.getMinutes(),d=5*Math.round(c/5);return b.setMinutes(d),b},parseTime:function(a,b){var c=new Object;c.hours=-1,c.minutes=-1;var d=this._get(a,"timeSeparator"),e=this._get(a,"amPmText"),f=this._get(a,"showHours"),g=this._get(a,"showMinutes"),h=this._get(a,"optionalMinutes"),i=1==this._get(a,"showPeriod"),j=b.indexOf(d);if(-1!=j?(c.hours=parseInt(b.substr(0,j),10),c.minutes=parseInt(b.substr(j+1),10)):!f||g&&!h?!f&&g&&(c.minutes=parseInt(b,10)):c.hours=parseInt(b,10),f){var k=b.toUpperCase();c.hours<12&&i&&-1!=k.indexOf(e[1].toUpperCase())&&(c.hours+=12),12==c.hours&&i&&-1!=k.indexOf(e[0].toUpperCase())&&(c.hours=0)}return c},selectNow:function(a){var b=$(a.target).attr("data-timepicker-instance-id"),c=$(b),d=this._getInst(c[0]),e=new Date;d.hours=e.getHours(),d.minutes=e.getMinutes(),this._updateSelectedValue(d),this._updateTimepicker(d),this._hideTimepicker()},deselectTime:function(a){var b=$(a.target).attr("data-timepicker-instance-id"),c=$(b),d=this._getInst(c[0]);d.hours=-1,d.minutes=-1,this._updateSelectedValue(d),this._hideTimepicker()},selectHours:function(a){var b=$(a.currentTarget),c=b.attr("data-timepicker-instance-id"),d=parseInt(b.attr("data-hour")),e=a.data.fromDoubleClick,f=$(c),g=this._getInst(f[0]),h=1==this._get(g,"showMinutes");if($.timepicker._isDisabledTimepicker(f.attr("id")))return!1;b.parents(".ui-timepicker-hours:first").find("a").removeClass("ui-state-active"),b.children("a").addClass("ui-state-active"),g.hours=d;var i=this._get(g,"onMinuteShow");return i&&this._updateMinuteDisplay(g),this._updateSelectedValue(g),g._hoursClicked=!0,(g._minutesClicked||e||0==h)&&$.timepicker._hideTimepicker(),!1},selectMinutes:function(a){var b=$(a.currentTarget),c=b.attr("data-timepicker-instance-id"),d=parseInt(b.attr("data-minute")),e=a.data.fromDoubleClick,f=$(c),g=this._getInst(f[0]),h=1==this._get(g,"showHours");return $.timepicker._isDisabledTimepicker(f.attr("id"))?!1:(b.parents(".ui-timepicker-minutes:first").find("a").removeClass("ui-state-active"),b.children("a").addClass("ui-state-active"),g.minutes=d,this._updateSelectedValue(g),g._minutesClicked=!0,g._hoursClicked||e||0==h?($.timepicker._hideTimepicker(),!1):!1)},_updateSelectedValue:function(a){var b=this._getParsedTime(a);a.input&&(a.input.val(b),a.input.trigger("change"));var c=this._get(a,"onSelect");return c&&c.apply(a.input?a.input[0]:null,[b,a]),this._updateAlternate(a,b),b},_getParsedTime:function(a){if(-1==a.hours&&-1==a.minutes)return"";(a.hours<a.hours.starts||a.hours>a.hours.ends)&&(a.hours=0),(a.minutes<a.minutes.starts||a.minutes>a.minutes.ends)&&(a.minutes=0);var b="",c=1==this._get(a,"showPeriod"),d=1==this._get(a,"showLeadingZero"),e=1==this._get(a,"showHours"),f=1==this._get(a,"showMinutes"),g=1==this._get(a,"optionalMinutes"),h=this._get(a,"amPmText"),i=a.hours?a.hours:0,j=a.minutes?a.minutes:0,k=i?i:0,l="";c&&(0==a.hours&&(k=12),a.hours<12?b=h[0]:(b=h[1],k>12&&(k-=12)));var m=k.toString();d&&10>k&&(m="0"+m);var n=j.toString();return 10>j&&(n="0"+n),e&&(l+=m),!e||!f||g&&0==n||(l+=this._get(a,"timeSeparator")),!f||g&&0==n||(l+=n),e&&b.length>0&&(l+=this._get(a,"periodSeparator")+b),l},_updateAlternate:function(a,b){var c=this._get(a,"altField");c&&$(c).each(function(a,c){$(c).val(b)})},_getTimeTimepicker:function(a){var b=this._getInst(a);return this._getParsedTime(b)},_getHourTimepicker:function(a){var b=this._getInst(a);return void 0==b?-1:b.hours},_getMinuteTimepicker:function(a){var b=this._getInst(a);return void 0==b?-1:b.minutes}}),$.fn.timepicker=function(a){$.timepicker.initialized||($(document).mousedown($.timepicker._checkExternalClick).find("body").append($.timepicker.tpDiv),$.timepicker.initialized=!0);var b=Array.prototype.slice.call(arguments,1);return"string"!=typeof a||"getTime"!=a&&"getHour"!=a&&"getMinute"!=a?"option"==a&&2==arguments.length&&"string"==typeof arguments[1]?$.timepicker["_"+a+"Timepicker"].apply($.timepicker,[this[0]].concat(b)):this.each(function(){"string"==typeof a?$.timepicker["_"+a+"Timepicker"].apply($.timepicker,[this].concat(b)):$.timepicker._attachTimepicker(this,a)}):$.timepicker["_"+a+"Timepicker"].apply($.timepicker,[this[0]].concat(b))},$.timepicker=new Timepicker,$.timepicker.initialized=!1,$.timepicker.uuid=(new Date).getTime(),$.timepicker.version="0.3.1",window["TP_jQuery_"+tpuuid]=$}(jQuery);
js/venue-admin.min.js CHANGED
@@ -1,2 +1,2 @@
1
- /*! event-organiser 3.9.1-0-g845144e 2020-05-28 21:35 */
2
  var eo_venue=eo_venue||{marker:!1};jQuery(document).ready(function(a){postboxes.add_postbox_toggles(pagenow);var b=a("#eo_venue_Lat").val(),c=a("#eo_venue_Lng").val(),d=15;if(0===b&&0===c){var e=[];a(".eo_addressInput").each(function(){e.push(a(this).val())}),e.join("")||(d=1)}eovenue.init_map("venuemap",{lat:b,lng:c,zoom:d,draggable:!0,markerIcon:eo_venue.marker,onDrag:function(b){this.dragging=!0,a("#eo-venue-latllng-text").text(b.target.latlng.lat+", "+b.target.latlng.lng)},onDragend:function(b){this.dragging=!1;var c=b.target.latlng.lat+", "+b.target.latlng.lng;a("#eo_venue_Lat").val(b.target.latlng.lat),a("#eo_venue_Lng").val(b.target.latlng.lng),a("#eo-venue-latllng-text").text(c),b.target.map.setCenter(b.target.latlng)},onPositionchanged:function(b){if(!this.dragging){var c=b.target.latlng.lat+", "+b.target.latlng.lng;a("#eo_venue_Lat").val(b.target.latlng.lat),a("#eo_venue_Lng").val(b.target.latlng.lng),a("#eo-venue-latllng-text").text(c),b.target.map.setCenter(b.target.latlng)}}}),a(".eo_addressInput").change(function(){var b={};a(".eo_addressInput").each(function(){var c=a(this).attr("id").replace(/^eo-venue-/,"");b[c]=a(this).val()?a(this).val():null}),eovenue.geocode(b,function(a){a&&eovenue.get_map("venuemap").marker[0].setPosition({lat:a.lat,lng:a.lng})})}),a("#eo-venue-latllng-text").blur(function(){var b=a(this).text().trim().replace(/ /g,""),c=b.match(/^(-?[0-9]{1,3}\.[0-9]+),(-?[0-9]{1,3}\.[0-9]+)$/),d=a(this).data("eo-lat"),e=a(this).data("eo-lng");if(c){var f=c[1],g=c[2];(f!=d||g!=e)&&(a(this).data("eo-lat",f),a(this).data("eo-lng",g),eovenue.get_map("venuemap").marker[0].setPosition({lat:parseFloat(f),lng:parseFloat(g)}))}else a(this).text(d+", "+e)}),a("#eo-venue-latllng-text").keydown(function(b){13===b.which&&a(this).blur()})});
1
+ /*! event-organiser 3.10.0-0-g5f45c47 2020-07-22 07:59 */
2
  var eo_venue=eo_venue||{marker:!1};jQuery(document).ready(function(a){postboxes.add_postbox_toggles(pagenow);var b=a("#eo_venue_Lat").val(),c=a("#eo_venue_Lng").val(),d=15;if(0===b&&0===c){var e=[];a(".eo_addressInput").each(function(){e.push(a(this).val())}),e.join("")||(d=1)}eovenue.init_map("venuemap",{lat:b,lng:c,zoom:d,draggable:!0,markerIcon:eo_venue.marker,onDrag:function(b){this.dragging=!0,a("#eo-venue-latllng-text").text(b.target.latlng.lat+", "+b.target.latlng.lng)},onDragend:function(b){this.dragging=!1;var c=b.target.latlng.lat+", "+b.target.latlng.lng;a("#eo_venue_Lat").val(b.target.latlng.lat),a("#eo_venue_Lng").val(b.target.latlng.lng),a("#eo-venue-latllng-text").text(c),b.target.map.setCenter(b.target.latlng)},onPositionchanged:function(b){if(!this.dragging){var c=b.target.latlng.lat+", "+b.target.latlng.lng;a("#eo_venue_Lat").val(b.target.latlng.lat),a("#eo_venue_Lng").val(b.target.latlng.lng),a("#eo-venue-latllng-text").text(c),b.target.map.setCenter(b.target.latlng)}}}),a(".eo_addressInput").change(function(){var b={};a(".eo_addressInput").each(function(){var c=a(this).attr("id").replace(/^eo-venue-/,"");b[c]=a(this).val()?a(this).val():null}),eovenue.geocode(b,function(a){a&&eovenue.get_map("venuemap").marker[0].setPosition({lat:a.lat,lng:a.lng})})}),a("#eo-venue-latllng-text").blur(function(){var b=a(this).text().trim().replace(/ /g,""),c=b.match(/^(-?[0-9]{1,3}\.[0-9]+),(-?[0-9]{1,3}\.[0-9]+)$/),d=a(this).data("eo-lat"),e=a(this).data("eo-lng");if(c){var f=c[1],g=c[2];(f!=d||g!=e)&&(a(this).data("eo-lat",f),a(this).data("eo-lng",g),eovenue.get_map("venuemap").marker[0].setPosition({lat:parseFloat(f),lng:parseFloat(g)}))}else a(this).text(d+", "+e)}),a("#eo-venue-latllng-text").keydown(function(b){13===b.which&&a(this).blur()})});
js/venue-util.js CHANGED
@@ -34,7 +34,8 @@ eovenue = {
34
  var location = { lat: lat, lng: lng, venue_id: 0 };
35
 
36
  var map_options = {
37
- zoom: ( options.hasOwnProperty( 'zoom' ) ? options.zoom : 15 ),
 
38
  center: location,
39
  //mapTypeId: google.maps.MapTypeId.ROADMAP,
40
  locations:[ location ]
34
  var location = { lat: lat, lng: lng, venue_id: 0 };
35
 
36
  var map_options = {
37
+ zoom: ( options.hasOwnProperty( 'zoom' ) ? options.zoom : 15 ),
38
+ zoomcontrol: true,
39
  center: location,
40
  //mapTypeId: google.maps.MapTypeId.ROADMAP,
41
  locations:[ location ]
js/venue-util.min.js CHANGED
@@ -1,2 +1,2 @@
1
- /*! event-organiser 3.9.1-0-g845144e 2020-05-28 21:35 */
2
- !function(a){eovenue={maps:{},is_map_enabled:function(){return"undefined"==typeof eventorganiserMapsAdapter?!1:!0},init_map:function(a,b){if(this.is_map_enabled()){var c=b.hasOwnProperty("fieldID")?b.fieldID:a,d=b.hasOwnProperty("draggable")?b.draggable:!1,e=b.hasOwnProperty("markerIcon")?b.markerIcon:null,f=b.hasOwnProperty("lat")?b.lat:0,g=b.hasOwnProperty("lng")?b.lng:0,h={lat:f,lng:g,venue_id:0},i={zoom:b.hasOwnProperty("zoom")?b.zoom:15,center:h,locations:[h]},j=new eventorganiserMapsAdapter.provider.map(c,i),k=j.addMarker({position:{lat:f,lng:g},map:j,venue_id:0,draggable:d,icon:e});this.maps[a]={map:j,marker:[k]},b.hasOwnProperty("onDrag")&&b.onDrag&&k.on("drag",b.onDrag),b.hasOwnProperty("onDragend")&&b.onDragend&&k.on("dragend",b.onDragend),b.hasOwnProperty("onPositionchanged")&&b.onPositionchanged&&k.on("move",b.onPositionchanged)}},geocode:function(a,b){if(this.is_map_enabled()){var c=new eventorganiserMapsAdapter.provider.geocoder;c.geocode(a,b)}},get_map:function(a){return this.maps[a]}}}(jQuery);
1
+ /*! event-organiser 3.10.0-0-g5f45c47 2020-07-22 07:59 */
2
+ !function(a){eovenue={maps:{},is_map_enabled:function(){return"undefined"==typeof eventorganiserMapsAdapter?!1:!0},init_map:function(a,b){if(this.is_map_enabled()){var c=b.hasOwnProperty("fieldID")?b.fieldID:a,d=b.hasOwnProperty("draggable")?b.draggable:!1,e=b.hasOwnProperty("markerIcon")?b.markerIcon:null,f=b.hasOwnProperty("lat")?b.lat:0,g=b.hasOwnProperty("lng")?b.lng:0,h={lat:f,lng:g,venue_id:0},i={zoom:b.hasOwnProperty("zoom")?b.zoom:15,zoomcontrol:!0,center:h,locations:[h]},j=new eventorganiserMapsAdapter.provider.map(c,i),k=j.addMarker({position:{lat:f,lng:g},map:j,venue_id:0,draggable:d,icon:e});this.maps[a]={map:j,marker:[k]},b.hasOwnProperty("onDrag")&&b.onDrag&&k.on("drag",b.onDrag),b.hasOwnProperty("onDragend")&&b.onDragend&&k.on("dragend",b.onDragend),b.hasOwnProperty("onPositionchanged")&&b.onPositionchanged&&k.on("move",b.onPositionchanged)}},geocode:function(a,b){if(this.is_map_enabled()){var c=new eventorganiserMapsAdapter.provider.geocoder;c.geocode(a,b)}},get_map:function(a){return this.maps[a]}}}(jQuery);
languages/eventorganiser-af.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2017-04-16T23:10:48+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1352,22 +1352,22 @@ msgid ""
1352
  "%s."
1353
  msgstr ""
1354
 
1355
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1356
  #, php-format
1357
  msgid "[Lines %1$d-%2$d]"
1358
  msgstr ""
1359
 
1360
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1361
  #, php-format
1362
  msgid "[Line %1$d]"
1363
  msgstr ""
1364
 
1365
- #: includes/class-eo-ical-parser.php:1044
1366
  #, php-format
1367
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1368
  msgstr ""
1369
 
1370
- #: includes/class-eo-ical-parser.php:1082
1371
  #, php-format
1372
  msgid ""
1373
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1989,59 +1989,59 @@ msgid ""
1989
  "page."
1990
  msgstr ""
1991
 
1992
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1993
- #: includes/event-organiser-cpt.php:587
1994
  #, fuzzy
1995
  msgid "Overview"
1996
  msgstr "Oorsig"
1997
 
1998
- #: includes/event-organiser-cpt.php:566
1999
  msgid ""
2000
  "This is the list of all saved events. Note that <strong> recurring events "
2001
  "appear as a single row </strong> in the table and the start and end date "
2002
  "refers to the first occurrence of that event."
2003
  msgstr ""
2004
 
2005
- #: includes/event-organiser-cpt.php:574
2006
  msgid ""
2007
  "Hovering over a row in the venues list will display action links that allow "
2008
  "you to manage that venue. You can perform the following actions:"
2009
  msgstr ""
2010
 
2011
- #: includes/event-organiser-cpt.php:576
2012
  msgid ""
2013
  "Edit takes you to the editing screen for that venue. You can also reach that "
2014
  "screen by clicking on the venue title."
2015
  msgstr ""
2016
 
2017
- #: includes/event-organiser-cpt.php:577
2018
  msgid "Delete will permanently remove the venue"
2019
  msgstr ""
2020
 
2021
- #: includes/event-organiser-cpt.php:578
2022
  msgid "View will take you to the venue's page"
2023
  msgstr ""
2024
 
2025
- #: includes/event-organiser-cpt.php:588
2026
  msgid ""
2027
  "This page shows all (occurrances of) events. You can view the summary of an "
2028
  "event by clicking on it. If you have the necessary permissions, a link to "
2029
  "the event's edit page will appear also."
2030
  msgstr ""
2031
 
2032
- #: includes/event-organiser-cpt.php:589
2033
  msgid ""
2034
  "By clicking the relevant tab, you can view events in Month, Week or Day "
2035
  "mode. You can also filter the events by events by category and venue. The "
2036
  "'go to date' button allows you to quickly jump to a specific date."
2037
  msgstr ""
2038
 
2039
- #: includes/event-organiser-cpt.php:593
2040
  #, fuzzy
2041
  msgid "Add Event"
2042
  msgstr "Voeg Gebeurtenis by"
2043
 
2044
- #: includes/event-organiser-cpt.php:594
2045
  msgid ""
2046
  "You can create an event on this Calendar, by clicking on day or dragging "
2047
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -2050,32 +2050,32 @@ msgid ""
2050
  "event is created and you are forwarded to that event's edit page."
2051
  msgstr ""
2052
 
2053
- #: includes/event-organiser-cpt.php:600
2054
  #, fuzzy
2055
  msgid "For more information"
2056
  msgstr "Vir meer inligting"
2057
 
2058
- #: includes/event-organiser-cpt.php:601
2059
  #, fuzzy, php-format
2060
  msgid "See the <a %s> documentation</a>"
2061
  msgstr "Sien die <a%s> dokumentasie</a>"
2062
 
2063
- #: includes/event-organiser-cpt.php:602
2064
  #, fuzzy
2065
  msgid "Debugging Event Organiser"
2066
  msgstr "Ontfouting Gebeurtenis Organiseerder"
2067
 
2068
- #: includes/event-organiser-cpt.php:603
2069
  #, fuzzy
2070
  msgid "Go Pro!"
2071
  msgstr "Gaan Professioneel!"
2072
 
2073
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2074
  #, fuzzy
2075
  msgid "Color"
2076
  msgstr "Kleur"
2077
 
2078
- #: includes/event-organiser-cpt.php:719
2079
  #, fuzzy
2080
  msgid "Assign the category a colour."
2081
  msgstr "Kies 'n kleur vir die kategorie"
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2017-04-16T23:10:48+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1352
  "%s."
1353
  msgstr ""
1354
 
1355
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1356
  #, php-format
1357
  msgid "[Lines %1$d-%2$d]"
1358
  msgstr ""
1359
 
1360
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1361
  #, php-format
1362
  msgid "[Line %1$d]"
1363
  msgstr ""
1364
 
1365
+ #: includes/class-eo-ical-parser.php:1066
1366
  #, php-format
1367
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1368
  msgstr ""
1369
 
1370
+ #: includes/class-eo-ical-parser.php:1104
1371
  #, php-format
1372
  msgid ""
1373
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1989
  "page."
1990
  msgstr ""
1991
 
1992
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1993
+ #: includes/event-organiser-cpt.php:590
1994
  #, fuzzy
1995
  msgid "Overview"
1996
  msgstr "Oorsig"
1997
 
1998
+ #: includes/event-organiser-cpt.php:565
1999
  msgid ""
2000
  "This is the list of all saved events. Note that <strong> recurring events "
2001
  "appear as a single row </strong> in the table and the start and end date "
2002
  "refers to the first occurrence of that event."
2003
  msgstr ""
2004
 
2005
+ #: includes/event-organiser-cpt.php:572
2006
  msgid ""
2007
  "Hovering over a row in the venues list will display action links that allow "
2008
  "you to manage that venue. You can perform the following actions:"
2009
  msgstr ""
2010
 
2011
+ #: includes/event-organiser-cpt.php:574
2012
  msgid ""
2013
  "Edit takes you to the editing screen for that venue. You can also reach that "
2014
  "screen by clicking on the venue title."
2015
  msgstr ""
2016
 
2017
+ #: includes/event-organiser-cpt.php:575
2018
  msgid "Delete will permanently remove the venue"
2019
  msgstr ""
2020
 
2021
+ #: includes/event-organiser-cpt.php:576
2022
  msgid "View will take you to the venue's page"
2023
  msgstr ""
2024
 
2025
+ #: includes/event-organiser-cpt.php:591
2026
  msgid ""
2027
  "This page shows all (occurrances of) events. You can view the summary of an "
2028
  "event by clicking on it. If you have the necessary permissions, a link to "
2029
  "the event's edit page will appear also."
2030
  msgstr ""
2031
 
2032
+ #: includes/event-organiser-cpt.php:592
2033
  msgid ""
2034
  "By clicking the relevant tab, you can view events in Month, Week or Day "
2035
  "mode. You can also filter the events by events by category and venue. The "
2036
  "'go to date' button allows you to quickly jump to a specific date."
2037
  msgstr ""
2038
 
2039
+ #: includes/event-organiser-cpt.php:596
2040
  #, fuzzy
2041
  msgid "Add Event"
2042
  msgstr "Voeg Gebeurtenis by"
2043
 
2044
+ #: includes/event-organiser-cpt.php:597
2045
  msgid ""
2046
  "You can create an event on this Calendar, by clicking on day or dragging "
2047
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
2050
  "event is created and you are forwarded to that event's edit page."
2051
  msgstr ""
2052
 
2053
+ #: includes/event-organiser-cpt.php:604
2054
  #, fuzzy
2055
  msgid "For more information"
2056
  msgstr "Vir meer inligting"
2057
 
2058
+ #: includes/event-organiser-cpt.php:605
2059
  #, fuzzy, php-format
2060
  msgid "See the <a %s> documentation</a>"
2061
  msgstr "Sien die <a%s> dokumentasie</a>"
2062
 
2063
+ #: includes/event-organiser-cpt.php:606
2064
  #, fuzzy
2065
  msgid "Debugging Event Organiser"
2066
  msgstr "Ontfouting Gebeurtenis Organiseerder"
2067
 
2068
+ #: includes/event-organiser-cpt.php:607
2069
  #, fuzzy
2070
  msgid "Go Pro!"
2071
  msgstr "Gaan Professioneel!"
2072
 
2073
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2074
  #, fuzzy
2075
  msgid "Color"
2076
  msgstr "Kleur"
2077
 
2078
+ #: includes/event-organiser-cpt.php:723
2079
  #, fuzzy
2080
  msgid "Assign the category a colour."
2081
  msgstr "Kies 'n kleur vir die kategorie"
languages/eventorganiser-ar.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:17:42+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1269,22 +1269,22 @@ msgid ""
1269
  "%s."
1270
  msgstr ""
1271
 
1272
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1273
  #, php-format
1274
  msgid "[Lines %1$d-%2$d]"
1275
  msgstr ""
1276
 
1277
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1278
  #, php-format
1279
  msgid "[Line %1$d]"
1280
  msgstr ""
1281
 
1282
- #: includes/class-eo-ical-parser.php:1044
1283
  #, php-format
1284
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1285
  msgstr ""
1286
 
1287
- #: includes/class-eo-ical-parser.php:1082
1288
  #, php-format
1289
  msgid ""
1290
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1860,57 +1860,57 @@ msgid ""
1860
  "page."
1861
  msgstr ""
1862
 
1863
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1864
- #: includes/event-organiser-cpt.php:587
1865
  msgid "Overview"
1866
  msgstr ""
1867
 
1868
- #: includes/event-organiser-cpt.php:566
1869
  msgid ""
1870
  "This is the list of all saved events. Note that <strong> recurring events "
1871
  "appear as a single row </strong> in the table and the start and end date "
1872
  "refers to the first occurrence of that event."
1873
  msgstr ""
1874
 
1875
- #: includes/event-organiser-cpt.php:574
1876
  msgid ""
1877
  "Hovering over a row in the venues list will display action links that allow "
1878
  "you to manage that venue. You can perform the following actions:"
1879
  msgstr ""
1880
 
1881
- #: includes/event-organiser-cpt.php:576
1882
  msgid ""
1883
  "Edit takes you to the editing screen for that venue. You can also reach that "
1884
  "screen by clicking on the venue title."
1885
  msgstr ""
1886
 
1887
- #: includes/event-organiser-cpt.php:577
1888
  msgid "Delete will permanently remove the venue"
1889
  msgstr ""
1890
 
1891
- #: includes/event-organiser-cpt.php:578
1892
  msgid "View will take you to the venue's page"
1893
  msgstr ""
1894
 
1895
- #: includes/event-organiser-cpt.php:588
1896
  msgid ""
1897
  "This page shows all (occurrances of) events. You can view the summary of an "
1898
  "event by clicking on it. If you have the necessary permissions, a link to "
1899
  "the event's edit page will appear also."
1900
  msgstr ""
1901
 
1902
- #: includes/event-organiser-cpt.php:589
1903
  msgid ""
1904
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1905
  "mode. You can also filter the events by events by category and venue. The "
1906
  "'go to date' button allows you to quickly jump to a specific date."
1907
  msgstr ""
1908
 
1909
- #: includes/event-organiser-cpt.php:593
1910
  msgid "Add Event"
1911
  msgstr ""
1912
 
1913
- #: includes/event-organiser-cpt.php:594
1914
  msgid ""
1915
  "You can create an event on this Calendar, by clicking on day or dragging "
1916
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1919,28 +1919,28 @@ msgid ""
1919
  "event is created and you are forwarded to that event's edit page."
1920
  msgstr ""
1921
 
1922
- #: includes/event-organiser-cpt.php:600
1923
  msgid "For more information"
1924
  msgstr ""
1925
 
1926
- #: includes/event-organiser-cpt.php:601
1927
  #, php-format
1928
  msgid "See the <a %s> documentation</a>"
1929
  msgstr ""
1930
 
1931
- #: includes/event-organiser-cpt.php:602
1932
  msgid "Debugging Event Organiser"
1933
  msgstr ""
1934
 
1935
- #: includes/event-organiser-cpt.php:603
1936
  msgid "Go Pro!"
1937
  msgstr ""
1938
 
1939
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
1940
  msgid "Color"
1941
  msgstr ""
1942
 
1943
- #: includes/event-organiser-cpt.php:719
1944
  msgid "Assign the category a colour."
1945
  msgstr ""
1946
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:17:42+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1269
  "%s."
1270
  msgstr ""
1271
 
1272
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1273
  #, php-format
1274
  msgid "[Lines %1$d-%2$d]"
1275
  msgstr ""
1276
 
1277
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1278
  #, php-format
1279
  msgid "[Line %1$d]"
1280
  msgstr ""
1281
 
1282
+ #: includes/class-eo-ical-parser.php:1066
1283
  #, php-format
1284
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1285
  msgstr ""
1286
 
1287
+ #: includes/class-eo-ical-parser.php:1104
1288
  #, php-format
1289
  msgid ""
1290
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1860
  "page."
1861
  msgstr ""
1862
 
1863
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1864
+ #: includes/event-organiser-cpt.php:590
1865
  msgid "Overview"
1866
  msgstr ""
1867
 
1868
+ #: includes/event-organiser-cpt.php:565
1869
  msgid ""
1870
  "This is the list of all saved events. Note that <strong> recurring events "
1871
  "appear as a single row </strong> in the table and the start and end date "
1872
  "refers to the first occurrence of that event."
1873
  msgstr ""
1874
 
1875
+ #: includes/event-organiser-cpt.php:572
1876
  msgid ""
1877
  "Hovering over a row in the venues list will display action links that allow "
1878
  "you to manage that venue. You can perform the following actions:"
1879
  msgstr ""
1880
 
1881
+ #: includes/event-organiser-cpt.php:574
1882
  msgid ""
1883
  "Edit takes you to the editing screen for that venue. You can also reach that "
1884
  "screen by clicking on the venue title."
1885
  msgstr ""
1886
 
1887
+ #: includes/event-organiser-cpt.php:575
1888
  msgid "Delete will permanently remove the venue"
1889
  msgstr ""
1890
 
1891
+ #: includes/event-organiser-cpt.php:576
1892
  msgid "View will take you to the venue's page"
1893
  msgstr ""
1894
 
1895
+ #: includes/event-organiser-cpt.php:591
1896
  msgid ""
1897
  "This page shows all (occurrances of) events. You can view the summary of an "
1898
  "event by clicking on it. If you have the necessary permissions, a link to "
1899
  "the event's edit page will appear also."
1900
  msgstr ""
1901
 
1902
+ #: includes/event-organiser-cpt.php:592
1903
  msgid ""
1904
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1905
  "mode. You can also filter the events by events by category and venue. The "
1906
  "'go to date' button allows you to quickly jump to a specific date."
1907
  msgstr ""
1908
 
1909
+ #: includes/event-organiser-cpt.php:596
1910
  msgid "Add Event"
1911
  msgstr ""
1912
 
1913
+ #: includes/event-organiser-cpt.php:597
1914
  msgid ""
1915
  "You can create an event on this Calendar, by clicking on day or dragging "
1916
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1919
  "event is created and you are forwarded to that event's edit page."
1920
  msgstr ""
1921
 
1922
+ #: includes/event-organiser-cpt.php:604
1923
  msgid "For more information"
1924
  msgstr ""
1925
 
1926
+ #: includes/event-organiser-cpt.php:605
1927
  #, php-format
1928
  msgid "See the <a %s> documentation</a>"
1929
  msgstr ""
1930
 
1931
+ #: includes/event-organiser-cpt.php:606
1932
  msgid "Debugging Event Organiser"
1933
  msgstr ""
1934
 
1935
+ #: includes/event-organiser-cpt.php:607
1936
  msgid "Go Pro!"
1937
  msgstr ""
1938
 
1939
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
1940
  msgid "Color"
1941
  msgstr ""
1942
 
1943
+ #: includes/event-organiser-cpt.php:723
1944
  msgid "Assign the category a colour."
1945
  msgstr ""
1946
 
languages/eventorganiser-bg_BG.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:17:38+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1280,22 +1280,22 @@ msgid ""
1280
  "%s."
1281
  msgstr ""
1282
 
1283
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1284
  #, php-format
1285
  msgid "[Lines %1$d-%2$d]"
1286
  msgstr ""
1287
 
1288
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1289
  #, php-format
1290
  msgid "[Line %1$d]"
1291
  msgstr ""
1292
 
1293
- #: includes/class-eo-ical-parser.php:1044
1294
  #, php-format
1295
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1296
  msgstr ""
1297
 
1298
- #: includes/class-eo-ical-parser.php:1082
1299
  #, php-format
1300
  msgid ""
1301
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1888,12 +1888,12 @@ msgstr ""
1888
  "Могат да се избират само предварително съществуващи мероприятия. За да "
1889
  "добавите мероприятие, отидете на страницата мероприятия."
1890
 
1891
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1892
- #: includes/event-organiser-cpt.php:587
1893
  msgid "Overview"
1894
  msgstr "Резюме"
1895
 
1896
- #: includes/event-organiser-cpt.php:566
1897
  msgid ""
1898
  "This is the list of all saved events. Note that <strong> recurring events "
1899
  "appear as a single row </strong> in the table and the start and end date "
@@ -1903,7 +1903,7 @@ msgstr ""
1903
  "повтарящи се събития, се появи като един ред </strong> в таблицата и "
1904
  "началната и крайната дата се отнася до първата поява на това събитие."
1905
 
1906
- #: includes/event-organiser-cpt.php:574
1907
  msgid ""
1908
  "Hovering over a row in the venues list will display action links that allow "
1909
  "you to manage that venue. You can perform the following actions:"
@@ -1912,7 +1912,7 @@ msgstr ""
1912
  "които ви позволяват да управлявате това мероприятие. Можете да извършвате "
1913
  "следните действия:"
1914
 
1915
- #: includes/event-organiser-cpt.php:576
1916
  msgid ""
1917
  "Edit takes you to the editing screen for that venue. You can also reach that "
1918
  "screen by clicking on the venue title."
@@ -1921,15 +1921,15 @@ msgstr ""
1921
  "така да достигне до този екран, като кликнете върху заглавието на "
1922
  "мероприятието."
1923
 
1924
- #: includes/event-organiser-cpt.php:577
1925
  msgid "Delete will permanently remove the venue"
1926
  msgstr "Изтриването ще изтрие мероприятието завинаги"
1927
 
1928
- #: includes/event-organiser-cpt.php:578
1929
  msgid "View will take you to the venue's page"
1930
  msgstr "Преглед ще ви насочи към страницата на мероприятието"
1931
 
1932
- #: includes/event-organiser-cpt.php:588
1933
  msgid ""
1934
  "This page shows all (occurrances of) events. You can view the summary of an "
1935
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -1939,7 +1939,7 @@ msgstr ""
1939
  "събитие, като кликнете върху него. Ако имате необходимите разрешения, линк "
1940
  "към страницата за редактиране на събитието, то тя ще се появи също."
1941
 
1942
- #: includes/event-organiser-cpt.php:589
1943
  msgid ""
1944
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1945
  "mode. You can also filter the events by events by category and venue. The "
@@ -1950,11 +1950,11 @@ msgstr ""
1950
  "по категория и място. Бутонът \"Отиди на дата\" ви позволява бързо да "
1951
  "преминете до определена дата."
1952
 
1953
- #: includes/event-organiser-cpt.php:593
1954
  msgid "Add Event"
1955
  msgstr "Добавяне на събитие"
1956
 
1957
- #: includes/event-organiser-cpt.php:594
1958
  msgid ""
1959
  "You can create an event on this Calendar, by clicking on day or dragging "
1960
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1969,28 +1969,28 @@ msgstr ""
1969
  "веднага или да се запише като чернова. Във всеки случай, събитието е "
1970
  "създаден и вие вече може да го редактирате."
1971
 
1972
- #: includes/event-organiser-cpt.php:600
1973
  msgid "For more information"
1974
  msgstr "За повече информация"
1975
 
1976
- #: includes/event-organiser-cpt.php:601
1977
  #, php-format
1978
  msgid "See the <a %s> documentation</a>"
1979
  msgstr "Прегледайте <a %s> документацията</a>"
1980
 
1981
- #: includes/event-organiser-cpt.php:602
1982
  msgid "Debugging Event Organiser"
1983
  msgstr "Проследяване на грешки в Event Organizer"
1984
 
1985
- #: includes/event-organiser-cpt.php:603
1986
  msgid "Go Pro!"
1987
  msgstr "Вземете Pro! версията"
1988
 
1989
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
1990
  msgid "Color"
1991
  msgstr "Цвят"
1992
 
1993
- #: includes/event-organiser-cpt.php:719
1994
  msgid "Assign the category a colour."
1995
  msgstr "Задайите цвят на категорията"
1996
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:17:38+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1280
  "%s."
1281
  msgstr ""
1282
 
1283
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1284
  #, php-format
1285
  msgid "[Lines %1$d-%2$d]"
1286
  msgstr ""
1287
 
1288
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1289
  #, php-format
1290
  msgid "[Line %1$d]"
1291
  msgstr ""
1292
 
1293
+ #: includes/class-eo-ical-parser.php:1066
1294
  #, php-format
1295
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1296
  msgstr ""
1297
 
1298
+ #: includes/class-eo-ical-parser.php:1104
1299
  #, php-format
1300
  msgid ""
1301
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1888
  "Могат да се избират само предварително съществуващи мероприятия. За да "
1889
  "добавите мероприятие, отидете на страницата мероприятия."
1890
 
1891
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1892
+ #: includes/event-organiser-cpt.php:590
1893
  msgid "Overview"
1894
  msgstr "Резюме"
1895
 
1896
+ #: includes/event-organiser-cpt.php:565
1897
  msgid ""
1898
  "This is the list of all saved events. Note that <strong> recurring events "
1899
  "appear as a single row </strong> in the table and the start and end date "
1903
  "повтарящи се събития, се появи като един ред </strong> в таблицата и "
1904
  "началната и крайната дата се отнася до първата поява на това събитие."
1905
 
1906
+ #: includes/event-organiser-cpt.php:572
1907
  msgid ""
1908
  "Hovering over a row in the venues list will display action links that allow "
1909
  "you to manage that venue. You can perform the following actions:"
1912
  "които ви позволяват да управлявате това мероприятие. Можете да извършвате "
1913
  "следните действия:"
1914
 
1915
+ #: includes/event-organiser-cpt.php:574
1916
  msgid ""
1917
  "Edit takes you to the editing screen for that venue. You can also reach that "
1918
  "screen by clicking on the venue title."
1921
  "така да достигне до този екран, като кликнете върху заглавието на "
1922
  "мероприятието."
1923
 
1924
+ #: includes/event-organiser-cpt.php:575
1925
  msgid "Delete will permanently remove the venue"
1926
  msgstr "Изтриването ще изтрие мероприятието завинаги"
1927
 
1928
+ #: includes/event-organiser-cpt.php:576
1929
  msgid "View will take you to the venue's page"
1930
  msgstr "Преглед ще ви насочи към страницата на мероприятието"
1931
 
1932
+ #: includes/event-organiser-cpt.php:591
1933
  msgid ""
1934
  "This page shows all (occurrances of) events. You can view the summary of an "
1935
  "event by clicking on it. If you have the necessary permissions, a link to "
1939
  "събитие, като кликнете върху него. Ако имате необходимите разрешения, линк "
1940
  "към страницата за редактиране на събитието, то тя ще се появи също."
1941
 
1942
+ #: includes/event-organiser-cpt.php:592
1943
  msgid ""
1944
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1945
  "mode. You can also filter the events by events by category and venue. The "
1950
  "по категория и място. Бутонът \"Отиди на дата\" ви позволява бързо да "
1951
  "преминете до определена дата."
1952
 
1953
+ #: includes/event-organiser-cpt.php:596
1954
  msgid "Add Event"
1955
  msgstr "Добавяне на събитие"
1956
 
1957
+ #: includes/event-organiser-cpt.php:597
1958
  msgid ""
1959
  "You can create an event on this Calendar, by clicking on day or dragging "
1960
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1969
  "веднага или да се запише като чернова. Във всеки случай, събитието е "
1970
  "създаден и вие вече може да го редактирате."
1971
 
1972
+ #: includes/event-organiser-cpt.php:604
1973
  msgid "For more information"
1974
  msgstr "За повече информация"
1975
 
1976
+ #: includes/event-organiser-cpt.php:605
1977
  #, php-format
1978
  msgid "See the <a %s> documentation</a>"
1979
  msgstr "Прегледайте <a %s> документацията</a>"
1980
 
1981
+ #: includes/event-organiser-cpt.php:606
1982
  msgid "Debugging Event Organiser"
1983
  msgstr "Проследяване на грешки в Event Organizer"
1984
 
1985
+ #: includes/event-organiser-cpt.php:607
1986
  msgid "Go Pro!"
1987
  msgstr "Вземете Pro! версията"
1988
 
1989
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
1990
  msgid "Color"
1991
  msgstr "Цвят"
1992
 
1993
+ #: includes/event-organiser-cpt.php:723
1994
  msgid "Assign the category a colour."
1995
  msgstr "Задайите цвят на категорията"
1996
 
languages/eventorganiser-ca.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2017-04-16T23:21:14+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1313,22 +1313,22 @@ msgid ""
1313
  "%s."
1314
  msgstr ""
1315
 
1316
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1317
  #, php-format
1318
  msgid "[Lines %1$d-%2$d]"
1319
  msgstr ""
1320
 
1321
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1322
  #, php-format
1323
  msgid "[Line %1$d]"
1324
  msgstr "[Línia %1$d]"
1325
 
1326
- #: includes/class-eo-ical-parser.php:1044
1327
  #, php-format
1328
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1329
  msgstr "Data invàlida \"%s\". Data esperada en format AAAAMMDD."
1330
 
1331
- #: includes/class-eo-ical-parser.php:1082
1332
  #, php-format
1333
  msgid ""
1334
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1922,19 +1922,19 @@ msgstr ""
1922
  "Solament es poden seleccionar llocs preexistents. Per afegir un lloc, anar a "
1923
  "la pàgina de llocs."
1924
 
1925
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1926
- #: includes/event-organiser-cpt.php:587
1927
  msgid "Overview"
1928
  msgstr "Descripció"
1929
 
1930
- #: includes/event-organiser-cpt.php:566
1931
  msgid ""
1932
  "This is the list of all saved events. Note that <strong> recurring events "
1933
  "appear as a single row </strong> in the table and the start and end date "
1934
  "refers to the first occurrence of that event."
1935
  msgstr ""
1936
 
1937
- #: includes/event-organiser-cpt.php:574
1938
  msgid ""
1939
  "Hovering over a row in the venues list will display action links that allow "
1940
  "you to manage that venue. You can perform the following actions:"
@@ -1943,7 +1943,7 @@ msgstr ""
1943
  "accions que et permeten gestionar aquest esdeveniment. Pots realitzar les "
1944
  "següents accions:"
1945
 
1946
- #: includes/event-organiser-cpt.php:576
1947
  msgid ""
1948
  "Edit takes you to the editing screen for that venue. You can also reach that "
1949
  "screen by clicking on the venue title."
@@ -1951,15 +1951,15 @@ msgstr ""
1951
  "Editar et porta a la pantalla d'edició d'aquest lloc. També pots anar a "
1952
  "aquesta pantalla punxant en el títol del lloc."
1953
 
1954
- #: includes/event-organiser-cpt.php:577
1955
  msgid "Delete will permanently remove the venue"
1956
  msgstr "Esborrar, llevarà de forma permanent el lloc"
1957
 
1958
- #: includes/event-organiser-cpt.php:578
1959
  msgid "View will take you to the venue's page"
1960
  msgstr "Veure et portarà a la pàgina del lloc"
1961
 
1962
- #: includes/event-organiser-cpt.php:588
1963
  msgid ""
1964
  "This page shows all (occurrances of) events. You can view the summary of an "
1965
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -1969,7 +1969,7 @@ msgstr ""
1969
  "veure el resum d'un esdeveniment punxant en ell. Si tens els privilegis "
1970
  "necessaris , també t'apareixerà un enllaç a la pàgina d'editar esdeveniments."
1971
 
1972
- #: includes/event-organiser-cpt.php:589
1973
  msgid ""
1974
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1975
  "mode. You can also filter the events by events by category and venue. The "
@@ -1979,11 +1979,11 @@ msgstr ""
1979
  "setmana o dia. També pots filtrar els esdeveniments per categoria i lloc. El "
1980
  "botó \"anar a la data\" us permet saltar ràpidament a una data específica."
1981
 
1982
- #: includes/event-organiser-cpt.php:593
1983
  msgid "Add Event"
1984
  msgstr "Afegeix Esdeveniment"
1985
 
1986
- #: includes/event-organiser-cpt.php:594
1987
  msgid ""
1988
  "You can create an event on this Calendar, by clicking on day or dragging "
1989
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1998,28 +1998,28 @@ msgstr ""
1998
  "guardat com a esborrany. En qualsevol cas, l'esdeveniment està creat i tu "
1999
  "seràs redireccionat a la pàgina d'edició d'aquest esdeveniment."
2000
 
2001
- #: includes/event-organiser-cpt.php:600
2002
  msgid "For more information"
2003
  msgstr "Per a més informació"
2004
 
2005
- #: includes/event-organiser-cpt.php:601
2006
  #, php-format
2007
  msgid "See the <a %s> documentation</a>"
2008
  msgstr "Veure la <a %s> documentació</a>"
2009
 
2010
- #: includes/event-organiser-cpt.php:602
2011
  msgid "Debugging Event Organiser"
2012
  msgstr "Depurant Event Organiser"
2013
 
2014
- #: includes/event-organiser-cpt.php:603
2015
  msgid "Go Pro!"
2016
  msgstr "Vés a la versió Pro!"
2017
 
2018
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2019
  msgid "Color"
2020
  msgstr "Color"
2021
 
2022
- #: includes/event-organiser-cpt.php:719
2023
  msgid "Assign the category a colour."
2024
  msgstr "Asignar un color a la categoria"
2025
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2017-04-16T23:21:14+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1313
  "%s."
1314
  msgstr ""
1315
 
1316
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1317
  #, php-format
1318
  msgid "[Lines %1$d-%2$d]"
1319
  msgstr ""
1320
 
1321
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1322
  #, php-format
1323
  msgid "[Line %1$d]"
1324
  msgstr "[Línia %1$d]"
1325
 
1326
+ #: includes/class-eo-ical-parser.php:1066
1327
  #, php-format
1328
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1329
  msgstr "Data invàlida \"%s\". Data esperada en format AAAAMMDD."
1330
 
1331
+ #: includes/class-eo-ical-parser.php:1104
1332
  #, php-format
1333
  msgid ""
1334
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1922
  "Solament es poden seleccionar llocs preexistents. Per afegir un lloc, anar a "
1923
  "la pàgina de llocs."
1924
 
1925
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1926
+ #: includes/event-organiser-cpt.php:590
1927
  msgid "Overview"
1928
  msgstr "Descripció"
1929
 
1930
+ #: includes/event-organiser-cpt.php:565
1931
  msgid ""
1932
  "This is the list of all saved events. Note that <strong> recurring events "
1933
  "appear as a single row </strong> in the table and the start and end date "
1934
  "refers to the first occurrence of that event."
1935
  msgstr ""
1936
 
1937
+ #: includes/event-organiser-cpt.php:572
1938
  msgid ""
1939
  "Hovering over a row in the venues list will display action links that allow "
1940
  "you to manage that venue. You can perform the following actions:"
1943
  "accions que et permeten gestionar aquest esdeveniment. Pots realitzar les "
1944
  "següents accions:"
1945
 
1946
+ #: includes/event-organiser-cpt.php:574
1947
  msgid ""
1948
  "Edit takes you to the editing screen for that venue. You can also reach that "
1949
  "screen by clicking on the venue title."
1951
  "Editar et porta a la pantalla d'edició d'aquest lloc. També pots anar a "
1952
  "aquesta pantalla punxant en el títol del lloc."
1953
 
1954
+ #: includes/event-organiser-cpt.php:575
1955
  msgid "Delete will permanently remove the venue"
1956
  msgstr "Esborrar, llevarà de forma permanent el lloc"
1957
 
1958
+ #: includes/event-organiser-cpt.php:576
1959
  msgid "View will take you to the venue's page"
1960
  msgstr "Veure et portarà a la pàgina del lloc"
1961
 
1962
+ #: includes/event-organiser-cpt.php:591
1963
  msgid ""
1964
  "This page shows all (occurrances of) events. You can view the summary of an "
1965
  "event by clicking on it. If you have the necessary permissions, a link to "
1969
  "veure el resum d'un esdeveniment punxant en ell. Si tens els privilegis "
1970
  "necessaris , també t'apareixerà un enllaç a la pàgina d'editar esdeveniments."
1971
 
1972
+ #: includes/event-organiser-cpt.php:592
1973
  msgid ""
1974
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1975
  "mode. You can also filter the events by events by category and venue. The "
1979
  "setmana o dia. També pots filtrar els esdeveniments per categoria i lloc. El "
1980
  "botó \"anar a la data\" us permet saltar ràpidament a una data específica."
1981
 
1982
+ #: includes/event-organiser-cpt.php:596
1983
  msgid "Add Event"
1984
  msgstr "Afegeix Esdeveniment"
1985
 
1986
+ #: includes/event-organiser-cpt.php:597
1987
  msgid ""
1988
  "You can create an event on this Calendar, by clicking on day or dragging "
1989
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1998
  "guardat com a esborrany. En qualsevol cas, l'esdeveniment està creat i tu "
1999
  "seràs redireccionat a la pàgina d'edició d'aquest esdeveniment."
2000
 
2001
+ #: includes/event-organiser-cpt.php:604
2002
  msgid "For more information"
2003
  msgstr "Per a més informació"
2004
 
2005
+ #: includes/event-organiser-cpt.php:605
2006
  #, php-format
2007
  msgid "See the <a %s> documentation</a>"
2008
  msgstr "Veure la <a %s> documentació</a>"
2009
 
2010
+ #: includes/event-organiser-cpt.php:606
2011
  msgid "Debugging Event Organiser"
2012
  msgstr "Depurant Event Organiser"
2013
 
2014
+ #: includes/event-organiser-cpt.php:607
2015
  msgid "Go Pro!"
2016
  msgstr "Vés a la versió Pro!"
2017
 
2018
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2019
  msgid "Color"
2020
  msgstr "Color"
2021
 
2022
+ #: includes/event-organiser-cpt.php:723
2023
  msgid "Assign the category a colour."
2024
  msgstr "Asignar un color a la categoria"
2025
 
languages/eventorganiser-cs_CZ.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2017-10-09T20:46:49+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1324,22 +1324,22 @@ msgstr ""
1324
  "Zdroj obsahuje neomezeně opakující se událost. Tato událost se bude opakovat "
1325
  "až do %s"
1326
 
1327
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1328
  #, php-format
1329
  msgid "[Lines %1$d-%2$d]"
1330
  msgstr "[Lines %1$d-%2$d]"
1331
 
1332
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1333
  #, php-format
1334
  msgid "[Line %1$d]"
1335
  msgstr "[Line %1$d]"
1336
 
1337
- #: includes/class-eo-ical-parser.php:1044
1338
  #, php-format
1339
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1340
  msgstr "Neplatné datum \"%s\". Datum očekáváno v YYYYMMDD formátu."
1341
 
1342
- #: includes/class-eo-ical-parser.php:1082
1343
  #, php-format
1344
  msgid ""
1345
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1944,12 +1944,12 @@ msgstr ""
1944
  "Lze vybrat pouze již existující místa. Pro přidání místa jděte na stránku "
1945
  "míst."
1946
 
1947
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1948
- #: includes/event-organiser-cpt.php:587
1949
  msgid "Overview"
1950
  msgstr "Přehled"
1951
 
1952
- #: includes/event-organiser-cpt.php:566
1953
  msgid ""
1954
  "This is the list of all saved events. Note that <strong> recurring events "
1955
  "appear as a single row </strong> in the table and the start and end date "
@@ -1959,7 +1959,7 @@ msgstr ""
1959
  "opakující se události se ukazují jako jeden řádek </strong> v tabulce a že "
1960
  "datum začátku a konce odpovídá prvnímu výskytu dané události."
1961
 
1962
- #: includes/event-organiser-cpt.php:574
1963
  msgid ""
1964
  "Hovering over a row in the venues list will display action links that allow "
1965
  "you to manage that venue. You can perform the following actions:"
@@ -1967,7 +1967,7 @@ msgstr ""
1967
  "Přejetí přes řádek v seznamu míst zobrazí seznam akcí, které dovolují "
1968
  "spravovat dané místo. Můžete provést následující akce:"
1969
 
1970
- #: includes/event-organiser-cpt.php:576
1971
  #, fuzzy
1972
  msgid ""
1973
  "Edit takes you to the editing screen for that venue. You can also reach that "
@@ -1976,15 +1976,15 @@ msgstr ""
1976
  "Editace vás vezme na editační obrazovku pro dané místo. Té můžete také "
1977
  "dosáhnout kliknutím na název místa."
1978
 
1979
- #: includes/event-organiser-cpt.php:577
1980
  msgid "Delete will permanently remove the venue"
1981
  msgstr "Smazání natrvalo odstraní místo"
1982
 
1983
- #: includes/event-organiser-cpt.php:578
1984
  msgid "View will take you to the venue's page"
1985
  msgstr "'Zobrazit' vás přenese na stránku místa."
1986
 
1987
- #: includes/event-organiser-cpt.php:588
1988
  msgid ""
1989
  "This page shows all (occurrances of) events. You can view the summary of an "
1990
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -1994,7 +1994,7 @@ msgstr ""
1994
  "události, pokud na ní kliknete. Pokud máte potřebná oprávnění, zobrazí se i "
1995
  "odkaz na editační stránku události."
1996
 
1997
- #: includes/event-organiser-cpt.php:589
1998
  msgid ""
1999
  "By clicking the relevant tab, you can view events in Month, Week or Day "
2000
  "mode. You can also filter the events by events by category and venue. The "
@@ -2004,11 +2004,11 @@ msgstr ""
2004
  "denním zobrazení. Můžete také filtrovat události podle kategorie a místa. "
2005
  "Tlačítko 'jít na datum' umožňuje rychle přejít na speficikované datum."
2006
 
2007
- #: includes/event-organiser-cpt.php:593
2008
  msgid "Add Event"
2009
  msgstr "Přidat událost"
2010
 
2011
- #: includes/event-organiser-cpt.php:594
2012
  msgid ""
2013
  "You can create an event on this Calendar, by clicking on day or dragging "
2014
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -2023,28 +2023,28 @@ msgstr ""
2023
  "případě, událost je uložena a by budete přesměrováni na editační stránku "
2024
  "události."
2025
 
2026
- #: includes/event-organiser-cpt.php:600
2027
  msgid "For more information"
2028
  msgstr "Pro více informací"
2029
 
2030
- #: includes/event-organiser-cpt.php:601
2031
  #, php-format
2032
  msgid "See the <a %s> documentation</a>"
2033
  msgstr "Zobrazit <a %s> dokumentaci</a>"
2034
 
2035
- #: includes/event-organiser-cpt.php:602
2036
  msgid "Debugging Event Organiser"
2037
  msgstr "Debug Event Organiseru"
2038
 
2039
- #: includes/event-organiser-cpt.php:603
2040
  msgid "Go Pro!"
2041
  msgstr "Získat Pro!"
2042
 
2043
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2044
  msgid "Color"
2045
  msgstr "Barva"
2046
 
2047
- #: includes/event-organiser-cpt.php:719
2048
  msgid "Assign the category a colour."
2049
  msgstr "Přířadit barvu kategorii."
2050
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2017-10-09T20:46:49+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1324
  "Zdroj obsahuje neomezeně opakující se událost. Tato událost se bude opakovat "
1325
  "až do %s"
1326
 
1327
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1328
  #, php-format
1329
  msgid "[Lines %1$d-%2$d]"
1330
  msgstr "[Lines %1$d-%2$d]"
1331
 
1332
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1333
  #, php-format
1334
  msgid "[Line %1$d]"
1335
  msgstr "[Line %1$d]"
1336
 
1337
+ #: includes/class-eo-ical-parser.php:1066
1338
  #, php-format
1339
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1340
  msgstr "Neplatné datum \"%s\". Datum očekáváno v YYYYMMDD formátu."
1341
 
1342
+ #: includes/class-eo-ical-parser.php:1104
1343
  #, php-format
1344
  msgid ""
1345
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1944
  "Lze vybrat pouze již existující místa. Pro přidání místa jděte na stránku "
1945
  "míst."
1946
 
1947
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1948
+ #: includes/event-organiser-cpt.php:590
1949
  msgid "Overview"
1950
  msgstr "Přehled"
1951
 
1952
+ #: includes/event-organiser-cpt.php:565
1953
  msgid ""
1954
  "This is the list of all saved events. Note that <strong> recurring events "
1955
  "appear as a single row </strong> in the table and the start and end date "
1959
  "opakující se události se ukazují jako jeden řádek </strong> v tabulce a že "
1960
  "datum začátku a konce odpovídá prvnímu výskytu dané události."
1961
 
1962
+ #: includes/event-organiser-cpt.php:572
1963
  msgid ""
1964
  "Hovering over a row in the venues list will display action links that allow "
1965
  "you to manage that venue. You can perform the following actions:"
1967
  "Přejetí přes řádek v seznamu míst zobrazí seznam akcí, které dovolují "
1968
  "spravovat dané místo. Můžete provést následující akce:"
1969
 
1970
+ #: includes/event-organiser-cpt.php:574
1971
  #, fuzzy
1972
  msgid ""
1973
  "Edit takes you to the editing screen for that venue. You can also reach that "
1976
  "Editace vás vezme na editační obrazovku pro dané místo. Té můžete také "
1977
  "dosáhnout kliknutím na název místa."
1978
 
1979
+ #: includes/event-organiser-cpt.php:575
1980
  msgid "Delete will permanently remove the venue"
1981
  msgstr "Smazání natrvalo odstraní místo"
1982
 
1983
+ #: includes/event-organiser-cpt.php:576
1984
  msgid "View will take you to the venue's page"
1985
  msgstr "'Zobrazit' vás přenese na stránku místa."
1986
 
1987
+ #: includes/event-organiser-cpt.php:591
1988
  msgid ""
1989
  "This page shows all (occurrances of) events. You can view the summary of an "
1990
  "event by clicking on it. If you have the necessary permissions, a link to "
1994
  "události, pokud na ní kliknete. Pokud máte potřebná oprávnění, zobrazí se i "
1995
  "odkaz na editační stránku události."
1996
 
1997
+ #: includes/event-organiser-cpt.php:592
1998
  msgid ""
1999
  "By clicking the relevant tab, you can view events in Month, Week or Day "
2000
  "mode. You can also filter the events by events by category and venue. The "
2004
  "denním zobrazení. Můžete také filtrovat události podle kategorie a místa. "
2005
  "Tlačítko 'jít na datum' umožňuje rychle přejít na speficikované datum."
2006
 
2007
+ #: includes/event-organiser-cpt.php:596
2008
  msgid "Add Event"
2009
  msgstr "Přidat událost"
2010
 
2011
+ #: includes/event-organiser-cpt.php:597
2012
  msgid ""
2013
  "You can create an event on this Calendar, by clicking on day or dragging "
2014
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
2023
  "případě, událost je uložena a by budete přesměrováni na editační stránku "
2024
  "události."
2025
 
2026
+ #: includes/event-organiser-cpt.php:604
2027
  msgid "For more information"
2028
  msgstr "Pro více informací"
2029
 
2030
+ #: includes/event-organiser-cpt.php:605
2031
  #, php-format
2032
  msgid "See the <a %s> documentation</a>"
2033
  msgstr "Zobrazit <a %s> dokumentaci</a>"
2034
 
2035
+ #: includes/event-organiser-cpt.php:606
2036
  msgid "Debugging Event Organiser"
2037
  msgstr "Debug Event Organiseru"
2038
 
2039
+ #: includes/event-organiser-cpt.php:607
2040
  msgid "Go Pro!"
2041
  msgstr "Získat Pro!"
2042
 
2043
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2044
  msgid "Color"
2045
  msgstr "Barva"
2046
 
2047
+ #: includes/event-organiser-cpt.php:723
2048
  msgid "Assign the category a colour."
2049
  msgstr "Přířadit barvu kategorii."
2050
 
languages/eventorganiser-da_DK.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2017-04-14T23:27:45+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1308,22 +1308,22 @@ msgid ""
1308
  "%s."
1309
  msgstr ""
1310
 
1311
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1312
  #, php-format
1313
  msgid "[Lines %1$d-%2$d]"
1314
  msgstr "[Linjer %1$d-%2$d]"
1315
 
1316
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1317
  #, php-format
1318
  msgid "[Line %1$d]"
1319
  msgstr "[Linje %1$d]"
1320
 
1321
- #: includes/class-eo-ical-parser.php:1044
1322
  #, php-format
1323
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1324
  msgstr "Ugyldig dato \"%s\". Dato forventes i formatet YYYYMMDD"
1325
 
1326
- #: includes/class-eo-ical-parser.php:1082
1327
  #, php-format
1328
  msgid ""
1329
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1928,12 +1928,12 @@ msgstr ""
1928
  "Kun allerede eksisterende steder kan vælges. For at tilføje et sted, gå til "
1929
  "Steder-vinduet."
1930
 
1931
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1932
- #: includes/event-organiser-cpt.php:587
1933
  msgid "Overview"
1934
  msgstr "Overblik"
1935
 
1936
- #: includes/event-organiser-cpt.php:566
1937
  msgid ""
1938
  "This is the list of all saved events. Note that <strong> recurring events "
1939
  "appear as a single row </strong> in the table and the start and end date "
@@ -1943,7 +1943,7 @@ msgstr ""
1943
  "begivenheder vises som en enkelt række </strong> i tabellen, og at start- og "
1944
  "slutdatoen refererer til den første begivenhed."
1945
 
1946
- #: includes/event-organiser-cpt.php:574
1947
  msgid ""
1948
  "Hovering over a row in the venues list will display action links that allow "
1949
  "you to manage that venue. You can perform the following actions:"
@@ -1951,7 +1951,7 @@ msgstr ""
1951
  "Hvis du holder markøren over en række i listen af steder, kan du se links "
1952
  "til at håndtere dit sted. Du kan udføre følgende handlinger:"
1953
 
1954
- #: includes/event-organiser-cpt.php:576
1955
  msgid ""
1956
  "Edit takes you to the editing screen for that venue. You can also reach that "
1957
  "screen by clicking on the venue title."
@@ -1959,15 +1959,15 @@ msgstr ""
1959
  "Rediger tager dig til redigeringsvinduet for stedet. Du kan også komme til "
1960
  "det vindue ved at klikke på stedets titel."
1961
 
1962
- #: includes/event-organiser-cpt.php:577
1963
  msgid "Delete will permanently remove the venue"
1964
  msgstr "Slet vil fjerne stedet permanent"
1965
 
1966
- #: includes/event-organiser-cpt.php:578
1967
  msgid "View will take you to the venue's page"
1968
  msgstr "Vis vil føre dig til stedets side"
1969
 
1970
- #: includes/event-organiser-cpt.php:588
1971
  msgid ""
1972
  "This page shows all (occurrances of) events. You can view the summary of an "
1973
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -1978,7 +1978,7 @@ msgstr ""
1978
  "påkrævede rettigheder, vil du også få vist et link til begivenhedens "
1979
  "redigeringsvindue."
1980
 
1981
- #: includes/event-organiser-cpt.php:589
1982
  msgid ""
1983
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1984
  "mode. You can also filter the events by events by category and venue. The "
@@ -1989,11 +1989,11 @@ msgstr ""
1989
  "'gå til dato'-knappen giver dig mulighed for hurtigt at hoppe til en "
1990
  "specifik dato."
1991
 
1992
- #: includes/event-organiser-cpt.php:593
1993
  msgid "Add Event"
1994
  msgstr "Tilføj begivenhed"
1995
 
1996
- #: includes/event-organiser-cpt.php:594
1997
  msgid ""
1998
  "You can create an event on this Calendar, by clicking on day or dragging "
1999
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -2008,28 +2008,28 @@ msgstr ""
2008
  "kladde. Uanset hvad vil begivenheden blive oprettet, og du føres til dens "
2009
  "redigeringsvindue."
2010
 
2011
- #: includes/event-organiser-cpt.php:600
2012
  msgid "For more information"
2013
  msgstr "For mere information"
2014
 
2015
- #: includes/event-organiser-cpt.php:601
2016
  #, php-format
2017
  msgid "See the <a %s> documentation</a>"
2018
  msgstr "Læs <a %s> dokumentationen</a>"
2019
 
2020
- #: includes/event-organiser-cpt.php:602
2021
  msgid "Debugging Event Organiser"
2022
  msgstr "Debugging Event Organiser"
2023
 
2024
- #: includes/event-organiser-cpt.php:603
2025
  msgid "Go Pro!"
2026
  msgstr "Go Pro!"
2027
 
2028
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2029
  msgid "Color"
2030
  msgstr "Farve"
2031
 
2032
- #: includes/event-organiser-cpt.php:719
2033
  msgid "Assign the category a colour."
2034
  msgstr "Tilføj farve til denne kategori"
2035
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2017-04-14T23:27:45+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1308
  "%s."
1309
  msgstr ""
1310
 
1311
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1312
  #, php-format
1313
  msgid "[Lines %1$d-%2$d]"
1314
  msgstr "[Linjer %1$d-%2$d]"
1315
 
1316
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1317
  #, php-format
1318
  msgid "[Line %1$d]"
1319
  msgstr "[Linje %1$d]"
1320
 
1321
+ #: includes/class-eo-ical-parser.php:1066
1322
  #, php-format
1323
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1324
  msgstr "Ugyldig dato \"%s\". Dato forventes i formatet YYYYMMDD"
1325
 
1326
+ #: includes/class-eo-ical-parser.php:1104
1327
  #, php-format
1328
  msgid ""
1329
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1928
  "Kun allerede eksisterende steder kan vælges. For at tilføje et sted, gå til "
1929
  "Steder-vinduet."
1930
 
1931
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1932
+ #: includes/event-organiser-cpt.php:590
1933
  msgid "Overview"
1934
  msgstr "Overblik"
1935
 
1936
+ #: includes/event-organiser-cpt.php:565
1937
  msgid ""
1938
  "This is the list of all saved events. Note that <strong> recurring events "
1939
  "appear as a single row </strong> in the table and the start and end date "
1943
  "begivenheder vises som en enkelt række </strong> i tabellen, og at start- og "
1944
  "slutdatoen refererer til den første begivenhed."
1945
 
1946
+ #: includes/event-organiser-cpt.php:572
1947
  msgid ""
1948
  "Hovering over a row in the venues list will display action links that allow "
1949
  "you to manage that venue. You can perform the following actions:"
1951
  "Hvis du holder markøren over en række i listen af steder, kan du se links "
1952
  "til at håndtere dit sted. Du kan udføre følgende handlinger:"
1953
 
1954
+ #: includes/event-organiser-cpt.php:574
1955
  msgid ""
1956
  "Edit takes you to the editing screen for that venue. You can also reach that "
1957
  "screen by clicking on the venue title."
1959
  "Rediger tager dig til redigeringsvinduet for stedet. Du kan også komme til "
1960
  "det vindue ved at klikke på stedets titel."
1961
 
1962
+ #: includes/event-organiser-cpt.php:575
1963
  msgid "Delete will permanently remove the venue"
1964
  msgstr "Slet vil fjerne stedet permanent"
1965
 
1966
+ #: includes/event-organiser-cpt.php:576
1967
  msgid "View will take you to the venue's page"
1968
  msgstr "Vis vil føre dig til stedets side"
1969
 
1970
+ #: includes/event-organiser-cpt.php:591
1971
  msgid ""
1972
  "This page shows all (occurrances of) events. You can view the summary of an "
1973
  "event by clicking on it. If you have the necessary permissions, a link to "
1978
  "påkrævede rettigheder, vil du også få vist et link til begivenhedens "
1979
  "redigeringsvindue."
1980
 
1981
+ #: includes/event-organiser-cpt.php:592
1982
  msgid ""
1983
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1984
  "mode. You can also filter the events by events by category and venue. The "
1989
  "'gå til dato'-knappen giver dig mulighed for hurtigt at hoppe til en "
1990
  "specifik dato."
1991
 
1992
+ #: includes/event-organiser-cpt.php:596
1993
  msgid "Add Event"
1994
  msgstr "Tilføj begivenhed"
1995
 
1996
+ #: includes/event-organiser-cpt.php:597
1997
  msgid ""
1998
  "You can create an event on this Calendar, by clicking on day or dragging "
1999
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
2008
  "kladde. Uanset hvad vil begivenheden blive oprettet, og du føres til dens "
2009
  "redigeringsvindue."
2010
 
2011
+ #: includes/event-organiser-cpt.php:604
2012
  msgid "For more information"
2013
  msgstr "For mere information"
2014
 
2015
+ #: includes/event-organiser-cpt.php:605
2016
  #, php-format
2017
  msgid "See the <a %s> documentation</a>"
2018
  msgstr "Læs <a %s> dokumentationen</a>"
2019
 
2020
+ #: includes/event-organiser-cpt.php:606
2021
  msgid "Debugging Event Organiser"
2022
  msgstr "Debugging Event Organiser"
2023
 
2024
+ #: includes/event-organiser-cpt.php:607
2025
  msgid "Go Pro!"
2026
  msgstr "Go Pro!"
2027
 
2028
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2029
  msgid "Color"
2030
  msgstr "Farve"
2031
 
2032
+ #: includes/event-organiser-cpt.php:723
2033
  msgid "Assign the category a colour."
2034
  msgstr "Tilføj farve til denne kategori"
2035
 
languages/eventorganiser-de_DE.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2017-04-14T23:01:46+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1339,23 +1339,23 @@ msgid ""
1339
  "%s."
1340
  msgstr ""
1341
 
1342
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1343
  #, php-format
1344
  msgid "[Lines %1$d-%2$d]"
1345
  msgstr "[Zeilen %1$d-%2$d]"
1346
 
1347
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1348
  #, php-format
1349
  msgid "[Line %1$d]"
1350
  msgstr "[Zeile %1$d]"
1351
 
1352
- #: includes/class-eo-ical-parser.php:1044
1353
  #, php-format
1354
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1355
  msgstr ""
1356
  "Falsche Angabe für das Datum \"%s\". Datum wird im YYYYMMDD-Format erwartet."
1357
 
1358
- #: includes/class-eo-ical-parser.php:1082
1359
  #, php-format
1360
  msgid ""
1361
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1964,12 +1964,12 @@ msgstr ""
1964
  "Nur bereits bestehende Unterrichtsorte können ausgewählt werden. Um einen "
1965
  "Ort hinzuzufügen, gehen Sie zur Seite \"Unterrichtsorte\"."
1966
 
1967
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1968
- #: includes/event-organiser-cpt.php:587
1969
  msgid "Overview"
1970
  msgstr "Übersicht"
1971
 
1972
- #: includes/event-organiser-cpt.php:566
1973
  msgid ""
1974
  "This is the list of all saved events. Note that <strong> recurring events "
1975
  "appear as a single row </strong> in the table and the start and end date "
@@ -1979,7 +1979,7 @@ msgstr ""
1979
  "Termine</strong> in der Tabelle einzeilig angezeigt werden und sich das "
1980
  "Start- und Enddatum auf das erste Terminereignis beziehen."
1981
 
1982
- #: includes/event-organiser-cpt.php:574
1983
  msgid ""
1984
  "Hovering over a row in the venues list will display action links that allow "
1985
  "you to manage that venue. You can perform the following actions:"
@@ -1988,7 +1988,7 @@ msgstr ""
1988
  "denen Sie die Veranstaltungsorte verwalten können. Sie können folgende "
1989
  "Aktionen durchführen:"
1990
 
1991
- #: includes/event-organiser-cpt.php:576
1992
  msgid ""
1993
  "Edit takes you to the editing screen for that venue. You can also reach that "
1994
  "screen by clicking on the venue title."
@@ -1996,15 +1996,15 @@ msgstr ""
1996
  "Um den Veranstaltungsort zu bearbeiten, klicken sie 'Bearbeiten' oder den "
1997
  "Titel des Ortes."
1998
 
1999
- #: includes/event-organiser-cpt.php:577
2000
  msgid "Delete will permanently remove the venue"
2001
  msgstr "'Löschen' wird diesen Veranstaltungsort dauerhaft entfernen."
2002
 
2003
- #: includes/event-organiser-cpt.php:578
2004
  msgid "View will take you to the venue's page"
2005
  msgstr "'Ansehen' bringt Sie zur Seite des Veranstaltungsortes."
2006
 
2007
- #: includes/event-organiser-cpt.php:588
2008
  msgid ""
2009
  "This page shows all (occurrances of) events. You can view the summary of an "
2010
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -2015,7 +2015,7 @@ msgstr ""
2015
  "erforderlichen Berechtigungen haben, sehen Sie einen Link zum Bearbeiten des "
2016
  "Termins."
2017
 
2018
- #: includes/event-organiser-cpt.php:589
2019
  msgid ""
2020
  "By clicking the relevant tab, you can view events in Month, Week or Day "
2021
  "mode. You can also filter the events by events by category and venue. The "
@@ -2026,11 +2026,11 @@ msgstr ""
2026
  "Terminkategorie und Veranstaltungsort filtern. Über die Schaltfläche 'Gehe "
2027
  "zu Datum' können Sie schnell zu einem bestimmten Datum springen."
2028
 
2029
- #: includes/event-organiser-cpt.php:593
2030
  msgid "Add Event"
2031
  msgstr "Termin hinzufügen"
2032
 
2033
- #: includes/event-organiser-cpt.php:594
2034
  msgid ""
2035
  "You can create an event on this Calendar, by clicking on day or dragging "
2036
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -2046,28 +2046,28 @@ msgstr ""
2046
  "werden. In jedem Fall wird der Termin erstellt, und Sie werden auf die "
2047
  "Bearbeiten-Seite weitergeleitet."
2048
 
2049
- #: includes/event-organiser-cpt.php:600
2050
  msgid "For more information"
2051
  msgstr "Für weitere Informationen"
2052
 
2053
- #: includes/event-organiser-cpt.php:601
2054
  #, php-format
2055
  msgid "See the <a %s> documentation</a>"
2056
  msgstr "In der <a %s> Dokumentation</a> nachsehen"
2057
 
2058
- #: includes/event-organiser-cpt.php:602
2059
  msgid "Debugging Event Organiser"
2060
  msgstr "Debugge 'Event Organiser'"
2061
 
2062
- #: includes/event-organiser-cpt.php:603
2063
  msgid "Go Pro!"
2064
  msgstr "Jetzt Pro-Version!"
2065
 
2066
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2067
  msgid "Color"
2068
  msgstr "Farbe"
2069
 
2070
- #: includes/event-organiser-cpt.php:719
2071
  msgid "Assign the category a colour."
2072
  msgstr "Der Unterrichtskategorie eine Farbe zuweisen."
2073
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2017-04-14T23:01:46+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1339
  "%s."
1340
  msgstr ""
1341
 
1342
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1343
  #, php-format
1344
  msgid "[Lines %1$d-%2$d]"
1345
  msgstr "[Zeilen %1$d-%2$d]"
1346
 
1347
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1348
  #, php-format
1349
  msgid "[Line %1$d]"
1350
  msgstr "[Zeile %1$d]"
1351
 
1352
+ #: includes/class-eo-ical-parser.php:1066
1353
  #, php-format
1354
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1355
  msgstr ""
1356
  "Falsche Angabe für das Datum \"%s\". Datum wird im YYYYMMDD-Format erwartet."
1357
 
1358
+ #: includes/class-eo-ical-parser.php:1104
1359
  #, php-format
1360
  msgid ""
1361
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1964
  "Nur bereits bestehende Unterrichtsorte können ausgewählt werden. Um einen "
1965
  "Ort hinzuzufügen, gehen Sie zur Seite \"Unterrichtsorte\"."
1966
 
1967
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1968
+ #: includes/event-organiser-cpt.php:590
1969
  msgid "Overview"
1970
  msgstr "Übersicht"
1971
 
1972
+ #: includes/event-organiser-cpt.php:565
1973
  msgid ""
1974
  "This is the list of all saved events. Note that <strong> recurring events "
1975
  "appear as a single row </strong> in the table and the start and end date "
1979
  "Termine</strong> in der Tabelle einzeilig angezeigt werden und sich das "
1980
  "Start- und Enddatum auf das erste Terminereignis beziehen."
1981
 
1982
+ #: includes/event-organiser-cpt.php:572
1983
  msgid ""
1984
  "Hovering over a row in the venues list will display action links that allow "
1985
  "you to manage that venue. You can perform the following actions:"
1988
  "denen Sie die Veranstaltungsorte verwalten können. Sie können folgende "
1989
  "Aktionen durchführen:"
1990
 
1991
+ #: includes/event-organiser-cpt.php:574
1992
  msgid ""
1993
  "Edit takes you to the editing screen for that venue. You can also reach that "
1994
  "screen by clicking on the venue title."
1996
  "Um den Veranstaltungsort zu bearbeiten, klicken sie 'Bearbeiten' oder den "
1997
  "Titel des Ortes."
1998
 
1999
+ #: includes/event-organiser-cpt.php:575
2000
  msgid "Delete will permanently remove the venue"
2001
  msgstr "'Löschen' wird diesen Veranstaltungsort dauerhaft entfernen."
2002
 
2003
+ #: includes/event-organiser-cpt.php:576
2004
  msgid "View will take you to the venue's page"
2005
  msgstr "'Ansehen' bringt Sie zur Seite des Veranstaltungsortes."
2006
 
2007
+ #: includes/event-organiser-cpt.php:591
2008
  msgid ""
2009
  "This page shows all (occurrances of) events. You can view the summary of an "
2010
  "event by clicking on it. If you have the necessary permissions, a link to "
2015
  "erforderlichen Berechtigungen haben, sehen Sie einen Link zum Bearbeiten des "
2016
  "Termins."
2017
 
2018
+ #: includes/event-organiser-cpt.php:592
2019
  msgid ""
2020
  "By clicking the relevant tab, you can view events in Month, Week or Day "
2021
  "mode. You can also filter the events by events by category and venue. The "
2026
  "Terminkategorie und Veranstaltungsort filtern. Über die Schaltfläche 'Gehe "
2027
  "zu Datum' können Sie schnell zu einem bestimmten Datum springen."
2028
 
2029
+ #: includes/event-organiser-cpt.php:596
2030
  msgid "Add Event"
2031
  msgstr "Termin hinzufügen"
2032
 
2033
+ #: includes/event-organiser-cpt.php:597
2034
  msgid ""
2035
  "You can create an event on this Calendar, by clicking on day or dragging "
2036
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
2046
  "werden. In jedem Fall wird der Termin erstellt, und Sie werden auf die "
2047
  "Bearbeiten-Seite weitergeleitet."
2048
 
2049
+ #: includes/event-organiser-cpt.php:604
2050
  msgid "For more information"
2051
  msgstr "Für weitere Informationen"
2052
 
2053
+ #: includes/event-organiser-cpt.php:605
2054
  #, php-format
2055
  msgid "See the <a %s> documentation</a>"
2056
  msgstr "In der <a %s> Dokumentation</a> nachsehen"
2057
 
2058
+ #: includes/event-organiser-cpt.php:606
2059
  msgid "Debugging Event Organiser"
2060
  msgstr "Debugge 'Event Organiser'"
2061
 
2062
+ #: includes/event-organiser-cpt.php:607
2063
  msgid "Go Pro!"
2064
  msgstr "Jetzt Pro-Version!"
2065
 
2066
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2067
  msgid "Color"
2068
  msgstr "Farbe"
2069
 
2070
+ #: includes/event-organiser-cpt.php:723
2071
  msgid "Assign the category a colour."
2072
  msgstr "Der Unterrichtskategorie eine Farbe zuweisen."
2073
 
languages/eventorganiser-el.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2017-04-14T23:02:23+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1312,23 +1312,23 @@ msgid ""
1312
  "%s."
1313
  msgstr ""
1314
 
1315
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1316
  #, php-format
1317
  msgid "[Lines %1$d-%2$d]"
1318
  msgstr "[Γραμμές %1$d-%2$d]"
1319
 
1320
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1321
  #, php-format
1322
  msgid "[Line %1$d]"
1323
  msgstr "[Γραμμή %1$d]"
1324
 
1325
- #: includes/class-eo-ical-parser.php:1044
1326
  #, php-format
1327
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1328
  msgstr ""
1329
  "Μη έγκυρη ημερομηνία \"%s\". Η ημερομηνία πρέπει να είναι σε YYYYMMDD format."
1330
 
1331
- #: includes/class-eo-ical-parser.php:1082
1332
  #, php-format
1333
  msgid ""
1334
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1937,12 +1937,12 @@ msgstr ""
1937
  "Μόνο προϋπάρχουσα χώρους μπορεί να επιλεγεί. Για να προσθέσετε ένα χώρο, "
1938
  "μεταβείτε στη σελίδα χώρους."
1939
 
1940
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1941
- #: includes/event-organiser-cpt.php:587
1942
  msgid "Overview"
1943
  msgstr "Περίληψη"
1944
 
1945
- #: includes/event-organiser-cpt.php:566
1946
  msgid ""
1947
  "This is the list of all saved events. Note that <strong> recurring events "
1948
  "appear as a single row </strong> in the table and the start and end date "
@@ -1953,7 +1953,7 @@ msgstr ""
1953
  "πίνακα και την ημερομηνία έναρξης και λήξης αναφέρεται στην πρώτη εμφάνιση "
1954
  "αυτού του γεγονότος."
1955
 
1956
- #: includes/event-organiser-cpt.php:574
1957
  msgid ""
1958
  "Hovering over a row in the venues list will display action links that allow "
1959
  "you to manage that venue. You can perform the following actions:"
@@ -1962,7 +1962,7 @@ msgstr ""
1962
  "που σας επιτρέπουν να διαχειριστεί το εν λόγω χώρο. Μπορείτε να εκτελέσετε "
1963
  "τις ακόλουθες ενέργειες:"
1964
 
1965
- #: includes/event-organiser-cpt.php:576
1966
  msgid ""
1967
  "Edit takes you to the editing screen for that venue. You can also reach that "
1968
  "screen by clicking on the venue title."
@@ -1970,15 +1970,15 @@ msgstr ""
1970
  "Επεξεργασία σας μεταφέρει στην οθόνη επεξεργασίας για το συγκεκριμένο χώρο. "
1971
  "Μπορείτε να φτάσετε επίσης ότι η οθόνη κάνοντας κλικ στον τίτλο τόπο."
1972
 
1973
- #: includes/event-organiser-cpt.php:577
1974
  msgid "Delete will permanently remove the venue"
1975
  msgstr "Διαγραφή θα αφαιρέσει οριστικά το χώρο"
1976
 
1977
- #: includes/event-organiser-cpt.php:578
1978
  msgid "View will take you to the venue's page"
1979
  msgstr "Η Εμφάνιση θα οδηγήσει σην σελίδα με τις τοποθεσίες."
1980
 
1981
- #: includes/event-organiser-cpt.php:588
1982
  msgid ""
1983
  "This page shows all (occurrances of) events. You can view the summary of an "
1984
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -1988,7 +1988,7 @@ msgstr ""
1988
  "event by clicking on it. If you have the necessary permissions, a link to "
1989
  "the event's edit page will appear also."
1990
 
1991
- #: includes/event-organiser-cpt.php:589
1992
  msgid ""
1993
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1994
  "mode. You can also filter the events by events by category and venue. The "
@@ -1998,11 +1998,11 @@ msgstr ""
1998
  "mode. You can also filter the events by events by category and venue. The "
1999
  "'go to date' button allows you to quickly jump to a specific date."
2000
 
2001
- #: includes/event-organiser-cpt.php:593
2002
  msgid "Add Event"
2003
  msgstr "Προσθήκη Event"
2004
 
2005
- #: includes/event-organiser-cpt.php:594
2006
  msgid ""
2007
  "You can create an event on this Calendar, by clicking on day or dragging "
2008
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -2016,28 +2016,28 @@ msgstr ""
2016
  "The event can be immediately published or saved as a draft. In any case, the "
2017
  "event is created and you are forwarded to that event's edit page."
2018
 
2019
- #: includes/event-organiser-cpt.php:600
2020
  msgid "For more information"
2021
  msgstr "Για περισσότερες πληροφορίες"
2022
 
2023
- #: includes/event-organiser-cpt.php:601
2024
  #, php-format
2025
  msgid "See the <a %s> documentation</a>"
2026
  msgstr "Δες την <a %s> αρθογραφία</a>"
2027
 
2028
- #: includes/event-organiser-cpt.php:602
2029
  msgid "Debugging Event Organiser"
2030
  msgstr "Αποσφαλμάτωση Event Organizer"
2031
 
2032
- #: includes/event-organiser-cpt.php:603
2033
  msgid "Go Pro!"
2034
  msgstr "Αναβάθμιση σε Pro!"
2035
 
2036
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2037
  msgid "Color"
2038
  msgstr "Χρώμα"
2039
 
2040
- #: includes/event-organiser-cpt.php:719
2041
  msgid "Assign the category a colour."
2042
  msgstr "Ορισε στην κατηγορία ένα χρώμα"
2043
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2017-04-14T23:02:23+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1312
  "%s."
1313
  msgstr ""
1314
 
1315
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1316
  #, php-format
1317
  msgid "[Lines %1$d-%2$d]"
1318
  msgstr "[Γραμμές %1$d-%2$d]"
1319
 
1320
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1321
  #, php-format
1322
  msgid "[Line %1$d]"
1323
  msgstr "[Γραμμή %1$d]"
1324
 
1325
+ #: includes/class-eo-ical-parser.php:1066
1326
  #, php-format
1327
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1328
  msgstr ""
1329
  "Μη έγκυρη ημερομηνία \"%s\". Η ημερομηνία πρέπει να είναι σε YYYYMMDD format."
1330
 
1331
+ #: includes/class-eo-ical-parser.php:1104
1332
  #, php-format
1333
  msgid ""
1334
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1937
  "Μόνο προϋπάρχουσα χώρους μπορεί να επιλεγεί. Για να προσθέσετε ένα χώρο, "
1938
  "μεταβείτε στη σελίδα χώρους."
1939
 
1940
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1941
+ #: includes/event-organiser-cpt.php:590
1942
  msgid "Overview"
1943
  msgstr "Περίληψη"
1944
 
1945
+ #: includes/event-organiser-cpt.php:565
1946
  msgid ""
1947
  "This is the list of all saved events. Note that <strong> recurring events "
1948
  "appear as a single row </strong> in the table and the start and end date "
1953
  "πίνακα και την ημερομηνία έναρξης και λήξης αναφέρεται στην πρώτη εμφάνιση "
1954
  "αυτού του γεγονότος."
1955
 
1956
+ #: includes/event-organiser-cpt.php:572
1957
  msgid ""
1958
  "Hovering over a row in the venues list will display action links that allow "
1959
  "you to manage that venue. You can perform the following actions:"
1962
  "που σας επιτρέπουν να διαχειριστεί το εν λόγω χώρο. Μπορείτε να εκτελέσετε "
1963
  "τις ακόλουθες ενέργειες:"
1964
 
1965
+ #: includes/event-organiser-cpt.php:574
1966
  msgid ""
1967
  "Edit takes you to the editing screen for that venue. You can also reach that "
1968
  "screen by clicking on the venue title."
1970
  "Επεξεργασία σας μεταφέρει στην οθόνη επεξεργασίας για το συγκεκριμένο χώρο. "
1971
  "Μπορείτε να φτάσετε επίσης ότι η οθόνη κάνοντας κλικ στον τίτλο τόπο."
1972
 
1973
+ #: includes/event-organiser-cpt.php:575
1974
  msgid "Delete will permanently remove the venue"
1975
  msgstr "Διαγραφή θα αφαιρέσει οριστικά το χώρο"
1976
 
1977
+ #: includes/event-organiser-cpt.php:576
1978
  msgid "View will take you to the venue's page"
1979
  msgstr "Η Εμφάνιση θα οδηγήσει σην σελίδα με τις τοποθεσίες."
1980
 
1981
+ #: includes/event-organiser-cpt.php:591
1982
  msgid ""
1983
  "This page shows all (occurrances of) events. You can view the summary of an "
1984
  "event by clicking on it. If you have the necessary permissions, a link to "
1988
  "event by clicking on it. If you have the necessary permissions, a link to "
1989
  "the event's edit page will appear also."
1990
 
1991
+ #: includes/event-organiser-cpt.php:592
1992
  msgid ""
1993
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1994
  "mode. You can also filter the events by events by category and venue. The "
1998
  "mode. You can also filter the events by events by category and venue. The "
1999
  "'go to date' button allows you to quickly jump to a specific date."
2000
 
2001
+ #: includes/event-organiser-cpt.php:596
2002
  msgid "Add Event"
2003
  msgstr "Προσθήκη Event"
2004
 
2005
+ #: includes/event-organiser-cpt.php:597
2006
  msgid ""
2007
  "You can create an event on this Calendar, by clicking on day or dragging "
2008
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
2016
  "The event can be immediately published or saved as a draft. In any case, the "
2017
  "event is created and you are forwarded to that event's edit page."
2018
 
2019
+ #: includes/event-organiser-cpt.php:604
2020
  msgid "For more information"
2021
  msgstr "Για περισσότερες πληροφορίες"
2022
 
2023
+ #: includes/event-organiser-cpt.php:605
2024
  #, php-format
2025
  msgid "See the <a %s> documentation</a>"
2026
  msgstr "Δες την <a %s> αρθογραφία</a>"
2027
 
2028
+ #: includes/event-organiser-cpt.php:606
2029
  msgid "Debugging Event Organiser"
2030
  msgstr "Αποσφαλμάτωση Event Organizer"
2031
 
2032
+ #: includes/event-organiser-cpt.php:607
2033
  msgid "Go Pro!"
2034
  msgstr "Αναβάθμιση σε Pro!"
2035
 
2036
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2037
  msgid "Color"
2038
  msgstr "Χρώμα"
2039
 
2040
+ #: includes/event-organiser-cpt.php:723
2041
  msgid "Assign the category a colour."
2042
  msgstr "Ορισε στην κατηγορία ένα χρώμα"
2043
 
languages/eventorganiser-en_CA.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:17:15+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1286,22 +1286,22 @@ msgid ""
1286
  "%s."
1287
  msgstr ""
1288
 
1289
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1290
  #, php-format
1291
  msgid "[Lines %1$d-%2$d]"
1292
  msgstr ""
1293
 
1294
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1295
  #, php-format
1296
  msgid "[Line %1$d]"
1297
  msgstr ""
1298
 
1299
- #: includes/class-eo-ical-parser.php:1044
1300
  #, php-format
1301
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1302
  msgstr ""
1303
 
1304
- #: includes/class-eo-ical-parser.php:1082
1305
  #, php-format
1306
  msgid ""
1307
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1877,57 +1877,57 @@ msgid ""
1877
  "page."
1878
  msgstr ""
1879
 
1880
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1881
- #: includes/event-organiser-cpt.php:587
1882
  msgid "Overview"
1883
  msgstr ""
1884
 
1885
- #: includes/event-organiser-cpt.php:566
1886
  msgid ""
1887
  "This is the list of all saved events. Note that <strong> recurring events "
1888
  "appear as a single row </strong> in the table and the start and end date "
1889
  "refers to the first occurrence of that event."
1890
  msgstr ""
1891
 
1892
- #: includes/event-organiser-cpt.php:574
1893
  msgid ""
1894
  "Hovering over a row in the venues list will display action links that allow "
1895
  "you to manage that venue. You can perform the following actions:"
1896
  msgstr ""
1897
 
1898
- #: includes/event-organiser-cpt.php:576
1899
  msgid ""
1900
  "Edit takes you to the editing screen for that venue. You can also reach that "
1901
  "screen by clicking on the venue title."
1902
  msgstr ""
1903
 
1904
- #: includes/event-organiser-cpt.php:577
1905
  msgid "Delete will permanently remove the venue"
1906
  msgstr ""
1907
 
1908
- #: includes/event-organiser-cpt.php:578
1909
  msgid "View will take you to the venue's page"
1910
  msgstr ""
1911
 
1912
- #: includes/event-organiser-cpt.php:588
1913
  msgid ""
1914
  "This page shows all (occurrances of) events. You can view the summary of an "
1915
  "event by clicking on it. If you have the necessary permissions, a link to "
1916
  "the event's edit page will appear also."
1917
  msgstr ""
1918
 
1919
- #: includes/event-organiser-cpt.php:589
1920
  msgid ""
1921
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1922
  "mode. You can also filter the events by events by category and venue. The "
1923
  "'go to date' button allows you to quickly jump to a specific date."
1924
  msgstr ""
1925
 
1926
- #: includes/event-organiser-cpt.php:593
1927
  msgid "Add Event"
1928
  msgstr ""
1929
 
1930
- #: includes/event-organiser-cpt.php:594
1931
  msgid ""
1932
  "You can create an event on this Calendar, by clicking on day or dragging "
1933
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1936,28 +1936,28 @@ msgid ""
1936
  "event is created and you are forwarded to that event's edit page."
1937
  msgstr ""
1938
 
1939
- #: includes/event-organiser-cpt.php:600
1940
  msgid "For more information"
1941
  msgstr ""
1942
 
1943
- #: includes/event-organiser-cpt.php:601
1944
  #, php-format
1945
  msgid "See the <a %s> documentation</a>"
1946
  msgstr ""
1947
 
1948
- #: includes/event-organiser-cpt.php:602
1949
  msgid "Debugging Event Organiser"
1950
  msgstr ""
1951
 
1952
- #: includes/event-organiser-cpt.php:603
1953
  msgid "Go Pro!"
1954
  msgstr ""
1955
 
1956
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
1957
  msgid "Color"
1958
  msgstr ""
1959
 
1960
- #: includes/event-organiser-cpt.php:719
1961
  msgid "Assign the category a colour."
1962
  msgstr ""
1963
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:17:15+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1286
  "%s."
1287
  msgstr ""
1288
 
1289
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1290
  #, php-format
1291
  msgid "[Lines %1$d-%2$d]"
1292
  msgstr ""
1293
 
1294
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1295
  #, php-format
1296
  msgid "[Line %1$d]"
1297
  msgstr ""
1298
 
1299
+ #: includes/class-eo-ical-parser.php:1066
1300
  #, php-format
1301
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1302
  msgstr ""
1303
 
1304
+ #: includes/class-eo-ical-parser.php:1104
1305
  #, php-format
1306
  msgid ""
1307
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1877
  "page."
1878
  msgstr ""
1879
 
1880
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1881
+ #: includes/event-organiser-cpt.php:590
1882
  msgid "Overview"
1883
  msgstr ""
1884
 
1885
+ #: includes/event-organiser-cpt.php:565
1886
  msgid ""
1887
  "This is the list of all saved events. Note that <strong> recurring events "
1888
  "appear as a single row </strong> in the table and the start and end date "
1889
  "refers to the first occurrence of that event."
1890
  msgstr ""
1891
 
1892
+ #: includes/event-organiser-cpt.php:572
1893
  msgid ""
1894
  "Hovering over a row in the venues list will display action links that allow "
1895
  "you to manage that venue. You can perform the following actions:"
1896
  msgstr ""
1897
 
1898
+ #: includes/event-organiser-cpt.php:574
1899
  msgid ""
1900
  "Edit takes you to the editing screen for that venue. You can also reach that "
1901
  "screen by clicking on the venue title."
1902
  msgstr ""
1903
 
1904
+ #: includes/event-organiser-cpt.php:575
1905
  msgid "Delete will permanently remove the venue"
1906
  msgstr ""
1907
 
1908
+ #: includes/event-organiser-cpt.php:576
1909
  msgid "View will take you to the venue's page"
1910
  msgstr ""
1911
 
1912
+ #: includes/event-organiser-cpt.php:591
1913
  msgid ""
1914
  "This page shows all (occurrances of) events. You can view the summary of an "
1915
  "event by clicking on it. If you have the necessary permissions, a link to "
1916
  "the event's edit page will appear also."
1917
  msgstr ""
1918
 
1919
+ #: includes/event-organiser-cpt.php:592
1920
  msgid ""
1921
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1922
  "mode. You can also filter the events by events by category and venue. The "
1923
  "'go to date' button allows you to quickly jump to a specific date."
1924
  msgstr ""
1925
 
1926
+ #: includes/event-organiser-cpt.php:596
1927
  msgid "Add Event"
1928
  msgstr ""
1929
 
1930
+ #: includes/event-organiser-cpt.php:597
1931
  msgid ""
1932
  "You can create an event on this Calendar, by clicking on day or dragging "
1933
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1936
  "event is created and you are forwarded to that event's edit page."
1937
  msgstr ""
1938
 
1939
+ #: includes/event-organiser-cpt.php:604
1940
  msgid "For more information"
1941
  msgstr ""
1942
 
1943
+ #: includes/event-organiser-cpt.php:605
1944
  #, php-format
1945
  msgid "See the <a %s> documentation</a>"
1946
  msgstr ""
1947
 
1948
+ #: includes/event-organiser-cpt.php:606
1949
  msgid "Debugging Event Organiser"
1950
  msgstr ""
1951
 
1952
+ #: includes/event-organiser-cpt.php:607
1953
  msgid "Go Pro!"
1954
  msgstr ""
1955
 
1956
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
1957
  msgid "Color"
1958
  msgstr ""
1959
 
1960
+ #: includes/event-organiser-cpt.php:723
1961
  msgid "Assign the category a colour."
1962
  msgstr ""
1963
 
languages/eventorganiser-en_GB.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2016-11-26T14:51:57+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1267,22 +1267,22 @@ msgid ""
1267
  "%s."
1268
  msgstr ""
1269
 
1270
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1271
  #, php-format
1272
  msgid "[Lines %1$d-%2$d]"
1273
  msgstr ""
1274
 
1275
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1276
  #, php-format
1277
  msgid "[Line %1$d]"
1278
  msgstr ""
1279
 
1280
- #: includes/class-eo-ical-parser.php:1044
1281
  #, php-format
1282
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1283
  msgstr ""
1284
 
1285
- #: includes/class-eo-ical-parser.php:1082
1286
  #, php-format
1287
  msgid ""
1288
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1857,57 +1857,57 @@ msgid ""
1857
  "page."
1858
  msgstr ""
1859
 
1860
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1861
- #: includes/event-organiser-cpt.php:587
1862
  msgid "Overview"
1863
  msgstr ""
1864
 
1865
- #: includes/event-organiser-cpt.php:566
1866
  msgid ""
1867
  "This is the list of all saved events. Note that <strong> recurring events "
1868
  "appear as a single row </strong> in the table and the start and end date "
1869
  "refers to the first occurrence of that event."
1870
  msgstr ""
1871
 
1872
- #: includes/event-organiser-cpt.php:574
1873
  msgid ""
1874
  "Hovering over a row in the venues list will display action links that allow "
1875
  "you to manage that venue. You can perform the following actions:"
1876
  msgstr ""
1877
 
1878
- #: includes/event-organiser-cpt.php:576
1879
  msgid ""
1880
  "Edit takes you to the editing screen for that venue. You can also reach that "
1881
  "screen by clicking on the venue title."
1882
  msgstr ""
1883
 
1884
- #: includes/event-organiser-cpt.php:577
1885
  msgid "Delete will permanently remove the venue"
1886
  msgstr ""
1887
 
1888
- #: includes/event-organiser-cpt.php:578
1889
  msgid "View will take you to the venue's page"
1890
  msgstr ""
1891
 
1892
- #: includes/event-organiser-cpt.php:588
1893
  msgid ""
1894
  "This page shows all (occurrances of) events. You can view the summary of an "
1895
  "event by clicking on it. If you have the necessary permissions, a link to "
1896
  "the event's edit page will appear also."
1897
  msgstr ""
1898
 
1899
- #: includes/event-organiser-cpt.php:589
1900
  msgid ""
1901
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1902
  "mode. You can also filter the events by events by category and venue. The "
1903
  "'go to date' button allows you to quickly jump to a specific date."
1904
  msgstr ""
1905
 
1906
- #: includes/event-organiser-cpt.php:593
1907
  msgid "Add Event"
1908
  msgstr ""
1909
 
1910
- #: includes/event-organiser-cpt.php:594
1911
  msgid ""
1912
  "You can create an event on this Calendar, by clicking on day or dragging "
1913
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1916,28 +1916,28 @@ msgid ""
1916
  "event is created and you are forwarded to that event's edit page."
1917
  msgstr ""
1918
 
1919
- #: includes/event-organiser-cpt.php:600
1920
  msgid "For more information"
1921
  msgstr ""
1922
 
1923
- #: includes/event-organiser-cpt.php:601
1924
  #, php-format
1925
  msgid "See the <a %s> documentation</a>"
1926
  msgstr ""
1927
 
1928
- #: includes/event-organiser-cpt.php:602
1929
  msgid "Debugging Event Organiser"
1930
  msgstr ""
1931
 
1932
- #: includes/event-organiser-cpt.php:603
1933
  msgid "Go Pro!"
1934
  msgstr ""
1935
 
1936
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
1937
  msgid "Color"
1938
  msgstr ""
1939
 
1940
- #: includes/event-organiser-cpt.php:719
1941
  msgid "Assign the category a colour."
1942
  msgstr ""
1943
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2016-11-26T14:51:57+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1267
  "%s."
1268
  msgstr ""
1269
 
1270
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1271
  #, php-format
1272
  msgid "[Lines %1$d-%2$d]"
1273
  msgstr ""
1274
 
1275
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1276
  #, php-format
1277
  msgid "[Line %1$d]"
1278
  msgstr ""
1279
 
1280
+ #: includes/class-eo-ical-parser.php:1066
1281
  #, php-format
1282
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1283
  msgstr ""
1284
 
1285
+ #: includes/class-eo-ical-parser.php:1104
1286
  #, php-format
1287
  msgid ""
1288
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1857
  "page."
1858
  msgstr ""
1859
 
1860
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1861
+ #: includes/event-organiser-cpt.php:590
1862
  msgid "Overview"
1863
  msgstr ""
1864
 
1865
+ #: includes/event-organiser-cpt.php:565
1866
  msgid ""
1867
  "This is the list of all saved events. Note that <strong> recurring events "
1868
  "appear as a single row </strong> in the table and the start and end date "
1869
  "refers to the first occurrence of that event."
1870
  msgstr ""
1871
 
1872
+ #: includes/event-organiser-cpt.php:572
1873
  msgid ""
1874
  "Hovering over a row in the venues list will display action links that allow "
1875
  "you to manage that venue. You can perform the following actions:"
1876
  msgstr ""
1877
 
1878
+ #: includes/event-organiser-cpt.php:574
1879
  msgid ""
1880
  "Edit takes you to the editing screen for that venue. You can also reach that "
1881
  "screen by clicking on the venue title."
1882
  msgstr ""
1883
 
1884
+ #: includes/event-organiser-cpt.php:575
1885
  msgid "Delete will permanently remove the venue"
1886
  msgstr ""
1887
 
1888
+ #: includes/event-organiser-cpt.php:576
1889
  msgid "View will take you to the venue's page"
1890
  msgstr ""
1891
 
1892
+ #: includes/event-organiser-cpt.php:591
1893
  msgid ""
1894
  "This page shows all (occurrances of) events. You can view the summary of an "
1895
  "event by clicking on it. If you have the necessary permissions, a link to "
1896
  "the event's edit page will appear also."
1897
  msgstr ""
1898
 
1899
+ #: includes/event-organiser-cpt.php:592
1900
  msgid ""
1901
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1902
  "mode. You can also filter the events by events by category and venue. The "
1903
  "'go to date' button allows you to quickly jump to a specific date."
1904
  msgstr ""
1905
 
1906
+ #: includes/event-organiser-cpt.php:596
1907
  msgid "Add Event"
1908
  msgstr ""
1909
 
1910
+ #: includes/event-organiser-cpt.php:597
1911
  msgid ""
1912
  "You can create an event on this Calendar, by clicking on day or dragging "
1913
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1916
  "event is created and you are forwarded to that event's edit page."
1917
  msgstr ""
1918
 
1919
+ #: includes/event-organiser-cpt.php:604
1920
  msgid "For more information"
1921
  msgstr ""
1922
 
1923
+ #: includes/event-organiser-cpt.php:605
1924
  #, php-format
1925
  msgid "See the <a %s> documentation</a>"
1926
  msgstr ""
1927
 
1928
+ #: includes/event-organiser-cpt.php:606
1929
  msgid "Debugging Event Organiser"
1930
  msgstr ""
1931
 
1932
+ #: includes/event-organiser-cpt.php:607
1933
  msgid "Go Pro!"
1934
  msgstr ""
1935
 
1936
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
1937
  msgid "Color"
1938
  msgstr ""
1939
 
1940
+ #: includes/event-organiser-cpt.php:723
1941
  msgid "Assign the category a colour."
1942
  msgstr ""
1943
 
languages/eventorganiser-es_ES.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2017-04-14T23:01:00+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1312,22 +1312,22 @@ msgid ""
1312
  "%s."
1313
  msgstr ""
1314
 
1315
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1316
  #, php-format
1317
  msgid "[Lines %1$d-%2$d]"
1318
  msgstr "[Líneas %1$d-%2$d]"
1319
 
1320
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1321
  #, php-format
1322
  msgid "[Line %1$d]"
1323
  msgstr "[Línea %1$d]"
1324
 
1325
- #: includes/class-eo-ical-parser.php:1044
1326
  #, php-format
1327
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1328
  msgstr "Fecha inválida \"%s\". Fecha esperada en formato AAAAMMDD."
1329
 
1330
- #: includes/class-eo-ical-parser.php:1082
1331
  #, php-format
1332
  msgid ""
1333
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1934,12 +1934,12 @@ msgstr ""
1934
  "Solamente lugares de encuentro pre existentes pueden ser seleccionados. Para "
1935
  "adicionar un lugar de encuentro, vaya a la página de lugares de encuentro."
1936
 
1937
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1938
- #: includes/event-organiser-cpt.php:587
1939
  msgid "Overview"
1940
  msgstr "Resumen"
1941
 
1942
- #: includes/event-organiser-cpt.php:566
1943
  msgid ""
1944
  "This is the list of all saved events. Note that <strong> recurring events "
1945
  "appear as a single row </strong> in the table and the start and end date "
@@ -1949,7 +1949,7 @@ msgstr ""
1949
  "eventos recurrentes aparecen como una sola línea </strong> en la tabla y las "
1950
  "fechas de inicio y fin se refieren a la primera ocurrencia de ese evento."
1951
 
1952
- #: includes/event-organiser-cpt.php:574
1953
  msgid ""
1954
  "Hovering over a row in the venues list will display action links that allow "
1955
  "you to manage that venue. You can perform the following actions:"
@@ -1958,7 +1958,7 @@ msgstr ""
1958
  "enlaces de acción que le permiten gestionar ese lugar de evento. Usted puede "
1959
  "ejecutar las siguientes acciones:"
1960
 
1961
- #: includes/event-organiser-cpt.php:576
1962
  msgid ""
1963
  "Edit takes you to the editing screen for that venue. You can also reach that "
1964
  "screen by clicking on the venue title."
@@ -1967,15 +1967,15 @@ msgstr ""
1967
  "puede también alcanzar esa pantalla haciendo clic en el título del lugar de "
1968
  "evento."
1969
 
1970
- #: includes/event-organiser-cpt.php:577
1971
  msgid "Delete will permanently remove the venue"
1972
  msgstr "Borrar borrará definitivamente el lugar de evento"
1973
 
1974
- #: includes/event-organiser-cpt.php:578
1975
  msgid "View will take you to the venue's page"
1976
  msgstr "Ver le llevará a la página de lugares de evento"
1977
 
1978
- #: includes/event-organiser-cpt.php:588
1979
  msgid ""
1980
  "This page shows all (occurrances of) events. You can view the summary of an "
1981
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -1985,7 +1985,7 @@ msgstr ""
1985
  "sumario de un evento haciendo clic en él. Si tiene los permisos necesarios, "
1986
  "un enlace a la página de edición de eventos también aparecerá."
1987
 
1988
- #: includes/event-organiser-cpt.php:589
1989
  msgid ""
1990
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1991
  "mode. You can also filter the events by events by category and venue. The "
@@ -1996,11 +1996,11 @@ msgstr ""
1996
  "categorías y por lugares de eventos. El botón 'ir a fecha' le permite saltar "
1997
  "rápidamente a una fecha específica."
1998
 
1999
- #: includes/event-organiser-cpt.php:593
2000
  msgid "Add Event"
2001
  msgstr "Adicionar Evento"
2002
 
2003
- #: includes/event-organiser-cpt.php:594
2004
  msgid ""
2005
  "You can create an event on this Calendar, by clicking on day or dragging "
2006
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -2015,28 +2015,28 @@ msgstr ""
2015
  "inmediatamente publicado o salvado como un borrador. En cualquier caso, el "
2016
  "evento es creado y usted es redirigido a esa página de edición de eventos."
2017
 
2018
- #: includes/event-organiser-cpt.php:600
2019
  msgid "For more information"
2020
  msgstr "Para más información"
2021
 
2022
- #: includes/event-organiser-cpt.php:601
2023
  #, php-format
2024
  msgid "See the <a %s> documentation</a>"
2025
  msgstr "Vea la <a %s> documentación</a>"
2026
 
2027
- #: includes/event-organiser-cpt.php:602
2028
  msgid "Debugging Event Organiser"
2029
  msgstr "Debugueando Event Organiser"
2030
 
2031
- #: includes/event-organiser-cpt.php:603
2032
  msgid "Go Pro!"
2033
  msgstr "¡Obtener Pro!"
2034
 
2035
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2036
  msgid "Color"
2037
  msgstr "Color"
2038
 
2039
- #: includes/event-organiser-cpt.php:719
2040
  msgid "Assign the category a colour."
2041
  msgstr "Asignar a la categoría un color"
2042
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2017-04-14T23:01:00+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1312
  "%s."
1313
  msgstr ""
1314
 
1315
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1316
  #, php-format
1317
  msgid "[Lines %1$d-%2$d]"
1318
  msgstr "[Líneas %1$d-%2$d]"
1319
 
1320
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1321
  #, php-format
1322
  msgid "[Line %1$d]"
1323
  msgstr "[Línea %1$d]"
1324
 
1325
+ #: includes/class-eo-ical-parser.php:1066
1326
  #, php-format
1327
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1328
  msgstr "Fecha inválida \"%s\". Fecha esperada en formato AAAAMMDD."
1329
 
1330
+ #: includes/class-eo-ical-parser.php:1104
1331
  #, php-format
1332
  msgid ""
1333
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1934
  "Solamente lugares de encuentro pre existentes pueden ser seleccionados. Para "
1935
  "adicionar un lugar de encuentro, vaya a la página de lugares de encuentro."
1936
 
1937
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1938
+ #: includes/event-organiser-cpt.php:590
1939
  msgid "Overview"
1940
  msgstr "Resumen"
1941
 
1942
+ #: includes/event-organiser-cpt.php:565
1943
  msgid ""
1944
  "This is the list of all saved events. Note that <strong> recurring events "
1945
  "appear as a single row </strong> in the table and the start and end date "
1949
  "eventos recurrentes aparecen como una sola línea </strong> en la tabla y las "
1950
  "fechas de inicio y fin se refieren a la primera ocurrencia de ese evento."
1951
 
1952
+ #: includes/event-organiser-cpt.php:572
1953
  msgid ""
1954
  "Hovering over a row in the venues list will display action links that allow "
1955
  "you to manage that venue. You can perform the following actions:"
1958
  "enlaces de acción que le permiten gestionar ese lugar de evento. Usted puede "
1959
  "ejecutar las siguientes acciones:"
1960
 
1961
+ #: includes/event-organiser-cpt.php:574
1962
  msgid ""
1963
  "Edit takes you to the editing screen for that venue. You can also reach that "
1964
  "screen by clicking on the venue title."
1967
  "puede también alcanzar esa pantalla haciendo clic en el título del lugar de "
1968
  "evento."
1969
 
1970
+ #: includes/event-organiser-cpt.php:575
1971
  msgid "Delete will permanently remove the venue"
1972
  msgstr "Borrar borrará definitivamente el lugar de evento"
1973
 
1974
+ #: includes/event-organiser-cpt.php:576
1975
  msgid "View will take you to the venue's page"
1976
  msgstr "Ver le llevará a la página de lugares de evento"
1977
 
1978
+ #: includes/event-organiser-cpt.php:591
1979
  msgid ""
1980
  "This page shows all (occurrances of) events. You can view the summary of an "
1981
  "event by clicking on it. If you have the necessary permissions, a link to "
1985
  "sumario de un evento haciendo clic en él. Si tiene los permisos necesarios, "
1986
  "un enlace a la página de edición de eventos también aparecerá."
1987
 
1988
+ #: includes/event-organiser-cpt.php:592
1989
  msgid ""
1990
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1991
  "mode. You can also filter the events by events by category and venue. The "
1996
  "categorías y por lugares de eventos. El botón 'ir a fecha' le permite saltar "
1997
  "rápidamente a una fecha específica."
1998
 
1999
+ #: includes/event-organiser-cpt.php:596
2000
  msgid "Add Event"
2001
  msgstr "Adicionar Evento"
2002
 
2003
+ #: includes/event-organiser-cpt.php:597
2004
  msgid ""
2005
  "You can create an event on this Calendar, by clicking on day or dragging "
2006
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
2015
  "inmediatamente publicado o salvado como un borrador. En cualquier caso, el "
2016
  "evento es creado y usted es redirigido a esa página de edición de eventos."
2017
 
2018
+ #: includes/event-organiser-cpt.php:604
2019
  msgid "For more information"
2020
  msgstr "Para más información"
2021
 
2022
+ #: includes/event-organiser-cpt.php:605
2023
  #, php-format
2024
  msgid "See the <a %s> documentation</a>"
2025
  msgstr "Vea la <a %s> documentación</a>"
2026
 
2027
+ #: includes/event-organiser-cpt.php:606
2028
  msgid "Debugging Event Organiser"
2029
  msgstr "Debugueando Event Organiser"
2030
 
2031
+ #: includes/event-organiser-cpt.php:607
2032
  msgid "Go Pro!"
2033
  msgstr "¡Obtener Pro!"
2034
 
2035
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2036
  msgid "Color"
2037
  msgstr "Color"
2038
 
2039
+ #: includes/event-organiser-cpt.php:723
2040
  msgid "Assign the category a colour."
2041
  msgstr "Asignar a la categoría un color"
2042
 
languages/eventorganiser-es_PE.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2017-09-11T22:37:13+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1269,22 +1269,22 @@ msgid ""
1269
  "%s."
1270
  msgstr ""
1271
 
1272
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1273
  #, php-format
1274
  msgid "[Lines %1$d-%2$d]"
1275
  msgstr ""
1276
 
1277
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1278
  #, php-format
1279
  msgid "[Line %1$d]"
1280
  msgstr ""
1281
 
1282
- #: includes/class-eo-ical-parser.php:1044
1283
  #, php-format
1284
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1285
  msgstr ""
1286
 
1287
- #: includes/class-eo-ical-parser.php:1082
1288
  #, php-format
1289
  msgid ""
1290
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1859,57 +1859,57 @@ msgid ""
1859
  "page."
1860
  msgstr ""
1861
 
1862
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1863
- #: includes/event-organiser-cpt.php:587
1864
  msgid "Overview"
1865
  msgstr ""
1866
 
1867
- #: includes/event-organiser-cpt.php:566
1868
  msgid ""
1869
  "This is the list of all saved events. Note that <strong> recurring events "
1870
  "appear as a single row </strong> in the table and the start and end date "
1871
  "refers to the first occurrence of that event."
1872
  msgstr ""
1873
 
1874
- #: includes/event-organiser-cpt.php:574
1875
  msgid ""
1876
  "Hovering over a row in the venues list will display action links that allow "
1877
  "you to manage that venue. You can perform the following actions:"
1878
  msgstr ""
1879
 
1880
- #: includes/event-organiser-cpt.php:576
1881
  msgid ""
1882
  "Edit takes you to the editing screen for that venue. You can also reach that "
1883
  "screen by clicking on the venue title."
1884
  msgstr ""
1885
 
1886
- #: includes/event-organiser-cpt.php:577
1887
  msgid "Delete will permanently remove the venue"
1888
  msgstr ""
1889
 
1890
- #: includes/event-organiser-cpt.php:578
1891
  msgid "View will take you to the venue's page"
1892
  msgstr ""
1893
 
1894
- #: includes/event-organiser-cpt.php:588
1895
  msgid ""
1896
  "This page shows all (occurrances of) events. You can view the summary of an "
1897
  "event by clicking on it. If you have the necessary permissions, a link to "
1898
  "the event's edit page will appear also."
1899
  msgstr ""
1900
 
1901
- #: includes/event-organiser-cpt.php:589
1902
  msgid ""
1903
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1904
  "mode. You can also filter the events by events by category and venue. The "
1905
  "'go to date' button allows you to quickly jump to a specific date."
1906
  msgstr ""
1907
 
1908
- #: includes/event-organiser-cpt.php:593
1909
  msgid "Add Event"
1910
  msgstr ""
1911
 
1912
- #: includes/event-organiser-cpt.php:594
1913
  msgid ""
1914
  "You can create an event on this Calendar, by clicking on day or dragging "
1915
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1918,28 +1918,28 @@ msgid ""
1918
  "event is created and you are forwarded to that event's edit page."
1919
  msgstr ""
1920
 
1921
- #: includes/event-organiser-cpt.php:600
1922
  msgid "For more information"
1923
  msgstr ""
1924
 
1925
- #: includes/event-organiser-cpt.php:601
1926
  #, php-format
1927
  msgid "See the <a %s> documentation</a>"
1928
  msgstr ""
1929
 
1930
- #: includes/event-organiser-cpt.php:602
1931
  msgid "Debugging Event Organiser"
1932
  msgstr ""
1933
 
1934
- #: includes/event-organiser-cpt.php:603
1935
  msgid "Go Pro!"
1936
  msgstr ""
1937
 
1938
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
1939
  msgid "Color"
1940
  msgstr ""
1941
 
1942
- #: includes/event-organiser-cpt.php:719
1943
  msgid "Assign the category a colour."
1944
  msgstr ""
1945
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2017-09-11T22:37:13+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1269
  "%s."
1270
  msgstr ""
1271
 
1272
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1273
  #, php-format
1274
  msgid "[Lines %1$d-%2$d]"
1275
  msgstr ""
1276
 
1277
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1278
  #, php-format
1279
  msgid "[Line %1$d]"
1280
  msgstr ""
1281
 
1282
+ #: includes/class-eo-ical-parser.php:1066
1283
  #, php-format
1284
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1285
  msgstr ""
1286
 
1287
+ #: includes/class-eo-ical-parser.php:1104
1288
  #, php-format
1289
  msgid ""
1290
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1859
  "page."
1860
  msgstr ""
1861
 
1862
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1863
+ #: includes/event-organiser-cpt.php:590
1864
  msgid "Overview"
1865
  msgstr ""
1866
 
1867
+ #: includes/event-organiser-cpt.php:565
1868
  msgid ""
1869
  "This is the list of all saved events. Note that <strong> recurring events "
1870
  "appear as a single row </strong> in the table and the start and end date "
1871
  "refers to the first occurrence of that event."
1872
  msgstr ""
1873
 
1874
+ #: includes/event-organiser-cpt.php:572
1875
  msgid ""
1876
  "Hovering over a row in the venues list will display action links that allow "
1877
  "you to manage that venue. You can perform the following actions:"
1878
  msgstr ""
1879
 
1880
+ #: includes/event-organiser-cpt.php:574
1881
  msgid ""
1882
  "Edit takes you to the editing screen for that venue. You can also reach that "
1883
  "screen by clicking on the venue title."
1884
  msgstr ""
1885
 
1886
+ #: includes/event-organiser-cpt.php:575
1887
  msgid "Delete will permanently remove the venue"
1888
  msgstr ""
1889
 
1890
+ #: includes/event-organiser-cpt.php:576
1891
  msgid "View will take you to the venue's page"
1892
  msgstr ""
1893
 
1894
+ #: includes/event-organiser-cpt.php:591
1895
  msgid ""
1896
  "This page shows all (occurrances of) events. You can view the summary of an "
1897
  "event by clicking on it. If you have the necessary permissions, a link to "
1898
  "the event's edit page will appear also."
1899
  msgstr ""
1900
 
1901
+ #: includes/event-organiser-cpt.php:592
1902
  msgid ""
1903
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1904
  "mode. You can also filter the events by events by category and venue. The "
1905
  "'go to date' button allows you to quickly jump to a specific date."
1906
  msgstr ""
1907
 
1908
+ #: includes/event-organiser-cpt.php:596
1909
  msgid "Add Event"
1910
  msgstr ""
1911
 
1912
+ #: includes/event-organiser-cpt.php:597
1913
  msgid ""
1914
  "You can create an event on this Calendar, by clicking on day or dragging "
1915
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1918
  "event is created and you are forwarded to that event's edit page."
1919
  msgstr ""
1920
 
1921
+ #: includes/event-organiser-cpt.php:604
1922
  msgid "For more information"
1923
  msgstr ""
1924
 
1925
+ #: includes/event-organiser-cpt.php:605
1926
  #, php-format
1927
  msgid "See the <a %s> documentation</a>"
1928
  msgstr ""
1929
 
1930
+ #: includes/event-organiser-cpt.php:606
1931
  msgid "Debugging Event Organiser"
1932
  msgstr ""
1933
 
1934
+ #: includes/event-organiser-cpt.php:607
1935
  msgid "Go Pro!"
1936
  msgstr ""
1937
 
1938
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
1939
  msgid "Color"
1940
  msgstr ""
1941
 
1942
+ #: includes/event-organiser-cpt.php:723
1943
  msgid "Assign the category a colour."
1944
  msgstr ""
1945
 
languages/eventorganiser-et.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:17:05+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1284,23 +1284,23 @@ msgid ""
1284
  "%s."
1285
  msgstr ""
1286
 
1287
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1288
  #, php-format
1289
  msgid "[Lines %1$d-%2$d]"
1290
  msgstr "[Read %1$d-%2$d]"
1291
 
1292
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1293
  #, php-format
1294
  msgid "[Line %1$d]"
1295
  msgstr "[Rida %1$d]"
1296
 
1297
- #: includes/class-eo-ical-parser.php:1044
1298
  #, php-format
1299
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1300
  msgstr ""
1301
  "Vale kuupäeva formaat \"%s\". Oodatud kuupäeva formaat: YYYYMMDD format."
1302
 
1303
- #: includes/class-eo-ical-parser.php:1082
1304
  #, php-format
1305
  msgid ""
1306
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1905,12 +1905,12 @@ msgstr ""
1905
  "Ainult olemasolevaid toimumispaiku saab valida. Uue lisamiseks, mine "
1906
  "toimumispaikade lehele."
1907
 
1908
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1909
- #: includes/event-organiser-cpt.php:587
1910
  msgid "Overview"
1911
  msgstr "Ülevaade"
1912
 
1913
- #: includes/event-organiser-cpt.php:566
1914
  msgid ""
1915
  "This is the list of all saved events. Note that <strong> recurring events "
1916
  "appear as a single row </strong> in the table and the start and end date "
@@ -1920,7 +1920,7 @@ msgstr ""
1920
  "<strong>korduvad sündmused kuvatakse ühe reana</strong>, ning alguskuupäeva "
1921
  "ja lõppkuupäeva viitavad esimesele sündmusele."
1922
 
1923
- #: includes/event-organiser-cpt.php:574
1924
  msgid ""
1925
  "Hovering over a row in the venues list will display action links that allow "
1926
  "you to manage that venue. You can perform the following actions:"
@@ -1928,7 +1928,7 @@ msgstr ""
1928
  "Minnes hiirega toimumispaikade tabeli rea kohale kuvatakse võimalikud "
1929
  "haldamise toimingud. On võimalik sooritada järgmisi toiminguid:"
1930
 
1931
- #: includes/event-organiser-cpt.php:576
1932
  msgid ""
1933
  "Edit takes you to the editing screen for that venue. You can also reach that "
1934
  "screen by clicking on the venue title."
@@ -1936,15 +1936,15 @@ msgstr ""
1936
  "Muuda viib sind antud toimumispaiga redigeerimislehele. Ka pealkirjal "
1937
  "klikkides on võimalik sinna lehele saada."
1938
 
1939
- #: includes/event-organiser-cpt.php:577
1940
  msgid "Delete will permanently remove the venue"
1941
  msgstr "Kustuta eemaldab jäädavalt toimumispaiga."
1942
 
1943
- #: includes/event-organiser-cpt.php:578
1944
  msgid "View will take you to the venue's page"
1945
  msgstr "Vaata viib sind toimumispaiga lehele."
1946
 
1947
- #: includes/event-organiser-cpt.php:588
1948
  msgid ""
1949
  "This page shows all (occurrances of) events. You can view the summary of an "
1950
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -1954,7 +1954,7 @@ msgstr ""
1954
  "võimalik näha kokkuvõtet. Kui on olemas vajalikud õigused, siis kuvatakse ka "
1955
  "viide sündmuse muutmiseks."
1956
 
1957
- #: includes/event-organiser-cpt.php:589
1958
  msgid ""
1959
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1960
  "mode. You can also filter the events by events by category and venue. The "
@@ -1965,11 +1965,11 @@ msgstr ""
1965
  "toimumispaikade alusel. 'Mine kuupäevale' nupp võimaldab kiirelt liikuda "
1966
  "kindlale kuupäevale."
1967
 
1968
- #: includes/event-organiser-cpt.php:593
1969
  msgid "Add Event"
1970
  msgstr "Lisa sündmus"
1971
 
1972
- #: includes/event-organiser-cpt.php:594
1973
  msgid ""
1974
  "You can create an event on this Calendar, by clicking on day or dragging "
1975
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1983,28 +1983,28 @@ msgstr ""
1983
  "kirjelduse. Sündmuse saab koheselt avaldada või salvestada mustandina. Igal "
1984
  "juhul luuakse sündmus ning suunatakse edasi sündmuse muutmise lehele. "
1985
 
1986
- #: includes/event-organiser-cpt.php:600
1987
  msgid "For more information"
1988
  msgstr "Lisainformatsiooni jaoks"
1989
 
1990
- #: includes/event-organiser-cpt.php:601
1991
  #, php-format
1992
  msgid "See the <a %s> documentation</a>"
1993
  msgstr "Uuri <a %s> dokumentatsiooni</a>"
1994
 
1995
- #: includes/event-organiser-cpt.php:602
1996
  msgid "Debugging Event Organiser"
1997
  msgstr "Ürituste Organiseerija vigade leidmine"
1998
 
1999
- #: includes/event-organiser-cpt.php:603
2000
  msgid "Go Pro!"
2001
  msgstr "Go Pro!"
2002
 
2003
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2004
  msgid "Color"
2005
  msgstr "Värv"
2006
 
2007
- #: includes/event-organiser-cpt.php:719
2008
  msgid "Assign the category a colour."
2009
  msgstr "Määra rubriigile värv."
2010
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:17:05+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1284
  "%s."
1285
  msgstr ""
1286
 
1287
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1288
  #, php-format
1289
  msgid "[Lines %1$d-%2$d]"
1290
  msgstr "[Read %1$d-%2$d]"
1291
 
1292
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1293
  #, php-format
1294
  msgid "[Line %1$d]"
1295
  msgstr "[Rida %1$d]"
1296
 
1297
+ #: includes/class-eo-ical-parser.php:1066
1298
  #, php-format
1299
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1300
  msgstr ""
1301
  "Vale kuupäeva formaat \"%s\". Oodatud kuupäeva formaat: YYYYMMDD format."
1302
 
1303
+ #: includes/class-eo-ical-parser.php:1104
1304
  #, php-format
1305
  msgid ""
1306
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1905
  "Ainult olemasolevaid toimumispaiku saab valida. Uue lisamiseks, mine "
1906
  "toimumispaikade lehele."
1907
 
1908
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1909
+ #: includes/event-organiser-cpt.php:590
1910
  msgid "Overview"
1911
  msgstr "Ülevaade"
1912
 
1913
+ #: includes/event-organiser-cpt.php:565
1914
  msgid ""
1915
  "This is the list of all saved events. Note that <strong> recurring events "
1916
  "appear as a single row </strong> in the table and the start and end date "
1920
  "<strong>korduvad sündmused kuvatakse ühe reana</strong>, ning alguskuupäeva "
1921
  "ja lõppkuupäeva viitavad esimesele sündmusele."
1922
 
1923
+ #: includes/event-organiser-cpt.php:572
1924
  msgid ""
1925
  "Hovering over a row in the venues list will display action links that allow "
1926
  "you to manage that venue. You can perform the following actions:"
1928
  "Minnes hiirega toimumispaikade tabeli rea kohale kuvatakse võimalikud "
1929
  "haldamise toimingud. On võimalik sooritada järgmisi toiminguid:"
1930
 
1931
+ #: includes/event-organiser-cpt.php:574
1932
  msgid ""
1933
  "Edit takes you to the editing screen for that venue. You can also reach that "
1934
  "screen by clicking on the venue title."
1936
  "Muuda viib sind antud toimumispaiga redigeerimislehele. Ka pealkirjal "
1937
  "klikkides on võimalik sinna lehele saada."
1938
 
1939
+ #: includes/event-organiser-cpt.php:575
1940
  msgid "Delete will permanently remove the venue"
1941
  msgstr "Kustuta eemaldab jäädavalt toimumispaiga."
1942
 
1943
+ #: includes/event-organiser-cpt.php:576
1944
  msgid "View will take you to the venue's page"
1945
  msgstr "Vaata viib sind toimumispaiga lehele."
1946
 
1947
+ #: includes/event-organiser-cpt.php:591
1948
  msgid ""
1949
  "This page shows all (occurrances of) events. You can view the summary of an "
1950
  "event by clicking on it. If you have the necessary permissions, a link to "
1954
  "võimalik näha kokkuvõtet. Kui on olemas vajalikud õigused, siis kuvatakse ka "
1955
  "viide sündmuse muutmiseks."
1956
 
1957
+ #: includes/event-organiser-cpt.php:592
1958
  msgid ""
1959
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1960
  "mode. You can also filter the events by events by category and venue. The "
1965
  "toimumispaikade alusel. 'Mine kuupäevale' nupp võimaldab kiirelt liikuda "
1966
  "kindlale kuupäevale."
1967
 
1968
+ #: includes/event-organiser-cpt.php:596
1969
  msgid "Add Event"
1970
  msgstr "Lisa sündmus"
1971
 
1972
+ #: includes/event-organiser-cpt.php:597
1973
  msgid ""
1974
  "You can create an event on this Calendar, by clicking on day or dragging "
1975
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1983
  "kirjelduse. Sündmuse saab koheselt avaldada või salvestada mustandina. Igal "
1984
  "juhul luuakse sündmus ning suunatakse edasi sündmuse muutmise lehele. "
1985
 
1986
+ #: includes/event-organiser-cpt.php:604
1987
  msgid "For more information"
1988
  msgstr "Lisainformatsiooni jaoks"
1989
 
1990
+ #: includes/event-organiser-cpt.php:605
1991
  #, php-format
1992
  msgid "See the <a %s> documentation</a>"
1993
  msgstr "Uuri <a %s> dokumentatsiooni</a>"
1994
 
1995
+ #: includes/event-organiser-cpt.php:606
1996
  msgid "Debugging Event Organiser"
1997
  msgstr "Ürituste Organiseerija vigade leidmine"
1998
 
1999
+ #: includes/event-organiser-cpt.php:607
2000
  msgid "Go Pro!"
2001
  msgstr "Go Pro!"
2002
 
2003
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2004
  msgid "Color"
2005
  msgstr "Värv"
2006
 
2007
+ #: includes/event-organiser-cpt.php:723
2008
  msgid "Assign the category a colour."
2009
  msgstr "Määra rubriigile värv."
2010
 
languages/eventorganiser-fa_IR.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:17:02+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1268,22 +1268,22 @@ msgid ""
1268
  "%s."
1269
  msgstr ""
1270
 
1271
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1272
  #, php-format
1273
  msgid "[Lines %1$d-%2$d]"
1274
  msgstr "[خط‌های %1$d-%2$d]"
1275
 
1276
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1277
  #, php-format
1278
  msgid "[Line %1$d]"
1279
  msgstr "[خط %1$d]"
1280
 
1281
- #: includes/class-eo-ical-parser.php:1044
1282
  #, php-format
1283
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1284
  msgstr ""
1285
 
1286
- #: includes/class-eo-ical-parser.php:1082
1287
  #, php-format
1288
  msgid ""
1289
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1859,57 +1859,57 @@ msgid ""
1859
  "page."
1860
  msgstr ""
1861
 
1862
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1863
- #: includes/event-organiser-cpt.php:587
1864
  msgid "Overview"
1865
  msgstr "نمایش کلی"
1866
 
1867
- #: includes/event-organiser-cpt.php:566
1868
  msgid ""
1869
  "This is the list of all saved events. Note that <strong> recurring events "
1870
  "appear as a single row </strong> in the table and the start and end date "
1871
  "refers to the first occurrence of that event."
1872
  msgstr ""
1873
 
1874
- #: includes/event-organiser-cpt.php:574
1875
  msgid ""
1876
  "Hovering over a row in the venues list will display action links that allow "
1877
  "you to manage that venue. You can perform the following actions:"
1878
  msgstr ""
1879
 
1880
- #: includes/event-organiser-cpt.php:576
1881
  msgid ""
1882
  "Edit takes you to the editing screen for that venue. You can also reach that "
1883
  "screen by clicking on the venue title."
1884
  msgstr ""
1885
 
1886
- #: includes/event-organiser-cpt.php:577
1887
  msgid "Delete will permanently remove the venue"
1888
  msgstr ""
1889
 
1890
- #: includes/event-organiser-cpt.php:578
1891
  msgid "View will take you to the venue's page"
1892
  msgstr ""
1893
 
1894
- #: includes/event-organiser-cpt.php:588
1895
  msgid ""
1896
  "This page shows all (occurrances of) events. You can view the summary of an "
1897
  "event by clicking on it. If you have the necessary permissions, a link to "
1898
  "the event's edit page will appear also."
1899
  msgstr ""
1900
 
1901
- #: includes/event-organiser-cpt.php:589
1902
  msgid ""
1903
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1904
  "mode. You can also filter the events by events by category and venue. The "
1905
  "'go to date' button allows you to quickly jump to a specific date."
1906
  msgstr ""
1907
 
1908
- #: includes/event-organiser-cpt.php:593
1909
  msgid "Add Event"
1910
  msgstr "افزودن رویداد"
1911
 
1912
- #: includes/event-organiser-cpt.php:594
1913
  msgid ""
1914
  "You can create an event on this Calendar, by clicking on day or dragging "
1915
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1918,28 +1918,28 @@ msgid ""
1918
  "event is created and you are forwarded to that event's edit page."
1919
  msgstr ""
1920
 
1921
- #: includes/event-organiser-cpt.php:600
1922
  msgid "For more information"
1923
  msgstr ""
1924
 
1925
- #: includes/event-organiser-cpt.php:601
1926
  #, php-format
1927
  msgid "See the <a %s> documentation</a>"
1928
  msgstr ""
1929
 
1930
- #: includes/event-organiser-cpt.php:602
1931
  msgid "Debugging Event Organiser"
1932
  msgstr ""
1933
 
1934
- #: includes/event-organiser-cpt.php:603
1935
  msgid "Go Pro!"
1936
  msgstr ""
1937
 
1938
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
1939
  msgid "Color"
1940
  msgstr "رنگ"
1941
 
1942
- #: includes/event-organiser-cpt.php:719
1943
  msgid "Assign the category a colour."
1944
  msgstr ""
1945
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:17:02+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1268
  "%s."
1269
  msgstr ""
1270
 
1271
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1272
  #, php-format
1273
  msgid "[Lines %1$d-%2$d]"
1274
  msgstr "[خط‌های %1$d-%2$d]"
1275
 
1276
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1277
  #, php-format
1278
  msgid "[Line %1$d]"
1279
  msgstr "[خط %1$d]"
1280
 
1281
+ #: includes/class-eo-ical-parser.php:1066
1282
  #, php-format
1283
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1284
  msgstr ""
1285
 
1286
+ #: includes/class-eo-ical-parser.php:1104
1287
  #, php-format
1288
  msgid ""
1289
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1859
  "page."
1860
  msgstr ""
1861
 
1862
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1863
+ #: includes/event-organiser-cpt.php:590
1864
  msgid "Overview"
1865
  msgstr "نمایش کلی"
1866
 
1867
+ #: includes/event-organiser-cpt.php:565
1868
  msgid ""
1869
  "This is the list of all saved events. Note that <strong> recurring events "
1870
  "appear as a single row </strong> in the table and the start and end date "
1871
  "refers to the first occurrence of that event."
1872
  msgstr ""
1873
 
1874
+ #: includes/event-organiser-cpt.php:572
1875
  msgid ""
1876
  "Hovering over a row in the venues list will display action links that allow "
1877
  "you to manage that venue. You can perform the following actions:"
1878
  msgstr ""
1879
 
1880
+ #: includes/event-organiser-cpt.php:574
1881
  msgid ""
1882
  "Edit takes you to the editing screen for that venue. You can also reach that "
1883
  "screen by clicking on the venue title."
1884
  msgstr ""
1885
 
1886
+ #: includes/event-organiser-cpt.php:575
1887
  msgid "Delete will permanently remove the venue"
1888
  msgstr ""
1889
 
1890
+ #: includes/event-organiser-cpt.php:576
1891
  msgid "View will take you to the venue's page"
1892
  msgstr ""
1893
 
1894
+ #: includes/event-organiser-cpt.php:591
1895
  msgid ""
1896
  "This page shows all (occurrances of) events. You can view the summary of an "
1897
  "event by clicking on it. If you have the necessary permissions, a link to "
1898
  "the event's edit page will appear also."
1899
  msgstr ""
1900
 
1901
+ #: includes/event-organiser-cpt.php:592
1902
  msgid ""
1903
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1904
  "mode. You can also filter the events by events by category and venue. The "
1905
  "'go to date' button allows you to quickly jump to a specific date."
1906
  msgstr ""
1907
 
1908
+ #: includes/event-organiser-cpt.php:596
1909
  msgid "Add Event"
1910
  msgstr "افزودن رویداد"
1911
 
1912
+ #: includes/event-organiser-cpt.php:597
1913
  msgid ""
1914
  "You can create an event on this Calendar, by clicking on day or dragging "
1915
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1918
  "event is created and you are forwarded to that event's edit page."
1919
  msgstr ""
1920
 
1921
+ #: includes/event-organiser-cpt.php:604
1922
  msgid "For more information"
1923
  msgstr ""
1924
 
1925
+ #: includes/event-organiser-cpt.php:605
1926
  #, php-format
1927
  msgid "See the <a %s> documentation</a>"
1928
  msgstr ""
1929
 
1930
+ #: includes/event-organiser-cpt.php:606
1931
  msgid "Debugging Event Organiser"
1932
  msgstr ""
1933
 
1934
+ #: includes/event-organiser-cpt.php:607
1935
  msgid "Go Pro!"
1936
  msgstr ""
1937
 
1938
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
1939
  msgid "Color"
1940
  msgstr "رنگ"
1941
 
1942
+ #: includes/event-organiser-cpt.php:723
1943
  msgid "Assign the category a colour."
1944
  msgstr ""
1945
 
languages/eventorganiser-fi.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2017-08-31T14:17:32+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1290,22 +1290,22 @@ msgid ""
1290
  "%s."
1291
  msgstr ""
1292
 
1293
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1294
  #, php-format
1295
  msgid "[Lines %1$d-%2$d]"
1296
  msgstr ""
1297
 
1298
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1299
  #, php-format
1300
  msgid "[Line %1$d]"
1301
  msgstr ""
1302
 
1303
- #: includes/class-eo-ical-parser.php:1044
1304
  #, php-format
1305
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1306
  msgstr ""
1307
 
1308
- #: includes/class-eo-ical-parser.php:1082
1309
  #, php-format
1310
  msgid ""
1311
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1913,12 +1913,12 @@ msgstr ""
1913
  "Vain olemassa olevia tapahtumapaikkoja voidaan valita. Lisätäksesi paikan, "
1914
  "mene tapahtumapaikat sivulle."
1915
 
1916
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1917
- #: includes/event-organiser-cpt.php:587
1918
  msgid "Overview"
1919
  msgstr "Yleiskatsaus"
1920
 
1921
- #: includes/event-organiser-cpt.php:566
1922
  msgid ""
1923
  "This is the list of all saved events. Note that <strong> recurring events "
1924
  "appear as a single row </strong> in the table and the start and end date "
@@ -1928,7 +1928,7 @@ msgstr ""
1928
  "toistuvat tapahtumat näkyvät yhdellä rivillä </strong> taulukossa ja sekä "
1929
  "alkamis- että päättymispäivä viittaa tapahtuman ensimmäiseen esiintymään."
1930
 
1931
- #: includes/event-organiser-cpt.php:574
1932
  msgid ""
1933
  "Hovering over a row in the venues list will display action links that allow "
1934
  "you to manage that venue. You can perform the following actions:"
@@ -1937,7 +1937,7 @@ msgstr ""
1937
  "toimintalinkkejä, joiden avulla voit hallita paikkaa. Voit tehdä seuraavat "
1938
  "toimet:"
1939
 
1940
- #: includes/event-organiser-cpt.php:576
1941
  msgid ""
1942
  "Edit takes you to the editing screen for that venue. You can also reach that "
1943
  "screen by clicking on the venue title."
@@ -1945,15 +1945,15 @@ msgstr ""
1945
  "Muokkaa vie tapahtumapaikan muokkausnäyttöön. Pääset samaan näkymään myös "
1946
  "klikkaamalla paikan otsikkoa."
1947
 
1948
- #: includes/event-organiser-cpt.php:577
1949
  msgid "Delete will permanently remove the venue"
1950
  msgstr "Poistaminen poistaa tapahtumapaikan pysyvästi"
1951
 
1952
- #: includes/event-organiser-cpt.php:578
1953
  msgid "View will take you to the venue's page"
1954
  msgstr "Näkymä vie sinut tapahtumapaikan sivulle"
1955
 
1956
- #: includes/event-organiser-cpt.php:588
1957
  msgid ""
1958
  "This page shows all (occurrances of) events. You can view the summary of an "
1959
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -1963,7 +1963,7 @@ msgstr ""
1963
  "yhteenvetoa tapahtumasta klikkaamalla sitä. Jos sinulla on tarvittavat "
1964
  "oikeudet, linkki tapahtuman muokkaussivulle on myös näkyvissä."
1965
 
1966
- #: includes/event-organiser-cpt.php:589
1967
  msgid ""
1968
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1969
  "mode. You can also filter the events by events by category and venue. The "
@@ -1974,11 +1974,11 @@ msgstr ""
1974
  "perusteella.'Valitse päivämäärä' painikkeen avulla voit nopeasti siirtyä "
1975
  "tiettyyn päivämäärään."
1976
 
1977
- #: includes/event-organiser-cpt.php:593
1978
  msgid "Add Event"
1979
  msgstr "Lisää tapahtuma"
1980
 
1981
- #: includes/event-organiser-cpt.php:594
1982
  msgid ""
1983
  "You can create an event on this Calendar, by clicking on day or dragging "
1984
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1993,28 +1993,28 @@ msgstr ""
1993
  "luonnoksena. Joka tapauksessa, tapahtuma on luotu ja siirryt automaattisesti "
1994
  "tapahtuman muokkaussivulle."
1995
 
1996
- #: includes/event-organiser-cpt.php:600
1997
  msgid "For more information"
1998
  msgstr "Lisätietoa"
1999
 
2000
- #: includes/event-organiser-cpt.php:601
2001
  #, php-format
2002
  msgid "See the <a %s> documentation</a>"
2003
  msgstr "Katso <a %s> ohjeistus</a>"
2004
 
2005
- #: includes/event-organiser-cpt.php:602
2006
  msgid "Debugging Event Organiser"
2007
  msgstr ""
2008
 
2009
- #: includes/event-organiser-cpt.php:603
2010
  msgid "Go Pro!"
2011
  msgstr ""
2012
 
2013
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2014
  msgid "Color"
2015
  msgstr "Väri"
2016
 
2017
- #: includes/event-organiser-cpt.php:719
2018
  msgid "Assign the category a colour."
2019
  msgstr "Liitää värin kategoriaan."
2020
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2017-08-31T14:17:32+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1290
  "%s."
1291
  msgstr ""
1292
 
1293
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1294
  #, php-format
1295
  msgid "[Lines %1$d-%2$d]"
1296
  msgstr ""
1297
 
1298
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1299
  #, php-format
1300
  msgid "[Line %1$d]"
1301
  msgstr ""
1302
 
1303
+ #: includes/class-eo-ical-parser.php:1066
1304
  #, php-format
1305
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1306
  msgstr ""
1307
 
1308
+ #: includes/class-eo-ical-parser.php:1104
1309
  #, php-format
1310
  msgid ""
1311
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1913
  "Vain olemassa olevia tapahtumapaikkoja voidaan valita. Lisätäksesi paikan, "
1914
  "mene tapahtumapaikat sivulle."
1915
 
1916
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1917
+ #: includes/event-organiser-cpt.php:590
1918
  msgid "Overview"
1919
  msgstr "Yleiskatsaus"
1920
 
1921
+ #: includes/event-organiser-cpt.php:565
1922
  msgid ""
1923
  "This is the list of all saved events. Note that <strong> recurring events "
1924
  "appear as a single row </strong> in the table and the start and end date "
1928
  "toistuvat tapahtumat näkyvät yhdellä rivillä </strong> taulukossa ja sekä "
1929
  "alkamis- että päättymispäivä viittaa tapahtuman ensimmäiseen esiintymään."
1930
 
1931
+ #: includes/event-organiser-cpt.php:572
1932
  msgid ""
1933
  "Hovering over a row in the venues list will display action links that allow "
1934
  "you to manage that venue. You can perform the following actions:"
1937
  "toimintalinkkejä, joiden avulla voit hallita paikkaa. Voit tehdä seuraavat "
1938
  "toimet:"
1939
 
1940
+ #: includes/event-organiser-cpt.php:574
1941
  msgid ""
1942
  "Edit takes you to the editing screen for that venue. You can also reach that "
1943
  "screen by clicking on the venue title."
1945
  "Muokkaa vie tapahtumapaikan muokkausnäyttöön. Pääset samaan näkymään myös "
1946
  "klikkaamalla paikan otsikkoa."
1947
 
1948
+ #: includes/event-organiser-cpt.php:575
1949
  msgid "Delete will permanently remove the venue"
1950
  msgstr "Poistaminen poistaa tapahtumapaikan pysyvästi"
1951
 
1952
+ #: includes/event-organiser-cpt.php:576
1953
  msgid "View will take you to the venue's page"
1954
  msgstr "Näkymä vie sinut tapahtumapaikan sivulle"
1955
 
1956
+ #: includes/event-organiser-cpt.php:591
1957
  msgid ""
1958
  "This page shows all (occurrances of) events. You can view the summary of an "
1959
  "event by clicking on it. If you have the necessary permissions, a link to "
1963
  "yhteenvetoa tapahtumasta klikkaamalla sitä. Jos sinulla on tarvittavat "
1964
  "oikeudet, linkki tapahtuman muokkaussivulle on myös näkyvissä."
1965
 
1966
+ #: includes/event-organiser-cpt.php:592
1967
  msgid ""
1968
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1969
  "mode. You can also filter the events by events by category and venue. The "
1974
  "perusteella.'Valitse päivämäärä' painikkeen avulla voit nopeasti siirtyä "
1975
  "tiettyyn päivämäärään."
1976
 
1977
+ #: includes/event-organiser-cpt.php:596
1978
  msgid "Add Event"
1979
  msgstr "Lisää tapahtuma"
1980
 
1981
+ #: includes/event-organiser-cpt.php:597
1982
  msgid ""
1983
  "You can create an event on this Calendar, by clicking on day or dragging "
1984
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1993
  "luonnoksena. Joka tapauksessa, tapahtuma on luotu ja siirryt automaattisesti "
1994
  "tapahtuman muokkaussivulle."
1995
 
1996
+ #: includes/event-organiser-cpt.php:604
1997
  msgid "For more information"
1998
  msgstr "Lisätietoa"
1999
 
2000
+ #: includes/event-organiser-cpt.php:605
2001
  #, php-format
2002
  msgid "See the <a %s> documentation</a>"
2003
  msgstr "Katso <a %s> ohjeistus</a>"
2004
 
2005
+ #: includes/event-organiser-cpt.php:606
2006
  msgid "Debugging Event Organiser"
2007
  msgstr ""
2008
 
2009
+ #: includes/event-organiser-cpt.php:607
2010
  msgid "Go Pro!"
2011
  msgstr ""
2012
 
2013
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2014
  msgid "Color"
2015
  msgstr "Väri"
2016
 
2017
+ #: includes/event-organiser-cpt.php:723
2018
  msgid "Assign the category a colour."
2019
  msgstr "Liitää värin kategoriaan."
2020
 
languages/eventorganiser-fr_FR.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2017-10-31T18:44:38+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1351,22 +1351,22 @@ msgstr ""
1351
  "Le flux contient un événement répété indéfiniment. Cet événement se répétera "
1352
  "jusqu'à %s."
1353
 
1354
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1355
  #, php-format
1356
  msgid "[Lines %1$d-%2$d]"
1357
  msgstr "[Lignes %1$d-%2$d]"
1358
 
1359
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1360
  #, php-format
1361
  msgid "[Line %1$d]"
1362
  msgstr "[Ligne %1$d]"
1363
 
1364
- #: includes/class-eo-ical-parser.php:1044
1365
  #, php-format
1366
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1367
  msgstr "Date invalide \"%s\". Date attendue dans le format YYYYMMDD."
1368
 
1369
- #: includes/class-eo-ical-parser.php:1082
1370
  #, php-format
1371
  msgid ""
1372
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1978,12 +1978,12 @@ msgstr ""
1978
  "Seuls les lieux pré-existants peuvent être sélectionnés. Pour en ajouter un, "
1979
  "allez à la page des lieux."
1980
 
1981
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1982
- #: includes/event-organiser-cpt.php:587
1983
  msgid "Overview"
1984
  msgstr "Aperçu"
1985
 
1986
- #: includes/event-organiser-cpt.php:566
1987
  msgid ""
1988
  "This is the list of all saved events. Note that <strong> recurring events "
1989
  "appear as a single row </strong> in the table and the start and end date "
@@ -1994,7 +1994,7 @@ msgstr ""
1994
  "dans le tableau, et que les dates de début et de fin font référence à la "
1995
  "première occurrence de l'événement."
1996
 
1997
- #: includes/event-organiser-cpt.php:574
1998
  msgid ""
1999
  "Hovering over a row in the venues list will display action links that allow "
2000
  "you to manage that venue. You can perform the following actions:"
@@ -2002,7 +2002,7 @@ msgstr ""
2002
  "Survoler une ligne dans la liste des lieux affichera des liens vous "
2003
  "permettant de gérer ce lieu. Vous pouvez effectuer les actions suivantes : "
2004
 
2005
- #: includes/event-organiser-cpt.php:576
2006
  msgid ""
2007
  "Edit takes you to the editing screen for that venue. You can also reach that "
2008
  "screen by clicking on the venue title."
@@ -2010,15 +2010,15 @@ msgstr ""
2010
  "Éditer vous dirige vers la page d'édition pour ce lieu. Vous pouvez "
2011
  "également y accéder en cliquant sur le titre du lieu."
2012
 
2013
- #: includes/event-organiser-cpt.php:577
2014
  msgid "Delete will permanently remove the venue"
2015
  msgstr "Supprimer effacera définitivement le lieu"
2016
 
2017
- #: includes/event-organiser-cpt.php:578
2018
  msgid "View will take you to the venue's page"
2019
  msgstr "Voir vous dirigera vers la page du lieu"
2020
 
2021
- #: includes/event-organiser-cpt.php:588
2022
  msgid ""
2023
  "This page shows all (occurrances of) events. You can view the summary of an "
2024
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -2029,7 +2029,7 @@ msgstr ""
2029
  "nécessaires, un lien vers la page d'édition de l'événement apparaitra "
2030
  "également."
2031
 
2032
- #: includes/event-organiser-cpt.php:589
2033
  msgid ""
2034
  "By clicking the relevant tab, you can view events in Month, Week or Day "
2035
  "mode. You can also filter the events by events by category and venue. The "
@@ -2040,11 +2040,11 @@ msgstr ""
2040
  "événements, catégorie ou lieu. Le bouton 'aller à la date' vous permet de "
2041
  "sauter directement à une date spécifique."
2042
 
2043
- #: includes/event-organiser-cpt.php:593
2044
  msgid "Add Event"
2045
  msgstr "Ajouter un événement"
2046
 
2047
- #: includes/event-organiser-cpt.php:594
2048
  msgid ""
2049
  "You can create an event on this Calendar, by clicking on day or dragging "
2050
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -2059,28 +2059,28 @@ msgstr ""
2059
  "publié immédiatement ou sauvegardé en tant que brouillon. Dans tous les cas, "
2060
  "l'événement est créé et vous serez dirigé vers sa page d'édition."
2061
 
2062
- #: includes/event-organiser-cpt.php:600
2063
  msgid "For more information"
2064
  msgstr "Pour plus d'information"
2065
 
2066
- #: includes/event-organiser-cpt.php:601
2067
  #, php-format
2068
  msgid "See the <a %s> documentation</a>"
2069
  msgstr "Voir la <a %s>documentation</a>"
2070
 
2071
- #: includes/event-organiser-cpt.php:602
2072
  msgid "Debugging Event Organiser"
2073
  msgstr "Debugger Event Organizer"
2074
 
2075
- #: includes/event-organiser-cpt.php:603
2076
  msgid "Go Pro!"
2077
  msgstr "Passer à la version Pro !"
2078
 
2079
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2080
  msgid "Color"
2081
  msgstr "Couleur"
2082
 
2083
- #: includes/event-organiser-cpt.php:719
2084
  msgid "Assign the category a colour."
2085
  msgstr "Assigner une couleur à la catégorie."
2086
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2017-10-31T18:44:38+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1351
  "Le flux contient un événement répété indéfiniment. Cet événement se répétera "
1352
  "jusqu'à %s."
1353
 
1354
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1355
  #, php-format
1356
  msgid "[Lines %1$d-%2$d]"
1357
  msgstr "[Lignes %1$d-%2$d]"
1358
 
1359
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1360
  #, php-format
1361
  msgid "[Line %1$d]"
1362
  msgstr "[Ligne %1$d]"
1363
 
1364
+ #: includes/class-eo-ical-parser.php:1066
1365
  #, php-format
1366
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1367
  msgstr "Date invalide \"%s\". Date attendue dans le format YYYYMMDD."
1368
 
1369
+ #: includes/class-eo-ical-parser.php:1104
1370
  #, php-format
1371
  msgid ""
1372
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1978
  "Seuls les lieux pré-existants peuvent être sélectionnés. Pour en ajouter un, "
1979
  "allez à la page des lieux."
1980
 
1981
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1982
+ #: includes/event-organiser-cpt.php:590
1983
  msgid "Overview"
1984
  msgstr "Aperçu"
1985
 
1986
+ #: includes/event-organiser-cpt.php:565
1987
  msgid ""
1988
  "This is the list of all saved events. Note that <strong> recurring events "
1989
  "appear as a single row </strong> in the table and the start and end date "
1994
  "dans le tableau, et que les dates de début et de fin font référence à la "
1995
  "première occurrence de l'événement."
1996
 
1997
+ #: includes/event-organiser-cpt.php:572
1998
  msgid ""
1999
  "Hovering over a row in the venues list will display action links that allow "
2000
  "you to manage that venue. You can perform the following actions:"
2002
  "Survoler une ligne dans la liste des lieux affichera des liens vous "
2003
  "permettant de gérer ce lieu. Vous pouvez effectuer les actions suivantes : "
2004
 
2005
+ #: includes/event-organiser-cpt.php:574
2006
  msgid ""
2007
  "Edit takes you to the editing screen for that venue. You can also reach that "
2008
  "screen by clicking on the venue title."
2010
  "Éditer vous dirige vers la page d'édition pour ce lieu. Vous pouvez "
2011
  "également y accéder en cliquant sur le titre du lieu."
2012
 
2013
+ #: includes/event-organiser-cpt.php:575
2014
  msgid "Delete will permanently remove the venue"
2015
  msgstr "Supprimer effacera définitivement le lieu"
2016
 
2017
+ #: includes/event-organiser-cpt.php:576
2018
  msgid "View will take you to the venue's page"
2019
  msgstr "Voir vous dirigera vers la page du lieu"
2020
 
2021
+ #: includes/event-organiser-cpt.php:591
2022
  msgid ""
2023
  "This page shows all (occurrances of) events. You can view the summary of an "
2024
  "event by clicking on it. If you have the necessary permissions, a link to "
2029
  "nécessaires, un lien vers la page d'édition de l'événement apparaitra "
2030
  "également."
2031
 
2032
+ #: includes/event-organiser-cpt.php:592
2033
  msgid ""
2034
  "By clicking the relevant tab, you can view events in Month, Week or Day "
2035
  "mode. You can also filter the events by events by category and venue. The "
2040
  "événements, catégorie ou lieu. Le bouton 'aller à la date' vous permet de "
2041
  "sauter directement à une date spécifique."
2042
 
2043
+ #: includes/event-organiser-cpt.php:596
2044
  msgid "Add Event"
2045
  msgstr "Ajouter un événement"
2046
 
2047
+ #: includes/event-organiser-cpt.php:597
2048
  msgid ""
2049
  "You can create an event on this Calendar, by clicking on day or dragging "
2050
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
2059
  "publié immédiatement ou sauvegardé en tant que brouillon. Dans tous les cas, "
2060
  "l'événement est créé et vous serez dirigé vers sa page d'édition."
2061
 
2062
+ #: includes/event-organiser-cpt.php:604
2063
  msgid "For more information"
2064
  msgstr "Pour plus d'information"
2065
 
2066
+ #: includes/event-organiser-cpt.php:605
2067
  #, php-format
2068
  msgid "See the <a %s> documentation</a>"
2069
  msgstr "Voir la <a %s>documentation</a>"
2070
 
2071
+ #: includes/event-organiser-cpt.php:606
2072
  msgid "Debugging Event Organiser"
2073
  msgstr "Debugger Event Organizer"
2074
 
2075
+ #: includes/event-organiser-cpt.php:607
2076
  msgid "Go Pro!"
2077
  msgstr "Passer à la version Pro !"
2078
 
2079
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2080
  msgid "Color"
2081
  msgstr "Couleur"
2082
 
2083
+ #: includes/event-organiser-cpt.php:723
2084
  msgid "Assign the category a colour."
2085
  msgstr "Assigner une couleur à la catégorie."
2086
 
languages/eventorganiser-he_IL.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:16:48+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1292,22 +1292,22 @@ msgid ""
1292
  "%s."
1293
  msgstr ""
1294
 
1295
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1296
  #, php-format
1297
  msgid "[Lines %1$d-%2$d]"
1298
  msgstr "[שורות %1$d-%2$d]"
1299
 
1300
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1301
  #, php-format
1302
  msgid "[Line %1$d]"
1303
  msgstr "[שורה %1$d]"
1304
 
1305
- #: includes/class-eo-ical-parser.php:1044
1306
  #, php-format
1307
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1308
  msgstr "תאריך לא חוקי \"%s\". אנא השתמש בתבנית הבאה: YYYYMMDD."
1309
 
1310
- #: includes/class-eo-ical-parser.php:1082
1311
  #, php-format
1312
  msgid ""
1313
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1907,12 +1907,12 @@ msgid ""
1907
  msgstr ""
1908
  "ניתן לבחור רק במיקומים שנוצרו מראש. כדי להוסיף מיקום עבור אל דף המיקומים."
1909
 
1910
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1911
- #: includes/event-organiser-cpt.php:587
1912
  msgid "Overview"
1913
  msgstr ""
1914
 
1915
- #: includes/event-organiser-cpt.php:566
1916
  msgid ""
1917
  "This is the list of all saved events. Note that <strong> recurring events "
1918
  "appear as a single row </strong> in the table and the start and end date "
@@ -1921,7 +1921,7 @@ msgstr ""
1921
  "זו הרשימה של כל האירועים שנשמרו. שים לב ש<strong>מופעים חוזרים מופיעים כשורה "
1922
  "אחת</strong> בטבלה ומועדי ההתחלה והסיום מתייחסים להתרחשות הראשונה של האירוע."
1923
 
1924
- #: includes/event-organiser-cpt.php:574
1925
  msgid ""
1926
  "Hovering over a row in the venues list will display action links that allow "
1927
  "you to manage that venue. You can perform the following actions:"
@@ -1929,7 +1929,7 @@ msgstr ""
1929
  "בריחוף עכבר מעל שורה ברשימת המיקומים, יוצג ו קישורי פעולה שיאפשרו לך לנהל את "
1930
  "המיקום. אפשר לבצע את הפעולות שלהלן:"
1931
 
1932
- #: includes/event-organiser-cpt.php:576
1933
  msgid ""
1934
  "Edit takes you to the editing screen for that venue. You can also reach that "
1935
  "screen by clicking on the venue title."
@@ -1937,15 +1937,15 @@ msgstr ""
1937
  "העריכה לוקחת אותך למסך העריכה של אותו מיקום. אפשר להגיע למסך הזה גם על-ידי "
1938
  "לחיצה על כותרת המיקום."
1939
 
1940
- #: includes/event-organiser-cpt.php:577
1941
  msgid "Delete will permanently remove the venue"
1942
  msgstr "מחיקה תסיר את המקום לצמיתות"
1943
 
1944
- #: includes/event-organiser-cpt.php:578
1945
  msgid "View will take you to the venue's page"
1946
  msgstr "הצג ייקח אותך אל דף המקום"
1947
 
1948
- #: includes/event-organiser-cpt.php:588
1949
  msgid ""
1950
  "This page shows all (occurrances of) events. You can view the summary of an "
1951
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -1955,7 +1955,7 @@ msgstr ""
1955
  "ידי לחיצה עליו. אם יש לך את ההרשאות הדרושות, יופיע גם קישור לדף עריכה של "
1956
  "האירוע."
1957
 
1958
- #: includes/event-organiser-cpt.php:589
1959
  msgid ""
1960
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1961
  "mode. You can also filter the events by events by category and venue. The "
@@ -1965,11 +1965,11 @@ msgstr ""
1965
  "יומית. אתה יכול גם לסנן את האירועים לפי אירועים, קטגוריות ומיקום. הכפתור "
1966
  "\"עבור אל\" מאפשר לך לעבור ישירות לתאריך ספציפי."
1967
 
1968
- #: includes/event-organiser-cpt.php:593
1969
  msgid "Add Event"
1970
  msgstr "הוסף אירוע"
1971
 
1972
- #: includes/event-organiser-cpt.php:594
1973
  msgid ""
1974
  "You can create an event on this Calendar, by clicking on day or dragging "
1975
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1982,28 +1982,28 @@ msgstr ""
1982
  "שם, מיקום ותיאור. מרגע שהאירוע נוצר, תוכל לבחור האם לפרסם אותו או לשמור "
1983
  "כטיוטה. בכל שלב תוכל לחזור ולערוך את האירוע."
1984
 
1985
- #: includes/event-organiser-cpt.php:600
1986
  msgid "For more information"
1987
  msgstr "למידע נוסף"
1988
 
1989
- #: includes/event-organiser-cpt.php:601
1990
  #, php-format
1991
  msgid "See the <a %s> documentation</a>"
1992
  msgstr "ראה <a %s> תיעוד</a>"
1993
 
1994
- #: includes/event-organiser-cpt.php:602
1995
  msgid "Debugging Event Organiser"
1996
  msgstr "ניפוי ארגון אירועים"
1997
 
1998
- #: includes/event-organiser-cpt.php:603
1999
  msgid "Go Pro!"
2000
  msgstr "הרשם לגרסת Pro!"
2001
 
2002
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2003
  msgid "Color"
2004
  msgstr "צבע"
2005
 
2006
- #: includes/event-organiser-cpt.php:719
2007
  msgid "Assign the category a colour."
2008
  msgstr "הקצה צבע לקטגוריה"
2009
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:16:48+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1292
  "%s."
1293
  msgstr ""
1294
 
1295
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1296
  #, php-format
1297
  msgid "[Lines %1$d-%2$d]"
1298
  msgstr "[שורות %1$d-%2$d]"
1299
 
1300
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1301
  #, php-format
1302
  msgid "[Line %1$d]"
1303
  msgstr "[שורה %1$d]"
1304
 
1305
+ #: includes/class-eo-ical-parser.php:1066
1306
  #, php-format
1307
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1308
  msgstr "תאריך לא חוקי \"%s\". אנא השתמש בתבנית הבאה: YYYYMMDD."
1309
 
1310
+ #: includes/class-eo-ical-parser.php:1104
1311
  #, php-format
1312
  msgid ""
1313
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1907
  msgstr ""
1908
  "ניתן לבחור רק במיקומים שנוצרו מראש. כדי להוסיף מיקום עבור אל דף המיקומים."
1909
 
1910
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1911
+ #: includes/event-organiser-cpt.php:590
1912
  msgid "Overview"
1913
  msgstr ""
1914
 
1915
+ #: includes/event-organiser-cpt.php:565
1916
  msgid ""
1917
  "This is the list of all saved events. Note that <strong> recurring events "
1918
  "appear as a single row </strong> in the table and the start and end date "
1921
  "זו הרשימה של כל האירועים שנשמרו. שים לב ש<strong>מופעים חוזרים מופיעים כשורה "
1922
  "אחת</strong> בטבלה ומועדי ההתחלה והסיום מתייחסים להתרחשות הראשונה של האירוע."
1923
 
1924
+ #: includes/event-organiser-cpt.php:572
1925
  msgid ""
1926
  "Hovering over a row in the venues list will display action links that allow "
1927
  "you to manage that venue. You can perform the following actions:"
1929
  "בריחוף עכבר מעל שורה ברשימת המיקומים, יוצג ו קישורי פעולה שיאפשרו לך לנהל את "
1930
  "המיקום. אפשר לבצע את הפעולות שלהלן:"
1931
 
1932
+ #: includes/event-organiser-cpt.php:574
1933
  msgid ""
1934
  "Edit takes you to the editing screen for that venue. You can also reach that "
1935
  "screen by clicking on the venue title."
1937
  "העריכה לוקחת אותך למסך העריכה של אותו מיקום. אפשר להגיע למסך הזה גם על-ידי "
1938
  "לחיצה על כותרת המיקום."
1939
 
1940
+ #: includes/event-organiser-cpt.php:575
1941
  msgid "Delete will permanently remove the venue"
1942
  msgstr "מחיקה תסיר את המקום לצמיתות"
1943
 
1944
+ #: includes/event-organiser-cpt.php:576
1945
  msgid "View will take you to the venue's page"
1946
  msgstr "הצג ייקח אותך אל דף המקום"
1947
 
1948
+ #: includes/event-organiser-cpt.php:591
1949
  msgid ""
1950
  "This page shows all (occurrances of) events. You can view the summary of an "
1951
  "event by clicking on it. If you have the necessary permissions, a link to "
1955
  "ידי לחיצה עליו. אם יש לך את ההרשאות הדרושות, יופיע גם קישור לדף עריכה של "
1956
  "האירוע."
1957
 
1958
+ #: includes/event-organiser-cpt.php:592
1959
  msgid ""
1960
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1961
  "mode. You can also filter the events by events by category and venue. The "
1965
  "יומית. אתה יכול גם לסנן את האירועים לפי אירועים, קטגוריות ומיקום. הכפתור "
1966
  "\"עבור אל\" מאפשר לך לעבור ישירות לתאריך ספציפי."
1967
 
1968
+ #: includes/event-organiser-cpt.php:596
1969
  msgid "Add Event"
1970
  msgstr "הוסף אירוע"
1971
 
1972
+ #: includes/event-organiser-cpt.php:597
1973
  msgid ""
1974
  "You can create an event on this Calendar, by clicking on day or dragging "
1975
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1982
  "שם, מיקום ותיאור. מרגע שהאירוע נוצר, תוכל לבחור האם לפרסם אותו או לשמור "
1983
  "כטיוטה. בכל שלב תוכל לחזור ולערוך את האירוע."
1984
 
1985
+ #: includes/event-organiser-cpt.php:604
1986
  msgid "For more information"
1987
  msgstr "למידע נוסף"
1988
 
1989
+ #: includes/event-organiser-cpt.php:605
1990
  #, php-format
1991
  msgid "See the <a %s> documentation</a>"
1992
  msgstr "ראה <a %s> תיעוד</a>"
1993
 
1994
+ #: includes/event-organiser-cpt.php:606
1995
  msgid "Debugging Event Organiser"
1996
  msgstr "ניפוי ארגון אירועים"
1997
 
1998
+ #: includes/event-organiser-cpt.php:607
1999
  msgid "Go Pro!"
2000
  msgstr "הרשם לגרסת Pro!"
2001
 
2002
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2003
  msgid "Color"
2004
  msgstr "צבע"
2005
 
2006
+ #: includes/event-organiser-cpt.php:723
2007
  msgid "Assign the category a colour."
2008
  msgstr "הקצה צבע לקטגוריה"
2009
 
languages/eventorganiser-hi_IN.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:16:43+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1268,22 +1268,22 @@ msgid ""
1268
  "%s."
1269
  msgstr ""
1270
 
1271
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1272
  #, php-format
1273
  msgid "[Lines %1$d-%2$d]"
1274
  msgstr ""
1275
 
1276
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1277
  #, php-format
1278
  msgid "[Line %1$d]"
1279
  msgstr ""
1280
 
1281
- #: includes/class-eo-ical-parser.php:1044
1282
  #, php-format
1283
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1284
  msgstr ""
1285
 
1286
- #: includes/class-eo-ical-parser.php:1082
1287
  #, php-format
1288
  msgid ""
1289
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1858,57 +1858,57 @@ msgid ""
1858
  "page."
1859
  msgstr ""
1860
 
1861
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1862
- #: includes/event-organiser-cpt.php:587
1863
  msgid "Overview"
1864
  msgstr ""
1865
 
1866
- #: includes/event-organiser-cpt.php:566
1867
  msgid ""
1868
  "This is the list of all saved events. Note that <strong> recurring events "
1869
  "appear as a single row </strong> in the table and the start and end date "
1870
  "refers to the first occurrence of that event."
1871
  msgstr ""
1872
 
1873
- #: includes/event-organiser-cpt.php:574
1874
  msgid ""
1875
  "Hovering over a row in the venues list will display action links that allow "
1876
  "you to manage that venue. You can perform the following actions:"
1877
  msgstr ""
1878
 
1879
- #: includes/event-organiser-cpt.php:576
1880
  msgid ""
1881
  "Edit takes you to the editing screen for that venue. You can also reach that "
1882
  "screen by clicking on the venue title."
1883
  msgstr ""
1884
 
1885
- #: includes/event-organiser-cpt.php:577
1886
  msgid "Delete will permanently remove the venue"
1887
  msgstr ""
1888
 
1889
- #: includes/event-organiser-cpt.php:578
1890
  msgid "View will take you to the venue's page"
1891
  msgstr ""
1892
 
1893
- #: includes/event-organiser-cpt.php:588
1894
  msgid ""
1895
  "This page shows all (occurrances of) events. You can view the summary of an "
1896
  "event by clicking on it. If you have the necessary permissions, a link to "
1897
  "the event's edit page will appear also."
1898
  msgstr ""
1899
 
1900
- #: includes/event-organiser-cpt.php:589
1901
  msgid ""
1902
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1903
  "mode. You can also filter the events by events by category and venue. The "
1904
  "'go to date' button allows you to quickly jump to a specific date."
1905
  msgstr ""
1906
 
1907
- #: includes/event-organiser-cpt.php:593
1908
  msgid "Add Event"
1909
  msgstr ""
1910
 
1911
- #: includes/event-organiser-cpt.php:594
1912
  msgid ""
1913
  "You can create an event on this Calendar, by clicking on day or dragging "
1914
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1917,28 +1917,28 @@ msgid ""
1917
  "event is created and you are forwarded to that event's edit page."
1918
  msgstr ""
1919
 
1920
- #: includes/event-organiser-cpt.php:600
1921
  msgid "For more information"
1922
  msgstr ""
1923
 
1924
- #: includes/event-organiser-cpt.php:601
1925
  #, php-format
1926
  msgid "See the <a %s> documentation</a>"
1927
  msgstr ""
1928
 
1929
- #: includes/event-organiser-cpt.php:602
1930
  msgid "Debugging Event Organiser"
1931
  msgstr ""
1932
 
1933
- #: includes/event-organiser-cpt.php:603
1934
  msgid "Go Pro!"
1935
  msgstr ""
1936
 
1937
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
1938
  msgid "Color"
1939
  msgstr ""
1940
 
1941
- #: includes/event-organiser-cpt.php:719
1942
  msgid "Assign the category a colour."
1943
  msgstr ""
1944
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:16:43+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1268
  "%s."
1269
  msgstr ""
1270
 
1271
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1272
  #, php-format
1273
  msgid "[Lines %1$d-%2$d]"
1274
  msgstr ""
1275
 
1276
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1277
  #, php-format
1278
  msgid "[Line %1$d]"
1279
  msgstr ""
1280
 
1281
+ #: includes/class-eo-ical-parser.php:1066
1282
  #, php-format
1283
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1284
  msgstr ""
1285
 
1286
+ #: includes/class-eo-ical-parser.php:1104
1287
  #, php-format
1288
  msgid ""
1289
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1858
  "page."
1859
  msgstr ""
1860
 
1861
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1862
+ #: includes/event-organiser-cpt.php:590
1863
  msgid "Overview"
1864
  msgstr ""
1865
 
1866
+ #: includes/event-organiser-cpt.php:565
1867
  msgid ""
1868
  "This is the list of all saved events. Note that <strong> recurring events "
1869
  "appear as a single row </strong> in the table and the start and end date "
1870
  "refers to the first occurrence of that event."
1871
  msgstr ""
1872
 
1873
+ #: includes/event-organiser-cpt.php:572
1874
  msgid ""
1875
  "Hovering over a row in the venues list will display action links that allow "
1876
  "you to manage that venue. You can perform the following actions:"
1877
  msgstr ""
1878
 
1879
+ #: includes/event-organiser-cpt.php:574
1880
  msgid ""
1881
  "Edit takes you to the editing screen for that venue. You can also reach that "
1882
  "screen by clicking on the venue title."
1883
  msgstr ""
1884
 
1885
+ #: includes/event-organiser-cpt.php:575
1886
  msgid "Delete will permanently remove the venue"
1887
  msgstr ""
1888
 
1889
+ #: includes/event-organiser-cpt.php:576
1890
  msgid "View will take you to the venue's page"
1891
  msgstr ""
1892
 
1893
+ #: includes/event-organiser-cpt.php:591
1894
  msgid ""
1895
  "This page shows all (occurrances of) events. You can view the summary of an "
1896
  "event by clicking on it. If you have the necessary permissions, a link to "
1897
  "the event's edit page will appear also."
1898
  msgstr ""
1899
 
1900
+ #: includes/event-organiser-cpt.php:592
1901
  msgid ""
1902
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1903
  "mode. You can also filter the events by events by category and venue. The "
1904
  "'go to date' button allows you to quickly jump to a specific date."
1905
  msgstr ""
1906
 
1907
+ #: includes/event-organiser-cpt.php:596
1908
  msgid "Add Event"
1909
  msgstr ""
1910
 
1911
+ #: includes/event-organiser-cpt.php:597
1912
  msgid ""
1913
  "You can create an event on this Calendar, by clicking on day or dragging "
1914
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1917
  "event is created and you are forwarded to that event's edit page."
1918
  msgstr ""
1919
 
1920
+ #: includes/event-organiser-cpt.php:604
1921
  msgid "For more information"
1922
  msgstr ""
1923
 
1924
+ #: includes/event-organiser-cpt.php:605
1925
  #, php-format
1926
  msgid "See the <a %s> documentation</a>"
1927
  msgstr ""
1928
 
1929
+ #: includes/event-organiser-cpt.php:606
1930
  msgid "Debugging Event Organiser"
1931
  msgstr ""
1932
 
1933
+ #: includes/event-organiser-cpt.php:607
1934
  msgid "Go Pro!"
1935
  msgstr ""
1936
 
1937
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
1938
  msgid "Color"
1939
  msgstr ""
1940
 
1941
+ #: includes/event-organiser-cpt.php:723
1942
  msgid "Assign the category a colour."
1943
  msgstr ""
1944
 
languages/eventorganiser-hr.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2017-04-14T22:58:58+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1291,22 +1291,22 @@ msgid ""
1291
  "%s."
1292
  msgstr ""
1293
 
1294
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1295
  #, php-format
1296
  msgid "[Lines %1$d-%2$d]"
1297
  msgstr ""
1298
 
1299
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1300
  #, php-format
1301
  msgid "[Line %1$d]"
1302
  msgstr ""
1303
 
1304
- #: includes/class-eo-ical-parser.php:1044
1305
  #, php-format
1306
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1307
  msgstr ""
1308
 
1309
- #: includes/class-eo-ical-parser.php:1082
1310
  #, php-format
1311
  msgid ""
1312
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1910,12 +1910,12 @@ msgstr ""
1910
  "Samo postoječa stastajlišta mogu biti izabrana. Da bi ste dodali sastajlište "
1911
  "odite na stranicu sastajališta."
1912
 
1913
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1914
- #: includes/event-organiser-cpt.php:587
1915
  msgid "Overview"
1916
  msgstr "pregled"
1917
 
1918
- #: includes/event-organiser-cpt.php:566
1919
  msgid ""
1920
  "This is the list of all saved events. Note that <strong> recurring events "
1921
  "appear as a single row </strong> in the table and the start and end date "
@@ -1925,7 +1925,7 @@ msgstr ""
1925
  "događaji se pojavljuju kao jedan red</strong>u tablici, početni i krajni "
1926
  "datumse odnose na prvo pojavljivanje ovog događanja."
1927
 
1928
- #: includes/event-organiser-cpt.php:574
1929
  msgid ""
1930
  "Hovering over a row in the venues list will display action links that allow "
1931
  "you to manage that venue. You can perform the following actions:"
@@ -1934,7 +1934,7 @@ msgstr ""
1934
  "vam omogućava upravljanje sa tim sastajalištem. Možete izvoditi sljedeće "
1935
  "radnje:"
1936
 
1937
- #: includes/event-organiser-cpt.php:576
1938
  msgid ""
1939
  "Edit takes you to the editing screen for that venue. You can also reach that "
1940
  "screen by clicking on the venue title."
@@ -1942,15 +1942,15 @@ msgstr ""
1942
  "Uređivanje vas vodi na zaslon uređivanja sastajališta. Do istog pregleda "
1943
  "možet doći klikon na naslov sastajališta"
1944
 
1945
- #: includes/event-organiser-cpt.php:577
1946
  msgid "Delete will permanently remove the venue"
1947
  msgstr "Brisanje će trajno maknuti sastajatlište"
1948
 
1949
- #: includes/event-organiser-cpt.php:578
1950
  msgid "View will take you to the venue's page"
1951
  msgstr "Pregled će vas odvesti na stranicu sastajališta"
1952
 
1953
- #: includes/event-organiser-cpt.php:588
1954
  msgid ""
1955
  "This page shows all (occurrances of) events. You can view the summary of an "
1956
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -1960,7 +1960,7 @@ msgstr ""
1960
  "događaja klikom na njega. Ako imate potreben dozvole, pojavit će se i dugem "
1961
  "za uređivanje stranice."
1962
 
1963
- #: includes/event-organiser-cpt.php:589
1964
  msgid ""
1965
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1966
  "mode. You can also filter the events by events by category and venue. The "
@@ -1971,11 +1971,11 @@ msgstr ""
1971
  "sastajalištu. Dugme 'idi na datum' omogućava Vam brzi skok na specifičan "
1972
  "datum."
1973
 
1974
- #: includes/event-organiser-cpt.php:593
1975
  msgid "Add Event"
1976
  msgstr "dodaj događaj"
1977
 
1978
- #: includes/event-organiser-cpt.php:594
1979
  msgid ""
1980
  "You can create an event on this Calendar, by clicking on day or dragging "
1981
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1989,28 +1989,28 @@ msgstr ""
1989
  "objavljen ili biti spremljen kao skica. U svakom slučaju, događaj je kreiran "
1990
  "i biti ćete preusmjereni na stranicu događanja."
1991
 
1992
- #: includes/event-organiser-cpt.php:600
1993
  msgid "For more information"
1994
  msgstr "Za više informacija"
1995
 
1996
- #: includes/event-organiser-cpt.php:601
1997
  #, php-format
1998
  msgid "See the <a %s> documentation</a>"
1999
  msgstr "Pogledaj <a %s>dokumentaciju</a>"
2000
 
2001
- #: includes/event-organiser-cpt.php:602
2002
  msgid "Debugging Event Organiser"
2003
  msgstr ""
2004
 
2005
- #: includes/event-organiser-cpt.php:603
2006
  msgid "Go Pro!"
2007
  msgstr ""
2008
 
2009
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2010
  msgid "Color"
2011
  msgstr "Boja"
2012
 
2013
- #: includes/event-organiser-cpt.php:719
2014
  msgid "Assign the category a colour."
2015
  msgstr "Dodjeli kategoriji boju"
2016
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2017-04-14T22:58:58+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1291
  "%s."
1292
  msgstr ""
1293
 
1294
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1295
  #, php-format
1296
  msgid "[Lines %1$d-%2$d]"
1297
  msgstr ""
1298
 
1299
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1300
  #, php-format
1301
  msgid "[Line %1$d]"
1302
  msgstr ""
1303
 
1304
+ #: includes/class-eo-ical-parser.php:1066
1305
  #, php-format
1306
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1307
  msgstr ""
1308
 
1309
+ #: includes/class-eo-ical-parser.php:1104
1310
  #, php-format
1311
  msgid ""
1312
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1910
  "Samo postoječa stastajlišta mogu biti izabrana. Da bi ste dodali sastajlište "
1911
  "odite na stranicu sastajališta."
1912
 
1913
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1914
+ #: includes/event-organiser-cpt.php:590
1915
  msgid "Overview"
1916
  msgstr "pregled"
1917
 
1918
+ #: includes/event-organiser-cpt.php:565
1919
  msgid ""
1920
  "This is the list of all saved events. Note that <strong> recurring events "
1921
  "appear as a single row </strong> in the table and the start and end date "
1925
  "događaji se pojavljuju kao jedan red</strong>u tablici, početni i krajni "
1926
  "datumse odnose na prvo pojavljivanje ovog događanja."
1927
 
1928
+ #: includes/event-organiser-cpt.php:572
1929
  msgid ""
1930
  "Hovering over a row in the venues list will display action links that allow "
1931
  "you to manage that venue. You can perform the following actions:"
1934
  "vam omogućava upravljanje sa tim sastajalištem. Možete izvoditi sljedeće "
1935
  "radnje:"
1936
 
1937
+ #: includes/event-organiser-cpt.php:574
1938
  msgid ""
1939
  "Edit takes you to the editing screen for that venue. You can also reach that "
1940
  "screen by clicking on the venue title."
1942
  "Uređivanje vas vodi na zaslon uređivanja sastajališta. Do istog pregleda "
1943
  "možet doći klikon na naslov sastajališta"
1944
 
1945
+ #: includes/event-organiser-cpt.php:575
1946
  msgid "Delete will permanently remove the venue"
1947
  msgstr "Brisanje će trajno maknuti sastajatlište"
1948
 
1949
+ #: includes/event-organiser-cpt.php:576
1950
  msgid "View will take you to the venue's page"
1951
  msgstr "Pregled će vas odvesti na stranicu sastajališta"
1952
 
1953
+ #: includes/event-organiser-cpt.php:591
1954
  msgid ""
1955
  "This page shows all (occurrances of) events. You can view the summary of an "
1956
  "event by clicking on it. If you have the necessary permissions, a link to "
1960
  "događaja klikom na njega. Ako imate potreben dozvole, pojavit će se i dugem "
1961
  "za uređivanje stranice."
1962
 
1963
+ #: includes/event-organiser-cpt.php:592
1964
  msgid ""
1965
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1966
  "mode. You can also filter the events by events by category and venue. The "
1971
  "sastajalištu. Dugme 'idi na datum' omogućava Vam brzi skok na specifičan "
1972
  "datum."
1973
 
1974
+ #: includes/event-organiser-cpt.php:596
1975
  msgid "Add Event"
1976
  msgstr "dodaj događaj"
1977
 
1978
+ #: includes/event-organiser-cpt.php:597
1979
  msgid ""
1980
  "You can create an event on this Calendar, by clicking on day or dragging "
1981
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1989
  "objavljen ili biti spremljen kao skica. U svakom slučaju, događaj je kreiran "
1990
  "i biti ćete preusmjereni na stranicu događanja."
1991
 
1992
+ #: includes/event-organiser-cpt.php:604
1993
  msgid "For more information"
1994
  msgstr "Za više informacija"
1995
 
1996
+ #: includes/event-organiser-cpt.php:605
1997
  #, php-format
1998
  msgid "See the <a %s> documentation</a>"
1999
  msgstr "Pogledaj <a %s>dokumentaciju</a>"
2000
 
2001
+ #: includes/event-organiser-cpt.php:606
2002
  msgid "Debugging Event Organiser"
2003
  msgstr ""
2004
 
2005
+ #: includes/event-organiser-cpt.php:607
2006
  msgid "Go Pro!"
2007
  msgstr ""
2008
 
2009
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2010
  msgid "Color"
2011
  msgstr "Boja"
2012
 
2013
+ #: includes/event-organiser-cpt.php:723
2014
  msgid "Assign the category a colour."
2015
  msgstr "Dodjeli kategoriji boju"
2016
 
languages/eventorganiser-hu_HU.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2017-04-17T13:13:03+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1287,22 +1287,22 @@ msgid ""
1287
  "%s."
1288
  msgstr ""
1289
 
1290
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1291
  #, php-format
1292
  msgid "[Lines %1$d-%2$d]"
1293
  msgstr ""
1294
 
1295
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1296
  #, php-format
1297
  msgid "[Line %1$d]"
1298
  msgstr ""
1299
 
1300
- #: includes/class-eo-ical-parser.php:1044
1301
  #, php-format
1302
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1303
  msgstr ""
1304
 
1305
- #: includes/class-eo-ical-parser.php:1082
1306
  #, php-format
1307
  msgid ""
1308
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1911,12 +1911,12 @@ msgstr ""
1911
  "Csak már felvett helyszín választható ki. Új helyszínt az \"Események\" > "
1912
  "\"Helyszínek\" oldalon lehet felvenni. "
1913
 
1914
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1915
- #: includes/event-organiser-cpt.php:587
1916
  msgid "Overview"
1917
  msgstr "Áttekintés"
1918
 
1919
- #: includes/event-organiser-cpt.php:566
1920
  msgid ""
1921
  "This is the list of all saved events. Note that <strong> recurring events "
1922
  "appear as a single row </strong> in the table and the start and end date "
@@ -1926,7 +1926,7 @@ msgstr ""
1926
  "<strong>ismétlődő események csak egyszer jelennek meg</strong> a listában, a "
1927
  "kezdete és vége pedig az első eseményre vonatkozik."
1928
 
1929
- #: includes/event-organiser-cpt.php:574
1930
  msgid ""
1931
  "Hovering over a row in the venues list will display action links that allow "
1932
  "you to manage that venue. You can perform the following actions:"
@@ -1934,7 +1934,7 @@ msgstr ""
1934
  "Ha a sor fölé mozgatjuk az egeret, megjelennek a helyszínek kezeléséhez "
1935
  "elérhető műveletek hivatkozásai. A következő műveleteket lehet elvégezni:"
1936
 
1937
- #: includes/event-organiser-cpt.php:576
1938
  #, fuzzy
1939
  msgid ""
1940
  "Edit takes you to the editing screen for that venue. You can also reach that "
@@ -1943,15 +1943,15 @@ msgstr ""
1943
  "A Szerkesztés link a helyszín szerkesztő képernyőjére visz bennünket. Ez a "
1944
  "képernyő a helyszín címére kattintással is elérhető."
1945
 
1946
- #: includes/event-organiser-cpt.php:577
1947
  msgid "Delete will permanently remove the venue"
1948
  msgstr "A Törlés link végleg eltávolítja a helyszínt"
1949
 
1950
- #: includes/event-organiser-cpt.php:578
1951
  msgid "View will take you to the venue's page"
1952
  msgstr "A Megtekintés használatával megnézhetjük helyszínünk oldalát."
1953
 
1954
- #: includes/event-organiser-cpt.php:588
1955
  msgid ""
1956
  "This page shows all (occurrances of) events. You can view the summary of an "
1957
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -1961,7 +1961,7 @@ msgstr ""
1961
  "kattintva megjelennek annak részletei, és megfelelő jogosultság esetén a "
1962
  "szerkesztés link is."
1963
 
1964
- #: includes/event-organiser-cpt.php:589
1965
  msgid ""
1966
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1967
  "mode. You can also filter the events by events by category and venue. The "
@@ -1970,11 +1970,11 @@ msgstr ""
1970
  "A fülekre kattintva Hónap, Hét vagy Nap nézet is választható. Az eseményeket "
1971
  "lehet szűrni kategória és helyszín szerint is."
1972
 
1973
- #: includes/event-organiser-cpt.php:593
1974
  msgid "Add Event"
1975
  msgstr "Esemény hozzáadása"
1976
 
1977
- #: includes/event-organiser-cpt.php:594
1978
  msgid ""
1979
  "You can create an event on this Calendar, by clicking on day or dragging "
1980
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1990,28 +1990,28 @@ msgstr ""
1990
  "vázlatként vagy közzéteni. Mentés után megjelenik az esemény szerkesztése "
1991
  "oldal."
1992
 
1993
- #: includes/event-organiser-cpt.php:600
1994
  msgid "For more information"
1995
  msgstr "További információ:"
1996
 
1997
- #: includes/event-organiser-cpt.php:601
1998
  #, php-format
1999
  msgid "See the <a %s> documentation</a>"
2000
  msgstr "<a %s> Dokumentáció</a>"
2001
 
2002
- #: includes/event-organiser-cpt.php:602
2003
  msgid "Debugging Event Organiser"
2004
  msgstr ""
2005
 
2006
- #: includes/event-organiser-cpt.php:603
2007
  msgid "Go Pro!"
2008
  msgstr ""
2009
 
2010
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2011
  msgid "Color"
2012
  msgstr "Szín"
2013
 
2014
- #: includes/event-organiser-cpt.php:719
2015
  msgid "Assign the category a colour."
2016
  msgstr "Kategóriához rendelt szín."
2017
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2017-04-17T13:13:03+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1287
  "%s."
1288
  msgstr ""
1289
 
1290
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1291
  #, php-format
1292
  msgid "[Lines %1$d-%2$d]"
1293
  msgstr ""
1294
 
1295
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1296
  #, php-format
1297
  msgid "[Line %1$d]"
1298
  msgstr ""
1299
 
1300
+ #: includes/class-eo-ical-parser.php:1066
1301
  #, php-format
1302
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1303
  msgstr ""
1304
 
1305
+ #: includes/class-eo-ical-parser.php:1104
1306
  #, php-format
1307
  msgid ""
1308
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1911
  "Csak már felvett helyszín választható ki. Új helyszínt az \"Események\" > "
1912
  "\"Helyszínek\" oldalon lehet felvenni. "
1913
 
1914
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1915
+ #: includes/event-organiser-cpt.php:590
1916
  msgid "Overview"
1917
  msgstr "Áttekintés"
1918
 
1919
+ #: includes/event-organiser-cpt.php:565
1920
  msgid ""
1921
  "This is the list of all saved events. Note that <strong> recurring events "
1922
  "appear as a single row </strong> in the table and the start and end date "
1926
  "<strong>ismétlődő események csak egyszer jelennek meg</strong> a listában, a "
1927
  "kezdete és vége pedig az első eseményre vonatkozik."
1928
 
1929
+ #: includes/event-organiser-cpt.php:572
1930
  msgid ""
1931
  "Hovering over a row in the venues list will display action links that allow "
1932
  "you to manage that venue. You can perform the following actions:"
1934
  "Ha a sor fölé mozgatjuk az egeret, megjelennek a helyszínek kezeléséhez "
1935
  "elérhető műveletek hivatkozásai. A következő műveleteket lehet elvégezni:"
1936
 
1937
+ #: includes/event-organiser-cpt.php:574
1938
  #, fuzzy
1939
  msgid ""
1940
  "Edit takes you to the editing screen for that venue. You can also reach that "
1943
  "A Szerkesztés link a helyszín szerkesztő képernyőjére visz bennünket. Ez a "
1944
  "képernyő a helyszín címére kattintással is elérhető."
1945
 
1946
+ #: includes/event-organiser-cpt.php:575
1947
  msgid "Delete will permanently remove the venue"
1948
  msgstr "A Törlés link végleg eltávolítja a helyszínt"
1949
 
1950
+ #: includes/event-organiser-cpt.php:576
1951
  msgid "View will take you to the venue's page"
1952
  msgstr "A Megtekintés használatával megnézhetjük helyszínünk oldalát."
1953
 
1954
+ #: includes/event-organiser-cpt.php:591
1955
  msgid ""
1956
  "This page shows all (occurrances of) events. You can view the summary of an "
1957
  "event by clicking on it. If you have the necessary permissions, a link to "
1961
  "kattintva megjelennek annak részletei, és megfelelő jogosultság esetén a "
1962
  "szerkesztés link is."
1963
 
1964
+ #: includes/event-organiser-cpt.php:592
1965
  msgid ""
1966
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1967
  "mode. You can also filter the events by events by category and venue. The "
1970
  "A fülekre kattintva Hónap, Hét vagy Nap nézet is választható. Az eseményeket "
1971
  "lehet szűrni kategória és helyszín szerint is."
1972
 
1973
+ #: includes/event-organiser-cpt.php:596
1974
  msgid "Add Event"
1975
  msgstr "Esemény hozzáadása"
1976
 
1977
+ #: includes/event-organiser-cpt.php:597
1978
  msgid ""
1979
  "You can create an event on this Calendar, by clicking on day or dragging "
1980
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1990
  "vázlatként vagy közzéteni. Mentés után megjelenik az esemény szerkesztése "
1991
  "oldal."
1992
 
1993
+ #: includes/event-organiser-cpt.php:604
1994
  msgid "For more information"
1995
  msgstr "További információ:"
1996
 
1997
+ #: includes/event-organiser-cpt.php:605
1998
  #, php-format
1999
  msgid "See the <a %s> documentation</a>"
2000
  msgstr "<a %s> Dokumentáció</a>"
2001
 
2002
+ #: includes/event-organiser-cpt.php:606
2003
  msgid "Debugging Event Organiser"
2004
  msgstr ""
2005
 
2006
+ #: includes/event-organiser-cpt.php:607
2007
  msgid "Go Pro!"
2008
  msgstr ""
2009
 
2010
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2011
  msgid "Color"
2012
  msgstr "Szín"
2013
 
2014
+ #: includes/event-organiser-cpt.php:723
2015
  msgid "Assign the category a colour."
2016
  msgstr "Kategóriához rendelt szín."
2017
 
languages/eventorganiser-id_ID.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2017-08-19T03:46:46+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1267,22 +1267,22 @@ msgid ""
1267
  "%s."
1268
  msgstr ""
1269
 
1270
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1271
  #, php-format
1272
  msgid "[Lines %1$d-%2$d]"
1273
  msgstr ""
1274
 
1275
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1276
  #, php-format
1277
  msgid "[Line %1$d]"
1278
  msgstr ""
1279
 
1280
- #: includes/class-eo-ical-parser.php:1044
1281
  #, php-format
1282
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1283
  msgstr ""
1284
 
1285
- #: includes/class-eo-ical-parser.php:1082
1286
  #, php-format
1287
  msgid ""
1288
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1858,57 +1858,57 @@ msgid ""
1858
  "page."
1859
  msgstr ""
1860
 
1861
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1862
- #: includes/event-organiser-cpt.php:587
1863
  msgid "Overview"
1864
  msgstr ""
1865
 
1866
- #: includes/event-organiser-cpt.php:566
1867
  msgid ""
1868
  "This is the list of all saved events. Note that <strong> recurring events "
1869
  "appear as a single row </strong> in the table and the start and end date "
1870
  "refers to the first occurrence of that event."
1871
  msgstr ""
1872
 
1873
- #: includes/event-organiser-cpt.php:574
1874
  msgid ""
1875
  "Hovering over a row in the venues list will display action links that allow "
1876
  "you to manage that venue. You can perform the following actions:"
1877
  msgstr ""
1878
 
1879
- #: includes/event-organiser-cpt.php:576
1880
  msgid ""
1881
  "Edit takes you to the editing screen for that venue. You can also reach that "
1882
  "screen by clicking on the venue title."
1883
  msgstr ""
1884
 
1885
- #: includes/event-organiser-cpt.php:577
1886
  msgid "Delete will permanently remove the venue"
1887
  msgstr "Menghapus akan membuang Venue secara permanen"
1888
 
1889
- #: includes/event-organiser-cpt.php:578
1890
  msgid "View will take you to the venue's page"
1891
  msgstr "Lihat (View) akan membawa anda pada Halaman Venue"
1892
 
1893
- #: includes/event-organiser-cpt.php:588
1894
  msgid ""
1895
  "This page shows all (occurrances of) events. You can view the summary of an "
1896
  "event by clicking on it. If you have the necessary permissions, a link to "
1897
  "the event's edit page will appear also."
1898
  msgstr ""
1899
 
1900
- #: includes/event-organiser-cpt.php:589
1901
  msgid ""
1902
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1903
  "mode. You can also filter the events by events by category and venue. The "
1904
  "'go to date' button allows you to quickly jump to a specific date."
1905
  msgstr ""
1906
 
1907
- #: includes/event-organiser-cpt.php:593
1908
  msgid "Add Event"
1909
  msgstr "Tambah Event"
1910
 
1911
- #: includes/event-organiser-cpt.php:594
1912
  msgid ""
1913
  "You can create an event on this Calendar, by clicking on day or dragging "
1914
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1923,28 +1923,28 @@ msgstr ""
1923
  "disimpan (save) sebagai draft. Dalam kasus tertentu, Event dibuat dan Anda "
1924
  "diteruskan pada halaman edit event tersebut."
1925
 
1926
- #: includes/event-organiser-cpt.php:600
1927
  msgid "For more information"
1928
  msgstr "Untuk informasi lebih lanjut"
1929
 
1930
- #: includes/event-organiser-cpt.php:601
1931
  #, php-format
1932
  msgid "See the <a %s> documentation</a>"
1933
  msgstr "Lihat <a %s>dokumentasi</a>"
1934
 
1935
- #: includes/event-organiser-cpt.php:602
1936
  msgid "Debugging Event Organiser"
1937
  msgstr "Debug Event Organizer"
1938
 
1939
- #: includes/event-organiser-cpt.php:603
1940
  msgid "Go Pro!"
1941
  msgstr "Go Pro!"
1942
 
1943
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
1944
  msgid "Color"
1945
  msgstr "warna"
1946
 
1947
- #: includes/event-organiser-cpt.php:719
1948
  msgid "Assign the category a colour."
1949
  msgstr "Menambah warna pada category"
1950
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2017-08-19T03:46:46+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1267
  "%s."
1268
  msgstr ""
1269
 
1270
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1271
  #, php-format
1272
  msgid "[Lines %1$d-%2$d]"
1273
  msgstr ""
1274
 
1275
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1276
  #, php-format
1277
  msgid "[Line %1$d]"
1278
  msgstr ""
1279
 
1280
+ #: includes/class-eo-ical-parser.php:1066
1281
  #, php-format
1282
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1283
  msgstr ""
1284
 
1285
+ #: includes/class-eo-ical-parser.php:1104
1286
  #, php-format
1287
  msgid ""
1288
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1858
  "page."
1859
  msgstr ""
1860
 
1861
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1862
+ #: includes/event-organiser-cpt.php:590
1863
  msgid "Overview"
1864
  msgstr ""
1865
 
1866
+ #: includes/event-organiser-cpt.php:565
1867
  msgid ""
1868
  "This is the list of all saved events. Note that <strong> recurring events "
1869
  "appear as a single row </strong> in the table and the start and end date "
1870
  "refers to the first occurrence of that event."
1871
  msgstr ""
1872
 
1873
+ #: includes/event-organiser-cpt.php:572
1874
  msgid ""
1875
  "Hovering over a row in the venues list will display action links that allow "
1876
  "you to manage that venue. You can perform the following actions:"
1877
  msgstr ""
1878
 
1879
+ #: includes/event-organiser-cpt.php:574
1880
  msgid ""
1881
  "Edit takes you to the editing screen for that venue. You can also reach that "
1882
  "screen by clicking on the venue title."
1883
  msgstr ""
1884
 
1885
+ #: includes/event-organiser-cpt.php:575
1886
  msgid "Delete will permanently remove the venue"
1887
  msgstr "Menghapus akan membuang Venue secara permanen"
1888
 
1889
+ #: includes/event-organiser-cpt.php:576
1890
  msgid "View will take you to the venue's page"
1891
  msgstr "Lihat (View) akan membawa anda pada Halaman Venue"
1892
 
1893
+ #: includes/event-organiser-cpt.php:591
1894
  msgid ""
1895
  "This page shows all (occurrances of) events. You can view the summary of an "
1896
  "event by clicking on it. If you have the necessary permissions, a link to "
1897
  "the event's edit page will appear also."
1898
  msgstr ""
1899
 
1900
+ #: includes/event-organiser-cpt.php:592
1901
  msgid ""
1902
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1903
  "mode. You can also filter the events by events by category and venue. The "
1904
  "'go to date' button allows you to quickly jump to a specific date."
1905
  msgstr ""
1906
 
1907
+ #: includes/event-organiser-cpt.php:596
1908
  msgid "Add Event"
1909
  msgstr "Tambah Event"
1910
 
1911
+ #: includes/event-organiser-cpt.php:597
1912
  msgid ""
1913
  "You can create an event on this Calendar, by clicking on day or dragging "
1914
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1923
  "disimpan (save) sebagai draft. Dalam kasus tertentu, Event dibuat dan Anda "
1924
  "diteruskan pada halaman edit event tersebut."
1925
 
1926
+ #: includes/event-organiser-cpt.php:604
1927
  msgid "For more information"
1928
  msgstr "Untuk informasi lebih lanjut"
1929
 
1930
+ #: includes/event-organiser-cpt.php:605
1931
  #, php-format
1932
  msgid "See the <a %s> documentation</a>"
1933
  msgstr "Lihat <a %s>dokumentasi</a>"
1934
 
1935
+ #: includes/event-organiser-cpt.php:606
1936
  msgid "Debugging Event Organiser"
1937
  msgstr "Debug Event Organizer"
1938
 
1939
+ #: includes/event-organiser-cpt.php:607
1940
  msgid "Go Pro!"
1941
  msgstr "Go Pro!"
1942
 
1943
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
1944
  msgid "Color"
1945
  msgstr "warna"
1946
 
1947
+ #: includes/event-organiser-cpt.php:723
1948
  msgid "Assign the category a colour."
1949
  msgstr "Menambah warna pada category"
1950
 
languages/eventorganiser-is_IS.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2016-12-06T20:43:36+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1321,22 +1321,22 @@ msgstr ""
1321
  "Viðburður sem á að endurtakast óendanlega er til staðar. Hann kemur til með "
1322
  "að endurtakast til %s."
1323
 
1324
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1325
  #, php-format
1326
  msgid "[Lines %1$d-%2$d]"
1327
  msgstr "[Línur %1$d-%2$d]"
1328
 
1329
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1330
  #, php-format
1331
  msgid "[Line %1$d]"
1332
  msgstr "[Lína %1$d]"
1333
 
1334
- #: includes/class-eo-ical-parser.php:1044
1335
  #, php-format
1336
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1337
  msgstr "Ógild dagsetning \"%s\". Búst er við henni á forminu ÁÁÁÁMMDD."
1338
 
1339
- #: includes/class-eo-ical-parser.php:1082
1340
  #, php-format
1341
  msgid ""
1342
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1942,12 +1942,12 @@ msgstr ""
1942
  "Einungis er hægt að velja staðsetningar sem þegar er búið að skilgreina. Til "
1943
  "að bæta við staðsetnginu, farðu á staðsetningarsíðu."
1944
 
1945
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1946
- #: includes/event-organiser-cpt.php:587
1947
  msgid "Overview"
1948
  msgstr "Yfirlit"
1949
 
1950
- #: includes/event-organiser-cpt.php:566
1951
  msgid ""
1952
  "This is the list of all saved events. Note that <strong> recurring events "
1953
  "appear as a single row </strong> in the table and the start and end date "
@@ -1957,13 +1957,13 @@ msgstr ""
1957
  "viðburðir birtast sem ein röð </strong> í töflunni og að upphafs- og "
1958
  "lokadagur vísar til fyrsta tilviks þess viðburðar."
1959
 
1960
- #: includes/event-organiser-cpt.php:574
1961
  msgid ""
1962
  "Hovering over a row in the venues list will display action links that allow "
1963
  "you to manage that venue. You can perform the following actions:"
1964
  msgstr ""
1965
 
1966
- #: includes/event-organiser-cpt.php:576
1967
  msgid ""
1968
  "Edit takes you to the editing screen for that venue. You can also reach that "
1969
  "screen by clicking on the venue title."
@@ -1971,15 +1971,15 @@ msgstr ""
1971
  "Að breyta flytur þig á breytingaskjá fyrir  stasetningu. Þú flyst þangað "
1972
  "líka ef þú smellir á heiti viðburðar."
1973
 
1974
- #: includes/event-organiser-cpt.php:577
1975
  msgid "Delete will permanently remove the venue"
1976
  msgstr "Eyðing staðsetningar er ekki afturkræf"
1977
 
1978
- #: includes/event-organiser-cpt.php:578
1979
  msgid "View will take you to the venue's page"
1980
  msgstr "Skoða, færir þig á síðu fyrir staðsetningu."
1981
 
1982
- #: includes/event-organiser-cpt.php:588
1983
  msgid ""
1984
  "This page shows all (occurrances of) events. You can view the summary of an "
1985
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -1989,7 +1989,7 @@ msgstr ""
1989
  "því að smella á hann. Ef þú hefur réttindi til geturðu breytinga birtist "
1990
  "tengill til þess líka."
1991
 
1992
- #: includes/event-organiser-cpt.php:589
1993
  msgid ""
1994
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1995
  "mode. You can also filter the events by events by category and venue. The "
@@ -1999,11 +1999,11 @@ msgstr ""
1999
  "Svo geturðu líka skoðað eftir flokki eða staðsetningu. 'Hoppa á dag' "
2000
  "hnappurinn leyfir þér svo að skoða ákveðinn dag."
2001
 
2002
- #: includes/event-organiser-cpt.php:593
2003
  msgid "Add Event"
2004
  msgstr "Bæta við viðburði"
2005
 
2006
- #: includes/event-organiser-cpt.php:594
2007
  msgid ""
2008
  "You can create an event on this Calendar, by clicking on day or dragging "
2009
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -2017,28 +2017,28 @@ msgstr ""
2017
  "má birta eða vista uppkast. Hvernig sem fer þá er viðburðurinn búinn til og  "
2018
  "breyta."
2019
 
2020
- #: includes/event-organiser-cpt.php:600
2021
  msgid "For more information"
2022
  msgstr "Frekari upplýsingar"
2023
 
2024
- #: includes/event-organiser-cpt.php:601
2025
  #, php-format
2026
  msgid "See the <a %s> documentation</a>"
2027
  msgstr "Sjá <a %s> upplýsingar</a>"
2028
 
2029
- #: includes/event-organiser-cpt.php:602
2030
  msgid "Debugging Event Organiser"
2031
  msgstr "Villuhreinsa Viðburðastjóra"
2032
 
2033
- #: includes/event-organiser-cpt.php:603
2034
  msgid "Go Pro!"
2035
  msgstr "KUppfæra í Pro!"
2036
 
2037
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2038
  msgid "Color"
2039
  msgstr "Litur"
2040
 
2041
- #: includes/event-organiser-cpt.php:719
2042
  msgid "Assign the category a colour."
2043
  msgstr "Setja lit flokks"
2044
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2016-12-06T20:43:36+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1321
  "Viðburður sem á að endurtakast óendanlega er til staðar. Hann kemur til með "
1322
  "að endurtakast til %s."
1323
 
1324
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1325
  #, php-format
1326
  msgid "[Lines %1$d-%2$d]"
1327
  msgstr "[Línur %1$d-%2$d]"
1328
 
1329
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1330
  #, php-format
1331
  msgid "[Line %1$d]"
1332
  msgstr "[Lína %1$d]"
1333
 
1334
+ #: includes/class-eo-ical-parser.php:1066
1335
  #, php-format
1336
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1337
  msgstr "Ógild dagsetning \"%s\". Búst er við henni á forminu ÁÁÁÁMMDD."
1338
 
1339
+ #: includes/class-eo-ical-parser.php:1104
1340
  #, php-format
1341
  msgid ""
1342
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1942
  "Einungis er hægt að velja staðsetningar sem þegar er búið að skilgreina. Til "
1943
  "að bæta við staðsetnginu, farðu á staðsetningarsíðu."
1944
 
1945
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1946
+ #: includes/event-organiser-cpt.php:590
1947
  msgid "Overview"
1948
  msgstr "Yfirlit"
1949
 
1950
+ #: includes/event-organiser-cpt.php:565
1951
  msgid ""
1952
  "This is the list of all saved events. Note that <strong> recurring events "
1953
  "appear as a single row </strong> in the table and the start and end date "
1957
  "viðburðir birtast sem ein röð </strong> í töflunni og að upphafs- og "
1958
  "lokadagur vísar til fyrsta tilviks þess viðburðar."
1959
 
1960
+ #: includes/event-organiser-cpt.php:572
1961
  msgid ""
1962
  "Hovering over a row in the venues list will display action links that allow "
1963
  "you to manage that venue. You can perform the following actions:"
1964
  msgstr ""
1965
 
1966
+ #: includes/event-organiser-cpt.php:574
1967
  msgid ""
1968
  "Edit takes you to the editing screen for that venue. You can also reach that "
1969
  "screen by clicking on the venue title."
1971
  "Að breyta flytur þig á breytingaskjá fyrir  stasetningu. Þú flyst þangað "
1972
  "líka ef þú smellir á heiti viðburðar."
1973
 
1974
+ #: includes/event-organiser-cpt.php:575
1975
  msgid "Delete will permanently remove the venue"
1976
  msgstr "Eyðing staðsetningar er ekki afturkræf"
1977
 
1978
+ #: includes/event-organiser-cpt.php:576
1979
  msgid "View will take you to the venue's page"
1980
  msgstr "Skoða, færir þig á síðu fyrir staðsetningu."
1981
 
1982
+ #: includes/event-organiser-cpt.php:591
1983
  msgid ""
1984
  "This page shows all (occurrances of) events. You can view the summary of an "
1985
  "event by clicking on it. If you have the necessary permissions, a link to "
1989
  "því að smella á hann. Ef þú hefur réttindi til geturðu breytinga birtist "
1990
  "tengill til þess líka."
1991
 
1992
+ #: includes/event-organiser-cpt.php:592
1993
  msgid ""
1994
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1995
  "mode. You can also filter the events by events by category and venue. The "
1999
  "Svo geturðu líka skoðað eftir flokki eða staðsetningu. 'Hoppa á dag' "
2000
  "hnappurinn leyfir þér svo að skoða ákveðinn dag."
2001
 
2002
+ #: includes/event-organiser-cpt.php:596
2003
  msgid "Add Event"
2004
  msgstr "Bæta við viðburði"
2005
 
2006
+ #: includes/event-organiser-cpt.php:597
2007
  msgid ""
2008
  "You can create an event on this Calendar, by clicking on day or dragging "
2009
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
2017
  "má birta eða vista uppkast. Hvernig sem fer þá er viðburðurinn búinn til og  "
2018
  "breyta."
2019
 
2020
+ #: includes/event-organiser-cpt.php:604
2021
  msgid "For more information"
2022
  msgstr "Frekari upplýsingar"
2023
 
2024
+ #: includes/event-organiser-cpt.php:605
2025
  #, php-format
2026
  msgid "See the <a %s> documentation</a>"
2027
  msgstr "Sjá <a %s> upplýsingar</a>"
2028
 
2029
+ #: includes/event-organiser-cpt.php:606
2030
  msgid "Debugging Event Organiser"
2031
  msgstr "Villuhreinsa Viðburðastjóra"
2032
 
2033
+ #: includes/event-organiser-cpt.php:607
2034
  msgid "Go Pro!"
2035
  msgstr "KUppfæra í Pro!"
2036
 
2037
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2038
  msgid "Color"
2039
  msgstr "Litur"
2040
 
2041
+ #: includes/event-organiser-cpt.php:723
2042
  msgid "Assign the category a colour."
2043
  msgstr "Setja lit flokks"
2044
 
languages/eventorganiser-it_IT.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2017-08-23T05:39:57+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1363,22 +1363,22 @@ msgstr ""
1363
  "Il feed contiene un evento indefinitamente ricorrente. Questo evento si "
1364
  "ripeterà fino a %s."
1365
 
1366
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1367
  #, php-format
1368
  msgid "[Lines %1$d-%2$d]"
1369
  msgstr "[Righe %1$d-%2$d]"
1370
 
1371
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1372
  #, php-format
1373
  msgid "[Line %1$d]"
1374
  msgstr "[Riga %1$d]"
1375
 
1376
- #: includes/class-eo-ical-parser.php:1044
1377
  #, php-format
1378
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1379
  msgstr "Data non valida \"%s\". La data deve essere nel formato YYYYMMDD."
1380
 
1381
- #: includes/class-eo-ical-parser.php:1082
1382
  #, php-format
1383
  msgid ""
1384
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -2002,12 +2002,12 @@ msgstr ""
2002
  "Pu&ograve; essere selezionato solo un luogo gi&agrave; esistente. Per "
2003
  "aggiungere un luogo, vai alla relativa pagina"
2004
 
2005
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
2006
- #: includes/event-organiser-cpt.php:587
2007
  msgid "Overview"
2008
  msgstr "Panoramica"
2009
 
2010
- #: includes/event-organiser-cpt.php:566
2011
  msgid ""
2012
  "This is the list of all saved events. Note that <strong> recurring events "
2013
  "appear as a single row </strong> in the table and the start and end date "
@@ -2017,7 +2017,7 @@ msgstr ""
2017
  "eventi ripetitivi appaiono come una riga singola</strong> nella tabella e la "
2018
  "data d'inizio e fine si riferiscono alla prima occorrenza dell'evento."
2019
 
2020
- #: includes/event-organiser-cpt.php:574
2021
  msgid ""
2022
  "Hovering over a row in the venues list will display action links that allow "
2023
  "you to manage that venue. You can perform the following actions:"
@@ -2025,7 +2025,7 @@ msgstr ""
2025
  "Passando il mouse su un luogo della lista saranno mostrate le azioni per la "
2026
  "gestione del luogo. &Egrave; possibile eseguire le seguenti azioni:"
2027
 
2028
- #: includes/event-organiser-cpt.php:576
2029
  msgid ""
2030
  "Edit takes you to the editing screen for that venue. You can also reach that "
2031
  "screen by clicking on the venue title."
@@ -2033,15 +2033,15 @@ msgstr ""
2033
  "'Modifica' va alla schermata di modifica del luogo. Si pu&ograve; anche "
2034
  "raggiungere la schermata cliccando sul nome del luogo."
2035
 
2036
- #: includes/event-organiser-cpt.php:577
2037
  msgid "Delete will permanently remove the venue"
2038
  msgstr "'Elimina' permette di eliminare il luogo definitivamente"
2039
 
2040
- #: includes/event-organiser-cpt.php:578
2041
  msgid "View will take you to the venue's page"
2042
  msgstr "'Mostra' permette di visualizzare la pagina del luogo"
2043
 
2044
- #: includes/event-organiser-cpt.php:588
2045
  msgid ""
2046
  "This page shows all (occurrances of) events. You can view the summary of an "
2047
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -2051,7 +2051,7 @@ msgstr ""
2051
  "riassunto dell'evento cliccandoci sopra. Se si dispone dei permessi "
2052
  "necessari, sar&agrave; mostrato anche un link alla pagina di modifica."
2053
 
2054
- #: includes/event-organiser-cpt.php:589
2055
  #, fuzzy
2056
  msgid ""
2057
  "By clicking the relevant tab, you can view events in Month, Week or Day "
@@ -2062,11 +2062,11 @@ msgstr ""
2062
  "giornalieri. Puoi anche filtrare gli eventi per categoria o luogo. Il "
2063
  "pulsante 'alla data' permette di vedere gli eventi di una data specifica."
2064
 
2065
- #: includes/event-organiser-cpt.php:593
2066
  msgid "Add Event"
2067
  msgstr "Aggiungi evento"
2068
 
2069
- #: includes/event-organiser-cpt.php:594
2070
  msgid ""
2071
  "You can create an event on this Calendar, by clicking on day or dragging "
2072
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -2081,29 +2081,29 @@ msgstr ""
2081
  "pubblicato subito o salvato come bozza. In ogni caso, l'evento viene creato "
2082
  "e verrai reindirizzato alla sua pagina di modifica."
2083
 
2084
- #: includes/event-organiser-cpt.php:600
2085
  msgid "For more information"
2086
  msgstr "Per ulteriori informazioni"
2087
 
2088
- #: includes/event-organiser-cpt.php:601
2089
  #, php-format
2090
  msgid "See the <a %s> documentation</a>"
2091
  msgstr "Guarda la <a %s>documentazione</a>"
2092
 
2093
- #: includes/event-organiser-cpt.php:602
2094
  #, fuzzy
2095
  msgid "Debugging Event Organiser"
2096
  msgstr "Debug di Event Organiser"
2097
 
2098
- #: includes/event-organiser-cpt.php:603
2099
  msgid "Go Pro!"
2100
  msgstr "Diventa Pro!"
2101
 
2102
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2103
  msgid "Color"
2104
  msgstr "Colore"
2105
 
2106
- #: includes/event-organiser-cpt.php:719
2107
  msgid "Assign the category a colour."
2108
  msgstr "Assegna un colore alla categoria"
2109
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2017-08-23T05:39:57+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1363
  "Il feed contiene un evento indefinitamente ricorrente. Questo evento si "
1364
  "ripeterà fino a %s."
1365
 
1366
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1367
  #, php-format
1368
  msgid "[Lines %1$d-%2$d]"
1369
  msgstr "[Righe %1$d-%2$d]"
1370
 
1371
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1372
  #, php-format
1373
  msgid "[Line %1$d]"
1374
  msgstr "[Riga %1$d]"
1375
 
1376
+ #: includes/class-eo-ical-parser.php:1066
1377
  #, php-format
1378
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1379
  msgstr "Data non valida \"%s\". La data deve essere nel formato YYYYMMDD."
1380
 
1381
+ #: includes/class-eo-ical-parser.php:1104
1382
  #, php-format
1383
  msgid ""
1384
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
2002
  "Pu&ograve; essere selezionato solo un luogo gi&agrave; esistente. Per "
2003
  "aggiungere un luogo, vai alla relativa pagina"
2004
 
2005
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
2006
+ #: includes/event-organiser-cpt.php:590
2007
  msgid "Overview"
2008
  msgstr "Panoramica"
2009
 
2010
+ #: includes/event-organiser-cpt.php:565
2011
  msgid ""
2012
  "This is the list of all saved events. Note that <strong> recurring events "
2013
  "appear as a single row </strong> in the table and the start and end date "
2017
  "eventi ripetitivi appaiono come una riga singola</strong> nella tabella e la "
2018
  "data d'inizio e fine si riferiscono alla prima occorrenza dell'evento."
2019
 
2020
+ #: includes/event-organiser-cpt.php:572
2021
  msgid ""
2022
  "Hovering over a row in the venues list will display action links that allow "
2023
  "you to manage that venue. You can perform the following actions:"
2025
  "Passando il mouse su un luogo della lista saranno mostrate le azioni per la "
2026
  "gestione del luogo. &Egrave; possibile eseguire le seguenti azioni:"
2027
 
2028
+ #: includes/event-organiser-cpt.php:574
2029
  msgid ""
2030
  "Edit takes you to the editing screen for that venue. You can also reach that "
2031
  "screen by clicking on the venue title."
2033
  "'Modifica' va alla schermata di modifica del luogo. Si pu&ograve; anche "
2034
  "raggiungere la schermata cliccando sul nome del luogo."
2035
 
2036
+ #: includes/event-organiser-cpt.php:575
2037
  msgid "Delete will permanently remove the venue"
2038
  msgstr "'Elimina' permette di eliminare il luogo definitivamente"
2039
 
2040
+ #: includes/event-organiser-cpt.php:576
2041
  msgid "View will take you to the venue's page"
2042
  msgstr "'Mostra' permette di visualizzare la pagina del luogo"
2043
 
2044
+ #: includes/event-organiser-cpt.php:591
2045
  msgid ""
2046
  "This page shows all (occurrances of) events. You can view the summary of an "
2047
  "event by clicking on it. If you have the necessary permissions, a link to "
2051
  "riassunto dell'evento cliccandoci sopra. Se si dispone dei permessi "
2052
  "necessari, sar&agrave; mostrato anche un link alla pagina di modifica."
2053
 
2054
+ #: includes/event-organiser-cpt.php:592
2055
  #, fuzzy
2056
  msgid ""
2057
  "By clicking the relevant tab, you can view events in Month, Week or Day "
2062
  "giornalieri. Puoi anche filtrare gli eventi per categoria o luogo. Il "
2063
  "pulsante 'alla data' permette di vedere gli eventi di una data specifica."
2064
 
2065
+ #: includes/event-organiser-cpt.php:596
2066
  msgid "Add Event"
2067
  msgstr "Aggiungi evento"
2068
 
2069
+ #: includes/event-organiser-cpt.php:597
2070
  msgid ""
2071
  "You can create an event on this Calendar, by clicking on day or dragging "
2072
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
2081
  "pubblicato subito o salvato come bozza. In ogni caso, l'evento viene creato "
2082
  "e verrai reindirizzato alla sua pagina di modifica."
2083
 
2084
+ #: includes/event-organiser-cpt.php:604
2085
  msgid "For more information"
2086
  msgstr "Per ulteriori informazioni"
2087
 
2088
+ #: includes/event-organiser-cpt.php:605
2089
  #, php-format
2090
  msgid "See the <a %s> documentation</a>"
2091
  msgstr "Guarda la <a %s>documentazione</a>"
2092
 
2093
+ #: includes/event-organiser-cpt.php:606
2094
  #, fuzzy
2095
  msgid "Debugging Event Organiser"
2096
  msgstr "Debug di Event Organiser"
2097
 
2098
+ #: includes/event-organiser-cpt.php:607
2099
  msgid "Go Pro!"
2100
  msgstr "Diventa Pro!"
2101
 
2102
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2103
  msgid "Color"
2104
  msgstr "Colore"
2105
 
2106
+ #: includes/event-organiser-cpt.php:723
2107
  msgid "Assign the category a colour."
2108
  msgstr "Assegna un colore alla categoria"
2109
 
languages/eventorganiser-ja.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2017-05-02T14:20:11+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1325,22 +1325,22 @@ msgstr ""
1325
  "フィードには無限に繰り返されるイベントが含まれています。このイベントは%sまで"
1326
  "繰り返されます。"
1327
 
1328
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1329
  #, php-format
1330
  msgid "[Lines %1$d-%2$d]"
1331
  msgstr "[%1$d-%2$d行]"
1332
 
1333
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1334
  #, php-format
1335
  msgid "[Line %1$d]"
1336
  msgstr "[%1$d行]"
1337
 
1338
- #: includes/class-eo-ical-parser.php:1044
1339
  #, php-format
1340
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1341
  msgstr "正しくない日付: \"%s\"。日付形式は YYYYMMDD です。"
1342
 
1343
- #: includes/class-eo-ical-parser.php:1082
1344
  #, php-format
1345
  msgid ""
1346
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1945,12 +1945,12 @@ msgid ""
1945
  msgstr ""
1946
  "既に作成された会場のみ選択できます。会場の作成は「会場」ページにて可能です。"
1947
 
1948
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1949
- #: includes/event-organiser-cpt.php:587
1950
  msgid "Overview"
1951
  msgstr "概要"
1952
 
1953
- #: includes/event-organiser-cpt.php:566
1954
  msgid ""
1955
  "This is the list of all saved events. Note that <strong> recurring events "
1956
  "appear as a single row </strong> in the table and the start and end date "
@@ -1960,7 +1960,7 @@ msgstr ""
1960
  "トが1行で表示されます</ strong>、またそのイベントの開始日と終了日は最初の繰り"
1961
  "返しイベントを参照します。"
1962
 
1963
- #: includes/event-organiser-cpt.php:574
1964
  msgid ""
1965
  "Hovering over a row in the venues list will display action links that allow "
1966
  "you to manage that venue. You can perform the following actions:"
@@ -1968,7 +1968,7 @@ msgstr ""
1968
  "会場リストの行にカーソルを合わせると、その会場を管理できるようにするアクショ"
1969
  "ンリンクが表示されます。次の操作を実行できます。"
1970
 
1971
- #: includes/event-organiser-cpt.php:576
1972
  msgid ""
1973
  "Edit takes you to the editing screen for that venue. You can also reach that "
1974
  "screen by clicking on the venue title."
@@ -1976,15 +1976,15 @@ msgstr ""
1976
  "編集は会場の編集画面に移動します。会場のタイトルをクリックして編集画面にアク"
1977
  "セスすることもできます。"
1978
 
1979
- #: includes/event-organiser-cpt.php:577
1980
  msgid "Delete will permanently remove the venue"
1981
  msgstr "削除すると会場は完全に削除されます"
1982
 
1983
- #: includes/event-organiser-cpt.php:578
1984
  msgid "View will take you to the venue's page"
1985
  msgstr "ビューで会場のページに移動します"
1986
 
1987
- #: includes/event-organiser-cpt.php:588
1988
  msgid ""
1989
  "This page shows all (occurrances of) events. You can view the summary of an "
1990
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -1994,7 +1994,7 @@ msgstr ""
1994
  "要をクリックすると表示できます。必要な権限がある場合は、イベントの編集ページ"
1995
  "へのリンクも表示されます。"
1996
 
1997
- #: includes/event-organiser-cpt.php:589
1998
  msgid ""
1999
  "By clicking the relevant tab, you can view events in Month, Week or Day "
2000
  "mode. You can also filter the events by events by category and venue. The "
@@ -2005,11 +2005,11 @@ msgstr ""
2005
  "できます。 「日付を指定」ボタンを使用すると、特定の日付にすばやくジャンプでき"
2006
  "ます。"
2007
 
2008
- #: includes/event-organiser-cpt.php:593
2009
  msgid "Add Event"
2010
  msgstr "イベントを追加"
2011
 
2012
- #: includes/event-organiser-cpt.php:594
2013
  msgid ""
2014
  "You can create an event on this Calendar, by clicking on day or dragging "
2015
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -2024,28 +2024,28 @@ msgstr ""
2024
  "す。いずれの場合も、イベントが作成され、そのイベントの編集ページに移行しま"
2025
  "す。"
2026
 
2027
- #: includes/event-organiser-cpt.php:600
2028
  msgid "For more information"
2029
  msgstr "詳細を見る"
2030
 
2031
- #: includes/event-organiser-cpt.php:601
2032
  #, php-format
2033
  msgid "See the <a %s> documentation</a>"
2034
  msgstr "<a %s>ドキュメント</a>を見る"
2035
 
2036
- #: includes/event-organiser-cpt.php:602
2037
  msgid "Debugging Event Organiser"
2038
  msgstr "Event Organiserをデバッグ"
2039
 
2040
- #: includes/event-organiser-cpt.php:603
2041
  msgid "Go Pro!"
2042
  msgstr "Proへ!"
2043
 
2044
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2045
  msgid "Color"
2046
  msgstr "色"
2047
 
2048
- #: includes/event-organiser-cpt.php:719
2049
  msgid "Assign the category a colour."
2050
  msgstr "カテゴリの色を設定します。"
2051
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2017-05-02T14:20:11+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1325
  "フィードには無限に繰り返されるイベントが含まれています。このイベントは%sまで"
1326
  "繰り返されます。"
1327
 
1328
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1329
  #, php-format
1330
  msgid "[Lines %1$d-%2$d]"
1331
  msgstr "[%1$d-%2$d行]"
1332
 
1333
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1334
  #, php-format
1335
  msgid "[Line %1$d]"
1336
  msgstr "[%1$d行]"
1337
 
1338
+ #: includes/class-eo-ical-parser.php:1066
1339
  #, php-format
1340
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1341
  msgstr "正しくない日付: \"%s\"。日付形式は YYYYMMDD です。"
1342
 
1343
+ #: includes/class-eo-ical-parser.php:1104
1344
  #, php-format
1345
  msgid ""
1346
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1945
  msgstr ""
1946
  "既に作成された会場のみ選択できます。会場の作成は「会場」ページにて可能です。"
1947
 
1948
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1949
+ #: includes/event-organiser-cpt.php:590
1950
  msgid "Overview"
1951
  msgstr "概要"
1952
 
1953
+ #: includes/event-organiser-cpt.php:565
1954
  msgid ""
1955
  "This is the list of all saved events. Note that <strong> recurring events "
1956
  "appear as a single row </strong> in the table and the start and end date "
1960
  "トが1行で表示されます</ strong>、またそのイベントの開始日と終了日は最初の繰り"
1961
  "返しイベントを参照します。"
1962
 
1963
+ #: includes/event-organiser-cpt.php:572
1964
  msgid ""
1965
  "Hovering over a row in the venues list will display action links that allow "
1966
  "you to manage that venue. You can perform the following actions:"
1968
  "会場リストの行にカーソルを合わせると、その会場を管理できるようにするアクショ"
1969
  "ンリンクが表示されます。次の操作を実行できます。"
1970
 
1971
+ #: includes/event-organiser-cpt.php:574
1972
  msgid ""
1973
  "Edit takes you to the editing screen for that venue. You can also reach that "
1974
  "screen by clicking on the venue title."
1976
  "編集は会場の編集画面に移動します。会場のタイトルをクリックして編集画面にアク"
1977
  "セスすることもできます。"
1978
 
1979
+ #: includes/event-organiser-cpt.php:575
1980
  msgid "Delete will permanently remove the venue"
1981
  msgstr "削除すると会場は完全に削除されます"
1982
 
1983
+ #: includes/event-organiser-cpt.php:576
1984
  msgid "View will take you to the venue's page"
1985
  msgstr "ビューで会場のページに移動します"
1986
 
1987
+ #: includes/event-organiser-cpt.php:591
1988
  msgid ""
1989
  "This page shows all (occurrances of) events. You can view the summary of an "
1990
  "event by clicking on it. If you have the necessary permissions, a link to "
1994
  "要をクリックすると表示できます。必要な権限がある場合は、イベントの編集ページ"
1995
  "へのリンクも表示されます。"
1996
 
1997
+ #: includes/event-organiser-cpt.php:592
1998
  msgid ""
1999
  "By clicking the relevant tab, you can view events in Month, Week or Day "
2000
  "mode. You can also filter the events by events by category and venue. The "
2005
  "できます。 「日付を指定」ボタンを使用すると、特定の日付にすばやくジャンプでき"
2006
  "ます。"
2007
 
2008
+ #: includes/event-organiser-cpt.php:596
2009
  msgid "Add Event"
2010
  msgstr "イベントを追加"
2011
 
2012
+ #: includes/event-organiser-cpt.php:597
2013
  msgid ""
2014
  "You can create an event on this Calendar, by clicking on day or dragging "
2015
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
2024
  "す。いずれの場合も、イベントが作成され、そのイベントの編集ページに移行しま"
2025
  "す。"
2026
 
2027
+ #: includes/event-organiser-cpt.php:604
2028
  msgid "For more information"
2029
  msgstr "詳細を見る"
2030
 
2031
+ #: includes/event-organiser-cpt.php:605
2032
  #, php-format
2033
  msgid "See the <a %s> documentation</a>"
2034
  msgstr "<a %s>ドキュメント</a>を見る"
2035
 
2036
+ #: includes/event-organiser-cpt.php:606
2037
  msgid "Debugging Event Organiser"
2038
  msgstr "Event Organiserをデバッグ"
2039
 
2040
+ #: includes/event-organiser-cpt.php:607
2041
  msgid "Go Pro!"
2042
  msgstr "Proへ!"
2043
 
2044
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2045
  msgid "Color"
2046
  msgstr "色"
2047
 
2048
+ #: includes/event-organiser-cpt.php:723
2049
  msgid "Assign the category a colour."
2050
  msgstr "カテゴリの色を設定します。"
2051
 
languages/eventorganiser-lt_LT.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:16:11+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1316,22 +1316,22 @@ msgid ""
1316
  "%s."
1317
  msgstr ""
1318
 
1319
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1320
  #, php-format
1321
  msgid "[Lines %1$d-%2$d]"
1322
  msgstr "[Lines %1$d-%2$d]"
1323
 
1324
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1325
  #, php-format
1326
  msgid "[Line %1$d]"
1327
  msgstr "[Line %1$d]"
1328
 
1329
- #: includes/class-eo-ical-parser.php:1044
1330
  #, php-format
1331
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1332
  msgstr "Negalima data \"%s\". Data laukiama YYYYMMDD formate."
1333
 
1334
- #: includes/class-eo-ical-parser.php:1082
1335
  #, php-format
1336
  msgid ""
1337
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1919,19 +1919,19 @@ msgstr ""
1919
  "Tik egzistuojančios vietos gali būti naudojamos. Norėdami sukurti "
1920
  "vietąeikite į vietų puslapį."
1921
 
1922
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1923
- #: includes/event-organiser-cpt.php:587
1924
  msgid "Overview"
1925
  msgstr "Peržiūra"
1926
 
1927
- #: includes/event-organiser-cpt.php:566
1928
  msgid ""
1929
  "This is the list of all saved events. Note that <strong> recurring events "
1930
  "appear as a single row </strong> in the table and the start and end date "
1931
  "refers to the first occurrence of that event."
1932
  msgstr ""
1933
 
1934
- #: includes/event-organiser-cpt.php:574
1935
  msgid ""
1936
  "Hovering over a row in the venues list will display action links that allow "
1937
  "you to manage that venue. You can perform the following actions:"
@@ -1939,7 +1939,7 @@ msgstr ""
1939
  "Naršymas virš vietų sąrašo eilutės duos veiksmų nuorodas, kurios leidžiaJums "
1940
  "valdyti konkrečią vietą. Galite atlikti šiuos veiksmus:"
1941
 
1942
- #: includes/event-organiser-cpt.php:576
1943
  msgid ""
1944
  "Edit takes you to the editing screen for that venue. You can also reach that "
1945
  "screen by clicking on the venue title."
@@ -1947,15 +1947,15 @@ msgstr ""
1947
  "Redagavimo mygtukas nuveda Jus į tos vietos redagavimo vaizdą. Galite šį "
1948
  "ekranąpasiekti ir paspausdami ant vietos pavadinimo."
1949
 
1950
- #: includes/event-organiser-cpt.php:577
1951
  msgid "Delete will permanently remove the venue"
1952
  msgstr "Mygtukas Ištrinti pašalins vietą"
1953
 
1954
- #: includes/event-organiser-cpt.php:578
1955
  msgid "View will take you to the venue's page"
1956
  msgstr "Mygtukas Peržiūra perkels Jus į Vietų puslapį"
1957
 
1958
- #: includes/event-organiser-cpt.php:588
1959
  msgid ""
1960
  "This page shows all (occurrances of) events. You can view the summary of an "
1961
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -1965,7 +1965,7 @@ msgstr ""
1965
  "paspausdami ant jo. Jeigu turite būtinus leidimus, renginių redagavimo "
1966
  "nuoroda taip pat atsiras."
1967
 
1968
- #: includes/event-organiser-cpt.php:589
1969
  msgid ""
1970
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1971
  "mode. You can also filter the events by events by category and venue. The "
@@ -1976,11 +1976,11 @@ msgstr ""
1976
  "vietas. Mygtukas \"Eiti į datą“ leidžia Jums greitai peršokti į reikiamą "
1977
  "datą."
1978
 
1979
- #: includes/event-organiser-cpt.php:593
1980
  msgid "Add Event"
1981
  msgstr "Pridėti Renginį"
1982
 
1983
- #: includes/event-organiser-cpt.php:594
1984
  msgid ""
1985
  "You can create an event on this Calendar, by clicking on day or dragging "
1986
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1995,28 +1995,28 @@ msgstr ""
1995
  "juodraštis. Bet kokiu atvejurenginys yra sukurtas ir esate nukreipiami į to "
1996
  "renginio redagavimo puslapį."
1997
 
1998
- #: includes/event-organiser-cpt.php:600
1999
  msgid "For more information"
2000
  msgstr "Daugiau informacijos"
2001
 
2002
- #: includes/event-organiser-cpt.php:601
2003
  #, php-format
2004
  msgid "See the <a %s> documentation</a>"
2005
  msgstr "Žiūrėti <a %s> documentation</a>"
2006
 
2007
- #: includes/event-organiser-cpt.php:602
2008
  msgid "Debugging Event Organiser"
2009
  msgstr ""
2010
 
2011
- #: includes/event-organiser-cpt.php:603
2012
  msgid "Go Pro!"
2013
  msgstr "Eiti Pro!"
2014
 
2015
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2016
  msgid "Color"
2017
  msgstr "Spalva"
2018
 
2019
- #: includes/event-organiser-cpt.php:719
2020
  msgid "Assign the category a colour."
2021
  msgstr "Priskirti kategorijai spalvą."
2022
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:16:11+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1316
  "%s."
1317
  msgstr ""
1318
 
1319
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1320
  #, php-format
1321
  msgid "[Lines %1$d-%2$d]"
1322
  msgstr "[Lines %1$d-%2$d]"
1323
 
1324
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1325
  #, php-format
1326
  msgid "[Line %1$d]"
1327
  msgstr "[Line %1$d]"
1328
 
1329
+ #: includes/class-eo-ical-parser.php:1066
1330
  #, php-format
1331
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1332
  msgstr "Negalima data \"%s\". Data laukiama YYYYMMDD formate."
1333
 
1334
+ #: includes/class-eo-ical-parser.php:1104
1335
  #, php-format
1336
  msgid ""
1337
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1919
  "Tik egzistuojančios vietos gali būti naudojamos. Norėdami sukurti "
1920
  "vietąeikite į vietų puslapį."
1921
 
1922
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1923
+ #: includes/event-organiser-cpt.php:590
1924
  msgid "Overview"
1925
  msgstr "Peržiūra"
1926
 
1927
+ #: includes/event-organiser-cpt.php:565
1928
  msgid ""
1929
  "This is the list of all saved events. Note that <strong> recurring events "
1930
  "appear as a single row </strong> in the table and the start and end date "
1931
  "refers to the first occurrence of that event."
1932
  msgstr ""
1933
 
1934
+ #: includes/event-organiser-cpt.php:572
1935
  msgid ""
1936
  "Hovering over a row in the venues list will display action links that allow "
1937
  "you to manage that venue. You can perform the following actions:"
1939
  "Naršymas virš vietų sąrašo eilutės duos veiksmų nuorodas, kurios leidžiaJums "
1940
  "valdyti konkrečią vietą. Galite atlikti šiuos veiksmus:"
1941
 
1942
+ #: includes/event-organiser-cpt.php:574
1943
  msgid ""
1944
  "Edit takes you to the editing screen for that venue. You can also reach that "
1945
  "screen by clicking on the venue title."
1947
  "Redagavimo mygtukas nuveda Jus į tos vietos redagavimo vaizdą. Galite šį "
1948
  "ekranąpasiekti ir paspausdami ant vietos pavadinimo."
1949
 
1950
+ #: includes/event-organiser-cpt.php:575
1951
  msgid "Delete will permanently remove the venue"
1952
  msgstr "Mygtukas Ištrinti pašalins vietą"
1953
 
1954
+ #: includes/event-organiser-cpt.php:576
1955
  msgid "View will take you to the venue's page"
1956
  msgstr "Mygtukas Peržiūra perkels Jus į Vietų puslapį"
1957
 
1958
+ #: includes/event-organiser-cpt.php:591
1959
  msgid ""
1960
  "This page shows all (occurrances of) events. You can view the summary of an "
1961
  "event by clicking on it. If you have the necessary permissions, a link to "
1965
  "paspausdami ant jo. Jeigu turite būtinus leidimus, renginių redagavimo "
1966
  "nuoroda taip pat atsiras."
1967
 
1968
+ #: includes/event-organiser-cpt.php:592
1969
  msgid ""
1970
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1971
  "mode. You can also filter the events by events by category and venue. The "
1976
  "vietas. Mygtukas \"Eiti į datą“ leidžia Jums greitai peršokti į reikiamą "
1977
  "datą."
1978
 
1979
+ #: includes/event-organiser-cpt.php:596
1980
  msgid "Add Event"
1981
  msgstr "Pridėti Renginį"
1982
 
1983
+ #: includes/event-organiser-cpt.php:597
1984
  msgid ""
1985
  "You can create an event on this Calendar, by clicking on day or dragging "
1986
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1995
  "juodraštis. Bet kokiu atvejurenginys yra sukurtas ir esate nukreipiami į to "
1996
  "renginio redagavimo puslapį."
1997
 
1998
+ #: includes/event-organiser-cpt.php:604
1999
  msgid "For more information"
2000
  msgstr "Daugiau informacijos"
2001
 
2002
+ #: includes/event-organiser-cpt.php:605
2003
  #, php-format
2004
  msgid "See the <a %s> documentation</a>"
2005
  msgstr "Žiūrėti <a %s> documentation</a>"
2006
 
2007
+ #: includes/event-organiser-cpt.php:606
2008
  msgid "Debugging Event Organiser"
2009
  msgstr ""
2010
 
2011
+ #: includes/event-organiser-cpt.php:607
2012
  msgid "Go Pro!"
2013
  msgstr "Eiti Pro!"
2014
 
2015
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2016
  msgid "Color"
2017
  msgstr "Spalva"
2018
 
2019
+ #: includes/event-organiser-cpt.php:723
2020
  msgid "Assign the category a colour."
2021
  msgstr "Priskirti kategorijai spalvą."
2022
 
languages/eventorganiser-lv.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2017-04-16T23:21:46+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1270,22 +1270,22 @@ msgid ""
1270
  "%s."
1271
  msgstr ""
1272
 
1273
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1274
  #, php-format
1275
  msgid "[Lines %1$d-%2$d]"
1276
  msgstr ""
1277
 
1278
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1279
  #, php-format
1280
  msgid "[Line %1$d]"
1281
  msgstr ""
1282
 
1283
- #: includes/class-eo-ical-parser.php:1044
1284
  #, php-format
1285
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1286
  msgstr ""
1287
 
1288
- #: includes/class-eo-ical-parser.php:1082
1289
  #, php-format
1290
  msgid ""
1291
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1869,57 +1869,57 @@ msgid ""
1869
  "page."
1870
  msgstr ""
1871
 
1872
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1873
- #: includes/event-organiser-cpt.php:587
1874
  msgid "Overview"
1875
  msgstr "Kopskats"
1876
 
1877
- #: includes/event-organiser-cpt.php:566
1878
  msgid ""
1879
  "This is the list of all saved events. Note that <strong> recurring events "
1880
  "appear as a single row </strong> in the table and the start and end date "
1881
  "refers to the first occurrence of that event."
1882
  msgstr ""
1883
 
1884
- #: includes/event-organiser-cpt.php:574
1885
  msgid ""
1886
  "Hovering over a row in the venues list will display action links that allow "
1887
  "you to manage that venue. You can perform the following actions:"
1888
  msgstr ""
1889
 
1890
- #: includes/event-organiser-cpt.php:576
1891
  msgid ""
1892
  "Edit takes you to the editing screen for that venue. You can also reach that "
1893
  "screen by clicking on the venue title."
1894
  msgstr ""
1895
 
1896
- #: includes/event-organiser-cpt.php:577
1897
  msgid "Delete will permanently remove the venue"
1898
  msgstr "Izdzēst šo pasākumu"
1899
 
1900
- #: includes/event-organiser-cpt.php:578
1901
  msgid "View will take you to the venue's page"
1902
  msgstr ""
1903
 
1904
- #: includes/event-organiser-cpt.php:588
1905
  msgid ""
1906
  "This page shows all (occurrances of) events. You can view the summary of an "
1907
  "event by clicking on it. If you have the necessary permissions, a link to "
1908
  "the event's edit page will appear also."
1909
  msgstr ""
1910
 
1911
- #: includes/event-organiser-cpt.php:589
1912
  msgid ""
1913
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1914
  "mode. You can also filter the events by events by category and venue. The "
1915
  "'go to date' button allows you to quickly jump to a specific date."
1916
  msgstr ""
1917
 
1918
- #: includes/event-organiser-cpt.php:593
1919
  msgid "Add Event"
1920
  msgstr "Pievienot pasākumu"
1921
 
1922
- #: includes/event-organiser-cpt.php:594
1923
  msgid ""
1924
  "You can create an event on this Calendar, by clicking on day or dragging "
1925
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1928,28 +1928,28 @@ msgid ""
1928
  "event is created and you are forwarded to that event's edit page."
1929
  msgstr ""
1930
 
1931
- #: includes/event-organiser-cpt.php:600
1932
  msgid "For more information"
1933
  msgstr "Vairāk informācijai"
1934
 
1935
- #: includes/event-organiser-cpt.php:601
1936
  #, php-format
1937
  msgid "See the <a %s> documentation</a>"
1938
  msgstr "Apskatīt <a %s> dokumentu</a>"
1939
 
1940
- #: includes/event-organiser-cpt.php:602
1941
  msgid "Debugging Event Organiser"
1942
  msgstr ""
1943
 
1944
- #: includes/event-organiser-cpt.php:603
1945
  msgid "Go Pro!"
1946
  msgstr "Izvēlies profesionālo versiju"
1947
 
1948
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
1949
  msgid "Color"
1950
  msgstr "krāsa"
1951
 
1952
- #: includes/event-organiser-cpt.php:719
1953
  msgid "Assign the category a colour."
1954
  msgstr "Iestatīt kategorijai krāsu"
1955
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2017-04-16T23:21:46+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1270
  "%s."
1271
  msgstr ""
1272
 
1273
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1274
  #, php-format
1275
  msgid "[Lines %1$d-%2$d]"
1276
  msgstr ""
1277
 
1278
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1279
  #, php-format
1280
  msgid "[Line %1$d]"
1281
  msgstr ""
1282
 
1283
+ #: includes/class-eo-ical-parser.php:1066
1284
  #, php-format
1285
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1286
  msgstr ""
1287
 
1288
+ #: includes/class-eo-ical-parser.php:1104
1289
  #, php-format
1290
  msgid ""
1291
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1869
  "page."
1870
  msgstr ""
1871
 
1872
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1873
+ #: includes/event-organiser-cpt.php:590
1874
  msgid "Overview"
1875
  msgstr "Kopskats"
1876
 
1877
+ #: includes/event-organiser-cpt.php:565
1878
  msgid ""
1879
  "This is the list of all saved events. Note that <strong> recurring events "
1880
  "appear as a single row </strong> in the table and the start and end date "
1881
  "refers to the first occurrence of that event."
1882
  msgstr ""
1883
 
1884
+ #: includes/event-organiser-cpt.php:572
1885
  msgid ""
1886
  "Hovering over a row in the venues list will display action links that allow "
1887
  "you to manage that venue. You can perform the following actions:"
1888
  msgstr ""
1889
 
1890
+ #: includes/event-organiser-cpt.php:574
1891
  msgid ""
1892
  "Edit takes you to the editing screen for that venue. You can also reach that "
1893
  "screen by clicking on the venue title."
1894
  msgstr ""
1895
 
1896
+ #: includes/event-organiser-cpt.php:575
1897
  msgid "Delete will permanently remove the venue"
1898
  msgstr "Izdzēst šo pasākumu"
1899
 
1900
+ #: includes/event-organiser-cpt.php:576
1901
  msgid "View will take you to the venue's page"
1902
  msgstr ""
1903
 
1904
+ #: includes/event-organiser-cpt.php:591
1905
  msgid ""
1906
  "This page shows all (occurrances of) events. You can view the summary of an "
1907
  "event by clicking on it. If you have the necessary permissions, a link to "
1908
  "the event's edit page will appear also."
1909
  msgstr ""
1910
 
1911
+ #: includes/event-organiser-cpt.php:592
1912
  msgid ""
1913
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1914
  "mode. You can also filter the events by events by category and venue. The "
1915
  "'go to date' button allows you to quickly jump to a specific date."
1916
  msgstr ""
1917
 
1918
+ #: includes/event-organiser-cpt.php:596
1919
  msgid "Add Event"
1920
  msgstr "Pievienot pasākumu"
1921
 
1922
+ #: includes/event-organiser-cpt.php:597
1923
  msgid ""
1924
  "You can create an event on this Calendar, by clicking on day or dragging "
1925
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1928
  "event is created and you are forwarded to that event's edit page."
1929
  msgstr ""
1930
 
1931
+ #: includes/event-organiser-cpt.php:604
1932
  msgid "For more information"
1933
  msgstr "Vairāk informācijai"
1934
 
1935
+ #: includes/event-organiser-cpt.php:605
1936
  #, php-format
1937
  msgid "See the <a %s> documentation</a>"
1938
  msgstr "Apskatīt <a %s> dokumentu</a>"
1939
 
1940
+ #: includes/event-organiser-cpt.php:606
1941
  msgid "Debugging Event Organiser"
1942
  msgstr ""
1943
 
1944
+ #: includes/event-organiser-cpt.php:607
1945
  msgid "Go Pro!"
1946
  msgstr "Izvēlies profesionālo versiju"
1947
 
1948
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
1949
  msgid "Color"
1950
  msgstr "krāsa"
1951
 
1952
+ #: includes/event-organiser-cpt.php:723
1953
  msgid "Assign the category a colour."
1954
  msgstr "Iestatīt kategorijai krāsu"
1955
 
languages/eventorganiser-mk_MK.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:16:03+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1268,22 +1268,22 @@ msgid ""
1268
  "%s."
1269
  msgstr ""
1270
 
1271
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1272
  #, php-format
1273
  msgid "[Lines %1$d-%2$d]"
1274
  msgstr "[Редови %1$d-%2$d]"
1275
 
1276
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1277
  #, php-format
1278
  msgid "[Line %1$d]"
1279
  msgstr ""
1280
 
1281
- #: includes/class-eo-ical-parser.php:1044
1282
  #, php-format
1283
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1284
  msgstr ""
1285
 
1286
- #: includes/class-eo-ical-parser.php:1082
1287
  #, php-format
1288
  msgid ""
1289
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1872,57 +1872,57 @@ msgstr ""
1872
  "Може да се избираат само поставени места на одржување. За да додадете место "
1873
  "на одржување одете на страната за места на одржување."
1874
 
1875
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1876
- #: includes/event-organiser-cpt.php:587
1877
  msgid "Overview"
1878
  msgstr "Преглед"
1879
 
1880
- #: includes/event-organiser-cpt.php:566
1881
  msgid ""
1882
  "This is the list of all saved events. Note that <strong> recurring events "
1883
  "appear as a single row </strong> in the table and the start and end date "
1884
  "refers to the first occurrence of that event."
1885
  msgstr ""
1886
 
1887
- #: includes/event-organiser-cpt.php:574
1888
  msgid ""
1889
  "Hovering over a row in the venues list will display action links that allow "
1890
  "you to manage that venue. You can perform the following actions:"
1891
  msgstr ""
1892
 
1893
- #: includes/event-organiser-cpt.php:576
1894
  msgid ""
1895
  "Edit takes you to the editing screen for that venue. You can also reach that "
1896
  "screen by clicking on the venue title."
1897
  msgstr ""
1898
 
1899
- #: includes/event-organiser-cpt.php:577
1900
  msgid "Delete will permanently remove the venue"
1901
  msgstr "Бришењето засекогаш ќе го отстрани местото на одржување"
1902
 
1903
- #: includes/event-organiser-cpt.php:578
1904
  msgid "View will take you to the venue's page"
1905
  msgstr "Преледот ќе ве однесе на страната на местото на одржување"
1906
 
1907
- #: includes/event-organiser-cpt.php:588
1908
  msgid ""
1909
  "This page shows all (occurrances of) events. You can view the summary of an "
1910
  "event by clicking on it. If you have the necessary permissions, a link to "
1911
  "the event's edit page will appear also."
1912
  msgstr ""
1913
 
1914
- #: includes/event-organiser-cpt.php:589
1915
  msgid ""
1916
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1917
  "mode. You can also filter the events by events by category and venue. The "
1918
  "'go to date' button allows you to quickly jump to a specific date."
1919
  msgstr ""
1920
 
1921
- #: includes/event-organiser-cpt.php:593
1922
  msgid "Add Event"
1923
  msgstr "Додај настан"
1924
 
1925
- #: includes/event-organiser-cpt.php:594
1926
  msgid ""
1927
  "You can create an event on this Calendar, by clicking on day or dragging "
1928
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1931,28 +1931,28 @@ msgid ""
1931
  "event is created and you are forwarded to that event's edit page."
1932
  msgstr ""
1933
 
1934
- #: includes/event-organiser-cpt.php:600
1935
  msgid "For more information"
1936
  msgstr "За повеќе информации"
1937
 
1938
- #: includes/event-organiser-cpt.php:601
1939
  #, php-format
1940
  msgid "See the <a %s> documentation</a>"
1941
  msgstr "Види <a %s> документација</a>"
1942
 
1943
- #: includes/event-organiser-cpt.php:602
1944
  msgid "Debugging Event Organiser"
1945
  msgstr "Дебагирање на Event Organiser"
1946
 
1947
- #: includes/event-organiser-cpt.php:603
1948
  msgid "Go Pro!"
1949
  msgstr "Премини на Про!"
1950
 
1951
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
1952
  msgid "Color"
1953
  msgstr "Боја"
1954
 
1955
- #: includes/event-organiser-cpt.php:719
1956
  msgid "Assign the category a colour."
1957
  msgstr "Додели боја на категоријата"
1958
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:16:03+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1268
  "%s."
1269
  msgstr ""
1270
 
1271
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1272
  #, php-format
1273
  msgid "[Lines %1$d-%2$d]"
1274
  msgstr "[Редови %1$d-%2$d]"
1275
 
1276
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1277
  #, php-format
1278
  msgid "[Line %1$d]"
1279
  msgstr ""
1280
 
1281
+ #: includes/class-eo-ical-parser.php:1066
1282
  #, php-format
1283
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1284
  msgstr ""
1285
 
1286
+ #: includes/class-eo-ical-parser.php:1104
1287
  #, php-format
1288
  msgid ""
1289
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1872
  "Може да се избираат само поставени места на одржување. За да додадете место "
1873
  "на одржување одете на страната за места на одржување."
1874
 
1875
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1876
+ #: includes/event-organiser-cpt.php:590
1877
  msgid "Overview"
1878
  msgstr "Преглед"
1879
 
1880
+ #: includes/event-organiser-cpt.php:565
1881
  msgid ""
1882
  "This is the list of all saved events. Note that <strong> recurring events "
1883
  "appear as a single row </strong> in the table and the start and end date "
1884
  "refers to the first occurrence of that event."
1885
  msgstr ""
1886
 
1887
+ #: includes/event-organiser-cpt.php:572
1888
  msgid ""
1889
  "Hovering over a row in the venues list will display action links that allow "
1890
  "you to manage that venue. You can perform the following actions:"
1891
  msgstr ""
1892
 
1893
+ #: includes/event-organiser-cpt.php:574
1894
  msgid ""
1895
  "Edit takes you to the editing screen for that venue. You can also reach that "
1896
  "screen by clicking on the venue title."
1897
  msgstr ""
1898
 
1899
+ #: includes/event-organiser-cpt.php:575
1900
  msgid "Delete will permanently remove the venue"
1901
  msgstr "Бришењето засекогаш ќе го отстрани местото на одржување"
1902
 
1903
+ #: includes/event-organiser-cpt.php:576
1904
  msgid "View will take you to the venue's page"
1905
  msgstr "Преледот ќе ве однесе на страната на местото на одржување"
1906
 
1907
+ #: includes/event-organiser-cpt.php:591
1908
  msgid ""
1909
  "This page shows all (occurrances of) events. You can view the summary of an "
1910
  "event by clicking on it. If you have the necessary permissions, a link to "
1911
  "the event's edit page will appear also."
1912
  msgstr ""
1913
 
1914
+ #: includes/event-organiser-cpt.php:592
1915
  msgid ""
1916
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1917
  "mode. You can also filter the events by events by category and venue. The "
1918
  "'go to date' button allows you to quickly jump to a specific date."
1919
  msgstr ""
1920
 
1921
+ #: includes/event-organiser-cpt.php:596
1922
  msgid "Add Event"
1923
  msgstr "Додај настан"
1924
 
1925
+ #: includes/event-organiser-cpt.php:597
1926
  msgid ""
1927
  "You can create an event on this Calendar, by clicking on day or dragging "
1928
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1931
  "event is created and you are forwarded to that event's edit page."
1932
  msgstr ""
1933
 
1934
+ #: includes/event-organiser-cpt.php:604
1935
  msgid "For more information"
1936
  msgstr "За повеќе информации"
1937
 
1938
+ #: includes/event-organiser-cpt.php:605
1939
  #, php-format
1940
  msgid "See the <a %s> documentation</a>"
1941
  msgstr "Види <a %s> документација</a>"
1942
 
1943
+ #: includes/event-organiser-cpt.php:606
1944
  msgid "Debugging Event Organiser"
1945
  msgstr "Дебагирање на Event Organiser"
1946
 
1947
+ #: includes/event-organiser-cpt.php:607
1948
  msgid "Go Pro!"
1949
  msgstr "Премини на Про!"
1950
 
1951
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
1952
  msgid "Color"
1953
  msgstr "Боја"
1954
 
1955
+ #: includes/event-organiser-cpt.php:723
1956
  msgid "Assign the category a colour."
1957
  msgstr "Додели боја на категоријата"
1958
 
languages/eventorganiser-nb_NO.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:16:00+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1281,22 +1281,22 @@ msgid ""
1281
  "%s."
1282
  msgstr ""
1283
 
1284
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1285
  #, php-format
1286
  msgid "[Lines %1$d-%2$d]"
1287
  msgstr ""
1288
 
1289
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1290
  #, php-format
1291
  msgid "[Line %1$d]"
1292
  msgstr ""
1293
 
1294
- #: includes/class-eo-ical-parser.php:1044
1295
  #, php-format
1296
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1297
  msgstr ""
1298
 
1299
- #: includes/class-eo-ical-parser.php:1082
1300
  #, php-format
1301
  msgid ""
1302
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1903,12 +1903,12 @@ msgstr ""
1903
  "Bare registrerte steder kan velges. For å registrere et nytt sted, gå til "
1904
  "stedsiden."
1905
 
1906
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1907
- #: includes/event-organiser-cpt.php:587
1908
  msgid "Overview"
1909
  msgstr "Oversikt"
1910
 
1911
- #: includes/event-organiser-cpt.php:566
1912
  msgid ""
1913
  "This is the list of all saved events. Note that <strong> recurring events "
1914
  "appear as a single row </strong> in the table and the start and end date "
@@ -1918,7 +1918,7 @@ msgstr ""
1918
  "arrangement står som en oppføring</strong> i listen og at start- og "
1919
  "sluttdato refererer til den første forekomsten av arrangementet."
1920
 
1921
- #: includes/event-organiser-cpt.php:574
1922
  msgid ""
1923
  "Hovering over a row in the venues list will display action links that allow "
1924
  "you to manage that venue. You can perform the following actions:"
@@ -1926,7 +1926,7 @@ msgstr ""
1926
  "Hold musen over en linje i stedlisten for å vise handlingslenker som lar deg "
1927
  "behandle det stedet. Du kan gjøre følgende handlinger:"
1928
 
1929
- #: includes/event-organiser-cpt.php:576
1930
  msgid ""
1931
  "Edit takes you to the editing screen for that venue. You can also reach that "
1932
  "screen by clicking on the venue title."
@@ -1934,15 +1934,15 @@ msgstr ""
1934
  "Rediger tar det til redigeringssiden for det stedet. Du kan også komme til "
1935
  "den siden ved å klikke på stedsnavnet."
1936
 
1937
- #: includes/event-organiser-cpt.php:577
1938
  msgid "Delete will permanently remove the venue"
1939
  msgstr "Sletting vil permanent fjerne stedet"
1940
 
1941
- #: includes/event-organiser-cpt.php:578
1942
  msgid "View will take you to the venue's page"
1943
  msgstr "Vis vil ta deg til stedsiden"
1944
 
1945
- #: includes/event-organiser-cpt.php:588
1946
  msgid ""
1947
  "This page shows all (occurrances of) events. You can view the summary of an "
1948
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -1952,7 +1952,7 @@ msgstr ""
1952
  "for et arrangement ved å klikke på det. Dersom du har rettigheter til det, "
1953
  "vil du også se en lenke for å redigere."
1954
 
1955
- #: includes/event-organiser-cpt.php:589
1956
  msgid ""
1957
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1958
  "mode. You can also filter the events by events by category and venue. The "
@@ -1962,11 +1962,11 @@ msgstr ""
1962
  "eller dagsvisning. Du kan også fliltrere arrangement på kategori og sted. "
1963
  "'Gå til dato'-knappen lar det kjapt hoppe til en bestemt dato."
1964
 
1965
- #: includes/event-organiser-cpt.php:593
1966
  msgid "Add Event"
1967
  msgstr "Legg til arrangement"
1968
 
1969
- #: includes/event-organiser-cpt.php:594
1970
  msgid ""
1971
  "You can create an event on this Calendar, by clicking on day or dragging "
1972
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1981,28 +1981,28 @@ msgstr ""
1981
  "kladd. Uansett vil arrangementet opprettes og du blir videresendt til "
1982
  "redigeringssiden."
1983
 
1984
- #: includes/event-organiser-cpt.php:600
1985
  msgid "For more information"
1986
  msgstr "For mer informasjon"
1987
 
1988
- #: includes/event-organiser-cpt.php:601
1989
  #, php-format
1990
  msgid "See the <a %s> documentation</a>"
1991
  msgstr "Se <a %s> dokumentasjonen</a>"
1992
 
1993
- #: includes/event-organiser-cpt.php:602
1994
  msgid "Debugging Event Organiser"
1995
  msgstr ""
1996
 
1997
- #: includes/event-organiser-cpt.php:603
1998
  msgid "Go Pro!"
1999
  msgstr ""
2000
 
2001
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2002
  msgid "Color"
2003
  msgstr "Farge"
2004
 
2005
- #: includes/event-organiser-cpt.php:719
2006
  msgid "Assign the category a colour."
2007
  msgstr "Gi kategorien en farge"
2008
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:16:00+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1281
  "%s."
1282
  msgstr ""
1283
 
1284
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1285
  #, php-format
1286
  msgid "[Lines %1$d-%2$d]"
1287
  msgstr ""
1288
 
1289
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1290
  #, php-format
1291
  msgid "[Line %1$d]"
1292
  msgstr ""
1293
 
1294
+ #: includes/class-eo-ical-parser.php:1066
1295
  #, php-format
1296
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1297
  msgstr ""
1298
 
1299
+ #: includes/class-eo-ical-parser.php:1104
1300
  #, php-format
1301
  msgid ""
1302
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1903
  "Bare registrerte steder kan velges. For å registrere et nytt sted, gå til "
1904
  "stedsiden."
1905
 
1906
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1907
+ #: includes/event-organiser-cpt.php:590
1908
  msgid "Overview"
1909
  msgstr "Oversikt"
1910
 
1911
+ #: includes/event-organiser-cpt.php:565
1912
  msgid ""
1913
  "This is the list of all saved events. Note that <strong> recurring events "
1914
  "appear as a single row </strong> in the table and the start and end date "
1918
  "arrangement står som en oppføring</strong> i listen og at start- og "
1919
  "sluttdato refererer til den første forekomsten av arrangementet."
1920
 
1921
+ #: includes/event-organiser-cpt.php:572
1922
  msgid ""
1923
  "Hovering over a row in the venues list will display action links that allow "
1924
  "you to manage that venue. You can perform the following actions:"
1926
  "Hold musen over en linje i stedlisten for å vise handlingslenker som lar deg "
1927
  "behandle det stedet. Du kan gjøre følgende handlinger:"
1928
 
1929
+ #: includes/event-organiser-cpt.php:574
1930
  msgid ""
1931
  "Edit takes you to the editing screen for that venue. You can also reach that "
1932
  "screen by clicking on the venue title."
1934
  "Rediger tar det til redigeringssiden for det stedet. Du kan også komme til "
1935
  "den siden ved å klikke på stedsnavnet."
1936
 
1937
+ #: includes/event-organiser-cpt.php:575
1938
  msgid "Delete will permanently remove the venue"
1939
  msgstr "Sletting vil permanent fjerne stedet"
1940
 
1941
+ #: includes/event-organiser-cpt.php:576
1942
  msgid "View will take you to the venue's page"
1943
  msgstr "Vis vil ta deg til stedsiden"
1944
 
1945
+ #: includes/event-organiser-cpt.php:591
1946
  msgid ""
1947
  "This page shows all (occurrances of) events. You can view the summary of an "
1948
  "event by clicking on it. If you have the necessary permissions, a link to "
1952
  "for et arrangement ved å klikke på det. Dersom du har rettigheter til det, "
1953
  "vil du også se en lenke for å redigere."
1954
 
1955
+ #: includes/event-organiser-cpt.php:592
1956
  msgid ""
1957
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1958
  "mode. You can also filter the events by events by category and venue. The "
1962
  "eller dagsvisning. Du kan også fliltrere arrangement på kategori og sted. "
1963
  "'Gå til dato'-knappen lar det kjapt hoppe til en bestemt dato."
1964
 
1965
+ #: includes/event-organiser-cpt.php:596
1966
  msgid "Add Event"
1967
  msgstr "Legg til arrangement"
1968
 
1969
+ #: includes/event-organiser-cpt.php:597
1970
  msgid ""
1971
  "You can create an event on this Calendar, by clicking on day or dragging "
1972
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1981
  "kladd. Uansett vil arrangementet opprettes og du blir videresendt til "
1982
  "redigeringssiden."
1983
 
1984
+ #: includes/event-organiser-cpt.php:604
1985
  msgid "For more information"
1986
  msgstr "For mer informasjon"
1987
 
1988
+ #: includes/event-organiser-cpt.php:605
1989
  #, php-format
1990
  msgid "See the <a %s> documentation</a>"
1991
  msgstr "Se <a %s> dokumentasjonen</a>"
1992
 
1993
+ #: includes/event-organiser-cpt.php:606
1994
  msgid "Debugging Event Organiser"
1995
  msgstr ""
1996
 
1997
+ #: includes/event-organiser-cpt.php:607
1998
  msgid "Go Pro!"
1999
  msgstr ""
2000
 
2001
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2002
  msgid "Color"
2003
  msgstr "Farge"
2004
 
2005
+ #: includes/event-organiser-cpt.php:723
2006
  msgid "Assign the category a colour."
2007
  msgstr "Gi kategorien en farge"
2008
 
languages/eventorganiser-nl_NL.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2017-11-03T23:42:56+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1331,22 +1331,22 @@ msgid ""
1331
  "%s."
1332
  msgstr ""
1333
 
1334
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1335
  #, php-format
1336
  msgid "[Lines %1$d-%2$d]"
1337
  msgstr "[Regelnummers %1$d-%2$d]"
1338
 
1339
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1340
  #, php-format
1341
  msgid "[Line %1$d]"
1342
  msgstr "[Regelnummer %1$d]"
1343
 
1344
- #: includes/class-eo-ical-parser.php:1044
1345
  #, php-format
1346
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1347
  msgstr "Ongeldige datum \"%s\". Datum formaat YYYYMMDD wordt verwacht."
1348
 
1349
- #: includes/class-eo-ical-parser.php:1082
1350
  #, php-format
1351
  msgid ""
1352
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1952,12 +1952,12 @@ msgstr ""
1952
  "Staat de locatie er nog niet tussen. Maak dan een nieuwe locatie aan vai de "
1953
  "Locatie pagina."
1954
 
1955
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1956
- #: includes/event-organiser-cpt.php:587
1957
  msgid "Overview"
1958
  msgstr "Overzicht"
1959
 
1960
- #: includes/event-organiser-cpt.php:566
1961
  msgid ""
1962
  "This is the list of all saved events. Note that <strong> recurring events "
1963
  "appear as a single row </strong> in the table and the start and end date "
@@ -1968,7 +1968,7 @@ msgstr ""
1968
  "einddatum van de eerste gebeurtenis. Klik op het evenement om het "
1969
  "terugkeerpatroon te bekijken."
1970
 
1971
- #: includes/event-organiser-cpt.php:574
1972
  msgid ""
1973
  "Hovering over a row in the venues list will display action links that allow "
1974
  "you to manage that venue. You can perform the following actions:"
@@ -1976,22 +1976,22 @@ msgstr ""
1976
  "Bij bewegen van de muis over de lijst met locaties verschijnen er actie-"
1977
  "links om de locatie te bewerken. De volgende acties zijn mogelijk:"
1978
 
1979
- #: includes/event-organiser-cpt.php:576
1980
  msgid ""
1981
  "Edit takes you to the editing screen for that venue. You can also reach that "
1982
  "screen by clicking on the venue title."
1983
  msgstr ""
1984
  "Door te klikken op de titel of op bewerken komt u in het bewerkingsscherm."
1985
 
1986
- #: includes/event-organiser-cpt.php:577
1987
  msgid "Delete will permanently remove the venue"
1988
  msgstr "Door te klikken op verwijderen wordt de locatie permanent verwijderd."
1989
 
1990
- #: includes/event-organiser-cpt.php:578
1991
  msgid "View will take you to the venue's page"
1992
  msgstr "Door te klikken op bekijken komt u op de locatie-pagina."
1993
 
1994
- #: includes/event-organiser-cpt.php:588
1995
  msgid ""
1996
  "This page shows all (occurrances of) events. You can view the summary of an "
1997
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -2000,7 +2000,7 @@ msgstr ""
2000
  "Deze pagina toont alle evenementen met hun terugkeerpatronen. Bekijk de "
2001
  "samenvatting van een evenement door er op te klikken. "
2002
 
2003
- #: includes/event-organiser-cpt.php:589
2004
  msgid ""
2005
  "By clicking the relevant tab, you can view events in Month, Week or Day "
2006
  "mode. You can also filter the events by events by category and venue. The "
@@ -2011,11 +2011,11 @@ msgstr ""
2011
  "categorie en op locatie. Met de 'ga naar datum'-knop kunt u snel naar een "
2012
  "bepaalde datum gaan."
2013
 
2014
- #: includes/event-organiser-cpt.php:593
2015
  msgid "Add Event"
2016
  msgstr "Evenement toevoegen"
2017
 
2018
- #: includes/event-organiser-cpt.php:594
2019
  msgid ""
2020
  "You can create an event on this Calendar, by clicking on day or dragging "
2021
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -2029,28 +2029,28 @@ msgstr ""
2029
  "toevoegen. Het evenement kan direct worden gepubliceerd of worden bewaard "
2030
  "als concept. "
2031
 
2032
- #: includes/event-organiser-cpt.php:600
2033
  msgid "For more information"
2034
  msgstr "Voor meer informatie"
2035
 
2036
- #: includes/event-organiser-cpt.php:601
2037
  #, php-format
2038
  msgid "See the <a %s> documentation</a>"
2039
  msgstr "Bekijk de <a %s> documentatie</a>"
2040
 
2041
- #: includes/event-organiser-cpt.php:602
2042
  msgid "Debugging Event Organiser"
2043
  msgstr "Event Organiser debuggen"
2044
 
2045
- #: includes/event-organiser-cpt.php:603
2046
  msgid "Go Pro!"
2047
  msgstr "Ga voor Pro!"
2048
 
2049
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2050
  msgid "Color"
2051
  msgstr "Kleur"
2052
 
2053
- #: includes/event-organiser-cpt.php:719
2054
  msgid "Assign the category a colour."
2055
  msgstr "Kies een kleur voor de categorie."
2056
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2017-11-03T23:42:56+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1331
  "%s."
1332
  msgstr ""
1333
 
1334
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1335
  #, php-format
1336
  msgid "[Lines %1$d-%2$d]"
1337
  msgstr "[Regelnummers %1$d-%2$d]"
1338
 
1339
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1340
  #, php-format
1341
  msgid "[Line %1$d]"
1342
  msgstr "[Regelnummer %1$d]"
1343
 
1344
+ #: includes/class-eo-ical-parser.php:1066
1345
  #, php-format
1346
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1347
  msgstr "Ongeldige datum \"%s\". Datum formaat YYYYMMDD wordt verwacht."
1348
 
1349
+ #: includes/class-eo-ical-parser.php:1104
1350
  #, php-format
1351
  msgid ""
1352
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1952
  "Staat de locatie er nog niet tussen. Maak dan een nieuwe locatie aan vai de "
1953
  "Locatie pagina."
1954
 
1955
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1956
+ #: includes/event-organiser-cpt.php:590
1957
  msgid "Overview"
1958
  msgstr "Overzicht"
1959
 
1960
+ #: includes/event-organiser-cpt.php:565
1961
  msgid ""
1962
  "This is the list of all saved events. Note that <strong> recurring events "
1963
  "appear as a single row </strong> in the table and the start and end date "
1968
  "einddatum van de eerste gebeurtenis. Klik op het evenement om het "
1969
  "terugkeerpatroon te bekijken."
1970
 
1971
+ #: includes/event-organiser-cpt.php:572
1972
  msgid ""
1973
  "Hovering over a row in the venues list will display action links that allow "
1974
  "you to manage that venue. You can perform the following actions:"
1976
  "Bij bewegen van de muis over de lijst met locaties verschijnen er actie-"
1977
  "links om de locatie te bewerken. De volgende acties zijn mogelijk:"
1978
 
1979
+ #: includes/event-organiser-cpt.php:574
1980
  msgid ""
1981
  "Edit takes you to the editing screen for that venue. You can also reach that "
1982
  "screen by clicking on the venue title."
1983
  msgstr ""
1984
  "Door te klikken op de titel of op bewerken komt u in het bewerkingsscherm."
1985
 
1986
+ #: includes/event-organiser-cpt.php:575
1987
  msgid "Delete will permanently remove the venue"
1988
  msgstr "Door te klikken op verwijderen wordt de locatie permanent verwijderd."
1989
 
1990
+ #: includes/event-organiser-cpt.php:576
1991
  msgid "View will take you to the venue's page"
1992
  msgstr "Door te klikken op bekijken komt u op de locatie-pagina."
1993
 
1994
+ #: includes/event-organiser-cpt.php:591
1995
  msgid ""
1996
  "This page shows all (occurrances of) events. You can view the summary of an "
1997
  "event by clicking on it. If you have the necessary permissions, a link to "
2000
  "Deze pagina toont alle evenementen met hun terugkeerpatronen. Bekijk de "
2001
  "samenvatting van een evenement door er op te klikken. "
2002
 
2003
+ #: includes/event-organiser-cpt.php:592
2004
  msgid ""
2005
  "By clicking the relevant tab, you can view events in Month, Week or Day "
2006
  "mode. You can also filter the events by events by category and venue. The "
2011
  "categorie en op locatie. Met de 'ga naar datum'-knop kunt u snel naar een "
2012
  "bepaalde datum gaan."
2013
 
2014
+ #: includes/event-organiser-cpt.php:596
2015
  msgid "Add Event"
2016
  msgstr "Evenement toevoegen"
2017
 
2018
+ #: includes/event-organiser-cpt.php:597
2019
  msgid ""
2020
  "You can create an event on this Calendar, by clicking on day or dragging "
2021
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
2029
  "toevoegen. Het evenement kan direct worden gepubliceerd of worden bewaard "
2030
  "als concept. "
2031
 
2032
+ #: includes/event-organiser-cpt.php:604
2033
  msgid "For more information"
2034
  msgstr "Voor meer informatie"
2035
 
2036
+ #: includes/event-organiser-cpt.php:605
2037
  #, php-format
2038
  msgid "See the <a %s> documentation</a>"
2039
  msgstr "Bekijk de <a %s> documentatie</a>"
2040
 
2041
+ #: includes/event-organiser-cpt.php:606
2042
  msgid "Debugging Event Organiser"
2043
  msgstr "Event Organiser debuggen"
2044
 
2045
+ #: includes/event-organiser-cpt.php:607
2046
  msgid "Go Pro!"
2047
  msgstr "Ga voor Pro!"
2048
 
2049
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2050
  msgid "Color"
2051
  msgstr "Kleur"
2052
 
2053
+ #: includes/event-organiser-cpt.php:723
2054
  msgid "Assign the category a colour."
2055
  msgstr "Kies een kleur voor de categorie."
2056
 
languages/eventorganiser-nn_NO.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2017-04-19T20:43:50+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1287,22 +1287,22 @@ msgid ""
1287
  "%s."
1288
  msgstr ""
1289
 
1290
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1291
  #, php-format
1292
  msgid "[Lines %1$d-%2$d]"
1293
  msgstr ""
1294
 
1295
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1296
  #, php-format
1297
  msgid "[Line %1$d]"
1298
  msgstr ""
1299
 
1300
- #: includes/class-eo-ical-parser.php:1044
1301
  #, php-format
1302
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1303
  msgstr ""
1304
 
1305
- #: includes/class-eo-ical-parser.php:1082
1306
  #, php-format
1307
  msgid ""
1308
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1911,12 +1911,12 @@ msgstr ""
1911
  "Bare registrerte steder kan velges. For å registrere et nytt sted, gå til "
1912
  "stedsiden."
1913
 
1914
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1915
- #: includes/event-organiser-cpt.php:587
1916
  msgid "Overview"
1917
  msgstr "Oversikt"
1918
 
1919
- #: includes/event-organiser-cpt.php:566
1920
  msgid ""
1921
  "This is the list of all saved events. Note that <strong> recurring events "
1922
  "appear as a single row </strong> in the table and the start and end date "
@@ -1926,7 +1926,7 @@ msgstr ""
1926
  "arrangement står som en oppføring</strong> i listen og at start- og "
1927
  "sluttdato refererer til den første forekomsten av arrangementet."
1928
 
1929
- #: includes/event-organiser-cpt.php:574
1930
  msgid ""
1931
  "Hovering over a row in the venues list will display action links that allow "
1932
  "you to manage that venue. You can perform the following actions:"
@@ -1934,7 +1934,7 @@ msgstr ""
1934
  "Hold musen over en linje i stedlisten for å vise handlingslenker som lar deg "
1935
  "behandle det stedet. Du kan gjøre følgende handlinger:"
1936
 
1937
- #: includes/event-organiser-cpt.php:576
1938
  msgid ""
1939
  "Edit takes you to the editing screen for that venue. You can also reach that "
1940
  "screen by clicking on the venue title."
@@ -1942,15 +1942,15 @@ msgstr ""
1942
  "Rediger tar det til redigeringssiden for det stedet. Du kan også komme til "
1943
  "den siden ved å klikke på stedsnavnet."
1944
 
1945
- #: includes/event-organiser-cpt.php:577
1946
  msgid "Delete will permanently remove the venue"
1947
  msgstr "Sletting vil permanent fjerne stedet"
1948
 
1949
- #: includes/event-organiser-cpt.php:578
1950
  msgid "View will take you to the venue's page"
1951
  msgstr "Vis vil ta deg til stedsiden"
1952
 
1953
- #: includes/event-organiser-cpt.php:588
1954
  msgid ""
1955
  "This page shows all (occurrances of) events. You can view the summary of an "
1956
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -1960,7 +1960,7 @@ msgstr ""
1960
  "for et arrangement ved å klikke på det. Dersom du har rettigheter til det, "
1961
  "vil du også se en lenke for å redigere."
1962
 
1963
- #: includes/event-organiser-cpt.php:589
1964
  msgid ""
1965
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1966
  "mode. You can also filter the events by events by category and venue. The "
@@ -1970,11 +1970,11 @@ msgstr ""
1970
  "eller dagsvisning. Du kan også fliltrere arrangement på kategori og sted. "
1971
  "'Gå til dato'-knappen lar det kjapt hoppe til en bestemt dato."
1972
 
1973
- #: includes/event-organiser-cpt.php:593
1974
  msgid "Add Event"
1975
  msgstr "Legg til arrangement"
1976
 
1977
- #: includes/event-organiser-cpt.php:594
1978
  msgid ""
1979
  "You can create an event on this Calendar, by clicking on day or dragging "
1980
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1989,28 +1989,28 @@ msgstr ""
1989
  "kladd. Uansett vil arrangementet opprettes og du blir videresendt til "
1990
  "redigeringssiden."
1991
 
1992
- #: includes/event-organiser-cpt.php:600
1993
  msgid "For more information"
1994
  msgstr "For mer informasjon"
1995
 
1996
- #: includes/event-organiser-cpt.php:601
1997
  #, fuzzy, php-format
1998
  msgid "See the <a %s> documentation</a>"
1999
  msgstr "Se <a %s> dokumentasjonen</a>"
2000
 
2001
- #: includes/event-organiser-cpt.php:602
2002
  msgid "Debugging Event Organiser"
2003
  msgstr ""
2004
 
2005
- #: includes/event-organiser-cpt.php:603
2006
  msgid "Go Pro!"
2007
  msgstr ""
2008
 
2009
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2010
  msgid "Color"
2011
  msgstr "Farge"
2012
 
2013
- #: includes/event-organiser-cpt.php:719
2014
  msgid "Assign the category a colour."
2015
  msgstr "Gi kategorien en farge"
2016
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2017-04-19T20:43:50+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1287
  "%s."
1288
  msgstr ""
1289
 
1290
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1291
  #, php-format
1292
  msgid "[Lines %1$d-%2$d]"
1293
  msgstr ""
1294
 
1295
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1296
  #, php-format
1297
  msgid "[Line %1$d]"
1298
  msgstr ""
1299
 
1300
+ #: includes/class-eo-ical-parser.php:1066
1301
  #, php-format
1302
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1303
  msgstr ""
1304
 
1305
+ #: includes/class-eo-ical-parser.php:1104
1306
  #, php-format
1307
  msgid ""
1308
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1911
  "Bare registrerte steder kan velges. For å registrere et nytt sted, gå til "
1912
  "stedsiden."
1913
 
1914
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1915
+ #: includes/event-organiser-cpt.php:590
1916
  msgid "Overview"
1917
  msgstr "Oversikt"
1918
 
1919
+ #: includes/event-organiser-cpt.php:565
1920
  msgid ""
1921
  "This is the list of all saved events. Note that <strong> recurring events "
1922
  "appear as a single row </strong> in the table and the start and end date "
1926
  "arrangement står som en oppføring</strong> i listen og at start- og "
1927
  "sluttdato refererer til den første forekomsten av arrangementet."
1928
 
1929
+ #: includes/event-organiser-cpt.php:572
1930
  msgid ""
1931
  "Hovering over a row in the venues list will display action links that allow "
1932
  "you to manage that venue. You can perform the following actions:"
1934
  "Hold musen over en linje i stedlisten for å vise handlingslenker som lar deg "
1935
  "behandle det stedet. Du kan gjøre følgende handlinger:"
1936
 
1937
+ #: includes/event-organiser-cpt.php:574
1938
  msgid ""
1939
  "Edit takes you to the editing screen for that venue. You can also reach that "
1940
  "screen by clicking on the venue title."
1942
  "Rediger tar det til redigeringssiden for det stedet. Du kan også komme til "
1943
  "den siden ved å klikke på stedsnavnet."
1944
 
1945
+ #: includes/event-organiser-cpt.php:575
1946
  msgid "Delete will permanently remove the venue"
1947
  msgstr "Sletting vil permanent fjerne stedet"
1948
 
1949
+ #: includes/event-organiser-cpt.php:576
1950
  msgid "View will take you to the venue's page"
1951
  msgstr "Vis vil ta deg til stedsiden"
1952
 
1953
+ #: includes/event-organiser-cpt.php:591
1954
  msgid ""
1955
  "This page shows all (occurrances of) events. You can view the summary of an "
1956
  "event by clicking on it. If you have the necessary permissions, a link to "
1960
  "for et arrangement ved å klikke på det. Dersom du har rettigheter til det, "
1961
  "vil du også se en lenke for å redigere."
1962
 
1963
+ #: includes/event-organiser-cpt.php:592
1964
  msgid ""
1965
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1966
  "mode. You can also filter the events by events by category and venue. The "
1970
  "eller dagsvisning. Du kan også fliltrere arrangement på kategori og sted. "
1971
  "'Gå til dato'-knappen lar det kjapt hoppe til en bestemt dato."
1972
 
1973
+ #: includes/event-organiser-cpt.php:596
1974
  msgid "Add Event"
1975
  msgstr "Legg til arrangement"
1976
 
1977
+ #: includes/event-organiser-cpt.php:597
1978
  msgid ""
1979
  "You can create an event on this Calendar, by clicking on day or dragging "
1980
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1989
  "kladd. Uansett vil arrangementet opprettes og du blir videresendt til "
1990
  "redigeringssiden."
1991
 
1992
+ #: includes/event-organiser-cpt.php:604
1993
  msgid "For more information"
1994
  msgstr "For mer informasjon"
1995
 
1996
+ #: includes/event-organiser-cpt.php:605
1997
  #, fuzzy, php-format
1998
  msgid "See the <a %s> documentation</a>"
1999
  msgstr "Se <a %s> dokumentasjonen</a>"
2000
 
2001
+ #: includes/event-organiser-cpt.php:606
2002
  msgid "Debugging Event Organiser"
2003
  msgstr ""
2004
 
2005
+ #: includes/event-organiser-cpt.php:607
2006
  msgid "Go Pro!"
2007
  msgstr ""
2008
 
2009
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2010
  msgid "Color"
2011
  msgstr "Farge"
2012
 
2013
+ #: includes/event-organiser-cpt.php:723
2014
  msgid "Assign the category a colour."
2015
  msgstr "Gi kategorien en farge"
2016
 
languages/eventorganiser-pl_PL.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:15:47+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1286,22 +1286,22 @@ msgid ""
1286
  "%s."
1287
  msgstr ""
1288
 
1289
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1290
  #, php-format
1291
  msgid "[Lines %1$d-%2$d]"
1292
  msgstr ""
1293
 
1294
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1295
  #, php-format
1296
  msgid "[Line %1$d]"
1297
  msgstr ""
1298
 
1299
- #: includes/class-eo-ical-parser.php:1044
1300
  #, php-format
1301
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1302
  msgstr ""
1303
 
1304
- #: includes/class-eo-ical-parser.php:1082
1305
  #, php-format
1306
  msgid ""
1307
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1911,12 +1911,12 @@ msgstr ""
1911
  "Mogą być wybrane tylko uprzednio dodane miejsca. Aby je dodać, przejdź do "
1912
  "strony miejsc."
1913
 
1914
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1915
- #: includes/event-organiser-cpt.php:587
1916
  msgid "Overview"
1917
  msgstr "Przegląd"
1918
 
1919
- #: includes/event-organiser-cpt.php:566
1920
  msgid ""
1921
  "This is the list of all saved events. Note that <strong> recurring events "
1922
  "appear as a single row </strong> in the table and the start and end date "
@@ -1927,7 +1927,7 @@ msgstr ""
1927
  "tabeli a data rozpoczęcia i zakończenia odnosi się tylko do pierwszego "
1928
  "wydarzenia w cyklu."
1929
 
1930
- #: includes/event-organiser-cpt.php:574
1931
  msgid ""
1932
  "Hovering over a row in the venues list will display action links that allow "
1933
  "you to manage that venue. You can perform the following actions:"
@@ -1936,7 +1936,7 @@ msgstr ""
1936
  "pozwalające na zarządzanie danym wydarzeniem. Możesz wykonać następujące "
1937
  "działania:"
1938
 
1939
- #: includes/event-organiser-cpt.php:576
1940
  msgid ""
1941
  "Edit takes you to the editing screen for that venue. You can also reach that "
1942
  "screen by clicking on the venue title."
@@ -1944,15 +1944,15 @@ msgstr ""
1944
  "Edytuj przeniesie Cię na ekran edycji tego wydarzenia. Możesz tam przejść "
1945
  "także klikając nazwę wydarzenia."
1946
 
1947
- #: includes/event-organiser-cpt.php:577
1948
  msgid "Delete will permanently remove the venue"
1949
  msgstr "Usuń nieodwracalnie usuwa dane wydarzenie"
1950
 
1951
- #: includes/event-organiser-cpt.php:578
1952
  msgid "View will take you to the venue's page"
1953
  msgstr "Zobacz pozwala na podgląd danego wydarzenia"
1954
 
1955
- #: includes/event-organiser-cpt.php:588
1956
  msgid ""
1957
  "This page shows all (occurrances of) events. You can view the summary of an "
1958
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -1962,7 +1962,7 @@ msgstr ""
1962
  "podsumowanie danego wydarzenia. Jeśli masz odpowiednie uprawnienia, "
1963
  "zobaczysz także link do strony edycji wydarzenia."
1964
 
1965
- #: includes/event-organiser-cpt.php:589
1966
  msgid ""
1967
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1968
  "mode. You can also filter the events by events by category and venue. The "
@@ -1973,11 +1973,11 @@ msgstr ""
1973
  "kategorii i miejsc. Przycisk 'idź do daty' pozwala na szybkie przeskoczenie "
1974
  "do określonej daty."
1975
 
1976
- #: includes/event-organiser-cpt.php:593
1977
  msgid "Add Event"
1978
  msgstr "Dodaj wydarzenie"
1979
 
1980
- #: includes/event-organiser-cpt.php:594
1981
  msgid ""
1982
  "You can create an event on this Calendar, by clicking on day or dragging "
1983
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1992,28 +1992,28 @@ msgstr ""
1992
  "wypadku tworzone jest wydarzenie i następuje przekierowanie na stronę edycji "
1993
  "wydarzenia."
1994
 
1995
- #: includes/event-organiser-cpt.php:600
1996
  msgid "For more information"
1997
  msgstr "Aby uzyskać więcej informacji"
1998
 
1999
- #: includes/event-organiser-cpt.php:601
2000
  #, php-format
2001
  msgid "See the <a %s> documentation</a>"
2002
  msgstr "Zobacz <a %s>dokumentację</a>"
2003
 
2004
- #: includes/event-organiser-cpt.php:602
2005
  msgid "Debugging Event Organiser"
2006
  msgstr ""
2007
 
2008
- #: includes/event-organiser-cpt.php:603
2009
  msgid "Go Pro!"
2010
  msgstr ""
2011
 
2012
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2013
  msgid "Color"
2014
  msgstr "Kolor"
2015
 
2016
- #: includes/event-organiser-cpt.php:719
2017
  msgid "Assign the category a colour."
2018
  msgstr "Przypisz kolor do kategorii."
2019
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:15:47+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1286
  "%s."
1287
  msgstr ""
1288
 
1289
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1290
  #, php-format
1291
  msgid "[Lines %1$d-%2$d]"
1292
  msgstr ""
1293
 
1294
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1295
  #, php-format
1296
  msgid "[Line %1$d]"
1297
  msgstr ""
1298
 
1299
+ #: includes/class-eo-ical-parser.php:1066
1300
  #, php-format
1301
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1302
  msgstr ""
1303
 
1304
+ #: includes/class-eo-ical-parser.php:1104
1305
  #, php-format
1306
  msgid ""
1307
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1911
  "Mogą być wybrane tylko uprzednio dodane miejsca. Aby je dodać, przejdź do "
1912
  "strony miejsc."
1913
 
1914
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1915
+ #: includes/event-organiser-cpt.php:590
1916
  msgid "Overview"
1917
  msgstr "Przegląd"
1918
 
1919
+ #: includes/event-organiser-cpt.php:565
1920
  msgid ""
1921
  "This is the list of all saved events. Note that <strong> recurring events "
1922
  "appear as a single row </strong> in the table and the start and end date "
1927
  "tabeli a data rozpoczęcia i zakończenia odnosi się tylko do pierwszego "
1928
  "wydarzenia w cyklu."
1929
 
1930
+ #: includes/event-organiser-cpt.php:572
1931
  msgid ""
1932
  "Hovering over a row in the venues list will display action links that allow "
1933
  "you to manage that venue. You can perform the following actions:"
1936
  "pozwalające na zarządzanie danym wydarzeniem. Możesz wykonać następujące "
1937
  "działania:"
1938
 
1939
+ #: includes/event-organiser-cpt.php:574
1940
  msgid ""
1941
  "Edit takes you to the editing screen for that venue. You can also reach that "
1942
  "screen by clicking on the venue title."
1944
  "Edytuj przeniesie Cię na ekran edycji tego wydarzenia. Możesz tam przejść "
1945
  "także klikając nazwę wydarzenia."
1946
 
1947
+ #: includes/event-organiser-cpt.php:575
1948
  msgid "Delete will permanently remove the venue"
1949
  msgstr "Usuń nieodwracalnie usuwa dane wydarzenie"
1950
 
1951
+ #: includes/event-organiser-cpt.php:576
1952
  msgid "View will take you to the venue's page"
1953
  msgstr "Zobacz pozwala na podgląd danego wydarzenia"
1954
 
1955
+ #: includes/event-organiser-cpt.php:591
1956
  msgid ""
1957
  "This page shows all (occurrances of) events. You can view the summary of an "
1958
  "event by clicking on it. If you have the necessary permissions, a link to "
1962
  "podsumowanie danego wydarzenia. Jeśli masz odpowiednie uprawnienia, "
1963
  "zobaczysz także link do strony edycji wydarzenia."
1964
 
1965
+ #: includes/event-organiser-cpt.php:592
1966
  msgid ""
1967
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1968
  "mode. You can also filter the events by events by category and venue. The "
1973
  "kategorii i miejsc. Przycisk 'idź do daty' pozwala na szybkie przeskoczenie "
1974
  "do określonej daty."
1975
 
1976
+ #: includes/event-organiser-cpt.php:596
1977
  msgid "Add Event"
1978
  msgstr "Dodaj wydarzenie"
1979
 
1980
+ #: includes/event-organiser-cpt.php:597
1981
  msgid ""
1982
  "You can create an event on this Calendar, by clicking on day or dragging "
1983
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1992
  "wypadku tworzone jest wydarzenie i następuje przekierowanie na stronę edycji "
1993
  "wydarzenia."
1994
 
1995
+ #: includes/event-organiser-cpt.php:604
1996
  msgid "For more information"
1997
  msgstr "Aby uzyskać więcej informacji"
1998
 
1999
+ #: includes/event-organiser-cpt.php:605
2000
  #, php-format
2001
  msgid "See the <a %s> documentation</a>"
2002
  msgstr "Zobacz <a %s>dokumentację</a>"
2003
 
2004
+ #: includes/event-organiser-cpt.php:606
2005
  msgid "Debugging Event Organiser"
2006
  msgstr ""
2007
 
2008
+ #: includes/event-organiser-cpt.php:607
2009
  msgid "Go Pro!"
2010
  msgstr ""
2011
 
2012
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2013
  msgid "Color"
2014
  msgstr "Kolor"
2015
 
2016
+ #: includes/event-organiser-cpt.php:723
2017
  msgid "Assign the category a colour."
2018
  msgstr "Przypisz kolor do kategorii."
2019
 
languages/eventorganiser-pt_BR.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2017-05-20T02:33:43+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1339,22 +1339,22 @@ msgstr ""
1339
  "O feed contém um evento recorrente indefinido. Este evento vai ocorrer até "
1340
  "%s."
1341
 
1342
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1343
  #, php-format
1344
  msgid "[Lines %1$d-%2$d]"
1345
  msgstr "[Linhas %1$d-%2$d]"
1346
 
1347
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1348
  #, php-format
1349
  msgid "[Line %1$d]"
1350
  msgstr "[Linha %1$d]"
1351
 
1352
- #: includes/class-eo-ical-parser.php:1044
1353
  #, php-format
1354
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1355
  msgstr "Data inválida \"%s\". Formato de data esperado AAAAMMDD."
1356
 
1357
- #: includes/class-eo-ical-parser.php:1082
1358
  #, php-format
1359
  msgid ""
1360
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1956,12 +1956,12 @@ msgstr ""
1956
  "Apenas locais que já existem podem ser selecionados. Para adicionar um "
1957
  "local, vá até a página de locais."
1958
 
1959
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1960
- #: includes/event-organiser-cpt.php:587
1961
  msgid "Overview"
1962
  msgstr "Descrição"
1963
 
1964
- #: includes/event-organiser-cpt.php:566
1965
  msgid ""
1966
  "This is the list of all saved events. Note that <strong> recurring events "
1967
  "appear as a single row </strong> in the table and the start and end date "
@@ -1971,7 +1971,7 @@ msgstr ""
1971
  "recorrentes aparecem em uma única linha</strong> na tabela e as datas de "
1972
  "início e fim fazem referência à primeira ocorrência daquele evento."
1973
 
1974
- #: includes/event-organiser-cpt.php:574
1975
  msgid ""
1976
  "Hovering over a row in the venues list will display action links that allow "
1977
  "you to manage that venue. You can perform the following actions:"
@@ -1980,7 +1980,7 @@ msgstr ""
1980
  "ação para que você possa gerenciar aquele local. Você pode realizar as "
1981
  "seguintes ações:"
1982
 
1983
- #: includes/event-organiser-cpt.php:576
1984
  msgid ""
1985
  "Edit takes you to the editing screen for that venue. You can also reach that "
1986
  "screen by clicking on the venue title."
@@ -1988,15 +1988,15 @@ msgstr ""
1988
  "Editar leva você você para a página de edição daquele local. Você também "
1989
  "pode ir para a página de edição clicando notítulo do local."
1990
 
1991
- #: includes/event-organiser-cpt.php:577
1992
  msgid "Delete will permanently remove the venue"
1993
  msgstr "Excluir irá remover o local permanentemente."
1994
 
1995
- #: includes/event-organiser-cpt.php:578
1996
  msgid "View will take you to the venue's page"
1997
  msgstr "Visualizar irá levá-lo para a página do local"
1998
 
1999
- #: includes/event-organiser-cpt.php:588
2000
  msgid ""
2001
  "This page shows all (occurrances of) events. You can view the summary of an "
2002
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -2006,7 +2006,7 @@ msgstr ""
2006
  "um evento clicando no mesmo. Se você tiver as permissões necessárias, um "
2007
  "link para a página de edição do evento irá aparecer."
2008
 
2009
- #: includes/event-organiser-cpt.php:589
2010
  msgid ""
2011
  "By clicking the relevant tab, you can view events in Month, Week or Day "
2012
  "mode. You can also filter the events by events by category and venue. The "
@@ -2016,11 +2016,11 @@ msgstr ""
2016
  "ou dia. Você também poderá filtrar os eventos por categoria e local. O botão "
2017
  "'ir até a data' permite que você pule rapidamente para uma data específica."
2018
 
2019
- #: includes/event-organiser-cpt.php:593
2020
  msgid "Add Event"
2021
  msgstr "Adicionar Evento"
2022
 
2023
- #: includes/event-organiser-cpt.php:594
2024
  msgid ""
2025
  "You can create an event on this Calendar, by clicking on day or dragging "
2026
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -2035,28 +2035,28 @@ msgstr ""
2035
  "rascunho. Em todos os casos, o evento é criado e você é levado até a página "
2036
  "de edição do evento."
2037
 
2038
- #: includes/event-organiser-cpt.php:600
2039
  msgid "For more information"
2040
  msgstr "Para mais informações"
2041
 
2042
- #: includes/event-organiser-cpt.php:601
2043
  #, php-format
2044
  msgid "See the <a %s> documentation</a>"
2045
  msgstr "Leia a <a %s> documentação</a>"
2046
 
2047
- #: includes/event-organiser-cpt.php:602
2048
  msgid "Debugging Event Organiser"
2049
  msgstr "Debugando o Event Organiser"
2050
 
2051
- #: includes/event-organiser-cpt.php:603
2052
  msgid "Go Pro!"
2053
  msgstr "Compre o Pro!"
2054
 
2055
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2056
  msgid "Color"
2057
  msgstr "Cor"
2058
 
2059
- #: includes/event-organiser-cpt.php:719
2060
  msgid "Assign the category a colour."
2061
  msgstr "Selecione uma cor para a categoria."
2062
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2017-05-20T02:33:43+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1339
  "O feed contém um evento recorrente indefinido. Este evento vai ocorrer até "
1340
  "%s."
1341
 
1342
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1343
  #, php-format
1344
  msgid "[Lines %1$d-%2$d]"
1345
  msgstr "[Linhas %1$d-%2$d]"
1346
 
1347
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1348
  #, php-format
1349
  msgid "[Line %1$d]"
1350
  msgstr "[Linha %1$d]"
1351
 
1352
+ #: includes/class-eo-ical-parser.php:1066
1353
  #, php-format
1354
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1355
  msgstr "Data inválida \"%s\". Formato de data esperado AAAAMMDD."
1356
 
1357
+ #: includes/class-eo-ical-parser.php:1104
1358
  #, php-format
1359
  msgid ""
1360
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1956
  "Apenas locais que já existem podem ser selecionados. Para adicionar um "
1957
  "local, vá até a página de locais."
1958
 
1959
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1960
+ #: includes/event-organiser-cpt.php:590
1961
  msgid "Overview"
1962
  msgstr "Descrição"
1963
 
1964
+ #: includes/event-organiser-cpt.php:565
1965
  msgid ""
1966
  "This is the list of all saved events. Note that <strong> recurring events "
1967
  "appear as a single row </strong> in the table and the start and end date "
1971
  "recorrentes aparecem em uma única linha</strong> na tabela e as datas de "
1972
  "início e fim fazem referência à primeira ocorrência daquele evento."
1973
 
1974
+ #: includes/event-organiser-cpt.php:572
1975
  msgid ""
1976
  "Hovering over a row in the venues list will display action links that allow "
1977
  "you to manage that venue. You can perform the following actions:"
1980
  "ação para que você possa gerenciar aquele local. Você pode realizar as "
1981
  "seguintes ações:"
1982
 
1983
+ #: includes/event-organiser-cpt.php:574
1984
  msgid ""
1985
  "Edit takes you to the editing screen for that venue. You can also reach that "
1986
  "screen by clicking on the venue title."
1988
  "Editar leva você você para a página de edição daquele local. Você também "
1989
  "pode ir para a página de edição clicando notítulo do local."
1990
 
1991
+ #: includes/event-organiser-cpt.php:575
1992
  msgid "Delete will permanently remove the venue"
1993
  msgstr "Excluir irá remover o local permanentemente."
1994
 
1995
+ #: includes/event-organiser-cpt.php:576
1996
  msgid "View will take you to the venue's page"
1997
  msgstr "Visualizar irá levá-lo para a página do local"
1998
 
1999
+ #: includes/event-organiser-cpt.php:591
2000
  msgid ""
2001
  "This page shows all (occurrances of) events. You can view the summary of an "
2002
  "event by clicking on it. If you have the necessary permissions, a link to "
2006
  "um evento clicando no mesmo. Se você tiver as permissões necessárias, um "
2007
  "link para a página de edição do evento irá aparecer."
2008
 
2009
+ #: includes/event-organiser-cpt.php:592
2010
  msgid ""
2011
  "By clicking the relevant tab, you can view events in Month, Week or Day "
2012
  "mode. You can also filter the events by events by category and venue. The "
2016
  "ou dia. Você também poderá filtrar os eventos por categoria e local. O botão "
2017
  "'ir até a data' permite que você pule rapidamente para uma data específica."
2018
 
2019
+ #: includes/event-organiser-cpt.php:596
2020
  msgid "Add Event"
2021
  msgstr "Adicionar Evento"
2022
 
2023
+ #: includes/event-organiser-cpt.php:597
2024
  msgid ""
2025
  "You can create an event on this Calendar, by clicking on day or dragging "
2026
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
2035
  "rascunho. Em todos os casos, o evento é criado e você é levado até a página "
2036
  "de edição do evento."
2037
 
2038
+ #: includes/event-organiser-cpt.php:604
2039
  msgid "For more information"
2040
  msgstr "Para mais informações"
2041
 
2042
+ #: includes/event-organiser-cpt.php:605
2043
  #, php-format
2044
  msgid "See the <a %s> documentation</a>"
2045
  msgstr "Leia a <a %s> documentação</a>"
2046
 
2047
+ #: includes/event-organiser-cpt.php:606
2048
  msgid "Debugging Event Organiser"
2049
  msgstr "Debugando o Event Organiser"
2050
 
2051
+ #: includes/event-organiser-cpt.php:607
2052
  msgid "Go Pro!"
2053
  msgstr "Compre o Pro!"
2054
 
2055
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2056
  msgid "Color"
2057
  msgstr "Cor"
2058
 
2059
+ #: includes/event-organiser-cpt.php:723
2060
  msgid "Assign the category a colour."
2061
  msgstr "Selecione uma cor para a categoria."
2062
 
languages/eventorganiser-pt_PT.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2017-04-16T22:56:42+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1290,22 +1290,22 @@ msgid ""
1290
  "%s."
1291
  msgstr ""
1292
 
1293
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1294
  #, fuzzy, php-format
1295
  msgid "[Lines %1$d-%2$d]"
1296
  msgstr "[Lines %1$d-%2$d]"
1297
 
1298
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1299
  #, fuzzy, php-format
1300
  msgid "[Line %1$d]"
1301
  msgstr "[Line %1$d]"
1302
 
1303
- #: includes/class-eo-ical-parser.php:1044
1304
  #, php-format
1305
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1306
  msgstr "Data inválida \"%s\". Deverá ter o formato AAAAMMDD."
1307
 
1308
- #: includes/class-eo-ical-parser.php:1082
1309
  #, php-format
1310
  msgid ""
1311
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1914,12 +1914,12 @@ msgstr ""
1914
  "Apenas campos pré-existentes podem ser selecionados. Para adicionar um "
1915
  "local, vá á página dos locais."
1916
 
1917
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1918
- #: includes/event-organiser-cpt.php:587
1919
  msgid "Overview"
1920
  msgstr "Visão geral"
1921
 
1922
- #: includes/event-organiser-cpt.php:566
1923
  msgid ""
1924
  "This is the list of all saved events. Note that <strong> recurring events "
1925
  "appear as a single row </strong> in the table and the start and end date "
@@ -1929,7 +1929,7 @@ msgstr ""
1929
  "recorrentes aparecem como uma linha única </strong> na tabela, e a data do "
1930
  "começo e do final é referente á primeira ocorrência do evento. "
1931
 
1932
- #: includes/event-organiser-cpt.php:574
1933
  msgid ""
1934
  "Hovering over a row in the venues list will display action links that allow "
1935
  "you to manage that venue. You can perform the following actions:"
@@ -1937,7 +1937,7 @@ msgstr ""
1937
  "Rodando em torno da linha da lista dos locais, irão surgir links de acção "
1938
  "que permitem gerir esse local. Pode fazer as seguintes acções: "
1939
 
1940
- #: includes/event-organiser-cpt.php:576
1941
  msgid ""
1942
  "Edit takes you to the editing screen for that venue. You can also reach that "
1943
  "screen by clicking on the venue title."
@@ -1945,15 +1945,15 @@ msgstr ""
1945
  "Editar leva ao painel para editar esse local. Também pode aceder ao painel "
1946
  "clicando no nome do local. "
1947
 
1948
- #: includes/event-organiser-cpt.php:577
1949
  msgid "Delete will permanently remove the venue"
1950
  msgstr "Eliminar irá remover de forma permanente o local "
1951
 
1952
- #: includes/event-organiser-cpt.php:578
1953
  msgid "View will take you to the venue's page"
1954
  msgstr "Visualizar irá levar á página do local"
1955
 
1956
- #: includes/event-organiser-cpt.php:588
1957
  msgid ""
1958
  "This page shows all (occurrances of) events. You can view the summary of an "
1959
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -1963,7 +1963,7 @@ msgstr ""
1963
  "resumo de um evento, clicando sobre ele. Se tiver permissões ficará com um "
1964
  "link disponível para editar o evento."
1965
 
1966
- #: includes/event-organiser-cpt.php:589
1967
  msgid ""
1968
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1969
  "mode. You can also filter the events by events by category and venue. The "
@@ -1973,11 +1973,11 @@ msgstr ""
1973
  "Pode igualmente filtrar os eventos por categoria ou local. O botão \"ir para "
1974
  "a data\" permite a passagem rápida para uma data específica"
1975
 
1976
- #: includes/event-organiser-cpt.php:593
1977
  msgid "Add Event"
1978
  msgstr "Adicionar evento"
1979
 
1980
- #: includes/event-organiser-cpt.php:594
1981
  msgid ""
1982
  "You can create an event on this Calendar, by clicking on day or dragging "
1983
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1991,28 +1991,28 @@ msgstr ""
1991
  "pode ser imediatamente publicado ou guardado como rascunho. Em qualquer "
1992
  "caso, o evento é criado e é encaminhado para a página da edição desse evento."
1993
 
1994
- #: includes/event-organiser-cpt.php:600
1995
  msgid "For more information"
1996
  msgstr "Para mais informação"
1997
 
1998
- #: includes/event-organiser-cpt.php:601
1999
  #, php-format
2000
  msgid "See the <a %s> documentation</a>"
2001
  msgstr "Ver a <a %s> documentação</a>"
2002
 
2003
- #: includes/event-organiser-cpt.php:602
2004
  msgid "Debugging Event Organiser"
2005
  msgstr "Fazer Debug ao Event Organizer"
2006
 
2007
- #: includes/event-organiser-cpt.php:603
2008
  msgid "Go Pro!"
2009
  msgstr "Go Pro!"
2010
 
2011
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2012
  msgid "Color"
2013
  msgstr "Cor"
2014
 
2015
- #: includes/event-organiser-cpt.php:719
2016
  msgid "Assign the category a colour."
2017
  msgstr "Atribuir uma cor á categoria."
2018
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2017-04-16T22:56:42+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1290
  "%s."
1291
  msgstr ""
1292
 
1293
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1294
  #, fuzzy, php-format
1295
  msgid "[Lines %1$d-%2$d]"
1296
  msgstr "[Lines %1$d-%2$d]"
1297
 
1298
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1299
  #, fuzzy, php-format
1300
  msgid "[Line %1$d]"
1301
  msgstr "[Line %1$d]"
1302
 
1303
+ #: includes/class-eo-ical-parser.php:1066
1304
  #, php-format
1305
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1306
  msgstr "Data inválida \"%s\". Deverá ter o formato AAAAMMDD."
1307
 
1308
+ #: includes/class-eo-ical-parser.php:1104
1309
  #, php-format
1310
  msgid ""
1311
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1914
  "Apenas campos pré-existentes podem ser selecionados. Para adicionar um "
1915
  "local, vá á página dos locais."
1916
 
1917
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1918
+ #: includes/event-organiser-cpt.php:590
1919
  msgid "Overview"
1920
  msgstr "Visão geral"
1921
 
1922
+ #: includes/event-organiser-cpt.php:565
1923
  msgid ""
1924
  "This is the list of all saved events. Note that <strong> recurring events "
1925
  "appear as a single row </strong> in the table and the start and end date "
1929
  "recorrentes aparecem como uma linha única </strong> na tabela, e a data do "
1930
  "começo e do final é referente á primeira ocorrência do evento. "
1931
 
1932
+ #: includes/event-organiser-cpt.php:572
1933
  msgid ""
1934
  "Hovering over a row in the venues list will display action links that allow "
1935
  "you to manage that venue. You can perform the following actions:"
1937
  "Rodando em torno da linha da lista dos locais, irão surgir links de acção "
1938
  "que permitem gerir esse local. Pode fazer as seguintes acções: "
1939
 
1940
+ #: includes/event-organiser-cpt.php:574
1941
  msgid ""
1942
  "Edit takes you to the editing screen for that venue. You can also reach that "
1943
  "screen by clicking on the venue title."
1945
  "Editar leva ao painel para editar esse local. Também pode aceder ao painel "
1946
  "clicando no nome do local. "
1947
 
1948
+ #: includes/event-organiser-cpt.php:575
1949
  msgid "Delete will permanently remove the venue"
1950
  msgstr "Eliminar irá remover de forma permanente o local "
1951
 
1952
+ #: includes/event-organiser-cpt.php:576
1953
  msgid "View will take you to the venue's page"
1954
  msgstr "Visualizar irá levar á página do local"
1955
 
1956
+ #: includes/event-organiser-cpt.php:591
1957
  msgid ""
1958
  "This page shows all (occurrances of) events. You can view the summary of an "
1959
  "event by clicking on it. If you have the necessary permissions, a link to "
1963
  "resumo de um evento, clicando sobre ele. Se tiver permissões ficará com um "
1964
  "link disponível para editar o evento."
1965
 
1966
+ #: includes/event-organiser-cpt.php:592
1967
  msgid ""
1968
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1969
  "mode. You can also filter the events by events by category and venue. The "
1973
  "Pode igualmente filtrar os eventos por categoria ou local. O botão \"ir para "
1974
  "a data\" permite a passagem rápida para uma data específica"
1975
 
1976
+ #: includes/event-organiser-cpt.php:596
1977
  msgid "Add Event"
1978
  msgstr "Adicionar evento"
1979
 
1980
+ #: includes/event-organiser-cpt.php:597
1981
  msgid ""
1982
  "You can create an event on this Calendar, by clicking on day or dragging "
1983
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1991
  "pode ser imediatamente publicado ou guardado como rascunho. Em qualquer "
1992
  "caso, o evento é criado e é encaminhado para a página da edição desse evento."
1993
 
1994
+ #: includes/event-organiser-cpt.php:604
1995
  msgid "For more information"
1996
  msgstr "Para mais informação"
1997
 
1998
+ #: includes/event-organiser-cpt.php:605
1999
  #, php-format
2000
  msgid "See the <a %s> documentation</a>"
2001
  msgstr "Ver a <a %s> documentação</a>"
2002
 
2003
+ #: includes/event-organiser-cpt.php:606
2004
  msgid "Debugging Event Organiser"
2005
  msgstr "Fazer Debug ao Event Organizer"
2006
 
2007
+ #: includes/event-organiser-cpt.php:607
2008
  msgid "Go Pro!"
2009
  msgstr "Go Pro!"
2010
 
2011
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2012
  msgid "Color"
2013
  msgstr "Cor"
2014
 
2015
+ #: includes/event-organiser-cpt.php:723
2016
  msgid "Assign the category a colour."
2017
  msgstr "Atribuir uma cor á categoria."
2018
 
languages/eventorganiser-ro_RO.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:15:34+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1272,22 +1272,22 @@ msgid ""
1272
  "%s."
1273
  msgstr ""
1274
 
1275
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1276
  #, php-format
1277
  msgid "[Lines %1$d-%2$d]"
1278
  msgstr ""
1279
 
1280
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1281
  #, php-format
1282
  msgid "[Line %1$d]"
1283
  msgstr ""
1284
 
1285
- #: includes/class-eo-ical-parser.php:1044
1286
  #, php-format
1287
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1288
  msgstr ""
1289
 
1290
- #: includes/class-eo-ical-parser.php:1082
1291
  #, php-format
1292
  msgid ""
1293
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1863,57 +1863,57 @@ msgid ""
1863
  "page."
1864
  msgstr ""
1865
 
1866
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1867
- #: includes/event-organiser-cpt.php:587
1868
  msgid "Overview"
1869
  msgstr ""
1870
 
1871
- #: includes/event-organiser-cpt.php:566
1872
  msgid ""
1873
  "This is the list of all saved events. Note that <strong> recurring events "
1874
  "appear as a single row </strong> in the table and the start and end date "
1875
  "refers to the first occurrence of that event."
1876
  msgstr ""
1877
 
1878
- #: includes/event-organiser-cpt.php:574
1879
  msgid ""
1880
  "Hovering over a row in the venues list will display action links that allow "
1881
  "you to manage that venue. You can perform the following actions:"
1882
  msgstr ""
1883
 
1884
- #: includes/event-organiser-cpt.php:576
1885
  msgid ""
1886
  "Edit takes you to the editing screen for that venue. You can also reach that "
1887
  "screen by clicking on the venue title."
1888
  msgstr ""
1889
 
1890
- #: includes/event-organiser-cpt.php:577
1891
  msgid "Delete will permanently remove the venue"
1892
  msgstr ""
1893
 
1894
- #: includes/event-organiser-cpt.php:578
1895
  msgid "View will take you to the venue's page"
1896
  msgstr ""
1897
 
1898
- #: includes/event-organiser-cpt.php:588
1899
  msgid ""
1900
  "This page shows all (occurrances of) events. You can view the summary of an "
1901
  "event by clicking on it. If you have the necessary permissions, a link to "
1902
  "the event's edit page will appear also."
1903
  msgstr ""
1904
 
1905
- #: includes/event-organiser-cpt.php:589
1906
  msgid ""
1907
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1908
  "mode. You can also filter the events by events by category and venue. The "
1909
  "'go to date' button allows you to quickly jump to a specific date."
1910
  msgstr ""
1911
 
1912
- #: includes/event-organiser-cpt.php:593
1913
  msgid "Add Event"
1914
  msgstr ""
1915
 
1916
- #: includes/event-organiser-cpt.php:594
1917
  msgid ""
1918
  "You can create an event on this Calendar, by clicking on day or dragging "
1919
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1922,28 +1922,28 @@ msgid ""
1922
  "event is created and you are forwarded to that event's edit page."
1923
  msgstr ""
1924
 
1925
- #: includes/event-organiser-cpt.php:600
1926
  msgid "For more information"
1927
  msgstr "Pentru mai multe informații"
1928
 
1929
- #: includes/event-organiser-cpt.php:601
1930
  #, php-format
1931
  msgid "See the <a %s> documentation</a>"
1932
  msgstr ""
1933
 
1934
- #: includes/event-organiser-cpt.php:602
1935
  msgid "Debugging Event Organiser"
1936
  msgstr ""
1937
 
1938
- #: includes/event-organiser-cpt.php:603
1939
  msgid "Go Pro!"
1940
  msgstr ""
1941
 
1942
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
1943
  msgid "Color"
1944
  msgstr "Culoare"
1945
 
1946
- #: includes/event-organiser-cpt.php:719
1947
  msgid "Assign the category a colour."
1948
  msgstr ""
1949
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:15:34+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1272
  "%s."
1273
  msgstr ""
1274
 
1275
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1276
  #, php-format
1277
  msgid "[Lines %1$d-%2$d]"
1278
  msgstr ""
1279
 
1280
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1281
  #, php-format
1282
  msgid "[Line %1$d]"
1283
  msgstr ""
1284
 
1285
+ #: includes/class-eo-ical-parser.php:1066
1286
  #, php-format
1287
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1288
  msgstr ""
1289
 
1290
+ #: includes/class-eo-ical-parser.php:1104
1291
  #, php-format
1292
  msgid ""
1293
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1863
  "page."
1864
  msgstr ""
1865
 
1866
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1867
+ #: includes/event-organiser-cpt.php:590
1868
  msgid "Overview"
1869
  msgstr ""
1870
 
1871
+ #: includes/event-organiser-cpt.php:565
1872
  msgid ""
1873
  "This is the list of all saved events. Note that <strong> recurring events "
1874
  "appear as a single row </strong> in the table and the start and end date "
1875
  "refers to the first occurrence of that event."
1876
  msgstr ""
1877
 
1878
+ #: includes/event-organiser-cpt.php:572
1879
  msgid ""
1880
  "Hovering over a row in the venues list will display action links that allow "
1881
  "you to manage that venue. You can perform the following actions:"
1882
  msgstr ""
1883
 
1884
+ #: includes/event-organiser-cpt.php:574
1885
  msgid ""
1886
  "Edit takes you to the editing screen for that venue. You can also reach that "
1887
  "screen by clicking on the venue title."
1888
  msgstr ""
1889
 
1890
+ #: includes/event-organiser-cpt.php:575
1891
  msgid "Delete will permanently remove the venue"
1892
  msgstr ""
1893
 
1894
+ #: includes/event-organiser-cpt.php:576
1895
  msgid "View will take you to the venue's page"
1896
  msgstr ""
1897
 
1898
+ #: includes/event-organiser-cpt.php:591
1899
  msgid ""
1900
  "This page shows all (occurrances of) events. You can view the summary of an "
1901
  "event by clicking on it. If you have the necessary permissions, a link to "
1902
  "the event's edit page will appear also."
1903
  msgstr ""
1904
 
1905
+ #: includes/event-organiser-cpt.php:592
1906
  msgid ""
1907
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1908
  "mode. You can also filter the events by events by category and venue. The "
1909
  "'go to date' button allows you to quickly jump to a specific date."
1910
  msgstr ""
1911
 
1912
+ #: includes/event-organiser-cpt.php:596
1913
  msgid "Add Event"
1914
  msgstr ""
1915
 
1916
+ #: includes/event-organiser-cpt.php:597
1917
  msgid ""
1918
  "You can create an event on this Calendar, by clicking on day or dragging "
1919
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1922
  "event is created and you are forwarded to that event's edit page."
1923
  msgstr ""
1924
 
1925
+ #: includes/event-organiser-cpt.php:604
1926
  msgid "For more information"
1927
  msgstr "Pentru mai multe informații"
1928
 
1929
+ #: includes/event-organiser-cpt.php:605
1930
  #, php-format
1931
  msgid "See the <a %s> documentation</a>"
1932
  msgstr ""
1933
 
1934
+ #: includes/event-organiser-cpt.php:606
1935
  msgid "Debugging Event Organiser"
1936
  msgstr ""
1937
 
1938
+ #: includes/event-organiser-cpt.php:607
1939
  msgid "Go Pro!"
1940
  msgstr ""
1941
 
1942
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
1943
  msgid "Color"
1944
  msgstr "Culoare"
1945
 
1946
+ #: includes/event-organiser-cpt.php:723
1947
  msgid "Assign the category a colour."
1948
  msgstr ""
1949
 
languages/eventorganiser-ru_RU.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2017-04-16T23:29:26+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1305,22 +1305,22 @@ msgstr ""
1305
  "Новостная лента содержит бесконечно повторяющееся событие. Оно будет "
1306
  "повторяться до %s."
1307
 
1308
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1309
  #, php-format
1310
  msgid "[Lines %1$d-%2$d]"
1311
  msgstr "[Строки %1$d-%2$d]"
1312
 
1313
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1314
  #, php-format
1315
  msgid "[Line %1$d]"
1316
  msgstr "[Строка %1$d]"
1317
 
1318
- #: includes/class-eo-ical-parser.php:1044
1319
  #, php-format
1320
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1321
  msgstr "Неверная дата “%s”. Ожидается формат YYYYMMDD."
1322
 
1323
- #: includes/class-eo-ical-parser.php:1082
1324
  #, php-format
1325
  msgid ""
1326
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1924,12 +1924,12 @@ msgstr ""
1924
  "Могут быть выбраны только ранее созданные места. Для добавления места, "
1925
  "пройдите на страницу мест."
1926
 
1927
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1928
- #: includes/event-organiser-cpt.php:587
1929
  msgid "Overview"
1930
  msgstr "Обзор"
1931
 
1932
- #: includes/event-organiser-cpt.php:566
1933
  msgid ""
1934
  "This is the list of all saved events. Note that <strong> recurring events "
1935
  "appear as a single row </strong> in the table and the start and end date "
@@ -1939,7 +1939,7 @@ msgstr ""
1939
  "повторяющиеся события отображаются в виде одной строки </ STRONG> в таблице, "
1940
  "и дата начала и окончания относится к первому повторению этого события."
1941
 
1942
- #: includes/event-organiser-cpt.php:574
1943
  msgid ""
1944
  "Hovering over a row in the venues list will display action links that allow "
1945
  "you to manage that venue. You can perform the following actions:"
@@ -1948,7 +1948,7 @@ msgstr ""
1948
  "действия, которые позволят вам управлять этим местом. Вы можете выполнять "
1949
  "следующие действия:"
1950
 
1951
- #: includes/event-organiser-cpt.php:576
1952
  msgid ""
1953
  "Edit takes you to the editing screen for that venue. You can also reach that "
1954
  "screen by clicking on the venue title."
@@ -1956,15 +1956,15 @@ msgstr ""
1956
  "Нажав 'Редактировать' вы попадете на страницу редактирования этого места. На "
1957
  "нее можно попасть также нажав на название места."
1958
 
1959
- #: includes/event-organiser-cpt.php:577
1960
  msgid "Delete will permanently remove the venue"
1961
  msgstr "Нажатие 'Удалить' окончательно удалит место"
1962
 
1963
- #: includes/event-organiser-cpt.php:578
1964
  msgid "View will take you to the venue's page"
1965
  msgstr "Нажав 'Посмотреть' вы попадете на страницу места"
1966
 
1967
- #: includes/event-organiser-cpt.php:588
1968
  msgid ""
1969
  "This page shows all (occurrances of) events. You can view the summary of an "
1970
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -1974,7 +1974,7 @@ msgstr ""
1974
  "сводку события, нажав на него. Если у вас достаточно прав, вам будет видна "
1975
  "также и ссылка на страницу редактирования события."
1976
 
1977
- #: includes/event-organiser-cpt.php:589
1978
  msgid ""
1979
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1980
  "mode. You can also filter the events by events by category and venue. The "
@@ -1985,11 +1985,11 @@ msgstr ""
1985
  "категориям и месту проведения. Кнопка \\\"Переход к текущей дате\\\" "
1986
  "позволяет быстро перейти к определенной дате."
1987
 
1988
- #: includes/event-organiser-cpt.php:593
1989
  msgid "Add Event"
1990
  msgstr "Добавить событие"
1991
 
1992
- #: includes/event-organiser-cpt.php:594
1993
  msgid ""
1994
  "You can create an event on this Calendar, by clicking on day or dragging "
1995
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -2004,28 +2004,28 @@ msgstr ""
2004
  "опубликовано или сохранено как черновик. В обоих случаях, событие создается, "
2005
  "и вы перенаправляетесь на страницу редактирования."
2006
 
2007
- #: includes/event-organiser-cpt.php:600
2008
  msgid "For more information"
2009
  msgstr "За дополнительной информацией"
2010
 
2011
- #: includes/event-organiser-cpt.php:601
2012
  #, php-format
2013
  msgid "See the <a %s> documentation</a>"
2014
  msgstr "Читать <a %s>документацию</a>"
2015
 
2016
- #: includes/event-organiser-cpt.php:602
2017
  msgid "Debugging Event Organiser"
2018
  msgstr "Отладка Event Organiser"
2019
 
2020
- #: includes/event-organiser-cpt.php:603
2021
  msgid "Go Pro!"
2022
  msgstr "Перейти на Pro!"
2023
 
2024
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2025
  msgid "Color"
2026
  msgstr "Цвет"
2027
 
2028
- #: includes/event-organiser-cpt.php:719
2029
  msgid "Assign the category a colour."
2030
  msgstr "Задать цвет категории."
2031
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2017-04-16T23:29:26+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1305
  "Новостная лента содержит бесконечно повторяющееся событие. Оно будет "
1306
  "повторяться до %s."
1307
 
1308
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1309
  #, php-format
1310
  msgid "[Lines %1$d-%2$d]"
1311
  msgstr "[Строки %1$d-%2$d]"
1312
 
1313
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1314
  #, php-format
1315
  msgid "[Line %1$d]"
1316
  msgstr "[Строка %1$d]"
1317
 
1318
+ #: includes/class-eo-ical-parser.php:1066
1319
  #, php-format
1320
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1321
  msgstr "Неверная дата “%s”. Ожидается формат YYYYMMDD."
1322
 
1323
+ #: includes/class-eo-ical-parser.php:1104
1324
  #, php-format
1325
  msgid ""
1326
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1924
  "Могут быть выбраны только ранее созданные места. Для добавления места, "
1925
  "пройдите на страницу мест."
1926
 
1927
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1928
+ #: includes/event-organiser-cpt.php:590
1929
  msgid "Overview"
1930
  msgstr "Обзор"
1931
 
1932
+ #: includes/event-organiser-cpt.php:565
1933
  msgid ""
1934
  "This is the list of all saved events. Note that <strong> recurring events "
1935
  "appear as a single row </strong> in the table and the start and end date "
1939
  "повторяющиеся события отображаются в виде одной строки </ STRONG> в таблице, "
1940
  "и дата начала и окончания относится к первому повторению этого события."
1941
 
1942
+ #: includes/event-organiser-cpt.php:572
1943
  msgid ""
1944
  "Hovering over a row in the venues list will display action links that allow "
1945
  "you to manage that venue. You can perform the following actions:"
1948
  "действия, которые позволят вам управлять этим местом. Вы можете выполнять "
1949
  "следующие действия:"
1950
 
1951
+ #: includes/event-organiser-cpt.php:574
1952
  msgid ""
1953
  "Edit takes you to the editing screen for that venue. You can also reach that "
1954
  "screen by clicking on the venue title."
1956
  "Нажав 'Редактировать' вы попадете на страницу редактирования этого места. На "
1957
  "нее можно попасть также нажав на название места."
1958
 
1959
+ #: includes/event-organiser-cpt.php:575
1960
  msgid "Delete will permanently remove the venue"
1961
  msgstr "Нажатие 'Удалить' окончательно удалит место"
1962
 
1963
+ #: includes/event-organiser-cpt.php:576
1964
  msgid "View will take you to the venue's page"
1965
  msgstr "Нажав 'Посмотреть' вы попадете на страницу места"
1966
 
1967
+ #: includes/event-organiser-cpt.php:591
1968
  msgid ""
1969
  "This page shows all (occurrances of) events. You can view the summary of an "
1970
  "event by clicking on it. If you have the necessary permissions, a link to "
1974
  "сводку события, нажав на него. Если у вас достаточно прав, вам будет видна "
1975
  "также и ссылка на страницу редактирования события."
1976
 
1977
+ #: includes/event-organiser-cpt.php:592
1978
  msgid ""
1979
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1980
  "mode. You can also filter the events by events by category and venue. The "
1985
  "категориям и месту проведения. Кнопка \\\"Переход к текущей дате\\\" "
1986
  "позволяет быстро перейти к определенной дате."
1987
 
1988
+ #: includes/event-organiser-cpt.php:596
1989
  msgid "Add Event"
1990
  msgstr "Добавить событие"
1991
 
1992
+ #: includes/event-organiser-cpt.php:597
1993
  msgid ""
1994
  "You can create an event on this Calendar, by clicking on day or dragging "
1995
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
2004
  "опубликовано или сохранено как черновик. В обоих случаях, событие создается, "
2005
  "и вы перенаправляетесь на страницу редактирования."
2006
 
2007
+ #: includes/event-organiser-cpt.php:604
2008
  msgid "For more information"
2009
  msgstr "За дополнительной информацией"
2010
 
2011
+ #: includes/event-organiser-cpt.php:605
2012
  #, php-format
2013
  msgid "See the <a %s> documentation</a>"
2014
  msgstr "Читать <a %s>документацию</a>"
2015
 
2016
+ #: includes/event-organiser-cpt.php:606
2017
  msgid "Debugging Event Organiser"
2018
  msgstr "Отладка Event Organiser"
2019
 
2020
+ #: includes/event-organiser-cpt.php:607
2021
  msgid "Go Pro!"
2022
  msgstr "Перейти на Pro!"
2023
 
2024
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2025
  msgid "Color"
2026
  msgstr "Цвет"
2027
 
2028
+ #: includes/event-organiser-cpt.php:723
2029
  msgid "Assign the category a colour."
2030
  msgstr "Задать цвет категории."
2031
 
languages/eventorganiser-sk_SK.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:15:26+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1272,22 +1272,22 @@ msgid ""
1272
  "%s."
1273
  msgstr ""
1274
 
1275
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1276
  #, php-format
1277
  msgid "[Lines %1$d-%2$d]"
1278
  msgstr ""
1279
 
1280
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1281
  #, php-format
1282
  msgid "[Line %1$d]"
1283
  msgstr ""
1284
 
1285
- #: includes/class-eo-ical-parser.php:1044
1286
  #, php-format
1287
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1288
  msgstr ""
1289
 
1290
- #: includes/class-eo-ical-parser.php:1082
1291
  #, php-format
1292
  msgid ""
1293
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1868,57 +1868,57 @@ msgstr ""
1868
  "Môžu byť vybraté iba existujúce miesta konania. Na ich pridanie prejdite ku "
1869
  "stránke miesta konania."
1870
 
1871
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1872
- #: includes/event-organiser-cpt.php:587
1873
  msgid "Overview"
1874
  msgstr "Prehľad"
1875
 
1876
- #: includes/event-organiser-cpt.php:566
1877
  msgid ""
1878
  "This is the list of all saved events. Note that <strong> recurring events "
1879
  "appear as a single row </strong> in the table and the start and end date "
1880
  "refers to the first occurrence of that event."
1881
  msgstr ""
1882
 
1883
- #: includes/event-organiser-cpt.php:574
1884
  msgid ""
1885
  "Hovering over a row in the venues list will display action links that allow "
1886
  "you to manage that venue. You can perform the following actions:"
1887
  msgstr ""
1888
 
1889
- #: includes/event-organiser-cpt.php:576
1890
  msgid ""
1891
  "Edit takes you to the editing screen for that venue. You can also reach that "
1892
  "screen by clicking on the venue title."
1893
  msgstr ""
1894
 
1895
- #: includes/event-organiser-cpt.php:577
1896
  msgid "Delete will permanently remove the venue"
1897
  msgstr "Vymazanie trvalo odstráni miesto konania"
1898
 
1899
- #: includes/event-organiser-cpt.php:578
1900
  msgid "View will take you to the venue's page"
1901
  msgstr "Náhľad vás prenesie na stránku miesta konania"
1902
 
1903
- #: includes/event-organiser-cpt.php:588
1904
  msgid ""
1905
  "This page shows all (occurrances of) events. You can view the summary of an "
1906
  "event by clicking on it. If you have the necessary permissions, a link to "
1907
  "the event's edit page will appear also."
1908
  msgstr ""
1909
 
1910
- #: includes/event-organiser-cpt.php:589
1911
  msgid ""
1912
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1913
  "mode. You can also filter the events by events by category and venue. The "
1914
  "'go to date' button allows you to quickly jump to a specific date."
1915
  msgstr ""
1916
 
1917
- #: includes/event-organiser-cpt.php:593
1918
  msgid "Add Event"
1919
  msgstr "Pridajte udalosť"
1920
 
1921
- #: includes/event-organiser-cpt.php:594
1922
  msgid ""
1923
  "You can create an event on this Calendar, by clicking on day or dragging "
1924
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1927,28 +1927,28 @@ msgid ""
1927
  "event is created and you are forwarded to that event's edit page."
1928
  msgstr ""
1929
 
1930
- #: includes/event-organiser-cpt.php:600
1931
  msgid "For more information"
1932
  msgstr "Pre viac informácií"
1933
 
1934
- #: includes/event-organiser-cpt.php:601
1935
  #, php-format
1936
  msgid "See the <a %s> documentation</a>"
1937
  msgstr "Nahliadnite do <a %s> dokumentácie </a>"
1938
 
1939
- #: includes/event-organiser-cpt.php:602
1940
  msgid "Debugging Event Organiser"
1941
  msgstr ""
1942
 
1943
- #: includes/event-organiser-cpt.php:603
1944
  msgid "Go Pro!"
1945
  msgstr "Zmeňte na Pro!"
1946
 
1947
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
1948
  msgid "Color"
1949
  msgstr "Farba"
1950
 
1951
- #: includes/event-organiser-cpt.php:719
1952
  msgid "Assign the category a colour."
1953
  msgstr "Priraďte kategórii farbu."
1954
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:15:26+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1272
  "%s."
1273
  msgstr ""
1274
 
1275
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1276
  #, php-format
1277
  msgid "[Lines %1$d-%2$d]"
1278
  msgstr ""
1279
 
1280
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1281
  #, php-format
1282
  msgid "[Line %1$d]"
1283
  msgstr ""
1284
 
1285
+ #: includes/class-eo-ical-parser.php:1066
1286
  #, php-format
1287
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1288
  msgstr ""
1289
 
1290
+ #: includes/class-eo-ical-parser.php:1104
1291
  #, php-format
1292
  msgid ""
1293
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1868
  "Môžu byť vybraté iba existujúce miesta konania. Na ich pridanie prejdite ku "
1869
  "stránke miesta konania."
1870
 
1871
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1872
+ #: includes/event-organiser-cpt.php:590
1873
  msgid "Overview"
1874
  msgstr "Prehľad"
1875
 
1876
+ #: includes/event-organiser-cpt.php:565
1877
  msgid ""
1878
  "This is the list of all saved events. Note that <strong> recurring events "
1879
  "appear as a single row </strong> in the table and the start and end date "
1880
  "refers to the first occurrence of that event."
1881
  msgstr ""
1882
 
1883
+ #: includes/event-organiser-cpt.php:572
1884
  msgid ""
1885
  "Hovering over a row in the venues list will display action links that allow "
1886
  "you to manage that venue. You can perform the following actions:"
1887
  msgstr ""
1888
 
1889
+ #: includes/event-organiser-cpt.php:574
1890
  msgid ""
1891
  "Edit takes you to the editing screen for that venue. You can also reach that "
1892
  "screen by clicking on the venue title."
1893
  msgstr ""
1894
 
1895
+ #: includes/event-organiser-cpt.php:575
1896
  msgid "Delete will permanently remove the venue"
1897
  msgstr "Vymazanie trvalo odstráni miesto konania"
1898
 
1899
+ #: includes/event-organiser-cpt.php:576
1900
  msgid "View will take you to the venue's page"
1901
  msgstr "Náhľad vás prenesie na stránku miesta konania"
1902
 
1903
+ #: includes/event-organiser-cpt.php:591
1904
  msgid ""
1905
  "This page shows all (occurrances of) events. You can view the summary of an "
1906
  "event by clicking on it. If you have the necessary permissions, a link to "
1907
  "the event's edit page will appear also."
1908
  msgstr ""
1909
 
1910
+ #: includes/event-organiser-cpt.php:592
1911
  msgid ""
1912
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1913
  "mode. You can also filter the events by events by category and venue. The "
1914
  "'go to date' button allows you to quickly jump to a specific date."
1915
  msgstr ""
1916
 
1917
+ #: includes/event-organiser-cpt.php:596
1918
  msgid "Add Event"
1919
  msgstr "Pridajte udalosť"
1920
 
1921
+ #: includes/event-organiser-cpt.php:597
1922
  msgid ""
1923
  "You can create an event on this Calendar, by clicking on day or dragging "
1924
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1927
  "event is created and you are forwarded to that event's edit page."
1928
  msgstr ""
1929
 
1930
+ #: includes/event-organiser-cpt.php:604
1931
  msgid "For more information"
1932
  msgstr "Pre viac informácií"
1933
 
1934
+ #: includes/event-organiser-cpt.php:605
1935
  #, php-format
1936
  msgid "See the <a %s> documentation</a>"
1937
  msgstr "Nahliadnite do <a %s> dokumentácie </a>"
1938
 
1939
+ #: includes/event-organiser-cpt.php:606
1940
  msgid "Debugging Event Organiser"
1941
  msgstr ""
1942
 
1943
+ #: includes/event-organiser-cpt.php:607
1944
  msgid "Go Pro!"
1945
  msgstr "Zmeňte na Pro!"
1946
 
1947
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
1948
  msgid "Color"
1949
  msgstr "Farba"
1950
 
1951
+ #: includes/event-organiser-cpt.php:723
1952
  msgid "Assign the category a colour."
1953
  msgstr "Priraďte kategórii farbu."
1954
 
languages/eventorganiser-sl_SI.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2017-06-24T09:29:56+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1269,22 +1269,22 @@ msgid ""
1269
  "%s."
1270
  msgstr ""
1271
 
1272
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1273
  #, php-format
1274
  msgid "[Lines %1$d-%2$d]"
1275
  msgstr ""
1276
 
1277
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1278
  #, php-format
1279
  msgid "[Line %1$d]"
1280
  msgstr ""
1281
 
1282
- #: includes/class-eo-ical-parser.php:1044
1283
  #, php-format
1284
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1285
  msgstr ""
1286
 
1287
- #: includes/class-eo-ical-parser.php:1082
1288
  #, php-format
1289
  msgid ""
1290
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1862,57 +1862,57 @@ msgid ""
1862
  "page."
1863
  msgstr ""
1864
 
1865
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1866
- #: includes/event-organiser-cpt.php:587
1867
  msgid "Overview"
1868
  msgstr "Pregled"
1869
 
1870
- #: includes/event-organiser-cpt.php:566
1871
  msgid ""
1872
  "This is the list of all saved events. Note that <strong> recurring events "
1873
  "appear as a single row </strong> in the table and the start and end date "
1874
  "refers to the first occurrence of that event."
1875
  msgstr ""
1876
 
1877
- #: includes/event-organiser-cpt.php:574
1878
  msgid ""
1879
  "Hovering over a row in the venues list will display action links that allow "
1880
  "you to manage that venue. You can perform the following actions:"
1881
  msgstr ""
1882
 
1883
- #: includes/event-organiser-cpt.php:576
1884
  msgid ""
1885
  "Edit takes you to the editing screen for that venue. You can also reach that "
1886
  "screen by clicking on the venue title."
1887
  msgstr ""
1888
 
1889
- #: includes/event-organiser-cpt.php:577
1890
  msgid "Delete will permanently remove the venue"
1891
  msgstr ""
1892
 
1893
- #: includes/event-organiser-cpt.php:578
1894
  msgid "View will take you to the venue's page"
1895
  msgstr ""
1896
 
1897
- #: includes/event-organiser-cpt.php:588
1898
  msgid ""
1899
  "This page shows all (occurrances of) events. You can view the summary of an "
1900
  "event by clicking on it. If you have the necessary permissions, a link to "
1901
  "the event's edit page will appear also."
1902
  msgstr ""
1903
 
1904
- #: includes/event-organiser-cpt.php:589
1905
  msgid ""
1906
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1907
  "mode. You can also filter the events by events by category and venue. The "
1908
  "'go to date' button allows you to quickly jump to a specific date."
1909
  msgstr ""
1910
 
1911
- #: includes/event-organiser-cpt.php:593
1912
  msgid "Add Event"
1913
  msgstr "Dodaj Dogodek"
1914
 
1915
- #: includes/event-organiser-cpt.php:594
1916
  msgid ""
1917
  "You can create an event on this Calendar, by clicking on day or dragging "
1918
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1921,28 +1921,28 @@ msgid ""
1921
  "event is created and you are forwarded to that event's edit page."
1922
  msgstr ""
1923
 
1924
- #: includes/event-organiser-cpt.php:600
1925
  msgid "For more information"
1926
  msgstr "Za več informacij"
1927
 
1928
- #: includes/event-organiser-cpt.php:601
1929
  #, php-format
1930
  msgid "See the <a %s> documentation</a>"
1931
  msgstr "Poglej <a %s> dokumentacijo</a>"
1932
 
1933
- #: includes/event-organiser-cpt.php:602
1934
  msgid "Debugging Event Organiser"
1935
  msgstr ""
1936
 
1937
- #: includes/event-organiser-cpt.php:603
1938
  msgid "Go Pro!"
1939
  msgstr "Go Pro!"
1940
 
1941
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
1942
  msgid "Color"
1943
  msgstr "Barva"
1944
 
1945
- #: includes/event-organiser-cpt.php:719
1946
  msgid "Assign the category a colour."
1947
  msgstr "Kategoriji določi barvo."
1948
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2017-06-24T09:29:56+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1269
  "%s."
1270
  msgstr ""
1271
 
1272
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1273
  #, php-format
1274
  msgid "[Lines %1$d-%2$d]"
1275
  msgstr ""
1276
 
1277
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1278
  #, php-format
1279
  msgid "[Line %1$d]"
1280
  msgstr ""
1281
 
1282
+ #: includes/class-eo-ical-parser.php:1066
1283
  #, php-format
1284
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1285
  msgstr ""
1286
 
1287
+ #: includes/class-eo-ical-parser.php:1104
1288
  #, php-format
1289
  msgid ""
1290
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1862
  "page."
1863
  msgstr ""
1864
 
1865
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1866
+ #: includes/event-organiser-cpt.php:590
1867
  msgid "Overview"
1868
  msgstr "Pregled"
1869
 
1870
+ #: includes/event-organiser-cpt.php:565
1871
  msgid ""
1872
  "This is the list of all saved events. Note that <strong> recurring events "
1873
  "appear as a single row </strong> in the table and the start and end date "
1874
  "refers to the first occurrence of that event."
1875
  msgstr ""
1876
 
1877
+ #: includes/event-organiser-cpt.php:572
1878
  msgid ""
1879
  "Hovering over a row in the venues list will display action links that allow "
1880
  "you to manage that venue. You can perform the following actions:"
1881
  msgstr ""
1882
 
1883
+ #: includes/event-organiser-cpt.php:574
1884
  msgid ""
1885
  "Edit takes you to the editing screen for that venue. You can also reach that "
1886
  "screen by clicking on the venue title."
1887
  msgstr ""
1888
 
1889
+ #: includes/event-organiser-cpt.php:575
1890
  msgid "Delete will permanently remove the venue"
1891
  msgstr ""
1892
 
1893
+ #: includes/event-organiser-cpt.php:576
1894
  msgid "View will take you to the venue's page"
1895
  msgstr ""
1896
 
1897
+ #: includes/event-organiser-cpt.php:591
1898
  msgid ""
1899
  "This page shows all (occurrances of) events. You can view the summary of an "
1900
  "event by clicking on it. If you have the necessary permissions, a link to "
1901
  "the event's edit page will appear also."
1902
  msgstr ""
1903
 
1904
+ #: includes/event-organiser-cpt.php:592
1905
  msgid ""
1906
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1907
  "mode. You can also filter the events by events by category and venue. The "
1908
  "'go to date' button allows you to quickly jump to a specific date."
1909
  msgstr ""
1910
 
1911
+ #: includes/event-organiser-cpt.php:596
1912
  msgid "Add Event"
1913
  msgstr "Dodaj Dogodek"
1914
 
1915
+ #: includes/event-organiser-cpt.php:597
1916
  msgid ""
1917
  "You can create an event on this Calendar, by clicking on day or dragging "
1918
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1921
  "event is created and you are forwarded to that event's edit page."
1922
  msgstr ""
1923
 
1924
+ #: includes/event-organiser-cpt.php:604
1925
  msgid "For more information"
1926
  msgstr "Za več informacij"
1927
 
1928
+ #: includes/event-organiser-cpt.php:605
1929
  #, php-format
1930
  msgid "See the <a %s> documentation</a>"
1931
  msgstr "Poglej <a %s> dokumentacijo</a>"
1932
 
1933
+ #: includes/event-organiser-cpt.php:606
1934
  msgid "Debugging Event Organiser"
1935
  msgstr ""
1936
 
1937
+ #: includes/event-organiser-cpt.php:607
1938
  msgid "Go Pro!"
1939
  msgstr "Go Pro!"
1940
 
1941
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
1942
  msgid "Color"
1943
  msgstr "Barva"
1944
 
1945
+ #: includes/event-organiser-cpt.php:723
1946
  msgid "Assign the category a colour."
1947
  msgstr "Kategoriji določi barvo."
1948
 
languages/eventorganiser-sv_SE.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2017-07-05T19:32:07+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1330,22 +1330,22 @@ msgstr ""
1330
  "Flödet innehåller ett återkommande evenemang utan sluttid. Evenemanget "
1331
  "kommer återkomma till och med %s."
1332
 
1333
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1334
  #, php-format
1335
  msgid "[Lines %1$d-%2$d]"
1336
  msgstr "[Rad %1$d-%2$d]"
1337
 
1338
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1339
  #, php-format
1340
  msgid "[Line %1$d]"
1341
  msgstr "[Rad %1$d]"
1342
 
1343
- #: includes/class-eo-ical-parser.php:1044
1344
  #, php-format
1345
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1346
  msgstr "Ogiltigt datum \"%s\". Använd YYYYMMDD som format"
1347
 
1348
- #: includes/class-eo-ical-parser.php:1082
1349
  #, fuzzy, php-format
1350
  msgid ""
1351
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1952,12 +1952,12 @@ msgstr ""
1952
  "Endast existerande lokaler kan väljas. För att skapa en lokal gå till "
1953
  "lokalsidan. "
1954
 
1955
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1956
- #: includes/event-organiser-cpt.php:587
1957
  msgid "Overview"
1958
  msgstr "Översikt"
1959
 
1960
- #: includes/event-organiser-cpt.php:566
1961
  msgid ""
1962
  "This is the list of all saved events. Note that <strong> recurring events "
1963
  "appear as a single row </strong> in the table and the start and end date "
@@ -1967,7 +1967,7 @@ msgstr ""
1967
  "evenemang visas på en enda rad </strong> i tabellen och att start- och "
1968
  "slutdatumet är det första tillfällets start- och slutdatum. "
1969
 
1970
- #: includes/event-organiser-cpt.php:574
1971
  msgid ""
1972
  "Hovering over a row in the venues list will display action links that allow "
1973
  "you to manage that venue. You can perform the following actions:"
@@ -1975,7 +1975,7 @@ msgstr ""
1975
  "Om du hovrar över en rad i lokallistan kommer du att se länkar som du kan "
1976
  "använda för att uppdatera lokalen. Du kan göra följande: "
1977
 
1978
- #: includes/event-organiser-cpt.php:576
1979
  msgid ""
1980
  "Edit takes you to the editing screen for that venue. You can also reach that "
1981
  "screen by clicking on the venue title."
@@ -1983,15 +1983,15 @@ msgstr ""
1983
  "Redigera tar dig till redigeringssidan för den lokalen. Du kan också nå "
1984
  "denna sida genom att klicka på lokalens titel. "
1985
 
1986
- #: includes/event-organiser-cpt.php:577
1987
  msgid "Delete will permanently remove the venue"
1988
  msgstr "Ta bort kommer ta bort lokalen permanent"
1989
 
1990
- #: includes/event-organiser-cpt.php:578
1991
  msgid "View will take you to the venue's page"
1992
  msgstr "Visa tar dig till lokalens sida"
1993
 
1994
- #: includes/event-organiser-cpt.php:588
1995
  msgid ""
1996
  "This page shows all (occurrances of) events. You can view the summary of an "
1997
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -2002,7 +2002,7 @@ msgstr ""
2002
  "rättigheter kommer du också att se en länk till evenemangets "
2003
  "redigeringssida. "
2004
 
2005
- #: includes/event-organiser-cpt.php:589
2006
  msgid ""
2007
  "By clicking the relevant tab, you can view events in Month, Week or Day "
2008
  "mode. You can also filter the events by events by category and venue. The "
@@ -2012,11 +2012,11 @@ msgstr ""
2012
  "respektive flik. Du kan också filtrera evenemangen på kategori och lokal. "
2013
  "'Gå till datum'-knappen gör att du lätt kan hoppa till ett specifikt datum. "
2014
 
2015
- #: includes/event-organiser-cpt.php:593
2016
  msgid "Add Event"
2017
  msgstr "Skapa evenemang"
2018
 
2019
- #: includes/event-organiser-cpt.php:594
2020
  msgid ""
2021
  "You can create an event on this Calendar, by clicking on day or dragging "
2022
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -2031,28 +2031,28 @@ msgstr ""
2031
  "kommer det att skapas och du kommer skickas vidare till evenemangets "
2032
  "redigeringssida."
2033
 
2034
- #: includes/event-organiser-cpt.php:600
2035
  msgid "For more information"
2036
  msgstr "För mer information"
2037
 
2038
- #: includes/event-organiser-cpt.php:601
2039
  #, php-format
2040
  msgid "See the <a %s> documentation</a>"
2041
  msgstr "Se <a %s> dokumentationen</a>"
2042
 
2043
- #: includes/event-organiser-cpt.php:602
2044
  msgid "Debugging Event Organiser"
2045
  msgstr "Debugga Event Organiser"
2046
 
2047
- #: includes/event-organiser-cpt.php:603
2048
  msgid "Go Pro!"
2049
  msgstr "Välj Pro!"
2050
 
2051
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2052
  msgid "Color"
2053
  msgstr "Färg"
2054
 
2055
- #: includes/event-organiser-cpt.php:719
2056
  msgid "Assign the category a colour."
2057
  msgstr "Ge kategorin en färg"
2058
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2017-07-05T19:32:07+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1330
  "Flödet innehåller ett återkommande evenemang utan sluttid. Evenemanget "
1331
  "kommer återkomma till och med %s."
1332
 
1333
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1334
  #, php-format
1335
  msgid "[Lines %1$d-%2$d]"
1336
  msgstr "[Rad %1$d-%2$d]"
1337
 
1338
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1339
  #, php-format
1340
  msgid "[Line %1$d]"
1341
  msgstr "[Rad %1$d]"
1342
 
1343
+ #: includes/class-eo-ical-parser.php:1066
1344
  #, php-format
1345
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1346
  msgstr "Ogiltigt datum \"%s\". Använd YYYYMMDD som format"
1347
 
1348
+ #: includes/class-eo-ical-parser.php:1104
1349
  #, fuzzy, php-format
1350
  msgid ""
1351
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1952
  "Endast existerande lokaler kan väljas. För att skapa en lokal gå till "
1953
  "lokalsidan. "
1954
 
1955
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1956
+ #: includes/event-organiser-cpt.php:590
1957
  msgid "Overview"
1958
  msgstr "Översikt"
1959
 
1960
+ #: includes/event-organiser-cpt.php:565
1961
  msgid ""
1962
  "This is the list of all saved events. Note that <strong> recurring events "
1963
  "appear as a single row </strong> in the table and the start and end date "
1967
  "evenemang visas på en enda rad </strong> i tabellen och att start- och "
1968
  "slutdatumet är det första tillfällets start- och slutdatum. "
1969
 
1970
+ #: includes/event-organiser-cpt.php:572
1971
  msgid ""
1972
  "Hovering over a row in the venues list will display action links that allow "
1973
  "you to manage that venue. You can perform the following actions:"
1975
  "Om du hovrar över en rad i lokallistan kommer du att se länkar som du kan "
1976
  "använda för att uppdatera lokalen. Du kan göra följande: "
1977
 
1978
+ #: includes/event-organiser-cpt.php:574
1979
  msgid ""
1980
  "Edit takes you to the editing screen for that venue. You can also reach that "
1981
  "screen by clicking on the venue title."
1983
  "Redigera tar dig till redigeringssidan för den lokalen. Du kan också nå "
1984
  "denna sida genom att klicka på lokalens titel. "
1985
 
1986
+ #: includes/event-organiser-cpt.php:575
1987
  msgid "Delete will permanently remove the venue"
1988
  msgstr "Ta bort kommer ta bort lokalen permanent"
1989
 
1990
+ #: includes/event-organiser-cpt.php:576
1991
  msgid "View will take you to the venue's page"
1992
  msgstr "Visa tar dig till lokalens sida"
1993
 
1994
+ #: includes/event-organiser-cpt.php:591
1995
  msgid ""
1996
  "This page shows all (occurrances of) events. You can view the summary of an "
1997
  "event by clicking on it. If you have the necessary permissions, a link to "
2002
  "rättigheter kommer du också att se en länk till evenemangets "
2003
  "redigeringssida. "
2004
 
2005
+ #: includes/event-organiser-cpt.php:592
2006
  msgid ""
2007
  "By clicking the relevant tab, you can view events in Month, Week or Day "
2008
  "mode. You can also filter the events by events by category and venue. The "
2012
  "respektive flik. Du kan också filtrera evenemangen på kategori och lokal. "
2013
  "'Gå till datum'-knappen gör att du lätt kan hoppa till ett specifikt datum. "
2014
 
2015
+ #: includes/event-organiser-cpt.php:596
2016
  msgid "Add Event"
2017
  msgstr "Skapa evenemang"
2018
 
2019
+ #: includes/event-organiser-cpt.php:597
2020
  msgid ""
2021
  "You can create an event on this Calendar, by clicking on day or dragging "
2022
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
2031
  "kommer det att skapas och du kommer skickas vidare till evenemangets "
2032
  "redigeringssida."
2033
 
2034
+ #: includes/event-organiser-cpt.php:604
2035
  msgid "For more information"
2036
  msgstr "För mer information"
2037
 
2038
+ #: includes/event-organiser-cpt.php:605
2039
  #, php-format
2040
  msgid "See the <a %s> documentation</a>"
2041
  msgstr "Se <a %s> dokumentationen</a>"
2042
 
2043
+ #: includes/event-organiser-cpt.php:606
2044
  msgid "Debugging Event Organiser"
2045
  msgstr "Debugga Event Organiser"
2046
 
2047
+ #: includes/event-organiser-cpt.php:607
2048
  msgid "Go Pro!"
2049
  msgstr "Välj Pro!"
2050
 
2051
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2052
  msgid "Color"
2053
  msgstr "Färg"
2054
 
2055
+ #: includes/event-organiser-cpt.php:723
2056
  msgid "Assign the category a colour."
2057
  msgstr "Ge kategorin en färg"
2058
 
languages/eventorganiser-th.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:15:15+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1267,22 +1267,22 @@ msgid ""
1267
  "%s."
1268
  msgstr ""
1269
 
1270
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1271
  #, php-format
1272
  msgid "[Lines %1$d-%2$d]"
1273
  msgstr ""
1274
 
1275
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1276
  #, php-format
1277
  msgid "[Line %1$d]"
1278
  msgstr ""
1279
 
1280
- #: includes/class-eo-ical-parser.php:1044
1281
  #, php-format
1282
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1283
  msgstr ""
1284
 
1285
- #: includes/class-eo-ical-parser.php:1082
1286
  #, php-format
1287
  msgid ""
1288
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1858,57 +1858,57 @@ msgid ""
1858
  "page."
1859
  msgstr ""
1860
 
1861
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1862
- #: includes/event-organiser-cpt.php:587
1863
  msgid "Overview"
1864
  msgstr "ภาพรวม"
1865
 
1866
- #: includes/event-organiser-cpt.php:566
1867
  msgid ""
1868
  "This is the list of all saved events. Note that <strong> recurring events "
1869
  "appear as a single row </strong> in the table and the start and end date "
1870
  "refers to the first occurrence of that event."
1871
  msgstr ""
1872
 
1873
- #: includes/event-organiser-cpt.php:574
1874
  msgid ""
1875
  "Hovering over a row in the venues list will display action links that allow "
1876
  "you to manage that venue. You can perform the following actions:"
1877
  msgstr ""
1878
 
1879
- #: includes/event-organiser-cpt.php:576
1880
  msgid ""
1881
  "Edit takes you to the editing screen for that venue. You can also reach that "
1882
  "screen by clicking on the venue title."
1883
  msgstr ""
1884
 
1885
- #: includes/event-organiser-cpt.php:577
1886
  msgid "Delete will permanently remove the venue"
1887
  msgstr ""
1888
 
1889
- #: includes/event-organiser-cpt.php:578
1890
  msgid "View will take you to the venue's page"
1891
  msgstr ""
1892
 
1893
- #: includes/event-organiser-cpt.php:588
1894
  msgid ""
1895
  "This page shows all (occurrances of) events. You can view the summary of an "
1896
  "event by clicking on it. If you have the necessary permissions, a link to "
1897
  "the event's edit page will appear also."
1898
  msgstr ""
1899
 
1900
- #: includes/event-organiser-cpt.php:589
1901
  msgid ""
1902
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1903
  "mode. You can also filter the events by events by category and venue. The "
1904
  "'go to date' button allows you to quickly jump to a specific date."
1905
  msgstr ""
1906
 
1907
- #: includes/event-organiser-cpt.php:593
1908
  msgid "Add Event"
1909
  msgstr "เพิ่มกิจกรรม"
1910
 
1911
- #: includes/event-organiser-cpt.php:594
1912
  msgid ""
1913
  "You can create an event on this Calendar, by clicking on day or dragging "
1914
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1917,28 +1917,28 @@ msgid ""
1917
  "event is created and you are forwarded to that event's edit page."
1918
  msgstr ""
1919
 
1920
- #: includes/event-organiser-cpt.php:600
1921
  msgid "For more information"
1922
  msgstr "สำหรับรายละเอียดเพิ่มเติม"
1923
 
1924
- #: includes/event-organiser-cpt.php:601
1925
  #, php-format
1926
  msgid "See the <a %s> documentation</a>"
1927
  msgstr ""
1928
 
1929
- #: includes/event-organiser-cpt.php:602
1930
  msgid "Debugging Event Organiser"
1931
  msgstr ""
1932
 
1933
- #: includes/event-organiser-cpt.php:603
1934
  msgid "Go Pro!"
1935
  msgstr ""
1936
 
1937
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
1938
  msgid "Color"
1939
  msgstr "สี"
1940
 
1941
- #: includes/event-organiser-cpt.php:719
1942
  msgid "Assign the category a colour."
1943
  msgstr "สั่งงานให้หมวดหมู่แสดงเป็นสี"
1944
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:15:15+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1267
  "%s."
1268
  msgstr ""
1269
 
1270
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1271
  #, php-format
1272
  msgid "[Lines %1$d-%2$d]"
1273
  msgstr ""
1274
 
1275
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1276
  #, php-format
1277
  msgid "[Line %1$d]"
1278
  msgstr ""
1279
 
1280
+ #: includes/class-eo-ical-parser.php:1066
1281
  #, php-format
1282
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1283
  msgstr ""
1284
 
1285
+ #: includes/class-eo-ical-parser.php:1104
1286
  #, php-format
1287
  msgid ""
1288
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1858
  "page."
1859
  msgstr ""
1860
 
1861
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1862
+ #: includes/event-organiser-cpt.php:590
1863
  msgid "Overview"
1864
  msgstr "ภาพรวม"
1865
 
1866
+ #: includes/event-organiser-cpt.php:565
1867
  msgid ""
1868
  "This is the list of all saved events. Note that <strong> recurring events "
1869
  "appear as a single row </strong> in the table and the start and end date "
1870
  "refers to the first occurrence of that event."
1871
  msgstr ""
1872
 
1873
+ #: includes/event-organiser-cpt.php:572
1874
  msgid ""
1875
  "Hovering over a row in the venues list will display action links that allow "
1876
  "you to manage that venue. You can perform the following actions:"
1877
  msgstr ""
1878
 
1879
+ #: includes/event-organiser-cpt.php:574
1880
  msgid ""
1881
  "Edit takes you to the editing screen for that venue. You can also reach that "
1882
  "screen by clicking on the venue title."
1883
  msgstr ""
1884
 
1885
+ #: includes/event-organiser-cpt.php:575
1886
  msgid "Delete will permanently remove the venue"
1887
  msgstr ""
1888
 
1889
+ #: includes/event-organiser-cpt.php:576
1890
  msgid "View will take you to the venue's page"
1891
  msgstr ""
1892
 
1893
+ #: includes/event-organiser-cpt.php:591
1894
  msgid ""
1895
  "This page shows all (occurrances of) events. You can view the summary of an "
1896
  "event by clicking on it. If you have the necessary permissions, a link to "
1897
  "the event's edit page will appear also."
1898
  msgstr ""
1899
 
1900
+ #: includes/event-organiser-cpt.php:592
1901
  msgid ""
1902
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1903
  "mode. You can also filter the events by events by category and venue. The "
1904
  "'go to date' button allows you to quickly jump to a specific date."
1905
  msgstr ""
1906
 
1907
+ #: includes/event-organiser-cpt.php:596
1908
  msgid "Add Event"
1909
  msgstr "เพิ่มกิจกรรม"
1910
 
1911
+ #: includes/event-organiser-cpt.php:597
1912
  msgid ""
1913
  "You can create an event on this Calendar, by clicking on day or dragging "
1914
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1917
  "event is created and you are forwarded to that event's edit page."
1918
  msgstr ""
1919
 
1920
+ #: includes/event-organiser-cpt.php:604
1921
  msgid "For more information"
1922
  msgstr "สำหรับรายละเอียดเพิ่มเติม"
1923
 
1924
+ #: includes/event-organiser-cpt.php:605
1925
  #, php-format
1926
  msgid "See the <a %s> documentation</a>"
1927
  msgstr ""
1928
 
1929
+ #: includes/event-organiser-cpt.php:606
1930
  msgid "Debugging Event Organiser"
1931
  msgstr ""
1932
 
1933
+ #: includes/event-organiser-cpt.php:607
1934
  msgid "Go Pro!"
1935
  msgstr ""
1936
 
1937
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
1938
  msgid "Color"
1939
  msgstr "สี"
1940
 
1941
+ #: includes/event-organiser-cpt.php:723
1942
  msgid "Assign the category a colour."
1943
  msgstr "สั่งงานให้หมวดหมู่แสดงเป็นสี"
1944
 
languages/eventorganiser-tr_TR.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2017-04-16T22:55:14+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1287,22 +1287,22 @@ msgid ""
1287
  "%s."
1288
  msgstr ""
1289
 
1290
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1291
  #, php-format
1292
  msgid "[Lines %1$d-%2$d]"
1293
  msgstr ""
1294
 
1295
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1296
  #, php-format
1297
  msgid "[Line %1$d]"
1298
  msgstr ""
1299
 
1300
- #: includes/class-eo-ical-parser.php:1044
1301
  #, php-format
1302
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1303
  msgstr ""
1304
 
1305
- #: includes/class-eo-ical-parser.php:1082
1306
  #, php-format
1307
  msgid ""
1308
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1880,12 +1880,12 @@ msgstr ""
1880
  "Sadece var olan mekanlar seçilebilir. Bir mekan eklemek için mekanlar "
1881
  "sayfasına gidin."
1882
 
1883
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1884
- #: includes/event-organiser-cpt.php:587
1885
  msgid "Overview"
1886
  msgstr "Önizleme"
1887
 
1888
- #: includes/event-organiser-cpt.php:566
1889
  msgid ""
1890
  "This is the list of all saved events. Note that <strong> recurring events "
1891
  "appear as a single row </strong> in the table and the start and end date "
@@ -1895,7 +1895,7 @@ msgstr ""
1895
  "etkinliklerin tek bir satır halinde göründüğüne </strong> ve başlangıç ile "
1896
  "bitiş tarihinin o etkinliğin ilk tekrarını işaret ettiğine dikkat edin."
1897
 
1898
- #: includes/event-organiser-cpt.php:574
1899
  msgid ""
1900
  "Hovering over a row in the venues list will display action links that allow "
1901
  "you to manage that venue. You can perform the following actions:"
@@ -1903,7 +1903,7 @@ msgstr ""
1903
  "Mekanlar listesindeki bir satır üzerine fareyi getirirseniz, o mekanı "
1904
  "yönetecek aksiyon bağlantıları görünür. Aksiyonlar şunlardır:"
1905
 
1906
- #: includes/event-organiser-cpt.php:576
1907
  msgid ""
1908
  "Edit takes you to the editing screen for that venue. You can also reach that "
1909
  "screen by clicking on the venue title."
@@ -1911,15 +1911,15 @@ msgstr ""
1911
  "Düzenle, sizi o mekanın düzenleme sayfasına götürür. O ekrana mekan "
1912
  "başlığını tıklayarak da ulaşabilirsiniz."
1913
 
1914
- #: includes/event-organiser-cpt.php:577
1915
  msgid "Delete will permanently remove the venue"
1916
  msgstr "Sil, mekanı kalıcı olarak siler"
1917
 
1918
- #: includes/event-organiser-cpt.php:578
1919
  msgid "View will take you to the venue's page"
1920
  msgstr "Görüntüle, sizi mekan sayfasına taşır"
1921
 
1922
- #: includes/event-organiser-cpt.php:588
1923
  msgid ""
1924
  "This page shows all (occurrances of) events. You can view the summary of an "
1925
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -1929,7 +1929,7 @@ msgstr ""
1929
  "özeti için üzerine tıklayabilirsiniz. Aynı zamanda, gerekli izinlere "
1930
  "sahipseniz etkinliğin düzenleme sayfasında bir bağlantı görüntülenir."
1931
 
1932
- #: includes/event-organiser-cpt.php:589
1933
  msgid ""
1934
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1935
  "mode. You can also filter the events by events by category and venue. The "
@@ -1940,11 +1940,11 @@ msgstr ""
1940
  "da filtreleyebilirsiniz. 'Güne gidin' düğmesi sizi hızlıca belrili bir güne "
1941
  "taşır."
1942
 
1943
- #: includes/event-organiser-cpt.php:593
1944
  msgid "Add Event"
1945
  msgstr "Etkinnlik Ekleyin"
1946
 
1947
- #: includes/event-organiser-cpt.php:594
1948
  msgid ""
1949
  "You can create an event on this Calendar, by clicking on day or dragging "
1950
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1959,28 +1959,28 @@ msgstr ""
1959
  "yayınlanabilir ya da taslak olarak kaydedilebilir. Her halde etkinlik "
1960
  "yaratılmış olur ve ileride bu etkinlik sayfasında düzenleme yapabilirsiniz."
1961
 
1962
- #: includes/event-organiser-cpt.php:600
1963
  msgid "For more information"
1964
  msgstr "Daha fazla bilgi için"
1965
 
1966
- #: includes/event-organiser-cpt.php:601
1967
  #, php-format
1968
  msgid "See the <a %s> documentation</a>"
1969
  msgstr "ile ilgili <a %s> dökümana bakın</a>"
1970
 
1971
- #: includes/event-organiser-cpt.php:602
1972
  msgid "Debugging Event Organiser"
1973
  msgstr "Event Organiser'da Hata Ayıklama"
1974
 
1975
- #: includes/event-organiser-cpt.php:603
1976
  msgid "Go Pro!"
1977
  msgstr "Pro'ya Yükseltin!"
1978
 
1979
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
1980
  msgid "Color"
1981
  msgstr "Renk"
1982
 
1983
- #: includes/event-organiser-cpt.php:719
1984
  msgid "Assign the category a colour."
1985
  msgstr "Bir kategori rengi tayin edin"
1986
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2017-04-16T22:55:14+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1287
  "%s."
1288
  msgstr ""
1289
 
1290
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1291
  #, php-format
1292
  msgid "[Lines %1$d-%2$d]"
1293
  msgstr ""
1294
 
1295
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1296
  #, php-format
1297
  msgid "[Line %1$d]"
1298
  msgstr ""
1299
 
1300
+ #: includes/class-eo-ical-parser.php:1066
1301
  #, php-format
1302
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1303
  msgstr ""
1304
 
1305
+ #: includes/class-eo-ical-parser.php:1104
1306
  #, php-format
1307
  msgid ""
1308
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1880
  "Sadece var olan mekanlar seçilebilir. Bir mekan eklemek için mekanlar "
1881
  "sayfasına gidin."
1882
 
1883
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1884
+ #: includes/event-organiser-cpt.php:590
1885
  msgid "Overview"
1886
  msgstr "Önizleme"
1887
 
1888
+ #: includes/event-organiser-cpt.php:565
1889
  msgid ""
1890
  "This is the list of all saved events. Note that <strong> recurring events "
1891
  "appear as a single row </strong> in the table and the start and end date "
1895
  "etkinliklerin tek bir satır halinde göründüğüne </strong> ve başlangıç ile "
1896
  "bitiş tarihinin o etkinliğin ilk tekrarını işaret ettiğine dikkat edin."
1897
 
1898
+ #: includes/event-organiser-cpt.php:572
1899
  msgid ""
1900
  "Hovering over a row in the venues list will display action links that allow "
1901
  "you to manage that venue. You can perform the following actions:"
1903
  "Mekanlar listesindeki bir satır üzerine fareyi getirirseniz, o mekanı "
1904
  "yönetecek aksiyon bağlantıları görünür. Aksiyonlar şunlardır:"
1905
 
1906
+ #: includes/event-organiser-cpt.php:574
1907
  msgid ""
1908
  "Edit takes you to the editing screen for that venue. You can also reach that "
1909
  "screen by clicking on the venue title."
1911
  "Düzenle, sizi o mekanın düzenleme sayfasına götürür. O ekrana mekan "
1912
  "başlığını tıklayarak da ulaşabilirsiniz."
1913
 
1914
+ #: includes/event-organiser-cpt.php:575
1915
  msgid "Delete will permanently remove the venue"
1916
  msgstr "Sil, mekanı kalıcı olarak siler"
1917
 
1918
+ #: includes/event-organiser-cpt.php:576
1919
  msgid "View will take you to the venue's page"
1920
  msgstr "Görüntüle, sizi mekan sayfasına taşır"
1921
 
1922
+ #: includes/event-organiser-cpt.php:591
1923
  msgid ""
1924
  "This page shows all (occurrances of) events. You can view the summary of an "
1925
  "event by clicking on it. If you have the necessary permissions, a link to "
1929
  "özeti için üzerine tıklayabilirsiniz. Aynı zamanda, gerekli izinlere "
1930
  "sahipseniz etkinliğin düzenleme sayfasında bir bağlantı görüntülenir."
1931
 
1932
+ #: includes/event-organiser-cpt.php:592
1933
  msgid ""
1934
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1935
  "mode. You can also filter the events by events by category and venue. The "
1940
  "da filtreleyebilirsiniz. 'Güne gidin' düğmesi sizi hızlıca belrili bir güne "
1941
  "taşır."
1942
 
1943
+ #: includes/event-organiser-cpt.php:596
1944
  msgid "Add Event"
1945
  msgstr "Etkinnlik Ekleyin"
1946
 
1947
+ #: includes/event-organiser-cpt.php:597
1948
  msgid ""
1949
  "You can create an event on this Calendar, by clicking on day or dragging "
1950
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1959
  "yayınlanabilir ya da taslak olarak kaydedilebilir. Her halde etkinlik "
1960
  "yaratılmış olur ve ileride bu etkinlik sayfasında düzenleme yapabilirsiniz."
1961
 
1962
+ #: includes/event-organiser-cpt.php:604
1963
  msgid "For more information"
1964
  msgstr "Daha fazla bilgi için"
1965
 
1966
+ #: includes/event-organiser-cpt.php:605
1967
  #, php-format
1968
  msgid "See the <a %s> documentation</a>"
1969
  msgstr "ile ilgili <a %s> dökümana bakın</a>"
1970
 
1971
+ #: includes/event-organiser-cpt.php:606
1972
  msgid "Debugging Event Organiser"
1973
  msgstr "Event Organiser'da Hata Ayıklama"
1974
 
1975
+ #: includes/event-organiser-cpt.php:607
1976
  msgid "Go Pro!"
1977
  msgstr "Pro'ya Yükseltin!"
1978
 
1979
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
1980
  msgid "Color"
1981
  msgstr "Renk"
1982
 
1983
+ #: includes/event-organiser-cpt.php:723
1984
  msgid "Assign the category a colour."
1985
  msgstr "Bir kategori rengi tayin edin"
1986
 
languages/eventorganiser-uk.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:15:05+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1297,22 +1297,22 @@ msgid ""
1297
  "%s."
1298
  msgstr ""
1299
 
1300
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1301
  #, php-format
1302
  msgid "[Lines %1$d-%2$d]"
1303
  msgstr ""
1304
 
1305
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1306
  #, php-format
1307
  msgid "[Line %1$d]"
1308
  msgstr ""
1309
 
1310
- #: includes/class-eo-ical-parser.php:1044
1311
  #, php-format
1312
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1313
  msgstr ""
1314
 
1315
- #: includes/class-eo-ical-parser.php:1082
1316
  #, php-format
1317
  msgid ""
1318
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1918,12 +1918,12 @@ msgstr ""
1918
  "Можна вказати тільки вже наявне розташування. Щоб додати розташування, "
1919
  "перейдіть на сторінку розташувань."
1920
 
1921
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1922
- #: includes/event-organiser-cpt.php:587
1923
  msgid "Overview"
1924
  msgstr "Огляд"
1925
 
1926
- #: includes/event-organiser-cpt.php:566
1927
  msgid ""
1928
  "This is the list of all saved events. Note that <strong> recurring events "
1929
  "appear as a single row </strong> in the table and the start and end date "
@@ -1933,7 +1933,7 @@ msgstr ""
1933
  "події відображаються одним рядком </strong> у таблиці, а початок та "
1934
  "завершення події відповідають першому повторенню події."
1935
 
1936
- #: includes/event-organiser-cpt.php:574
1937
  msgid ""
1938
  "Hovering over a row in the venues list will display action links that allow "
1939
  "you to manage that venue. You can perform the following actions:"
@@ -1941,7 +1941,7 @@ msgstr ""
1941
  "Навівши курсос на рядок розташування, Ви побачите посилання, за допомогою "
1942
  "яких можна керувати розташуванням. Ви можете виконувати такі дії:"
1943
 
1944
- #: includes/event-organiser-cpt.php:576
1945
  msgid ""
1946
  "Edit takes you to the editing screen for that venue. You can also reach that "
1947
  "screen by clicking on the venue title."
@@ -1949,15 +1949,15 @@ msgstr ""
1949
  "\"Редагувати\" відкриває вікно редагування відповідного розташування. Ви "
1950
  "можете також відкрити це вікно, клацнувши по назві розташування."
1951
 
1952
- #: includes/event-organiser-cpt.php:577
1953
  msgid "Delete will permanently remove the venue"
1954
  msgstr "\"Видалити\" безповоротно видалить розташування"
1955
 
1956
- #: includes/event-organiser-cpt.php:578
1957
  msgid "View will take you to the venue's page"
1958
  msgstr "\"Переглянути\" дасть можливість переглянути сторінку розташування"
1959
 
1960
- #: includes/event-organiser-cpt.php:588
1961
  msgid ""
1962
  "This page shows all (occurrances of) events. You can view the summary of an "
1963
  "event by clicking on it. If you have the necessary permissions, a link to "
@@ -1967,7 +1967,7 @@ msgstr ""
1967
  "основні відомості про подію, клацнувши по ній. Якщо Ви маєте відповідні "
1968
  "права, Ви також побачите посилання на сторінку редагування події."
1969
 
1970
- #: includes/event-organiser-cpt.php:589
1971
  msgid ""
1972
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1973
  "mode. You can also filter the events by events by category and venue. The "
@@ -1978,11 +1978,11 @@ msgstr ""
1978
  "або розташуванням. Кнопка \"перейти до дати\" дає можливість швидко "
1979
  "перестрибнути до певної дати."
1980
 
1981
- #: includes/event-organiser-cpt.php:593
1982
  msgid "Add Event"
1983
  msgstr "Додати подію"
1984
 
1985
- #: includes/event-organiser-cpt.php:594
1986
  msgid ""
1987
  "You can create an event on this Calendar, by clicking on day or dragging "
1988
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1997,28 +1997,28 @@ msgstr ""
1997
  "чернетку. В будь-якому випадку, подію буде створено а Вас буде "
1998
  "перенаправлено на сторінку редагування цієї події."
1999
 
2000
- #: includes/event-organiser-cpt.php:600
2001
  msgid "For more information"
2002
  msgstr "Для отимання детальнішої інформації"
2003
 
2004
- #: includes/event-organiser-cpt.php:601
2005
  #, php-format
2006
  msgid "See the <a %s> documentation</a>"
2007
  msgstr "Перегляньте <a %s> документацію</a>"
2008
 
2009
- #: includes/event-organiser-cpt.php:602
2010
  msgid "Debugging Event Organiser"
2011
  msgstr ""
2012
 
2013
- #: includes/event-organiser-cpt.php:603
2014
  msgid "Go Pro!"
2015
  msgstr ""
2016
 
2017
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
2018
  msgid "Color"
2019
  msgstr "Колір"
2020
 
2021
- #: includes/event-organiser-cpt.php:719
2022
  msgid "Assign the category a colour."
2023
  msgstr "Присвоїти категорії колір."
2024
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:15:05+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1297
  "%s."
1298
  msgstr ""
1299
 
1300
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1301
  #, php-format
1302
  msgid "[Lines %1$d-%2$d]"
1303
  msgstr ""
1304
 
1305
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1306
  #, php-format
1307
  msgid "[Line %1$d]"
1308
  msgstr ""
1309
 
1310
+ #: includes/class-eo-ical-parser.php:1066
1311
  #, php-format
1312
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1313
  msgstr ""
1314
 
1315
+ #: includes/class-eo-ical-parser.php:1104
1316
  #, php-format
1317
  msgid ""
1318
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1918
  "Можна вказати тільки вже наявне розташування. Щоб додати розташування, "
1919
  "перейдіть на сторінку розташувань."
1920
 
1921
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1922
+ #: includes/event-organiser-cpt.php:590
1923
  msgid "Overview"
1924
  msgstr "Огляд"
1925
 
1926
+ #: includes/event-organiser-cpt.php:565
1927
  msgid ""
1928
  "This is the list of all saved events. Note that <strong> recurring events "
1929
  "appear as a single row </strong> in the table and the start and end date "
1933
  "події відображаються одним рядком </strong> у таблиці, а початок та "
1934
  "завершення події відповідають першому повторенню події."
1935
 
1936
+ #: includes/event-organiser-cpt.php:572
1937
  msgid ""
1938
  "Hovering over a row in the venues list will display action links that allow "
1939
  "you to manage that venue. You can perform the following actions:"
1941
  "Навівши курсос на рядок розташування, Ви побачите посилання, за допомогою "
1942
  "яких можна керувати розташуванням. Ви можете виконувати такі дії:"
1943
 
1944
+ #: includes/event-organiser-cpt.php:574
1945
  msgid ""
1946
  "Edit takes you to the editing screen for that venue. You can also reach that "
1947
  "screen by clicking on the venue title."
1949
  "\"Редагувати\" відкриває вікно редагування відповідного розташування. Ви "
1950
  "можете також відкрити це вікно, клацнувши по назві розташування."
1951
 
1952
+ #: includes/event-organiser-cpt.php:575
1953
  msgid "Delete will permanently remove the venue"
1954
  msgstr "\"Видалити\" безповоротно видалить розташування"
1955
 
1956
+ #: includes/event-organiser-cpt.php:576
1957
  msgid "View will take you to the venue's page"
1958
  msgstr "\"Переглянути\" дасть можливість переглянути сторінку розташування"
1959
 
1960
+ #: includes/event-organiser-cpt.php:591
1961
  msgid ""
1962
  "This page shows all (occurrances of) events. You can view the summary of an "
1963
  "event by clicking on it. If you have the necessary permissions, a link to "
1967
  "основні відомості про подію, клацнувши по ній. Якщо Ви маєте відповідні "
1968
  "права, Ви також побачите посилання на сторінку редагування події."
1969
 
1970
+ #: includes/event-organiser-cpt.php:592
1971
  msgid ""
1972
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1973
  "mode. You can also filter the events by events by category and venue. The "
1978
  "або розташуванням. Кнопка \"перейти до дати\" дає можливість швидко "
1979
  "перестрибнути до певної дати."
1980
 
1981
+ #: includes/event-organiser-cpt.php:596
1982
  msgid "Add Event"
1983
  msgstr "Додати подію"
1984
 
1985
+ #: includes/event-organiser-cpt.php:597
1986
  msgid ""
1987
  "You can create an event on this Calendar, by clicking on day or dragging "
1988
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1997
  "чернетку. В будь-якому випадку, подію буде створено а Вас буде "
1998
  "перенаправлено на сторінку редагування цієї події."
1999
 
2000
+ #: includes/event-organiser-cpt.php:604
2001
  msgid "For more information"
2002
  msgstr "Для отимання детальнішої інформації"
2003
 
2004
+ #: includes/event-organiser-cpt.php:605
2005
  #, php-format
2006
  msgid "See the <a %s> documentation</a>"
2007
  msgstr "Перегляньте <a %s> документацію</a>"
2008
 
2009
+ #: includes/event-organiser-cpt.php:606
2010
  msgid "Debugging Event Organiser"
2011
  msgstr ""
2012
 
2013
+ #: includes/event-organiser-cpt.php:607
2014
  msgid "Go Pro!"
2015
  msgstr ""
2016
 
2017
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
2018
  msgid "Color"
2019
  msgstr "Колір"
2020
 
2021
+ #: includes/event-organiser-cpt.php:723
2022
  msgid "Assign the category a colour."
2023
  msgstr "Присвоїти категорії колір."
2024
 
languages/eventorganiser-zh_CN.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:15:02+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1268,22 +1268,22 @@ msgid ""
1268
  "%s."
1269
  msgstr ""
1270
 
1271
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1272
  #, php-format
1273
  msgid "[Lines %1$d-%2$d]"
1274
  msgstr ""
1275
 
1276
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1277
  #, php-format
1278
  msgid "[Line %1$d]"
1279
  msgstr ""
1280
 
1281
- #: includes/class-eo-ical-parser.php:1044
1282
  #, php-format
1283
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1284
  msgstr ""
1285
 
1286
- #: includes/class-eo-ical-parser.php:1082
1287
  #, php-format
1288
  msgid ""
1289
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1859,57 +1859,57 @@ msgid ""
1859
  "page."
1860
  msgstr "只能选择已存在的地点,转到地点页面"
1861
 
1862
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1863
- #: includes/event-organiser-cpt.php:587
1864
  msgid "Overview"
1865
  msgstr "概况"
1866
 
1867
- #: includes/event-organiser-cpt.php:566
1868
  msgid ""
1869
  "This is the list of all saved events. Note that <strong> recurring events "
1870
  "appear as a single row </strong> in the table and the start and end date "
1871
  "refers to the first occurrence of that event."
1872
  msgstr ""
1873
 
1874
- #: includes/event-organiser-cpt.php:574
1875
  msgid ""
1876
  "Hovering over a row in the venues list will display action links that allow "
1877
  "you to manage that venue. You can perform the following actions:"
1878
  msgstr ""
1879
 
1880
- #: includes/event-organiser-cpt.php:576
1881
  msgid ""
1882
  "Edit takes you to the editing screen for that venue. You can also reach that "
1883
  "screen by clicking on the venue title."
1884
  msgstr ""
1885
 
1886
- #: includes/event-organiser-cpt.php:577
1887
  msgid "Delete will permanently remove the venue"
1888
  msgstr ""
1889
 
1890
- #: includes/event-organiser-cpt.php:578
1891
  msgid "View will take you to the venue's page"
1892
  msgstr ""
1893
 
1894
- #: includes/event-organiser-cpt.php:588
1895
  msgid ""
1896
  "This page shows all (occurrances of) events. You can view the summary of an "
1897
  "event by clicking on it. If you have the necessary permissions, a link to "
1898
  "the event's edit page will appear also."
1899
  msgstr ""
1900
 
1901
- #: includes/event-organiser-cpt.php:589
1902
  msgid ""
1903
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1904
  "mode. You can also filter the events by events by category and venue. The "
1905
  "'go to date' button allows you to quickly jump to a specific date."
1906
  msgstr ""
1907
 
1908
- #: includes/event-organiser-cpt.php:593
1909
  msgid "Add Event"
1910
  msgstr "添加活动"
1911
 
1912
- #: includes/event-organiser-cpt.php:594
1913
  msgid ""
1914
  "You can create an event on this Calendar, by clicking on day or dragging "
1915
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1918,28 +1918,28 @@ msgid ""
1918
  "event is created and you are forwarded to that event's edit page."
1919
  msgstr ""
1920
 
1921
- #: includes/event-organiser-cpt.php:600
1922
  msgid "For more information"
1923
  msgstr "更多信息"
1924
 
1925
- #: includes/event-organiser-cpt.php:601
1926
  #, php-format
1927
  msgid "See the <a %s> documentation</a>"
1928
  msgstr "参见 <a %s> 文档</a>"
1929
 
1930
- #: includes/event-organiser-cpt.php:602
1931
  msgid "Debugging Event Organiser"
1932
  msgstr ""
1933
 
1934
- #: includes/event-organiser-cpt.php:603
1935
  msgid "Go Pro!"
1936
  msgstr ""
1937
 
1938
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
1939
  msgid "Color"
1940
  msgstr "颜色"
1941
 
1942
- #: includes/event-organiser-cpt.php:719
1943
  msgid "Assign the category a colour."
1944
  msgstr "为分类指定颜色"
1945
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:15:02+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1268
  "%s."
1269
  msgstr ""
1270
 
1271
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1272
  #, php-format
1273
  msgid "[Lines %1$d-%2$d]"
1274
  msgstr ""
1275
 
1276
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1277
  #, php-format
1278
  msgid "[Line %1$d]"
1279
  msgstr ""
1280
 
1281
+ #: includes/class-eo-ical-parser.php:1066
1282
  #, php-format
1283
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1284
  msgstr ""
1285
 
1286
+ #: includes/class-eo-ical-parser.php:1104
1287
  #, php-format
1288
  msgid ""
1289
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1859
  "page."
1860
  msgstr "只能选择已存在的地点,转到地点页面"
1861
 
1862
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1863
+ #: includes/event-organiser-cpt.php:590
1864
  msgid "Overview"
1865
  msgstr "概况"
1866
 
1867
+ #: includes/event-organiser-cpt.php:565
1868
  msgid ""
1869
  "This is the list of all saved events. Note that <strong> recurring events "
1870
  "appear as a single row </strong> in the table and the start and end date "
1871
  "refers to the first occurrence of that event."
1872
  msgstr ""
1873
 
1874
+ #: includes/event-organiser-cpt.php:572
1875
  msgid ""
1876
  "Hovering over a row in the venues list will display action links that allow "
1877
  "you to manage that venue. You can perform the following actions:"
1878
  msgstr ""
1879
 
1880
+ #: includes/event-organiser-cpt.php:574
1881
  msgid ""
1882
  "Edit takes you to the editing screen for that venue. You can also reach that "
1883
  "screen by clicking on the venue title."
1884
  msgstr ""
1885
 
1886
+ #: includes/event-organiser-cpt.php:575
1887
  msgid "Delete will permanently remove the venue"
1888
  msgstr ""
1889
 
1890
+ #: includes/event-organiser-cpt.php:576
1891
  msgid "View will take you to the venue's page"
1892
  msgstr ""
1893
 
1894
+ #: includes/event-organiser-cpt.php:591
1895
  msgid ""
1896
  "This page shows all (occurrances of) events. You can view the summary of an "
1897
  "event by clicking on it. If you have the necessary permissions, a link to "
1898
  "the event's edit page will appear also."
1899
  msgstr ""
1900
 
1901
+ #: includes/event-organiser-cpt.php:592
1902
  msgid ""
1903
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1904
  "mode. You can also filter the events by events by category and venue. The "
1905
  "'go to date' button allows you to quickly jump to a specific date."
1906
  msgstr ""
1907
 
1908
+ #: includes/event-organiser-cpt.php:596
1909
  msgid "Add Event"
1910
  msgstr "添加活动"
1911
 
1912
+ #: includes/event-organiser-cpt.php:597
1913
  msgid ""
1914
  "You can create an event on this Calendar, by clicking on day or dragging "
1915
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1918
  "event is created and you are forwarded to that event's edit page."
1919
  msgstr ""
1920
 
1921
+ #: includes/event-organiser-cpt.php:604
1922
  msgid "For more information"
1923
  msgstr "更多信息"
1924
 
1925
+ #: includes/event-organiser-cpt.php:605
1926
  #, php-format
1927
  msgid "See the <a %s> documentation</a>"
1928
  msgstr "参见 <a %s> 文档</a>"
1929
 
1930
+ #: includes/event-organiser-cpt.php:606
1931
  msgid "Debugging Event Organiser"
1932
  msgstr ""
1933
 
1934
+ #: includes/event-organiser-cpt.php:607
1935
  msgid "Go Pro!"
1936
  msgstr ""
1937
 
1938
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
1939
  msgid "Color"
1940
  msgstr "颜色"
1941
 
1942
+ #: includes/event-organiser-cpt.php:723
1943
  msgid "Assign the category a colour."
1944
  msgstr "为分类指定颜色"
1945
 
languages/eventorganiser-zh_HK.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:14:57+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1268,22 +1268,22 @@ msgid ""
1268
  "%s."
1269
  msgstr ""
1270
 
1271
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1272
  #, php-format
1273
  msgid "[Lines %1$d-%2$d]"
1274
  msgstr ""
1275
 
1276
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1277
  #, php-format
1278
  msgid "[Line %1$d]"
1279
  msgstr ""
1280
 
1281
- #: includes/class-eo-ical-parser.php:1044
1282
  #, php-format
1283
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1284
  msgstr ""
1285
 
1286
- #: includes/class-eo-ical-parser.php:1082
1287
  #, php-format
1288
  msgid ""
1289
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1859,57 +1859,57 @@ msgid ""
1859
  "page."
1860
  msgstr ""
1861
 
1862
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1863
- #: includes/event-organiser-cpt.php:587
1864
  msgid "Overview"
1865
  msgstr "總覧"
1866
 
1867
- #: includes/event-organiser-cpt.php:566
1868
  msgid ""
1869
  "This is the list of all saved events. Note that <strong> recurring events "
1870
  "appear as a single row </strong> in the table and the start and end date "
1871
  "refers to the first occurrence of that event."
1872
  msgstr ""
1873
 
1874
- #: includes/event-organiser-cpt.php:574
1875
  msgid ""
1876
  "Hovering over a row in the venues list will display action links that allow "
1877
  "you to manage that venue. You can perform the following actions:"
1878
  msgstr ""
1879
 
1880
- #: includes/event-organiser-cpt.php:576
1881
  msgid ""
1882
  "Edit takes you to the editing screen for that venue. You can also reach that "
1883
  "screen by clicking on the venue title."
1884
  msgstr ""
1885
 
1886
- #: includes/event-organiser-cpt.php:577
1887
  msgid "Delete will permanently remove the venue"
1888
  msgstr ""
1889
 
1890
- #: includes/event-organiser-cpt.php:578
1891
  msgid "View will take you to the venue's page"
1892
  msgstr ""
1893
 
1894
- #: includes/event-organiser-cpt.php:588
1895
  msgid ""
1896
  "This page shows all (occurrances of) events. You can view the summary of an "
1897
  "event by clicking on it. If you have the necessary permissions, a link to "
1898
  "the event's edit page will appear also."
1899
  msgstr ""
1900
 
1901
- #: includes/event-organiser-cpt.php:589
1902
  msgid ""
1903
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1904
  "mode. You can also filter the events by events by category and venue. The "
1905
  "'go to date' button allows you to quickly jump to a specific date."
1906
  msgstr ""
1907
 
1908
- #: includes/event-organiser-cpt.php:593
1909
  msgid "Add Event"
1910
  msgstr ""
1911
 
1912
- #: includes/event-organiser-cpt.php:594
1913
  msgid ""
1914
  "You can create an event on this Calendar, by clicking on day or dragging "
1915
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1918,28 +1918,28 @@ msgid ""
1918
  "event is created and you are forwarded to that event's edit page."
1919
  msgstr ""
1920
 
1921
- #: includes/event-organiser-cpt.php:600
1922
  msgid "For more information"
1923
  msgstr ""
1924
 
1925
- #: includes/event-organiser-cpt.php:601
1926
  #, php-format
1927
  msgid "See the <a %s> documentation</a>"
1928
  msgstr ""
1929
 
1930
- #: includes/event-organiser-cpt.php:602
1931
  msgid "Debugging Event Organiser"
1932
  msgstr ""
1933
 
1934
- #: includes/event-organiser-cpt.php:603
1935
  msgid "Go Pro!"
1936
  msgstr ""
1937
 
1938
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
1939
  msgid "Color"
1940
  msgstr ""
1941
 
1942
- #: includes/event-organiser-cpt.php:719
1943
  msgid "Assign the category a colour."
1944
  msgstr ""
1945
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:14:57+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1268
  "%s."
1269
  msgstr ""
1270
 
1271
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1272
  #, php-format
1273
  msgid "[Lines %1$d-%2$d]"
1274
  msgstr ""
1275
 
1276
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1277
  #, php-format
1278
  msgid "[Line %1$d]"
1279
  msgstr ""
1280
 
1281
+ #: includes/class-eo-ical-parser.php:1066
1282
  #, php-format
1283
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1284
  msgstr ""
1285
 
1286
+ #: includes/class-eo-ical-parser.php:1104
1287
  #, php-format
1288
  msgid ""
1289
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1859
  "page."
1860
  msgstr ""
1861
 
1862
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1863
+ #: includes/event-organiser-cpt.php:590
1864
  msgid "Overview"
1865
  msgstr "總覧"
1866
 
1867
+ #: includes/event-organiser-cpt.php:565
1868
  msgid ""
1869
  "This is the list of all saved events. Note that <strong> recurring events "
1870
  "appear as a single row </strong> in the table and the start and end date "
1871
  "refers to the first occurrence of that event."
1872
  msgstr ""
1873
 
1874
+ #: includes/event-organiser-cpt.php:572
1875
  msgid ""
1876
  "Hovering over a row in the venues list will display action links that allow "
1877
  "you to manage that venue. You can perform the following actions:"
1878
  msgstr ""
1879
 
1880
+ #: includes/event-organiser-cpt.php:574
1881
  msgid ""
1882
  "Edit takes you to the editing screen for that venue. You can also reach that "
1883
  "screen by clicking on the venue title."
1884
  msgstr ""
1885
 
1886
+ #: includes/event-organiser-cpt.php:575
1887
  msgid "Delete will permanently remove the venue"
1888
  msgstr ""
1889
 
1890
+ #: includes/event-organiser-cpt.php:576
1891
  msgid "View will take you to the venue's page"
1892
  msgstr ""
1893
 
1894
+ #: includes/event-organiser-cpt.php:591
1895
  msgid ""
1896
  "This page shows all (occurrances of) events. You can view the summary of an "
1897
  "event by clicking on it. If you have the necessary permissions, a link to "
1898
  "the event's edit page will appear also."
1899
  msgstr ""
1900
 
1901
+ #: includes/event-organiser-cpt.php:592
1902
  msgid ""
1903
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1904
  "mode. You can also filter the events by events by category and venue. The "
1905
  "'go to date' button allows you to quickly jump to a specific date."
1906
  msgstr ""
1907
 
1908
+ #: includes/event-organiser-cpt.php:596
1909
  msgid "Add Event"
1910
  msgstr ""
1911
 
1912
+ #: includes/event-organiser-cpt.php:597
1913
  msgid ""
1914
  "You can create an event on this Calendar, by clicking on day or dragging "
1915
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1918
  "event is created and you are forwarded to that event's edit page."
1919
  msgstr ""
1920
 
1921
+ #: includes/event-organiser-cpt.php:604
1922
  msgid "For more information"
1923
  msgstr ""
1924
 
1925
+ #: includes/event-organiser-cpt.php:605
1926
  #, php-format
1927
  msgid "See the <a %s> documentation</a>"
1928
  msgstr ""
1929
 
1930
+ #: includes/event-organiser-cpt.php:606
1931
  msgid "Debugging Event Organiser"
1932
  msgstr ""
1933
 
1934
+ #: includes/event-organiser-cpt.php:607
1935
  msgid "Go Pro!"
1936
  msgstr ""
1937
 
1938
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
1939
  msgid "Color"
1940
  msgstr ""
1941
 
1942
+ #: includes/event-organiser-cpt.php:723
1943
  msgid "Assign the category a colour."
1944
  msgstr ""
1945
 
languages/eventorganiser.pot CHANGED
@@ -8,7 +8,7 @@ msgid ""
8
  msgstr ""
9
  "Project-Id-Version: event-organiser\n"
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2020-05-28 21:36+0000\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -1272,22 +1272,22 @@ msgid ""
1272
  "%s."
1273
  msgstr ""
1274
 
1275
- #: includes/class-eo-ical-parser.php:554 includes/class-eo-ical-parser.php:579
1276
  #, php-format
1277
  msgid "[Lines %1$d-%2$d]"
1278
  msgstr ""
1279
 
1280
- #: includes/class-eo-ical-parser.php:561 includes/class-eo-ical-parser.php:586
1281
  #, php-format
1282
  msgid "[Line %1$d]"
1283
  msgstr ""
1284
 
1285
- #: includes/class-eo-ical-parser.php:1044
1286
  #, php-format
1287
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1288
  msgstr ""
1289
 
1290
- #: includes/class-eo-ical-parser.php:1082
1291
  #, php-format
1292
  msgid ""
1293
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
@@ -1862,57 +1862,57 @@ msgid ""
1862
  "page."
1863
  msgstr ""
1864
 
1865
- #: includes/event-organiser-cpt.php:565 includes/event-organiser-cpt.php:573
1866
- #: includes/event-organiser-cpt.php:587
1867
  msgid "Overview"
1868
  msgstr ""
1869
 
1870
- #: includes/event-organiser-cpt.php:566
1871
  msgid ""
1872
  "This is the list of all saved events. Note that <strong> recurring events "
1873
  "appear as a single row </strong> in the table and the start and end date "
1874
  "refers to the first occurrence of that event."
1875
  msgstr ""
1876
 
1877
- #: includes/event-organiser-cpt.php:574
1878
  msgid ""
1879
  "Hovering over a row in the venues list will display action links that allow "
1880
  "you to manage that venue. You can perform the following actions:"
1881
  msgstr ""
1882
 
1883
- #: includes/event-organiser-cpt.php:576
1884
  msgid ""
1885
  "Edit takes you to the editing screen for that venue. You can also reach that "
1886
  "screen by clicking on the venue title."
1887
  msgstr ""
1888
 
1889
- #: includes/event-organiser-cpt.php:577
1890
  msgid "Delete will permanently remove the venue"
1891
  msgstr ""
1892
 
1893
- #: includes/event-organiser-cpt.php:578
1894
  msgid "View will take you to the venue's page"
1895
  msgstr ""
1896
 
1897
- #: includes/event-organiser-cpt.php:588
1898
  msgid ""
1899
  "This page shows all (occurrances of) events. You can view the summary of an "
1900
  "event by clicking on it. If you have the necessary permissions, a link to "
1901
  "the event's edit page will appear also."
1902
  msgstr ""
1903
 
1904
- #: includes/event-organiser-cpt.php:589
1905
  msgid ""
1906
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1907
  "mode. You can also filter the events by events by category and venue. The "
1908
  "'go to date' button allows you to quickly jump to a specific date."
1909
  msgstr ""
1910
 
1911
- #: includes/event-organiser-cpt.php:593
1912
  msgid "Add Event"
1913
  msgstr ""
1914
 
1915
- #: includes/event-organiser-cpt.php:594
1916
  msgid ""
1917
  "You can create an event on this Calendar, by clicking on day or dragging "
1918
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
@@ -1921,28 +1921,28 @@ msgid ""
1921
  "event is created and you are forwarded to that event's edit page."
1922
  msgstr ""
1923
 
1924
- #: includes/event-organiser-cpt.php:600
1925
  msgid "For more information"
1926
  msgstr ""
1927
 
1928
- #: includes/event-organiser-cpt.php:601
1929
  #, php-format
1930
  msgid "See the <a %s> documentation</a>"
1931
  msgstr ""
1932
 
1933
- #: includes/event-organiser-cpt.php:602
1934
  msgid "Debugging Event Organiser"
1935
  msgstr ""
1936
 
1937
- #: includes/event-organiser-cpt.php:603
1938
  msgid "Go Pro!"
1939
  msgstr ""
1940
 
1941
- #: includes/event-organiser-cpt.php:713 includes/event-organiser-cpt.php:736
1942
  msgid "Color"
1943
  msgstr ""
1944
 
1945
- #: includes/event-organiser-cpt.php:719
1946
  msgid "Assign the category a colour."
1947
  msgstr ""
1948
 
8
  msgstr ""
9
  "Project-Id-Version: event-organiser\n"
10
  "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2020-07-22 08:00+0000\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
1272
  "%s."
1273
  msgstr ""
1274
 
1275
+ #: includes/class-eo-ical-parser.php:560 includes/class-eo-ical-parser.php:585
1276
  #, php-format
1277
  msgid "[Lines %1$d-%2$d]"
1278
  msgstr ""
1279
 
1280
+ #: includes/class-eo-ical-parser.php:567 includes/class-eo-ical-parser.php:592
1281
  #, php-format
1282
  msgid "[Line %1$d]"
1283
  msgstr ""
1284
 
1285
+ #: includes/class-eo-ical-parser.php:1066
1286
  #, php-format
1287
  msgid "Invalid date \"%s\". Date expected in YYYYMMDD format."
1288
  msgstr ""
1289
 
1290
+ #: includes/class-eo-ical-parser.php:1104
1291
  #, php-format
1292
  msgid ""
1293
  "Invalid datetime \"%s\". Date expected in YYYYMMDDTHHiissZ or "
1862
  "page."
1863
  msgstr ""
1864
 
1865
+ #: includes/event-organiser-cpt.php:564 includes/event-organiser-cpt.php:581
1866
+ #: includes/event-organiser-cpt.php:590
1867
  msgid "Overview"
1868
  msgstr ""
1869
 
1870
+ #: includes/event-organiser-cpt.php:565
1871
  msgid ""
1872
  "This is the list of all saved events. Note that <strong> recurring events "
1873
  "appear as a single row </strong> in the table and the start and end date "
1874
  "refers to the first occurrence of that event."
1875
  msgstr ""
1876
 
1877
+ #: includes/event-organiser-cpt.php:572
1878
  msgid ""
1879
  "Hovering over a row in the venues list will display action links that allow "
1880
  "you to manage that venue. You can perform the following actions:"
1881
  msgstr ""
1882
 
1883
+ #: includes/event-organiser-cpt.php:574
1884
  msgid ""
1885
  "Edit takes you to the editing screen for that venue. You can also reach that "
1886
  "screen by clicking on the venue title."
1887
  msgstr ""
1888
 
1889
+ #: includes/event-organiser-cpt.php:575
1890
  msgid "Delete will permanently remove the venue"
1891
  msgstr ""
1892
 
1893
+ #: includes/event-organiser-cpt.php:576
1894
  msgid "View will take you to the venue's page"
1895
  msgstr ""
1896
 
1897
+ #: includes/event-organiser-cpt.php:591
1898
  msgid ""
1899
  "This page shows all (occurrances of) events. You can view the summary of an "
1900
  "event by clicking on it. If you have the necessary permissions, a link to "
1901
  "the event's edit page will appear also."
1902
  msgstr ""
1903
 
1904
+ #: includes/event-organiser-cpt.php:592
1905
  msgid ""
1906
  "By clicking the relevant tab, you can view events in Month, Week or Day "
1907
  "mode. You can also filter the events by events by category and venue. The "
1908
  "'go to date' button allows you to quickly jump to a specific date."
1909
  msgstr ""
1910
 
1911
+ #: includes/event-organiser-cpt.php:596
1912
  msgid "Add Event"
1913
  msgstr ""
1914
 
1915
+ #: includes/event-organiser-cpt.php:597
1916
  msgid ""
1917
  "You can create an event on this Calendar, by clicking on day or dragging "
1918
  "over multiple days (in Month view) or multiple times (in Week and Day view). "
1921
  "event is created and you are forwarded to that event's edit page."
1922
  msgstr ""
1923
 
1924
+ #: includes/event-organiser-cpt.php:604
1925
  msgid "For more information"
1926
  msgstr ""
1927
 
1928
+ #: includes/event-organiser-cpt.php:605
1929
  #, php-format
1930
  msgid "See the <a %s> documentation</a>"
1931
  msgstr ""
1932
 
1933
+ #: includes/event-organiser-cpt.php:606
1934
  msgid "Debugging Event Organiser"
1935
  msgstr ""
1936
 
1937
+ #: includes/event-organiser-cpt.php:607
1938
  msgid "Go Pro!"
1939
  msgstr ""
1940
 
1941
+ #: includes/event-organiser-cpt.php:717 includes/event-organiser-cpt.php:740
1942
  msgid "Color"
1943
  msgstr ""
1944
 
1945
+ #: includes/event-organiser-cpt.php:723
1946
  msgid "Assign the category a colour."
1947
  msgstr ""
1948
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: stephenharris
3
  Donate link: http://www.wp-event-organiser.com/donate
4
  Tags: events, event, event categories, event organizer, events calendar, event management, ical, locations, google map, OpenStreetMap, widget, venues, maps, gigs, shows,
5
  Requires at least: 3.8.0
6
- Tested up to: 5.3.1
7
- Stable tag: 3.9.1
8
  License: GPLv3
9
 
10
  Create and maintain events, including complex reoccurring patterns, venue management (with Google Maps or OpenStreetMap), calendars and customisable event lists
@@ -222,6 +222,11 @@ More information on shortcodes is [available here](http://wp-event-organiser.com
222
 
223
  == Changelog ==
224
 
 
 
 
 
 
225
  = 3.9.1 - 28th May 2020 =
226
  * bugfix: Fixed bug where venue can't be changed if maps are disabled
227
  * feature: Added additonal methods to the maps adapter API
3
  Donate link: http://www.wp-event-organiser.com/donate
4
  Tags: events, event, event categories, event organizer, events calendar, event management, ical, locations, google map, OpenStreetMap, widget, venues, maps, gigs, shows,
5
  Requires at least: 3.8.0
6
+ Tested up to: 5.4.2
7
+ Stable tag: 3.10.0
8
  License: GPLv3
9
 
10
  Create and maintain events, including complex reoccurring patterns, venue management (with Google Maps or OpenStreetMap), calendars and customisable event lists
222
 
223
  == Changelog ==
224
 
225
+ = 3.10.0 - 22nd July 202 =
226
+ * feature: Extended support for RECURRENCE-ID in iCal calendards
227
+ * bugfix: Ensure translated screen help text is escaped
228
+ * bugfix: Replace instances of curly braces for array access (deprecated PHP 7).
229
+
230
  = 3.9.1 - 28th May 2020 =
231
  * bugfix: Fixed bug where venue can't be changed if maps are disabled
232
  * feature: Added additonal methods to the maps adapter API