Event Organiser - Version 3.11.0

Version Description

  • 10th March 2022 =
  • bugfix: Add support for PHP 8+
Download this release

Release Info

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

Code changes from version 3.10.8 to 3.11.0

Files changed (64) hide show
  1. event-organiser.php +2 -2
  2. includes/deprecated.php +1 -1
  3. includes/event-organiser-archives.php +2 -2
  4. includes/event-organiser-cpt.php +3 -3
  5. includes/event-organiser-event-functions.php +12 -6
  6. includes/event-organiser-utility-functions.php +1 -1
  7. includes/event-organiser-venue-functions.php +1 -1
  8. includes/event.php +12 -7
  9. js/admin-calendar.min.js +1 -1
  10. js/edit-event-controller.min.js +1 -1
  11. js/event-manager.min.js +1 -1
  12. js/event.min.js +1 -1
  13. js/frontend.min.js +1 -1
  14. js/fullcalendar.min.js +1 -1
  15. js/jquery-ui-eo-timepicker.min.js +1 -1
  16. js/moment.min.js +1 -1
  17. js/time-picker.min.js +1 -1
  18. js/venue-admin.min.js +1 -1
  19. js/venue-util.min.js +1 -1
  20. languages/eventorganiser-af.po +23 -23
  21. languages/eventorganiser-ar.po +23 -23
  22. languages/eventorganiser-bg_BG.po +23 -23
  23. languages/eventorganiser-ca.po +23 -23
  24. languages/eventorganiser-cs_CZ.po +23 -23
  25. languages/eventorganiser-da_DK.po +23 -23
  26. languages/eventorganiser-de_DE.po +23 -23
  27. languages/eventorganiser-el.po +23 -23
  28. languages/eventorganiser-en_CA.po +23 -23
  29. languages/eventorganiser-en_GB.po +23 -23
  30. languages/eventorganiser-es_ES.po +23 -23
  31. languages/eventorganiser-es_PE.po +23 -23
  32. languages/eventorganiser-et.po +23 -23
  33. languages/eventorganiser-fa_IR.po +23 -23
  34. languages/eventorganiser-fi.po +23 -23
  35. languages/eventorganiser-fr_FR.po +23 -23
  36. languages/eventorganiser-he_IL.po +23 -23
  37. languages/eventorganiser-hi_IN.po +23 -23
  38. languages/eventorganiser-hr.po +23 -23
  39. languages/eventorganiser-hu_HU.po +23 -23
  40. languages/eventorganiser-id_ID.po +23 -23
  41. languages/eventorganiser-is_IS.po +23 -23
  42. languages/eventorganiser-it_IT.po +23 -23
  43. languages/eventorganiser-ja.po +23 -23
  44. languages/eventorganiser-lt_LT.po +23 -23
  45. languages/eventorganiser-lv.po +23 -23
  46. languages/eventorganiser-mk_MK.po +23 -23
  47. languages/eventorganiser-nb_NO.po +23 -23
  48. languages/eventorganiser-nl_NL.po +23 -23
  49. languages/eventorganiser-nn_NO.po +23 -23
  50. languages/eventorganiser-pl_PL.po +23 -23
  51. languages/eventorganiser-pt_BR.po +23 -23
  52. languages/eventorganiser-pt_PT.po +23 -23
  53. languages/eventorganiser-ro_RO.po +23 -23
  54. languages/eventorganiser-ru_RU.po +23 -23
  55. languages/eventorganiser-sk_SK.po +23 -23
  56. languages/eventorganiser-sl_SI.po +23 -23
  57. languages/eventorganiser-sv_SE.po +23 -23
  58. languages/eventorganiser-th.po +23 -23
  59. languages/eventorganiser-tr_TR.po +23 -23
  60. languages/eventorganiser-uk.po +23 -23
  61. languages/eventorganiser-zh_CN.po +23 -23
  62. languages/eventorganiser-zh_HK.po +23 -23
  63. languages/eventorganiser.pot +23 -23
  64. readme.txt +6 -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.10.8
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.10.8' );
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.11.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.11.0' );
42
 
43
  add_action( 'after_setup_theme', '_eventorganiser_set_constants' );
44
  function _eventorganiser_set_constants() {
includes/deprecated.php CHANGED
@@ -357,7 +357,7 @@ function _eventorganiser_check_datetime( $datetime_string = '', $format = null )
357
  return false;
358
  }
359
 
360
- $datetime = new DateTime( null, eo_get_blog_timezone() );
361
  $datetime->setDate( $year, $month, $day );
362
  $datetime->setTime( $hour, $minute );
363
  return $datetime;
357
  return false;
358
  }
359
 
360
+ $datetime = new DateTime( "now", eo_get_blog_timezone() );
361
  $datetime->setDate( $year, $month, $day );
362
  $datetime->setTime( $hour, $minute );
363
  return $datetime;
includes/event-organiser-archives.php CHANGED
@@ -98,7 +98,7 @@ function eventorganiser_pre_get_posts( $query ) {
98
  }
99
  }
100
 
101
- $blog_now = new DateTime(null, eo_get_blog_timezone());
102
 
103
  //Determine whether or not to show past events and each occurrence. //If not set, use options
104
  //@see https://core.trac.wordpress.org/ticket/16471
@@ -620,7 +620,7 @@ function _eventorganiser_update_event_dates_cache( $events, $query ){
620
  foreach ( $events as $event ) {
621
 
622
  $id = $event->ID;
623
- $cached_event = wp_cache_get( 'eventorganiser_occurrences_'.$id );
624
 
625
  if ( isset( $cached_event[$event->occurrence_id] ) ) {
626
  continue;
98
  }
99
  }
100
 
101
+ $blog_now = new DateTime("now", eo_get_blog_timezone());
102
 
103
  //Determine whether or not to show past events and each occurrence. //If not set, use options
104
  //@see https://core.trac.wordpress.org/ticket/16471
620
  foreach ( $events as $event ) {
621
 
622
  $id = $event->ID;
623
+ $cached_event = (array) wp_cache_get( 'eventorganiser_occurrences_'.$id );
624
 
625
  if ( isset( $cached_event[$event->occurrence_id] ) ) {
626
  continue;
includes/event-organiser-cpt.php CHANGED
@@ -370,12 +370,12 @@ function eventorganiser_event_meta_cap( $caps, $cap, $user_id, $args ) {
370
  /* If editing, deleting, or reading a event, get the post and post type object. */
371
  if ( 'edit_event' == $cap || 'delete_event' == $cap || 'read_event' == $cap ) {
372
  $post = get_post( $args[0] );
373
- $post_type = get_post_type_object( $post->post_type );
374
-
375
  /* Set an empty array for the caps. */
376
  $caps = array();
377
- if($post->post_type!='event')
378
  return $caps;
 
 
379
  }
380
 
381
  /* If editing a event, assign the required capability. */
370
  /* If editing, deleting, or reading a event, get the post and post type object. */
371
  if ( 'edit_event' == $cap || 'delete_event' == $cap || 'read_event' == $cap ) {
372
  $post = get_post( $args[0] );
 
 
373
  /* Set an empty array for the caps. */
374
  $caps = array();
375
+ if ( $post->post_type != 'event' ) {
376
  return $caps;
377
+ }
378
+ $post_type = get_post_type_object( $post->post_type );
379
  }
380
 
381
  /* If editing a event, assign the required capability. */
includes/event-organiser-event-functions.php CHANGED
@@ -272,7 +272,7 @@ function eo_get_the_occurrence( $event_id, $occurrence_id ) {
272
 
273
  global $wpdb;
274
 
275
- $occurrences = wp_cache_get( 'eventorganiser_occurrences_'.$event_id );
276
 
277
  if ( ! isset ( $occurrences[$occurrence_id] ) ) {
278
 
@@ -310,8 +310,12 @@ function eo_get_the_occurrence( $event_id, $occurrence_id ) {
310
  * @param int $occurrence_id The occurrence ID
311
  * @return string the start date formated to given format, as accepted by PHP date
312
  */
313
- function eo_get_the_occurrence_start($format='d-m-Y',$occurrence_id){
314
  global $wpdb;
 
 
 
 
315
 
316
  $querystr = $wpdb->prepare("
317
  SELECT StartDate,StartTime FROM {$wpdb->eo_events}
@@ -320,13 +324,15 @@ function eo_get_the_occurrence_start($format='d-m-Y',$occurrence_id){
320
 
321
  $occurrence = $wpdb->get_row($querystr);
322
 
323
- if( !$occurrence )
324
  return false;
 
325
 
326
  $date = trim($occurrence->StartDate).' '.trim($occurrence->StartTime);
327
 
328
- if(empty($date)||$date==" ")
329
  return false;
 
330
 
331
  return eo_format_date($date,$format);
332
  }
@@ -514,7 +520,7 @@ function eo_get_next_occurrence_of( $post_id = 0 ) {
514
 
515
  //Retrieve the blog's local time and create the date part
516
  $tz = eo_get_blog_timezone();
517
- $blog_now = new DateTime( null, $tz );
518
  $now_date = $blog_now->format( 'Y-m-d' );
519
  $now_time = $blog_now->format( 'H:i:s' );
520
 
@@ -571,7 +577,7 @@ function eo_get_current_occurrence_of( $post_id = 0 ) {
571
 
572
  //Retrieve the blog's local time and create the date part
573
  $tz = eo_get_blog_timezone();
574
- $blog_now = new DateTime( null, $tz );
575
  $now_date = $blog_now->format( 'Y-m-d' );
576
  $now_time = $blog_now->format( 'H:i:s' );
577
 
272
 
273
  global $wpdb;
274
 
275
+ $occurrences = (array) wp_cache_get( 'eventorganiser_occurrences_'.$event_id );
276
 
277
  if ( ! isset ( $occurrences[$occurrence_id] ) ) {
278
 
310
  * @param int $occurrence_id The occurrence ID
311
  * @return string the start date formated to given format, as accepted by PHP date
312
  */
313
+ function eo_get_the_occurrence_start($format = 'd-m-Y', $occurrence_id = 0){
314
  global $wpdb;
315
+
316
+ if( empty( $occurrence_id ) ) {
317
+ return false;
318
+ }
319
 
320
  $querystr = $wpdb->prepare("
321
  SELECT StartDate,StartTime FROM {$wpdb->eo_events}
324
 
325
  $occurrence = $wpdb->get_row($querystr);
326
 
327
+ if( !$occurrence ) {
328
  return false;
329
+ }
330
 
331
  $date = trim($occurrence->StartDate).' '.trim($occurrence->StartTime);
332
 
333
+ if(empty($date)||$date==" ") {
334
  return false;
335
+ }
336
 
337
  return eo_format_date($date,$format);
338
  }
520
 
521
  //Retrieve the blog's local time and create the date part
522
  $tz = eo_get_blog_timezone();
523
+ $blog_now = new DateTime( "now", $tz );
524
  $now_date = $blog_now->format( 'Y-m-d' );
525
  $now_time = $blog_now->format( 'H:i:s' );
526
 
577
 
578
  //Retrieve the blog's local time and create the date part
579
  $tz = eo_get_blog_timezone();
580
+ $blog_now = new DateTime( "now", $tz );
581
  $now_date = $blog_now->format( 'Y-m-d' );
582
  $now_time = $blog_now->format( 'H:i:s' );
583
 
includes/event-organiser-utility-functions.php CHANGED
@@ -1670,7 +1670,7 @@ function eventorganiser_fold_ical_text( $text ){
1670
  $text_arr[$i] = mb_substr( $text, $i * 75, 75 );
1671
  }
1672
 
1673
- return join( $text_arr, "\r\n " );
1674
  }
1675
 
1676
  /**
1670
  $text_arr[$i] = mb_substr( $text, $i * 75, 75 );
1671
  }
1672
 
1673
+ return join( "\r\n ", $text_arr );
1674
  }
1675
 
1676
  /**
includes/event-organiser-venue-functions.php CHANGED
@@ -1023,7 +1023,7 @@ function _eventorganiser_get_venue_address_fields(){
1023
  *@ignore
1024
  *@access private
1025
  */
1026
- function eventorganiser_venue_dropdown($post_id=0,$args){
1027
  $venues = get_terms('event-venue', array('hide_empty'=>false));
1028
  $current = (int) eo_get_venue($post_id);
1029
 
1023
  *@ignore
1024
  *@access private
1025
  */
1026
+ function eventorganiser_venue_dropdown($post_id = 0, $args = array() ){
1027
  $venues = get_terms('event-venue', array('hide_empty'=>false));
1028
  $current = (int) eo_get_venue($post_id);
1029
 
includes/event.php CHANGED
@@ -1012,18 +1012,23 @@ function eventorganiser_ical_vtimezone( $timezone, $from, $to ) {
1012
  $vtimezone = "BEGIN:VTIMEZONE\r\n";
1013
  $vtimezone .= sprintf( "TZID:%s\r\n", $timezone->getName() );
1014
 
1015
- //$timezone->getTransitions() doesn't accept any arguments in php 5.2, and would be ineffecient
1016
- if ( version_compare( PHP_VERSION, '5.3.0' ) < 0 ) {
1017
- return '';
1018
- }
1019
 
1020
- // get all transitions, and (as an estimate) an early one which we skip
1021
- $transitions = $timezone->getTransitions( intval( $from - YEAR_IN_SECONDS / 2 ), (int) $to );
 
 
 
 
 
1022
 
1023
  if ( ! $transitions ) {
1024
  return '';
1025
  }
1026
 
 
1027
  foreach ( $transitions as $i => $trans ) {
1028
 
1029
  $pm = $trans['offset'] >= 0 ? '+' : '-';
@@ -1033,7 +1038,7 @@ function eventorganiser_ical_vtimezone( $timezone, $from, $to ) {
1033
  $tzto = $pm . str_pad( $hours, 2, '0', STR_PAD_LEFT ) . str_pad( $minutes, 2, '0', STR_PAD_LEFT );
1034
 
1035
  // skip the first entry, we just want it for the TZOFFSETFROM value of the next one
1036
- if ( $i == 0 ) {
1037
  $tzfrom = $tzto;
1038
  if ( count( $transitions ) > 1 ) {
1039
  continue;
1012
  $vtimezone = "BEGIN:VTIMEZONE\r\n";
1013
  $vtimezone .= sprintf( "TZID:%s\r\n", $timezone->getName() );
1014
 
1015
+ if ( version_compare( PHP_VERSION, '5.3.0' ) >= 0 && version_compare( PHP_VERSION, '8.1.0' ) < 0 ) {
1016
+ // get all transitions, and (as an estimate) an early one which we skip
1017
+ $transitions = $timezone->getTransitions( intval( $from - YEAR_IN_SECONDS ), (int) $to );
 
1018
 
1019
+ } else {
1020
+ // Workaround for pre-5.3 and bug in PHP 8.1 (https://github.com/php/php-src/issues/7752)
1021
+ $transitions = $timezone->getTransitions();
1022
+ $transitions = array_filter($transitions, function($transition) use ($from, $to) {
1023
+ return $transition['ts'] >= intval( $from - YEAR_IN_SECONDS) && $transition['ts'] <= intval( $to );
1024
+ });
1025
+ }
1026
 
1027
  if ( ! $transitions ) {
1028
  return '';
1029
  }
1030
 
1031
+ $tzfrom = null;
1032
  foreach ( $transitions as $i => $trans ) {
1033
 
1034
  $pm = $trans['offset'] >= 0 ? '+' : '-';
1038
  $tzto = $pm . str_pad( $hours, 2, '0', STR_PAD_LEFT ) . str_pad( $minutes, 2, '0', STR_PAD_LEFT );
1039
 
1040
  // skip the first entry, we just want it for the TZOFFSETFROM value of the next one
1041
+ if ( $tzfrom === null ) {
1042
  $tzfrom = $tzto;
1043
  if ( count( $transitions ) > 1 ) {
1044
  continue;
js/admin-calendar.min.js CHANGED
@@ -1,2 +1,2 @@
1
- /*! event-organiser 3.10.8-0-g92a62d9 2021-10-12 23:07 */
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").on("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").addClass("fc-state-default"),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").on("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.prop("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.on("mousedown.selectmenu",function(a){b._toggle(a,!0),"popup"==c.style&&(b._safemouseup=!1,setTimeout(function(){b._safemouseup=!0},300)),a.preventDefault()}).on("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.prop("selected"),disabled:e.prop("disabled"),classes:e.prop("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().trigger("mouseover")}).bind("blur.selectmenu",function(){a(this).parent().trigger("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.prop("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").off(".selectmenu"),a(window).off(".selectmenu-"+this.ids[0]),a(document).off(".selectmenu-"+this.ids[0]),this.newelementWrap.remove(),this.listWrap.remove(),this.element.off(".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").css("zIndex",this.element.css("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.11.0-0-g3119ee3 2022-03-10 01:11 */
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").on("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").addClass("fc-state-default"),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").on("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.prop("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.on("mousedown.selectmenu",function(a){b._toggle(a,!0),"popup"==c.style&&(b._safemouseup=!1,setTimeout(function(){b._safemouseup=!0},300)),a.preventDefault()}).on("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.prop("selected"),disabled:e.prop("disabled"),classes:e.prop("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().trigger("mouseover")}).bind("blur.selectmenu",function(){a(this).parent().trigger("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.prop("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").off(".selectmenu"),a(window).off(".selectmenu-"+this.ids[0]),a(document).off(".selectmenu-"+this.ids[0]),this.newelementWrap.remove(),this.listWrap.remove(),this.element.off(".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").css("zIndex",this.element.css("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.10.8-0-g92a62d9 2021-10-12 23:07 */
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").is(":checked")}),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)||0,lng:parseFloat(c.item.venue_lng)||0})),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").on("mousedown",function(){wasOpen=i.autocomplete("widget").is(":visible")}).on("click",function(b){b.preventDefault(),wasOpen||(a(this).trigger("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").on("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.11.0-0-g3119ee3 2022-03-10 01:11 */
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").is(":checked")}),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)||0,lng:parseFloat(c.item.venue_lng)||0})),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").on("mousedown",function(){wasOpen=i.autocomplete("widget").is(":visible")}).on("click",function(b){b.preventDefault(),wasOpen||(a(this).trigger("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").on("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.10.8-0-g92a62d9 2021-10-12 23:07 */
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.11.0-0-g3119ee3 2022-03-10 01:11 */
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.10.8-0-g92a62d9 2021-10-12 23:07 */
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").on("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").on("click",function(a){a||(a=window.event),a.cancelBubble=!0,a.stopPropagation&&a.stopPropagation()}),a("html").on("click",function(){g.hide(),a(c.occurrence_picker_toggle).val(d.showDates)})),a(c.occurrence_picker_toggle).on("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).prop("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]+"']").prop("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.11.0-0-g3119ee3 2022-03-10 01:11 */
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").on("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").on("click",function(a){a||(a=window.event),a.cancelBubble=!0,a.stopPropagation&&a.stopPropagation()}),a("html").on("click",function(){g.hide(),a(c.occurrence_picker_toggle).val(d.showDates)})),a(c.occurrence_picker_toggle).on("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).prop("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]+"']").prop("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.10.8-0-g92a62d9 2021-10-12 23:07 */
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().on("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.on("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.11.0-0-g3119ee3 2022-03-10 01:11 */
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().on("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.on("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.10.8-0-g92a62d9 2021-10-12 23:07 */
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'></div>").prependTo(c),ba=new wa(Y,$),ca=ba.render(),ca&&c.prepend(ca),l($.defaultView),$.handleWindowResize&&(ha=Q(t,$.windowResizeDelay),a(window).on("resize",ha))}function j(){fa&&fa.destroyView(),ba.destroy(),da.remove(),c.removeClass("fc fc-ltr fc-rtl fc-unthemed ui-widget"),a(window).off("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'></div>").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'></div>").append(f("left")).append(f("right")).append(f("center")).append('<div class="fc-clear"></div>'):void 0}function e(){o.remove()}function f(d){var e=a('<div class="fc-'+d+'"></div>'),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>").on("click",function(){r.hasClass(n+"-state-disabled")||(f(),(r.hasClass(n+"-state-active")||r.hasClass(n+"-state-disabled"))&&r.removeClass(n+"-state-hover"))}).on("mousedown",function(){r.not("."+n+"-state-active").not("."+n+"-state-disabled").addClass(n+"-state-down")}).on("mouseup",function(){r.removeClass(n+"-state-down")}).on("mouseenter",function(){r.not("."+n+"-state-active").not("."+n+"-state-disabled").addClass(n+"-state-hover")}).on("mouseleave",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></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").prop("disabled",!0).addClass(n+"-state-disabled")}function k(a){o.find(".fc-"+a+"-button").prop("disabled",!1).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"></div>').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());
3
  },destroy:function(){this.hide(),this.el&&(this.el.remove(),this.el=null),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></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+'"':"")+"></"+this.fillSegTag+">"},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></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></tr></table></div>'),e=d.find("tr"),g>0&&e.append('<td colspan="'+g+'"></td>'),e.append(c.el.attr("colspan",h-g)),f>h&&e.append('<td colspan="'+(f-h)+'"></td>'),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"></div>':"")+"</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></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></tbody>"),p=[],q=[],r=[];for(e=0;n>e;e++){if(f=m[e],g=0,h=a("<tr></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"></td>').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></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"></td>').attr("rowspan",o),k=m[q],e=this.getCell(b,j.leftCol+q),t=this.renderMoreLink(e,[j].concat(k)),s=a("<div></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"></a>').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><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>";
4
  },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),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+'"></div>'+(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"></div>').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></tr></table></div>'),g=f.find("tr"),h=0;h<e.length;h++)if(i=e[h],j=a("<td></td>").appendTo(g),i.length)for(k=a('<div class="fc-'+d+'-container"></div>').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"></div>').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></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"></div>'),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></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"></div>'+(i?'<div class="fc-resizer"></div>':"")+"</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></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></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+'"></div>').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"></div><hr class="'+this.widgetHeaderClass+'"></div>':"")+'<div class="fc-time-grid-container"><div class="fc-time-grid"></div></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></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></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.11.0-0-g3119ee3 2022-03-10 01:11 */
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'></div>").prependTo(c),ba=new wa(Y,$),ca=ba.render(),ca&&c.prepend(ca),l($.defaultView),$.handleWindowResize&&(ha=Q(t,$.windowResizeDelay),a(window).on("resize",ha))}function j(){fa&&fa.destroyView(),ba.destroy(),da.remove(),c.removeClass("fc fc-ltr fc-rtl fc-unthemed ui-widget"),a(window).off("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'></div>").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'></div>").append(f("left")).append(f("right")).append(f("center")).append('<div class="fc-clear"></div>'):void 0}function e(){o.remove()}function f(d){var e=a('<div class="fc-'+d+'"></div>'),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>").on("click",function(){r.hasClass(n+"-state-disabled")||(f(),(r.hasClass(n+"-state-active")||r.hasClass(n+"-state-disabled"))&&r.removeClass(n+"-state-hover"))}).on("mousedown",function(){r.not("."+n+"-state-active").not("."+n+"-state-disabled").addClass(n+"-state-down")}).on("mouseup",function(){r.removeClass(n+"-state-down")}).on("mouseenter",function(){r.not("."+n+"-state-active").not("."+n+"-state-disabled").addClass(n+"-state-hover")}).on("mouseleave",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></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").prop("disabled",!0).addClass(n+"-state-disabled")}function k(a){o.find(".fc-"+a+"-button").prop("disabled",!1).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"></div>').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());
3
  },destroy:function(){this.hide(),this.el&&(this.el.remove(),this.el=null),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></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+'"':"")+"></"+this.fillSegTag+">"},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></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></tr></table></div>'),e=d.find("tr"),g>0&&e.append('<td colspan="'+g+'"></td>'),e.append(c.el.attr("colspan",h-g)),f>h&&e.append('<td colspan="'+(f-h)+'"></td>'),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"></div>':"")+"</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></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></tbody>"),p=[],q=[],r=[];for(e=0;n>e;e++){if(f=m[e],g=0,h=a("<tr></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"></td>').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></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"></td>').attr("rowspan",o),k=m[q],e=this.getCell(b,j.leftCol+q),t=this.renderMoreLink(e,[j].concat(k)),s=a("<div></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"></a>').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><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>";
4
  },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),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+'"></div>'+(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"></div>').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></tr></table></div>'),g=f.find("tr"),h=0;h<e.length;h++)if(i=e[h],j=a("<td></td>").appendTo(g),i.length)for(k=a('<div class="fc-'+d+'-container"></div>').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"></div>').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></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"></div>'),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></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"></div>'+(i?'<div class="fc-resizer"></div>':"")+"</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></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></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+'"></div>').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"></div><hr class="'+this.widgetHeaderClass+'"></div>':"")+'<div class="fc-time-grid-container"><div class="fc-time-grid"></div></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></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></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.10.8-0-g92a62d9 2021-10-12 23:07 */
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).on("keydown",this._doKeyDown).on("keyup",this._doKeyUp).on("setData.eotimepicker",null,function(a,c,d){b.settings[c]=d}).on("getData.eotimepicker",null,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.off("focus.eotimepicker",this._showTimepicker),a.off("click.eotimepicker",this._adjustZIndex),b.trigger&&b.trigger.remove();var e=this._get(b,"showOn");if(("focus"==e||"both"==e)&&(a.on("focus.eotimepicker",null,this._showTimepicker),a.on("click.eotimepicker",null,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).on("click.eotimepicker",null,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).on("setData.eotimepicker",null,function(a,c,d){b.settings[c]=d}).on("getData.eotimepicker",null,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.trigger("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").off().on("click",null,{fromDoubleClick:!1},$.proxy($.eotimepicker.selectMinutes,this)).on("dblclick",null,{fromDoubleClick:!0},$.proxy($.eotimepicker.selectMinutes,this)).end().find(".ui-timepicker-hour-cell").off().on("click",null,{fromDoubleClick:!1},$.proxy($.eotimepicker.selectHours,this)).on("dblclick",null,{fromDoubleClick:!0},$.proxy($.eotimepicker.selectHours,this)).end().find(".ui-timepicker td a").off().on("mouseout",null,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")}).on("mouseover",null,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").on("click",null,function(a){$.eotimepicker.selectNow(a)}).end().find(".ui-timepicker-deselect").on("click",null,function(a){$.eotimepicker.deselectTime(a)}).end().find(".ui-timepicker-close").on("click",null,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).off("focus.eotimepicker",this._showTimepicker).off("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).off(".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).on("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.11.0-0-g3119ee3 2022-03-10 01:11 */
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).on("keydown",this._doKeyDown).on("keyup",this._doKeyUp).on("setData.eotimepicker",null,function(a,c,d){b.settings[c]=d}).on("getData.eotimepicker",null,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.off("focus.eotimepicker",this._showTimepicker),a.off("click.eotimepicker",this._adjustZIndex),b.trigger&&b.trigger.remove();var e=this._get(b,"showOn");if(("focus"==e||"both"==e)&&(a.on("focus.eotimepicker",null,this._showTimepicker),a.on("click.eotimepicker",null,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).on("click.eotimepicker",null,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).on("setData.eotimepicker",null,function(a,c,d){b.settings[c]=d}).on("getData.eotimepicker",null,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.trigger("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").off().on("click",null,{fromDoubleClick:!1},$.proxy($.eotimepicker.selectMinutes,this)).on("dblclick",null,{fromDoubleClick:!0},$.proxy($.eotimepicker.selectMinutes,this)).end().find(".ui-timepicker-hour-cell").off().on("click",null,{fromDoubleClick:!1},$.proxy($.eotimepicker.selectHours,this)).on("dblclick",null,{fromDoubleClick:!0},$.proxy($.eotimepicker.selectHours,this)).end().find(".ui-timepicker td a").off().on("mouseout",null,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")}).on("mouseover",null,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").on("click",null,function(a){$.eotimepicker.selectNow(a)}).end().find(".ui-timepicker-deselect").on("click",null,function(a){$.eotimepicker.deselectTime(a)}).end().find(".ui-timepicker-close").on("click",null,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).off("focus.eotimepicker",this._showTimepicker).off("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).off(".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).on("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.10.8-0-g92a62d9 2021-10-12 23:07 */
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.11.0-0-g3119ee3 2022-03-10 01:11 */
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.10.8-0-g92a62d9 2021-10-12 23:07 */
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.off("focus.timepicker",this._showTimepicker),a.off("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").off().bind("click",{fromDoubleClick:!1},$.proxy($.timepicker.selectMinutes,this)).bind("dblclick",{fromDoubleClick:!0},$.proxy($.timepicker.selectMinutes,this)).end().find(".ui-timepicker-hour-cell").off().bind("click",{fromDoubleClick:!1},$.proxy($.timepicker.selectHours,this)).bind("dblclick",{fromDoubleClick:!0},$.proxy($.timepicker.selectHours,this)).end().find(".ui-timepicker td a").off().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).off("focus.timepicker",this._showTimepicker).off("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).off(".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.11.0-0-g3119ee3 2022-03-10 01:11 */
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.off("focus.timepicker",this._showTimepicker),a.off("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").off().bind("click",{fromDoubleClick:!1},$.proxy($.timepicker.selectMinutes,this)).bind("dblclick",{fromDoubleClick:!0},$.proxy($.timepicker.selectMinutes,this)).end().find(".ui-timepicker-hour-cell").off().bind("click",{fromDoubleClick:!1},$.proxy($.timepicker.selectHours,this)).bind("dblclick",{fromDoubleClick:!0},$.proxy($.timepicker.selectHours,this)).end().find(".ui-timepicker td a").off().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).off("focus.timepicker",this._showTimepicker).off("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).off(".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.10.8-0-g92a62d9 2021-10-12 23:07 */
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.11.0-0-g3119ee3 2022-03-10 01:11 */
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.min.js CHANGED
@@ -1,2 +1,2 @@
1
- /*! event-organiser 3.10.8-0-g92a62d9 2021-10-12 23:07 */
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);
1
+ /*! event-organiser 3.11.0-0-g3119ee3 2022-03-10 01:11 */
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2017-04-16T23:10:48+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -60,7 +60,7 @@ msgid "Include 'Add To Google' link"
60
  msgstr ""
61
 
62
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
63
- #: includes/event-organiser-event-functions.php:1382
64
  #, fuzzy
65
  msgid "All day"
66
  msgstr "Heel dag"
@@ -275,7 +275,7 @@ msgstr "Gebeurtenis Kategorieë"
275
 
276
  #: classes/class-eo-widget-categories.php:25
277
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
278
- #: includes/event-organiser-event-functions.php:1563
279
  #: templates/event-meta-event-single.php:62
280
  #, fuzzy
281
  msgid "Categories"
@@ -408,7 +408,7 @@ msgid "24 hour time"
408
  msgstr "24 uur tyd"
409
 
410
  #: event-organiser-calendar.php:256
411
- #: includes/event-organiser-event-functions.php:1500
412
  msgid "Loading&#8230;"
413
  msgstr ""
414
 
@@ -692,7 +692,7 @@ msgid "day of week"
692
  msgstr "dag van die week"
693
 
694
  #: event-organiser-edit.php:225
695
- #: includes/event-organiser-event-functions.php:856
696
  #: includes/event-organiser-register.php:307
697
  #, fuzzy
698
  msgid "until"
@@ -1728,7 +1728,7 @@ msgid "Choose from the most used tags"
1728
  msgstr ""
1729
 
1730
  #: includes/event-organiser-cpt.php:163
1731
- #: includes/event-organiser-event-functions.php:1571
1732
  #: templates/event-meta-event-single.php:66
1733
  msgid "Tags"
1734
  msgstr ""
@@ -2080,86 +2080,86 @@ msgstr "Kleur"
2080
  msgid "Assign the category a colour."
2081
  msgstr "Kies 'n kleur vir die kategorie"
2082
 
2083
- #: includes/event-organiser-event-functions.php:777
2084
  #: includes/event-organiser-register.php:313
2085
  #, fuzzy
2086
  msgid "last"
2087
  msgstr "laaste"
2088
 
2089
- #: includes/event-organiser-event-functions.php:777
2090
  #: includes/event-organiser-register.php:309
2091
  #, fuzzy
2092
  msgid "first"
2093
  msgstr "eerste"
2094
 
2095
- #: includes/event-organiser-event-functions.php:777
2096
  #: includes/event-organiser-register.php:310
2097
  #, fuzzy
2098
  msgid "second"
2099
  msgstr "tweede"
2100
 
2101
- #: includes/event-organiser-event-functions.php:777
2102
  #: includes/event-organiser-register.php:311
2103
  #, fuzzy
2104
  msgid "third"
2105
  msgstr "derde"
2106
 
2107
- #: includes/event-organiser-event-functions.php:777
2108
  #: includes/event-organiser-register.php:312
2109
  #, fuzzy
2110
  msgid "fourth"
2111
  msgstr "vierde"
2112
 
2113
- #: includes/event-organiser-event-functions.php:787
2114
  msgid "one time only"
2115
  msgstr "net een keer"
2116
 
2117
- #: includes/event-organiser-event-functions.php:790
2118
  msgid "custom recurrence"
2119
  msgstr ""
2120
 
2121
- #: includes/event-organiser-event-functions.php:797
2122
  #: includes/event-organiser-register.php:298
2123
  #, fuzzy
2124
  msgid "every day"
2125
  msgstr "elke dag"
2126
 
2127
- #: includes/event-organiser-event-functions.php:799
2128
  #: includes/event-organiser-register.php:299
2129
  #, fuzzy, php-format
2130
  msgid "every %d days"
2131
  msgstr "elke %d dae"
2132
 
2133
- #: includes/event-organiser-event-functions.php:805
2134
  #: includes/event-organiser-register.php:300
2135
  #, fuzzy
2136
  msgid "every week on"
2137
  msgstr "elke week op"
2138
 
2139
- #: includes/event-organiser-event-functions.php:807
2140
  #: includes/event-organiser-register.php:301
2141
  #, fuzzy, php-format
2142
  msgid "every %d weeks on"
2143
  msgstr "elke %d week op"
2144
 
2145
- #: includes/event-organiser-event-functions.php:818
2146
  #: includes/event-organiser-register.php:302
2147
  #, fuzzy
2148
  msgid "every month on the"
2149
  msgstr "elke maand op die"
2150
 
2151
- #: includes/event-organiser-event-functions.php:820
2152
  #: includes/event-organiser-register.php:303
2153
  #, fuzzy, php-format
2154
  msgid "every %d months on the"
2155
  msgstr "elke %d maand op die"
2156
 
2157
- #: includes/event-organiser-event-functions.php:849
2158
  #, fuzzy
2159
  msgid "every year"
2160
  msgstr "elke jaar"
2161
 
2162
- #: includes/event-organiser-event-functions.php:851
2163
  #, fuzzy, php-format
2164
  msgid "every %d years"
2165
  msgstr "elke %d jare"
@@ -2340,11 +2340,11 @@ msgstr ""
2340
  msgid "Event does not contain any dates."
2341
  msgstr "Gebeurtenis beskik nie oor enige datums nie."
2342
 
2343
- #: includes/event.php:1080
2344
  msgid "Occurrence not deleted. Occurrence not found."
2345
  msgstr ""
2346
 
2347
- #: includes/event.php:1136
2348
  msgid "There is already an occurrence on this date"
2349
  msgstr ""
2350
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2017-04-16T23:10:48+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
60
  msgstr ""
61
 
62
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
63
+ #: includes/event-organiser-event-functions.php:1388
64
  #, fuzzy
65
  msgid "All day"
66
  msgstr "Heel dag"
275
 
276
  #: classes/class-eo-widget-categories.php:25
277
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
278
+ #: includes/event-organiser-event-functions.php:1569
279
  #: templates/event-meta-event-single.php:62
280
  #, fuzzy
281
  msgid "Categories"
408
  msgstr "24 uur tyd"
409
 
410
  #: event-organiser-calendar.php:256
411
+ #: includes/event-organiser-event-functions.php:1506
412
  msgid "Loading&#8230;"
413
  msgstr ""
414
 
692
  msgstr "dag van die week"
693
 
694
  #: event-organiser-edit.php:225
695
+ #: includes/event-organiser-event-functions.php:862
696
  #: includes/event-organiser-register.php:307
697
  #, fuzzy
698
  msgid "until"
1728
  msgstr ""
1729
 
1730
  #: includes/event-organiser-cpt.php:163
1731
+ #: includes/event-organiser-event-functions.php:1577
1732
  #: templates/event-meta-event-single.php:66
1733
  msgid "Tags"
1734
  msgstr ""
2080
  msgid "Assign the category a colour."
2081
  msgstr "Kies 'n kleur vir die kategorie"
2082
 
2083
+ #: includes/event-organiser-event-functions.php:783
2084
  #: includes/event-organiser-register.php:313
2085
  #, fuzzy
2086
  msgid "last"
2087
  msgstr "laaste"
2088
 
2089
+ #: includes/event-organiser-event-functions.php:783
2090
  #: includes/event-organiser-register.php:309
2091
  #, fuzzy
2092
  msgid "first"
2093
  msgstr "eerste"
2094
 
2095
+ #: includes/event-organiser-event-functions.php:783
2096
  #: includes/event-organiser-register.php:310
2097
  #, fuzzy
2098
  msgid "second"
2099
  msgstr "tweede"
2100
 
2101
+ #: includes/event-organiser-event-functions.php:783
2102
  #: includes/event-organiser-register.php:311
2103
  #, fuzzy
2104
  msgid "third"
2105
  msgstr "derde"
2106
 
2107
+ #: includes/event-organiser-event-functions.php:783
2108
  #: includes/event-organiser-register.php:312
2109
  #, fuzzy
2110
  msgid "fourth"
2111
  msgstr "vierde"
2112
 
2113
+ #: includes/event-organiser-event-functions.php:793
2114
  msgid "one time only"
2115
  msgstr "net een keer"
2116
 
2117
+ #: includes/event-organiser-event-functions.php:796
2118
  msgid "custom recurrence"
2119
  msgstr ""
2120
 
2121
+ #: includes/event-organiser-event-functions.php:803
2122
  #: includes/event-organiser-register.php:298
2123
  #, fuzzy
2124
  msgid "every day"
2125
  msgstr "elke dag"
2126
 
2127
+ #: includes/event-organiser-event-functions.php:805
2128
  #: includes/event-organiser-register.php:299
2129
  #, fuzzy, php-format
2130
  msgid "every %d days"
2131
  msgstr "elke %d dae"
2132
 
2133
+ #: includes/event-organiser-event-functions.php:811
2134
  #: includes/event-organiser-register.php:300
2135
  #, fuzzy
2136
  msgid "every week on"
2137
  msgstr "elke week op"
2138
 
2139
+ #: includes/event-organiser-event-functions.php:813
2140
  #: includes/event-organiser-register.php:301
2141
  #, fuzzy, php-format
2142
  msgid "every %d weeks on"
2143
  msgstr "elke %d week op"
2144
 
2145
+ #: includes/event-organiser-event-functions.php:824
2146
  #: includes/event-organiser-register.php:302
2147
  #, fuzzy
2148
  msgid "every month on the"
2149
  msgstr "elke maand op die"
2150
 
2151
+ #: includes/event-organiser-event-functions.php:826
2152
  #: includes/event-organiser-register.php:303
2153
  #, fuzzy, php-format
2154
  msgid "every %d months on the"
2155
  msgstr "elke %d maand op die"
2156
 
2157
+ #: includes/event-organiser-event-functions.php:855
2158
  #, fuzzy
2159
  msgid "every year"
2160
  msgstr "elke jaar"
2161
 
2162
+ #: includes/event-organiser-event-functions.php:857
2163
  #, fuzzy, php-format
2164
  msgid "every %d years"
2165
  msgstr "elke %d jare"
2340
  msgid "Event does not contain any dates."
2341
  msgstr "Gebeurtenis beskik nie oor enige datums nie."
2342
 
2343
+ #: includes/event.php:1085
2344
  msgid "Occurrence not deleted. Occurrence not found."
2345
  msgstr ""
2346
 
2347
+ #: includes/event.php:1141
2348
  msgid "There is already an occurrence on this date"
2349
  msgstr ""
2350
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:17:42+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -58,7 +58,7 @@ msgid "Include 'Add To Google' link"
58
  msgstr ""
59
 
60
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
61
- #: includes/event-organiser-event-functions.php:1382
62
  msgid "All day"
63
  msgstr "طوال اليوم"
64
 
@@ -250,7 +250,7 @@ msgstr "تصنيفات الأحداث"
250
 
251
  #: classes/class-eo-widget-categories.php:25
252
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
253
- #: includes/event-organiser-event-functions.php:1563
254
  #: templates/event-meta-event-single.php:62
255
  msgid "Categories"
256
  msgstr "تصنيفات"
@@ -372,7 +372,7 @@ msgid "24 hour time"
372
  msgstr "24 ساعة"
373
 
374
  #: event-organiser-calendar.php:256
375
- #: includes/event-organiser-event-functions.php:1500
376
  msgid "Loading&#8230;"
377
  msgstr "جاري التحميل"
378
 
@@ -640,7 +640,7 @@ msgid "day of week"
640
  msgstr "يوم في الأسبوع"
641
 
642
  #: event-organiser-edit.php:225
643
- #: includes/event-organiser-event-functions.php:856
644
  #: includes/event-organiser-register.php:307
645
  msgid "until"
646
  msgstr "حتى"
@@ -1613,7 +1613,7 @@ msgid "Choose from the most used tags"
1613
  msgstr ""
1614
 
1615
  #: includes/event-organiser-cpt.php:163
1616
- #: includes/event-organiser-event-functions.php:1571
1617
  #: templates/event-meta-event-single.php:66
1618
  msgid "Tags"
1619
  msgstr ""
@@ -1944,77 +1944,77 @@ msgstr ""
1944
  msgid "Assign the category a colour."
1945
  msgstr ""
1946
 
1947
- #: includes/event-organiser-event-functions.php:777
1948
  #: includes/event-organiser-register.php:313
1949
  msgid "last"
1950
  msgstr ""
1951
 
1952
- #: includes/event-organiser-event-functions.php:777
1953
  #: includes/event-organiser-register.php:309
1954
  msgid "first"
1955
  msgstr ""
1956
 
1957
- #: includes/event-organiser-event-functions.php:777
1958
  #: includes/event-organiser-register.php:310
1959
  msgid "second"
1960
  msgstr ""
1961
 
1962
- #: includes/event-organiser-event-functions.php:777
1963
  #: includes/event-organiser-register.php:311
1964
  msgid "third"
1965
  msgstr ""
1966
 
1967
- #: includes/event-organiser-event-functions.php:777
1968
  #: includes/event-organiser-register.php:312
1969
  msgid "fourth"
1970
  msgstr ""
1971
 
1972
- #: includes/event-organiser-event-functions.php:787
1973
  msgid "one time only"
1974
  msgstr ""
1975
 
1976
- #: includes/event-organiser-event-functions.php:790
1977
  msgid "custom recurrence"
1978
  msgstr ""
1979
 
1980
- #: includes/event-organiser-event-functions.php:797
1981
  #: includes/event-organiser-register.php:298
1982
  msgid "every day"
1983
  msgstr ""
1984
 
1985
- #: includes/event-organiser-event-functions.php:799
1986
  #: includes/event-organiser-register.php:299
1987
  #, php-format
1988
  msgid "every %d days"
1989
  msgstr ""
1990
 
1991
- #: includes/event-organiser-event-functions.php:805
1992
  #: includes/event-organiser-register.php:300
1993
  msgid "every week on"
1994
  msgstr ""
1995
 
1996
- #: includes/event-organiser-event-functions.php:807
1997
  #: includes/event-organiser-register.php:301
1998
  #, php-format
1999
  msgid "every %d weeks on"
2000
  msgstr ""
2001
 
2002
- #: includes/event-organiser-event-functions.php:818
2003
  #: includes/event-organiser-register.php:302
2004
  msgid "every month on the"
2005
  msgstr ""
2006
 
2007
- #: includes/event-organiser-event-functions.php:820
2008
  #: includes/event-organiser-register.php:303
2009
  #, php-format
2010
  msgid "every %d months on the"
2011
  msgstr ""
2012
 
2013
- #: includes/event-organiser-event-functions.php:849
2014
  msgid "every year"
2015
  msgstr ""
2016
 
2017
- #: includes/event-organiser-event-functions.php:851
2018
  #, php-format
2019
  msgid "every %d years"
2020
  msgstr ""
@@ -2170,11 +2170,11 @@ msgstr ""
2170
  msgid "Event does not contain any dates."
2171
  msgstr ""
2172
 
2173
- #: includes/event.php:1080
2174
  msgid "Occurrence not deleted. Occurrence not found."
2175
  msgstr ""
2176
 
2177
- #: includes/event.php:1136
2178
  msgid "There is already an occurrence on this date"
2179
  msgstr ""
2180
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:17:42+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
58
  msgstr ""
59
 
60
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
61
+ #: includes/event-organiser-event-functions.php:1388
62
  msgid "All day"
63
  msgstr "طوال اليوم"
64
 
250
 
251
  #: classes/class-eo-widget-categories.php:25
252
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
253
+ #: includes/event-organiser-event-functions.php:1569
254
  #: templates/event-meta-event-single.php:62
255
  msgid "Categories"
256
  msgstr "تصنيفات"
372
  msgstr "24 ساعة"
373
 
374
  #: event-organiser-calendar.php:256
375
+ #: includes/event-organiser-event-functions.php:1506
376
  msgid "Loading&#8230;"
377
  msgstr "جاري التحميل"
378
 
640
  msgstr "يوم في الأسبوع"
641
 
642
  #: event-organiser-edit.php:225
643
+ #: includes/event-organiser-event-functions.php:862
644
  #: includes/event-organiser-register.php:307
645
  msgid "until"
646
  msgstr "حتى"
1613
  msgstr ""
1614
 
1615
  #: includes/event-organiser-cpt.php:163
1616
+ #: includes/event-organiser-event-functions.php:1577
1617
  #: templates/event-meta-event-single.php:66
1618
  msgid "Tags"
1619
  msgstr ""
1944
  msgid "Assign the category a colour."
1945
  msgstr ""
1946
 
1947
+ #: includes/event-organiser-event-functions.php:783
1948
  #: includes/event-organiser-register.php:313
1949
  msgid "last"
1950
  msgstr ""
1951
 
1952
+ #: includes/event-organiser-event-functions.php:783
1953
  #: includes/event-organiser-register.php:309
1954
  msgid "first"
1955
  msgstr ""
1956
 
1957
+ #: includes/event-organiser-event-functions.php:783
1958
  #: includes/event-organiser-register.php:310
1959
  msgid "second"
1960
  msgstr ""
1961
 
1962
+ #: includes/event-organiser-event-functions.php:783
1963
  #: includes/event-organiser-register.php:311
1964
  msgid "third"
1965
  msgstr ""
1966
 
1967
+ #: includes/event-organiser-event-functions.php:783
1968
  #: includes/event-organiser-register.php:312
1969
  msgid "fourth"
1970
  msgstr ""
1971
 
1972
+ #: includes/event-organiser-event-functions.php:793
1973
  msgid "one time only"
1974
  msgstr ""
1975
 
1976
+ #: includes/event-organiser-event-functions.php:796
1977
  msgid "custom recurrence"
1978
  msgstr ""
1979
 
1980
+ #: includes/event-organiser-event-functions.php:803
1981
  #: includes/event-organiser-register.php:298
1982
  msgid "every day"
1983
  msgstr ""
1984
 
1985
+ #: includes/event-organiser-event-functions.php:805
1986
  #: includes/event-organiser-register.php:299
1987
  #, php-format
1988
  msgid "every %d days"
1989
  msgstr ""
1990
 
1991
+ #: includes/event-organiser-event-functions.php:811
1992
  #: includes/event-organiser-register.php:300
1993
  msgid "every week on"
1994
  msgstr ""
1995
 
1996
+ #: includes/event-organiser-event-functions.php:813
1997
  #: includes/event-organiser-register.php:301
1998
  #, php-format
1999
  msgid "every %d weeks on"
2000
  msgstr ""
2001
 
2002
+ #: includes/event-organiser-event-functions.php:824
2003
  #: includes/event-organiser-register.php:302
2004
  msgid "every month on the"
2005
  msgstr ""
2006
 
2007
+ #: includes/event-organiser-event-functions.php:826
2008
  #: includes/event-organiser-register.php:303
2009
  #, php-format
2010
  msgid "every %d months on the"
2011
  msgstr ""
2012
 
2013
+ #: includes/event-organiser-event-functions.php:855
2014
  msgid "every year"
2015
  msgstr ""
2016
 
2017
+ #: includes/event-organiser-event-functions.php:857
2018
  #, php-format
2019
  msgid "every %d years"
2020
  msgstr ""
2170
  msgid "Event does not contain any dates."
2171
  msgstr ""
2172
 
2173
+ #: includes/event.php:1085
2174
  msgid "Occurrence not deleted. Occurrence not found."
2175
  msgstr ""
2176
 
2177
+ #: includes/event.php:1141
2178
  msgid "There is already an occurrence on this date"
2179
  msgstr ""
2180
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:17:38+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr ""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr "Цял ден"
62
 
@@ -248,7 +248,7 @@ msgstr ""
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
- #: includes/event-organiser-event-functions.php:1563
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr ""
@@ -370,7 +370,7 @@ msgid "24 hour time"
370
  msgstr "24 часово време"
371
 
372
  #: event-organiser-calendar.php:256
373
- #: includes/event-organiser-event-functions.php:1500
374
  msgid "Loading&#8230;"
375
  msgstr "Зареждане..."
376
 
@@ -639,7 +639,7 @@ msgid "day of week"
639
  msgstr "ден от седмицата"
640
 
641
  #: event-organiser-edit.php:225
642
- #: includes/event-organiser-event-functions.php:856
643
  #: includes/event-organiser-register.php:307
644
  msgid "until"
645
  msgstr "до"
@@ -1626,7 +1626,7 @@ msgid "Choose from the most used tags"
1626
  msgstr "Избери измежду най-ползваните тагоее"
1627
 
1628
  #: includes/event-organiser-cpt.php:163
1629
- #: includes/event-organiser-event-functions.php:1571
1630
  #: templates/event-meta-event-single.php:66
1631
  msgid "Tags"
1632
  msgstr "Тагове"
@@ -1994,77 +1994,77 @@ msgstr "Цвят"
1994
  msgid "Assign the category a colour."
1995
  msgstr "Задайите цвят на категорията"
1996
 
1997
- #: includes/event-organiser-event-functions.php:777
1998
  #: includes/event-organiser-register.php:313
1999
  msgid "last"
2000
  msgstr "последен"
2001
 
2002
- #: includes/event-organiser-event-functions.php:777
2003
  #: includes/event-organiser-register.php:309
2004
  msgid "first"
2005
  msgstr "първи"
2006
 
2007
- #: includes/event-organiser-event-functions.php:777
2008
  #: includes/event-organiser-register.php:310
2009
  msgid "second"
2010
  msgstr "втори"
2011
 
2012
- #: includes/event-organiser-event-functions.php:777
2013
  #: includes/event-organiser-register.php:311
2014
  msgid "third"
2015
  msgstr "трети"
2016
 
2017
- #: includes/event-organiser-event-functions.php:777
2018
  #: includes/event-organiser-register.php:312
2019
  msgid "fourth"
2020
  msgstr "четвърти"
2021
 
2022
- #: includes/event-organiser-event-functions.php:787
2023
  msgid "one time only"
2024
  msgstr "само веднъж"
2025
 
2026
- #: includes/event-organiser-event-functions.php:790
2027
  msgid "custom recurrence"
2028
  msgstr "Повторение"
2029
 
2030
- #: includes/event-organiser-event-functions.php:797
2031
  #: includes/event-organiser-register.php:298
2032
  msgid "every day"
2033
  msgstr "всеки ден"
2034
 
2035
- #: includes/event-organiser-event-functions.php:799
2036
  #: includes/event-organiser-register.php:299
2037
  #, php-format
2038
  msgid "every %d days"
2039
  msgstr "всеки %d дни"
2040
 
2041
- #: includes/event-organiser-event-functions.php:805
2042
  #: includes/event-organiser-register.php:300
2043
  msgid "every week on"
2044
  msgstr "всяка седмица на"
2045
 
2046
- #: includes/event-organiser-event-functions.php:807
2047
  #: includes/event-organiser-register.php:301
2048
  #, php-format
2049
  msgid "every %d weeks on"
2050
  msgstr "всеки %d седмици на"
2051
 
2052
- #: includes/event-organiser-event-functions.php:818
2053
  #: includes/event-organiser-register.php:302
2054
  msgid "every month on the"
2055
  msgstr "всеки месец на"
2056
 
2057
- #: includes/event-organiser-event-functions.php:820
2058
  #: includes/event-organiser-register.php:303
2059
  #, php-format
2060
  msgid "every %d months on the"
2061
  msgstr "всеки %d месеци на"
2062
 
2063
- #: includes/event-organiser-event-functions.php:849
2064
  msgid "every year"
2065
  msgstr "всяка година"
2066
 
2067
- #: includes/event-organiser-event-functions.php:851
2068
  #, php-format
2069
  msgid "every %d years"
2070
  msgstr "всеки %d години"
@@ -2220,11 +2220,11 @@ msgstr ""
2220
  msgid "Event does not contain any dates."
2221
  msgstr ""
2222
 
2223
- #: includes/event.php:1080
2224
  msgid "Occurrence not deleted. Occurrence not found."
2225
  msgstr ""
2226
 
2227
- #: includes/event.php:1136
2228
  msgid "There is already an occurrence on this date"
2229
  msgstr ""
2230
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:17:38+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr ""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr "Цял ден"
62
 
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
+ #: includes/event-organiser-event-functions.php:1569
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr ""
370
  msgstr "24 часово време"
371
 
372
  #: event-organiser-calendar.php:256
373
+ #: includes/event-organiser-event-functions.php:1506
374
  msgid "Loading&#8230;"
375
  msgstr "Зареждане..."
376
 
639
  msgstr "ден от седмицата"
640
 
641
  #: event-organiser-edit.php:225
642
+ #: includes/event-organiser-event-functions.php:862
643
  #: includes/event-organiser-register.php:307
644
  msgid "until"
645
  msgstr "до"
1626
  msgstr "Избери измежду най-ползваните тагоее"
1627
 
1628
  #: includes/event-organiser-cpt.php:163
1629
+ #: includes/event-organiser-event-functions.php:1577
1630
  #: templates/event-meta-event-single.php:66
1631
  msgid "Tags"
1632
  msgstr "Тагове"
1994
  msgid "Assign the category a colour."
1995
  msgstr "Задайите цвят на категорията"
1996
 
1997
+ #: includes/event-organiser-event-functions.php:783
1998
  #: includes/event-organiser-register.php:313
1999
  msgid "last"
2000
  msgstr "последен"
2001
 
2002
+ #: includes/event-organiser-event-functions.php:783
2003
  #: includes/event-organiser-register.php:309
2004
  msgid "first"
2005
  msgstr "първи"
2006
 
2007
+ #: includes/event-organiser-event-functions.php:783
2008
  #: includes/event-organiser-register.php:310
2009
  msgid "second"
2010
  msgstr "втори"
2011
 
2012
+ #: includes/event-organiser-event-functions.php:783
2013
  #: includes/event-organiser-register.php:311
2014
  msgid "third"
2015
  msgstr "трети"
2016
 
2017
+ #: includes/event-organiser-event-functions.php:783
2018
  #: includes/event-organiser-register.php:312
2019
  msgid "fourth"
2020
  msgstr "четвърти"
2021
 
2022
+ #: includes/event-organiser-event-functions.php:793
2023
  msgid "one time only"
2024
  msgstr "само веднъж"
2025
 
2026
+ #: includes/event-organiser-event-functions.php:796
2027
  msgid "custom recurrence"
2028
  msgstr "Повторение"
2029
 
2030
+ #: includes/event-organiser-event-functions.php:803
2031
  #: includes/event-organiser-register.php:298
2032
  msgid "every day"
2033
  msgstr "всеки ден"
2034
 
2035
+ #: includes/event-organiser-event-functions.php:805
2036
  #: includes/event-organiser-register.php:299
2037
  #, php-format
2038
  msgid "every %d days"
2039
  msgstr "всеки %d дни"
2040
 
2041
+ #: includes/event-organiser-event-functions.php:811
2042
  #: includes/event-organiser-register.php:300
2043
  msgid "every week on"
2044
  msgstr "всяка седмица на"
2045
 
2046
+ #: includes/event-organiser-event-functions.php:813
2047
  #: includes/event-organiser-register.php:301
2048
  #, php-format
2049
  msgid "every %d weeks on"
2050
  msgstr "всеки %d седмици на"
2051
 
2052
+ #: includes/event-organiser-event-functions.php:824
2053
  #: includes/event-organiser-register.php:302
2054
  msgid "every month on the"
2055
  msgstr "всеки месец на"
2056
 
2057
+ #: includes/event-organiser-event-functions.php:826
2058
  #: includes/event-organiser-register.php:303
2059
  #, php-format
2060
  msgid "every %d months on the"
2061
  msgstr "всеки %d месеци на"
2062
 
2063
+ #: includes/event-organiser-event-functions.php:855
2064
  msgid "every year"
2065
  msgstr "всяка година"
2066
 
2067
+ #: includes/event-organiser-event-functions.php:857
2068
  #, php-format
2069
  msgid "every %d years"
2070
  msgstr "всеки %d години"
2220
  msgid "Event does not contain any dates."
2221
  msgstr ""
2222
 
2223
+ #: includes/event.php:1085
2224
  msgid "Occurrence not deleted. Occurrence not found."
2225
  msgstr ""
2226
 
2227
+ #: includes/event.php:1141
2228
  msgid "There is already an occurrence on this date"
2229
  msgstr ""
2230
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2017-04-16T23:21:14+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr "Incloure el enllaç \"Afegir a Google\""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr "Tot el dia"
62
 
@@ -252,7 +252,7 @@ msgstr "Categories Esdeveniment"
252
 
253
  #: classes/class-eo-widget-categories.php:25
254
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
255
- #: includes/event-organiser-event-functions.php:1563
256
  #: templates/event-meta-event-single.php:62
257
  msgid "Categories"
258
  msgstr "Categoríes"
@@ -376,7 +376,7 @@ msgid "24 hour time"
376
  msgstr "De 24 hores"
377
 
378
  #: event-organiser-calendar.php:256
379
- #: includes/event-organiser-event-functions.php:1500
380
  msgid "Loading&#8230;"
381
  msgstr "Carregant..."
382
 
@@ -646,7 +646,7 @@ msgid "day of week"
646
  msgstr "dia de la setmana"
647
 
648
  #: event-organiser-edit.php:225
649
- #: includes/event-organiser-event-functions.php:856
650
  #: includes/event-organiser-register.php:307
651
  msgid "until"
652
  msgstr "fins"
@@ -1663,7 +1663,7 @@ msgid "Choose from the most used tags"
1663
  msgstr "Trieu entre les etiquetes més utilitzades"
1664
 
1665
  #: includes/event-organiser-cpt.php:163
1666
- #: includes/event-organiser-event-functions.php:1571
1667
  #: templates/event-meta-event-single.php:66
1668
  msgid "Tags"
1669
  msgstr "Etiquetes"
@@ -2023,77 +2023,77 @@ msgstr "Color"
2023
  msgid "Assign the category a colour."
2024
  msgstr "Asignar un color a la categoria"
2025
 
2026
- #: includes/event-organiser-event-functions.php:777
2027
  #: includes/event-organiser-register.php:313
2028
  msgid "last"
2029
  msgstr "últim"
2030
 
2031
- #: includes/event-organiser-event-functions.php:777
2032
  #: includes/event-organiser-register.php:309
2033
  msgid "first"
2034
  msgstr "primer"
2035
 
2036
- #: includes/event-organiser-event-functions.php:777
2037
  #: includes/event-organiser-register.php:310
2038
  msgid "second"
2039
  msgstr "segon"
2040
 
2041
- #: includes/event-organiser-event-functions.php:777
2042
  #: includes/event-organiser-register.php:311
2043
  msgid "third"
2044
  msgstr "tercer"
2045
 
2046
- #: includes/event-organiser-event-functions.php:777
2047
  #: includes/event-organiser-register.php:312
2048
  msgid "fourth"
2049
  msgstr "quart"
2050
 
2051
- #: includes/event-organiser-event-functions.php:787
2052
  msgid "one time only"
2053
  msgstr "una sola vegada"
2054
 
2055
- #: includes/event-organiser-event-functions.php:790
2056
  msgid "custom recurrence"
2057
  msgstr ""
2058
 
2059
- #: includes/event-organiser-event-functions.php:797
2060
  #: includes/event-organiser-register.php:298
2061
  msgid "every day"
2062
  msgstr "cada dia"
2063
 
2064
- #: includes/event-organiser-event-functions.php:799
2065
  #: includes/event-organiser-register.php:299
2066
  #, php-format
2067
  msgid "every %d days"
2068
  msgstr "cada %d dies"
2069
 
2070
- #: includes/event-organiser-event-functions.php:805
2071
  #: includes/event-organiser-register.php:300
2072
  msgid "every week on"
2073
  msgstr "cada setmana a"
2074
 
2075
- #: includes/event-organiser-event-functions.php:807
2076
  #: includes/event-organiser-register.php:301
2077
  #, php-format
2078
  msgid "every %d weeks on"
2079
  msgstr "cada %d setmanes a"
2080
 
2081
- #: includes/event-organiser-event-functions.php:818
2082
  #: includes/event-organiser-register.php:302
2083
  msgid "every month on the"
2084
  msgstr "cada mes a"
2085
 
2086
- #: includes/event-organiser-event-functions.php:820
2087
  #: includes/event-organiser-register.php:303
2088
  #, php-format
2089
  msgid "every %d months on the"
2090
  msgstr "cada %d mesos a"
2091
 
2092
- #: includes/event-organiser-event-functions.php:849
2093
  msgid "every year"
2094
  msgstr "cada any"
2095
 
2096
- #: includes/event-organiser-event-functions.php:851
2097
  #, php-format
2098
  msgid "every %d years"
2099
  msgstr "cada %d anys"
@@ -2249,11 +2249,11 @@ msgstr "Horari mensual no vàlid (ordinal no vàlid)"
2249
  msgid "Event does not contain any dates."
2250
  msgstr "L'esdeveniment no te dates."
2251
 
2252
- #: includes/event.php:1080
2253
  msgid "Occurrence not deleted. Occurrence not found."
2254
  msgstr "Ocurrència no esborrada. L'ocurrència no s'ha trobat."
2255
 
2256
- #: includes/event.php:1136
2257
  msgid "There is already an occurrence on this date"
2258
  msgstr ""
2259
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2017-04-16T23:21:14+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr "Incloure el enllaç \"Afegir a Google\""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr "Tot el dia"
62
 
252
 
253
  #: classes/class-eo-widget-categories.php:25
254
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
255
+ #: includes/event-organiser-event-functions.php:1569
256
  #: templates/event-meta-event-single.php:62
257
  msgid "Categories"
258
  msgstr "Categoríes"
376
  msgstr "De 24 hores"
377
 
378
  #: event-organiser-calendar.php:256
379
+ #: includes/event-organiser-event-functions.php:1506
380
  msgid "Loading&#8230;"
381
  msgstr "Carregant..."
382
 
646
  msgstr "dia de la setmana"
647
 
648
  #: event-organiser-edit.php:225
649
+ #: includes/event-organiser-event-functions.php:862
650
  #: includes/event-organiser-register.php:307
651
  msgid "until"
652
  msgstr "fins"
1663
  msgstr "Trieu entre les etiquetes més utilitzades"
1664
 
1665
  #: includes/event-organiser-cpt.php:163
1666
+ #: includes/event-organiser-event-functions.php:1577
1667
  #: templates/event-meta-event-single.php:66
1668
  msgid "Tags"
1669
  msgstr "Etiquetes"
2023
  msgid "Assign the category a colour."
2024
  msgstr "Asignar un color a la categoria"
2025
 
2026
+ #: includes/event-organiser-event-functions.php:783
2027
  #: includes/event-organiser-register.php:313
2028
  msgid "last"
2029
  msgstr "últim"
2030
 
2031
+ #: includes/event-organiser-event-functions.php:783
2032
  #: includes/event-organiser-register.php:309
2033
  msgid "first"
2034
  msgstr "primer"
2035
 
2036
+ #: includes/event-organiser-event-functions.php:783
2037
  #: includes/event-organiser-register.php:310
2038
  msgid "second"
2039
  msgstr "segon"
2040
 
2041
+ #: includes/event-organiser-event-functions.php:783
2042
  #: includes/event-organiser-register.php:311
2043
  msgid "third"
2044
  msgstr "tercer"
2045
 
2046
+ #: includes/event-organiser-event-functions.php:783
2047
  #: includes/event-organiser-register.php:312
2048
  msgid "fourth"
2049
  msgstr "quart"
2050
 
2051
+ #: includes/event-organiser-event-functions.php:793
2052
  msgid "one time only"
2053
  msgstr "una sola vegada"
2054
 
2055
+ #: includes/event-organiser-event-functions.php:796
2056
  msgid "custom recurrence"
2057
  msgstr ""
2058
 
2059
+ #: includes/event-organiser-event-functions.php:803
2060
  #: includes/event-organiser-register.php:298
2061
  msgid "every day"
2062
  msgstr "cada dia"
2063
 
2064
+ #: includes/event-organiser-event-functions.php:805
2065
  #: includes/event-organiser-register.php:299
2066
  #, php-format
2067
  msgid "every %d days"
2068
  msgstr "cada %d dies"
2069
 
2070
+ #: includes/event-organiser-event-functions.php:811
2071
  #: includes/event-organiser-register.php:300
2072
  msgid "every week on"
2073
  msgstr "cada setmana a"
2074
 
2075
+ #: includes/event-organiser-event-functions.php:813
2076
  #: includes/event-organiser-register.php:301
2077
  #, php-format
2078
  msgid "every %d weeks on"
2079
  msgstr "cada %d setmanes a"
2080
 
2081
+ #: includes/event-organiser-event-functions.php:824
2082
  #: includes/event-organiser-register.php:302
2083
  msgid "every month on the"
2084
  msgstr "cada mes a"
2085
 
2086
+ #: includes/event-organiser-event-functions.php:826
2087
  #: includes/event-organiser-register.php:303
2088
  #, php-format
2089
  msgid "every %d months on the"
2090
  msgstr "cada %d mesos a"
2091
 
2092
+ #: includes/event-organiser-event-functions.php:855
2093
  msgid "every year"
2094
  msgstr "cada any"
2095
 
2096
+ #: includes/event-organiser-event-functions.php:857
2097
  #, php-format
2098
  msgid "every %d years"
2099
  msgstr "cada %d anys"
2249
  msgid "Event does not contain any dates."
2250
  msgstr "L'esdeveniment no te dates."
2251
 
2252
+ #: includes/event.php:1085
2253
  msgid "Occurrence not deleted. Occurrence not found."
2254
  msgstr "Ocurrència no esborrada. L'ocurrència no s'ha trobat."
2255
 
2256
+ #: includes/event.php:1141
2257
  msgid "There is already an occurrence on this date"
2258
  msgstr ""
2259
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2017-10-09T20:46:49+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -57,7 +57,7 @@ msgid "Include 'Add To Google' link"
57
  msgstr "Zahrnout odkaz 'Přidat do Googlu'"
58
 
59
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
60
- #: includes/event-organiser-event-functions.php:1382
61
  msgid "All day"
62
  msgstr "Celý den"
63
 
@@ -252,7 +252,7 @@ msgstr "Kategorie události"
252
 
253
  #: classes/class-eo-widget-categories.php:25
254
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
255
- #: includes/event-organiser-event-functions.php:1563
256
  #: templates/event-meta-event-single.php:62
257
  msgid "Categories"
258
  msgstr "Kategorie"
@@ -377,7 +377,7 @@ msgid "24 hour time"
377
  msgstr "24 hodinový čas"
378
 
379
  #: event-organiser-calendar.php:256
380
- #: includes/event-organiser-event-functions.php:1500
381
  msgid "Loading&#8230;"
382
  msgstr "Načítám..."
383
 
@@ -648,7 +648,7 @@ msgid "day of week"
648
  msgstr "den v týdnu"
649
 
650
  #: event-organiser-edit.php:225
651
- #: includes/event-organiser-event-functions.php:856
652
  #: includes/event-organiser-register.php:307
653
  msgid "until"
654
  msgstr "dokud"
@@ -1674,7 +1674,7 @@ msgid "Choose from the most used tags"
1674
  msgstr "Vyberte z nejpoužívanějších štítků"
1675
 
1676
  #: includes/event-organiser-cpt.php:163
1677
- #: includes/event-organiser-event-functions.php:1571
1678
  #: templates/event-meta-event-single.php:66
1679
  msgid "Tags"
1680
  msgstr "Štítky"
@@ -2048,77 +2048,77 @@ msgstr "Barva"
2048
  msgid "Assign the category a colour."
2049
  msgstr "Přířadit barvu kategorii."
2050
 
2051
- #: includes/event-organiser-event-functions.php:777
2052
  #: includes/event-organiser-register.php:313
2053
  msgid "last"
2054
  msgstr "poslední"
2055
 
2056
- #: includes/event-organiser-event-functions.php:777
2057
  #: includes/event-organiser-register.php:309
2058
  msgid "first"
2059
  msgstr "první"
2060
 
2061
- #: includes/event-organiser-event-functions.php:777
2062
  #: includes/event-organiser-register.php:310
2063
  msgid "second"
2064
  msgstr "druhý"
2065
 
2066
- #: includes/event-organiser-event-functions.php:777
2067
  #: includes/event-organiser-register.php:311
2068
  msgid "third"
2069
  msgstr "třetí"
2070
 
2071
- #: includes/event-organiser-event-functions.php:777
2072
  #: includes/event-organiser-register.php:312
2073
  msgid "fourth"
2074
  msgstr "čtvrtý"
2075
 
2076
- #: includes/event-organiser-event-functions.php:787
2077
  msgid "one time only"
2078
  msgstr "jen jednou"
2079
 
2080
- #: includes/event-organiser-event-functions.php:790
2081
  msgid "custom recurrence"
2082
  msgstr "ručně nastavené opakování"
2083
 
2084
- #: includes/event-organiser-event-functions.php:797
2085
  #: includes/event-organiser-register.php:298
2086
  msgid "every day"
2087
  msgstr "každý den"
2088
 
2089
- #: includes/event-organiser-event-functions.php:799
2090
  #: includes/event-organiser-register.php:299
2091
  #, php-format
2092
  msgid "every %d days"
2093
  msgstr "každých %d dní"
2094
 
2095
- #: includes/event-organiser-event-functions.php:805
2096
  #: includes/event-organiser-register.php:300
2097
  msgid "every week on"
2098
  msgstr "každý týden v"
2099
 
2100
- #: includes/event-organiser-event-functions.php:807
2101
  #: includes/event-organiser-register.php:301
2102
  #, php-format
2103
  msgid "every %d weeks on"
2104
  msgstr "každých %d týdnů v"
2105
 
2106
- #: includes/event-organiser-event-functions.php:818
2107
  #: includes/event-organiser-register.php:302
2108
  msgid "every month on the"
2109
  msgstr "každý měsíc v"
2110
 
2111
- #: includes/event-organiser-event-functions.php:820
2112
  #: includes/event-organiser-register.php:303
2113
  #, php-format
2114
  msgid "every %d months on the"
2115
  msgstr "každých %d měsíců v"
2116
 
2117
- #: includes/event-organiser-event-functions.php:849
2118
  msgid "every year"
2119
  msgstr "každý rok"
2120
 
2121
- #: includes/event-organiser-event-functions.php:851
2122
  #, php-format
2123
  msgid "every %d years"
2124
  msgstr "každých %d let"
@@ -2278,11 +2278,11 @@ msgstr "Neplatný měsíční rozvrh (neplatná pořadová číslovka)"
2278
  msgid "Event does not contain any dates."
2279
  msgstr "Událost neobsahuje datum."
2280
 
2281
- #: includes/event.php:1080
2282
  msgid "Occurrence not deleted. Occurrence not found."
2283
  msgstr "Výskyt nesmazán. Výskyt nenalezen."
2284
 
2285
- #: includes/event.php:1136
2286
  msgid "There is already an occurrence on this date"
2287
  msgstr "Událost již existuje v tento den"
2288
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2017-10-09T20:46:49+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
57
  msgstr "Zahrnout odkaz 'Přidat do Googlu'"
58
 
59
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
60
+ #: includes/event-organiser-event-functions.php:1388
61
  msgid "All day"
62
  msgstr "Celý den"
63
 
252
 
253
  #: classes/class-eo-widget-categories.php:25
254
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
255
+ #: includes/event-organiser-event-functions.php:1569
256
  #: templates/event-meta-event-single.php:62
257
  msgid "Categories"
258
  msgstr "Kategorie"
377
  msgstr "24 hodinový čas"
378
 
379
  #: event-organiser-calendar.php:256
380
+ #: includes/event-organiser-event-functions.php:1506
381
  msgid "Loading&#8230;"
382
  msgstr "Načítám..."
383
 
648
  msgstr "den v týdnu"
649
 
650
  #: event-organiser-edit.php:225
651
+ #: includes/event-organiser-event-functions.php:862
652
  #: includes/event-organiser-register.php:307
653
  msgid "until"
654
  msgstr "dokud"
1674
  msgstr "Vyberte z nejpoužívanějších štítků"
1675
 
1676
  #: includes/event-organiser-cpt.php:163
1677
+ #: includes/event-organiser-event-functions.php:1577
1678
  #: templates/event-meta-event-single.php:66
1679
  msgid "Tags"
1680
  msgstr "Štítky"
2048
  msgid "Assign the category a colour."
2049
  msgstr "Přířadit barvu kategorii."
2050
 
2051
+ #: includes/event-organiser-event-functions.php:783
2052
  #: includes/event-organiser-register.php:313
2053
  msgid "last"
2054
  msgstr "poslední"
2055
 
2056
+ #: includes/event-organiser-event-functions.php:783
2057
  #: includes/event-organiser-register.php:309
2058
  msgid "first"
2059
  msgstr "první"
2060
 
2061
+ #: includes/event-organiser-event-functions.php:783
2062
  #: includes/event-organiser-register.php:310
2063
  msgid "second"
2064
  msgstr "druhý"
2065
 
2066
+ #: includes/event-organiser-event-functions.php:783
2067
  #: includes/event-organiser-register.php:311
2068
  msgid "third"
2069
  msgstr "třetí"
2070
 
2071
+ #: includes/event-organiser-event-functions.php:783
2072
  #: includes/event-organiser-register.php:312
2073
  msgid "fourth"
2074
  msgstr "čtvrtý"
2075
 
2076
+ #: includes/event-organiser-event-functions.php:793
2077
  msgid "one time only"
2078
  msgstr "jen jednou"
2079
 
2080
+ #: includes/event-organiser-event-functions.php:796
2081
  msgid "custom recurrence"
2082
  msgstr "ručně nastavené opakování"
2083
 
2084
+ #: includes/event-organiser-event-functions.php:803
2085
  #: includes/event-organiser-register.php:298
2086
  msgid "every day"
2087
  msgstr "každý den"
2088
 
2089
+ #: includes/event-organiser-event-functions.php:805
2090
  #: includes/event-organiser-register.php:299
2091
  #, php-format
2092
  msgid "every %d days"
2093
  msgstr "každých %d dní"
2094
 
2095
+ #: includes/event-organiser-event-functions.php:811
2096
  #: includes/event-organiser-register.php:300
2097
  msgid "every week on"
2098
  msgstr "každý týden v"
2099
 
2100
+ #: includes/event-organiser-event-functions.php:813
2101
  #: includes/event-organiser-register.php:301
2102
  #, php-format
2103
  msgid "every %d weeks on"
2104
  msgstr "každých %d týdnů v"
2105
 
2106
+ #: includes/event-organiser-event-functions.php:824
2107
  #: includes/event-organiser-register.php:302
2108
  msgid "every month on the"
2109
  msgstr "každý měsíc v"
2110
 
2111
+ #: includes/event-organiser-event-functions.php:826
2112
  #: includes/event-organiser-register.php:303
2113
  #, php-format
2114
  msgid "every %d months on the"
2115
  msgstr "každých %d měsíců v"
2116
 
2117
+ #: includes/event-organiser-event-functions.php:855
2118
  msgid "every year"
2119
  msgstr "každý rok"
2120
 
2121
+ #: includes/event-organiser-event-functions.php:857
2122
  #, php-format
2123
  msgid "every %d years"
2124
  msgstr "každých %d let"
2278
  msgid "Event does not contain any dates."
2279
  msgstr "Událost neobsahuje datum."
2280
 
2281
+ #: includes/event.php:1085
2282
  msgid "Occurrence not deleted. Occurrence not found."
2283
  msgstr "Výskyt nesmazán. Výskyt nenalezen."
2284
 
2285
+ #: includes/event.php:1141
2286
  msgid "There is already an occurrence on this date"
2287
  msgstr "Událost již existuje v tento den"
2288
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2017-04-14T23:27:45+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr "Inkluder 'Add To Google' link"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr "Hele dagen"
62
 
@@ -252,7 +252,7 @@ msgstr "Begivenhedskategorier"
252
 
253
  #: classes/class-eo-widget-categories.php:25
254
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
255
- #: includes/event-organiser-event-functions.php:1563
256
  #: templates/event-meta-event-single.php:62
257
  msgid "Categories"
258
  msgstr "Kategorier"
@@ -376,7 +376,7 @@ msgid "24 hour time"
376
  msgstr "24 timers klokkeslæt"
377
 
378
  #: event-organiser-calendar.php:256
379
- #: includes/event-organiser-event-functions.php:1500
380
  msgid "Loading&#8230;"
381
  msgstr "Indlæser&#8230;"
382
 
@@ -646,7 +646,7 @@ msgid "day of week"
646
  msgstr "dag i ugen"
647
 
648
  #: event-organiser-edit.php:225
649
- #: includes/event-organiser-event-functions.php:856
650
  #: includes/event-organiser-register.php:307
651
  msgid "until"
652
  msgstr "indtil"
@@ -1658,7 +1658,7 @@ msgid "Choose from the most used tags"
1658
  msgstr "Vælg fra de mest brugte tags"
1659
 
1660
  #: includes/event-organiser-cpt.php:163
1661
- #: includes/event-organiser-event-functions.php:1571
1662
  #: templates/event-meta-event-single.php:66
1663
  msgid "Tags"
1664
  msgstr "Tags"
@@ -2033,77 +2033,77 @@ msgstr "Farve"
2033
  msgid "Assign the category a colour."
2034
  msgstr "Tilføj farve til denne kategori"
2035
 
2036
- #: includes/event-organiser-event-functions.php:777
2037
  #: includes/event-organiser-register.php:313
2038
  msgid "last"
2039
  msgstr "sidste"
2040
 
2041
- #: includes/event-organiser-event-functions.php:777
2042
  #: includes/event-organiser-register.php:309
2043
  msgid "first"
2044
  msgstr "første"
2045
 
2046
- #: includes/event-organiser-event-functions.php:777
2047
  #: includes/event-organiser-register.php:310
2048
  msgid "second"
2049
  msgstr "anden"
2050
 
2051
- #: includes/event-organiser-event-functions.php:777
2052
  #: includes/event-organiser-register.php:311
2053
  msgid "third"
2054
  msgstr "tredje"
2055
 
2056
- #: includes/event-organiser-event-functions.php:777
2057
  #: includes/event-organiser-register.php:312
2058
  msgid "fourth"
2059
  msgstr "fjerde"
2060
 
2061
- #: includes/event-organiser-event-functions.php:787
2062
  msgid "one time only"
2063
  msgstr "kun en gang"
2064
 
2065
- #: includes/event-organiser-event-functions.php:790
2066
  msgid "custom recurrence"
2067
  msgstr "Brugerindstillet gentagelse"
2068
 
2069
- #: includes/event-organiser-event-functions.php:797
2070
  #: includes/event-organiser-register.php:298
2071
  msgid "every day"
2072
  msgstr "hver dag"
2073
 
2074
- #: includes/event-organiser-event-functions.php:799
2075
  #: includes/event-organiser-register.php:299
2076
  #, php-format
2077
  msgid "every %d days"
2078
  msgstr "hver %d. dag"
2079
 
2080
- #: includes/event-organiser-event-functions.php:805
2081
  #: includes/event-organiser-register.php:300
2082
  msgid "every week on"
2083
  msgstr "hver uge på en"
2084
 
2085
- #: includes/event-organiser-event-functions.php:807
2086
  #: includes/event-organiser-register.php:301
2087
  #, php-format
2088
  msgid "every %d weeks on"
2089
  msgstr "hver %d. uge på en"
2090
 
2091
- #: includes/event-organiser-event-functions.php:818
2092
  #: includes/event-organiser-register.php:302
2093
  msgid "every month on the"
2094
  msgstr "hver måned på den"
2095
 
2096
- #: includes/event-organiser-event-functions.php:820
2097
  #: includes/event-organiser-register.php:303
2098
  #, php-format
2099
  msgid "every %d months on the"
2100
  msgstr "hver %d. måned på den"
2101
 
2102
- #: includes/event-organiser-event-functions.php:849
2103
  msgid "every year"
2104
  msgstr "hvert år"
2105
 
2106
- #: includes/event-organiser-event-functions.php:851
2107
  #, php-format
2108
  msgid "every %d years"
2109
  msgstr "hvert %d. år"
@@ -2259,11 +2259,11 @@ msgstr "Ugyldig månedlig indtastning (ugyldig ordinal)"
2259
  msgid "Event does not contain any dates."
2260
  msgstr "Eventet har ikke nogle datoer"
2261
 
2262
- #: includes/event.php:1080
2263
  msgid "Occurrence not deleted. Occurrence not found."
2264
  msgstr "Begivenhed blev ikke slettet. Begivenhed blev ikke fundet."
2265
 
2266
- #: includes/event.php:1136
2267
  msgid "There is already an occurrence on this date"
2268
  msgstr "Der er allerede en begivenhed på denne dato"
2269
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2017-04-14T23:27:45+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr "Inkluder 'Add To Google' link"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr "Hele dagen"
62
 
252
 
253
  #: classes/class-eo-widget-categories.php:25
254
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
255
+ #: includes/event-organiser-event-functions.php:1569
256
  #: templates/event-meta-event-single.php:62
257
  msgid "Categories"
258
  msgstr "Kategorier"
376
  msgstr "24 timers klokkeslæt"
377
 
378
  #: event-organiser-calendar.php:256
379
+ #: includes/event-organiser-event-functions.php:1506
380
  msgid "Loading&#8230;"
381
  msgstr "Indlæser&#8230;"
382
 
646
  msgstr "dag i ugen"
647
 
648
  #: event-organiser-edit.php:225
649
+ #: includes/event-organiser-event-functions.php:862
650
  #: includes/event-organiser-register.php:307
651
  msgid "until"
652
  msgstr "indtil"
1658
  msgstr "Vælg fra de mest brugte tags"
1659
 
1660
  #: includes/event-organiser-cpt.php:163
1661
+ #: includes/event-organiser-event-functions.php:1577
1662
  #: templates/event-meta-event-single.php:66
1663
  msgid "Tags"
1664
  msgstr "Tags"
2033
  msgid "Assign the category a colour."
2034
  msgstr "Tilføj farve til denne kategori"
2035
 
2036
+ #: includes/event-organiser-event-functions.php:783
2037
  #: includes/event-organiser-register.php:313
2038
  msgid "last"
2039
  msgstr "sidste"
2040
 
2041
+ #: includes/event-organiser-event-functions.php:783
2042
  #: includes/event-organiser-register.php:309
2043
  msgid "first"
2044
  msgstr "første"
2045
 
2046
+ #: includes/event-organiser-event-functions.php:783
2047
  #: includes/event-organiser-register.php:310
2048
  msgid "second"
2049
  msgstr "anden"
2050
 
2051
+ #: includes/event-organiser-event-functions.php:783
2052
  #: includes/event-organiser-register.php:311
2053
  msgid "third"
2054
  msgstr "tredje"
2055
 
2056
+ #: includes/event-organiser-event-functions.php:783
2057
  #: includes/event-organiser-register.php:312
2058
  msgid "fourth"
2059
  msgstr "fjerde"
2060
 
2061
+ #: includes/event-organiser-event-functions.php:793
2062
  msgid "one time only"
2063
  msgstr "kun en gang"
2064
 
2065
+ #: includes/event-organiser-event-functions.php:796
2066
  msgid "custom recurrence"
2067
  msgstr "Brugerindstillet gentagelse"
2068
 
2069
+ #: includes/event-organiser-event-functions.php:803
2070
  #: includes/event-organiser-register.php:298
2071
  msgid "every day"
2072
  msgstr "hver dag"
2073
 
2074
+ #: includes/event-organiser-event-functions.php:805
2075
  #: includes/event-organiser-register.php:299
2076
  #, php-format
2077
  msgid "every %d days"
2078
  msgstr "hver %d. dag"
2079
 
2080
+ #: includes/event-organiser-event-functions.php:811
2081
  #: includes/event-organiser-register.php:300
2082
  msgid "every week on"
2083
  msgstr "hver uge på en"
2084
 
2085
+ #: includes/event-organiser-event-functions.php:813
2086
  #: includes/event-organiser-register.php:301
2087
  #, php-format
2088
  msgid "every %d weeks on"
2089
  msgstr "hver %d. uge på en"
2090
 
2091
+ #: includes/event-organiser-event-functions.php:824
2092
  #: includes/event-organiser-register.php:302
2093
  msgid "every month on the"
2094
  msgstr "hver måned på den"
2095
 
2096
+ #: includes/event-organiser-event-functions.php:826
2097
  #: includes/event-organiser-register.php:303
2098
  #, php-format
2099
  msgid "every %d months on the"
2100
  msgstr "hver %d. måned på den"
2101
 
2102
+ #: includes/event-organiser-event-functions.php:855
2103
  msgid "every year"
2104
  msgstr "hvert år"
2105
 
2106
+ #: includes/event-organiser-event-functions.php:857
2107
  #, php-format
2108
  msgid "every %d years"
2109
  msgstr "hvert %d. år"
2259
  msgid "Event does not contain any dates."
2260
  msgstr "Eventet har ikke nogle datoer"
2261
 
2262
+ #: includes/event.php:1085
2263
  msgid "Occurrence not deleted. Occurrence not found."
2264
  msgstr "Begivenhed blev ikke slettet. Begivenhed blev ikke fundet."
2265
 
2266
+ #: includes/event.php:1141
2267
  msgid "There is already an occurrence on this date"
2268
  msgstr "Der er allerede en begivenhed på denne dato"
2269
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2017-04-14T23:01:46+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr "'Add To Google'-Link anzeigen"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr "ganztags"
62
 
@@ -253,7 +253,7 @@ msgstr "Terminkategorien"
253
 
254
  #: classes/class-eo-widget-categories.php:25
255
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
256
- #: includes/event-organiser-event-functions.php:1563
257
  #: templates/event-meta-event-single.php:62
258
  msgid "Categories"
259
  msgstr "Terminkategorien"
@@ -382,7 +382,7 @@ msgid "24 hour time"
382
  msgstr "24-Stunden-Zeit"
383
 
384
  #: event-organiser-calendar.php:256
385
- #: includes/event-organiser-event-functions.php:1500
386
  msgid "Loading&#8230;"
387
  msgstr "Laden&#8230;"
388
 
@@ -661,7 +661,7 @@ msgid "day of week"
661
  msgstr "Tag der Woche"
662
 
663
  #: event-organiser-edit.php:225
664
- #: includes/event-organiser-event-functions.php:856
665
  #: includes/event-organiser-register.php:307
666
  msgid "until"
667
  msgstr "bis"
@@ -1690,7 +1690,7 @@ msgid "Choose from the most used tags"
1690
  msgstr "Aus den meist verwendeten Terminschlagworten auswählen"
1691
 
1692
  #: includes/event-organiser-cpt.php:163
1693
- #: includes/event-organiser-event-functions.php:1571
1694
  #: templates/event-meta-event-single.php:66
1695
  msgid "Tags"
1696
  msgstr "Terminschlagworte"
@@ -2071,77 +2071,77 @@ msgstr "Farbe"
2071
  msgid "Assign the category a colour."
2072
  msgstr "Der Unterrichtskategorie eine Farbe zuweisen."
2073
 
2074
- #: includes/event-organiser-event-functions.php:777
2075
  #: includes/event-organiser-register.php:313
2076
  msgid "last"
2077
  msgstr "letzten"
2078
 
2079
- #: includes/event-organiser-event-functions.php:777
2080
  #: includes/event-organiser-register.php:309
2081
  msgid "first"
2082
  msgstr "ersten"
2083
 
2084
- #: includes/event-organiser-event-functions.php:777
2085
  #: includes/event-organiser-register.php:310
2086
  msgid "second"
2087
  msgstr "zweiten"
2088
 
2089
- #: includes/event-organiser-event-functions.php:777
2090
  #: includes/event-organiser-register.php:311
2091
  msgid "third"
2092
  msgstr "dritten"
2093
 
2094
- #: includes/event-organiser-event-functions.php:777
2095
  #: includes/event-organiser-register.php:312
2096
  msgid "fourth"
2097
  msgstr "vierten"
2098
 
2099
- #: includes/event-organiser-event-functions.php:787
2100
  msgid "one time only"
2101
  msgstr "einmalig"
2102
 
2103
- #: includes/event-organiser-event-functions.php:790
2104
  msgid "custom recurrence"
2105
  msgstr "Eigene Wiederholung"
2106
 
2107
- #: includes/event-organiser-event-functions.php:797
2108
  #: includes/event-organiser-register.php:298
2109
  msgid "every day"
2110
  msgstr "jeden Tag"
2111
 
2112
- #: includes/event-organiser-event-functions.php:799
2113
  #: includes/event-organiser-register.php:299
2114
  #, php-format
2115
  msgid "every %d days"
2116
  msgstr "alle %d Tage"
2117
 
2118
- #: includes/event-organiser-event-functions.php:805
2119
  #: includes/event-organiser-register.php:300
2120
  msgid "every week on"
2121
  msgstr "jede Woche am"
2122
 
2123
- #: includes/event-organiser-event-functions.php:807
2124
  #: includes/event-organiser-register.php:301
2125
  #, php-format
2126
  msgid "every %d weeks on"
2127
  msgstr "alle %d Wochen am"
2128
 
2129
- #: includes/event-organiser-event-functions.php:818
2130
  #: includes/event-organiser-register.php:302
2131
  msgid "every month on the"
2132
  msgstr "jeden Monat am"
2133
 
2134
- #: includes/event-organiser-event-functions.php:820
2135
  #: includes/event-organiser-register.php:303
2136
  #, php-format
2137
  msgid "every %d months on the"
2138
  msgstr "alle %d Monate am"
2139
 
2140
- #: includes/event-organiser-event-functions.php:849
2141
  msgid "every year"
2142
  msgstr "jedes Jahr"
2143
 
2144
- #: includes/event-organiser-event-functions.php:851
2145
  #, php-format
2146
  msgid "every %d years"
2147
  msgstr "alle %d Jahre"
@@ -2303,11 +2303,11 @@ msgstr "Ungültiger monatlicher Zeitplan (ungültige Ordnungszahl)"
2303
  msgid "Event does not contain any dates."
2304
  msgstr "Der Termin enthält keine Datumsangaben."
2305
 
2306
- #: includes/event.php:1080
2307
  msgid "Occurrence not deleted. Occurrence not found."
2308
  msgstr "Ereignis nicht gelöscht bzw. nicht gefunden."
2309
 
2310
- #: includes/event.php:1136
2311
  #, fuzzy
2312
  msgid "There is already an occurrence on this date"
2313
  msgstr "An diesem Datum wurde bereits ein Ereignis eingetragen."
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2017-04-14T23:01:46+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr "'Add To Google'-Link anzeigen"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr "ganztags"
62
 
253
 
254
  #: classes/class-eo-widget-categories.php:25
255
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
256
+ #: includes/event-organiser-event-functions.php:1569
257
  #: templates/event-meta-event-single.php:62
258
  msgid "Categories"
259
  msgstr "Terminkategorien"
382
  msgstr "24-Stunden-Zeit"
383
 
384
  #: event-organiser-calendar.php:256
385
+ #: includes/event-organiser-event-functions.php:1506
386
  msgid "Loading&#8230;"
387
  msgstr "Laden&#8230;"
388
 
661
  msgstr "Tag der Woche"
662
 
663
  #: event-organiser-edit.php:225
664
+ #: includes/event-organiser-event-functions.php:862
665
  #: includes/event-organiser-register.php:307
666
  msgid "until"
667
  msgstr "bis"
1690
  msgstr "Aus den meist verwendeten Terminschlagworten auswählen"
1691
 
1692
  #: includes/event-organiser-cpt.php:163
1693
+ #: includes/event-organiser-event-functions.php:1577
1694
  #: templates/event-meta-event-single.php:66
1695
  msgid "Tags"
1696
  msgstr "Terminschlagworte"
2071
  msgid "Assign the category a colour."
2072
  msgstr "Der Unterrichtskategorie eine Farbe zuweisen."
2073
 
2074
+ #: includes/event-organiser-event-functions.php:783
2075
  #: includes/event-organiser-register.php:313
2076
  msgid "last"
2077
  msgstr "letzten"
2078
 
2079
+ #: includes/event-organiser-event-functions.php:783
2080
  #: includes/event-organiser-register.php:309
2081
  msgid "first"
2082
  msgstr "ersten"
2083
 
2084
+ #: includes/event-organiser-event-functions.php:783
2085
  #: includes/event-organiser-register.php:310
2086
  msgid "second"
2087
  msgstr "zweiten"
2088
 
2089
+ #: includes/event-organiser-event-functions.php:783
2090
  #: includes/event-organiser-register.php:311
2091
  msgid "third"
2092
  msgstr "dritten"
2093
 
2094
+ #: includes/event-organiser-event-functions.php:783
2095
  #: includes/event-organiser-register.php:312
2096
  msgid "fourth"
2097
  msgstr "vierten"
2098
 
2099
+ #: includes/event-organiser-event-functions.php:793
2100
  msgid "one time only"
2101
  msgstr "einmalig"
2102
 
2103
+ #: includes/event-organiser-event-functions.php:796
2104
  msgid "custom recurrence"
2105
  msgstr "Eigene Wiederholung"
2106
 
2107
+ #: includes/event-organiser-event-functions.php:803
2108
  #: includes/event-organiser-register.php:298
2109
  msgid "every day"
2110
  msgstr "jeden Tag"
2111
 
2112
+ #: includes/event-organiser-event-functions.php:805
2113
  #: includes/event-organiser-register.php:299
2114
  #, php-format
2115
  msgid "every %d days"
2116
  msgstr "alle %d Tage"
2117
 
2118
+ #: includes/event-organiser-event-functions.php:811
2119
  #: includes/event-organiser-register.php:300
2120
  msgid "every week on"
2121
  msgstr "jede Woche am"
2122
 
2123
+ #: includes/event-organiser-event-functions.php:813
2124
  #: includes/event-organiser-register.php:301
2125
  #, php-format
2126
  msgid "every %d weeks on"
2127
  msgstr "alle %d Wochen am"
2128
 
2129
+ #: includes/event-organiser-event-functions.php:824
2130
  #: includes/event-organiser-register.php:302
2131
  msgid "every month on the"
2132
  msgstr "jeden Monat am"
2133
 
2134
+ #: includes/event-organiser-event-functions.php:826
2135
  #: includes/event-organiser-register.php:303
2136
  #, php-format
2137
  msgid "every %d months on the"
2138
  msgstr "alle %d Monate am"
2139
 
2140
+ #: includes/event-organiser-event-functions.php:855
2141
  msgid "every year"
2142
  msgstr "jedes Jahr"
2143
 
2144
+ #: includes/event-organiser-event-functions.php:857
2145
  #, php-format
2146
  msgid "every %d years"
2147
  msgstr "alle %d Jahre"
2303
  msgid "Event does not contain any dates."
2304
  msgstr "Der Termin enthält keine Datumsangaben."
2305
 
2306
+ #: includes/event.php:1085
2307
  msgid "Occurrence not deleted. Occurrence not found."
2308
  msgstr "Ereignis nicht gelöscht bzw. nicht gefunden."
2309
 
2310
+ #: includes/event.php:1141
2311
  #, fuzzy
2312
  msgid "There is already an occurrence on this date"
2313
  msgstr "An diesem Datum wurde bereits ein Ereignis eingetragen."
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2017-04-14T23:02:23+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr "Συμπερίληψη 'Προσθήκη στο Google'"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr "Ολοήμερο"
62
 
@@ -251,7 +251,7 @@ msgstr "Κατηγορίες Event"
251
 
252
  #: classes/class-eo-widget-categories.php:25
253
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
254
- #: includes/event-organiser-event-functions.php:1563
255
  #: templates/event-meta-event-single.php:62
256
  msgid "Categories"
257
  msgstr "Κατηγορίες"
@@ -375,7 +375,7 @@ msgid "24 hour time"
375
  msgstr "24 ώρες"
376
 
377
  #: event-organiser-calendar.php:256
378
- #: includes/event-organiser-event-functions.php:1500
379
  msgid "Loading&#8230;"
380
  msgstr "Φόρτωση ..."
381
 
@@ -646,7 +646,7 @@ msgid "day of week"
646
  msgstr "Ημέρα της Εβδομάδος"
647
 
648
  #: event-organiser-edit.php:225
649
- #: includes/event-organiser-event-functions.php:856
650
  #: includes/event-organiser-register.php:307
651
  msgid "until"
652
  msgstr "Μέχρι"
@@ -1661,7 +1661,7 @@ msgid "Choose from the most used tags"
1661
  msgstr "Επιλέξτε απο τις πιο δημοφιλής ετικέτες"
1662
 
1663
  #: includes/event-organiser-cpt.php:163
1664
- #: includes/event-organiser-event-functions.php:1571
1665
  #: templates/event-meta-event-single.php:66
1666
  msgid "Tags"
1667
  msgstr "Ετικέτες"
@@ -2041,77 +2041,77 @@ msgstr "Χρώμα"
2041
  msgid "Assign the category a colour."
2042
  msgstr "Ορισε στην κατηγορία ένα χρώμα"
2043
 
2044
- #: includes/event-organiser-event-functions.php:777
2045
  #: includes/event-organiser-register.php:313
2046
  msgid "last"
2047
  msgstr "τελεταίο"
2048
 
2049
- #: includes/event-organiser-event-functions.php:777
2050
  #: includes/event-organiser-register.php:309
2051
  msgid "first"
2052
  msgstr "πρώτα"
2053
 
2054
- #: includes/event-organiser-event-functions.php:777
2055
  #: includes/event-organiser-register.php:310
2056
  msgid "second"
2057
  msgstr "δεύτερο"
2058
 
2059
- #: includes/event-organiser-event-functions.php:777
2060
  #: includes/event-organiser-register.php:311
2061
  msgid "third"
2062
  msgstr "τρίτο"
2063
 
2064
- #: includes/event-organiser-event-functions.php:777
2065
  #: includes/event-organiser-register.php:312
2066
  msgid "fourth"
2067
  msgstr "τέταρτο"
2068
 
2069
- #: includes/event-organiser-event-functions.php:787
2070
  msgid "one time only"
2071
  msgstr "Μόνο μια φορά"
2072
 
2073
- #: includes/event-organiser-event-functions.php:790
2074
  msgid "custom recurrence"
2075
  msgstr ""
2076
 
2077
- #: includes/event-organiser-event-functions.php:797
2078
  #: includes/event-organiser-register.php:298
2079
  msgid "every day"
2080
  msgstr "Καθημερινά"
2081
 
2082
- #: includes/event-organiser-event-functions.php:799
2083
  #: includes/event-organiser-register.php:299
2084
  #, php-format
2085
  msgid "every %d days"
2086
  msgstr "κάθε %d μέρες"
2087
 
2088
- #: includes/event-organiser-event-functions.php:805
2089
  #: includes/event-organiser-register.php:300
2090
  msgid "every week on"
2091
  msgstr "Εβδομαδιαία στις "
2092
 
2093
- #: includes/event-organiser-event-functions.php:807
2094
  #: includes/event-organiser-register.php:301
2095
  #, php-format
2096
  msgid "every %d weeks on"
2097
  msgstr "κάθε %d βδομάδες"
2098
 
2099
- #: includes/event-organiser-event-functions.php:818
2100
  #: includes/event-organiser-register.php:302
2101
  msgid "every month on the"
2102
  msgstr "Κάθε μήνα στις"
2103
 
2104
- #: includes/event-organiser-event-functions.php:820
2105
  #: includes/event-organiser-register.php:303
2106
  #, php-format
2107
  msgid "every %d months on the"
2108
  msgstr "κάθε %d μήνα στις"
2109
 
2110
- #: includes/event-organiser-event-functions.php:849
2111
  msgid "every year"
2112
  msgstr "Κάθε χρόνο"
2113
 
2114
- #: includes/event-organiser-event-functions.php:851
2115
  #, php-format
2116
  msgid "every %d years"
2117
  msgstr "κάθε %d χρόνια"
@@ -2267,11 +2267,11 @@ msgstr "Λάθος μηνιαίο πρόγραμμα"
2267
  msgid "Event does not contain any dates."
2268
  msgstr "Το event δεν περιέχει ημερομηνίες."
2269
 
2270
- #: includes/event.php:1080
2271
  msgid "Occurrence not deleted. Occurrence not found."
2272
  msgstr "Το αντικείμενο δεν διαγράφηκε. Το αντικείμενο δεν βρέθηκε."
2273
 
2274
- #: includes/event.php:1136
2275
  msgid "There is already an occurrence on this date"
2276
  msgstr ""
2277
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2017-04-14T23:02:23+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr "Συμπερίληψη 'Προσθήκη στο Google'"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr "Ολοήμερο"
62
 
251
 
252
  #: classes/class-eo-widget-categories.php:25
253
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
254
+ #: includes/event-organiser-event-functions.php:1569
255
  #: templates/event-meta-event-single.php:62
256
  msgid "Categories"
257
  msgstr "Κατηγορίες"
375
  msgstr "24 ώρες"
376
 
377
  #: event-organiser-calendar.php:256
378
+ #: includes/event-organiser-event-functions.php:1506
379
  msgid "Loading&#8230;"
380
  msgstr "Φόρτωση ..."
381
 
646
  msgstr "Ημέρα της Εβδομάδος"
647
 
648
  #: event-organiser-edit.php:225
649
+ #: includes/event-organiser-event-functions.php:862
650
  #: includes/event-organiser-register.php:307
651
  msgid "until"
652
  msgstr "Μέχρι"
1661
  msgstr "Επιλέξτε απο τις πιο δημοφιλής ετικέτες"
1662
 
1663
  #: includes/event-organiser-cpt.php:163
1664
+ #: includes/event-organiser-event-functions.php:1577
1665
  #: templates/event-meta-event-single.php:66
1666
  msgid "Tags"
1667
  msgstr "Ετικέτες"
2041
  msgid "Assign the category a colour."
2042
  msgstr "Ορισε στην κατηγορία ένα χρώμα"
2043
 
2044
+ #: includes/event-organiser-event-functions.php:783
2045
  #: includes/event-organiser-register.php:313
2046
  msgid "last"
2047
  msgstr "τελεταίο"
2048
 
2049
+ #: includes/event-organiser-event-functions.php:783
2050
  #: includes/event-organiser-register.php:309
2051
  msgid "first"
2052
  msgstr "πρώτα"
2053
 
2054
+ #: includes/event-organiser-event-functions.php:783
2055
  #: includes/event-organiser-register.php:310
2056
  msgid "second"
2057
  msgstr "δεύτερο"
2058
 
2059
+ #: includes/event-organiser-event-functions.php:783
2060
  #: includes/event-organiser-register.php:311
2061
  msgid "third"
2062
  msgstr "τρίτο"
2063
 
2064
+ #: includes/event-organiser-event-functions.php:783
2065
  #: includes/event-organiser-register.php:312
2066
  msgid "fourth"
2067
  msgstr "τέταρτο"
2068
 
2069
+ #: includes/event-organiser-event-functions.php:793
2070
  msgid "one time only"
2071
  msgstr "Μόνο μια φορά"
2072
 
2073
+ #: includes/event-organiser-event-functions.php:796
2074
  msgid "custom recurrence"
2075
  msgstr ""
2076
 
2077
+ #: includes/event-organiser-event-functions.php:803
2078
  #: includes/event-organiser-register.php:298
2079
  msgid "every day"
2080
  msgstr "Καθημερινά"
2081
 
2082
+ #: includes/event-organiser-event-functions.php:805
2083
  #: includes/event-organiser-register.php:299
2084
  #, php-format
2085
  msgid "every %d days"
2086
  msgstr "κάθε %d μέρες"
2087
 
2088
+ #: includes/event-organiser-event-functions.php:811
2089
  #: includes/event-organiser-register.php:300
2090
  msgid "every week on"
2091
  msgstr "Εβδομαδιαία στις "
2092
 
2093
+ #: includes/event-organiser-event-functions.php:813
2094
  #: includes/event-organiser-register.php:301
2095
  #, php-format
2096
  msgid "every %d weeks on"
2097
  msgstr "κάθε %d βδομάδες"
2098
 
2099
+ #: includes/event-organiser-event-functions.php:824
2100
  #: includes/event-organiser-register.php:302
2101
  msgid "every month on the"
2102
  msgstr "Κάθε μήνα στις"
2103
 
2104
+ #: includes/event-organiser-event-functions.php:826
2105
  #: includes/event-organiser-register.php:303
2106
  #, php-format
2107
  msgid "every %d months on the"
2108
  msgstr "κάθε %d μήνα στις"
2109
 
2110
+ #: includes/event-organiser-event-functions.php:855
2111
  msgid "every year"
2112
  msgstr "Κάθε χρόνο"
2113
 
2114
+ #: includes/event-organiser-event-functions.php:857
2115
  #, php-format
2116
  msgid "every %d years"
2117
  msgstr "κάθε %d χρόνια"
2267
  msgid "Event does not contain any dates."
2268
  msgstr "Το event δεν περιέχει ημερομηνίες."
2269
 
2270
+ #: includes/event.php:1085
2271
  msgid "Occurrence not deleted. Occurrence not found."
2272
  msgstr "Το αντικείμενο δεν διαγράφηκε. Το αντικείμενο δεν βρέθηκε."
2273
 
2274
+ #: includes/event.php:1141
2275
  msgid "There is already an occurrence on this date"
2276
  msgstr ""
2277
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:17:15+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr ""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr "All day"
62
 
@@ -248,7 +248,7 @@ msgstr "Event Categories"
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
- #: includes/event-organiser-event-functions.php:1563
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr ""
@@ -370,7 +370,7 @@ msgid "24 hour time"
370
  msgstr ""
371
 
372
  #: event-organiser-calendar.php:256
373
- #: includes/event-organiser-event-functions.php:1500
374
  msgid "Loading&#8230;"
375
  msgstr ""
376
 
@@ -640,7 +640,7 @@ msgid "day of week"
640
  msgstr "day of week"
641
 
642
  #: event-organiser-edit.php:225
643
- #: includes/event-organiser-event-functions.php:856
644
  #: includes/event-organiser-register.php:307
645
  msgid "until"
646
  msgstr "until"
@@ -1630,7 +1630,7 @@ msgid "Choose from the most used tags"
1630
  msgstr ""
1631
 
1632
  #: includes/event-organiser-cpt.php:163
1633
- #: includes/event-organiser-event-functions.php:1571
1634
  #: templates/event-meta-event-single.php:66
1635
  msgid "Tags"
1636
  msgstr ""
@@ -1961,77 +1961,77 @@ msgstr ""
1961
  msgid "Assign the category a colour."
1962
  msgstr ""
1963
 
1964
- #: includes/event-organiser-event-functions.php:777
1965
  #: includes/event-organiser-register.php:313
1966
  msgid "last"
1967
  msgstr ""
1968
 
1969
- #: includes/event-organiser-event-functions.php:777
1970
  #: includes/event-organiser-register.php:309
1971
  msgid "first"
1972
  msgstr ""
1973
 
1974
- #: includes/event-organiser-event-functions.php:777
1975
  #: includes/event-organiser-register.php:310
1976
  msgid "second"
1977
  msgstr ""
1978
 
1979
- #: includes/event-organiser-event-functions.php:777
1980
  #: includes/event-organiser-register.php:311
1981
  msgid "third"
1982
  msgstr ""
1983
 
1984
- #: includes/event-organiser-event-functions.php:777
1985
  #: includes/event-organiser-register.php:312
1986
  msgid "fourth"
1987
  msgstr ""
1988
 
1989
- #: includes/event-organiser-event-functions.php:787
1990
  msgid "one time only"
1991
  msgstr ""
1992
 
1993
- #: includes/event-organiser-event-functions.php:790
1994
  msgid "custom recurrence"
1995
  msgstr ""
1996
 
1997
- #: includes/event-organiser-event-functions.php:797
1998
  #: includes/event-organiser-register.php:298
1999
  msgid "every day"
2000
  msgstr ""
2001
 
2002
- #: includes/event-organiser-event-functions.php:799
2003
  #: includes/event-organiser-register.php:299
2004
  #, php-format
2005
  msgid "every %d days"
2006
  msgstr ""
2007
 
2008
- #: includes/event-organiser-event-functions.php:805
2009
  #: includes/event-organiser-register.php:300
2010
  msgid "every week on"
2011
  msgstr ""
2012
 
2013
- #: includes/event-organiser-event-functions.php:807
2014
  #: includes/event-organiser-register.php:301
2015
  #, php-format
2016
  msgid "every %d weeks on"
2017
  msgstr ""
2018
 
2019
- #: includes/event-organiser-event-functions.php:818
2020
  #: includes/event-organiser-register.php:302
2021
  msgid "every month on the"
2022
  msgstr ""
2023
 
2024
- #: includes/event-organiser-event-functions.php:820
2025
  #: includes/event-organiser-register.php:303
2026
  #, php-format
2027
  msgid "every %d months on the"
2028
  msgstr ""
2029
 
2030
- #: includes/event-organiser-event-functions.php:849
2031
  msgid "every year"
2032
  msgstr ""
2033
 
2034
- #: includes/event-organiser-event-functions.php:851
2035
  #, php-format
2036
  msgid "every %d years"
2037
  msgstr ""
@@ -2187,11 +2187,11 @@ msgstr ""
2187
  msgid "Event does not contain any dates."
2188
  msgstr ""
2189
 
2190
- #: includes/event.php:1080
2191
  msgid "Occurrence not deleted. Occurrence not found."
2192
  msgstr ""
2193
 
2194
- #: includes/event.php:1136
2195
  msgid "There is already an occurrence on this date"
2196
  msgstr ""
2197
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:17:15+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr ""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr "All day"
62
 
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
+ #: includes/event-organiser-event-functions.php:1569
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr ""
370
  msgstr ""
371
 
372
  #: event-organiser-calendar.php:256
373
+ #: includes/event-organiser-event-functions.php:1506
374
  msgid "Loading&#8230;"
375
  msgstr ""
376
 
640
  msgstr "day of week"
641
 
642
  #: event-organiser-edit.php:225
643
+ #: includes/event-organiser-event-functions.php:862
644
  #: includes/event-organiser-register.php:307
645
  msgid "until"
646
  msgstr "until"
1630
  msgstr ""
1631
 
1632
  #: includes/event-organiser-cpt.php:163
1633
+ #: includes/event-organiser-event-functions.php:1577
1634
  #: templates/event-meta-event-single.php:66
1635
  msgid "Tags"
1636
  msgstr ""
1961
  msgid "Assign the category a colour."
1962
  msgstr ""
1963
 
1964
+ #: includes/event-organiser-event-functions.php:783
1965
  #: includes/event-organiser-register.php:313
1966
  msgid "last"
1967
  msgstr ""
1968
 
1969
+ #: includes/event-organiser-event-functions.php:783
1970
  #: includes/event-organiser-register.php:309
1971
  msgid "first"
1972
  msgstr ""
1973
 
1974
+ #: includes/event-organiser-event-functions.php:783
1975
  #: includes/event-organiser-register.php:310
1976
  msgid "second"
1977
  msgstr ""
1978
 
1979
+ #: includes/event-organiser-event-functions.php:783
1980
  #: includes/event-organiser-register.php:311
1981
  msgid "third"
1982
  msgstr ""
1983
 
1984
+ #: includes/event-organiser-event-functions.php:783
1985
  #: includes/event-organiser-register.php:312
1986
  msgid "fourth"
1987
  msgstr ""
1988
 
1989
+ #: includes/event-organiser-event-functions.php:793
1990
  msgid "one time only"
1991
  msgstr ""
1992
 
1993
+ #: includes/event-organiser-event-functions.php:796
1994
  msgid "custom recurrence"
1995
  msgstr ""
1996
 
1997
+ #: includes/event-organiser-event-functions.php:803
1998
  #: includes/event-organiser-register.php:298
1999
  msgid "every day"
2000
  msgstr ""
2001
 
2002
+ #: includes/event-organiser-event-functions.php:805
2003
  #: includes/event-organiser-register.php:299
2004
  #, php-format
2005
  msgid "every %d days"
2006
  msgstr ""
2007
 
2008
+ #: includes/event-organiser-event-functions.php:811
2009
  #: includes/event-organiser-register.php:300
2010
  msgid "every week on"
2011
  msgstr ""
2012
 
2013
+ #: includes/event-organiser-event-functions.php:813
2014
  #: includes/event-organiser-register.php:301
2015
  #, php-format
2016
  msgid "every %d weeks on"
2017
  msgstr ""
2018
 
2019
+ #: includes/event-organiser-event-functions.php:824
2020
  #: includes/event-organiser-register.php:302
2021
  msgid "every month on the"
2022
  msgstr ""
2023
 
2024
+ #: includes/event-organiser-event-functions.php:826
2025
  #: includes/event-organiser-register.php:303
2026
  #, php-format
2027
  msgid "every %d months on the"
2028
  msgstr ""
2029
 
2030
+ #: includes/event-organiser-event-functions.php:855
2031
  msgid "every year"
2032
  msgstr ""
2033
 
2034
+ #: includes/event-organiser-event-functions.php:857
2035
  #, php-format
2036
  msgid "every %d years"
2037
  msgstr ""
2187
  msgid "Event does not contain any dates."
2188
  msgstr ""
2189
 
2190
+ #: includes/event.php:1085
2191
  msgid "Occurrence not deleted. Occurrence not found."
2192
  msgstr ""
2193
 
2194
+ #: includes/event.php:1141
2195
  msgid "There is already an occurrence on this date"
2196
  msgstr ""
2197
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2016-11-26T14:51:57+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr ""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr ""
62
 
@@ -248,7 +248,7 @@ msgstr ""
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
- #: includes/event-organiser-event-functions.php:1563
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr ""
@@ -370,7 +370,7 @@ msgid "24 hour time"
370
  msgstr ""
371
 
372
  #: event-organiser-calendar.php:256
373
- #: includes/event-organiser-event-functions.php:1500
374
  msgid "Loading&#8230;"
375
  msgstr ""
376
 
@@ -638,7 +638,7 @@ msgid "day of week"
638
  msgstr ""
639
 
640
  #: event-organiser-edit.php:225
641
- #: includes/event-organiser-event-functions.php:856
642
  #: includes/event-organiser-register.php:307
643
  msgid "until"
644
  msgstr ""
@@ -1611,7 +1611,7 @@ msgid "Choose from the most used tags"
1611
  msgstr ""
1612
 
1613
  #: includes/event-organiser-cpt.php:163
1614
- #: includes/event-organiser-event-functions.php:1571
1615
  #: templates/event-meta-event-single.php:66
1616
  msgid "Tags"
1617
  msgstr ""
@@ -1941,77 +1941,77 @@ msgstr ""
1941
  msgid "Assign the category a colour."
1942
  msgstr ""
1943
 
1944
- #: includes/event-organiser-event-functions.php:777
1945
  #: includes/event-organiser-register.php:313
1946
  msgid "last"
1947
  msgstr ""
1948
 
1949
- #: includes/event-organiser-event-functions.php:777
1950
  #: includes/event-organiser-register.php:309
1951
  msgid "first"
1952
  msgstr ""
1953
 
1954
- #: includes/event-organiser-event-functions.php:777
1955
  #: includes/event-organiser-register.php:310
1956
  msgid "second"
1957
  msgstr ""
1958
 
1959
- #: includes/event-organiser-event-functions.php:777
1960
  #: includes/event-organiser-register.php:311
1961
  msgid "third"
1962
  msgstr ""
1963
 
1964
- #: includes/event-organiser-event-functions.php:777
1965
  #: includes/event-organiser-register.php:312
1966
  msgid "fourth"
1967
  msgstr ""
1968
 
1969
- #: includes/event-organiser-event-functions.php:787
1970
  msgid "one time only"
1971
  msgstr ""
1972
 
1973
- #: includes/event-organiser-event-functions.php:790
1974
  msgid "custom recurrence"
1975
  msgstr ""
1976
 
1977
- #: includes/event-organiser-event-functions.php:797
1978
  #: includes/event-organiser-register.php:298
1979
  msgid "every day"
1980
  msgstr ""
1981
 
1982
- #: includes/event-organiser-event-functions.php:799
1983
  #: includes/event-organiser-register.php:299
1984
  #, php-format
1985
  msgid "every %d days"
1986
  msgstr ""
1987
 
1988
- #: includes/event-organiser-event-functions.php:805
1989
  #: includes/event-organiser-register.php:300
1990
  msgid "every week on"
1991
  msgstr ""
1992
 
1993
- #: includes/event-organiser-event-functions.php:807
1994
  #: includes/event-organiser-register.php:301
1995
  #, php-format
1996
  msgid "every %d weeks on"
1997
  msgstr ""
1998
 
1999
- #: includes/event-organiser-event-functions.php:818
2000
  #: includes/event-organiser-register.php:302
2001
  msgid "every month on the"
2002
  msgstr ""
2003
 
2004
- #: includes/event-organiser-event-functions.php:820
2005
  #: includes/event-organiser-register.php:303
2006
  #, php-format
2007
  msgid "every %d months on the"
2008
  msgstr ""
2009
 
2010
- #: includes/event-organiser-event-functions.php:849
2011
  msgid "every year"
2012
  msgstr ""
2013
 
2014
- #: includes/event-organiser-event-functions.php:851
2015
  #, php-format
2016
  msgid "every %d years"
2017
  msgstr ""
@@ -2166,11 +2166,11 @@ msgstr ""
2166
  msgid "Event does not contain any dates."
2167
  msgstr ""
2168
 
2169
- #: includes/event.php:1080
2170
  msgid "Occurrence not deleted. Occurrence not found."
2171
  msgstr ""
2172
 
2173
- #: includes/event.php:1136
2174
  msgid "There is already an occurrence on this date"
2175
  msgstr ""
2176
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2016-11-26T14:51:57+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr ""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr ""
62
 
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
+ #: includes/event-organiser-event-functions.php:1569
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr ""
370
  msgstr ""
371
 
372
  #: event-organiser-calendar.php:256
373
+ #: includes/event-organiser-event-functions.php:1506
374
  msgid "Loading&#8230;"
375
  msgstr ""
376
 
638
  msgstr ""
639
 
640
  #: event-organiser-edit.php:225
641
+ #: includes/event-organiser-event-functions.php:862
642
  #: includes/event-organiser-register.php:307
643
  msgid "until"
644
  msgstr ""
1611
  msgstr ""
1612
 
1613
  #: includes/event-organiser-cpt.php:163
1614
+ #: includes/event-organiser-event-functions.php:1577
1615
  #: templates/event-meta-event-single.php:66
1616
  msgid "Tags"
1617
  msgstr ""
1941
  msgid "Assign the category a colour."
1942
  msgstr ""
1943
 
1944
+ #: includes/event-organiser-event-functions.php:783
1945
  #: includes/event-organiser-register.php:313
1946
  msgid "last"
1947
  msgstr ""
1948
 
1949
+ #: includes/event-organiser-event-functions.php:783
1950
  #: includes/event-organiser-register.php:309
1951
  msgid "first"
1952
  msgstr ""
1953
 
1954
+ #: includes/event-organiser-event-functions.php:783
1955
  #: includes/event-organiser-register.php:310
1956
  msgid "second"
1957
  msgstr ""
1958
 
1959
+ #: includes/event-organiser-event-functions.php:783
1960
  #: includes/event-organiser-register.php:311
1961
  msgid "third"
1962
  msgstr ""
1963
 
1964
+ #: includes/event-organiser-event-functions.php:783
1965
  #: includes/event-organiser-register.php:312
1966
  msgid "fourth"
1967
  msgstr ""
1968
 
1969
+ #: includes/event-organiser-event-functions.php:793
1970
  msgid "one time only"
1971
  msgstr ""
1972
 
1973
+ #: includes/event-organiser-event-functions.php:796
1974
  msgid "custom recurrence"
1975
  msgstr ""
1976
 
1977
+ #: includes/event-organiser-event-functions.php:803
1978
  #: includes/event-organiser-register.php:298
1979
  msgid "every day"
1980
  msgstr ""
1981
 
1982
+ #: includes/event-organiser-event-functions.php:805
1983
  #: includes/event-organiser-register.php:299
1984
  #, php-format
1985
  msgid "every %d days"
1986
  msgstr ""
1987
 
1988
+ #: includes/event-organiser-event-functions.php:811
1989
  #: includes/event-organiser-register.php:300
1990
  msgid "every week on"
1991
  msgstr ""
1992
 
1993
+ #: includes/event-organiser-event-functions.php:813
1994
  #: includes/event-organiser-register.php:301
1995
  #, php-format
1996
  msgid "every %d weeks on"
1997
  msgstr ""
1998
 
1999
+ #: includes/event-organiser-event-functions.php:824
2000
  #: includes/event-organiser-register.php:302
2001
  msgid "every month on the"
2002
  msgstr ""
2003
 
2004
+ #: includes/event-organiser-event-functions.php:826
2005
  #: includes/event-organiser-register.php:303
2006
  #, php-format
2007
  msgid "every %d months on the"
2008
  msgstr ""
2009
 
2010
+ #: includes/event-organiser-event-functions.php:855
2011
  msgid "every year"
2012
  msgstr ""
2013
 
2014
+ #: includes/event-organiser-event-functions.php:857
2015
  #, php-format
2016
  msgid "every %d years"
2017
  msgstr ""
2166
  msgid "Event does not contain any dates."
2167
  msgstr ""
2168
 
2169
+ #: includes/event.php:1085
2170
  msgid "Occurrence not deleted. Occurrence not found."
2171
  msgstr ""
2172
 
2173
+ #: includes/event.php:1141
2174
  msgid "There is already an occurrence on this date"
2175
  msgstr ""
2176
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2017-04-14T23:01:00+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr "Incluir enlace 'Adicionar A Google'"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr "Todo el día"
62
 
@@ -252,7 +252,7 @@ msgstr "Categorías de evento"
252
 
253
  #: classes/class-eo-widget-categories.php:25
254
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
255
- #: includes/event-organiser-event-functions.php:1563
256
  #: templates/event-meta-event-single.php:62
257
  msgid "Categories"
258
  msgstr "Categorías"
@@ -376,7 +376,7 @@ msgid "24 hour time"
376
  msgstr "Tiempo de 24 horas"
377
 
378
  #: event-organiser-calendar.php:256
379
- #: includes/event-organiser-event-functions.php:1500
380
  msgid "Loading&#8230;"
381
  msgstr "Cargando&#8230; "
382
 
@@ -646,7 +646,7 @@ msgid "day of week"
646
  msgstr "día de la semana"
647
 
648
  #: event-organiser-edit.php:225
649
- #: includes/event-organiser-event-functions.php:856
650
  #: includes/event-organiser-register.php:307
651
  msgid "until"
652
  msgstr "hasta"
@@ -1662,7 +1662,7 @@ msgid "Choose from the most used tags"
1662
  msgstr "Escoger de las etiquetas más usadas"
1663
 
1664
  #: includes/event-organiser-cpt.php:163
1665
- #: includes/event-organiser-event-functions.php:1571
1666
  #: templates/event-meta-event-single.php:66
1667
  msgid "Tags"
1668
  msgstr "Etiquetas"
@@ -2040,77 +2040,77 @@ msgstr "Color"
2040
  msgid "Assign the category a colour."
2041
  msgstr "Asignar a la categoría un color"
2042
 
2043
- #: includes/event-organiser-event-functions.php:777
2044
  #: includes/event-organiser-register.php:313
2045
  msgid "last"
2046
  msgstr "último"
2047
 
2048
- #: includes/event-organiser-event-functions.php:777
2049
  #: includes/event-organiser-register.php:309
2050
  msgid "first"
2051
  msgstr "primero"
2052
 
2053
- #: includes/event-organiser-event-functions.php:777
2054
  #: includes/event-organiser-register.php:310
2055
  msgid "second"
2056
  msgstr "segundo"
2057
 
2058
- #: includes/event-organiser-event-functions.php:777
2059
  #: includes/event-organiser-register.php:311
2060
  msgid "third"
2061
  msgstr "tercero"
2062
 
2063
- #: includes/event-organiser-event-functions.php:777
2064
  #: includes/event-organiser-register.php:312
2065
  msgid "fourth"
2066
  msgstr "cuarto"
2067
 
2068
- #: includes/event-organiser-event-functions.php:787
2069
  msgid "one time only"
2070
  msgstr "una sola vez"
2071
 
2072
- #: includes/event-organiser-event-functions.php:790
2073
  msgid "custom recurrence"
2074
  msgstr "recurrencia personalizada"
2075
 
2076
- #: includes/event-organiser-event-functions.php:797
2077
  #: includes/event-organiser-register.php:298
2078
  msgid "every day"
2079
  msgstr "cada día"
2080
 
2081
- #: includes/event-organiser-event-functions.php:799
2082
  #: includes/event-organiser-register.php:299
2083
  #, php-format
2084
  msgid "every %d days"
2085
  msgstr "cada %d días"
2086
 
2087
- #: includes/event-organiser-event-functions.php:805
2088
  #: includes/event-organiser-register.php:300
2089
  msgid "every week on"
2090
  msgstr "cada semana en"
2091
 
2092
- #: includes/event-organiser-event-functions.php:807
2093
  #: includes/event-organiser-register.php:301
2094
  #, php-format
2095
  msgid "every %d weeks on"
2096
  msgstr "cada %d semanas en"
2097
 
2098
- #: includes/event-organiser-event-functions.php:818
2099
  #: includes/event-organiser-register.php:302
2100
  msgid "every month on the"
2101
  msgstr "cada mes en el"
2102
 
2103
- #: includes/event-organiser-event-functions.php:820
2104
  #: includes/event-organiser-register.php:303
2105
  #, php-format
2106
  msgid "every %d months on the"
2107
  msgstr "cada %d meses en el"
2108
 
2109
- #: includes/event-organiser-event-functions.php:849
2110
  msgid "every year"
2111
  msgstr "cada año"
2112
 
2113
- #: includes/event-organiser-event-functions.php:851
2114
  #, php-format
2115
  msgid "every %d years"
2116
  msgstr "cada %d años"
@@ -2266,11 +2266,11 @@ msgstr "Programación mensual inválida (ordinal inválido)"
2266
  msgid "Event does not contain any dates."
2267
  msgstr "El evento no contiene ningunas fechas."
2268
 
2269
- #: includes/event.php:1080
2270
  msgid "Occurrence not deleted. Occurrence not found."
2271
  msgstr "La ocurrencia no fue borrada. La ocurrencia no fue encontrada."
2272
 
2273
- #: includes/event.php:1136
2274
  msgid "There is already an occurrence on this date"
2275
  msgstr ""
2276
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2017-04-14T23:01:00+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr "Incluir enlace 'Adicionar A Google'"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr "Todo el día"
62
 
252
 
253
  #: classes/class-eo-widget-categories.php:25
254
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
255
+ #: includes/event-organiser-event-functions.php:1569
256
  #: templates/event-meta-event-single.php:62
257
  msgid "Categories"
258
  msgstr "Categorías"
376
  msgstr "Tiempo de 24 horas"
377
 
378
  #: event-organiser-calendar.php:256
379
+ #: includes/event-organiser-event-functions.php:1506
380
  msgid "Loading&#8230;"
381
  msgstr "Cargando&#8230; "
382
 
646
  msgstr "día de la semana"
647
 
648
  #: event-organiser-edit.php:225
649
+ #: includes/event-organiser-event-functions.php:862
650
  #: includes/event-organiser-register.php:307
651
  msgid "until"
652
  msgstr "hasta"
1662
  msgstr "Escoger de las etiquetas más usadas"
1663
 
1664
  #: includes/event-organiser-cpt.php:163
1665
+ #: includes/event-organiser-event-functions.php:1577
1666
  #: templates/event-meta-event-single.php:66
1667
  msgid "Tags"
1668
  msgstr "Etiquetas"
2040
  msgid "Assign the category a colour."
2041
  msgstr "Asignar a la categoría un color"
2042
 
2043
+ #: includes/event-organiser-event-functions.php:783
2044
  #: includes/event-organiser-register.php:313
2045
  msgid "last"
2046
  msgstr "último"
2047
 
2048
+ #: includes/event-organiser-event-functions.php:783
2049
  #: includes/event-organiser-register.php:309
2050
  msgid "first"
2051
  msgstr "primero"
2052
 
2053
+ #: includes/event-organiser-event-functions.php:783
2054
  #: includes/event-organiser-register.php:310
2055
  msgid "second"
2056
  msgstr "segundo"
2057
 
2058
+ #: includes/event-organiser-event-functions.php:783
2059
  #: includes/event-organiser-register.php:311
2060
  msgid "third"
2061
  msgstr "tercero"
2062
 
2063
+ #: includes/event-organiser-event-functions.php:783
2064
  #: includes/event-organiser-register.php:312
2065
  msgid "fourth"
2066
  msgstr "cuarto"
2067
 
2068
+ #: includes/event-organiser-event-functions.php:793
2069
  msgid "one time only"
2070
  msgstr "una sola vez"
2071
 
2072
+ #: includes/event-organiser-event-functions.php:796
2073
  msgid "custom recurrence"
2074
  msgstr "recurrencia personalizada"
2075
 
2076
+ #: includes/event-organiser-event-functions.php:803
2077
  #: includes/event-organiser-register.php:298
2078
  msgid "every day"
2079
  msgstr "cada día"
2080
 
2081
+ #: includes/event-organiser-event-functions.php:805
2082
  #: includes/event-organiser-register.php:299
2083
  #, php-format
2084
  msgid "every %d days"
2085
  msgstr "cada %d días"
2086
 
2087
+ #: includes/event-organiser-event-functions.php:811
2088
  #: includes/event-organiser-register.php:300
2089
  msgid "every week on"
2090
  msgstr "cada semana en"
2091
 
2092
+ #: includes/event-organiser-event-functions.php:813
2093
  #: includes/event-organiser-register.php:301
2094
  #, php-format
2095
  msgid "every %d weeks on"
2096
  msgstr "cada %d semanas en"
2097
 
2098
+ #: includes/event-organiser-event-functions.php:824
2099
  #: includes/event-organiser-register.php:302
2100
  msgid "every month on the"
2101
  msgstr "cada mes en el"
2102
 
2103
+ #: includes/event-organiser-event-functions.php:826
2104
  #: includes/event-organiser-register.php:303
2105
  #, php-format
2106
  msgid "every %d months on the"
2107
  msgstr "cada %d meses en el"
2108
 
2109
+ #: includes/event-organiser-event-functions.php:855
2110
  msgid "every year"
2111
  msgstr "cada año"
2112
 
2113
+ #: includes/event-organiser-event-functions.php:857
2114
  #, php-format
2115
  msgid "every %d years"
2116
  msgstr "cada %d años"
2266
  msgid "Event does not contain any dates."
2267
  msgstr "El evento no contiene ningunas fechas."
2268
 
2269
+ #: includes/event.php:1085
2270
  msgid "Occurrence not deleted. Occurrence not found."
2271
  msgstr "La ocurrencia no fue borrada. La ocurrencia no fue encontrada."
2272
 
2273
+ #: includes/event.php:1141
2274
  msgid "There is already an occurrence on this date"
2275
  msgstr ""
2276
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2017-09-11T22:37:13+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr ""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr ""
62
 
@@ -248,7 +248,7 @@ msgstr ""
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
- #: includes/event-organiser-event-functions.php:1563
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr ""
@@ -370,7 +370,7 @@ msgid "24 hour time"
370
  msgstr ""
371
 
372
  #: event-organiser-calendar.php:256
373
- #: includes/event-organiser-event-functions.php:1500
374
  msgid "Loading&#8230;"
375
  msgstr ""
376
 
@@ -640,7 +640,7 @@ msgid "day of week"
640
  msgstr ""
641
 
642
  #: event-organiser-edit.php:225
643
- #: includes/event-organiser-event-functions.php:856
644
  #: includes/event-organiser-register.php:307
645
  msgid "until"
646
  msgstr ""
@@ -1613,7 +1613,7 @@ msgid "Choose from the most used tags"
1613
  msgstr ""
1614
 
1615
  #: includes/event-organiser-cpt.php:163
1616
- #: includes/event-organiser-event-functions.php:1571
1617
  #: templates/event-meta-event-single.php:66
1618
  msgid "Tags"
1619
  msgstr ""
@@ -1943,77 +1943,77 @@ msgstr ""
1943
  msgid "Assign the category a colour."
1944
  msgstr ""
1945
 
1946
- #: includes/event-organiser-event-functions.php:777
1947
  #: includes/event-organiser-register.php:313
1948
  msgid "last"
1949
  msgstr ""
1950
 
1951
- #: includes/event-organiser-event-functions.php:777
1952
  #: includes/event-organiser-register.php:309
1953
  msgid "first"
1954
  msgstr ""
1955
 
1956
- #: includes/event-organiser-event-functions.php:777
1957
  #: includes/event-organiser-register.php:310
1958
  msgid "second"
1959
  msgstr ""
1960
 
1961
- #: includes/event-organiser-event-functions.php:777
1962
  #: includes/event-organiser-register.php:311
1963
  msgid "third"
1964
  msgstr ""
1965
 
1966
- #: includes/event-organiser-event-functions.php:777
1967
  #: includes/event-organiser-register.php:312
1968
  msgid "fourth"
1969
  msgstr ""
1970
 
1971
- #: includes/event-organiser-event-functions.php:787
1972
  msgid "one time only"
1973
  msgstr ""
1974
 
1975
- #: includes/event-organiser-event-functions.php:790
1976
  msgid "custom recurrence"
1977
  msgstr ""
1978
 
1979
- #: includes/event-organiser-event-functions.php:797
1980
  #: includes/event-organiser-register.php:298
1981
  msgid "every day"
1982
  msgstr ""
1983
 
1984
- #: includes/event-organiser-event-functions.php:799
1985
  #: includes/event-organiser-register.php:299
1986
  #, php-format
1987
  msgid "every %d days"
1988
  msgstr ""
1989
 
1990
- #: includes/event-organiser-event-functions.php:805
1991
  #: includes/event-organiser-register.php:300
1992
  msgid "every week on"
1993
  msgstr ""
1994
 
1995
- #: includes/event-organiser-event-functions.php:807
1996
  #: includes/event-organiser-register.php:301
1997
  #, php-format
1998
  msgid "every %d weeks on"
1999
  msgstr ""
2000
 
2001
- #: includes/event-organiser-event-functions.php:818
2002
  #: includes/event-organiser-register.php:302
2003
  msgid "every month on the"
2004
  msgstr ""
2005
 
2006
- #: includes/event-organiser-event-functions.php:820
2007
  #: includes/event-organiser-register.php:303
2008
  #, php-format
2009
  msgid "every %d months on the"
2010
  msgstr ""
2011
 
2012
- #: includes/event-organiser-event-functions.php:849
2013
  msgid "every year"
2014
  msgstr ""
2015
 
2016
- #: includes/event-organiser-event-functions.php:851
2017
  #, php-format
2018
  msgid "every %d years"
2019
  msgstr ""
@@ -2168,11 +2168,11 @@ msgstr ""
2168
  msgid "Event does not contain any dates."
2169
  msgstr ""
2170
 
2171
- #: includes/event.php:1080
2172
  msgid "Occurrence not deleted. Occurrence not found."
2173
  msgstr ""
2174
 
2175
- #: includes/event.php:1136
2176
  msgid "There is already an occurrence on this date"
2177
  msgstr ""
2178
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2017-09-11T22:37:13+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr ""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr ""
62
 
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
+ #: includes/event-organiser-event-functions.php:1569
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr ""
370
  msgstr ""
371
 
372
  #: event-organiser-calendar.php:256
373
+ #: includes/event-organiser-event-functions.php:1506
374
  msgid "Loading&#8230;"
375
  msgstr ""
376
 
640
  msgstr ""
641
 
642
  #: event-organiser-edit.php:225
643
+ #: includes/event-organiser-event-functions.php:862
644
  #: includes/event-organiser-register.php:307
645
  msgid "until"
646
  msgstr ""
1613
  msgstr ""
1614
 
1615
  #: includes/event-organiser-cpt.php:163
1616
+ #: includes/event-organiser-event-functions.php:1577
1617
  #: templates/event-meta-event-single.php:66
1618
  msgid "Tags"
1619
  msgstr ""
1943
  msgid "Assign the category a colour."
1944
  msgstr ""
1945
 
1946
+ #: includes/event-organiser-event-functions.php:783
1947
  #: includes/event-organiser-register.php:313
1948
  msgid "last"
1949
  msgstr ""
1950
 
1951
+ #: includes/event-organiser-event-functions.php:783
1952
  #: includes/event-organiser-register.php:309
1953
  msgid "first"
1954
  msgstr ""
1955
 
1956
+ #: includes/event-organiser-event-functions.php:783
1957
  #: includes/event-organiser-register.php:310
1958
  msgid "second"
1959
  msgstr ""
1960
 
1961
+ #: includes/event-organiser-event-functions.php:783
1962
  #: includes/event-organiser-register.php:311
1963
  msgid "third"
1964
  msgstr ""
1965
 
1966
+ #: includes/event-organiser-event-functions.php:783
1967
  #: includes/event-organiser-register.php:312
1968
  msgid "fourth"
1969
  msgstr ""
1970
 
1971
+ #: includes/event-organiser-event-functions.php:793
1972
  msgid "one time only"
1973
  msgstr ""
1974
 
1975
+ #: includes/event-organiser-event-functions.php:796
1976
  msgid "custom recurrence"
1977
  msgstr ""
1978
 
1979
+ #: includes/event-organiser-event-functions.php:803
1980
  #: includes/event-organiser-register.php:298
1981
  msgid "every day"
1982
  msgstr ""
1983
 
1984
+ #: includes/event-organiser-event-functions.php:805
1985
  #: includes/event-organiser-register.php:299
1986
  #, php-format
1987
  msgid "every %d days"
1988
  msgstr ""
1989
 
1990
+ #: includes/event-organiser-event-functions.php:811
1991
  #: includes/event-organiser-register.php:300
1992
  msgid "every week on"
1993
  msgstr ""
1994
 
1995
+ #: includes/event-organiser-event-functions.php:813
1996
  #: includes/event-organiser-register.php:301
1997
  #, php-format
1998
  msgid "every %d weeks on"
1999
  msgstr ""
2000
 
2001
+ #: includes/event-organiser-event-functions.php:824
2002
  #: includes/event-organiser-register.php:302
2003
  msgid "every month on the"
2004
  msgstr ""
2005
 
2006
+ #: includes/event-organiser-event-functions.php:826
2007
  #: includes/event-organiser-register.php:303
2008
  #, php-format
2009
  msgid "every %d months on the"
2010
  msgstr ""
2011
 
2012
+ #: includes/event-organiser-event-functions.php:855
2013
  msgid "every year"
2014
  msgstr ""
2015
 
2016
+ #: includes/event-organiser-event-functions.php:857
2017
  #, php-format
2018
  msgid "every %d years"
2019
  msgstr ""
2168
  msgid "Event does not contain any dates."
2169
  msgstr ""
2170
 
2171
+ #: includes/event.php:1085
2172
  msgid "Occurrence not deleted. Occurrence not found."
2173
  msgstr ""
2174
 
2175
+ #: includes/event.php:1141
2176
  msgid "There is already an occurrence on this date"
2177
  msgstr ""
2178
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:17:05+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr ""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr "Terve päev"
62
 
@@ -249,7 +249,7 @@ msgstr "Sündmuse rubriigid"
249
 
250
  #: classes/class-eo-widget-categories.php:25
251
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
252
- #: includes/event-organiser-event-functions.php:1563
253
  #: templates/event-meta-event-single.php:62
254
  msgid "Categories"
255
  msgstr "Rubriigid"
@@ -371,7 +371,7 @@ msgid "24 hour time"
371
  msgstr "24 tunni aeg"
372
 
373
  #: event-organiser-calendar.php:256
374
- #: includes/event-organiser-event-functions.php:1500
375
  msgid "Loading&#8230;"
376
  msgstr "Laen&#8230;"
377
 
@@ -639,7 +639,7 @@ msgid "day of week"
639
  msgstr "valitud nädalapäeval"
640
 
641
  #: event-organiser-edit.php:225
642
- #: includes/event-organiser-event-functions.php:856
643
  #: includes/event-organiser-register.php:307
644
  msgid "until"
645
  msgstr "kuni"
@@ -1635,7 +1635,7 @@ msgid "Choose from the most used tags"
1635
  msgstr "Vali enimkasutatud siltide hulgast"
1636
 
1637
  #: includes/event-organiser-cpt.php:163
1638
- #: includes/event-organiser-event-functions.php:1571
1639
  #: templates/event-meta-event-single.php:66
1640
  msgid "Tags"
1641
  msgstr "Sildid"
@@ -2008,77 +2008,77 @@ msgstr "Värv"
2008
  msgid "Assign the category a colour."
2009
  msgstr "Määra rubriigile värv."
2010
 
2011
- #: includes/event-organiser-event-functions.php:777
2012
  #: includes/event-organiser-register.php:313
2013
  msgid "last"
2014
  msgstr "viimane"
2015
 
2016
- #: includes/event-organiser-event-functions.php:777
2017
  #: includes/event-organiser-register.php:309
2018
  msgid "first"
2019
  msgstr "esimene"
2020
 
2021
- #: includes/event-organiser-event-functions.php:777
2022
  #: includes/event-organiser-register.php:310
2023
  msgid "second"
2024
  msgstr "teine"
2025
 
2026
- #: includes/event-organiser-event-functions.php:777
2027
  #: includes/event-organiser-register.php:311
2028
  msgid "third"
2029
  msgstr "kolmas"
2030
 
2031
- #: includes/event-organiser-event-functions.php:777
2032
  #: includes/event-organiser-register.php:312
2033
  msgid "fourth"
2034
  msgstr "neljas"
2035
 
2036
- #: includes/event-organiser-event-functions.php:787
2037
  msgid "one time only"
2038
  msgstr "ainult üks kord"
2039
 
2040
- #: includes/event-organiser-event-functions.php:790
2041
  msgid "custom recurrence"
2042
  msgstr "kohandatud kordumine"
2043
 
2044
- #: includes/event-organiser-event-functions.php:797
2045
  #: includes/event-organiser-register.php:298
2046
  msgid "every day"
2047
  msgstr "iga päev"
2048
 
2049
- #: includes/event-organiser-event-functions.php:799
2050
  #: includes/event-organiser-register.php:299
2051
  #, php-format
2052
  msgid "every %d days"
2053
  msgstr "iga %d. päev"
2054
 
2055
- #: includes/event-organiser-event-functions.php:805
2056
  #: includes/event-organiser-register.php:300
2057
  msgid "every week on"
2058
  msgstr "iga nädal"
2059
 
2060
- #: includes/event-organiser-event-functions.php:807
2061
  #: includes/event-organiser-register.php:301
2062
  #, php-format
2063
  msgid "every %d weeks on"
2064
  msgstr "iga %d. nädal"
2065
 
2066
- #: includes/event-organiser-event-functions.php:818
2067
  #: includes/event-organiser-register.php:302
2068
  msgid "every month on the"
2069
  msgstr "iga kuu"
2070
 
2071
- #: includes/event-organiser-event-functions.php:820
2072
  #: includes/event-organiser-register.php:303
2073
  #, php-format
2074
  msgid "every %d months on the"
2075
  msgstr "iga %d. kuu"
2076
 
2077
- #: includes/event-organiser-event-functions.php:849
2078
  msgid "every year"
2079
  msgstr "iga aasta"
2080
 
2081
- #: includes/event-organiser-event-functions.php:851
2082
  #, php-format
2083
  msgid "every %d years"
2084
  msgstr "iga %d. aasta"
@@ -2234,11 +2234,11 @@ msgstr "Vigane kuine graafik (vigane järgarg)"
2234
  msgid "Event does not contain any dates."
2235
  msgstr ""
2236
 
2237
- #: includes/event.php:1080
2238
  msgid "Occurrence not deleted. Occurrence not found."
2239
  msgstr ""
2240
 
2241
- #: includes/event.php:1136
2242
  msgid "There is already an occurrence on this date"
2243
  msgstr ""
2244
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:17:05+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr ""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr "Terve päev"
62
 
249
 
250
  #: classes/class-eo-widget-categories.php:25
251
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
252
+ #: includes/event-organiser-event-functions.php:1569
253
  #: templates/event-meta-event-single.php:62
254
  msgid "Categories"
255
  msgstr "Rubriigid"
371
  msgstr "24 tunni aeg"
372
 
373
  #: event-organiser-calendar.php:256
374
+ #: includes/event-organiser-event-functions.php:1506
375
  msgid "Loading&#8230;"
376
  msgstr "Laen&#8230;"
377
 
639
  msgstr "valitud nädalapäeval"
640
 
641
  #: event-organiser-edit.php:225
642
+ #: includes/event-organiser-event-functions.php:862
643
  #: includes/event-organiser-register.php:307
644
  msgid "until"
645
  msgstr "kuni"
1635
  msgstr "Vali enimkasutatud siltide hulgast"
1636
 
1637
  #: includes/event-organiser-cpt.php:163
1638
+ #: includes/event-organiser-event-functions.php:1577
1639
  #: templates/event-meta-event-single.php:66
1640
  msgid "Tags"
1641
  msgstr "Sildid"
2008
  msgid "Assign the category a colour."
2009
  msgstr "Määra rubriigile värv."
2010
 
2011
+ #: includes/event-organiser-event-functions.php:783
2012
  #: includes/event-organiser-register.php:313
2013
  msgid "last"
2014
  msgstr "viimane"
2015
 
2016
+ #: includes/event-organiser-event-functions.php:783
2017
  #: includes/event-organiser-register.php:309
2018
  msgid "first"
2019
  msgstr "esimene"
2020
 
2021
+ #: includes/event-organiser-event-functions.php:783
2022
  #: includes/event-organiser-register.php:310
2023
  msgid "second"
2024
  msgstr "teine"
2025
 
2026
+ #: includes/event-organiser-event-functions.php:783
2027
  #: includes/event-organiser-register.php:311
2028
  msgid "third"
2029
  msgstr "kolmas"
2030
 
2031
+ #: includes/event-organiser-event-functions.php:783
2032
  #: includes/event-organiser-register.php:312
2033
  msgid "fourth"
2034
  msgstr "neljas"
2035
 
2036
+ #: includes/event-organiser-event-functions.php:793
2037
  msgid "one time only"
2038
  msgstr "ainult üks kord"
2039
 
2040
+ #: includes/event-organiser-event-functions.php:796
2041
  msgid "custom recurrence"
2042
  msgstr "kohandatud kordumine"
2043
 
2044
+ #: includes/event-organiser-event-functions.php:803
2045
  #: includes/event-organiser-register.php:298
2046
  msgid "every day"
2047
  msgstr "iga päev"
2048
 
2049
+ #: includes/event-organiser-event-functions.php:805
2050
  #: includes/event-organiser-register.php:299
2051
  #, php-format
2052
  msgid "every %d days"
2053
  msgstr "iga %d. päev"
2054
 
2055
+ #: includes/event-organiser-event-functions.php:811
2056
  #: includes/event-organiser-register.php:300
2057
  msgid "every week on"
2058
  msgstr "iga nädal"
2059
 
2060
+ #: includes/event-organiser-event-functions.php:813
2061
  #: includes/event-organiser-register.php:301
2062
  #, php-format
2063
  msgid "every %d weeks on"
2064
  msgstr "iga %d. nädal"
2065
 
2066
+ #: includes/event-organiser-event-functions.php:824
2067
  #: includes/event-organiser-register.php:302
2068
  msgid "every month on the"
2069
  msgstr "iga kuu"
2070
 
2071
+ #: includes/event-organiser-event-functions.php:826
2072
  #: includes/event-organiser-register.php:303
2073
  #, php-format
2074
  msgid "every %d months on the"
2075
  msgstr "iga %d. kuu"
2076
 
2077
+ #: includes/event-organiser-event-functions.php:855
2078
  msgid "every year"
2079
  msgstr "iga aasta"
2080
 
2081
+ #: includes/event-organiser-event-functions.php:857
2082
  #, php-format
2083
  msgid "every %d years"
2084
  msgstr "iga %d. aasta"
2234
  msgid "Event does not contain any dates."
2235
  msgstr ""
2236
 
2237
+ #: includes/event.php:1085
2238
  msgid "Occurrence not deleted. Occurrence not found."
2239
  msgstr ""
2240
 
2241
+ #: includes/event.php:1141
2242
  msgid "There is already an occurrence on this date"
2243
  msgstr ""
2244
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:17:02+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr "شامل پیوند «افزودن به گوگل»"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr "تمام روز"
62
 
@@ -248,7 +248,7 @@ msgstr "دسته‌های رویداد"
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
- #: includes/event-organiser-event-functions.php:1563
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr "دسته‌بندی‌ها"
@@ -370,7 +370,7 @@ msgid "24 hour time"
370
  msgstr "ساعت برمبنای 24"
371
 
372
  #: event-organiser-calendar.php:256
373
- #: includes/event-organiser-event-functions.php:1500
374
  msgid "Loading&#8230;"
375
  msgstr "درحال بارگذاری..."
376
 
@@ -639,7 +639,7 @@ msgid "day of week"
639
  msgstr "روز هفته"
640
 
641
  #: event-organiser-edit.php:225
642
- #: includes/event-organiser-event-functions.php:856
643
  #: includes/event-organiser-register.php:307
644
  msgid "until"
645
  msgstr "تا"
@@ -1612,7 +1612,7 @@ msgid "Choose from the most used tags"
1612
  msgstr "از میان برچسبهایی که بیشتر استفاده شده اند ، انتخاب کنید"
1613
 
1614
  #: includes/event-organiser-cpt.php:163
1615
- #: includes/event-organiser-event-functions.php:1571
1616
  #: templates/event-meta-event-single.php:66
1617
  msgid "Tags"
1618
  msgstr "برچسب‌ها"
@@ -1943,77 +1943,77 @@ msgstr "رنگ"
1943
  msgid "Assign the category a colour."
1944
  msgstr ""
1945
 
1946
- #: includes/event-organiser-event-functions.php:777
1947
  #: includes/event-organiser-register.php:313
1948
  msgid "last"
1949
  msgstr "آخرین"
1950
 
1951
- #: includes/event-organiser-event-functions.php:777
1952
  #: includes/event-organiser-register.php:309
1953
  msgid "first"
1954
  msgstr "اولین"
1955
 
1956
- #: includes/event-organiser-event-functions.php:777
1957
  #: includes/event-organiser-register.php:310
1958
  msgid "second"
1959
  msgstr "دومین"
1960
 
1961
- #: includes/event-organiser-event-functions.php:777
1962
  #: includes/event-organiser-register.php:311
1963
  msgid "third"
1964
  msgstr "سومین"
1965
 
1966
- #: includes/event-organiser-event-functions.php:777
1967
  #: includes/event-organiser-register.php:312
1968
  msgid "fourth"
1969
  msgstr "چهارمین"
1970
 
1971
- #: includes/event-organiser-event-functions.php:787
1972
  msgid "one time only"
1973
  msgstr "فقط یک بار"
1974
 
1975
- #: includes/event-organiser-event-functions.php:790
1976
  msgid "custom recurrence"
1977
  msgstr "تکرار"
1978
 
1979
- #: includes/event-organiser-event-functions.php:797
1980
  #: includes/event-organiser-register.php:298
1981
  msgid "every day"
1982
  msgstr "هر روز"
1983
 
1984
- #: includes/event-organiser-event-functions.php:799
1985
  #: includes/event-organiser-register.php:299
1986
  #, php-format
1987
  msgid "every %d days"
1988
  msgstr "هر %d روز"
1989
 
1990
- #: includes/event-organiser-event-functions.php:805
1991
  #: includes/event-organiser-register.php:300
1992
  msgid "every week on"
1993
  msgstr "هر هفته در"
1994
 
1995
- #: includes/event-organiser-event-functions.php:807
1996
  #: includes/event-organiser-register.php:301
1997
  #, php-format
1998
  msgid "every %d weeks on"
1999
  msgstr "هر %d هفته در"
2000
 
2001
- #: includes/event-organiser-event-functions.php:818
2002
  #: includes/event-organiser-register.php:302
2003
  msgid "every month on the"
2004
  msgstr "هر ماه در"
2005
 
2006
- #: includes/event-organiser-event-functions.php:820
2007
  #: includes/event-organiser-register.php:303
2008
  #, php-format
2009
  msgid "every %d months on the"
2010
  msgstr "هر %d ماه در"
2011
 
2012
- #: includes/event-organiser-event-functions.php:849
2013
  msgid "every year"
2014
  msgstr "هرسال"
2015
 
2016
- #: includes/event-organiser-event-functions.php:851
2017
  #, php-format
2018
  msgid "every %d years"
2019
  msgstr "هر %d سال"
@@ -2169,11 +2169,11 @@ msgstr ""
2169
  msgid "Event does not contain any dates."
2170
  msgstr ""
2171
 
2172
- #: includes/event.php:1080
2173
  msgid "Occurrence not deleted. Occurrence not found."
2174
  msgstr ""
2175
 
2176
- #: includes/event.php:1136
2177
  msgid "There is already an occurrence on this date"
2178
  msgstr ""
2179
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:17:02+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr "شامل پیوند «افزودن به گوگل»"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr "تمام روز"
62
 
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
+ #: includes/event-organiser-event-functions.php:1569
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr "دسته‌بندی‌ها"
370
  msgstr "ساعت برمبنای 24"
371
 
372
  #: event-organiser-calendar.php:256
373
+ #: includes/event-organiser-event-functions.php:1506
374
  msgid "Loading&#8230;"
375
  msgstr "درحال بارگذاری..."
376
 
639
  msgstr "روز هفته"
640
 
641
  #: event-organiser-edit.php:225
642
+ #: includes/event-organiser-event-functions.php:862
643
  #: includes/event-organiser-register.php:307
644
  msgid "until"
645
  msgstr "تا"
1612
  msgstr "از میان برچسبهایی که بیشتر استفاده شده اند ، انتخاب کنید"
1613
 
1614
  #: includes/event-organiser-cpt.php:163
1615
+ #: includes/event-organiser-event-functions.php:1577
1616
  #: templates/event-meta-event-single.php:66
1617
  msgid "Tags"
1618
  msgstr "برچسب‌ها"
1943
  msgid "Assign the category a colour."
1944
  msgstr ""
1945
 
1946
+ #: includes/event-organiser-event-functions.php:783
1947
  #: includes/event-organiser-register.php:313
1948
  msgid "last"
1949
  msgstr "آخرین"
1950
 
1951
+ #: includes/event-organiser-event-functions.php:783
1952
  #: includes/event-organiser-register.php:309
1953
  msgid "first"
1954
  msgstr "اولین"
1955
 
1956
+ #: includes/event-organiser-event-functions.php:783
1957
  #: includes/event-organiser-register.php:310
1958
  msgid "second"
1959
  msgstr "دومین"
1960
 
1961
+ #: includes/event-organiser-event-functions.php:783
1962
  #: includes/event-organiser-register.php:311
1963
  msgid "third"
1964
  msgstr "سومین"
1965
 
1966
+ #: includes/event-organiser-event-functions.php:783
1967
  #: includes/event-organiser-register.php:312
1968
  msgid "fourth"
1969
  msgstr "چهارمین"
1970
 
1971
+ #: includes/event-organiser-event-functions.php:793
1972
  msgid "one time only"
1973
  msgstr "فقط یک بار"
1974
 
1975
+ #: includes/event-organiser-event-functions.php:796
1976
  msgid "custom recurrence"
1977
  msgstr "تکرار"
1978
 
1979
+ #: includes/event-organiser-event-functions.php:803
1980
  #: includes/event-organiser-register.php:298
1981
  msgid "every day"
1982
  msgstr "هر روز"
1983
 
1984
+ #: includes/event-organiser-event-functions.php:805
1985
  #: includes/event-organiser-register.php:299
1986
  #, php-format
1987
  msgid "every %d days"
1988
  msgstr "هر %d روز"
1989
 
1990
+ #: includes/event-organiser-event-functions.php:811
1991
  #: includes/event-organiser-register.php:300
1992
  msgid "every week on"
1993
  msgstr "هر هفته در"
1994
 
1995
+ #: includes/event-organiser-event-functions.php:813
1996
  #: includes/event-organiser-register.php:301
1997
  #, php-format
1998
  msgid "every %d weeks on"
1999
  msgstr "هر %d هفته در"
2000
 
2001
+ #: includes/event-organiser-event-functions.php:824
2002
  #: includes/event-organiser-register.php:302
2003
  msgid "every month on the"
2004
  msgstr "هر ماه در"
2005
 
2006
+ #: includes/event-organiser-event-functions.php:826
2007
  #: includes/event-organiser-register.php:303
2008
  #, php-format
2009
  msgid "every %d months on the"
2010
  msgstr "هر %d ماه در"
2011
 
2012
+ #: includes/event-organiser-event-functions.php:855
2013
  msgid "every year"
2014
  msgstr "هرسال"
2015
 
2016
+ #: includes/event-organiser-event-functions.php:857
2017
  #, php-format
2018
  msgid "every %d years"
2019
  msgstr "هر %d سال"
2169
  msgid "Event does not contain any dates."
2170
  msgstr ""
2171
 
2172
+ #: includes/event.php:1085
2173
  msgid "Occurrence not deleted. Occurrence not found."
2174
  msgstr ""
2175
 
2176
+ #: includes/event.php:1141
2177
  msgid "There is already an occurrence on this date"
2178
  msgstr ""
2179
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2017-08-31T14:17:32+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr "Sisällytä 'Lisää Googleen' -linkki"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr "Koko päivä"
62
 
@@ -253,7 +253,7 @@ msgstr "Tapahtumakategoriat"
253
 
254
  #: classes/class-eo-widget-categories.php:25
255
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
256
- #: includes/event-organiser-event-functions.php:1563
257
  #: templates/event-meta-event-single.php:62
258
  msgid "Categories"
259
  msgstr "Kategoriat"
@@ -375,7 +375,7 @@ msgid "24 hour time"
375
  msgstr "24 tunnin aika"
376
 
377
  #: event-organiser-calendar.php:256
378
- #: includes/event-organiser-event-functions.php:1500
379
  msgid "Loading&#8230;"
380
  msgstr "Lataa&#8230;"
381
 
@@ -643,7 +643,7 @@ msgid "day of week"
643
  msgstr "päivänä viikossa"
644
 
645
  #: event-organiser-edit.php:225
646
- #: includes/event-organiser-event-functions.php:856
647
  #: includes/event-organiser-register.php:307
648
  msgid "until"
649
  msgstr "kunnes"
@@ -1638,7 +1638,7 @@ msgid "Choose from the most used tags"
1638
  msgstr "Valitse eniten käytetyistä avainsanoista"
1639
 
1640
  #: includes/event-organiser-cpt.php:163
1641
- #: includes/event-organiser-event-functions.php:1571
1642
  #: templates/event-meta-event-single.php:66
1643
  msgid "Tags"
1644
  msgstr "Avainsanat"
@@ -2018,77 +2018,77 @@ msgstr "Väri"
2018
  msgid "Assign the category a colour."
2019
  msgstr "Liitää värin kategoriaan."
2020
 
2021
- #: includes/event-organiser-event-functions.php:777
2022
  #: includes/event-organiser-register.php:313
2023
  msgid "last"
2024
  msgstr "viimeinen"
2025
 
2026
- #: includes/event-organiser-event-functions.php:777
2027
  #: includes/event-organiser-register.php:309
2028
  msgid "first"
2029
  msgstr "ensimmäinen"
2030
 
2031
- #: includes/event-organiser-event-functions.php:777
2032
  #: includes/event-organiser-register.php:310
2033
  msgid "second"
2034
  msgstr "toinen"
2035
 
2036
- #: includes/event-organiser-event-functions.php:777
2037
  #: includes/event-organiser-register.php:311
2038
  msgid "third"
2039
  msgstr "kolmas"
2040
 
2041
- #: includes/event-organiser-event-functions.php:777
2042
  #: includes/event-organiser-register.php:312
2043
  msgid "fourth"
2044
  msgstr "neljäs"
2045
 
2046
- #: includes/event-organiser-event-functions.php:787
2047
  msgid "one time only"
2048
  msgstr "vain kerran"
2049
 
2050
- #: includes/event-organiser-event-functions.php:790
2051
  msgid "custom recurrence"
2052
  msgstr "muokattu toistuvuus"
2053
 
2054
- #: includes/event-organiser-event-functions.php:797
2055
  #: includes/event-organiser-register.php:298
2056
  msgid "every day"
2057
  msgstr "joka päivä"
2058
 
2059
- #: includes/event-organiser-event-functions.php:799
2060
  #: includes/event-organiser-register.php:299
2061
  #, php-format
2062
  msgid "every %d days"
2063
  msgstr "joka %d päivä"
2064
 
2065
- #: includes/event-organiser-event-functions.php:805
2066
  #: includes/event-organiser-register.php:300
2067
  msgid "every week on"
2068
  msgstr "joka viikko"
2069
 
2070
- #: includes/event-organiser-event-functions.php:807
2071
  #: includes/event-organiser-register.php:301
2072
  #, php-format
2073
  msgid "every %d weeks on"
2074
  msgstr "joka %d viikko"
2075
 
2076
- #: includes/event-organiser-event-functions.php:818
2077
  #: includes/event-organiser-register.php:302
2078
  msgid "every month on the"
2079
  msgstr "joka kuukausi"
2080
 
2081
- #: includes/event-organiser-event-functions.php:820
2082
  #: includes/event-organiser-register.php:303
2083
  #, php-format
2084
  msgid "every %d months on the"
2085
  msgstr "joka %d kuukausi"
2086
 
2087
- #: includes/event-organiser-event-functions.php:849
2088
  msgid "every year"
2089
  msgstr "joka vuosi"
2090
 
2091
- #: includes/event-organiser-event-functions.php:851
2092
  #, php-format
2093
  msgid "every %d years"
2094
  msgstr "joka %d vuosi"
@@ -2244,11 +2244,11 @@ msgstr "Virheellinen kuukausittainen aikataulu (virheellinen järjestysluku)"
2244
  msgid "Event does not contain any dates."
2245
  msgstr ""
2246
 
2247
- #: includes/event.php:1080
2248
  msgid "Occurrence not deleted. Occurrence not found."
2249
  msgstr ""
2250
 
2251
- #: includes/event.php:1136
2252
  msgid "There is already an occurrence on this date"
2253
  msgstr ""
2254
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2017-08-31T14:17:32+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr "Sisällytä 'Lisää Googleen' -linkki"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr "Koko päivä"
62
 
253
 
254
  #: classes/class-eo-widget-categories.php:25
255
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
256
+ #: includes/event-organiser-event-functions.php:1569
257
  #: templates/event-meta-event-single.php:62
258
  msgid "Categories"
259
  msgstr "Kategoriat"
375
  msgstr "24 tunnin aika"
376
 
377
  #: event-organiser-calendar.php:256
378
+ #: includes/event-organiser-event-functions.php:1506
379
  msgid "Loading&#8230;"
380
  msgstr "Lataa&#8230;"
381
 
643
  msgstr "päivänä viikossa"
644
 
645
  #: event-organiser-edit.php:225
646
+ #: includes/event-organiser-event-functions.php:862
647
  #: includes/event-organiser-register.php:307
648
  msgid "until"
649
  msgstr "kunnes"
1638
  msgstr "Valitse eniten käytetyistä avainsanoista"
1639
 
1640
  #: includes/event-organiser-cpt.php:163
1641
+ #: includes/event-organiser-event-functions.php:1577
1642
  #: templates/event-meta-event-single.php:66
1643
  msgid "Tags"
1644
  msgstr "Avainsanat"
2018
  msgid "Assign the category a colour."
2019
  msgstr "Liitää värin kategoriaan."
2020
 
2021
+ #: includes/event-organiser-event-functions.php:783
2022
  #: includes/event-organiser-register.php:313
2023
  msgid "last"
2024
  msgstr "viimeinen"
2025
 
2026
+ #: includes/event-organiser-event-functions.php:783
2027
  #: includes/event-organiser-register.php:309
2028
  msgid "first"
2029
  msgstr "ensimmäinen"
2030
 
2031
+ #: includes/event-organiser-event-functions.php:783
2032
  #: includes/event-organiser-register.php:310
2033
  msgid "second"
2034
  msgstr "toinen"
2035
 
2036
+ #: includes/event-organiser-event-functions.php:783
2037
  #: includes/event-organiser-register.php:311
2038
  msgid "third"
2039
  msgstr "kolmas"
2040
 
2041
+ #: includes/event-organiser-event-functions.php:783
2042
  #: includes/event-organiser-register.php:312
2043
  msgid "fourth"
2044
  msgstr "neljäs"
2045
 
2046
+ #: includes/event-organiser-event-functions.php:793
2047
  msgid "one time only"
2048
  msgstr "vain kerran"
2049
 
2050
+ #: includes/event-organiser-event-functions.php:796
2051
  msgid "custom recurrence"
2052
  msgstr "muokattu toistuvuus"
2053
 
2054
+ #: includes/event-organiser-event-functions.php:803
2055
  #: includes/event-organiser-register.php:298
2056
  msgid "every day"
2057
  msgstr "joka päivä"
2058
 
2059
+ #: includes/event-organiser-event-functions.php:805
2060
  #: includes/event-organiser-register.php:299
2061
  #, php-format
2062
  msgid "every %d days"
2063
  msgstr "joka %d päivä"
2064
 
2065
+ #: includes/event-organiser-event-functions.php:811
2066
  #: includes/event-organiser-register.php:300
2067
  msgid "every week on"
2068
  msgstr "joka viikko"
2069
 
2070
+ #: includes/event-organiser-event-functions.php:813
2071
  #: includes/event-organiser-register.php:301
2072
  #, php-format
2073
  msgid "every %d weeks on"
2074
  msgstr "joka %d viikko"
2075
 
2076
+ #: includes/event-organiser-event-functions.php:824
2077
  #: includes/event-organiser-register.php:302
2078
  msgid "every month on the"
2079
  msgstr "joka kuukausi"
2080
 
2081
+ #: includes/event-organiser-event-functions.php:826
2082
  #: includes/event-organiser-register.php:303
2083
  #, php-format
2084
  msgid "every %d months on the"
2085
  msgstr "joka %d kuukausi"
2086
 
2087
+ #: includes/event-organiser-event-functions.php:855
2088
  msgid "every year"
2089
  msgstr "joka vuosi"
2090
 
2091
+ #: includes/event-organiser-event-functions.php:857
2092
  #, php-format
2093
  msgid "every %d years"
2094
  msgstr "joka %d vuosi"
2244
  msgid "Event does not contain any dates."
2245
  msgstr ""
2246
 
2247
+ #: includes/event.php:1085
2248
  msgid "Occurrence not deleted. Occurrence not found."
2249
  msgstr ""
2250
 
2251
+ #: includes/event.php:1141
2252
  msgid "There is already an occurrence on this date"
2253
  msgstr ""
2254
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2017-10-31T18:44:38+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr "Inclure le lien 'Ajouter à Google'"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr "Toute la journée"
62
 
@@ -254,7 +254,7 @@ msgstr "Catégories des événements"
254
 
255
  #: classes/class-eo-widget-categories.php:25
256
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
257
- #: includes/event-organiser-event-functions.php:1563
258
  #: templates/event-meta-event-single.php:62
259
  msgid "Categories"
260
  msgstr "Catégories"
@@ -380,7 +380,7 @@ msgid "24 hour time"
380
  msgstr "heure au format 24h"
381
 
382
  #: event-organiser-calendar.php:256
383
- #: includes/event-organiser-event-functions.php:1500
384
  msgid "Loading&#8230;"
385
  msgstr "Chargement&#8230;"
386
 
@@ -662,7 +662,7 @@ msgid "day of week"
662
  msgstr "jour de la semaine"
663
 
664
  #: event-organiser-edit.php:225
665
- #: includes/event-organiser-event-functions.php:856
666
  #: includes/event-organiser-register.php:307
667
  msgid "until"
668
  msgstr "jusqu'au"
@@ -1704,7 +1704,7 @@ msgid "Choose from the most used tags"
1704
  msgstr "Choisir parmi les mots-clefs les plus utilisés"
1705
 
1706
  #: includes/event-organiser-cpt.php:163
1707
- #: includes/event-organiser-event-functions.php:1571
1708
  #: templates/event-meta-event-single.php:66
1709
  msgid "Tags"
1710
  msgstr "Mots-clefs"
@@ -2084,77 +2084,77 @@ msgstr "Couleur"
2084
  msgid "Assign the category a colour."
2085
  msgstr "Assigner une couleur à la catégorie."
2086
 
2087
- #: includes/event-organiser-event-functions.php:777
2088
  #: includes/event-organiser-register.php:313
2089
  msgid "last"
2090
  msgstr "dernier"
2091
 
2092
- #: includes/event-organiser-event-functions.php:777
2093
  #: includes/event-organiser-register.php:309
2094
  msgid "first"
2095
  msgstr "premier"
2096
 
2097
- #: includes/event-organiser-event-functions.php:777
2098
  #: includes/event-organiser-register.php:310
2099
  msgid "second"
2100
  msgstr "second"
2101
 
2102
- #: includes/event-organiser-event-functions.php:777
2103
  #: includes/event-organiser-register.php:311
2104
  msgid "third"
2105
  msgstr "troisième"
2106
 
2107
- #: includes/event-organiser-event-functions.php:777
2108
  #: includes/event-organiser-register.php:312
2109
  msgid "fourth"
2110
  msgstr "quatrième"
2111
 
2112
- #: includes/event-organiser-event-functions.php:787
2113
  msgid "one time only"
2114
  msgstr "une seule fois"
2115
 
2116
- #: includes/event-organiser-event-functions.php:790
2117
  msgid "custom recurrence"
2118
  msgstr "réoccurence personnalisée"
2119
 
2120
- #: includes/event-organiser-event-functions.php:797
2121
  #: includes/event-organiser-register.php:298
2122
  msgid "every day"
2123
  msgstr "chaque jour"
2124
 
2125
- #: includes/event-organiser-event-functions.php:799
2126
  #: includes/event-organiser-register.php:299
2127
  #, php-format
2128
  msgid "every %d days"
2129
  msgstr "tous les %d jours"
2130
 
2131
- #: includes/event-organiser-event-functions.php:805
2132
  #: includes/event-organiser-register.php:300
2133
  msgid "every week on"
2134
  msgstr "chaque semaine le"
2135
 
2136
- #: includes/event-organiser-event-functions.php:807
2137
  #: includes/event-organiser-register.php:301
2138
  #, php-format
2139
  msgid "every %d weeks on"
2140
  msgstr "Toutes les %d semaines le"
2141
 
2142
- #: includes/event-organiser-event-functions.php:818
2143
  #: includes/event-organiser-register.php:302
2144
  msgid "every month on the"
2145
  msgstr "chaque mois le"
2146
 
2147
- #: includes/event-organiser-event-functions.php:820
2148
  #: includes/event-organiser-register.php:303
2149
  #, php-format
2150
  msgid "every %d months on the"
2151
  msgstr "Tous les %d mois le"
2152
 
2153
- #: includes/event-organiser-event-functions.php:849
2154
  msgid "every year"
2155
  msgstr "chaque année"
2156
 
2157
- #: includes/event-organiser-event-functions.php:851
2158
  #, php-format
2159
  msgid "every %d years"
2160
  msgstr "Toutes les %d années"
@@ -2322,11 +2322,11 @@ msgstr "Programme mensuel invalide (ordinal invalide)"
2322
  msgid "Event does not contain any dates."
2323
  msgstr "L'événement n'est associé à aucune date."
2324
 
2325
- #: includes/event.php:1080
2326
  msgid "Occurrence not deleted. Occurrence not found."
2327
  msgstr "L’occurrence n'est pas supprimée, elle n'a pu être trouvée."
2328
 
2329
- #: includes/event.php:1136
2330
  msgid "There is already an occurrence on this date"
2331
  msgstr "Il y a déjà une occurrence pour cette date"
2332
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2017-10-31T18:44:38+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr "Inclure le lien 'Ajouter à Google'"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr "Toute la journée"
62
 
254
 
255
  #: classes/class-eo-widget-categories.php:25
256
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
257
+ #: includes/event-organiser-event-functions.php:1569
258
  #: templates/event-meta-event-single.php:62
259
  msgid "Categories"
260
  msgstr "Catégories"
380
  msgstr "heure au format 24h"
381
 
382
  #: event-organiser-calendar.php:256
383
+ #: includes/event-organiser-event-functions.php:1506
384
  msgid "Loading&#8230;"
385
  msgstr "Chargement&#8230;"
386
 
662
  msgstr "jour de la semaine"
663
 
664
  #: event-organiser-edit.php:225
665
+ #: includes/event-organiser-event-functions.php:862
666
  #: includes/event-organiser-register.php:307
667
  msgid "until"
668
  msgstr "jusqu'au"
1704
  msgstr "Choisir parmi les mots-clefs les plus utilisés"
1705
 
1706
  #: includes/event-organiser-cpt.php:163
1707
+ #: includes/event-organiser-event-functions.php:1577
1708
  #: templates/event-meta-event-single.php:66
1709
  msgid "Tags"
1710
  msgstr "Mots-clefs"
2084
  msgid "Assign the category a colour."
2085
  msgstr "Assigner une couleur à la catégorie."
2086
 
2087
+ #: includes/event-organiser-event-functions.php:783
2088
  #: includes/event-organiser-register.php:313
2089
  msgid "last"
2090
  msgstr "dernier"
2091
 
2092
+ #: includes/event-organiser-event-functions.php:783
2093
  #: includes/event-organiser-register.php:309
2094
  msgid "first"
2095
  msgstr "premier"
2096
 
2097
+ #: includes/event-organiser-event-functions.php:783
2098
  #: includes/event-organiser-register.php:310
2099
  msgid "second"
2100
  msgstr "second"
2101
 
2102
+ #: includes/event-organiser-event-functions.php:783
2103
  #: includes/event-organiser-register.php:311
2104
  msgid "third"
2105
  msgstr "troisième"
2106
 
2107
+ #: includes/event-organiser-event-functions.php:783
2108
  #: includes/event-organiser-register.php:312
2109
  msgid "fourth"
2110
  msgstr "quatrième"
2111
 
2112
+ #: includes/event-organiser-event-functions.php:793
2113
  msgid "one time only"
2114
  msgstr "une seule fois"
2115
 
2116
+ #: includes/event-organiser-event-functions.php:796
2117
  msgid "custom recurrence"
2118
  msgstr "réoccurence personnalisée"
2119
 
2120
+ #: includes/event-organiser-event-functions.php:803
2121
  #: includes/event-organiser-register.php:298
2122
  msgid "every day"
2123
  msgstr "chaque jour"
2124
 
2125
+ #: includes/event-organiser-event-functions.php:805
2126
  #: includes/event-organiser-register.php:299
2127
  #, php-format
2128
  msgid "every %d days"
2129
  msgstr "tous les %d jours"
2130
 
2131
+ #: includes/event-organiser-event-functions.php:811
2132
  #: includes/event-organiser-register.php:300
2133
  msgid "every week on"
2134
  msgstr "chaque semaine le"
2135
 
2136
+ #: includes/event-organiser-event-functions.php:813
2137
  #: includes/event-organiser-register.php:301
2138
  #, php-format
2139
  msgid "every %d weeks on"
2140
  msgstr "Toutes les %d semaines le"
2141
 
2142
+ #: includes/event-organiser-event-functions.php:824
2143
  #: includes/event-organiser-register.php:302
2144
  msgid "every month on the"
2145
  msgstr "chaque mois le"
2146
 
2147
+ #: includes/event-organiser-event-functions.php:826
2148
  #: includes/event-organiser-register.php:303
2149
  #, php-format
2150
  msgid "every %d months on the"
2151
  msgstr "Tous les %d mois le"
2152
 
2153
+ #: includes/event-organiser-event-functions.php:855
2154
  msgid "every year"
2155
  msgstr "chaque année"
2156
 
2157
+ #: includes/event-organiser-event-functions.php:857
2158
  #, php-format
2159
  msgid "every %d years"
2160
  msgstr "Toutes les %d années"
2322
  msgid "Event does not contain any dates."
2323
  msgstr "L'événement n'est associé à aucune date."
2324
 
2325
+ #: includes/event.php:1085
2326
  msgid "Occurrence not deleted. Occurrence not found."
2327
  msgstr "L’occurrence n'est pas supprimée, elle n'a pu être trouvée."
2328
 
2329
+ #: includes/event.php:1141
2330
  msgid "There is already an occurrence on this date"
2331
  msgstr "Il y a déjà une occurrence pour cette date"
2332
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:16:48+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -57,7 +57,7 @@ msgid "Include 'Add To Google' link"
57
  msgstr "כלול קישור 'הוספה לגוגל'"
58
 
59
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
60
- #: includes/event-organiser-event-functions.php:1382
61
  msgid "All day"
62
  msgstr "כל היום"
63
 
@@ -251,7 +251,7 @@ msgstr "קטגוריות אירוע"
251
 
252
  #: classes/class-eo-widget-categories.php:25
253
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
254
- #: includes/event-organiser-event-functions.php:1563
255
  #: templates/event-meta-event-single.php:62
256
  msgid "Categories"
257
  msgstr "קטגוריות"
@@ -373,7 +373,7 @@ msgid "24 hour time"
373
  msgstr "שעון 24"
374
 
375
  #: event-organiser-calendar.php:256
376
- #: includes/event-organiser-event-functions.php:1500
377
  msgid "Loading&#8230;"
378
  msgstr "בטעינה...."
379
 
@@ -643,7 +643,7 @@ msgid "day of week"
643
  msgstr "יום בשבוע"
644
 
645
  #: event-organiser-edit.php:225
646
- #: includes/event-organiser-event-functions.php:856
647
  #: includes/event-organiser-register.php:307
648
  msgid "until"
649
  msgstr "עד"
@@ -1642,7 +1642,7 @@ msgid "Choose from the most used tags"
1642
  msgstr ""
1643
 
1644
  #: includes/event-organiser-cpt.php:163
1645
- #: includes/event-organiser-event-functions.php:1571
1646
  #: templates/event-meta-event-single.php:66
1647
  msgid "Tags"
1648
  msgstr "תגיות"
@@ -2007,77 +2007,77 @@ msgstr "צבע"
2007
  msgid "Assign the category a colour."
2008
  msgstr "הקצה צבע לקטגוריה"
2009
 
2010
- #: includes/event-organiser-event-functions.php:777
2011
  #: includes/event-organiser-register.php:313
2012
  msgid "last"
2013
  msgstr "אחרון"
2014
 
2015
- #: includes/event-organiser-event-functions.php:777
2016
  #: includes/event-organiser-register.php:309
2017
  msgid "first"
2018
  msgstr "ראשון"
2019
 
2020
- #: includes/event-organiser-event-functions.php:777
2021
  #: includes/event-organiser-register.php:310
2022
  msgid "second"
2023
  msgstr "שני"
2024
 
2025
- #: includes/event-organiser-event-functions.php:777
2026
  #: includes/event-organiser-register.php:311
2027
  msgid "third"
2028
  msgstr "שלישי"
2029
 
2030
- #: includes/event-organiser-event-functions.php:777
2031
  #: includes/event-organiser-register.php:312
2032
  msgid "fourth"
2033
  msgstr "רביעי"
2034
 
2035
- #: includes/event-organiser-event-functions.php:787
2036
  msgid "one time only"
2037
  msgstr "פעם אחת בלבד"
2038
 
2039
- #: includes/event-organiser-event-functions.php:790
2040
  msgid "custom recurrence"
2041
  msgstr "חזרה מותאמת אישית"
2042
 
2043
- #: includes/event-organiser-event-functions.php:797
2044
  #: includes/event-organiser-register.php:298
2045
  msgid "every day"
2046
  msgstr "כל יום"
2047
 
2048
- #: includes/event-organiser-event-functions.php:799
2049
  #: includes/event-organiser-register.php:299
2050
  #, php-format
2051
  msgid "every %d days"
2052
  msgstr "כל %d ימים"
2053
 
2054
- #: includes/event-organiser-event-functions.php:805
2055
  #: includes/event-organiser-register.php:300
2056
  msgid "every week on"
2057
  msgstr "כל שבוע ב"
2058
 
2059
- #: includes/event-organiser-event-functions.php:807
2060
  #: includes/event-organiser-register.php:301
2061
  #, php-format
2062
  msgid "every %d weeks on"
2063
  msgstr "כל %d שבועות ב"
2064
 
2065
- #: includes/event-organiser-event-functions.php:818
2066
  #: includes/event-organiser-register.php:302
2067
  msgid "every month on the"
2068
  msgstr "כל חודש ב"
2069
 
2070
- #: includes/event-organiser-event-functions.php:820
2071
  #: includes/event-organiser-register.php:303
2072
  #, php-format
2073
  msgid "every %d months on the"
2074
  msgstr "כל %d חודשים ב"
2075
 
2076
- #: includes/event-organiser-event-functions.php:849
2077
  msgid "every year"
2078
  msgstr "כל שנה"
2079
 
2080
- #: includes/event-organiser-event-functions.php:851
2081
  #, php-format
2082
  msgid "every %d years"
2083
  msgstr "כל %d שנים"
@@ -2233,11 +2233,11 @@ msgstr "תזמון חודשי שגוי (סדר שגוי)"
2233
  msgid "Event does not contain any dates."
2234
  msgstr "אירוע אינו מכיל תאריכים"
2235
 
2236
- #: includes/event.php:1080
2237
  msgid "Occurrence not deleted. Occurrence not found."
2238
  msgstr "המופע לא נמחק. המופע לא נמצא."
2239
 
2240
- #: includes/event.php:1136
2241
  msgid "There is already an occurrence on this date"
2242
  msgstr ""
2243
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:16:48+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
57
  msgstr "כלול קישור 'הוספה לגוגל'"
58
 
59
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
60
+ #: includes/event-organiser-event-functions.php:1388
61
  msgid "All day"
62
  msgstr "כל היום"
63
 
251
 
252
  #: classes/class-eo-widget-categories.php:25
253
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
254
+ #: includes/event-organiser-event-functions.php:1569
255
  #: templates/event-meta-event-single.php:62
256
  msgid "Categories"
257
  msgstr "קטגוריות"
373
  msgstr "שעון 24"
374
 
375
  #: event-organiser-calendar.php:256
376
+ #: includes/event-organiser-event-functions.php:1506
377
  msgid "Loading&#8230;"
378
  msgstr "בטעינה...."
379
 
643
  msgstr "יום בשבוע"
644
 
645
  #: event-organiser-edit.php:225
646
+ #: includes/event-organiser-event-functions.php:862
647
  #: includes/event-organiser-register.php:307
648
  msgid "until"
649
  msgstr "עד"
1642
  msgstr ""
1643
 
1644
  #: includes/event-organiser-cpt.php:163
1645
+ #: includes/event-organiser-event-functions.php:1577
1646
  #: templates/event-meta-event-single.php:66
1647
  msgid "Tags"
1648
  msgstr "תגיות"
2007
  msgid "Assign the category a colour."
2008
  msgstr "הקצה צבע לקטגוריה"
2009
 
2010
+ #: includes/event-organiser-event-functions.php:783
2011
  #: includes/event-organiser-register.php:313
2012
  msgid "last"
2013
  msgstr "אחרון"
2014
 
2015
+ #: includes/event-organiser-event-functions.php:783
2016
  #: includes/event-organiser-register.php:309
2017
  msgid "first"
2018
  msgstr "ראשון"
2019
 
2020
+ #: includes/event-organiser-event-functions.php:783
2021
  #: includes/event-organiser-register.php:310
2022
  msgid "second"
2023
  msgstr "שני"
2024
 
2025
+ #: includes/event-organiser-event-functions.php:783
2026
  #: includes/event-organiser-register.php:311
2027
  msgid "third"
2028
  msgstr "שלישי"
2029
 
2030
+ #: includes/event-organiser-event-functions.php:783
2031
  #: includes/event-organiser-register.php:312
2032
  msgid "fourth"
2033
  msgstr "רביעי"
2034
 
2035
+ #: includes/event-organiser-event-functions.php:793
2036
  msgid "one time only"
2037
  msgstr "פעם אחת בלבד"
2038
 
2039
+ #: includes/event-organiser-event-functions.php:796
2040
  msgid "custom recurrence"
2041
  msgstr "חזרה מותאמת אישית"
2042
 
2043
+ #: includes/event-organiser-event-functions.php:803
2044
  #: includes/event-organiser-register.php:298
2045
  msgid "every day"
2046
  msgstr "כל יום"
2047
 
2048
+ #: includes/event-organiser-event-functions.php:805
2049
  #: includes/event-organiser-register.php:299
2050
  #, php-format
2051
  msgid "every %d days"
2052
  msgstr "כל %d ימים"
2053
 
2054
+ #: includes/event-organiser-event-functions.php:811
2055
  #: includes/event-organiser-register.php:300
2056
  msgid "every week on"
2057
  msgstr "כל שבוע ב"
2058
 
2059
+ #: includes/event-organiser-event-functions.php:813
2060
  #: includes/event-organiser-register.php:301
2061
  #, php-format
2062
  msgid "every %d weeks on"
2063
  msgstr "כל %d שבועות ב"
2064
 
2065
+ #: includes/event-organiser-event-functions.php:824
2066
  #: includes/event-organiser-register.php:302
2067
  msgid "every month on the"
2068
  msgstr "כל חודש ב"
2069
 
2070
+ #: includes/event-organiser-event-functions.php:826
2071
  #: includes/event-organiser-register.php:303
2072
  #, php-format
2073
  msgid "every %d months on the"
2074
  msgstr "כל %d חודשים ב"
2075
 
2076
+ #: includes/event-organiser-event-functions.php:855
2077
  msgid "every year"
2078
  msgstr "כל שנה"
2079
 
2080
+ #: includes/event-organiser-event-functions.php:857
2081
  #, php-format
2082
  msgid "every %d years"
2083
  msgstr "כל %d שנים"
2233
  msgid "Event does not contain any dates."
2234
  msgstr "אירוע אינו מכיל תאריכים"
2235
 
2236
+ #: includes/event.php:1085
2237
  msgid "Occurrence not deleted. Occurrence not found."
2238
  msgstr "המופע לא נמחק. המופע לא נמצא."
2239
 
2240
+ #: includes/event.php:1141
2241
  msgid "There is already an occurrence on this date"
2242
  msgstr ""
2243
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:16:43+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr ""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr ""
62
 
@@ -248,7 +248,7 @@ msgstr ""
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
- #: includes/event-organiser-event-functions.php:1563
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr ""
@@ -370,7 +370,7 @@ msgid "24 hour time"
370
  msgstr ""
371
 
372
  #: event-organiser-calendar.php:256
373
- #: includes/event-organiser-event-functions.php:1500
374
  msgid "Loading&#8230;"
375
  msgstr ""
376
 
@@ -638,7 +638,7 @@ msgid "day of week"
638
  msgstr ""
639
 
640
  #: event-organiser-edit.php:225
641
- #: includes/event-organiser-event-functions.php:856
642
  #: includes/event-organiser-register.php:307
643
  msgid "until"
644
  msgstr ""
@@ -1612,7 +1612,7 @@ msgid "Choose from the most used tags"
1612
  msgstr ""
1613
 
1614
  #: includes/event-organiser-cpt.php:163
1615
- #: includes/event-organiser-event-functions.php:1571
1616
  #: templates/event-meta-event-single.php:66
1617
  msgid "Tags"
1618
  msgstr ""
@@ -1942,77 +1942,77 @@ msgstr ""
1942
  msgid "Assign the category a colour."
1943
  msgstr ""
1944
 
1945
- #: includes/event-organiser-event-functions.php:777
1946
  #: includes/event-organiser-register.php:313
1947
  msgid "last"
1948
  msgstr ""
1949
 
1950
- #: includes/event-organiser-event-functions.php:777
1951
  #: includes/event-organiser-register.php:309
1952
  msgid "first"
1953
  msgstr ""
1954
 
1955
- #: includes/event-organiser-event-functions.php:777
1956
  #: includes/event-organiser-register.php:310
1957
  msgid "second"
1958
  msgstr ""
1959
 
1960
- #: includes/event-organiser-event-functions.php:777
1961
  #: includes/event-organiser-register.php:311
1962
  msgid "third"
1963
  msgstr ""
1964
 
1965
- #: includes/event-organiser-event-functions.php:777
1966
  #: includes/event-organiser-register.php:312
1967
  msgid "fourth"
1968
  msgstr ""
1969
 
1970
- #: includes/event-organiser-event-functions.php:787
1971
  msgid "one time only"
1972
  msgstr ""
1973
 
1974
- #: includes/event-organiser-event-functions.php:790
1975
  msgid "custom recurrence"
1976
  msgstr ""
1977
 
1978
- #: includes/event-organiser-event-functions.php:797
1979
  #: includes/event-organiser-register.php:298
1980
  msgid "every day"
1981
  msgstr ""
1982
 
1983
- #: includes/event-organiser-event-functions.php:799
1984
  #: includes/event-organiser-register.php:299
1985
  #, php-format
1986
  msgid "every %d days"
1987
  msgstr ""
1988
 
1989
- #: includes/event-organiser-event-functions.php:805
1990
  #: includes/event-organiser-register.php:300
1991
  msgid "every week on"
1992
  msgstr ""
1993
 
1994
- #: includes/event-organiser-event-functions.php:807
1995
  #: includes/event-organiser-register.php:301
1996
  #, php-format
1997
  msgid "every %d weeks on"
1998
  msgstr ""
1999
 
2000
- #: includes/event-organiser-event-functions.php:818
2001
  #: includes/event-organiser-register.php:302
2002
  msgid "every month on the"
2003
  msgstr ""
2004
 
2005
- #: includes/event-organiser-event-functions.php:820
2006
  #: includes/event-organiser-register.php:303
2007
  #, php-format
2008
  msgid "every %d months on the"
2009
  msgstr ""
2010
 
2011
- #: includes/event-organiser-event-functions.php:849
2012
  msgid "every year"
2013
  msgstr ""
2014
 
2015
- #: includes/event-organiser-event-functions.php:851
2016
  #, php-format
2017
  msgid "every %d years"
2018
  msgstr ""
@@ -2176,11 +2176,11 @@ msgstr ""
2176
  msgid "Event does not contain any dates."
2177
  msgstr ""
2178
 
2179
- #: includes/event.php:1080
2180
  msgid "Occurrence not deleted. Occurrence not found."
2181
  msgstr ""
2182
 
2183
- #: includes/event.php:1136
2184
  msgid "There is already an occurrence on this date"
2185
  msgstr ""
2186
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:16:43+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr ""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr ""
62
 
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
+ #: includes/event-organiser-event-functions.php:1569
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr ""
370
  msgstr ""
371
 
372
  #: event-organiser-calendar.php:256
373
+ #: includes/event-organiser-event-functions.php:1506
374
  msgid "Loading&#8230;"
375
  msgstr ""
376
 
638
  msgstr ""
639
 
640
  #: event-organiser-edit.php:225
641
+ #: includes/event-organiser-event-functions.php:862
642
  #: includes/event-organiser-register.php:307
643
  msgid "until"
644
  msgstr ""
1612
  msgstr ""
1613
 
1614
  #: includes/event-organiser-cpt.php:163
1615
+ #: includes/event-organiser-event-functions.php:1577
1616
  #: templates/event-meta-event-single.php:66
1617
  msgid "Tags"
1618
  msgstr ""
1942
  msgid "Assign the category a colour."
1943
  msgstr ""
1944
 
1945
+ #: includes/event-organiser-event-functions.php:783
1946
  #: includes/event-organiser-register.php:313
1947
  msgid "last"
1948
  msgstr ""
1949
 
1950
+ #: includes/event-organiser-event-functions.php:783
1951
  #: includes/event-organiser-register.php:309
1952
  msgid "first"
1953
  msgstr ""
1954
 
1955
+ #: includes/event-organiser-event-functions.php:783
1956
  #: includes/event-organiser-register.php:310
1957
  msgid "second"
1958
  msgstr ""
1959
 
1960
+ #: includes/event-organiser-event-functions.php:783
1961
  #: includes/event-organiser-register.php:311
1962
  msgid "third"
1963
  msgstr ""
1964
 
1965
+ #: includes/event-organiser-event-functions.php:783
1966
  #: includes/event-organiser-register.php:312
1967
  msgid "fourth"
1968
  msgstr ""
1969
 
1970
+ #: includes/event-organiser-event-functions.php:793
1971
  msgid "one time only"
1972
  msgstr ""
1973
 
1974
+ #: includes/event-organiser-event-functions.php:796
1975
  msgid "custom recurrence"
1976
  msgstr ""
1977
 
1978
+ #: includes/event-organiser-event-functions.php:803
1979
  #: includes/event-organiser-register.php:298
1980
  msgid "every day"
1981
  msgstr ""
1982
 
1983
+ #: includes/event-organiser-event-functions.php:805
1984
  #: includes/event-organiser-register.php:299
1985
  #, php-format
1986
  msgid "every %d days"
1987
  msgstr ""
1988
 
1989
+ #: includes/event-organiser-event-functions.php:811
1990
  #: includes/event-organiser-register.php:300
1991
  msgid "every week on"
1992
  msgstr ""
1993
 
1994
+ #: includes/event-organiser-event-functions.php:813
1995
  #: includes/event-organiser-register.php:301
1996
  #, php-format
1997
  msgid "every %d weeks on"
1998
  msgstr ""
1999
 
2000
+ #: includes/event-organiser-event-functions.php:824
2001
  #: includes/event-organiser-register.php:302
2002
  msgid "every month on the"
2003
  msgstr ""
2004
 
2005
+ #: includes/event-organiser-event-functions.php:826
2006
  #: includes/event-organiser-register.php:303
2007
  #, php-format
2008
  msgid "every %d months on the"
2009
  msgstr ""
2010
 
2011
+ #: includes/event-organiser-event-functions.php:855
2012
  msgid "every year"
2013
  msgstr ""
2014
 
2015
+ #: includes/event-organiser-event-functions.php:857
2016
  #, php-format
2017
  msgid "every %d years"
2018
  msgstr ""
2176
  msgid "Event does not contain any dates."
2177
  msgstr ""
2178
 
2179
+ #: includes/event.php:1085
2180
  msgid "Occurrence not deleted. Occurrence not found."
2181
  msgstr ""
2182
 
2183
+ #: includes/event.php:1141
2184
  msgid "There is already an occurrence on this date"
2185
  msgstr ""
2186
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2017-04-14T22:58:58+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -57,7 +57,7 @@ msgid "Include 'Add To Google' link"
57
  msgstr "Uključi 'Add To google' poveznicu"
58
 
59
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
60
- #: includes/event-organiser-event-functions.php:1382
61
  msgid "All day"
62
  msgstr "Cijeli dan"
63
 
@@ -252,7 +252,7 @@ msgstr "Kategorije događaja"
252
 
253
  #: classes/class-eo-widget-categories.php:25
254
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
255
- #: includes/event-organiser-event-functions.php:1563
256
  #: templates/event-meta-event-single.php:62
257
  msgid "Categories"
258
  msgstr "Kategorije"
@@ -374,7 +374,7 @@ msgid "24 hour time"
374
  msgstr "24 satno"
375
 
376
  #: event-organiser-calendar.php:256
377
- #: includes/event-organiser-event-functions.php:1500
378
  msgid "Loading&#8230;"
379
  msgstr "Učitavam...."
380
 
@@ -644,7 +644,7 @@ msgid "day of week"
644
  msgstr "dan u tjednu"
645
 
646
  #: event-organiser-edit.php:225
647
- #: includes/event-organiser-event-functions.php:856
648
  #: includes/event-organiser-register.php:307
649
  msgid "until"
650
  msgstr "do"
@@ -1639,7 +1639,7 @@ msgid "Choose from the most used tags"
1639
  msgstr "Izaberi između najkorištenijih oznaka"
1640
 
1641
  #: includes/event-organiser-cpt.php:163
1642
- #: includes/event-organiser-event-functions.php:1571
1643
  #: templates/event-meta-event-single.php:66
1644
  msgid "Tags"
1645
  msgstr "Oznake"
@@ -2014,77 +2014,77 @@ msgstr "Boja"
2014
  msgid "Assign the category a colour."
2015
  msgstr "Dodjeli kategoriji boju"
2016
 
2017
- #: includes/event-organiser-event-functions.php:777
2018
  #: includes/event-organiser-register.php:313
2019
  msgid "last"
2020
  msgstr "zadnji"
2021
 
2022
- #: includes/event-organiser-event-functions.php:777
2023
  #: includes/event-organiser-register.php:309
2024
  msgid "first"
2025
  msgstr "prvi"
2026
 
2027
- #: includes/event-organiser-event-functions.php:777
2028
  #: includes/event-organiser-register.php:310
2029
  msgid "second"
2030
  msgstr "drugi"
2031
 
2032
- #: includes/event-organiser-event-functions.php:777
2033
  #: includes/event-organiser-register.php:311
2034
  msgid "third"
2035
  msgstr "treči"
2036
 
2037
- #: includes/event-organiser-event-functions.php:777
2038
  #: includes/event-organiser-register.php:312
2039
  msgid "fourth"
2040
  msgstr "četvrti"
2041
 
2042
- #: includes/event-organiser-event-functions.php:787
2043
  msgid "one time only"
2044
  msgstr "jedan put samo"
2045
 
2046
- #: includes/event-organiser-event-functions.php:790
2047
  msgid "custom recurrence"
2048
  msgstr "prilagođeno sjedište"
2049
 
2050
- #: includes/event-organiser-event-functions.php:797
2051
  #: includes/event-organiser-register.php:298
2052
  msgid "every day"
2053
  msgstr "svaki dan"
2054
 
2055
- #: includes/event-organiser-event-functions.php:799
2056
  #: includes/event-organiser-register.php:299
2057
  #, php-format
2058
  msgid "every %d days"
2059
  msgstr "svaki %d dan/e"
2060
 
2061
- #: includes/event-organiser-event-functions.php:805
2062
  #: includes/event-organiser-register.php:300
2063
  msgid "every week on"
2064
  msgstr "svaki tjedan u"
2065
 
2066
- #: includes/event-organiser-event-functions.php:807
2067
  #: includes/event-organiser-register.php:301
2068
  #, php-format
2069
  msgid "every %d weeks on"
2070
  msgstr "sve %d tjedne u"
2071
 
2072
- #: includes/event-organiser-event-functions.php:818
2073
  #: includes/event-organiser-register.php:302
2074
  msgid "every month on the"
2075
  msgstr "svaki mjesec na"
2076
 
2077
- #: includes/event-organiser-event-functions.php:820
2078
  #: includes/event-organiser-register.php:303
2079
  #, php-format
2080
  msgid "every %d months on the"
2081
  msgstr "svaki %d mjesec na"
2082
 
2083
- #: includes/event-organiser-event-functions.php:849
2084
  msgid "every year"
2085
  msgstr "svake godine"
2086
 
2087
- #: includes/event-organiser-event-functions.php:851
2088
  #, php-format
2089
  msgid "every %d years"
2090
  msgstr "svake %d godine"
@@ -2240,11 +2240,11 @@ msgstr "Krivi mjesečni raspored"
2240
  msgid "Event does not contain any dates."
2241
  msgstr ""
2242
 
2243
- #: includes/event.php:1080
2244
  msgid "Occurrence not deleted. Occurrence not found."
2245
  msgstr ""
2246
 
2247
- #: includes/event.php:1136
2248
  msgid "There is already an occurrence on this date"
2249
  msgstr ""
2250
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2017-04-14T22:58:58+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
57
  msgstr "Uključi 'Add To google' poveznicu"
58
 
59
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
60
+ #: includes/event-organiser-event-functions.php:1388
61
  msgid "All day"
62
  msgstr "Cijeli dan"
63
 
252
 
253
  #: classes/class-eo-widget-categories.php:25
254
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
255
+ #: includes/event-organiser-event-functions.php:1569
256
  #: templates/event-meta-event-single.php:62
257
  msgid "Categories"
258
  msgstr "Kategorije"
374
  msgstr "24 satno"
375
 
376
  #: event-organiser-calendar.php:256
377
+ #: includes/event-organiser-event-functions.php:1506
378
  msgid "Loading&#8230;"
379
  msgstr "Učitavam...."
380
 
644
  msgstr "dan u tjednu"
645
 
646
  #: event-organiser-edit.php:225
647
+ #: includes/event-organiser-event-functions.php:862
648
  #: includes/event-organiser-register.php:307
649
  msgid "until"
650
  msgstr "do"
1639
  msgstr "Izaberi između najkorištenijih oznaka"
1640
 
1641
  #: includes/event-organiser-cpt.php:163
1642
+ #: includes/event-organiser-event-functions.php:1577
1643
  #: templates/event-meta-event-single.php:66
1644
  msgid "Tags"
1645
  msgstr "Oznake"
2014
  msgid "Assign the category a colour."
2015
  msgstr "Dodjeli kategoriji boju"
2016
 
2017
+ #: includes/event-organiser-event-functions.php:783
2018
  #: includes/event-organiser-register.php:313
2019
  msgid "last"
2020
  msgstr "zadnji"
2021
 
2022
+ #: includes/event-organiser-event-functions.php:783
2023
  #: includes/event-organiser-register.php:309
2024
  msgid "first"
2025
  msgstr "prvi"
2026
 
2027
+ #: includes/event-organiser-event-functions.php:783
2028
  #: includes/event-organiser-register.php:310
2029
  msgid "second"
2030
  msgstr "drugi"
2031
 
2032
+ #: includes/event-organiser-event-functions.php:783
2033
  #: includes/event-organiser-register.php:311
2034
  msgid "third"
2035
  msgstr "treči"
2036
 
2037
+ #: includes/event-organiser-event-functions.php:783
2038
  #: includes/event-organiser-register.php:312
2039
  msgid "fourth"
2040
  msgstr "četvrti"
2041
 
2042
+ #: includes/event-organiser-event-functions.php:793
2043
  msgid "one time only"
2044
  msgstr "jedan put samo"
2045
 
2046
+ #: includes/event-organiser-event-functions.php:796
2047
  msgid "custom recurrence"
2048
  msgstr "prilagođeno sjedište"
2049
 
2050
+ #: includes/event-organiser-event-functions.php:803
2051
  #: includes/event-organiser-register.php:298
2052
  msgid "every day"
2053
  msgstr "svaki dan"
2054
 
2055
+ #: includes/event-organiser-event-functions.php:805
2056
  #: includes/event-organiser-register.php:299
2057
  #, php-format
2058
  msgid "every %d days"
2059
  msgstr "svaki %d dan/e"
2060
 
2061
+ #: includes/event-organiser-event-functions.php:811
2062
  #: includes/event-organiser-register.php:300
2063
  msgid "every week on"
2064
  msgstr "svaki tjedan u"
2065
 
2066
+ #: includes/event-organiser-event-functions.php:813
2067
  #: includes/event-organiser-register.php:301
2068
  #, php-format
2069
  msgid "every %d weeks on"
2070
  msgstr "sve %d tjedne u"
2071
 
2072
+ #: includes/event-organiser-event-functions.php:824
2073
  #: includes/event-organiser-register.php:302
2074
  msgid "every month on the"
2075
  msgstr "svaki mjesec na"
2076
 
2077
+ #: includes/event-organiser-event-functions.php:826
2078
  #: includes/event-organiser-register.php:303
2079
  #, php-format
2080
  msgid "every %d months on the"
2081
  msgstr "svaki %d mjesec na"
2082
 
2083
+ #: includes/event-organiser-event-functions.php:855
2084
  msgid "every year"
2085
  msgstr "svake godine"
2086
 
2087
+ #: includes/event-organiser-event-functions.php:857
2088
  #, php-format
2089
  msgid "every %d years"
2090
  msgstr "svake %d godine"
2240
  msgid "Event does not contain any dates."
2241
  msgstr ""
2242
 
2243
+ #: includes/event.php:1085
2244
  msgid "Occurrence not deleted. Occurrence not found."
2245
  msgstr ""
2246
 
2247
+ #: includes/event.php:1141
2248
  msgid "There is already an occurrence on this date"
2249
  msgstr ""
2250
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2017-04-17T13:13:03+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr ""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr "Egész napos esemény"
62
 
@@ -248,7 +248,7 @@ msgstr "Esemény kategóriák"
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
- #: includes/event-organiser-event-functions.php:1563
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr "Kategóriák"
@@ -370,7 +370,7 @@ msgid "24 hour time"
370
  msgstr "24 órás időformátum"
371
 
372
  #: event-organiser-calendar.php:256
373
- #: includes/event-organiser-event-functions.php:1500
374
  msgid "Loading&#8230;"
375
  msgstr "Betöltés&#8230;"
376
 
@@ -639,7 +639,7 @@ msgid "day of week"
639
  msgstr "adott hét napján"
640
 
641
  #: event-organiser-edit.php:225
642
- #: includes/event-organiser-event-functions.php:856
643
  #: includes/event-organiser-register.php:307
644
  msgid "until"
645
  msgstr "eddig:"
@@ -1635,7 +1635,7 @@ msgid "Choose from the most used tags"
1635
  msgstr "Választás a leggyakrabban előforduló címkék közül"
1636
 
1637
  #: includes/event-organiser-cpt.php:163
1638
- #: includes/event-organiser-event-functions.php:1571
1639
  #: templates/event-meta-event-single.php:66
1640
  msgid "Tags"
1641
  msgstr "Címkék"
@@ -2015,77 +2015,77 @@ msgstr "Szín"
2015
  msgid "Assign the category a colour."
2016
  msgstr "Kategóriához rendelt szín."
2017
 
2018
- #: includes/event-organiser-event-functions.php:777
2019
  #: includes/event-organiser-register.php:313
2020
  msgid "last"
2021
  msgstr "utolsó"
2022
 
2023
- #: includes/event-organiser-event-functions.php:777
2024
  #: includes/event-organiser-register.php:309
2025
  msgid "first"
2026
  msgstr "első"
2027
 
2028
- #: includes/event-organiser-event-functions.php:777
2029
  #: includes/event-organiser-register.php:310
2030
  msgid "second"
2031
  msgstr "második"
2032
 
2033
- #: includes/event-organiser-event-functions.php:777
2034
  #: includes/event-organiser-register.php:311
2035
  msgid "third"
2036
  msgstr "harmadik"
2037
 
2038
- #: includes/event-organiser-event-functions.php:777
2039
  #: includes/event-organiser-register.php:312
2040
  msgid "fourth"
2041
  msgstr "negyedik"
2042
 
2043
- #: includes/event-organiser-event-functions.php:787
2044
  msgid "one time only"
2045
  msgstr "nincs"
2046
 
2047
- #: includes/event-organiser-event-functions.php:790
2048
  msgid "custom recurrence"
2049
  msgstr "egyedi ismétlődés"
2050
 
2051
- #: includes/event-organiser-event-functions.php:797
2052
  #: includes/event-organiser-register.php:298
2053
  msgid "every day"
2054
  msgstr "naponta"
2055
 
2056
- #: includes/event-organiser-event-functions.php:799
2057
  #: includes/event-organiser-register.php:299
2058
  #, php-format
2059
  msgid "every %d days"
2060
  msgstr "%d naponta"
2061
 
2062
- #: includes/event-organiser-event-functions.php:805
2063
  #: includes/event-organiser-register.php:300
2064
  msgid "every week on"
2065
  msgstr "hetente minden"
2066
 
2067
- #: includes/event-organiser-event-functions.php:807
2068
  #: includes/event-organiser-register.php:301
2069
  #, php-format
2070
  msgid "every %d weeks on"
2071
  msgstr "%d hetente minden"
2072
 
2073
- #: includes/event-organiser-event-functions.php:818
2074
  #: includes/event-organiser-register.php:302
2075
  msgid "every month on the"
2076
  msgstr "havonta"
2077
 
2078
- #: includes/event-organiser-event-functions.php:820
2079
  #: includes/event-organiser-register.php:303
2080
  #, php-format
2081
  msgid "every %d months on the"
2082
  msgstr "%d havonta"
2083
 
2084
- #: includes/event-organiser-event-functions.php:849
2085
  msgid "every year"
2086
  msgstr "évente"
2087
 
2088
- #: includes/event-organiser-event-functions.php:851
2089
  #, php-format
2090
  msgid "every %d years"
2091
  msgstr "%d évente"
@@ -2241,11 +2241,11 @@ msgstr "Hibás havi ismétlődés (hét ismeretlen)"
2241
  msgid "Event does not contain any dates."
2242
  msgstr ""
2243
 
2244
- #: includes/event.php:1080
2245
  msgid "Occurrence not deleted. Occurrence not found."
2246
  msgstr ""
2247
 
2248
- #: includes/event.php:1136
2249
  msgid "There is already an occurrence on this date"
2250
  msgstr ""
2251
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2017-04-17T13:13:03+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr ""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr "Egész napos esemény"
62
 
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
+ #: includes/event-organiser-event-functions.php:1569
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr "Kategóriák"
370
  msgstr "24 órás időformátum"
371
 
372
  #: event-organiser-calendar.php:256
373
+ #: includes/event-organiser-event-functions.php:1506
374
  msgid "Loading&#8230;"
375
  msgstr "Betöltés&#8230;"
376
 
639
  msgstr "adott hét napján"
640
 
641
  #: event-organiser-edit.php:225
642
+ #: includes/event-organiser-event-functions.php:862
643
  #: includes/event-organiser-register.php:307
644
  msgid "until"
645
  msgstr "eddig:"
1635
  msgstr "Választás a leggyakrabban előforduló címkék közül"
1636
 
1637
  #: includes/event-organiser-cpt.php:163
1638
+ #: includes/event-organiser-event-functions.php:1577
1639
  #: templates/event-meta-event-single.php:66
1640
  msgid "Tags"
1641
  msgstr "Címkék"
2015
  msgid "Assign the category a colour."
2016
  msgstr "Kategóriához rendelt szín."
2017
 
2018
+ #: includes/event-organiser-event-functions.php:783
2019
  #: includes/event-organiser-register.php:313
2020
  msgid "last"
2021
  msgstr "utolsó"
2022
 
2023
+ #: includes/event-organiser-event-functions.php:783
2024
  #: includes/event-organiser-register.php:309
2025
  msgid "first"
2026
  msgstr "első"
2027
 
2028
+ #: includes/event-organiser-event-functions.php:783
2029
  #: includes/event-organiser-register.php:310
2030
  msgid "second"
2031
  msgstr "második"
2032
 
2033
+ #: includes/event-organiser-event-functions.php:783
2034
  #: includes/event-organiser-register.php:311
2035
  msgid "third"
2036
  msgstr "harmadik"
2037
 
2038
+ #: includes/event-organiser-event-functions.php:783
2039
  #: includes/event-organiser-register.php:312
2040
  msgid "fourth"
2041
  msgstr "negyedik"
2042
 
2043
+ #: includes/event-organiser-event-functions.php:793
2044
  msgid "one time only"
2045
  msgstr "nincs"
2046
 
2047
+ #: includes/event-organiser-event-functions.php:796
2048
  msgid "custom recurrence"
2049
  msgstr "egyedi ismétlődés"
2050
 
2051
+ #: includes/event-organiser-event-functions.php:803
2052
  #: includes/event-organiser-register.php:298
2053
  msgid "every day"
2054
  msgstr "naponta"
2055
 
2056
+ #: includes/event-organiser-event-functions.php:805
2057
  #: includes/event-organiser-register.php:299
2058
  #, php-format
2059
  msgid "every %d days"
2060
  msgstr "%d naponta"
2061
 
2062
+ #: includes/event-organiser-event-functions.php:811
2063
  #: includes/event-organiser-register.php:300
2064
  msgid "every week on"
2065
  msgstr "hetente minden"
2066
 
2067
+ #: includes/event-organiser-event-functions.php:813
2068
  #: includes/event-organiser-register.php:301
2069
  #, php-format
2070
  msgid "every %d weeks on"
2071
  msgstr "%d hetente minden"
2072
 
2073
+ #: includes/event-organiser-event-functions.php:824
2074
  #: includes/event-organiser-register.php:302
2075
  msgid "every month on the"
2076
  msgstr "havonta"
2077
 
2078
+ #: includes/event-organiser-event-functions.php:826
2079
  #: includes/event-organiser-register.php:303
2080
  #, php-format
2081
  msgid "every %d months on the"
2082
  msgstr "%d havonta"
2083
 
2084
+ #: includes/event-organiser-event-functions.php:855
2085
  msgid "every year"
2086
  msgstr "évente"
2087
 
2088
+ #: includes/event-organiser-event-functions.php:857
2089
  #, php-format
2090
  msgid "every %d years"
2091
  msgstr "%d évente"
2241
  msgid "Event does not contain any dates."
2242
  msgstr ""
2243
 
2244
+ #: includes/event.php:1085
2245
  msgid "Occurrence not deleted. Occurrence not found."
2246
  msgstr ""
2247
 
2248
+ #: includes/event.php:1141
2249
  msgid "There is already an occurrence on this date"
2250
  msgstr ""
2251
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2017-08-19T03:46:46+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr ""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr ""
62
 
@@ -248,7 +248,7 @@ msgstr ""
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
- #: includes/event-organiser-event-functions.php:1563
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr ""
@@ -370,7 +370,7 @@ msgid "24 hour time"
370
  msgstr ""
371
 
372
  #: event-organiser-calendar.php:256
373
- #: includes/event-organiser-event-functions.php:1500
374
  msgid "Loading&#8230;"
375
  msgstr ""
376
 
@@ -638,7 +638,7 @@ msgid "day of week"
638
  msgstr ""
639
 
640
  #: event-organiser-edit.php:225
641
- #: includes/event-organiser-event-functions.php:856
642
  #: includes/event-organiser-register.php:307
643
  msgid "until"
644
  msgstr ""
@@ -1611,7 +1611,7 @@ msgid "Choose from the most used tags"
1611
  msgstr "Pilih kata-kata kunci yang sering digunakan"
1612
 
1613
  #: includes/event-organiser-cpt.php:163
1614
- #: includes/event-organiser-event-functions.php:1571
1615
  #: templates/event-meta-event-single.php:66
1616
  msgid "Tags"
1617
  msgstr ""
@@ -1948,77 +1948,77 @@ msgstr "warna"
1948
  msgid "Assign the category a colour."
1949
  msgstr "Menambah warna pada category"
1950
 
1951
- #: includes/event-organiser-event-functions.php:777
1952
  #: includes/event-organiser-register.php:313
1953
  msgid "last"
1954
  msgstr "terakhir"
1955
 
1956
- #: includes/event-organiser-event-functions.php:777
1957
  #: includes/event-organiser-register.php:309
1958
  msgid "first"
1959
  msgstr "pertama"
1960
 
1961
- #: includes/event-organiser-event-functions.php:777
1962
  #: includes/event-organiser-register.php:310
1963
  msgid "second"
1964
  msgstr "kedua"
1965
 
1966
- #: includes/event-organiser-event-functions.php:777
1967
  #: includes/event-organiser-register.php:311
1968
  msgid "third"
1969
  msgstr "ketiga"
1970
 
1971
- #: includes/event-organiser-event-functions.php:777
1972
  #: includes/event-organiser-register.php:312
1973
  msgid "fourth"
1974
  msgstr "keempat"
1975
 
1976
- #: includes/event-organiser-event-functions.php:787
1977
  msgid "one time only"
1978
  msgstr "satu kali saja"
1979
 
1980
- #: includes/event-organiser-event-functions.php:790
1981
  msgid "custom recurrence"
1982
  msgstr ""
1983
 
1984
- #: includes/event-organiser-event-functions.php:797
1985
  #: includes/event-organiser-register.php:298
1986
  msgid "every day"
1987
  msgstr "setiap hari"
1988
 
1989
- #: includes/event-organiser-event-functions.php:799
1990
  #: includes/event-organiser-register.php:299
1991
  #, php-format
1992
  msgid "every %d days"
1993
  msgstr "setiap %d hari"
1994
 
1995
- #: includes/event-organiser-event-functions.php:805
1996
  #: includes/event-organiser-register.php:300
1997
  msgid "every week on"
1998
  msgstr "setiap minggu pada"
1999
 
2000
- #: includes/event-organiser-event-functions.php:807
2001
  #: includes/event-organiser-register.php:301
2002
  #, php-format
2003
  msgid "every %d weeks on"
2004
  msgstr "setiap %d minggu pada"
2005
 
2006
- #: includes/event-organiser-event-functions.php:818
2007
  #: includes/event-organiser-register.php:302
2008
  msgid "every month on the"
2009
  msgstr "tiap bulan pada"
2010
 
2011
- #: includes/event-organiser-event-functions.php:820
2012
  #: includes/event-organiser-register.php:303
2013
  #, php-format
2014
  msgid "every %d months on the"
2015
  msgstr "tiap %d bulan pada"
2016
 
2017
- #: includes/event-organiser-event-functions.php:849
2018
  msgid "every year"
2019
  msgstr "tiap tahun"
2020
 
2021
- #: includes/event-organiser-event-functions.php:851
2022
  #, php-format
2023
  msgid "every %d years"
2024
  msgstr "tiap %d tahun"
@@ -2173,11 +2173,11 @@ msgstr ""
2173
  msgid "Event does not contain any dates."
2174
  msgstr ""
2175
 
2176
- #: includes/event.php:1080
2177
  msgid "Occurrence not deleted. Occurrence not found."
2178
  msgstr ""
2179
 
2180
- #: includes/event.php:1136
2181
  msgid "There is already an occurrence on this date"
2182
  msgstr ""
2183
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2017-08-19T03:46:46+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr ""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr ""
62
 
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
+ #: includes/event-organiser-event-functions.php:1569
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr ""
370
  msgstr ""
371
 
372
  #: event-organiser-calendar.php:256
373
+ #: includes/event-organiser-event-functions.php:1506
374
  msgid "Loading&#8230;"
375
  msgstr ""
376
 
638
  msgstr ""
639
 
640
  #: event-organiser-edit.php:225
641
+ #: includes/event-organiser-event-functions.php:862
642
  #: includes/event-organiser-register.php:307
643
  msgid "until"
644
  msgstr ""
1611
  msgstr "Pilih kata-kata kunci yang sering digunakan"
1612
 
1613
  #: includes/event-organiser-cpt.php:163
1614
+ #: includes/event-organiser-event-functions.php:1577
1615
  #: templates/event-meta-event-single.php:66
1616
  msgid "Tags"
1617
  msgstr ""
1948
  msgid "Assign the category a colour."
1949
  msgstr "Menambah warna pada category"
1950
 
1951
+ #: includes/event-organiser-event-functions.php:783
1952
  #: includes/event-organiser-register.php:313
1953
  msgid "last"
1954
  msgstr "terakhir"
1955
 
1956
+ #: includes/event-organiser-event-functions.php:783
1957
  #: includes/event-organiser-register.php:309
1958
  msgid "first"
1959
  msgstr "pertama"
1960
 
1961
+ #: includes/event-organiser-event-functions.php:783
1962
  #: includes/event-organiser-register.php:310
1963
  msgid "second"
1964
  msgstr "kedua"
1965
 
1966
+ #: includes/event-organiser-event-functions.php:783
1967
  #: includes/event-organiser-register.php:311
1968
  msgid "third"
1969
  msgstr "ketiga"
1970
 
1971
+ #: includes/event-organiser-event-functions.php:783
1972
  #: includes/event-organiser-register.php:312
1973
  msgid "fourth"
1974
  msgstr "keempat"
1975
 
1976
+ #: includes/event-organiser-event-functions.php:793
1977
  msgid "one time only"
1978
  msgstr "satu kali saja"
1979
 
1980
+ #: includes/event-organiser-event-functions.php:796
1981
  msgid "custom recurrence"
1982
  msgstr ""
1983
 
1984
+ #: includes/event-organiser-event-functions.php:803
1985
  #: includes/event-organiser-register.php:298
1986
  msgid "every day"
1987
  msgstr "setiap hari"
1988
 
1989
+ #: includes/event-organiser-event-functions.php:805
1990
  #: includes/event-organiser-register.php:299
1991
  #, php-format
1992
  msgid "every %d days"
1993
  msgstr "setiap %d hari"
1994
 
1995
+ #: includes/event-organiser-event-functions.php:811
1996
  #: includes/event-organiser-register.php:300
1997
  msgid "every week on"
1998
  msgstr "setiap minggu pada"
1999
 
2000
+ #: includes/event-organiser-event-functions.php:813
2001
  #: includes/event-organiser-register.php:301
2002
  #, php-format
2003
  msgid "every %d weeks on"
2004
  msgstr "setiap %d minggu pada"
2005
 
2006
+ #: includes/event-organiser-event-functions.php:824
2007
  #: includes/event-organiser-register.php:302
2008
  msgid "every month on the"
2009
  msgstr "tiap bulan pada"
2010
 
2011
+ #: includes/event-organiser-event-functions.php:826
2012
  #: includes/event-organiser-register.php:303
2013
  #, php-format
2014
  msgid "every %d months on the"
2015
  msgstr "tiap %d bulan pada"
2016
 
2017
+ #: includes/event-organiser-event-functions.php:855
2018
  msgid "every year"
2019
  msgstr "tiap tahun"
2020
 
2021
+ #: includes/event-organiser-event-functions.php:857
2022
  #, php-format
2023
  msgid "every %d years"
2024
  msgstr "tiap %d tahun"
2173
  msgid "Event does not contain any dates."
2174
  msgstr ""
2175
 
2176
+ #: includes/event.php:1085
2177
  msgid "Occurrence not deleted. Occurrence not found."
2178
  msgstr ""
2179
 
2180
+ #: includes/event.php:1141
2181
  msgid "There is already an occurrence on this date"
2182
  msgstr ""
2183
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2016-12-06T20:43:36+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -59,7 +59,7 @@ msgid "Include 'Add To Google' link"
59
  msgstr "Birta 'Bæta við Google' slóð"
60
 
61
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
62
- #: includes/event-organiser-event-functions.php:1382
63
  msgid "All day"
64
  msgstr "Heils dags"
65
 
@@ -258,7 +258,7 @@ msgstr "Flokkar viðburða"
258
 
259
  #: classes/class-eo-widget-categories.php:25
260
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
261
- #: includes/event-organiser-event-functions.php:1563
262
  #: templates/event-meta-event-single.php:62
263
  msgid "Categories"
264
  msgstr "Flokkar"
@@ -383,7 +383,7 @@ msgid "24 hour time"
383
  msgstr "24 tíma klukka"
384
 
385
  #: event-organiser-calendar.php:256
386
- #: includes/event-organiser-event-functions.php:1500
387
  msgid "Loading&#8230;"
388
  msgstr "Hleður inn..."
389
 
@@ -655,7 +655,7 @@ msgid "day of week"
655
  msgstr "vikudagur"
656
 
657
  #: event-organiser-edit.php:225
658
- #: includes/event-organiser-event-functions.php:856
659
  #: includes/event-organiser-register.php:307
660
  msgid "until"
661
  msgstr "þar til"
@@ -1672,7 +1672,7 @@ msgid "Choose from the most used tags"
1672
  msgstr "Veljið úr vinsælustu tögunum"
1673
 
1674
  #: includes/event-organiser-cpt.php:163
1675
- #: includes/event-organiser-event-functions.php:1571
1676
  #: templates/event-meta-event-single.php:66
1677
  msgid "Tags"
1678
  msgstr "Tög"
@@ -2042,77 +2042,77 @@ msgstr "Litur"
2042
  msgid "Assign the category a colour."
2043
  msgstr "Setja lit flokks"
2044
 
2045
- #: includes/event-organiser-event-functions.php:777
2046
  #: includes/event-organiser-register.php:313
2047
  msgid "last"
2048
  msgstr "síðasti"
2049
 
2050
- #: includes/event-organiser-event-functions.php:777
2051
  #: includes/event-organiser-register.php:309
2052
  msgid "first"
2053
  msgstr "fyrsti"
2054
 
2055
- #: includes/event-organiser-event-functions.php:777
2056
  #: includes/event-organiser-register.php:310
2057
  msgid "second"
2058
  msgstr "annar"
2059
 
2060
- #: includes/event-organiser-event-functions.php:777
2061
  #: includes/event-organiser-register.php:311
2062
  msgid "third"
2063
  msgstr "þriðji"
2064
 
2065
- #: includes/event-organiser-event-functions.php:777
2066
  #: includes/event-organiser-register.php:312
2067
  msgid "fourth"
2068
  msgstr "fjórði"
2069
 
2070
- #: includes/event-organiser-event-functions.php:787
2071
  msgid "one time only"
2072
  msgstr "aðeins einu sinni"
2073
 
2074
- #: includes/event-organiser-event-functions.php:790
2075
  msgid "custom recurrence"
2076
  msgstr "sérstillt endurtekning"
2077
 
2078
- #: includes/event-organiser-event-functions.php:797
2079
  #: includes/event-organiser-register.php:298
2080
  msgid "every day"
2081
  msgstr "daglega"
2082
 
2083
- #: includes/event-organiser-event-functions.php:799
2084
  #: includes/event-organiser-register.php:299
2085
  #, php-format
2086
  msgid "every %d days"
2087
  msgstr "á %d. daga fresti"
2088
 
2089
- #: includes/event-organiser-event-functions.php:805
2090
  #: includes/event-organiser-register.php:300
2091
  msgid "every week on"
2092
  msgstr "hverja viku á"
2093
 
2094
- #: includes/event-organiser-event-functions.php:807
2095
  #: includes/event-organiser-register.php:301
2096
  #, php-format
2097
  msgid "every %d weeks on"
2098
  msgstr "hverja %d. viku þann"
2099
 
2100
- #: includes/event-organiser-event-functions.php:818
2101
  #: includes/event-organiser-register.php:302
2102
  msgid "every month on the"
2103
  msgstr "hvern mánuð þann"
2104
 
2105
- #: includes/event-organiser-event-functions.php:820
2106
  #: includes/event-organiser-register.php:303
2107
  #, php-format
2108
  msgid "every %d months on the"
2109
  msgstr "hvern %d mánuð þann"
2110
 
2111
- #: includes/event-organiser-event-functions.php:849
2112
  msgid "every year"
2113
  msgstr "hvert ár"
2114
 
2115
- #: includes/event-organiser-event-functions.php:851
2116
  #, php-format
2117
  msgid "every %d years"
2118
  msgstr "hvert %d ár"
@@ -2273,11 +2273,11 @@ msgstr "Ógilt mánaðarskipulag (ógilt raðnúmer)"
2273
  msgid "Event does not contain any dates."
2274
  msgstr "Viðburður án dagsetninga."
2275
 
2276
- #: includes/event.php:1080
2277
  msgid "Occurrence not deleted. Occurrence not found."
2278
  msgstr "Tilviki ekki eytt. Tilvik fannst ekki."
2279
 
2280
- #: includes/event.php:1136
2281
  msgid "There is already an occurrence on this date"
2282
  msgstr "Tilvik viðburðar er þegar til á þessum degi"
2283
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2016-12-06T20:43:36+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
59
  msgstr "Birta 'Bæta við Google' slóð"
60
 
61
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
62
+ #: includes/event-organiser-event-functions.php:1388
63
  msgid "All day"
64
  msgstr "Heils dags"
65
 
258
 
259
  #: classes/class-eo-widget-categories.php:25
260
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
261
+ #: includes/event-organiser-event-functions.php:1569
262
  #: templates/event-meta-event-single.php:62
263
  msgid "Categories"
264
  msgstr "Flokkar"
383
  msgstr "24 tíma klukka"
384
 
385
  #: event-organiser-calendar.php:256
386
+ #: includes/event-organiser-event-functions.php:1506
387
  msgid "Loading&#8230;"
388
  msgstr "Hleður inn..."
389
 
655
  msgstr "vikudagur"
656
 
657
  #: event-organiser-edit.php:225
658
+ #: includes/event-organiser-event-functions.php:862
659
  #: includes/event-organiser-register.php:307
660
  msgid "until"
661
  msgstr "þar til"
1672
  msgstr "Veljið úr vinsælustu tögunum"
1673
 
1674
  #: includes/event-organiser-cpt.php:163
1675
+ #: includes/event-organiser-event-functions.php:1577
1676
  #: templates/event-meta-event-single.php:66
1677
  msgid "Tags"
1678
  msgstr "Tög"
2042
  msgid "Assign the category a colour."
2043
  msgstr "Setja lit flokks"
2044
 
2045
+ #: includes/event-organiser-event-functions.php:783
2046
  #: includes/event-organiser-register.php:313
2047
  msgid "last"
2048
  msgstr "síðasti"
2049
 
2050
+ #: includes/event-organiser-event-functions.php:783
2051
  #: includes/event-organiser-register.php:309
2052
  msgid "first"
2053
  msgstr "fyrsti"
2054
 
2055
+ #: includes/event-organiser-event-functions.php:783
2056
  #: includes/event-organiser-register.php:310
2057
  msgid "second"
2058
  msgstr "annar"
2059
 
2060
+ #: includes/event-organiser-event-functions.php:783
2061
  #: includes/event-organiser-register.php:311
2062
  msgid "third"
2063
  msgstr "þriðji"
2064
 
2065
+ #: includes/event-organiser-event-functions.php:783
2066
  #: includes/event-organiser-register.php:312
2067
  msgid "fourth"
2068
  msgstr "fjórði"
2069
 
2070
+ #: includes/event-organiser-event-functions.php:793
2071
  msgid "one time only"
2072
  msgstr "aðeins einu sinni"
2073
 
2074
+ #: includes/event-organiser-event-functions.php:796
2075
  msgid "custom recurrence"
2076
  msgstr "sérstillt endurtekning"
2077
 
2078
+ #: includes/event-organiser-event-functions.php:803
2079
  #: includes/event-organiser-register.php:298
2080
  msgid "every day"
2081
  msgstr "daglega"
2082
 
2083
+ #: includes/event-organiser-event-functions.php:805
2084
  #: includes/event-organiser-register.php:299
2085
  #, php-format
2086
  msgid "every %d days"
2087
  msgstr "á %d. daga fresti"
2088
 
2089
+ #: includes/event-organiser-event-functions.php:811
2090
  #: includes/event-organiser-register.php:300
2091
  msgid "every week on"
2092
  msgstr "hverja viku á"
2093
 
2094
+ #: includes/event-organiser-event-functions.php:813
2095
  #: includes/event-organiser-register.php:301
2096
  #, php-format
2097
  msgid "every %d weeks on"
2098
  msgstr "hverja %d. viku þann"
2099
 
2100
+ #: includes/event-organiser-event-functions.php:824
2101
  #: includes/event-organiser-register.php:302
2102
  msgid "every month on the"
2103
  msgstr "hvern mánuð þann"
2104
 
2105
+ #: includes/event-organiser-event-functions.php:826
2106
  #: includes/event-organiser-register.php:303
2107
  #, php-format
2108
  msgid "every %d months on the"
2109
  msgstr "hvern %d mánuð þann"
2110
 
2111
+ #: includes/event-organiser-event-functions.php:855
2112
  msgid "every year"
2113
  msgstr "hvert ár"
2114
 
2115
+ #: includes/event-organiser-event-functions.php:857
2116
  #, php-format
2117
  msgid "every %d years"
2118
  msgstr "hvert %d ár"
2273
  msgid "Event does not contain any dates."
2274
  msgstr "Viðburður án dagsetninga."
2275
 
2276
+ #: includes/event.php:1085
2277
  msgid "Occurrence not deleted. Occurrence not found."
2278
  msgstr "Tilviki ekki eytt. Tilvik fannst ekki."
2279
 
2280
+ #: includes/event.php:1141
2281
  msgid "There is already an occurrence on this date"
2282
  msgstr "Tilvik viðburðar er þegar til á þessum degi"
2283
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2017-08-23T05:39:57+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr "Includi il lik 'Add To Google'"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr "Giornata intera"
62
 
@@ -254,7 +254,7 @@ msgstr "Categorie degli eventi"
254
 
255
  #: classes/class-eo-widget-categories.php:25
256
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
257
- #: includes/event-organiser-event-functions.php:1563
258
  #: templates/event-meta-event-single.php:62
259
  msgid "Categories"
260
  msgstr "Categorie"
@@ -378,7 +378,7 @@ msgid "24 hour time"
378
  msgstr "24 ore"
379
 
380
  #: event-organiser-calendar.php:256
381
- #: includes/event-organiser-event-functions.php:1500
382
  msgid "Loading&#8230;"
383
  msgstr "Caricamento&#8230;"
384
 
@@ -672,7 +672,7 @@ msgid "day of week"
672
  msgstr "giorno della settimana"
673
 
674
  #: event-organiser-edit.php:225
675
- #: includes/event-organiser-event-functions.php:856
676
  #: includes/event-organiser-register.php:307
677
  msgid "until"
678
  msgstr "fino a"
@@ -1723,7 +1723,7 @@ msgid "Choose from the most used tags"
1723
  msgstr "Scegli fra i tag pi&ugrave; utilizzati"
1724
 
1725
  #: includes/event-organiser-cpt.php:163
1726
- #: includes/event-organiser-event-functions.php:1571
1727
  #: templates/event-meta-event-single.php:66
1728
  msgid "Tags"
1729
  msgstr "Tag"
@@ -2107,77 +2107,77 @@ msgstr "Colore"
2107
  msgid "Assign the category a colour."
2108
  msgstr "Assegna un colore alla categoria"
2109
 
2110
- #: includes/event-organiser-event-functions.php:777
2111
  #: includes/event-organiser-register.php:313
2112
  msgid "last"
2113
  msgstr "ultimo"
2114
 
2115
- #: includes/event-organiser-event-functions.php:777
2116
  #: includes/event-organiser-register.php:309
2117
  msgid "first"
2118
  msgstr "primo"
2119
 
2120
- #: includes/event-organiser-event-functions.php:777
2121
  #: includes/event-organiser-register.php:310
2122
  msgid "second"
2123
  msgstr "secondo"
2124
 
2125
- #: includes/event-organiser-event-functions.php:777
2126
  #: includes/event-organiser-register.php:311
2127
  msgid "third"
2128
  msgstr "terzo"
2129
 
2130
- #: includes/event-organiser-event-functions.php:777
2131
  #: includes/event-organiser-register.php:312
2132
  msgid "fourth"
2133
  msgstr "quarto"
2134
 
2135
- #: includes/event-organiser-event-functions.php:787
2136
  msgid "one time only"
2137
  msgstr "soltanto una volta"
2138
 
2139
- #: includes/event-organiser-event-functions.php:790
2140
  msgid "custom recurrence"
2141
  msgstr "Ricorrenza personalizzata"
2142
 
2143
- #: includes/event-organiser-event-functions.php:797
2144
  #: includes/event-organiser-register.php:298
2145
  msgid "every day"
2146
  msgstr "ogni giorno"
2147
 
2148
- #: includes/event-organiser-event-functions.php:799
2149
  #: includes/event-organiser-register.php:299
2150
  #, php-format
2151
  msgid "every %d days"
2152
  msgstr "ogni %d giorni"
2153
 
2154
- #: includes/event-organiser-event-functions.php:805
2155
  #: includes/event-organiser-register.php:300
2156
  msgid "every week on"
2157
  msgstr "ogni settimana il"
2158
 
2159
- #: includes/event-organiser-event-functions.php:807
2160
  #: includes/event-organiser-register.php:301
2161
  #, php-format
2162
  msgid "every %d weeks on"
2163
  msgstr "ogni %d settimane il"
2164
 
2165
- #: includes/event-organiser-event-functions.php:818
2166
  #: includes/event-organiser-register.php:302
2167
  msgid "every month on the"
2168
  msgstr "ogni mese il"
2169
 
2170
- #: includes/event-organiser-event-functions.php:820
2171
  #: includes/event-organiser-register.php:303
2172
  #, php-format
2173
  msgid "every %d months on the"
2174
  msgstr "ogni %d mesi il"
2175
 
2176
- #: includes/event-organiser-event-functions.php:849
2177
  msgid "every year"
2178
  msgstr "ogni anno"
2179
 
2180
- #: includes/event-organiser-event-functions.php:851
2181
  #, php-format
2182
  msgid "every %d years"
2183
  msgstr "ogni %d anni"
@@ -2344,11 +2344,11 @@ msgstr "Programma mensile non valido (numero non valido)"
2344
  msgid "Event does not contain any dates."
2345
  msgstr "L'evento non prevede nessuna data."
2346
 
2347
- #: includes/event.php:1080
2348
  msgid "Occurrence not deleted. Occurrence not found."
2349
  msgstr "Occorrenza non cancellata. Occorrenza non trovata."
2350
 
2351
- #: includes/event.php:1136
2352
  #, fuzzy
2353
  msgid "There is already an occurrence on this date"
2354
  msgstr "C'è già un evento in questa data"
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2017-08-23T05:39:57+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr "Includi il lik 'Add To Google'"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr "Giornata intera"
62
 
254
 
255
  #: classes/class-eo-widget-categories.php:25
256
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
257
+ #: includes/event-organiser-event-functions.php:1569
258
  #: templates/event-meta-event-single.php:62
259
  msgid "Categories"
260
  msgstr "Categorie"
378
  msgstr "24 ore"
379
 
380
  #: event-organiser-calendar.php:256
381
+ #: includes/event-organiser-event-functions.php:1506
382
  msgid "Loading&#8230;"
383
  msgstr "Caricamento&#8230;"
384
 
672
  msgstr "giorno della settimana"
673
 
674
  #: event-organiser-edit.php:225
675
+ #: includes/event-organiser-event-functions.php:862
676
  #: includes/event-organiser-register.php:307
677
  msgid "until"
678
  msgstr "fino a"
1723
  msgstr "Scegli fra i tag pi&ugrave; utilizzati"
1724
 
1725
  #: includes/event-organiser-cpt.php:163
1726
+ #: includes/event-organiser-event-functions.php:1577
1727
  #: templates/event-meta-event-single.php:66
1728
  msgid "Tags"
1729
  msgstr "Tag"
2107
  msgid "Assign the category a colour."
2108
  msgstr "Assegna un colore alla categoria"
2109
 
2110
+ #: includes/event-organiser-event-functions.php:783
2111
  #: includes/event-organiser-register.php:313
2112
  msgid "last"
2113
  msgstr "ultimo"
2114
 
2115
+ #: includes/event-organiser-event-functions.php:783
2116
  #: includes/event-organiser-register.php:309
2117
  msgid "first"
2118
  msgstr "primo"
2119
 
2120
+ #: includes/event-organiser-event-functions.php:783
2121
  #: includes/event-organiser-register.php:310
2122
  msgid "second"
2123
  msgstr "secondo"
2124
 
2125
+ #: includes/event-organiser-event-functions.php:783
2126
  #: includes/event-organiser-register.php:311
2127
  msgid "third"
2128
  msgstr "terzo"
2129
 
2130
+ #: includes/event-organiser-event-functions.php:783
2131
  #: includes/event-organiser-register.php:312
2132
  msgid "fourth"
2133
  msgstr "quarto"
2134
 
2135
+ #: includes/event-organiser-event-functions.php:793
2136
  msgid "one time only"
2137
  msgstr "soltanto una volta"
2138
 
2139
+ #: includes/event-organiser-event-functions.php:796
2140
  msgid "custom recurrence"
2141
  msgstr "Ricorrenza personalizzata"
2142
 
2143
+ #: includes/event-organiser-event-functions.php:803
2144
  #: includes/event-organiser-register.php:298
2145
  msgid "every day"
2146
  msgstr "ogni giorno"
2147
 
2148
+ #: includes/event-organiser-event-functions.php:805
2149
  #: includes/event-organiser-register.php:299
2150
  #, php-format
2151
  msgid "every %d days"
2152
  msgstr "ogni %d giorni"
2153
 
2154
+ #: includes/event-organiser-event-functions.php:811
2155
  #: includes/event-organiser-register.php:300
2156
  msgid "every week on"
2157
  msgstr "ogni settimana il"
2158
 
2159
+ #: includes/event-organiser-event-functions.php:813
2160
  #: includes/event-organiser-register.php:301
2161
  #, php-format
2162
  msgid "every %d weeks on"
2163
  msgstr "ogni %d settimane il"
2164
 
2165
+ #: includes/event-organiser-event-functions.php:824
2166
  #: includes/event-organiser-register.php:302
2167
  msgid "every month on the"
2168
  msgstr "ogni mese il"
2169
 
2170
+ #: includes/event-organiser-event-functions.php:826
2171
  #: includes/event-organiser-register.php:303
2172
  #, php-format
2173
  msgid "every %d months on the"
2174
  msgstr "ogni %d mesi il"
2175
 
2176
+ #: includes/event-organiser-event-functions.php:855
2177
  msgid "every year"
2178
  msgstr "ogni anno"
2179
 
2180
+ #: includes/event-organiser-event-functions.php:857
2181
  #, php-format
2182
  msgid "every %d years"
2183
  msgstr "ogni %d anni"
2344
  msgid "Event does not contain any dates."
2345
  msgstr "L'evento non prevede nessuna data."
2346
 
2347
+ #: includes/event.php:1085
2348
  msgid "Occurrence not deleted. Occurrence not found."
2349
  msgstr "Occorrenza non cancellata. Occorrenza non trovata."
2350
 
2351
+ #: includes/event.php:1141
2352
  #, fuzzy
2353
  msgid "There is already an occurrence on this date"
2354
  msgstr "C'è già un evento in questa data"
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2017-05-02T14:20:11+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr "'Googleに追加' リンクを入れる"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr "終日"
62
 
@@ -252,7 +252,7 @@ msgstr "イベントカテゴリ"
252
 
253
  #: classes/class-eo-widget-categories.php:25
254
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
255
- #: includes/event-organiser-event-functions.php:1563
256
  #: templates/event-meta-event-single.php:62
257
  msgid "Categories"
258
  msgstr "カテゴリ"
@@ -374,7 +374,7 @@ msgid "24 hour time"
374
  msgstr "24時間表示"
375
 
376
  #: event-organiser-calendar.php:256
377
- #: includes/event-organiser-event-functions.php:1500
378
  msgid "Loading&#8230;"
379
  msgstr "読み込み中..."
380
 
@@ -653,7 +653,7 @@ msgid "day of week"
653
  msgstr "曜日"
654
 
655
  #: event-organiser-edit.php:225
656
- #: includes/event-organiser-event-functions.php:856
657
  #: includes/event-organiser-register.php:307
658
  msgid "until"
659
  msgstr "まで"
@@ -1675,7 +1675,7 @@ msgid "Choose from the most used tags"
1675
  msgstr "よく使うタグから選ぶ"
1676
 
1677
  #: includes/event-organiser-cpt.php:163
1678
- #: includes/event-organiser-event-functions.php:1571
1679
  #: templates/event-meta-event-single.php:66
1680
  msgid "Tags"
1681
  msgstr "タグ"
@@ -2049,77 +2049,77 @@ msgstr "色"
2049
  msgid "Assign the category a colour."
2050
  msgstr "カテゴリの色を設定します。"
2051
 
2052
- #: includes/event-organiser-event-functions.php:777
2053
  #: includes/event-organiser-register.php:313
2054
  msgid "last"
2055
  msgstr "最後の"
2056
 
2057
- #: includes/event-organiser-event-functions.php:777
2058
  #: includes/event-organiser-register.php:309
2059
  msgid "first"
2060
  msgstr "1回"
2061
 
2062
- #: includes/event-organiser-event-functions.php:777
2063
  #: includes/event-organiser-register.php:310
2064
  msgid "second"
2065
  msgstr "2回"
2066
 
2067
- #: includes/event-organiser-event-functions.php:777
2068
  #: includes/event-organiser-register.php:311
2069
  msgid "third"
2070
  msgstr "3回"
2071
 
2072
- #: includes/event-organiser-event-functions.php:777
2073
  #: includes/event-organiser-register.php:312
2074
  msgid "fourth"
2075
  msgstr "4回"
2076
 
2077
- #: includes/event-organiser-event-functions.php:787
2078
  msgid "one time only"
2079
  msgstr "1回のみ"
2080
 
2081
- #: includes/event-organiser-event-functions.php:790
2082
  msgid "custom recurrence"
2083
  msgstr "カスタム周期"
2084
 
2085
- #: includes/event-organiser-event-functions.php:797
2086
  #: includes/event-organiser-register.php:298
2087
  msgid "every day"
2088
  msgstr "毎日"
2089
 
2090
- #: includes/event-organiser-event-functions.php:799
2091
  #: includes/event-organiser-register.php:299
2092
  #, php-format
2093
  msgid "every %d days"
2094
  msgstr "%d日ごと"
2095
 
2096
- #: includes/event-organiser-event-functions.php:805
2097
  #: includes/event-organiser-register.php:300
2098
  msgid "every week on"
2099
  msgstr "毎週"
2100
 
2101
- #: includes/event-organiser-event-functions.php:807
2102
  #: includes/event-organiser-register.php:301
2103
  #, php-format
2104
  msgid "every %d weeks on"
2105
  msgstr "%d週ごと"
2106
 
2107
- #: includes/event-organiser-event-functions.php:818
2108
  #: includes/event-organiser-register.php:302
2109
  msgid "every month on the"
2110
  msgstr "毎月の"
2111
 
2112
- #: includes/event-organiser-event-functions.php:820
2113
  #: includes/event-organiser-register.php:303
2114
  #, php-format
2115
  msgid "every %d months on the"
2116
  msgstr "%d月ごとの"
2117
 
2118
- #: includes/event-organiser-event-functions.php:849
2119
  msgid "every year"
2120
  msgstr "毎年"
2121
 
2122
- #: includes/event-organiser-event-functions.php:851
2123
  #, php-format
2124
  msgid "every %d years"
2125
  msgstr "%d年ごと"
@@ -2284,12 +2284,12 @@ msgstr "無効な月間スケジュール(無効な序数)"
2284
  msgid "Event does not contain any dates."
2285
  msgstr "イベントに日程が入っていません。"
2286
 
2287
- #: includes/event.php:1080
2288
  msgid "Occurrence not deleted. Occurrence not found."
2289
  msgstr ""
2290
  "繰り返しイベントは削除されませんでした。繰り返しイベントが見つかりません。"
2291
 
2292
- #: includes/event.php:1136
2293
  msgid "There is already an occurrence on this date"
2294
  msgstr "この日には既に繰り返しイベントがあります"
2295
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2017-05-02T14:20:11+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr "'Googleに追加' リンクを入れる"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr "終日"
62
 
252
 
253
  #: classes/class-eo-widget-categories.php:25
254
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
255
+ #: includes/event-organiser-event-functions.php:1569
256
  #: templates/event-meta-event-single.php:62
257
  msgid "Categories"
258
  msgstr "カテゴリ"
374
  msgstr "24時間表示"
375
 
376
  #: event-organiser-calendar.php:256
377
+ #: includes/event-organiser-event-functions.php:1506
378
  msgid "Loading&#8230;"
379
  msgstr "読み込み中..."
380
 
653
  msgstr "曜日"
654
 
655
  #: event-organiser-edit.php:225
656
+ #: includes/event-organiser-event-functions.php:862
657
  #: includes/event-organiser-register.php:307
658
  msgid "until"
659
  msgstr "まで"
1675
  msgstr "よく使うタグから選ぶ"
1676
 
1677
  #: includes/event-organiser-cpt.php:163
1678
+ #: includes/event-organiser-event-functions.php:1577
1679
  #: templates/event-meta-event-single.php:66
1680
  msgid "Tags"
1681
  msgstr "タグ"
2049
  msgid "Assign the category a colour."
2050
  msgstr "カテゴリの色を設定します。"
2051
 
2052
+ #: includes/event-organiser-event-functions.php:783
2053
  #: includes/event-organiser-register.php:313
2054
  msgid "last"
2055
  msgstr "最後の"
2056
 
2057
+ #: includes/event-organiser-event-functions.php:783
2058
  #: includes/event-organiser-register.php:309
2059
  msgid "first"
2060
  msgstr "1回"
2061
 
2062
+ #: includes/event-organiser-event-functions.php:783
2063
  #: includes/event-organiser-register.php:310
2064
  msgid "second"
2065
  msgstr "2回"
2066
 
2067
+ #: includes/event-organiser-event-functions.php:783
2068
  #: includes/event-organiser-register.php:311
2069
  msgid "third"
2070
  msgstr "3回"
2071
 
2072
+ #: includes/event-organiser-event-functions.php:783
2073
  #: includes/event-organiser-register.php:312
2074
  msgid "fourth"
2075
  msgstr "4回"
2076
 
2077
+ #: includes/event-organiser-event-functions.php:793
2078
  msgid "one time only"
2079
  msgstr "1回のみ"
2080
 
2081
+ #: includes/event-organiser-event-functions.php:796
2082
  msgid "custom recurrence"
2083
  msgstr "カスタム周期"
2084
 
2085
+ #: includes/event-organiser-event-functions.php:803
2086
  #: includes/event-organiser-register.php:298
2087
  msgid "every day"
2088
  msgstr "毎日"
2089
 
2090
+ #: includes/event-organiser-event-functions.php:805
2091
  #: includes/event-organiser-register.php:299
2092
  #, php-format
2093
  msgid "every %d days"
2094
  msgstr "%d日ごと"
2095
 
2096
+ #: includes/event-organiser-event-functions.php:811
2097
  #: includes/event-organiser-register.php:300
2098
  msgid "every week on"
2099
  msgstr "毎週"
2100
 
2101
+ #: includes/event-organiser-event-functions.php:813
2102
  #: includes/event-organiser-register.php:301
2103
  #, php-format
2104
  msgid "every %d weeks on"
2105
  msgstr "%d週ごと"
2106
 
2107
+ #: includes/event-organiser-event-functions.php:824
2108
  #: includes/event-organiser-register.php:302
2109
  msgid "every month on the"
2110
  msgstr "毎月の"
2111
 
2112
+ #: includes/event-organiser-event-functions.php:826
2113
  #: includes/event-organiser-register.php:303
2114
  #, php-format
2115
  msgid "every %d months on the"
2116
  msgstr "%d月ごとの"
2117
 
2118
+ #: includes/event-organiser-event-functions.php:855
2119
  msgid "every year"
2120
  msgstr "毎年"
2121
 
2122
+ #: includes/event-organiser-event-functions.php:857
2123
  #, php-format
2124
  msgid "every %d years"
2125
  msgstr "%d年ごと"
2284
  msgid "Event does not contain any dates."
2285
  msgstr "イベントに日程が入っていません。"
2286
 
2287
+ #: includes/event.php:1085
2288
  msgid "Occurrence not deleted. Occurrence not found."
2289
  msgstr ""
2290
  "繰り返しイベントは削除されませんでした。繰り返しイベントが見つかりません。"
2291
 
2292
+ #: includes/event.php:1141
2293
  msgid "There is already an occurrence on this date"
2294
  msgstr "この日には既に繰り返しイベントがあります"
2295
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:16:11+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -58,7 +58,7 @@ msgid "Include 'Add To Google' link"
58
  msgstr "Įtraukti 'Pridėti prie Google' nuorodą"
59
 
60
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
61
- #: includes/event-organiser-event-functions.php:1382
62
  msgid "All day"
63
  msgstr "Visą dieną"
64
 
@@ -256,7 +256,7 @@ msgstr "Renginių kategorijos"
256
 
257
  #: classes/class-eo-widget-categories.php:25
258
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
259
- #: includes/event-organiser-event-functions.php:1563
260
  #: templates/event-meta-event-single.php:62
261
  msgid "Categories"
262
  msgstr "Kategorijos"
@@ -380,7 +380,7 @@ msgid "24 hour time"
380
  msgstr "24 valandų laikas"
381
 
382
  #: event-organiser-calendar.php:256
383
- #: includes/event-organiser-event-functions.php:1500
384
  msgid "Loading&#8230;"
385
  msgstr "Loading&#8230"
386
 
@@ -650,7 +650,7 @@ msgid "day of week"
650
  msgstr "savaitės diena"
651
 
652
  #: event-organiser-edit.php:225
653
- #: includes/event-organiser-event-functions.php:856
654
  #: includes/event-organiser-register.php:307
655
  msgid "until"
656
  msgstr "iki"
@@ -1666,7 +1666,7 @@ msgid "Choose from the most used tags"
1666
  msgstr "Pasirinkti iš labiausiai naudojamų žymų"
1667
 
1668
  #: includes/event-organiser-cpt.php:163
1669
- #: includes/event-organiser-event-functions.php:1571
1670
  #: templates/event-meta-event-single.php:66
1671
  msgid "Tags"
1672
  msgstr "Žymos"
@@ -2020,77 +2020,77 @@ msgstr "Spalva"
2020
  msgid "Assign the category a colour."
2021
  msgstr "Priskirti kategorijai spalvą."
2022
 
2023
- #: includes/event-organiser-event-functions.php:777
2024
  #: includes/event-organiser-register.php:313
2025
  msgid "last"
2026
  msgstr "paskutinis"
2027
 
2028
- #: includes/event-organiser-event-functions.php:777
2029
  #: includes/event-organiser-register.php:309
2030
  msgid "first"
2031
  msgstr "pirmas"
2032
 
2033
- #: includes/event-organiser-event-functions.php:777
2034
  #: includes/event-organiser-register.php:310
2035
  msgid "second"
2036
  msgstr "antras"
2037
 
2038
- #: includes/event-organiser-event-functions.php:777
2039
  #: includes/event-organiser-register.php:311
2040
  msgid "third"
2041
  msgstr "trečias"
2042
 
2043
- #: includes/event-organiser-event-functions.php:777
2044
  #: includes/event-organiser-register.php:312
2045
  msgid "fourth"
2046
  msgstr "ketvirtas"
2047
 
2048
- #: includes/event-organiser-event-functions.php:787
2049
  msgid "one time only"
2050
  msgstr "vienkartinis"
2051
 
2052
- #: includes/event-organiser-event-functions.php:790
2053
  msgid "custom recurrence"
2054
  msgstr ""
2055
 
2056
- #: includes/event-organiser-event-functions.php:797
2057
  #: includes/event-organiser-register.php:298
2058
  msgid "every day"
2059
  msgstr "kasdien"
2060
 
2061
- #: includes/event-organiser-event-functions.php:799
2062
  #: includes/event-organiser-register.php:299
2063
  #, php-format
2064
  msgid "every %d days"
2065
  msgstr "visas %d dienas "
2066
 
2067
- #: includes/event-organiser-event-functions.php:805
2068
  #: includes/event-organiser-register.php:300
2069
  msgid "every week on"
2070
  msgstr "kiekvieną savaitę"
2071
 
2072
- #: includes/event-organiser-event-functions.php:807
2073
  #: includes/event-organiser-register.php:301
2074
  #, php-format
2075
  msgid "every %d weeks on"
2076
  msgstr "visas %d savaites"
2077
 
2078
- #: includes/event-organiser-event-functions.php:818
2079
  #: includes/event-organiser-register.php:302
2080
  msgid "every month on the"
2081
  msgstr "kiekvieną mėnesį"
2082
 
2083
- #: includes/event-organiser-event-functions.php:820
2084
  #: includes/event-organiser-register.php:303
2085
  #, php-format
2086
  msgid "every %d months on the"
2087
  msgstr "kiekvieną %d mėnesį"
2088
 
2089
- #: includes/event-organiser-event-functions.php:849
2090
  msgid "every year"
2091
  msgstr "kasmet"
2092
 
2093
- #: includes/event-organiser-event-functions.php:851
2094
  #, php-format
2095
  msgid "every %d years"
2096
  msgstr "visus %d metus"
@@ -2246,11 +2246,11 @@ msgstr "Negaliojantis mėnesio tvarkaraštis (neteisingas kelintinis)"
2246
  msgid "Event does not contain any dates."
2247
  msgstr "Renginiui nenurodytos jokios datos."
2248
 
2249
- #: includes/event.php:1080
2250
  msgid "Occurrence not deleted. Occurrence not found."
2251
  msgstr "Įvykis nėra ištrintas. Įvykis nerastas."
2252
 
2253
- #: includes/event.php:1136
2254
  msgid "There is already an occurrence on this date"
2255
  msgstr "Šiai datai jau yra įvykis"
2256
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:16:11+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
58
  msgstr "Įtraukti 'Pridėti prie Google' nuorodą"
59
 
60
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
61
+ #: includes/event-organiser-event-functions.php:1388
62
  msgid "All day"
63
  msgstr "Visą dieną"
64
 
256
 
257
  #: classes/class-eo-widget-categories.php:25
258
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
259
+ #: includes/event-organiser-event-functions.php:1569
260
  #: templates/event-meta-event-single.php:62
261
  msgid "Categories"
262
  msgstr "Kategorijos"
380
  msgstr "24 valandų laikas"
381
 
382
  #: event-organiser-calendar.php:256
383
+ #: includes/event-organiser-event-functions.php:1506
384
  msgid "Loading&#8230;"
385
  msgstr "Loading&#8230"
386
 
650
  msgstr "savaitės diena"
651
 
652
  #: event-organiser-edit.php:225
653
+ #: includes/event-organiser-event-functions.php:862
654
  #: includes/event-organiser-register.php:307
655
  msgid "until"
656
  msgstr "iki"
1666
  msgstr "Pasirinkti iš labiausiai naudojamų žymų"
1667
 
1668
  #: includes/event-organiser-cpt.php:163
1669
+ #: includes/event-organiser-event-functions.php:1577
1670
  #: templates/event-meta-event-single.php:66
1671
  msgid "Tags"
1672
  msgstr "Žymos"
2020
  msgid "Assign the category a colour."
2021
  msgstr "Priskirti kategorijai spalvą."
2022
 
2023
+ #: includes/event-organiser-event-functions.php:783
2024
  #: includes/event-organiser-register.php:313
2025
  msgid "last"
2026
  msgstr "paskutinis"
2027
 
2028
+ #: includes/event-organiser-event-functions.php:783
2029
  #: includes/event-organiser-register.php:309
2030
  msgid "first"
2031
  msgstr "pirmas"
2032
 
2033
+ #: includes/event-organiser-event-functions.php:783
2034
  #: includes/event-organiser-register.php:310
2035
  msgid "second"
2036
  msgstr "antras"
2037
 
2038
+ #: includes/event-organiser-event-functions.php:783
2039
  #: includes/event-organiser-register.php:311
2040
  msgid "third"
2041
  msgstr "trečias"
2042
 
2043
+ #: includes/event-organiser-event-functions.php:783
2044
  #: includes/event-organiser-register.php:312
2045
  msgid "fourth"
2046
  msgstr "ketvirtas"
2047
 
2048
+ #: includes/event-organiser-event-functions.php:793
2049
  msgid "one time only"
2050
  msgstr "vienkartinis"
2051
 
2052
+ #: includes/event-organiser-event-functions.php:796
2053
  msgid "custom recurrence"
2054
  msgstr ""
2055
 
2056
+ #: includes/event-organiser-event-functions.php:803
2057
  #: includes/event-organiser-register.php:298
2058
  msgid "every day"
2059
  msgstr "kasdien"
2060
 
2061
+ #: includes/event-organiser-event-functions.php:805
2062
  #: includes/event-organiser-register.php:299
2063
  #, php-format
2064
  msgid "every %d days"
2065
  msgstr "visas %d dienas "
2066
 
2067
+ #: includes/event-organiser-event-functions.php:811
2068
  #: includes/event-organiser-register.php:300
2069
  msgid "every week on"
2070
  msgstr "kiekvieną savaitę"
2071
 
2072
+ #: includes/event-organiser-event-functions.php:813
2073
  #: includes/event-organiser-register.php:301
2074
  #, php-format
2075
  msgid "every %d weeks on"
2076
  msgstr "visas %d savaites"
2077
 
2078
+ #: includes/event-organiser-event-functions.php:824
2079
  #: includes/event-organiser-register.php:302
2080
  msgid "every month on the"
2081
  msgstr "kiekvieną mėnesį"
2082
 
2083
+ #: includes/event-organiser-event-functions.php:826
2084
  #: includes/event-organiser-register.php:303
2085
  #, php-format
2086
  msgid "every %d months on the"
2087
  msgstr "kiekvieną %d mėnesį"
2088
 
2089
+ #: includes/event-organiser-event-functions.php:855
2090
  msgid "every year"
2091
  msgstr "kasmet"
2092
 
2093
+ #: includes/event-organiser-event-functions.php:857
2094
  #, php-format
2095
  msgid "every %d years"
2096
  msgstr "visus %d metus"
2246
  msgid "Event does not contain any dates."
2247
  msgstr "Renginiui nenurodytos jokios datos."
2248
 
2249
+ #: includes/event.php:1085
2250
  msgid "Occurrence not deleted. Occurrence not found."
2251
  msgstr "Įvykis nėra ištrintas. Įvykis nerastas."
2252
 
2253
+ #: includes/event.php:1141
2254
  msgid "There is already an occurrence on this date"
2255
  msgstr "Šiai datai jau yra įvykis"
2256
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2017-04-16T23:21:46+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -57,7 +57,7 @@ msgid "Include 'Add To Google' link"
57
  msgstr ""
58
 
59
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
60
- #: includes/event-organiser-event-functions.php:1382
61
  msgid "All day"
62
  msgstr "Visu dienu"
63
 
@@ -249,7 +249,7 @@ msgstr "Pasākumu Kategorijas"
249
 
250
  #: classes/class-eo-widget-categories.php:25
251
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
252
- #: includes/event-organiser-event-functions.php:1563
253
  #: templates/event-meta-event-single.php:62
254
  msgid "Categories"
255
  msgstr "Kategorijas"
@@ -371,7 +371,7 @@ msgid "24 hour time"
371
  msgstr "24h laiks"
372
 
373
  #: event-organiser-calendar.php:256
374
- #: includes/event-organiser-event-functions.php:1500
375
  msgid "Loading&#8230;"
376
  msgstr "Ielāde&#8230;"
377
 
@@ -641,7 +641,7 @@ msgid "day of week"
641
  msgstr "nedēļas diena"
642
 
643
  #: event-organiser-edit.php:225
644
- #: includes/event-organiser-event-functions.php:856
645
  #: includes/event-organiser-register.php:307
646
  msgid "until"
647
  msgstr "līdz"
@@ -1614,7 +1614,7 @@ msgid "Choose from the most used tags"
1614
  msgstr "Izvēlies no biežāk lietotajiem tagiem"
1615
 
1616
  #: includes/event-organiser-cpt.php:163
1617
- #: includes/event-organiser-event-functions.php:1571
1618
  #: templates/event-meta-event-single.php:66
1619
  msgid "Tags"
1620
  msgstr "Tagi"
@@ -1953,77 +1953,77 @@ msgstr "krāsa"
1953
  msgid "Assign the category a colour."
1954
  msgstr "Iestatīt kategorijai krāsu"
1955
 
1956
- #: includes/event-organiser-event-functions.php:777
1957
  #: includes/event-organiser-register.php:313
1958
  msgid "last"
1959
  msgstr "pēdējais"
1960
 
1961
- #: includes/event-organiser-event-functions.php:777
1962
  #: includes/event-organiser-register.php:309
1963
  msgid "first"
1964
  msgstr "pirmais"
1965
 
1966
- #: includes/event-organiser-event-functions.php:777
1967
  #: includes/event-organiser-register.php:310
1968
  msgid "second"
1969
  msgstr "otrais"
1970
 
1971
- #: includes/event-organiser-event-functions.php:777
1972
  #: includes/event-organiser-register.php:311
1973
  msgid "third"
1974
  msgstr "trešais"
1975
 
1976
- #: includes/event-organiser-event-functions.php:777
1977
  #: includes/event-organiser-register.php:312
1978
  msgid "fourth"
1979
  msgstr "ceturtais"
1980
 
1981
- #: includes/event-organiser-event-functions.php:787
1982
  msgid "one time only"
1983
  msgstr "vienreizējs"
1984
 
1985
- #: includes/event-organiser-event-functions.php:790
1986
  msgid "custom recurrence"
1987
  msgstr ""
1988
 
1989
- #: includes/event-organiser-event-functions.php:797
1990
  #: includes/event-organiser-register.php:298
1991
  msgid "every day"
1992
  msgstr "katru dienu"
1993
 
1994
- #: includes/event-organiser-event-functions.php:799
1995
  #: includes/event-organiser-register.php:299
1996
  #, php-format
1997
  msgid "every %d days"
1998
  msgstr "katru %d dienu"
1999
 
2000
- #: includes/event-organiser-event-functions.php:805
2001
  #: includes/event-organiser-register.php:300
2002
  msgid "every week on"
2003
  msgstr "katru nedēļu"
2004
 
2005
- #: includes/event-organiser-event-functions.php:807
2006
  #: includes/event-organiser-register.php:301
2007
  #, php-format
2008
  msgid "every %d weeks on"
2009
  msgstr "katru %d nedēļu"
2010
 
2011
- #: includes/event-organiser-event-functions.php:818
2012
  #: includes/event-organiser-register.php:302
2013
  msgid "every month on the"
2014
  msgstr "katru mēnesi"
2015
 
2016
- #: includes/event-organiser-event-functions.php:820
2017
  #: includes/event-organiser-register.php:303
2018
  #, php-format
2019
  msgid "every %d months on the"
2020
  msgstr "katru %d mēnesi"
2021
 
2022
- #: includes/event-organiser-event-functions.php:849
2023
  msgid "every year"
2024
  msgstr "Katru gadu"
2025
 
2026
- #: includes/event-organiser-event-functions.php:851
2027
  #, php-format
2028
  msgid "every %d years"
2029
  msgstr "katru %d gadu"
@@ -2179,11 +2179,11 @@ msgstr "Nederīgs ikmēneša grafiks"
2179
  msgid "Event does not contain any dates."
2180
  msgstr "Pasākums nesatur informāciju par norises laiku"
2181
 
2182
- #: includes/event.php:1080
2183
  msgid "Occurrence not deleted. Occurrence not found."
2184
  msgstr "Pasākums nav atrasts"
2185
 
2186
- #: includes/event.php:1136
2187
  msgid "There is already an occurrence on this date"
2188
  msgstr ""
2189
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2017-04-16T23:21:46+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
57
  msgstr ""
58
 
59
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
60
+ #: includes/event-organiser-event-functions.php:1388
61
  msgid "All day"
62
  msgstr "Visu dienu"
63
 
249
 
250
  #: classes/class-eo-widget-categories.php:25
251
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
252
+ #: includes/event-organiser-event-functions.php:1569
253
  #: templates/event-meta-event-single.php:62
254
  msgid "Categories"
255
  msgstr "Kategorijas"
371
  msgstr "24h laiks"
372
 
373
  #: event-organiser-calendar.php:256
374
+ #: includes/event-organiser-event-functions.php:1506
375
  msgid "Loading&#8230;"
376
  msgstr "Ielāde&#8230;"
377
 
641
  msgstr "nedēļas diena"
642
 
643
  #: event-organiser-edit.php:225
644
+ #: includes/event-organiser-event-functions.php:862
645
  #: includes/event-organiser-register.php:307
646
  msgid "until"
647
  msgstr "līdz"
1614
  msgstr "Izvēlies no biežāk lietotajiem tagiem"
1615
 
1616
  #: includes/event-organiser-cpt.php:163
1617
+ #: includes/event-organiser-event-functions.php:1577
1618
  #: templates/event-meta-event-single.php:66
1619
  msgid "Tags"
1620
  msgstr "Tagi"
1953
  msgid "Assign the category a colour."
1954
  msgstr "Iestatīt kategorijai krāsu"
1955
 
1956
+ #: includes/event-organiser-event-functions.php:783
1957
  #: includes/event-organiser-register.php:313
1958
  msgid "last"
1959
  msgstr "pēdējais"
1960
 
1961
+ #: includes/event-organiser-event-functions.php:783
1962
  #: includes/event-organiser-register.php:309
1963
  msgid "first"
1964
  msgstr "pirmais"
1965
 
1966
+ #: includes/event-organiser-event-functions.php:783
1967
  #: includes/event-organiser-register.php:310
1968
  msgid "second"
1969
  msgstr "otrais"
1970
 
1971
+ #: includes/event-organiser-event-functions.php:783
1972
  #: includes/event-organiser-register.php:311
1973
  msgid "third"
1974
  msgstr "trešais"
1975
 
1976
+ #: includes/event-organiser-event-functions.php:783
1977
  #: includes/event-organiser-register.php:312
1978
  msgid "fourth"
1979
  msgstr "ceturtais"
1980
 
1981
+ #: includes/event-organiser-event-functions.php:793
1982
  msgid "one time only"
1983
  msgstr "vienreizējs"
1984
 
1985
+ #: includes/event-organiser-event-functions.php:796
1986
  msgid "custom recurrence"
1987
  msgstr ""
1988
 
1989
+ #: includes/event-organiser-event-functions.php:803
1990
  #: includes/event-organiser-register.php:298
1991
  msgid "every day"
1992
  msgstr "katru dienu"
1993
 
1994
+ #: includes/event-organiser-event-functions.php:805
1995
  #: includes/event-organiser-register.php:299
1996
  #, php-format
1997
  msgid "every %d days"
1998
  msgstr "katru %d dienu"
1999
 
2000
+ #: includes/event-organiser-event-functions.php:811
2001
  #: includes/event-organiser-register.php:300
2002
  msgid "every week on"
2003
  msgstr "katru nedēļu"
2004
 
2005
+ #: includes/event-organiser-event-functions.php:813
2006
  #: includes/event-organiser-register.php:301
2007
  #, php-format
2008
  msgid "every %d weeks on"
2009
  msgstr "katru %d nedēļu"
2010
 
2011
+ #: includes/event-organiser-event-functions.php:824
2012
  #: includes/event-organiser-register.php:302
2013
  msgid "every month on the"
2014
  msgstr "katru mēnesi"
2015
 
2016
+ #: includes/event-organiser-event-functions.php:826
2017
  #: includes/event-organiser-register.php:303
2018
  #, php-format
2019
  msgid "every %d months on the"
2020
  msgstr "katru %d mēnesi"
2021
 
2022
+ #: includes/event-organiser-event-functions.php:855
2023
  msgid "every year"
2024
  msgstr "Katru gadu"
2025
 
2026
+ #: includes/event-organiser-event-functions.php:857
2027
  #, php-format
2028
  msgid "every %d years"
2029
  msgstr "katru %d gadu"
2179
  msgid "Event does not contain any dates."
2180
  msgstr "Pasākums nesatur informāciju par norises laiku"
2181
 
2182
+ #: includes/event.php:1085
2183
  msgid "Occurrence not deleted. Occurrence not found."
2184
  msgstr "Pasākums nav atrasts"
2185
 
2186
+ #: includes/event.php:1141
2187
  msgid "There is already an occurrence on this date"
2188
  msgstr ""
2189
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:16:03+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr ""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr "Цел ден"
62
 
@@ -248,7 +248,7 @@ msgstr ""
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
- #: includes/event-organiser-event-functions.php:1563
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr "Категории"
@@ -370,7 +370,7 @@ msgid "24 hour time"
370
  msgstr "24 часа"
371
 
372
  #: event-organiser-calendar.php:256
373
- #: includes/event-organiser-event-functions.php:1500
374
  msgid "Loading&#8230;"
375
  msgstr "Вчитување&#8230;"
376
 
@@ -639,7 +639,7 @@ msgid "day of week"
639
  msgstr "ден од седмица"
640
 
641
  #: event-organiser-edit.php:225
642
- #: includes/event-organiser-event-functions.php:856
643
  #: includes/event-organiser-register.php:307
644
  msgid "until"
645
  msgstr "до"
@@ -1613,7 +1613,7 @@ msgid "Choose from the most used tags"
1613
  msgstr ""
1614
 
1615
  #: includes/event-organiser-cpt.php:163
1616
- #: includes/event-organiser-event-functions.php:1571
1617
  #: templates/event-meta-event-single.php:66
1618
  msgid "Tags"
1619
  msgstr ""
@@ -1956,77 +1956,77 @@ msgstr "Боја"
1956
  msgid "Assign the category a colour."
1957
  msgstr "Додели боја на категоријата"
1958
 
1959
- #: includes/event-organiser-event-functions.php:777
1960
  #: includes/event-organiser-register.php:313
1961
  msgid "last"
1962
  msgstr "последен"
1963
 
1964
- #: includes/event-organiser-event-functions.php:777
1965
  #: includes/event-organiser-register.php:309
1966
  msgid "first"
1967
  msgstr "прв"
1968
 
1969
- #: includes/event-organiser-event-functions.php:777
1970
  #: includes/event-organiser-register.php:310
1971
  msgid "second"
1972
  msgstr "втор(а)"
1973
 
1974
- #: includes/event-organiser-event-functions.php:777
1975
  #: includes/event-organiser-register.php:311
1976
  msgid "third"
1977
  msgstr "трет(а)"
1978
 
1979
- #: includes/event-organiser-event-functions.php:777
1980
  #: includes/event-organiser-register.php:312
1981
  msgid "fourth"
1982
  msgstr "четврт(а)"
1983
 
1984
- #: includes/event-organiser-event-functions.php:787
1985
  msgid "one time only"
1986
  msgstr "само еднаш"
1987
 
1988
- #: includes/event-organiser-event-functions.php:790
1989
  msgid "custom recurrence"
1990
  msgstr "друга повторливост"
1991
 
1992
- #: includes/event-organiser-event-functions.php:797
1993
  #: includes/event-organiser-register.php:298
1994
  msgid "every day"
1995
  msgstr "секој ден"
1996
 
1997
- #: includes/event-organiser-event-functions.php:799
1998
  #: includes/event-organiser-register.php:299
1999
  #, php-format
2000
  msgid "every %d days"
2001
  msgstr "Секој %d ден"
2002
 
2003
- #: includes/event-organiser-event-functions.php:805
2004
  #: includes/event-organiser-register.php:300
2005
  msgid "every week on"
2006
  msgstr "секоја седмица на"
2007
 
2008
- #: includes/event-organiser-event-functions.php:807
2009
  #: includes/event-organiser-register.php:301
2010
  #, php-format
2011
  msgid "every %d weeks on"
2012
  msgstr "Секоја %d седмица на"
2013
 
2014
- #: includes/event-organiser-event-functions.php:818
2015
  #: includes/event-organiser-register.php:302
2016
  msgid "every month on the"
2017
  msgstr "секој месец на"
2018
 
2019
- #: includes/event-organiser-event-functions.php:820
2020
  #: includes/event-organiser-register.php:303
2021
  #, php-format
2022
  msgid "every %d months on the"
2023
  msgstr "секој %d месец на"
2024
 
2025
- #: includes/event-organiser-event-functions.php:849
2026
  msgid "every year"
2027
  msgstr "секоја година"
2028
 
2029
- #: includes/event-organiser-event-functions.php:851
2030
  #, php-format
2031
  msgid "every %d years"
2032
  msgstr "секоја %d година"
@@ -2182,11 +2182,11 @@ msgstr ""
2182
  msgid "Event does not contain any dates."
2183
  msgstr ""
2184
 
2185
- #: includes/event.php:1080
2186
  msgid "Occurrence not deleted. Occurrence not found."
2187
  msgstr ""
2188
 
2189
- #: includes/event.php:1136
2190
  msgid "There is already an occurrence on this date"
2191
  msgstr ""
2192
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:16:03+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr ""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr "Цел ден"
62
 
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
+ #: includes/event-organiser-event-functions.php:1569
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr "Категории"
370
  msgstr "24 часа"
371
 
372
  #: event-organiser-calendar.php:256
373
+ #: includes/event-organiser-event-functions.php:1506
374
  msgid "Loading&#8230;"
375
  msgstr "Вчитување&#8230;"
376
 
639
  msgstr "ден од седмица"
640
 
641
  #: event-organiser-edit.php:225
642
+ #: includes/event-organiser-event-functions.php:862
643
  #: includes/event-organiser-register.php:307
644
  msgid "until"
645
  msgstr "до"
1613
  msgstr ""
1614
 
1615
  #: includes/event-organiser-cpt.php:163
1616
+ #: includes/event-organiser-event-functions.php:1577
1617
  #: templates/event-meta-event-single.php:66
1618
  msgid "Tags"
1619
  msgstr ""
1956
  msgid "Assign the category a colour."
1957
  msgstr "Додели боја на категоријата"
1958
 
1959
+ #: includes/event-organiser-event-functions.php:783
1960
  #: includes/event-organiser-register.php:313
1961
  msgid "last"
1962
  msgstr "последен"
1963
 
1964
+ #: includes/event-organiser-event-functions.php:783
1965
  #: includes/event-organiser-register.php:309
1966
  msgid "first"
1967
  msgstr "прв"
1968
 
1969
+ #: includes/event-organiser-event-functions.php:783
1970
  #: includes/event-organiser-register.php:310
1971
  msgid "second"
1972
  msgstr "втор(а)"
1973
 
1974
+ #: includes/event-organiser-event-functions.php:783
1975
  #: includes/event-organiser-register.php:311
1976
  msgid "third"
1977
  msgstr "трет(а)"
1978
 
1979
+ #: includes/event-organiser-event-functions.php:783
1980
  #: includes/event-organiser-register.php:312
1981
  msgid "fourth"
1982
  msgstr "четврт(а)"
1983
 
1984
+ #: includes/event-organiser-event-functions.php:793
1985
  msgid "one time only"
1986
  msgstr "само еднаш"
1987
 
1988
+ #: includes/event-organiser-event-functions.php:796
1989
  msgid "custom recurrence"
1990
  msgstr "друга повторливост"
1991
 
1992
+ #: includes/event-organiser-event-functions.php:803
1993
  #: includes/event-organiser-register.php:298
1994
  msgid "every day"
1995
  msgstr "секој ден"
1996
 
1997
+ #: includes/event-organiser-event-functions.php:805
1998
  #: includes/event-organiser-register.php:299
1999
  #, php-format
2000
  msgid "every %d days"
2001
  msgstr "Секој %d ден"
2002
 
2003
+ #: includes/event-organiser-event-functions.php:811
2004
  #: includes/event-organiser-register.php:300
2005
  msgid "every week on"
2006
  msgstr "секоја седмица на"
2007
 
2008
+ #: includes/event-organiser-event-functions.php:813
2009
  #: includes/event-organiser-register.php:301
2010
  #, php-format
2011
  msgid "every %d weeks on"
2012
  msgstr "Секоја %d седмица на"
2013
 
2014
+ #: includes/event-organiser-event-functions.php:824
2015
  #: includes/event-organiser-register.php:302
2016
  msgid "every month on the"
2017
  msgstr "секој месец на"
2018
 
2019
+ #: includes/event-organiser-event-functions.php:826
2020
  #: includes/event-organiser-register.php:303
2021
  #, php-format
2022
  msgid "every %d months on the"
2023
  msgstr "секој %d месец на"
2024
 
2025
+ #: includes/event-organiser-event-functions.php:855
2026
  msgid "every year"
2027
  msgstr "секоја година"
2028
 
2029
+ #: includes/event-organiser-event-functions.php:857
2030
  #, php-format
2031
  msgid "every %d years"
2032
  msgstr "секоја %d година"
2182
  msgid "Event does not contain any dates."
2183
  msgstr ""
2184
 
2185
+ #: includes/event.php:1085
2186
  msgid "Occurrence not deleted. Occurrence not found."
2187
  msgstr ""
2188
 
2189
+ #: includes/event.php:1141
2190
  msgid "There is already an occurrence on this date"
2191
  msgstr ""
2192
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:16:00+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr ""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr "Heldag"
62
 
@@ -248,7 +248,7 @@ msgstr "Arrangementkategorier"
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
- #: includes/event-organiser-event-functions.php:1563
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr "Kategorier"
@@ -370,7 +370,7 @@ msgid "24 hour time"
370
  msgstr ""
371
 
372
  #: event-organiser-calendar.php:256
373
- #: includes/event-organiser-event-functions.php:1500
374
  msgid "Loading&#8230;"
375
  msgstr "Laster&#8230;"
376
 
@@ -638,7 +638,7 @@ msgid "day of week"
638
  msgstr "dag i uken"
639
 
640
  #: event-organiser-edit.php:225
641
- #: includes/event-organiser-event-functions.php:856
642
  #: includes/event-organiser-register.php:307
643
  msgid "until"
644
  msgstr "inntil"
@@ -1627,7 +1627,7 @@ msgid "Choose from the most used tags"
1627
  msgstr "Velg blant de mest brukte stikkordene"
1628
 
1629
  #: includes/event-organiser-cpt.php:163
1630
- #: includes/event-organiser-event-functions.php:1571
1631
  #: templates/event-meta-event-single.php:66
1632
  msgid "Tags"
1633
  msgstr "Stikkord"
@@ -2006,77 +2006,77 @@ msgstr "Farge"
2006
  msgid "Assign the category a colour."
2007
  msgstr "Gi kategorien en farge"
2008
 
2009
- #: includes/event-organiser-event-functions.php:777
2010
  #: includes/event-organiser-register.php:313
2011
  msgid "last"
2012
  msgstr "siste"
2013
 
2014
- #: includes/event-organiser-event-functions.php:777
2015
  #: includes/event-organiser-register.php:309
2016
  msgid "first"
2017
  msgstr "første"
2018
 
2019
- #: includes/event-organiser-event-functions.php:777
2020
  #: includes/event-organiser-register.php:310
2021
  msgid "second"
2022
  msgstr "andre"
2023
 
2024
- #: includes/event-organiser-event-functions.php:777
2025
  #: includes/event-organiser-register.php:311
2026
  msgid "third"
2027
  msgstr "tredje"
2028
 
2029
- #: includes/event-organiser-event-functions.php:777
2030
  #: includes/event-organiser-register.php:312
2031
  msgid "fourth"
2032
  msgstr "fjerde"
2033
 
2034
- #: includes/event-organiser-event-functions.php:787
2035
  msgid "one time only"
2036
  msgstr "kun en gang"
2037
 
2038
- #: includes/event-organiser-event-functions.php:790
2039
  msgid "custom recurrence"
2040
  msgstr "Gjentakelse"
2041
 
2042
- #: includes/event-organiser-event-functions.php:797
2043
  #: includes/event-organiser-register.php:298
2044
  msgid "every day"
2045
  msgstr "hver dag"
2046
 
2047
- #: includes/event-organiser-event-functions.php:799
2048
  #: includes/event-organiser-register.php:299
2049
  #, php-format
2050
  msgid "every %d days"
2051
  msgstr "hver %d. dag"
2052
 
2053
- #: includes/event-organiser-event-functions.php:805
2054
  #: includes/event-organiser-register.php:300
2055
  msgid "every week on"
2056
  msgstr "hver uke på"
2057
 
2058
- #: includes/event-organiser-event-functions.php:807
2059
  #: includes/event-organiser-register.php:301
2060
  #, php-format
2061
  msgid "every %d weeks on"
2062
  msgstr "hver %d. uke på"
2063
 
2064
- #: includes/event-organiser-event-functions.php:818
2065
  #: includes/event-organiser-register.php:302
2066
  msgid "every month on the"
2067
  msgstr "hver måned den"
2068
 
2069
- #: includes/event-organiser-event-functions.php:820
2070
  #: includes/event-organiser-register.php:303
2071
  #, php-format
2072
  msgid "every %d months on the"
2073
  msgstr "hver %d. måned den"
2074
 
2075
- #: includes/event-organiser-event-functions.php:849
2076
  msgid "every year"
2077
  msgstr "hvert år"
2078
 
2079
- #: includes/event-organiser-event-functions.php:851
2080
  #, php-format
2081
  msgid "every %d years"
2082
  msgstr "hvert %d. år"
@@ -2232,11 +2232,11 @@ msgstr "Ugyldig månedlig planlegging (ugyldig verdi)"
2232
  msgid "Event does not contain any dates."
2233
  msgstr "Arrangementet har ingen datoer."
2234
 
2235
- #: includes/event.php:1080
2236
  msgid "Occurrence not deleted. Occurrence not found."
2237
  msgstr "Forekomst ble ikke slettet. Den ble ikke funnet."
2238
 
2239
- #: includes/event.php:1136
2240
  msgid "There is already an occurrence on this date"
2241
  msgstr ""
2242
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:16:00+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr ""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr "Heldag"
62
 
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
+ #: includes/event-organiser-event-functions.php:1569
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr "Kategorier"
370
  msgstr ""
371
 
372
  #: event-organiser-calendar.php:256
373
+ #: includes/event-organiser-event-functions.php:1506
374
  msgid "Loading&#8230;"
375
  msgstr "Laster&#8230;"
376
 
638
  msgstr "dag i uken"
639
 
640
  #: event-organiser-edit.php:225
641
+ #: includes/event-organiser-event-functions.php:862
642
  #: includes/event-organiser-register.php:307
643
  msgid "until"
644
  msgstr "inntil"
1627
  msgstr "Velg blant de mest brukte stikkordene"
1628
 
1629
  #: includes/event-organiser-cpt.php:163
1630
+ #: includes/event-organiser-event-functions.php:1577
1631
  #: templates/event-meta-event-single.php:66
1632
  msgid "Tags"
1633
  msgstr "Stikkord"
2006
  msgid "Assign the category a colour."
2007
  msgstr "Gi kategorien en farge"
2008
 
2009
+ #: includes/event-organiser-event-functions.php:783
2010
  #: includes/event-organiser-register.php:313
2011
  msgid "last"
2012
  msgstr "siste"
2013
 
2014
+ #: includes/event-organiser-event-functions.php:783
2015
  #: includes/event-organiser-register.php:309
2016
  msgid "first"
2017
  msgstr "første"
2018
 
2019
+ #: includes/event-organiser-event-functions.php:783
2020
  #: includes/event-organiser-register.php:310
2021
  msgid "second"
2022
  msgstr "andre"
2023
 
2024
+ #: includes/event-organiser-event-functions.php:783
2025
  #: includes/event-organiser-register.php:311
2026
  msgid "third"
2027
  msgstr "tredje"
2028
 
2029
+ #: includes/event-organiser-event-functions.php:783
2030
  #: includes/event-organiser-register.php:312
2031
  msgid "fourth"
2032
  msgstr "fjerde"
2033
 
2034
+ #: includes/event-organiser-event-functions.php:793
2035
  msgid "one time only"
2036
  msgstr "kun en gang"
2037
 
2038
+ #: includes/event-organiser-event-functions.php:796
2039
  msgid "custom recurrence"
2040
  msgstr "Gjentakelse"
2041
 
2042
+ #: includes/event-organiser-event-functions.php:803
2043
  #: includes/event-organiser-register.php:298
2044
  msgid "every day"
2045
  msgstr "hver dag"
2046
 
2047
+ #: includes/event-organiser-event-functions.php:805
2048
  #: includes/event-organiser-register.php:299
2049
  #, php-format
2050
  msgid "every %d days"
2051
  msgstr "hver %d. dag"
2052
 
2053
+ #: includes/event-organiser-event-functions.php:811
2054
  #: includes/event-organiser-register.php:300
2055
  msgid "every week on"
2056
  msgstr "hver uke på"
2057
 
2058
+ #: includes/event-organiser-event-functions.php:813
2059
  #: includes/event-organiser-register.php:301
2060
  #, php-format
2061
  msgid "every %d weeks on"
2062
  msgstr "hver %d. uke på"
2063
 
2064
+ #: includes/event-organiser-event-functions.php:824
2065
  #: includes/event-organiser-register.php:302
2066
  msgid "every month on the"
2067
  msgstr "hver måned den"
2068
 
2069
+ #: includes/event-organiser-event-functions.php:826
2070
  #: includes/event-organiser-register.php:303
2071
  #, php-format
2072
  msgid "every %d months on the"
2073
  msgstr "hver %d. måned den"
2074
 
2075
+ #: includes/event-organiser-event-functions.php:855
2076
  msgid "every year"
2077
  msgstr "hvert år"
2078
 
2079
+ #: includes/event-organiser-event-functions.php:857
2080
  #, php-format
2081
  msgid "every %d years"
2082
  msgstr "hvert %d. år"
2232
  msgid "Event does not contain any dates."
2233
  msgstr "Arrangementet har ingen datoer."
2234
 
2235
+ #: includes/event.php:1085
2236
  msgid "Occurrence not deleted. Occurrence not found."
2237
  msgstr "Forekomst ble ikke slettet. Den ble ikke funnet."
2238
 
2239
+ #: includes/event.php:1141
2240
  msgid "There is already an occurrence on this date"
2241
  msgstr ""
2242
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2017-11-03T23:42:56+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr "Voeg de 'Add To Google' link toe"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr "Duurt hele dag"
62
 
@@ -252,7 +252,7 @@ msgstr "Evenementencategorieën"
252
 
253
  #: classes/class-eo-widget-categories.php:25
254
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
255
- #: includes/event-organiser-event-functions.php:1563
256
  #: templates/event-meta-event-single.php:62
257
  msgid "Categories"
258
  msgstr "Categorie&#235;n"
@@ -376,7 +376,7 @@ msgid "24 hour time"
376
  msgstr "24-uurs tijd"
377
 
378
  #: event-organiser-calendar.php:256
379
- #: includes/event-organiser-event-functions.php:1500
380
  msgid "Loading&#8230;"
381
  msgstr "Laden&#8230;"
382
 
@@ -650,7 +650,7 @@ msgid "day of week"
650
  msgstr "week van de maand"
651
 
652
  #: event-organiser-edit.php:225
653
- #: includes/event-organiser-event-functions.php:856
654
  #: includes/event-organiser-register.php:307
655
  msgid "until"
656
  msgstr "tot "
@@ -1681,7 +1681,7 @@ msgid "Choose from the most used tags"
1681
  msgstr "Kies uit de meest gebruikte zoekwoorden"
1682
 
1683
  #: includes/event-organiser-cpt.php:163
1684
- #: includes/event-organiser-event-functions.php:1571
1685
  #: templates/event-meta-event-single.php:66
1686
  msgid "Tags"
1687
  msgstr "Zoekwoorden"
@@ -2054,77 +2054,77 @@ msgstr "Kleur"
2054
  msgid "Assign the category a colour."
2055
  msgstr "Kies een kleur voor de categorie."
2056
 
2057
- #: includes/event-organiser-event-functions.php:777
2058
  #: includes/event-organiser-register.php:313
2059
  msgid "last"
2060
  msgstr "laatste"
2061
 
2062
- #: includes/event-organiser-event-functions.php:777
2063
  #: includes/event-organiser-register.php:309
2064
  msgid "first"
2065
  msgstr "eerste"
2066
 
2067
- #: includes/event-organiser-event-functions.php:777
2068
  #: includes/event-organiser-register.php:310
2069
  msgid "second"
2070
  msgstr "tweede"
2071
 
2072
- #: includes/event-organiser-event-functions.php:777
2073
  #: includes/event-organiser-register.php:311
2074
  msgid "third"
2075
  msgstr "derde"
2076
 
2077
- #: includes/event-organiser-event-functions.php:777
2078
  #: includes/event-organiser-register.php:312
2079
  msgid "fourth"
2080
  msgstr "vierde"
2081
 
2082
- #: includes/event-organiser-event-functions.php:787
2083
  msgid "one time only"
2084
  msgstr "eenmalig"
2085
 
2086
- #: includes/event-organiser-event-functions.php:790
2087
  msgid "custom recurrence"
2088
  msgstr "aangepast terugkeerpatroon"
2089
 
2090
- #: includes/event-organiser-event-functions.php:797
2091
  #: includes/event-organiser-register.php:298
2092
  msgid "every day"
2093
  msgstr "elke dag"
2094
 
2095
- #: includes/event-organiser-event-functions.php:799
2096
  #: includes/event-organiser-register.php:299
2097
  #, php-format
2098
  msgid "every %d days"
2099
  msgstr "elke %d dagen"
2100
 
2101
- #: includes/event-organiser-event-functions.php:805
2102
  #: includes/event-organiser-register.php:300
2103
  msgid "every week on"
2104
  msgstr "elke week op"
2105
 
2106
- #: includes/event-organiser-event-functions.php:807
2107
  #: includes/event-organiser-register.php:301
2108
  #, php-format
2109
  msgid "every %d weeks on"
2110
  msgstr "elke %d weken op"
2111
 
2112
- #: includes/event-organiser-event-functions.php:818
2113
  #: includes/event-organiser-register.php:302
2114
  msgid "every month on the"
2115
  msgstr "elke maand op de"
2116
 
2117
- #: includes/event-organiser-event-functions.php:820
2118
  #: includes/event-organiser-register.php:303
2119
  #, php-format
2120
  msgid "every %d months on the"
2121
  msgstr "elke %d maanden op de"
2122
 
2123
- #: includes/event-organiser-event-functions.php:849
2124
  msgid "every year"
2125
  msgstr "elk jaar"
2126
 
2127
- #: includes/event-organiser-event-functions.php:851
2128
  #, php-format
2129
  msgid "every %d years"
2130
  msgstr "elke %d jaar"
@@ -2286,11 +2286,11 @@ msgstr "Ongeldige maandelijks terugkeerpatroon"
2286
  msgid "Event does not contain any dates."
2287
  msgstr "Evenement bevat geen enkele datum."
2288
 
2289
- #: includes/event.php:1080
2290
  msgid "Occurrence not deleted. Occurrence not found."
2291
  msgstr "Gebeurtenis niet verwijderd. Gebeurtenis niet gevonden."
2292
 
2293
- #: includes/event.php:1136
2294
  msgid "There is already an occurrence on this date"
2295
  msgstr "Er is al een gebeurtenis op deze dag"
2296
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2017-11-03T23:42:56+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr "Voeg de 'Add To Google' link toe"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr "Duurt hele dag"
62
 
252
 
253
  #: classes/class-eo-widget-categories.php:25
254
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
255
+ #: includes/event-organiser-event-functions.php:1569
256
  #: templates/event-meta-event-single.php:62
257
  msgid "Categories"
258
  msgstr "Categorie&#235;n"
376
  msgstr "24-uurs tijd"
377
 
378
  #: event-organiser-calendar.php:256
379
+ #: includes/event-organiser-event-functions.php:1506
380
  msgid "Loading&#8230;"
381
  msgstr "Laden&#8230;"
382
 
650
  msgstr "week van de maand"
651
 
652
  #: event-organiser-edit.php:225
653
+ #: includes/event-organiser-event-functions.php:862
654
  #: includes/event-organiser-register.php:307
655
  msgid "until"
656
  msgstr "tot "
1681
  msgstr "Kies uit de meest gebruikte zoekwoorden"
1682
 
1683
  #: includes/event-organiser-cpt.php:163
1684
+ #: includes/event-organiser-event-functions.php:1577
1685
  #: templates/event-meta-event-single.php:66
1686
  msgid "Tags"
1687
  msgstr "Zoekwoorden"
2054
  msgid "Assign the category a colour."
2055
  msgstr "Kies een kleur voor de categorie."
2056
 
2057
+ #: includes/event-organiser-event-functions.php:783
2058
  #: includes/event-organiser-register.php:313
2059
  msgid "last"
2060
  msgstr "laatste"
2061
 
2062
+ #: includes/event-organiser-event-functions.php:783
2063
  #: includes/event-organiser-register.php:309
2064
  msgid "first"
2065
  msgstr "eerste"
2066
 
2067
+ #: includes/event-organiser-event-functions.php:783
2068
  #: includes/event-organiser-register.php:310
2069
  msgid "second"
2070
  msgstr "tweede"
2071
 
2072
+ #: includes/event-organiser-event-functions.php:783
2073
  #: includes/event-organiser-register.php:311
2074
  msgid "third"
2075
  msgstr "derde"
2076
 
2077
+ #: includes/event-organiser-event-functions.php:783
2078
  #: includes/event-organiser-register.php:312
2079
  msgid "fourth"
2080
  msgstr "vierde"
2081
 
2082
+ #: includes/event-organiser-event-functions.php:793
2083
  msgid "one time only"
2084
  msgstr "eenmalig"
2085
 
2086
+ #: includes/event-organiser-event-functions.php:796
2087
  msgid "custom recurrence"
2088
  msgstr "aangepast terugkeerpatroon"
2089
 
2090
+ #: includes/event-organiser-event-functions.php:803
2091
  #: includes/event-organiser-register.php:298
2092
  msgid "every day"
2093
  msgstr "elke dag"
2094
 
2095
+ #: includes/event-organiser-event-functions.php:805
2096
  #: includes/event-organiser-register.php:299
2097
  #, php-format
2098
  msgid "every %d days"
2099
  msgstr "elke %d dagen"
2100
 
2101
+ #: includes/event-organiser-event-functions.php:811
2102
  #: includes/event-organiser-register.php:300
2103
  msgid "every week on"
2104
  msgstr "elke week op"
2105
 
2106
+ #: includes/event-organiser-event-functions.php:813
2107
  #: includes/event-organiser-register.php:301
2108
  #, php-format
2109
  msgid "every %d weeks on"
2110
  msgstr "elke %d weken op"
2111
 
2112
+ #: includes/event-organiser-event-functions.php:824
2113
  #: includes/event-organiser-register.php:302
2114
  msgid "every month on the"
2115
  msgstr "elke maand op de"
2116
 
2117
+ #: includes/event-organiser-event-functions.php:826
2118
  #: includes/event-organiser-register.php:303
2119
  #, php-format
2120
  msgid "every %d months on the"
2121
  msgstr "elke %d maanden op de"
2122
 
2123
+ #: includes/event-organiser-event-functions.php:855
2124
  msgid "every year"
2125
  msgstr "elk jaar"
2126
 
2127
+ #: includes/event-organiser-event-functions.php:857
2128
  #, php-format
2129
  msgid "every %d years"
2130
  msgstr "elke %d jaar"
2286
  msgid "Event does not contain any dates."
2287
  msgstr "Evenement bevat geen enkele datum."
2288
 
2289
+ #: includes/event.php:1085
2290
  msgid "Occurrence not deleted. Occurrence not found."
2291
  msgstr "Gebeurtenis niet verwijderd. Gebeurtenis niet gevonden."
2292
 
2293
+ #: includes/event.php:1141
2294
  msgid "There is already an occurrence on this date"
2295
  msgstr "Er is al een gebeurtenis op deze dag"
2296
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2017-04-19T20:43:50+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -57,7 +57,7 @@ msgid "Include 'Add To Google' link"
57
  msgstr ""
58
 
59
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
60
- #: includes/event-organiser-event-functions.php:1382
61
  msgid "All day"
62
  msgstr "Heldag"
63
 
@@ -249,7 +249,7 @@ msgstr "Arrangementkategorier"
249
 
250
  #: classes/class-eo-widget-categories.php:25
251
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
252
- #: includes/event-organiser-event-functions.php:1563
253
  #: templates/event-meta-event-single.php:62
254
  msgid "Categories"
255
  msgstr "Kategorier"
@@ -372,7 +372,7 @@ msgid "24 hour time"
372
  msgstr ""
373
 
374
  #: event-organiser-calendar.php:256
375
- #: includes/event-organiser-event-functions.php:1500
376
  msgid "Loading&#8230;"
377
  msgstr "Laster&#8230;"
378
 
@@ -641,7 +641,7 @@ msgid "day of week"
641
  msgstr "dag i uken"
642
 
643
  #: event-organiser-edit.php:225
644
- #: includes/event-organiser-event-functions.php:856
645
  #: includes/event-organiser-register.php:307
646
  msgid "until"
647
  msgstr "inntil"
@@ -1637,7 +1637,7 @@ msgid "Choose from the most used tags"
1637
  msgstr "Velg blant de mest brukte stikkordene"
1638
 
1639
  #: includes/event-organiser-cpt.php:163
1640
- #: includes/event-organiser-event-functions.php:1571
1641
  #: templates/event-meta-event-single.php:66
1642
  msgid "Tags"
1643
  msgstr "Stikkord"
@@ -2014,79 +2014,79 @@ msgstr "Farge"
2014
  msgid "Assign the category a colour."
2015
  msgstr "Gi kategorien en farge"
2016
 
2017
- #: includes/event-organiser-event-functions.php:777
2018
  #: includes/event-organiser-register.php:313
2019
  msgid "last"
2020
  msgstr "siste"
2021
 
2022
- #: includes/event-organiser-event-functions.php:777
2023
  #: includes/event-organiser-register.php:309
2024
  msgid "first"
2025
  msgstr "første"
2026
 
2027
- #: includes/event-organiser-event-functions.php:777
2028
  #: includes/event-organiser-register.php:310
2029
  msgid "second"
2030
  msgstr "andre"
2031
 
2032
- #: includes/event-organiser-event-functions.php:777
2033
  #: includes/event-organiser-register.php:311
2034
  msgid "third"
2035
  msgstr "tredje"
2036
 
2037
- #: includes/event-organiser-event-functions.php:777
2038
  #: includes/event-organiser-register.php:312
2039
  msgid "fourth"
2040
  msgstr "fjerde"
2041
 
2042
- #: includes/event-organiser-event-functions.php:787
2043
  msgid "one time only"
2044
  msgstr "kun en gnag"
2045
 
2046
- #: includes/event-organiser-event-functions.php:790
2047
  #, fuzzy
2048
  msgid "custom recurrence"
2049
  msgstr "Gjentakelse"
2050
 
2051
- #: includes/event-organiser-event-functions.php:797
2052
  #: includes/event-organiser-register.php:298
2053
  msgid "every day"
2054
  msgstr "hver dag"
2055
 
2056
- #: includes/event-organiser-event-functions.php:799
2057
  #: includes/event-organiser-register.php:299
2058
  #, php-format
2059
  msgid "every %d days"
2060
  msgstr "hver %d. dag"
2061
 
2062
- #: includes/event-organiser-event-functions.php:805
2063
  #: includes/event-organiser-register.php:300
2064
  msgid "every week on"
2065
  msgstr "hver uke på"
2066
 
2067
- #: includes/event-organiser-event-functions.php:807
2068
  #: includes/event-organiser-register.php:301
2069
  #, php-format
2070
  msgid "every %d weeks on"
2071
  msgstr "hver %d. uke på"
2072
 
2073
- #: includes/event-organiser-event-functions.php:818
2074
  #: includes/event-organiser-register.php:302
2075
  #, fuzzy
2076
  msgid "every month on the"
2077
  msgstr "hver måned den"
2078
 
2079
- #: includes/event-organiser-event-functions.php:820
2080
  #: includes/event-organiser-register.php:303
2081
  #, php-format
2082
  msgid "every %d months on the"
2083
  msgstr "hver %d. måned den"
2084
 
2085
- #: includes/event-organiser-event-functions.php:849
2086
  msgid "every year"
2087
  msgstr "hvert år"
2088
 
2089
- #: includes/event-organiser-event-functions.php:851
2090
  #, php-format
2091
  msgid "every %d years"
2092
  msgstr "hvert %d. år"
@@ -2242,11 +2242,11 @@ msgstr ""
2242
  msgid "Event does not contain any dates."
2243
  msgstr ""
2244
 
2245
- #: includes/event.php:1080
2246
  msgid "Occurrence not deleted. Occurrence not found."
2247
  msgstr ""
2248
 
2249
- #: includes/event.php:1136
2250
  msgid "There is already an occurrence on this date"
2251
  msgstr ""
2252
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2017-04-19T20:43:50+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
57
  msgstr ""
58
 
59
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
60
+ #: includes/event-organiser-event-functions.php:1388
61
  msgid "All day"
62
  msgstr "Heldag"
63
 
249
 
250
  #: classes/class-eo-widget-categories.php:25
251
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
252
+ #: includes/event-organiser-event-functions.php:1569
253
  #: templates/event-meta-event-single.php:62
254
  msgid "Categories"
255
  msgstr "Kategorier"
372
  msgstr ""
373
 
374
  #: event-organiser-calendar.php:256
375
+ #: includes/event-organiser-event-functions.php:1506
376
  msgid "Loading&#8230;"
377
  msgstr "Laster&#8230;"
378
 
641
  msgstr "dag i uken"
642
 
643
  #: event-organiser-edit.php:225
644
+ #: includes/event-organiser-event-functions.php:862
645
  #: includes/event-organiser-register.php:307
646
  msgid "until"
647
  msgstr "inntil"
1637
  msgstr "Velg blant de mest brukte stikkordene"
1638
 
1639
  #: includes/event-organiser-cpt.php:163
1640
+ #: includes/event-organiser-event-functions.php:1577
1641
  #: templates/event-meta-event-single.php:66
1642
  msgid "Tags"
1643
  msgstr "Stikkord"
2014
  msgid "Assign the category a colour."
2015
  msgstr "Gi kategorien en farge"
2016
 
2017
+ #: includes/event-organiser-event-functions.php:783
2018
  #: includes/event-organiser-register.php:313
2019
  msgid "last"
2020
  msgstr "siste"
2021
 
2022
+ #: includes/event-organiser-event-functions.php:783
2023
  #: includes/event-organiser-register.php:309
2024
  msgid "first"
2025
  msgstr "første"
2026
 
2027
+ #: includes/event-organiser-event-functions.php:783
2028
  #: includes/event-organiser-register.php:310
2029
  msgid "second"
2030
  msgstr "andre"
2031
 
2032
+ #: includes/event-organiser-event-functions.php:783
2033
  #: includes/event-organiser-register.php:311
2034
  msgid "third"
2035
  msgstr "tredje"
2036
 
2037
+ #: includes/event-organiser-event-functions.php:783
2038
  #: includes/event-organiser-register.php:312
2039
  msgid "fourth"
2040
  msgstr "fjerde"
2041
 
2042
+ #: includes/event-organiser-event-functions.php:793
2043
  msgid "one time only"
2044
  msgstr "kun en gnag"
2045
 
2046
+ #: includes/event-organiser-event-functions.php:796
2047
  #, fuzzy
2048
  msgid "custom recurrence"
2049
  msgstr "Gjentakelse"
2050
 
2051
+ #: includes/event-organiser-event-functions.php:803
2052
  #: includes/event-organiser-register.php:298
2053
  msgid "every day"
2054
  msgstr "hver dag"
2055
 
2056
+ #: includes/event-organiser-event-functions.php:805
2057
  #: includes/event-organiser-register.php:299
2058
  #, php-format
2059
  msgid "every %d days"
2060
  msgstr "hver %d. dag"
2061
 
2062
+ #: includes/event-organiser-event-functions.php:811
2063
  #: includes/event-organiser-register.php:300
2064
  msgid "every week on"
2065
  msgstr "hver uke på"
2066
 
2067
+ #: includes/event-organiser-event-functions.php:813
2068
  #: includes/event-organiser-register.php:301
2069
  #, php-format
2070
  msgid "every %d weeks on"
2071
  msgstr "hver %d. uke på"
2072
 
2073
+ #: includes/event-organiser-event-functions.php:824
2074
  #: includes/event-organiser-register.php:302
2075
  #, fuzzy
2076
  msgid "every month on the"
2077
  msgstr "hver måned den"
2078
 
2079
+ #: includes/event-organiser-event-functions.php:826
2080
  #: includes/event-organiser-register.php:303
2081
  #, php-format
2082
  msgid "every %d months on the"
2083
  msgstr "hver %d. måned den"
2084
 
2085
+ #: includes/event-organiser-event-functions.php:855
2086
  msgid "every year"
2087
  msgstr "hvert år"
2088
 
2089
+ #: includes/event-organiser-event-functions.php:857
2090
  #, php-format
2091
  msgid "every %d years"
2092
  msgstr "hvert %d. år"
2242
  msgid "Event does not contain any dates."
2243
  msgstr ""
2244
 
2245
+ #: includes/event.php:1085
2246
  msgid "Occurrence not deleted. Occurrence not found."
2247
  msgstr ""
2248
 
2249
+ #: includes/event.php:1141
2250
  msgid "There is already an occurrence on this date"
2251
  msgstr ""
2252
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:15:47+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -57,7 +57,7 @@ msgid "Include 'Add To Google' link"
57
  msgstr "Dołącz link 'Dodaj do Google'"
58
 
59
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
60
- #: includes/event-organiser-event-functions.php:1382
61
  msgid "All day"
62
  msgstr "Cały dzień"
63
 
@@ -251,7 +251,7 @@ msgstr "Kategorie wydarzeń"
251
 
252
  #: classes/class-eo-widget-categories.php:25
253
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
254
- #: includes/event-organiser-event-functions.php:1563
255
  #: templates/event-meta-event-single.php:62
256
  msgid "Categories"
257
  msgstr "Kategorie"
@@ -373,7 +373,7 @@ msgid "24 hour time"
373
  msgstr "Czas 24 godzinny"
374
 
375
  #: event-organiser-calendar.php:256
376
- #: includes/event-organiser-event-functions.php:1500
377
  msgid "Loading&#8230;"
378
  msgstr "Ładuję&#8230;"
379
 
@@ -641,7 +641,7 @@ msgid "day of week"
641
  msgstr "danego dnia tygodnia"
642
 
643
  #: event-organiser-edit.php:225
644
- #: includes/event-organiser-event-functions.php:856
645
  #: includes/event-organiser-register.php:307
646
  msgid "until"
647
  msgstr "aż do"
@@ -1635,7 +1635,7 @@ msgid "Choose from the most used tags"
1635
  msgstr "Wybierz spośród najpopularniejszych tagów"
1636
 
1637
  #: includes/event-organiser-cpt.php:163
1638
- #: includes/event-organiser-event-functions.php:1571
1639
  #: templates/event-meta-event-single.php:66
1640
  msgid "Tags"
1641
  msgstr "Tagi"
@@ -2017,78 +2017,78 @@ msgstr "Kolor"
2017
  msgid "Assign the category a colour."
2018
  msgstr "Przypisz kolor do kategorii."
2019
 
2020
- #: includes/event-organiser-event-functions.php:777
2021
  #: includes/event-organiser-register.php:313
2022
  msgid "last"
2023
  msgstr "ostatni"
2024
 
2025
- #: includes/event-organiser-event-functions.php:777
2026
  #: includes/event-organiser-register.php:309
2027
  msgid "first"
2028
  msgstr "pierwszy"
2029
 
2030
- #: includes/event-organiser-event-functions.php:777
2031
  #: includes/event-organiser-register.php:310
2032
  msgid "second"
2033
  msgstr "drugi"
2034
 
2035
- #: includes/event-organiser-event-functions.php:777
2036
  #: includes/event-organiser-register.php:311
2037
  msgid "third"
2038
  msgstr "trzeci"
2039
 
2040
- #: includes/event-organiser-event-functions.php:777
2041
  #: includes/event-organiser-register.php:312
2042
  msgid "fourth"
2043
  msgstr "czwarty"
2044
 
2045
- #: includes/event-organiser-event-functions.php:787
2046
  msgid "one time only"
2047
  msgstr "tylko raz"
2048
 
2049
- #: includes/event-organiser-event-functions.php:790
2050
  #, fuzzy
2051
  msgid "custom recurrence"
2052
  msgstr "własna cykliczność wydarzenia"
2053
 
2054
- #: includes/event-organiser-event-functions.php:797
2055
  #: includes/event-organiser-register.php:298
2056
  msgid "every day"
2057
  msgstr "codziennie"
2058
 
2059
- #: includes/event-organiser-event-functions.php:799
2060
  #: includes/event-organiser-register.php:299
2061
  #, php-format
2062
  msgid "every %d days"
2063
  msgstr "co %d dni"
2064
 
2065
- #: includes/event-organiser-event-functions.php:805
2066
  #: includes/event-organiser-register.php:300
2067
  msgid "every week on"
2068
  msgstr "co tydzień w"
2069
 
2070
- #: includes/event-organiser-event-functions.php:807
2071
  #: includes/event-organiser-register.php:301
2072
  #, php-format
2073
  msgid "every %d weeks on"
2074
  msgstr "co %d tygodnie w"
2075
 
2076
- #: includes/event-organiser-event-functions.php:818
2077
  #: includes/event-organiser-register.php:302
2078
  msgid "every month on the"
2079
  msgstr "co miesiąc w"
2080
 
2081
- #: includes/event-organiser-event-functions.php:820
2082
  #: includes/event-organiser-register.php:303
2083
  #, php-format
2084
  msgid "every %d months on the"
2085
  msgstr "co %d miesiące w"
2086
 
2087
- #: includes/event-organiser-event-functions.php:849
2088
  msgid "every year"
2089
  msgstr "co roku"
2090
 
2091
- #: includes/event-organiser-event-functions.php:851
2092
  #, php-format
2093
  msgid "every %d years"
2094
  msgstr "co %d lata"
@@ -2244,11 +2244,11 @@ msgstr "Nieprawidłowy plan miesięczny"
2244
  msgid "Event does not contain any dates."
2245
  msgstr ""
2246
 
2247
- #: includes/event.php:1080
2248
  msgid "Occurrence not deleted. Occurrence not found."
2249
  msgstr ""
2250
 
2251
- #: includes/event.php:1136
2252
  msgid "There is already an occurrence on this date"
2253
  msgstr ""
2254
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:15:47+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
57
  msgstr "Dołącz link 'Dodaj do Google'"
58
 
59
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
60
+ #: includes/event-organiser-event-functions.php:1388
61
  msgid "All day"
62
  msgstr "Cały dzień"
63
 
251
 
252
  #: classes/class-eo-widget-categories.php:25
253
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
254
+ #: includes/event-organiser-event-functions.php:1569
255
  #: templates/event-meta-event-single.php:62
256
  msgid "Categories"
257
  msgstr "Kategorie"
373
  msgstr "Czas 24 godzinny"
374
 
375
  #: event-organiser-calendar.php:256
376
+ #: includes/event-organiser-event-functions.php:1506
377
  msgid "Loading&#8230;"
378
  msgstr "Ładuję&#8230;"
379
 
641
  msgstr "danego dnia tygodnia"
642
 
643
  #: event-organiser-edit.php:225
644
+ #: includes/event-organiser-event-functions.php:862
645
  #: includes/event-organiser-register.php:307
646
  msgid "until"
647
  msgstr "aż do"
1635
  msgstr "Wybierz spośród najpopularniejszych tagów"
1636
 
1637
  #: includes/event-organiser-cpt.php:163
1638
+ #: includes/event-organiser-event-functions.php:1577
1639
  #: templates/event-meta-event-single.php:66
1640
  msgid "Tags"
1641
  msgstr "Tagi"
2017
  msgid "Assign the category a colour."
2018
  msgstr "Przypisz kolor do kategorii."
2019
 
2020
+ #: includes/event-organiser-event-functions.php:783
2021
  #: includes/event-organiser-register.php:313
2022
  msgid "last"
2023
  msgstr "ostatni"
2024
 
2025
+ #: includes/event-organiser-event-functions.php:783
2026
  #: includes/event-organiser-register.php:309
2027
  msgid "first"
2028
  msgstr "pierwszy"
2029
 
2030
+ #: includes/event-organiser-event-functions.php:783
2031
  #: includes/event-organiser-register.php:310
2032
  msgid "second"
2033
  msgstr "drugi"
2034
 
2035
+ #: includes/event-organiser-event-functions.php:783
2036
  #: includes/event-organiser-register.php:311
2037
  msgid "third"
2038
  msgstr "trzeci"
2039
 
2040
+ #: includes/event-organiser-event-functions.php:783
2041
  #: includes/event-organiser-register.php:312
2042
  msgid "fourth"
2043
  msgstr "czwarty"
2044
 
2045
+ #: includes/event-organiser-event-functions.php:793
2046
  msgid "one time only"
2047
  msgstr "tylko raz"
2048
 
2049
+ #: includes/event-organiser-event-functions.php:796
2050
  #, fuzzy
2051
  msgid "custom recurrence"
2052
  msgstr "własna cykliczność wydarzenia"
2053
 
2054
+ #: includes/event-organiser-event-functions.php:803
2055
  #: includes/event-organiser-register.php:298
2056
  msgid "every day"
2057
  msgstr "codziennie"
2058
 
2059
+ #: includes/event-organiser-event-functions.php:805
2060
  #: includes/event-organiser-register.php:299
2061
  #, php-format
2062
  msgid "every %d days"
2063
  msgstr "co %d dni"
2064
 
2065
+ #: includes/event-organiser-event-functions.php:811
2066
  #: includes/event-organiser-register.php:300
2067
  msgid "every week on"
2068
  msgstr "co tydzień w"
2069
 
2070
+ #: includes/event-organiser-event-functions.php:813
2071
  #: includes/event-organiser-register.php:301
2072
  #, php-format
2073
  msgid "every %d weeks on"
2074
  msgstr "co %d tygodnie w"
2075
 
2076
+ #: includes/event-organiser-event-functions.php:824
2077
  #: includes/event-organiser-register.php:302
2078
  msgid "every month on the"
2079
  msgstr "co miesiąc w"
2080
 
2081
+ #: includes/event-organiser-event-functions.php:826
2082
  #: includes/event-organiser-register.php:303
2083
  #, php-format
2084
  msgid "every %d months on the"
2085
  msgstr "co %d miesiące w"
2086
 
2087
+ #: includes/event-organiser-event-functions.php:855
2088
  msgid "every year"
2089
  msgstr "co roku"
2090
 
2091
+ #: includes/event-organiser-event-functions.php:857
2092
  #, php-format
2093
  msgid "every %d years"
2094
  msgstr "co %d lata"
2244
  msgid "Event does not contain any dates."
2245
  msgstr ""
2246
 
2247
+ #: includes/event.php:1085
2248
  msgid "Occurrence not deleted. Occurrence not found."
2249
  msgstr ""
2250
 
2251
+ #: includes/event.php:1141
2252
  msgid "There is already an occurrence on this date"
2253
  msgstr ""
2254
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2017-05-20T02:33:43+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr "Incluir 'Adicionar ao Google'"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr "Dia todo"
62
 
@@ -252,7 +252,7 @@ msgstr "Categorias do Evento"
252
 
253
  #: classes/class-eo-widget-categories.php:25
254
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
255
- #: includes/event-organiser-event-functions.php:1563
256
  #: templates/event-meta-event-single.php:62
257
  msgid "Categories"
258
  msgstr "Categorias"
@@ -376,7 +376,7 @@ msgid "24 hour time"
376
  msgstr "Formato 24 horas"
377
 
378
  #: event-organiser-calendar.php:256
379
- #: includes/event-organiser-event-functions.php:1500
380
  msgid "Loading&#8230;"
381
  msgstr "Carregando&#8230;"
382
 
@@ -657,7 +657,7 @@ msgid "day of week"
657
  msgstr "dia da semana"
658
 
659
  #: event-organiser-edit.php:225
660
- #: includes/event-organiser-event-functions.php:856
661
  #: includes/event-organiser-register.php:307
662
  msgid "until"
663
  msgstr "até"
@@ -1687,7 +1687,7 @@ msgid "Choose from the most used tags"
1687
  msgstr "Escolha entre as tags mais usadas"
1688
 
1689
  #: includes/event-organiser-cpt.php:163
1690
- #: includes/event-organiser-event-functions.php:1571
1691
  #: templates/event-meta-event-single.php:66
1692
  msgid "Tags"
1693
  msgstr "Tags"
@@ -2060,77 +2060,77 @@ msgstr "Cor"
2060
  msgid "Assign the category a colour."
2061
  msgstr "Selecione uma cor para a categoria."
2062
 
2063
- #: includes/event-organiser-event-functions.php:777
2064
  #: includes/event-organiser-register.php:313
2065
  msgid "last"
2066
  msgstr "último"
2067
 
2068
- #: includes/event-organiser-event-functions.php:777
2069
  #: includes/event-organiser-register.php:309
2070
  msgid "first"
2071
  msgstr "primeiro"
2072
 
2073
- #: includes/event-organiser-event-functions.php:777
2074
  #: includes/event-organiser-register.php:310
2075
  msgid "second"
2076
  msgstr "segundo"
2077
 
2078
- #: includes/event-organiser-event-functions.php:777
2079
  #: includes/event-organiser-register.php:311
2080
  msgid "third"
2081
  msgstr "terceiro"
2082
 
2083
- #: includes/event-organiser-event-functions.php:777
2084
  #: includes/event-organiser-register.php:312
2085
  msgid "fourth"
2086
  msgstr "quarto"
2087
 
2088
- #: includes/event-organiser-event-functions.php:787
2089
  msgid "one time only"
2090
  msgstr "apenas uma vez"
2091
 
2092
- #: includes/event-organiser-event-functions.php:790
2093
  msgid "custom recurrence"
2094
  msgstr "Recorrência Personalizada"
2095
 
2096
- #: includes/event-organiser-event-functions.php:797
2097
  #: includes/event-organiser-register.php:298
2098
  msgid "every day"
2099
  msgstr "todos os dias"
2100
 
2101
- #: includes/event-organiser-event-functions.php:799
2102
  #: includes/event-organiser-register.php:299
2103
  #, php-format
2104
  msgid "every %d days"
2105
  msgstr "a cada %d dias"
2106
 
2107
- #: includes/event-organiser-event-functions.php:805
2108
  #: includes/event-organiser-register.php:300
2109
  msgid "every week on"
2110
  msgstr "toda semana na"
2111
 
2112
- #: includes/event-organiser-event-functions.php:807
2113
  #: includes/event-organiser-register.php:301
2114
  #, php-format
2115
  msgid "every %d weeks on"
2116
  msgstr "a cada %d semanas na"
2117
 
2118
- #: includes/event-organiser-event-functions.php:818
2119
  #: includes/event-organiser-register.php:302
2120
  msgid "every month on the"
2121
  msgstr "todo mês no dia"
2122
 
2123
- #: includes/event-organiser-event-functions.php:820
2124
  #: includes/event-organiser-register.php:303
2125
  #, php-format
2126
  msgid "every %d months on the"
2127
  msgstr "a cada %d meses no dia"
2128
 
2129
- #: includes/event-organiser-event-functions.php:849
2130
  msgid "every year"
2131
  msgstr "todo ano"
2132
 
2133
- #: includes/event-organiser-event-functions.php:851
2134
  #, php-format
2135
  msgid "every %d years"
2136
  msgstr "a cada %d anos"
@@ -2298,11 +2298,11 @@ msgstr "Horário mensal inválido (ordinal inválido)"
2298
  msgid "Event does not contain any dates."
2299
  msgstr "O evento não contém datas."
2300
 
2301
- #: includes/event.php:1080
2302
  msgid "Occurrence not deleted. Occurrence not found."
2303
  msgstr "Ocorrência não deletada. Ocorrência não encontrada."
2304
 
2305
- #: includes/event.php:1136
2306
  msgid "There is already an occurrence on this date"
2307
  msgstr "Já há uma recorrência nesta data"
2308
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2017-05-20T02:33:43+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr "Incluir 'Adicionar ao Google'"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr "Dia todo"
62
 
252
 
253
  #: classes/class-eo-widget-categories.php:25
254
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
255
+ #: includes/event-organiser-event-functions.php:1569
256
  #: templates/event-meta-event-single.php:62
257
  msgid "Categories"
258
  msgstr "Categorias"
376
  msgstr "Formato 24 horas"
377
 
378
  #: event-organiser-calendar.php:256
379
+ #: includes/event-organiser-event-functions.php:1506
380
  msgid "Loading&#8230;"
381
  msgstr "Carregando&#8230;"
382
 
657
  msgstr "dia da semana"
658
 
659
  #: event-organiser-edit.php:225
660
+ #: includes/event-organiser-event-functions.php:862
661
  #: includes/event-organiser-register.php:307
662
  msgid "until"
663
  msgstr "até"
1687
  msgstr "Escolha entre as tags mais usadas"
1688
 
1689
  #: includes/event-organiser-cpt.php:163
1690
+ #: includes/event-organiser-event-functions.php:1577
1691
  #: templates/event-meta-event-single.php:66
1692
  msgid "Tags"
1693
  msgstr "Tags"
2060
  msgid "Assign the category a colour."
2061
  msgstr "Selecione uma cor para a categoria."
2062
 
2063
+ #: includes/event-organiser-event-functions.php:783
2064
  #: includes/event-organiser-register.php:313
2065
  msgid "last"
2066
  msgstr "último"
2067
 
2068
+ #: includes/event-organiser-event-functions.php:783
2069
  #: includes/event-organiser-register.php:309
2070
  msgid "first"
2071
  msgstr "primeiro"
2072
 
2073
+ #: includes/event-organiser-event-functions.php:783
2074
  #: includes/event-organiser-register.php:310
2075
  msgid "second"
2076
  msgstr "segundo"
2077
 
2078
+ #: includes/event-organiser-event-functions.php:783
2079
  #: includes/event-organiser-register.php:311
2080
  msgid "third"
2081
  msgstr "terceiro"
2082
 
2083
+ #: includes/event-organiser-event-functions.php:783
2084
  #: includes/event-organiser-register.php:312
2085
  msgid "fourth"
2086
  msgstr "quarto"
2087
 
2088
+ #: includes/event-organiser-event-functions.php:793
2089
  msgid "one time only"
2090
  msgstr "apenas uma vez"
2091
 
2092
+ #: includes/event-organiser-event-functions.php:796
2093
  msgid "custom recurrence"
2094
  msgstr "Recorrência Personalizada"
2095
 
2096
+ #: includes/event-organiser-event-functions.php:803
2097
  #: includes/event-organiser-register.php:298
2098
  msgid "every day"
2099
  msgstr "todos os dias"
2100
 
2101
+ #: includes/event-organiser-event-functions.php:805
2102
  #: includes/event-organiser-register.php:299
2103
  #, php-format
2104
  msgid "every %d days"
2105
  msgstr "a cada %d dias"
2106
 
2107
+ #: includes/event-organiser-event-functions.php:811
2108
  #: includes/event-organiser-register.php:300
2109
  msgid "every week on"
2110
  msgstr "toda semana na"
2111
 
2112
+ #: includes/event-organiser-event-functions.php:813
2113
  #: includes/event-organiser-register.php:301
2114
  #, php-format
2115
  msgid "every %d weeks on"
2116
  msgstr "a cada %d semanas na"
2117
 
2118
+ #: includes/event-organiser-event-functions.php:824
2119
  #: includes/event-organiser-register.php:302
2120
  msgid "every month on the"
2121
  msgstr "todo mês no dia"
2122
 
2123
+ #: includes/event-organiser-event-functions.php:826
2124
  #: includes/event-organiser-register.php:303
2125
  #, php-format
2126
  msgid "every %d months on the"
2127
  msgstr "a cada %d meses no dia"
2128
 
2129
+ #: includes/event-organiser-event-functions.php:855
2130
  msgid "every year"
2131
  msgstr "todo ano"
2132
 
2133
+ #: includes/event-organiser-event-functions.php:857
2134
  #, php-format
2135
  msgid "every %d years"
2136
  msgstr "a cada %d anos"
2298
  msgid "Event does not contain any dates."
2299
  msgstr "O evento não contém datas."
2300
 
2301
+ #: includes/event.php:1085
2302
  msgid "Occurrence not deleted. Occurrence not found."
2303
  msgstr "Ocorrência não deletada. Ocorrência não encontrada."
2304
 
2305
+ #: includes/event.php:1141
2306
  msgid "There is already an occurrence on this date"
2307
  msgstr "Já há uma recorrência nesta data"
2308
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2017-04-16T22:56:42+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr "Incluir o link \"Adicionar ao Google\""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr "Todo o dia"
62
 
@@ -251,7 +251,7 @@ msgstr "Categorias de eventos"
251
 
252
  #: classes/class-eo-widget-categories.php:25
253
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
254
- #: includes/event-organiser-event-functions.php:1563
255
  #: templates/event-meta-event-single.php:62
256
  msgid "Categories"
257
  msgstr "Categorias"
@@ -373,7 +373,7 @@ msgid "24 hour time"
373
  msgstr "24 horas tempo"
374
 
375
  #: event-organiser-calendar.php:256
376
- #: includes/event-organiser-event-functions.php:1500
377
  msgid "Loading&#8230;"
378
  msgstr "carregando"
379
 
@@ -643,7 +643,7 @@ msgid "day of week"
643
  msgstr "dia da semana"
644
 
645
  #: event-organiser-edit.php:225
646
- #: includes/event-organiser-event-functions.php:856
647
  #: includes/event-organiser-register.php:307
648
  msgid "until"
649
  msgstr "até"
@@ -1641,7 +1641,7 @@ msgid "Choose from the most used tags"
1641
  msgstr "Escolher entre as tags mais utilizadas"
1642
 
1643
  #: includes/event-organiser-cpt.php:163
1644
- #: includes/event-organiser-event-functions.php:1571
1645
  #: templates/event-meta-event-single.php:66
1646
  msgid "Tags"
1647
  msgstr "Tags"
@@ -2016,77 +2016,77 @@ msgstr "Cor"
2016
  msgid "Assign the category a colour."
2017
  msgstr "Atribuir uma cor á categoria."
2018
 
2019
- #: includes/event-organiser-event-functions.php:777
2020
  #: includes/event-organiser-register.php:313
2021
  msgid "last"
2022
  msgstr "Último "
2023
 
2024
- #: includes/event-organiser-event-functions.php:777
2025
  #: includes/event-organiser-register.php:309
2026
  msgid "first"
2027
  msgstr "Primeiro"
2028
 
2029
- #: includes/event-organiser-event-functions.php:777
2030
  #: includes/event-organiser-register.php:310
2031
  msgid "second"
2032
  msgstr "Segundo"
2033
 
2034
- #: includes/event-organiser-event-functions.php:777
2035
  #: includes/event-organiser-register.php:311
2036
  msgid "third"
2037
  msgstr "Terceiro"
2038
 
2039
- #: includes/event-organiser-event-functions.php:777
2040
  #: includes/event-organiser-register.php:312
2041
  msgid "fourth"
2042
  msgstr "Quarto"
2043
 
2044
- #: includes/event-organiser-event-functions.php:787
2045
  msgid "one time only"
2046
  msgstr "Tempo específico "
2047
 
2048
- #: includes/event-organiser-event-functions.php:790
2049
  msgid "custom recurrence"
2050
  msgstr "Recorrência personalizada "
2051
 
2052
- #: includes/event-organiser-event-functions.php:797
2053
  #: includes/event-organiser-register.php:298
2054
  msgid "every day"
2055
  msgstr "Cada dia"
2056
 
2057
- #: includes/event-organiser-event-functions.php:799
2058
  #: includes/event-organiser-register.php:299
2059
  #, php-format
2060
  msgid "every %d days"
2061
  msgstr "cada %d dias"
2062
 
2063
- #: includes/event-organiser-event-functions.php:805
2064
  #: includes/event-organiser-register.php:300
2065
  msgid "every week on"
2066
  msgstr "cada semana activa"
2067
 
2068
- #: includes/event-organiser-event-functions.php:807
2069
  #: includes/event-organiser-register.php:301
2070
  #, php-format
2071
  msgid "every %d weeks on"
2072
  msgstr "cada %d semanas activas"
2073
 
2074
- #: includes/event-organiser-event-functions.php:818
2075
  #: includes/event-organiser-register.php:302
2076
  msgid "every month on the"
2077
  msgstr "cada mês em que"
2078
 
2079
- #: includes/event-organiser-event-functions.php:820
2080
  #: includes/event-organiser-register.php:303
2081
  #, php-format
2082
  msgid "every %d months on the"
2083
  msgstr "cada %d meses em que"
2084
 
2085
- #: includes/event-organiser-event-functions.php:849
2086
  msgid "every year"
2087
  msgstr "Cada ano"
2088
 
2089
- #: includes/event-organiser-event-functions.php:851
2090
  #, php-format
2091
  msgid "every %d years"
2092
  msgstr "Cada %d anos "
@@ -2242,11 +2242,11 @@ msgstr "Calendário mensal invalidado "
2242
  msgid "Event does not contain any dates."
2243
  msgstr ""
2244
 
2245
- #: includes/event.php:1080
2246
  msgid "Occurrence not deleted. Occurrence not found."
2247
  msgstr ""
2248
 
2249
- #: includes/event.php:1136
2250
  msgid "There is already an occurrence on this date"
2251
  msgstr ""
2252
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2017-04-16T22:56:42+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr "Incluir o link \"Adicionar ao Google\""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr "Todo o dia"
62
 
251
 
252
  #: classes/class-eo-widget-categories.php:25
253
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
254
+ #: includes/event-organiser-event-functions.php:1569
255
  #: templates/event-meta-event-single.php:62
256
  msgid "Categories"
257
  msgstr "Categorias"
373
  msgstr "24 horas tempo"
374
 
375
  #: event-organiser-calendar.php:256
376
+ #: includes/event-organiser-event-functions.php:1506
377
  msgid "Loading&#8230;"
378
  msgstr "carregando"
379
 
643
  msgstr "dia da semana"
644
 
645
  #: event-organiser-edit.php:225
646
+ #: includes/event-organiser-event-functions.php:862
647
  #: includes/event-organiser-register.php:307
648
  msgid "until"
649
  msgstr "até"
1641
  msgstr "Escolher entre as tags mais utilizadas"
1642
 
1643
  #: includes/event-organiser-cpt.php:163
1644
+ #: includes/event-organiser-event-functions.php:1577
1645
  #: templates/event-meta-event-single.php:66
1646
  msgid "Tags"
1647
  msgstr "Tags"
2016
  msgid "Assign the category a colour."
2017
  msgstr "Atribuir uma cor á categoria."
2018
 
2019
+ #: includes/event-organiser-event-functions.php:783
2020
  #: includes/event-organiser-register.php:313
2021
  msgid "last"
2022
  msgstr "Último "
2023
 
2024
+ #: includes/event-organiser-event-functions.php:783
2025
  #: includes/event-organiser-register.php:309
2026
  msgid "first"
2027
  msgstr "Primeiro"
2028
 
2029
+ #: includes/event-organiser-event-functions.php:783
2030
  #: includes/event-organiser-register.php:310
2031
  msgid "second"
2032
  msgstr "Segundo"
2033
 
2034
+ #: includes/event-organiser-event-functions.php:783
2035
  #: includes/event-organiser-register.php:311
2036
  msgid "third"
2037
  msgstr "Terceiro"
2038
 
2039
+ #: includes/event-organiser-event-functions.php:783
2040
  #: includes/event-organiser-register.php:312
2041
  msgid "fourth"
2042
  msgstr "Quarto"
2043
 
2044
+ #: includes/event-organiser-event-functions.php:793
2045
  msgid "one time only"
2046
  msgstr "Tempo específico "
2047
 
2048
+ #: includes/event-organiser-event-functions.php:796
2049
  msgid "custom recurrence"
2050
  msgstr "Recorrência personalizada "
2051
 
2052
+ #: includes/event-organiser-event-functions.php:803
2053
  #: includes/event-organiser-register.php:298
2054
  msgid "every day"
2055
  msgstr "Cada dia"
2056
 
2057
+ #: includes/event-organiser-event-functions.php:805
2058
  #: includes/event-organiser-register.php:299
2059
  #, php-format
2060
  msgid "every %d days"
2061
  msgstr "cada %d dias"
2062
 
2063
+ #: includes/event-organiser-event-functions.php:811
2064
  #: includes/event-organiser-register.php:300
2065
  msgid "every week on"
2066
  msgstr "cada semana activa"
2067
 
2068
+ #: includes/event-organiser-event-functions.php:813
2069
  #: includes/event-organiser-register.php:301
2070
  #, php-format
2071
  msgid "every %d weeks on"
2072
  msgstr "cada %d semanas activas"
2073
 
2074
+ #: includes/event-organiser-event-functions.php:824
2075
  #: includes/event-organiser-register.php:302
2076
  msgid "every month on the"
2077
  msgstr "cada mês em que"
2078
 
2079
+ #: includes/event-organiser-event-functions.php:826
2080
  #: includes/event-organiser-register.php:303
2081
  #, php-format
2082
  msgid "every %d months on the"
2083
  msgstr "cada %d meses em que"
2084
 
2085
+ #: includes/event-organiser-event-functions.php:855
2086
  msgid "every year"
2087
  msgstr "Cada ano"
2088
 
2089
+ #: includes/event-organiser-event-functions.php:857
2090
  #, php-format
2091
  msgid "every %d years"
2092
  msgstr "Cada %d anos "
2242
  msgid "Event does not contain any dates."
2243
  msgstr ""
2244
 
2245
+ #: includes/event.php:1085
2246
  msgid "Occurrence not deleted. Occurrence not found."
2247
  msgstr ""
2248
 
2249
+ #: includes/event.php:1141
2250
  msgid "There is already an occurrence on this date"
2251
  msgstr ""
2252
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:15:34+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -58,7 +58,7 @@ msgid "Include 'Add To Google' link"
58
  msgstr ""
59
 
60
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
61
- #: includes/event-organiser-event-functions.php:1382
62
  msgid "All day"
63
  msgstr "Toată ziua"
64
 
@@ -250,7 +250,7 @@ msgstr ""
250
 
251
  #: classes/class-eo-widget-categories.php:25
252
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
253
- #: includes/event-organiser-event-functions.php:1563
254
  #: templates/event-meta-event-single.php:62
255
  msgid "Categories"
256
  msgstr ""
@@ -372,7 +372,7 @@ msgid "24 hour time"
372
  msgstr ""
373
 
374
  #: event-organiser-calendar.php:256
375
- #: includes/event-organiser-event-functions.php:1500
376
  msgid "Loading&#8230;"
377
  msgstr ""
378
 
@@ -643,7 +643,7 @@ msgid "day of week"
643
  msgstr ""
644
 
645
  #: event-organiser-edit.php:225
646
- #: includes/event-organiser-event-functions.php:856
647
  #: includes/event-organiser-register.php:307
648
  msgid "until"
649
  msgstr ""
@@ -1616,7 +1616,7 @@ msgid "Choose from the most used tags"
1616
  msgstr ""
1617
 
1618
  #: includes/event-organiser-cpt.php:163
1619
- #: includes/event-organiser-event-functions.php:1571
1620
  #: templates/event-meta-event-single.php:66
1621
  msgid "Tags"
1622
  msgstr ""
@@ -1947,77 +1947,77 @@ msgstr "Culoare"
1947
  msgid "Assign the category a colour."
1948
  msgstr ""
1949
 
1950
- #: includes/event-organiser-event-functions.php:777
1951
  #: includes/event-organiser-register.php:313
1952
  msgid "last"
1953
  msgstr "ultimul"
1954
 
1955
- #: includes/event-organiser-event-functions.php:777
1956
  #: includes/event-organiser-register.php:309
1957
  msgid "first"
1958
  msgstr "primul"
1959
 
1960
- #: includes/event-organiser-event-functions.php:777
1961
  #: includes/event-organiser-register.php:310
1962
  msgid "second"
1963
  msgstr ""
1964
 
1965
- #: includes/event-organiser-event-functions.php:777
1966
  #: includes/event-organiser-register.php:311
1967
  msgid "third"
1968
  msgstr ""
1969
 
1970
- #: includes/event-organiser-event-functions.php:777
1971
  #: includes/event-organiser-register.php:312
1972
  msgid "fourth"
1973
  msgstr ""
1974
 
1975
- #: includes/event-organiser-event-functions.php:787
1976
  msgid "one time only"
1977
  msgstr ""
1978
 
1979
- #: includes/event-organiser-event-functions.php:790
1980
  msgid "custom recurrence"
1981
  msgstr ""
1982
 
1983
- #: includes/event-organiser-event-functions.php:797
1984
  #: includes/event-organiser-register.php:298
1985
  msgid "every day"
1986
  msgstr "în fiecare zi"
1987
 
1988
- #: includes/event-organiser-event-functions.php:799
1989
  #: includes/event-organiser-register.php:299
1990
  #, php-format
1991
  msgid "every %d days"
1992
  msgstr ""
1993
 
1994
- #: includes/event-organiser-event-functions.php:805
1995
  #: includes/event-organiser-register.php:300
1996
  msgid "every week on"
1997
  msgstr ""
1998
 
1999
- #: includes/event-organiser-event-functions.php:807
2000
  #: includes/event-organiser-register.php:301
2001
  #, php-format
2002
  msgid "every %d weeks on"
2003
  msgstr ""
2004
 
2005
- #: includes/event-organiser-event-functions.php:818
2006
  #: includes/event-organiser-register.php:302
2007
  msgid "every month on the"
2008
  msgstr ""
2009
 
2010
- #: includes/event-organiser-event-functions.php:820
2011
  #: includes/event-organiser-register.php:303
2012
  #, php-format
2013
  msgid "every %d months on the"
2014
  msgstr ""
2015
 
2016
- #: includes/event-organiser-event-functions.php:849
2017
  msgid "every year"
2018
  msgstr "în fiecare an"
2019
 
2020
- #: includes/event-organiser-event-functions.php:851
2021
  #, php-format
2022
  msgid "every %d years"
2023
  msgstr ""
@@ -2172,11 +2172,11 @@ msgstr ""
2172
  msgid "Event does not contain any dates."
2173
  msgstr ""
2174
 
2175
- #: includes/event.php:1080
2176
  msgid "Occurrence not deleted. Occurrence not found."
2177
  msgstr ""
2178
 
2179
- #: includes/event.php:1136
2180
  msgid "There is already an occurrence on this date"
2181
  msgstr ""
2182
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:15:34+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
58
  msgstr ""
59
 
60
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
61
+ #: includes/event-organiser-event-functions.php:1388
62
  msgid "All day"
63
  msgstr "Toată ziua"
64
 
250
 
251
  #: classes/class-eo-widget-categories.php:25
252
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
253
+ #: includes/event-organiser-event-functions.php:1569
254
  #: templates/event-meta-event-single.php:62
255
  msgid "Categories"
256
  msgstr ""
372
  msgstr ""
373
 
374
  #: event-organiser-calendar.php:256
375
+ #: includes/event-organiser-event-functions.php:1506
376
  msgid "Loading&#8230;"
377
  msgstr ""
378
 
643
  msgstr ""
644
 
645
  #: event-organiser-edit.php:225
646
+ #: includes/event-organiser-event-functions.php:862
647
  #: includes/event-organiser-register.php:307
648
  msgid "until"
649
  msgstr ""
1616
  msgstr ""
1617
 
1618
  #: includes/event-organiser-cpt.php:163
1619
+ #: includes/event-organiser-event-functions.php:1577
1620
  #: templates/event-meta-event-single.php:66
1621
  msgid "Tags"
1622
  msgstr ""
1947
  msgid "Assign the category a colour."
1948
  msgstr ""
1949
 
1950
+ #: includes/event-organiser-event-functions.php:783
1951
  #: includes/event-organiser-register.php:313
1952
  msgid "last"
1953
  msgstr "ultimul"
1954
 
1955
+ #: includes/event-organiser-event-functions.php:783
1956
  #: includes/event-organiser-register.php:309
1957
  msgid "first"
1958
  msgstr "primul"
1959
 
1960
+ #: includes/event-organiser-event-functions.php:783
1961
  #: includes/event-organiser-register.php:310
1962
  msgid "second"
1963
  msgstr ""
1964
 
1965
+ #: includes/event-organiser-event-functions.php:783
1966
  #: includes/event-organiser-register.php:311
1967
  msgid "third"
1968
  msgstr ""
1969
 
1970
+ #: includes/event-organiser-event-functions.php:783
1971
  #: includes/event-organiser-register.php:312
1972
  msgid "fourth"
1973
  msgstr ""
1974
 
1975
+ #: includes/event-organiser-event-functions.php:793
1976
  msgid "one time only"
1977
  msgstr ""
1978
 
1979
+ #: includes/event-organiser-event-functions.php:796
1980
  msgid "custom recurrence"
1981
  msgstr ""
1982
 
1983
+ #: includes/event-organiser-event-functions.php:803
1984
  #: includes/event-organiser-register.php:298
1985
  msgid "every day"
1986
  msgstr "în fiecare zi"
1987
 
1988
+ #: includes/event-organiser-event-functions.php:805
1989
  #: includes/event-organiser-register.php:299
1990
  #, php-format
1991
  msgid "every %d days"
1992
  msgstr ""
1993
 
1994
+ #: includes/event-organiser-event-functions.php:811
1995
  #: includes/event-organiser-register.php:300
1996
  msgid "every week on"
1997
  msgstr ""
1998
 
1999
+ #: includes/event-organiser-event-functions.php:813
2000
  #: includes/event-organiser-register.php:301
2001
  #, php-format
2002
  msgid "every %d weeks on"
2003
  msgstr ""
2004
 
2005
+ #: includes/event-organiser-event-functions.php:824
2006
  #: includes/event-organiser-register.php:302
2007
  msgid "every month on the"
2008
  msgstr ""
2009
 
2010
+ #: includes/event-organiser-event-functions.php:826
2011
  #: includes/event-organiser-register.php:303
2012
  #, php-format
2013
  msgid "every %d months on the"
2014
  msgstr ""
2015
 
2016
+ #: includes/event-organiser-event-functions.php:855
2017
  msgid "every year"
2018
  msgstr "în fiecare an"
2019
 
2020
+ #: includes/event-organiser-event-functions.php:857
2021
  #, php-format
2022
  msgid "every %d years"
2023
  msgstr ""
2172
  msgid "Event does not contain any dates."
2173
  msgstr ""
2174
 
2175
+ #: includes/event.php:1085
2176
  msgid "Occurrence not deleted. Occurrence not found."
2177
  msgstr ""
2178
 
2179
+ #: includes/event.php:1141
2180
  msgid "There is already an occurrence on this date"
2181
  msgstr ""
2182
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2017-04-16T23:29:26+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -57,7 +57,7 @@ msgid "Include 'Add To Google' link"
57
  msgstr "Включить ссылку 'Добавить в Гугл'"
58
 
59
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
60
- #: includes/event-organiser-event-functions.php:1382
61
  msgid "All day"
62
  msgstr "Весь день"
63
 
@@ -254,7 +254,7 @@ msgstr "Категории событий"
254
 
255
  #: classes/class-eo-widget-categories.php:25
256
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
257
- #: includes/event-organiser-event-functions.php:1563
258
  #: templates/event-meta-event-single.php:62
259
  msgid "Categories"
260
  msgstr "Категории"
@@ -378,7 +378,7 @@ msgid "24 hour time"
378
  msgstr "24 часа"
379
 
380
  #: event-organiser-calendar.php:256
381
- #: includes/event-organiser-event-functions.php:1500
382
  msgid "Loading&#8230;"
383
  msgstr "Загрузка&#8230;"
384
 
@@ -649,7 +649,7 @@ msgid "day of week"
649
  msgstr "день недели"
650
 
651
  #: event-organiser-edit.php:225
652
- #: includes/event-organiser-event-functions.php:856
653
  #: includes/event-organiser-register.php:307
654
  msgid "until"
655
  msgstr "до"
@@ -1655,7 +1655,7 @@ msgid "Choose from the most used tags"
1655
  msgstr "Выбрать из наиболее используемых ярлыков"
1656
 
1657
  #: includes/event-organiser-cpt.php:163
1658
- #: includes/event-organiser-event-functions.php:1571
1659
  #: templates/event-meta-event-single.php:66
1660
  msgid "Tags"
1661
  msgstr "Ярлыки"
@@ -2029,77 +2029,77 @@ msgstr "Цвет"
2029
  msgid "Assign the category a colour."
2030
  msgstr "Задать цвет категории."
2031
 
2032
- #: includes/event-organiser-event-functions.php:777
2033
  #: includes/event-organiser-register.php:313
2034
  msgid "last"
2035
  msgstr "последний"
2036
 
2037
- #: includes/event-organiser-event-functions.php:777
2038
  #: includes/event-organiser-register.php:309
2039
  msgid "first"
2040
  msgstr "первый"
2041
 
2042
- #: includes/event-organiser-event-functions.php:777
2043
  #: includes/event-organiser-register.php:310
2044
  msgid "second"
2045
  msgstr "второй"
2046
 
2047
- #: includes/event-organiser-event-functions.php:777
2048
  #: includes/event-organiser-register.php:311
2049
  msgid "third"
2050
  msgstr "третий"
2051
 
2052
- #: includes/event-organiser-event-functions.php:777
2053
  #: includes/event-organiser-register.php:312
2054
  msgid "fourth"
2055
  msgstr "четвёртый"
2056
 
2057
- #: includes/event-organiser-event-functions.php:787
2058
  msgid "one time only"
2059
  msgstr "только один раз"
2060
 
2061
- #: includes/event-organiser-event-functions.php:790
2062
  msgid "custom recurrence"
2063
  msgstr "пользовательское повторение"
2064
 
2065
- #: includes/event-organiser-event-functions.php:797
2066
  #: includes/event-organiser-register.php:298
2067
  msgid "every day"
2068
  msgstr "каждый день"
2069
 
2070
- #: includes/event-organiser-event-functions.php:799
2071
  #: includes/event-organiser-register.php:299
2072
  #, php-format
2073
  msgid "every %d days"
2074
  msgstr "каждые %d дня(ей)"
2075
 
2076
- #: includes/event-organiser-event-functions.php:805
2077
  #: includes/event-organiser-register.php:300
2078
  msgid "every week on"
2079
  msgstr "каждую неделю по"
2080
 
2081
- #: includes/event-organiser-event-functions.php:807
2082
  #: includes/event-organiser-register.php:301
2083
  #, php-format
2084
  msgid "every %d weeks on"
2085
  msgstr "каждые %d недель по"
2086
 
2087
- #: includes/event-organiser-event-functions.php:818
2088
  #: includes/event-organiser-register.php:302
2089
  msgid "every month on the"
2090
  msgstr "каждый месяц"
2091
 
2092
- #: includes/event-organiser-event-functions.php:820
2093
  #: includes/event-organiser-register.php:303
2094
  #, php-format
2095
  msgid "every %d months on the"
2096
  msgstr "каждые %d месяцев"
2097
 
2098
- #: includes/event-organiser-event-functions.php:849
2099
  msgid "every year"
2100
  msgstr "каждый год"
2101
 
2102
- #: includes/event-organiser-event-functions.php:851
2103
  #, php-format
2104
  msgid "every %d years"
2105
  msgstr "каждые %d лет"
@@ -2260,11 +2260,11 @@ msgstr "Неверное месячное расписание (недопуст
2260
  msgid "Event does not contain any dates."
2261
  msgstr "Событие не содержит каких-либо дат."
2262
 
2263
- #: includes/event.php:1080
2264
  msgid "Occurrence not deleted. Occurrence not found."
2265
  msgstr ""
2266
 
2267
- #: includes/event.php:1136
2268
  msgid "There is already an occurrence on this date"
2269
  msgstr ""
2270
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2017-04-16T23:29:26+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
57
  msgstr "Включить ссылку 'Добавить в Гугл'"
58
 
59
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
60
+ #: includes/event-organiser-event-functions.php:1388
61
  msgid "All day"
62
  msgstr "Весь день"
63
 
254
 
255
  #: classes/class-eo-widget-categories.php:25
256
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
257
+ #: includes/event-organiser-event-functions.php:1569
258
  #: templates/event-meta-event-single.php:62
259
  msgid "Categories"
260
  msgstr "Категории"
378
  msgstr "24 часа"
379
 
380
  #: event-organiser-calendar.php:256
381
+ #: includes/event-organiser-event-functions.php:1506
382
  msgid "Loading&#8230;"
383
  msgstr "Загрузка&#8230;"
384
 
649
  msgstr "день недели"
650
 
651
  #: event-organiser-edit.php:225
652
+ #: includes/event-organiser-event-functions.php:862
653
  #: includes/event-organiser-register.php:307
654
  msgid "until"
655
  msgstr "до"
1655
  msgstr "Выбрать из наиболее используемых ярлыков"
1656
 
1657
  #: includes/event-organiser-cpt.php:163
1658
+ #: includes/event-organiser-event-functions.php:1577
1659
  #: templates/event-meta-event-single.php:66
1660
  msgid "Tags"
1661
  msgstr "Ярлыки"
2029
  msgid "Assign the category a colour."
2030
  msgstr "Задать цвет категории."
2031
 
2032
+ #: includes/event-organiser-event-functions.php:783
2033
  #: includes/event-organiser-register.php:313
2034
  msgid "last"
2035
  msgstr "последний"
2036
 
2037
+ #: includes/event-organiser-event-functions.php:783
2038
  #: includes/event-organiser-register.php:309
2039
  msgid "first"
2040
  msgstr "первый"
2041
 
2042
+ #: includes/event-organiser-event-functions.php:783
2043
  #: includes/event-organiser-register.php:310
2044
  msgid "second"
2045
  msgstr "второй"
2046
 
2047
+ #: includes/event-organiser-event-functions.php:783
2048
  #: includes/event-organiser-register.php:311
2049
  msgid "third"
2050
  msgstr "третий"
2051
 
2052
+ #: includes/event-organiser-event-functions.php:783
2053
  #: includes/event-organiser-register.php:312
2054
  msgid "fourth"
2055
  msgstr "четвёртый"
2056
 
2057
+ #: includes/event-organiser-event-functions.php:793
2058
  msgid "one time only"
2059
  msgstr "только один раз"
2060
 
2061
+ #: includes/event-organiser-event-functions.php:796
2062
  msgid "custom recurrence"
2063
  msgstr "пользовательское повторение"
2064
 
2065
+ #: includes/event-organiser-event-functions.php:803
2066
  #: includes/event-organiser-register.php:298
2067
  msgid "every day"
2068
  msgstr "каждый день"
2069
 
2070
+ #: includes/event-organiser-event-functions.php:805
2071
  #: includes/event-organiser-register.php:299
2072
  #, php-format
2073
  msgid "every %d days"
2074
  msgstr "каждые %d дня(ей)"
2075
 
2076
+ #: includes/event-organiser-event-functions.php:811
2077
  #: includes/event-organiser-register.php:300
2078
  msgid "every week on"
2079
  msgstr "каждую неделю по"
2080
 
2081
+ #: includes/event-organiser-event-functions.php:813
2082
  #: includes/event-organiser-register.php:301
2083
  #, php-format
2084
  msgid "every %d weeks on"
2085
  msgstr "каждые %d недель по"
2086
 
2087
+ #: includes/event-organiser-event-functions.php:824
2088
  #: includes/event-organiser-register.php:302
2089
  msgid "every month on the"
2090
  msgstr "каждый месяц"
2091
 
2092
+ #: includes/event-organiser-event-functions.php:826
2093
  #: includes/event-organiser-register.php:303
2094
  #, php-format
2095
  msgid "every %d months on the"
2096
  msgstr "каждые %d месяцев"
2097
 
2098
+ #: includes/event-organiser-event-functions.php:855
2099
  msgid "every year"
2100
  msgstr "каждый год"
2101
 
2102
+ #: includes/event-organiser-event-functions.php:857
2103
  #, php-format
2104
  msgid "every %d years"
2105
  msgstr "каждые %d лет"
2260
  msgid "Event does not contain any dates."
2261
  msgstr "Событие не содержит каких-либо дат."
2262
 
2263
+ #: includes/event.php:1085
2264
  msgid "Occurrence not deleted. Occurrence not found."
2265
  msgstr ""
2266
 
2267
+ #: includes/event.php:1141
2268
  msgid "There is already an occurrence on this date"
2269
  msgstr ""
2270
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:15:26+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -57,7 +57,7 @@ msgid "Include 'Add To Google' link"
57
  msgstr ""
58
 
59
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
60
- #: includes/event-organiser-event-functions.php:1382
61
  msgid "All day"
62
  msgstr ""
63
 
@@ -249,7 +249,7 @@ msgstr ""
249
 
250
  #: classes/class-eo-widget-categories.php:25
251
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
252
- #: includes/event-organiser-event-functions.php:1563
253
  #: templates/event-meta-event-single.php:62
254
  msgid "Categories"
255
  msgstr ""
@@ -371,7 +371,7 @@ msgid "24 hour time"
371
  msgstr ""
372
 
373
  #: event-organiser-calendar.php:256
374
- #: includes/event-organiser-event-functions.php:1500
375
  msgid "Loading&#8230;"
376
  msgstr ""
377
 
@@ -641,7 +641,7 @@ msgid "day of week"
641
  msgstr ""
642
 
643
  #: event-organiser-edit.php:225
644
- #: includes/event-organiser-event-functions.php:856
645
  #: includes/event-organiser-register.php:307
646
  msgid "until"
647
  msgstr ""
@@ -1616,7 +1616,7 @@ msgid "Choose from the most used tags"
1616
  msgstr ""
1617
 
1618
  #: includes/event-organiser-cpt.php:163
1619
- #: includes/event-organiser-event-functions.php:1571
1620
  #: templates/event-meta-event-single.php:66
1621
  msgid "Tags"
1622
  msgstr ""
@@ -1952,78 +1952,78 @@ msgstr "Farba"
1952
  msgid "Assign the category a colour."
1953
  msgstr "Priraďte kategórii farbu."
1954
 
1955
- #: includes/event-organiser-event-functions.php:777
1956
  #: includes/event-organiser-register.php:313
1957
  msgid "last"
1958
  msgstr "posledný"
1959
 
1960
- #: includes/event-organiser-event-functions.php:777
1961
  #: includes/event-organiser-register.php:309
1962
  msgid "first"
1963
  msgstr "prvý"
1964
 
1965
- #: includes/event-organiser-event-functions.php:777
1966
  #: includes/event-organiser-register.php:310
1967
  msgid "second"
1968
  msgstr "druhý"
1969
 
1970
- #: includes/event-organiser-event-functions.php:777
1971
  #: includes/event-organiser-register.php:311
1972
  msgid "third"
1973
  msgstr "tretí"
1974
 
1975
- #: includes/event-organiser-event-functions.php:777
1976
  #: includes/event-organiser-register.php:312
1977
  msgid "fourth"
1978
  msgstr "štvrtý"
1979
 
1980
- #: includes/event-organiser-event-functions.php:787
1981
  msgid "one time only"
1982
  msgstr "iba raz"
1983
 
1984
- #: includes/event-organiser-event-functions.php:790
1985
  #, fuzzy
1986
  msgid "custom recurrence"
1987
  msgstr "úprava opätovného opakovania"
1988
 
1989
- #: includes/event-organiser-event-functions.php:797
1990
  #: includes/event-organiser-register.php:298
1991
  msgid "every day"
1992
  msgstr "každý deň"
1993
 
1994
- #: includes/event-organiser-event-functions.php:799
1995
  #: includes/event-organiser-register.php:299
1996
  #, php-format
1997
  msgid "every %d days"
1998
  msgstr "kažých %d dní"
1999
 
2000
- #: includes/event-organiser-event-functions.php:805
2001
  #: includes/event-organiser-register.php:300
2002
  msgid "every week on"
2003
  msgstr "každý týždeň v"
2004
 
2005
- #: includes/event-organiser-event-functions.php:807
2006
  #: includes/event-organiser-register.php:301
2007
  #, php-format
2008
  msgid "every %d weeks on"
2009
  msgstr "každých %d týždňov v"
2010
 
2011
- #: includes/event-organiser-event-functions.php:818
2012
  #: includes/event-organiser-register.php:302
2013
  msgid "every month on the"
2014
  msgstr "každý mesiac v"
2015
 
2016
- #: includes/event-organiser-event-functions.php:820
2017
  #: includes/event-organiser-register.php:303
2018
  #, php-format
2019
  msgid "every %d months on the"
2020
  msgstr "každých %d mesiacov v"
2021
 
2022
- #: includes/event-organiser-event-functions.php:849
2023
  msgid "every year"
2024
  msgstr "každý rok"
2025
 
2026
- #: includes/event-organiser-event-functions.php:851
2027
  #, php-format
2028
  msgid "every %d years"
2029
  msgstr "každých %d rokov"
@@ -2179,11 +2179,11 @@ msgstr ""
2179
  msgid "Event does not contain any dates."
2180
  msgstr ""
2181
 
2182
- #: includes/event.php:1080
2183
  msgid "Occurrence not deleted. Occurrence not found."
2184
  msgstr ""
2185
 
2186
- #: includes/event.php:1136
2187
  msgid "There is already an occurrence on this date"
2188
  msgstr ""
2189
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:15:26+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
57
  msgstr ""
58
 
59
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
60
+ #: includes/event-organiser-event-functions.php:1388
61
  msgid "All day"
62
  msgstr ""
63
 
249
 
250
  #: classes/class-eo-widget-categories.php:25
251
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
252
+ #: includes/event-organiser-event-functions.php:1569
253
  #: templates/event-meta-event-single.php:62
254
  msgid "Categories"
255
  msgstr ""
371
  msgstr ""
372
 
373
  #: event-organiser-calendar.php:256
374
+ #: includes/event-organiser-event-functions.php:1506
375
  msgid "Loading&#8230;"
376
  msgstr ""
377
 
641
  msgstr ""
642
 
643
  #: event-organiser-edit.php:225
644
+ #: includes/event-organiser-event-functions.php:862
645
  #: includes/event-organiser-register.php:307
646
  msgid "until"
647
  msgstr ""
1616
  msgstr ""
1617
 
1618
  #: includes/event-organiser-cpt.php:163
1619
+ #: includes/event-organiser-event-functions.php:1577
1620
  #: templates/event-meta-event-single.php:66
1621
  msgid "Tags"
1622
  msgstr ""
1952
  msgid "Assign the category a colour."
1953
  msgstr "Priraďte kategórii farbu."
1954
 
1955
+ #: includes/event-organiser-event-functions.php:783
1956
  #: includes/event-organiser-register.php:313
1957
  msgid "last"
1958
  msgstr "posledný"
1959
 
1960
+ #: includes/event-organiser-event-functions.php:783
1961
  #: includes/event-organiser-register.php:309
1962
  msgid "first"
1963
  msgstr "prvý"
1964
 
1965
+ #: includes/event-organiser-event-functions.php:783
1966
  #: includes/event-organiser-register.php:310
1967
  msgid "second"
1968
  msgstr "druhý"
1969
 
1970
+ #: includes/event-organiser-event-functions.php:783
1971
  #: includes/event-organiser-register.php:311
1972
  msgid "third"
1973
  msgstr "tretí"
1974
 
1975
+ #: includes/event-organiser-event-functions.php:783
1976
  #: includes/event-organiser-register.php:312
1977
  msgid "fourth"
1978
  msgstr "štvrtý"
1979
 
1980
+ #: includes/event-organiser-event-functions.php:793
1981
  msgid "one time only"
1982
  msgstr "iba raz"
1983
 
1984
+ #: includes/event-organiser-event-functions.php:796
1985
  #, fuzzy
1986
  msgid "custom recurrence"
1987
  msgstr "úprava opätovného opakovania"
1988
 
1989
+ #: includes/event-organiser-event-functions.php:803
1990
  #: includes/event-organiser-register.php:298
1991
  msgid "every day"
1992
  msgstr "každý deň"
1993
 
1994
+ #: includes/event-organiser-event-functions.php:805
1995
  #: includes/event-organiser-register.php:299
1996
  #, php-format
1997
  msgid "every %d days"
1998
  msgstr "kažých %d dní"
1999
 
2000
+ #: includes/event-organiser-event-functions.php:811
2001
  #: includes/event-organiser-register.php:300
2002
  msgid "every week on"
2003
  msgstr "každý týždeň v"
2004
 
2005
+ #: includes/event-organiser-event-functions.php:813
2006
  #: includes/event-organiser-register.php:301
2007
  #, php-format
2008
  msgid "every %d weeks on"
2009
  msgstr "každých %d týždňov v"
2010
 
2011
+ #: includes/event-organiser-event-functions.php:824
2012
  #: includes/event-organiser-register.php:302
2013
  msgid "every month on the"
2014
  msgstr "každý mesiac v"
2015
 
2016
+ #: includes/event-organiser-event-functions.php:826
2017
  #: includes/event-organiser-register.php:303
2018
  #, php-format
2019
  msgid "every %d months on the"
2020
  msgstr "každých %d mesiacov v"
2021
 
2022
+ #: includes/event-organiser-event-functions.php:855
2023
  msgid "every year"
2024
  msgstr "každý rok"
2025
 
2026
+ #: includes/event-organiser-event-functions.php:857
2027
  #, php-format
2028
  msgid "every %d years"
2029
  msgstr "každých %d rokov"
2179
  msgid "Event does not contain any dates."
2180
  msgstr ""
2181
 
2182
+ #: includes/event.php:1085
2183
  msgid "Occurrence not deleted. Occurrence not found."
2184
  msgstr ""
2185
 
2186
+ #: includes/event.php:1141
2187
  msgid "There is already an occurrence on this date"
2188
  msgstr ""
2189
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2017-06-24T09:29:56+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -57,7 +57,7 @@ msgid "Include 'Add To Google' link"
57
  msgstr ""
58
 
59
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
60
- #: includes/event-organiser-event-functions.php:1382
61
  msgid "All day"
62
  msgstr "Cel dan"
63
 
@@ -249,7 +249,7 @@ msgstr ""
249
 
250
  #: classes/class-eo-widget-categories.php:25
251
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
252
- #: includes/event-organiser-event-functions.php:1563
253
  #: templates/event-meta-event-single.php:62
254
  msgid "Categories"
255
  msgstr "Kategorije"
@@ -371,7 +371,7 @@ msgid "24 hour time"
371
  msgstr ""
372
 
373
  #: event-organiser-calendar.php:256
374
- #: includes/event-organiser-event-functions.php:1500
375
  msgid "Loading&#8230;"
376
  msgstr "Nalaganje..."
377
 
@@ -639,7 +639,7 @@ msgid "day of week"
639
  msgstr "dan tedna"
640
 
641
  #: event-organiser-edit.php:225
642
- #: includes/event-organiser-event-functions.php:856
643
  #: includes/event-organiser-register.php:307
644
  msgid "until"
645
  msgstr "do"
@@ -1613,7 +1613,7 @@ msgid "Choose from the most used tags"
1613
  msgstr "Izberi izmed najbolj uporabljenih oznak"
1614
 
1615
  #: includes/event-organiser-cpt.php:163
1616
- #: includes/event-organiser-event-functions.php:1571
1617
  #: templates/event-meta-event-single.php:66
1618
  msgid "Tags"
1619
  msgstr "Oznake"
@@ -1946,77 +1946,77 @@ msgstr "Barva"
1946
  msgid "Assign the category a colour."
1947
  msgstr "Kategoriji določi barvo."
1948
 
1949
- #: includes/event-organiser-event-functions.php:777
1950
  #: includes/event-organiser-register.php:313
1951
  msgid "last"
1952
  msgstr "zadnji"
1953
 
1954
- #: includes/event-organiser-event-functions.php:777
1955
  #: includes/event-organiser-register.php:309
1956
  msgid "first"
1957
  msgstr "prvi"
1958
 
1959
- #: includes/event-organiser-event-functions.php:777
1960
  #: includes/event-organiser-register.php:310
1961
  msgid "second"
1962
  msgstr "drugi"
1963
 
1964
- #: includes/event-organiser-event-functions.php:777
1965
  #: includes/event-organiser-register.php:311
1966
  msgid "third"
1967
  msgstr "tretji"
1968
 
1969
- #: includes/event-organiser-event-functions.php:777
1970
  #: includes/event-organiser-register.php:312
1971
  msgid "fourth"
1972
  msgstr "četrti"
1973
 
1974
- #: includes/event-organiser-event-functions.php:787
1975
  msgid "one time only"
1976
  msgstr "le enkrat"
1977
 
1978
- #: includes/event-organiser-event-functions.php:790
1979
  msgid "custom recurrence"
1980
  msgstr ""
1981
 
1982
- #: includes/event-organiser-event-functions.php:797
1983
  #: includes/event-organiser-register.php:298
1984
  msgid "every day"
1985
  msgstr "vsak dan"
1986
 
1987
- #: includes/event-organiser-event-functions.php:799
1988
  #: includes/event-organiser-register.php:299
1989
  #, php-format
1990
  msgid "every %d days"
1991
  msgstr ""
1992
 
1993
- #: includes/event-organiser-event-functions.php:805
1994
  #: includes/event-organiser-register.php:300
1995
  msgid "every week on"
1996
  msgstr "vsak teden na"
1997
 
1998
- #: includes/event-organiser-event-functions.php:807
1999
  #: includes/event-organiser-register.php:301
2000
  #, php-format
2001
  msgid "every %d weeks on"
2002
  msgstr ""
2003
 
2004
- #: includes/event-organiser-event-functions.php:818
2005
  #: includes/event-organiser-register.php:302
2006
  msgid "every month on the"
2007
  msgstr "vsak mesec na"
2008
 
2009
- #: includes/event-organiser-event-functions.php:820
2010
  #: includes/event-organiser-register.php:303
2011
  #, php-format
2012
  msgid "every %d months on the"
2013
  msgstr ""
2014
 
2015
- #: includes/event-organiser-event-functions.php:849
2016
  msgid "every year"
2017
  msgstr "vsako leto"
2018
 
2019
- #: includes/event-organiser-event-functions.php:851
2020
  #, php-format
2021
  msgid "every %d years"
2022
  msgstr ""
@@ -2172,11 +2172,11 @@ msgstr ""
2172
  msgid "Event does not contain any dates."
2173
  msgstr "Dogodek ne vsebuje datumov."
2174
 
2175
- #: includes/event.php:1080
2176
  msgid "Occurrence not deleted. Occurrence not found."
2177
  msgstr ""
2178
 
2179
- #: includes/event.php:1136
2180
  msgid "There is already an occurrence on this date"
2181
  msgstr ""
2182
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2017-06-24T09:29:56+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
57
  msgstr ""
58
 
59
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
60
+ #: includes/event-organiser-event-functions.php:1388
61
  msgid "All day"
62
  msgstr "Cel dan"
63
 
249
 
250
  #: classes/class-eo-widget-categories.php:25
251
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
252
+ #: includes/event-organiser-event-functions.php:1569
253
  #: templates/event-meta-event-single.php:62
254
  msgid "Categories"
255
  msgstr "Kategorije"
371
  msgstr ""
372
 
373
  #: event-organiser-calendar.php:256
374
+ #: includes/event-organiser-event-functions.php:1506
375
  msgid "Loading&#8230;"
376
  msgstr "Nalaganje..."
377
 
639
  msgstr "dan tedna"
640
 
641
  #: event-organiser-edit.php:225
642
+ #: includes/event-organiser-event-functions.php:862
643
  #: includes/event-organiser-register.php:307
644
  msgid "until"
645
  msgstr "do"
1613
  msgstr "Izberi izmed najbolj uporabljenih oznak"
1614
 
1615
  #: includes/event-organiser-cpt.php:163
1616
+ #: includes/event-organiser-event-functions.php:1577
1617
  #: templates/event-meta-event-single.php:66
1618
  msgid "Tags"
1619
  msgstr "Oznake"
1946
  msgid "Assign the category a colour."
1947
  msgstr "Kategoriji določi barvo."
1948
 
1949
+ #: includes/event-organiser-event-functions.php:783
1950
  #: includes/event-organiser-register.php:313
1951
  msgid "last"
1952
  msgstr "zadnji"
1953
 
1954
+ #: includes/event-organiser-event-functions.php:783
1955
  #: includes/event-organiser-register.php:309
1956
  msgid "first"
1957
  msgstr "prvi"
1958
 
1959
+ #: includes/event-organiser-event-functions.php:783
1960
  #: includes/event-organiser-register.php:310
1961
  msgid "second"
1962
  msgstr "drugi"
1963
 
1964
+ #: includes/event-organiser-event-functions.php:783
1965
  #: includes/event-organiser-register.php:311
1966
  msgid "third"
1967
  msgstr "tretji"
1968
 
1969
+ #: includes/event-organiser-event-functions.php:783
1970
  #: includes/event-organiser-register.php:312
1971
  msgid "fourth"
1972
  msgstr "četrti"
1973
 
1974
+ #: includes/event-organiser-event-functions.php:793
1975
  msgid "one time only"
1976
  msgstr "le enkrat"
1977
 
1978
+ #: includes/event-organiser-event-functions.php:796
1979
  msgid "custom recurrence"
1980
  msgstr ""
1981
 
1982
+ #: includes/event-organiser-event-functions.php:803
1983
  #: includes/event-organiser-register.php:298
1984
  msgid "every day"
1985
  msgstr "vsak dan"
1986
 
1987
+ #: includes/event-organiser-event-functions.php:805
1988
  #: includes/event-organiser-register.php:299
1989
  #, php-format
1990
  msgid "every %d days"
1991
  msgstr ""
1992
 
1993
+ #: includes/event-organiser-event-functions.php:811
1994
  #: includes/event-organiser-register.php:300
1995
  msgid "every week on"
1996
  msgstr "vsak teden na"
1997
 
1998
+ #: includes/event-organiser-event-functions.php:813
1999
  #: includes/event-organiser-register.php:301
2000
  #, php-format
2001
  msgid "every %d weeks on"
2002
  msgstr ""
2003
 
2004
+ #: includes/event-organiser-event-functions.php:824
2005
  #: includes/event-organiser-register.php:302
2006
  msgid "every month on the"
2007
  msgstr "vsak mesec na"
2008
 
2009
+ #: includes/event-organiser-event-functions.php:826
2010
  #: includes/event-organiser-register.php:303
2011
  #, php-format
2012
  msgid "every %d months on the"
2013
  msgstr ""
2014
 
2015
+ #: includes/event-organiser-event-functions.php:855
2016
  msgid "every year"
2017
  msgstr "vsako leto"
2018
 
2019
+ #: includes/event-organiser-event-functions.php:857
2020
  #, php-format
2021
  msgid "every %d years"
2022
  msgstr ""
2172
  msgid "Event does not contain any dates."
2173
  msgstr "Dogodek ne vsebuje datumov."
2174
 
2175
+ #: includes/event.php:1085
2176
  msgid "Occurrence not deleted. Occurrence not found."
2177
  msgstr ""
2178
 
2179
+ #: includes/event.php:1141
2180
  msgid "There is already an occurrence on this date"
2181
  msgstr ""
2182
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2017-07-05T19:32:07+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr "Inkludera 'Add To Google'-länk"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr "Hela dagen"
62
 
@@ -251,7 +251,7 @@ msgstr "Evenemangskategorier"
251
 
252
  #: classes/class-eo-widget-categories.php:25
253
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
254
- #: includes/event-organiser-event-functions.php:1563
255
  #: templates/event-meta-event-single.php:62
256
  msgid "Categories"
257
  msgstr "Kategorier"
@@ -375,7 +375,7 @@ msgid "24 hour time"
375
  msgstr "24-timmars tid"
376
 
377
  #: event-organiser-calendar.php:256
378
- #: includes/event-organiser-event-functions.php:1500
379
  msgid "Loading&#8230;"
380
  msgstr "Laddar&#8230;"
381
 
@@ -653,7 +653,7 @@ msgid "day of week"
653
  msgstr "dag i veckan"
654
 
655
  #: event-organiser-edit.php:225
656
- #: includes/event-organiser-event-functions.php:856
657
  #: includes/event-organiser-register.php:307
658
  msgid "until"
659
  msgstr "tills"
@@ -1680,7 +1680,7 @@ msgid "Choose from the most used tags"
1680
  msgstr "Välj bland de vanligaste etiketterna"
1681
 
1682
  #: includes/event-organiser-cpt.php:163
1683
- #: includes/event-organiser-event-functions.php:1571
1684
  #: templates/event-meta-event-single.php:66
1685
  msgid "Tags"
1686
  msgstr "Etiketter"
@@ -2056,77 +2056,77 @@ msgstr "Färg"
2056
  msgid "Assign the category a colour."
2057
  msgstr "Ge kategorin en färg"
2058
 
2059
- #: includes/event-organiser-event-functions.php:777
2060
  #: includes/event-organiser-register.php:313
2061
  msgid "last"
2062
  msgstr "sista"
2063
 
2064
- #: includes/event-organiser-event-functions.php:777
2065
  #: includes/event-organiser-register.php:309
2066
  msgid "first"
2067
  msgstr "första"
2068
 
2069
- #: includes/event-organiser-event-functions.php:777
2070
  #: includes/event-organiser-register.php:310
2071
  msgid "second"
2072
  msgstr "andra"
2073
 
2074
- #: includes/event-organiser-event-functions.php:777
2075
  #: includes/event-organiser-register.php:311
2076
  msgid "third"
2077
  msgstr "tredje"
2078
 
2079
- #: includes/event-organiser-event-functions.php:777
2080
  #: includes/event-organiser-register.php:312
2081
  msgid "fourth"
2082
  msgstr "fjärde"
2083
 
2084
- #: includes/event-organiser-event-functions.php:787
2085
  msgid "one time only"
2086
  msgstr "endast en gång"
2087
 
2088
- #: includes/event-organiser-event-functions.php:790
2089
  msgid "custom recurrence"
2090
  msgstr "Anpassad upprepning"
2091
 
2092
- #: includes/event-organiser-event-functions.php:797
2093
  #: includes/event-organiser-register.php:298
2094
  msgid "every day"
2095
  msgstr "varje dag"
2096
 
2097
- #: includes/event-organiser-event-functions.php:799
2098
  #: includes/event-organiser-register.php:299
2099
  #, php-format
2100
  msgid "every %d days"
2101
  msgstr "var %d dag"
2102
 
2103
- #: includes/event-organiser-event-functions.php:805
2104
  #: includes/event-organiser-register.php:300
2105
  msgid "every week on"
2106
  msgstr "varje vecka på"
2107
 
2108
- #: includes/event-organiser-event-functions.php:807
2109
  #: includes/event-organiser-register.php:301
2110
  #, php-format
2111
  msgid "every %d weeks on"
2112
  msgstr "var %d vecka på"
2113
 
2114
- #: includes/event-organiser-event-functions.php:818
2115
  #: includes/event-organiser-register.php:302
2116
  msgid "every month on the"
2117
  msgstr "varje månade den"
2118
 
2119
- #: includes/event-organiser-event-functions.php:820
2120
  #: includes/event-organiser-register.php:303
2121
  #, php-format
2122
  msgid "every %d months on the"
2123
  msgstr "var %d månad den"
2124
 
2125
- #: includes/event-organiser-event-functions.php:849
2126
  msgid "every year"
2127
  msgstr "varje år"
2128
 
2129
- #: includes/event-organiser-event-functions.php:851
2130
  #, php-format
2131
  msgid "every %d years"
2132
  msgstr "var %d år"
@@ -2292,11 +2292,11 @@ msgstr "Ogiltigt månadsschema (ogiltigt ordningstal)"
2292
  msgid "Event does not contain any dates."
2293
  msgstr "Evenemanget innehåller inget datum"
2294
 
2295
- #: includes/event.php:1080
2296
  msgid "Occurrence not deleted. Occurrence not found."
2297
  msgstr "Händelsen är inte raderas. Händelsen hittades inte."
2298
 
2299
- #: includes/event.php:1136
2300
  msgid "There is already an occurrence on this date"
2301
  msgstr "Det finns redan återkommande detta datum"
2302
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2017-07-05T19:32:07+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr "Inkludera 'Add To Google'-länk"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr "Hela dagen"
62
 
251
 
252
  #: classes/class-eo-widget-categories.php:25
253
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
254
+ #: includes/event-organiser-event-functions.php:1569
255
  #: templates/event-meta-event-single.php:62
256
  msgid "Categories"
257
  msgstr "Kategorier"
375
  msgstr "24-timmars tid"
376
 
377
  #: event-organiser-calendar.php:256
378
+ #: includes/event-organiser-event-functions.php:1506
379
  msgid "Loading&#8230;"
380
  msgstr "Laddar&#8230;"
381
 
653
  msgstr "dag i veckan"
654
 
655
  #: event-organiser-edit.php:225
656
+ #: includes/event-organiser-event-functions.php:862
657
  #: includes/event-organiser-register.php:307
658
  msgid "until"
659
  msgstr "tills"
1680
  msgstr "Välj bland de vanligaste etiketterna"
1681
 
1682
  #: includes/event-organiser-cpt.php:163
1683
+ #: includes/event-organiser-event-functions.php:1577
1684
  #: templates/event-meta-event-single.php:66
1685
  msgid "Tags"
1686
  msgstr "Etiketter"
2056
  msgid "Assign the category a colour."
2057
  msgstr "Ge kategorin en färg"
2058
 
2059
+ #: includes/event-organiser-event-functions.php:783
2060
  #: includes/event-organiser-register.php:313
2061
  msgid "last"
2062
  msgstr "sista"
2063
 
2064
+ #: includes/event-organiser-event-functions.php:783
2065
  #: includes/event-organiser-register.php:309
2066
  msgid "first"
2067
  msgstr "första"
2068
 
2069
+ #: includes/event-organiser-event-functions.php:783
2070
  #: includes/event-organiser-register.php:310
2071
  msgid "second"
2072
  msgstr "andra"
2073
 
2074
+ #: includes/event-organiser-event-functions.php:783
2075
  #: includes/event-organiser-register.php:311
2076
  msgid "third"
2077
  msgstr "tredje"
2078
 
2079
+ #: includes/event-organiser-event-functions.php:783
2080
  #: includes/event-organiser-register.php:312
2081
  msgid "fourth"
2082
  msgstr "fjärde"
2083
 
2084
+ #: includes/event-organiser-event-functions.php:793
2085
  msgid "one time only"
2086
  msgstr "endast en gång"
2087
 
2088
+ #: includes/event-organiser-event-functions.php:796
2089
  msgid "custom recurrence"
2090
  msgstr "Anpassad upprepning"
2091
 
2092
+ #: includes/event-organiser-event-functions.php:803
2093
  #: includes/event-organiser-register.php:298
2094
  msgid "every day"
2095
  msgstr "varje dag"
2096
 
2097
+ #: includes/event-organiser-event-functions.php:805
2098
  #: includes/event-organiser-register.php:299
2099
  #, php-format
2100
  msgid "every %d days"
2101
  msgstr "var %d dag"
2102
 
2103
+ #: includes/event-organiser-event-functions.php:811
2104
  #: includes/event-organiser-register.php:300
2105
  msgid "every week on"
2106
  msgstr "varje vecka på"
2107
 
2108
+ #: includes/event-organiser-event-functions.php:813
2109
  #: includes/event-organiser-register.php:301
2110
  #, php-format
2111
  msgid "every %d weeks on"
2112
  msgstr "var %d vecka på"
2113
 
2114
+ #: includes/event-organiser-event-functions.php:824
2115
  #: includes/event-organiser-register.php:302
2116
  msgid "every month on the"
2117
  msgstr "varje månade den"
2118
 
2119
+ #: includes/event-organiser-event-functions.php:826
2120
  #: includes/event-organiser-register.php:303
2121
  #, php-format
2122
  msgid "every %d months on the"
2123
  msgstr "var %d månad den"
2124
 
2125
+ #: includes/event-organiser-event-functions.php:855
2126
  msgid "every year"
2127
  msgstr "varje år"
2128
 
2129
+ #: includes/event-organiser-event-functions.php:857
2130
  #, php-format
2131
  msgid "every %d years"
2132
  msgstr "var %d år"
2292
  msgid "Event does not contain any dates."
2293
  msgstr "Evenemanget innehåller inget datum"
2294
 
2295
+ #: includes/event.php:1085
2296
  msgid "Occurrence not deleted. Occurrence not found."
2297
  msgstr "Händelsen är inte raderas. Händelsen hittades inte."
2298
 
2299
+ #: includes/event.php:1141
2300
  msgid "There is already an occurrence on this date"
2301
  msgstr "Det finns redan återkommande detta datum"
2302
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:15:15+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr ""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr "ทั้งวัน"
62
 
@@ -248,7 +248,7 @@ msgstr "หมวดหมู่กิจกรรม"
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
- #: includes/event-organiser-event-functions.php:1563
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr "หมวดหมู่"
@@ -370,7 +370,7 @@ msgid "24 hour time"
370
  msgstr "เวลา 24 ชั่วโมง"
371
 
372
  #: event-organiser-calendar.php:256
373
- #: includes/event-organiser-event-functions.php:1500
374
  msgid "Loading&#8230;"
375
  msgstr "กำลังโหลด..."
376
 
@@ -638,7 +638,7 @@ msgid "day of week"
638
  msgstr "วันในหนึ่งสัปดาห์"
639
 
640
  #: event-organiser-edit.php:225
641
- #: includes/event-organiser-event-functions.php:856
642
  #: includes/event-organiser-register.php:307
643
  msgid "until"
644
  msgstr "จนถึง"
@@ -1611,7 +1611,7 @@ msgid "Choose from the most used tags"
1611
  msgstr "เลือกจากป้ายกำกับที่ใช้บ่อยที่สุด"
1612
 
1613
  #: includes/event-organiser-cpt.php:163
1614
- #: includes/event-organiser-event-functions.php:1571
1615
  #: templates/event-meta-event-single.php:66
1616
  msgid "Tags"
1617
  msgstr "ป้ายกำกับ"
@@ -1942,77 +1942,77 @@ msgstr "สี"
1942
  msgid "Assign the category a colour."
1943
  msgstr "สั่งงานให้หมวดหมู่แสดงเป็นสี"
1944
 
1945
- #: includes/event-organiser-event-functions.php:777
1946
  #: includes/event-organiser-register.php:313
1947
  msgid "last"
1948
  msgstr "อันดับสุดท้าย"
1949
 
1950
- #: includes/event-organiser-event-functions.php:777
1951
  #: includes/event-organiser-register.php:309
1952
  msgid "first"
1953
  msgstr "อันดับแรก"
1954
 
1955
- #: includes/event-organiser-event-functions.php:777
1956
  #: includes/event-organiser-register.php:310
1957
  msgid "second"
1958
  msgstr "อันดับสอง"
1959
 
1960
- #: includes/event-organiser-event-functions.php:777
1961
  #: includes/event-organiser-register.php:311
1962
  msgid "third"
1963
  msgstr "อันดับสาม"
1964
 
1965
- #: includes/event-organiser-event-functions.php:777
1966
  #: includes/event-organiser-register.php:312
1967
  msgid "fourth"
1968
  msgstr "อันดับสี่"
1969
 
1970
- #: includes/event-organiser-event-functions.php:787
1971
  msgid "one time only"
1972
  msgstr "ครั้งเดียวเท่านั้น"
1973
 
1974
- #: includes/event-organiser-event-functions.php:790
1975
  msgid "custom recurrence"
1976
  msgstr ""
1977
 
1978
- #: includes/event-organiser-event-functions.php:797
1979
  #: includes/event-organiser-register.php:298
1980
  msgid "every day"
1981
  msgstr "ทุกวัน"
1982
 
1983
- #: includes/event-organiser-event-functions.php:799
1984
  #: includes/event-organiser-register.php:299
1985
  #, php-format
1986
  msgid "every %d days"
1987
  msgstr ""
1988
 
1989
- #: includes/event-organiser-event-functions.php:805
1990
  #: includes/event-organiser-register.php:300
1991
  msgid "every week on"
1992
  msgstr ""
1993
 
1994
- #: includes/event-organiser-event-functions.php:807
1995
  #: includes/event-organiser-register.php:301
1996
  #, php-format
1997
  msgid "every %d weeks on"
1998
  msgstr ""
1999
 
2000
- #: includes/event-organiser-event-functions.php:818
2001
  #: includes/event-organiser-register.php:302
2002
  msgid "every month on the"
2003
  msgstr ""
2004
 
2005
- #: includes/event-organiser-event-functions.php:820
2006
  #: includes/event-organiser-register.php:303
2007
  #, php-format
2008
  msgid "every %d months on the"
2009
  msgstr ""
2010
 
2011
- #: includes/event-organiser-event-functions.php:849
2012
  msgid "every year"
2013
  msgstr "ทุกๆปี"
2014
 
2015
- #: includes/event-organiser-event-functions.php:851
2016
  #, php-format
2017
  msgid "every %d years"
2018
  msgstr ""
@@ -2168,11 +2168,11 @@ msgstr ""
2168
  msgid "Event does not contain any dates."
2169
  msgstr ""
2170
 
2171
- #: includes/event.php:1080
2172
  msgid "Occurrence not deleted. Occurrence not found."
2173
  msgstr ""
2174
 
2175
- #: includes/event.php:1136
2176
  msgid "There is already an occurrence on this date"
2177
  msgstr ""
2178
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:15:15+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr ""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr "ทั้งวัน"
62
 
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
+ #: includes/event-organiser-event-functions.php:1569
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr "หมวดหมู่"
370
  msgstr "เวลา 24 ชั่วโมง"
371
 
372
  #: event-organiser-calendar.php:256
373
+ #: includes/event-organiser-event-functions.php:1506
374
  msgid "Loading&#8230;"
375
  msgstr "กำลังโหลด..."
376
 
638
  msgstr "วันในหนึ่งสัปดาห์"
639
 
640
  #: event-organiser-edit.php:225
641
+ #: includes/event-organiser-event-functions.php:862
642
  #: includes/event-organiser-register.php:307
643
  msgid "until"
644
  msgstr "จนถึง"
1611
  msgstr "เลือกจากป้ายกำกับที่ใช้บ่อยที่สุด"
1612
 
1613
  #: includes/event-organiser-cpt.php:163
1614
+ #: includes/event-organiser-event-functions.php:1577
1615
  #: templates/event-meta-event-single.php:66
1616
  msgid "Tags"
1617
  msgstr "ป้ายกำกับ"
1942
  msgid "Assign the category a colour."
1943
  msgstr "สั่งงานให้หมวดหมู่แสดงเป็นสี"
1944
 
1945
+ #: includes/event-organiser-event-functions.php:783
1946
  #: includes/event-organiser-register.php:313
1947
  msgid "last"
1948
  msgstr "อันดับสุดท้าย"
1949
 
1950
+ #: includes/event-organiser-event-functions.php:783
1951
  #: includes/event-organiser-register.php:309
1952
  msgid "first"
1953
  msgstr "อันดับแรก"
1954
 
1955
+ #: includes/event-organiser-event-functions.php:783
1956
  #: includes/event-organiser-register.php:310
1957
  msgid "second"
1958
  msgstr "อันดับสอง"
1959
 
1960
+ #: includes/event-organiser-event-functions.php:783
1961
  #: includes/event-organiser-register.php:311
1962
  msgid "third"
1963
  msgstr "อันดับสาม"
1964
 
1965
+ #: includes/event-organiser-event-functions.php:783
1966
  #: includes/event-organiser-register.php:312
1967
  msgid "fourth"
1968
  msgstr "อันดับสี่"
1969
 
1970
+ #: includes/event-organiser-event-functions.php:793
1971
  msgid "one time only"
1972
  msgstr "ครั้งเดียวเท่านั้น"
1973
 
1974
+ #: includes/event-organiser-event-functions.php:796
1975
  msgid "custom recurrence"
1976
  msgstr ""
1977
 
1978
+ #: includes/event-organiser-event-functions.php:803
1979
  #: includes/event-organiser-register.php:298
1980
  msgid "every day"
1981
  msgstr "ทุกวัน"
1982
 
1983
+ #: includes/event-organiser-event-functions.php:805
1984
  #: includes/event-organiser-register.php:299
1985
  #, php-format
1986
  msgid "every %d days"
1987
  msgstr ""
1988
 
1989
+ #: includes/event-organiser-event-functions.php:811
1990
  #: includes/event-organiser-register.php:300
1991
  msgid "every week on"
1992
  msgstr ""
1993
 
1994
+ #: includes/event-organiser-event-functions.php:813
1995
  #: includes/event-organiser-register.php:301
1996
  #, php-format
1997
  msgid "every %d weeks on"
1998
  msgstr ""
1999
 
2000
+ #: includes/event-organiser-event-functions.php:824
2001
  #: includes/event-organiser-register.php:302
2002
  msgid "every month on the"
2003
  msgstr ""
2004
 
2005
+ #: includes/event-organiser-event-functions.php:826
2006
  #: includes/event-organiser-register.php:303
2007
  #, php-format
2008
  msgid "every %d months on the"
2009
  msgstr ""
2010
 
2011
+ #: includes/event-organiser-event-functions.php:855
2012
  msgid "every year"
2013
  msgstr "ทุกๆปี"
2014
 
2015
+ #: includes/event-organiser-event-functions.php:857
2016
  #, php-format
2017
  msgid "every %d years"
2018
  msgstr ""
2168
  msgid "Event does not contain any dates."
2169
  msgstr ""
2170
 
2171
+ #: includes/event.php:1085
2172
  msgid "Occurrence not deleted. Occurrence not found."
2173
  msgstr ""
2174
 
2175
+ #: includes/event.php:1141
2176
  msgid "There is already an occurrence on this date"
2177
  msgstr ""
2178
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2017-04-16T22:55:14+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr "\"Google'a ekle\" bağlantısı içersin"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr "Tüm gün"
62
 
@@ -252,7 +252,7 @@ msgstr "Etkinlik Kategorileri"
252
 
253
  #: classes/class-eo-widget-categories.php:25
254
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
255
- #: includes/event-organiser-event-functions.php:1563
256
  #: templates/event-meta-event-single.php:62
257
  msgid "Categories"
258
  msgstr "Kategori"
@@ -374,7 +374,7 @@ msgid "24 hour time"
374
  msgstr ""
375
 
376
  #: event-organiser-calendar.php:256
377
- #: includes/event-organiser-event-functions.php:1500
378
  msgid "Loading&#8230;"
379
  msgstr "Yükleniyor..."
380
 
@@ -647,7 +647,7 @@ msgid "day of week"
647
  msgstr "haftanın günü"
648
 
649
  #: event-organiser-edit.php:225
650
- #: includes/event-organiser-event-functions.php:856
651
  #: includes/event-organiser-register.php:307
652
  msgid "until"
653
  msgstr ""
@@ -1631,7 +1631,7 @@ msgid "Choose from the most used tags"
1631
  msgstr ""
1632
 
1633
  #: includes/event-organiser-cpt.php:163
1634
- #: includes/event-organiser-event-functions.php:1571
1635
  #: templates/event-meta-event-single.php:66
1636
  msgid "Tags"
1637
  msgstr "Etiketler"
@@ -1984,78 +1984,78 @@ msgstr "Renk"
1984
  msgid "Assign the category a colour."
1985
  msgstr "Bir kategori rengi tayin edin"
1986
 
1987
- #: includes/event-organiser-event-functions.php:777
1988
  #: includes/event-organiser-register.php:313
1989
  msgid "last"
1990
  msgstr "son"
1991
 
1992
- #: includes/event-organiser-event-functions.php:777
1993
  #: includes/event-organiser-register.php:309
1994
  msgid "first"
1995
  msgstr "ilk"
1996
 
1997
- #: includes/event-organiser-event-functions.php:777
1998
  #: includes/event-organiser-register.php:310
1999
  msgid "second"
2000
  msgstr "ikinci"
2001
 
2002
- #: includes/event-organiser-event-functions.php:777
2003
  #: includes/event-organiser-register.php:311
2004
  msgid "third"
2005
  msgstr "üçüncü"
2006
 
2007
- #: includes/event-organiser-event-functions.php:777
2008
  #: includes/event-organiser-register.php:312
2009
  msgid "fourth"
2010
  msgstr "dördüncü"
2011
 
2012
- #: includes/event-organiser-event-functions.php:787
2013
  msgid "one time only"
2014
  msgstr "sadece bir defa"
2015
 
2016
- #: includes/event-organiser-event-functions.php:790
2017
  #, fuzzy
2018
  msgid "custom recurrence"
2019
  msgstr "özel tekrar"
2020
 
2021
- #: includes/event-organiser-event-functions.php:797
2022
  #: includes/event-organiser-register.php:298
2023
  msgid "every day"
2024
  msgstr "hergün"
2025
 
2026
- #: includes/event-organiser-event-functions.php:799
2027
  #: includes/event-organiser-register.php:299
2028
  #, php-format
2029
  msgid "every %d days"
2030
  msgstr "her %d günde"
2031
 
2032
- #: includes/event-organiser-event-functions.php:805
2033
  #: includes/event-organiser-register.php:300
2034
  msgid "every week on"
2035
  msgstr "her hafta"
2036
 
2037
- #: includes/event-organiser-event-functions.php:807
2038
  #: includes/event-organiser-register.php:301
2039
  #, php-format
2040
  msgid "every %d weeks on"
2041
  msgstr "her %d haftada"
2042
 
2043
- #: includes/event-organiser-event-functions.php:818
2044
  #: includes/event-organiser-register.php:302
2045
  msgid "every month on the"
2046
  msgstr "her ay"
2047
 
2048
- #: includes/event-organiser-event-functions.php:820
2049
  #: includes/event-organiser-register.php:303
2050
  #, php-format
2051
  msgid "every %d months on the"
2052
  msgstr "her %d ayında"
2053
 
2054
- #: includes/event-organiser-event-functions.php:849
2055
  msgid "every year"
2056
  msgstr "her yıl"
2057
 
2058
- #: includes/event-organiser-event-functions.php:851
2059
  #, php-format
2060
  msgid "every %d years"
2061
  msgstr "her %d yıl"
@@ -2211,11 +2211,11 @@ msgstr ""
2211
  msgid "Event does not contain any dates."
2212
  msgstr "Etkinlik tarih içermiyor."
2213
 
2214
- #: includes/event.php:1080
2215
  msgid "Occurrence not deleted. Occurrence not found."
2216
  msgstr ""
2217
 
2218
- #: includes/event.php:1136
2219
  msgid "There is already an occurrence on this date"
2220
  msgstr "Bu tarihte zaten bir tekrar var"
2221
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2017-04-16T22:55:14+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr "\"Google'a ekle\" bağlantısı içersin"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr "Tüm gün"
62
 
252
 
253
  #: classes/class-eo-widget-categories.php:25
254
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
255
+ #: includes/event-organiser-event-functions.php:1569
256
  #: templates/event-meta-event-single.php:62
257
  msgid "Categories"
258
  msgstr "Kategori"
374
  msgstr ""
375
 
376
  #: event-organiser-calendar.php:256
377
+ #: includes/event-organiser-event-functions.php:1506
378
  msgid "Loading&#8230;"
379
  msgstr "Yükleniyor..."
380
 
647
  msgstr "haftanın günü"
648
 
649
  #: event-organiser-edit.php:225
650
+ #: includes/event-organiser-event-functions.php:862
651
  #: includes/event-organiser-register.php:307
652
  msgid "until"
653
  msgstr ""
1631
  msgstr ""
1632
 
1633
  #: includes/event-organiser-cpt.php:163
1634
+ #: includes/event-organiser-event-functions.php:1577
1635
  #: templates/event-meta-event-single.php:66
1636
  msgid "Tags"
1637
  msgstr "Etiketler"
1984
  msgid "Assign the category a colour."
1985
  msgstr "Bir kategori rengi tayin edin"
1986
 
1987
+ #: includes/event-organiser-event-functions.php:783
1988
  #: includes/event-organiser-register.php:313
1989
  msgid "last"
1990
  msgstr "son"
1991
 
1992
+ #: includes/event-organiser-event-functions.php:783
1993
  #: includes/event-organiser-register.php:309
1994
  msgid "first"
1995
  msgstr "ilk"
1996
 
1997
+ #: includes/event-organiser-event-functions.php:783
1998
  #: includes/event-organiser-register.php:310
1999
  msgid "second"
2000
  msgstr "ikinci"
2001
 
2002
+ #: includes/event-organiser-event-functions.php:783
2003
  #: includes/event-organiser-register.php:311
2004
  msgid "third"
2005
  msgstr "üçüncü"
2006
 
2007
+ #: includes/event-organiser-event-functions.php:783
2008
  #: includes/event-organiser-register.php:312
2009
  msgid "fourth"
2010
  msgstr "dördüncü"
2011
 
2012
+ #: includes/event-organiser-event-functions.php:793
2013
  msgid "one time only"
2014
  msgstr "sadece bir defa"
2015
 
2016
+ #: includes/event-organiser-event-functions.php:796
2017
  #, fuzzy
2018
  msgid "custom recurrence"
2019
  msgstr "özel tekrar"
2020
 
2021
+ #: includes/event-organiser-event-functions.php:803
2022
  #: includes/event-organiser-register.php:298
2023
  msgid "every day"
2024
  msgstr "hergün"
2025
 
2026
+ #: includes/event-organiser-event-functions.php:805
2027
  #: includes/event-organiser-register.php:299
2028
  #, php-format
2029
  msgid "every %d days"
2030
  msgstr "her %d günde"
2031
 
2032
+ #: includes/event-organiser-event-functions.php:811
2033
  #: includes/event-organiser-register.php:300
2034
  msgid "every week on"
2035
  msgstr "her hafta"
2036
 
2037
+ #: includes/event-organiser-event-functions.php:813
2038
  #: includes/event-organiser-register.php:301
2039
  #, php-format
2040
  msgid "every %d weeks on"
2041
  msgstr "her %d haftada"
2042
 
2043
+ #: includes/event-organiser-event-functions.php:824
2044
  #: includes/event-organiser-register.php:302
2045
  msgid "every month on the"
2046
  msgstr "her ay"
2047
 
2048
+ #: includes/event-organiser-event-functions.php:826
2049
  #: includes/event-organiser-register.php:303
2050
  #, php-format
2051
  msgid "every %d months on the"
2052
  msgstr "her %d ayında"
2053
 
2054
+ #: includes/event-organiser-event-functions.php:855
2055
  msgid "every year"
2056
  msgstr "her yıl"
2057
 
2058
+ #: includes/event-organiser-event-functions.php:857
2059
  #, php-format
2060
  msgid "every %d years"
2061
  msgstr "her %d yıl"
2211
  msgid "Event does not contain any dates."
2212
  msgstr "Etkinlik tarih içermiyor."
2213
 
2214
+ #: includes/event.php:1085
2215
  msgid "Occurrence not deleted. Occurrence not found."
2216
  msgstr ""
2217
 
2218
+ #: includes/event.php:1141
2219
  msgid "There is already an occurrence on this date"
2220
  msgstr "Bu tarihte zaten bir tekrar var"
2221
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:15:05+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -57,7 +57,7 @@ msgid "Include 'Add To Google' link"
57
  msgstr "Включити посилання \"Додати до Google\""
58
 
59
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
60
- #: includes/event-organiser-event-functions.php:1382
61
  msgid "All day"
62
  msgstr "Цілий день"
63
 
@@ -254,7 +254,7 @@ msgstr "Категорії подій"
254
 
255
  #: classes/class-eo-widget-categories.php:25
256
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
257
- #: includes/event-organiser-event-functions.php:1563
258
  #: templates/event-meta-event-single.php:62
259
  msgid "Categories"
260
  msgstr "Категорії"
@@ -376,7 +376,7 @@ msgid "24 hour time"
376
  msgstr "Години у форматі 24"
377
 
378
  #: event-organiser-calendar.php:256
379
- #: includes/event-organiser-event-functions.php:1500
380
  msgid "Loading&#8230;"
381
  msgstr "Завантаження&#8230;"
382
 
@@ -646,7 +646,7 @@ msgid "day of week"
646
  msgstr "день тижня"
647
 
648
  #: event-organiser-edit.php:225
649
- #: includes/event-organiser-event-functions.php:856
650
  #: includes/event-organiser-register.php:307
651
  msgid "until"
652
  msgstr "до"
@@ -1645,7 +1645,7 @@ msgid "Choose from the most used tags"
1645
  msgstr "Оберіть теґи серед найбільш популярних"
1646
 
1647
  #: includes/event-organiser-cpt.php:163
1648
- #: includes/event-organiser-event-functions.php:1571
1649
  #: templates/event-meta-event-single.php:66
1650
  msgid "Tags"
1651
  msgstr "Теґи"
@@ -2022,77 +2022,77 @@ msgstr "Колір"
2022
  msgid "Assign the category a colour."
2023
  msgstr "Присвоїти категорії колір."
2024
 
2025
- #: includes/event-organiser-event-functions.php:777
2026
  #: includes/event-organiser-register.php:313
2027
  msgid "last"
2028
  msgstr "останнє"
2029
 
2030
- #: includes/event-organiser-event-functions.php:777
2031
  #: includes/event-organiser-register.php:309
2032
  msgid "first"
2033
  msgstr "перше"
2034
 
2035
- #: includes/event-organiser-event-functions.php:777
2036
  #: includes/event-organiser-register.php:310
2037
  msgid "second"
2038
  msgstr "друге"
2039
 
2040
- #: includes/event-organiser-event-functions.php:777
2041
  #: includes/event-organiser-register.php:311
2042
  msgid "third"
2043
  msgstr "третє"
2044
 
2045
- #: includes/event-organiser-event-functions.php:777
2046
  #: includes/event-organiser-register.php:312
2047
  msgid "fourth"
2048
  msgstr "четверте"
2049
 
2050
- #: includes/event-organiser-event-functions.php:787
2051
  msgid "one time only"
2052
  msgstr "лише один раз"
2053
 
2054
- #: includes/event-organiser-event-functions.php:790
2055
  msgid "custom recurrence"
2056
  msgstr "інша повторюваність"
2057
 
2058
- #: includes/event-organiser-event-functions.php:797
2059
  #: includes/event-organiser-register.php:298
2060
  msgid "every day"
2061
  msgstr "щодня"
2062
 
2063
- #: includes/event-organiser-event-functions.php:799
2064
  #: includes/event-organiser-register.php:299
2065
  #, php-format
2066
  msgid "every %d days"
2067
  msgstr "раз на %d днів"
2068
 
2069
- #: includes/event-organiser-event-functions.php:805
2070
  #: includes/event-organiser-register.php:300
2071
  msgid "every week on"
2072
  msgstr "щотижня в"
2073
 
2074
- #: includes/event-organiser-event-functions.php:807
2075
  #: includes/event-organiser-register.php:301
2076
  #, php-format
2077
  msgid "every %d weeks on"
2078
  msgstr "раз на %d тижнів у"
2079
 
2080
- #: includes/event-organiser-event-functions.php:818
2081
  #: includes/event-organiser-register.php:302
2082
  msgid "every month on the"
2083
  msgstr "щомісяця в"
2084
 
2085
- #: includes/event-organiser-event-functions.php:820
2086
  #: includes/event-organiser-register.php:303
2087
  #, php-format
2088
  msgid "every %d months on the"
2089
  msgstr "раз на %d місяців у"
2090
 
2091
- #: includes/event-organiser-event-functions.php:849
2092
  msgid "every year"
2093
  msgstr "щороку"
2094
 
2095
- #: includes/event-organiser-event-functions.php:851
2096
  #, php-format
2097
  msgid "every %d years"
2098
  msgstr "раз на %d років"
@@ -2248,11 +2248,11 @@ msgstr "Неправильний місячний розклад (неправи
2248
  msgid "Event does not contain any dates."
2249
  msgstr ""
2250
 
2251
- #: includes/event.php:1080
2252
  msgid "Occurrence not deleted. Occurrence not found."
2253
  msgstr ""
2254
 
2255
- #: includes/event.php:1136
2256
  msgid "There is already an occurrence on this date"
2257
  msgstr ""
2258
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:15:05+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
57
  msgstr "Включити посилання \"Додати до Google\""
58
 
59
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
60
+ #: includes/event-organiser-event-functions.php:1388
61
  msgid "All day"
62
  msgstr "Цілий день"
63
 
254
 
255
  #: classes/class-eo-widget-categories.php:25
256
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
257
+ #: includes/event-organiser-event-functions.php:1569
258
  #: templates/event-meta-event-single.php:62
259
  msgid "Categories"
260
  msgstr "Категорії"
376
  msgstr "Години у форматі 24"
377
 
378
  #: event-organiser-calendar.php:256
379
+ #: includes/event-organiser-event-functions.php:1506
380
  msgid "Loading&#8230;"
381
  msgstr "Завантаження&#8230;"
382
 
646
  msgstr "день тижня"
647
 
648
  #: event-organiser-edit.php:225
649
+ #: includes/event-organiser-event-functions.php:862
650
  #: includes/event-organiser-register.php:307
651
  msgid "until"
652
  msgstr "до"
1645
  msgstr "Оберіть теґи серед найбільш популярних"
1646
 
1647
  #: includes/event-organiser-cpt.php:163
1648
+ #: includes/event-organiser-event-functions.php:1577
1649
  #: templates/event-meta-event-single.php:66
1650
  msgid "Tags"
1651
  msgstr "Теґи"
2022
  msgid "Assign the category a colour."
2023
  msgstr "Присвоїти категорії колір."
2024
 
2025
+ #: includes/event-organiser-event-functions.php:783
2026
  #: includes/event-organiser-register.php:313
2027
  msgid "last"
2028
  msgstr "останнє"
2029
 
2030
+ #: includes/event-organiser-event-functions.php:783
2031
  #: includes/event-organiser-register.php:309
2032
  msgid "first"
2033
  msgstr "перше"
2034
 
2035
+ #: includes/event-organiser-event-functions.php:783
2036
  #: includes/event-organiser-register.php:310
2037
  msgid "second"
2038
  msgstr "друге"
2039
 
2040
+ #: includes/event-organiser-event-functions.php:783
2041
  #: includes/event-organiser-register.php:311
2042
  msgid "third"
2043
  msgstr "третє"
2044
 
2045
+ #: includes/event-organiser-event-functions.php:783
2046
  #: includes/event-organiser-register.php:312
2047
  msgid "fourth"
2048
  msgstr "четверте"
2049
 
2050
+ #: includes/event-organiser-event-functions.php:793
2051
  msgid "one time only"
2052
  msgstr "лише один раз"
2053
 
2054
+ #: includes/event-organiser-event-functions.php:796
2055
  msgid "custom recurrence"
2056
  msgstr "інша повторюваність"
2057
 
2058
+ #: includes/event-organiser-event-functions.php:803
2059
  #: includes/event-organiser-register.php:298
2060
  msgid "every day"
2061
  msgstr "щодня"
2062
 
2063
+ #: includes/event-organiser-event-functions.php:805
2064
  #: includes/event-organiser-register.php:299
2065
  #, php-format
2066
  msgid "every %d days"
2067
  msgstr "раз на %d днів"
2068
 
2069
+ #: includes/event-organiser-event-functions.php:811
2070
  #: includes/event-organiser-register.php:300
2071
  msgid "every week on"
2072
  msgstr "щотижня в"
2073
 
2074
+ #: includes/event-organiser-event-functions.php:813
2075
  #: includes/event-organiser-register.php:301
2076
  #, php-format
2077
  msgid "every %d weeks on"
2078
  msgstr "раз на %d тижнів у"
2079
 
2080
+ #: includes/event-organiser-event-functions.php:824
2081
  #: includes/event-organiser-register.php:302
2082
  msgid "every month on the"
2083
  msgstr "щомісяця в"
2084
 
2085
+ #: includes/event-organiser-event-functions.php:826
2086
  #: includes/event-organiser-register.php:303
2087
  #, php-format
2088
  msgid "every %d months on the"
2089
  msgstr "раз на %d місяців у"
2090
 
2091
+ #: includes/event-organiser-event-functions.php:855
2092
  msgid "every year"
2093
  msgstr "щороку"
2094
 
2095
+ #: includes/event-organiser-event-functions.php:857
2096
  #, php-format
2097
  msgid "every %d years"
2098
  msgstr "раз на %d років"
2248
  msgid "Event does not contain any dates."
2249
  msgstr ""
2250
 
2251
+ #: includes/event.php:1085
2252
  msgid "Occurrence not deleted. Occurrence not found."
2253
  msgstr ""
2254
 
2255
+ #: includes/event.php:1141
2256
  msgid "There is already an occurrence on this date"
2257
  msgstr ""
2258
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:15:02+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr "包含“添加到谷歌”链接"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr "全天"
62
 
@@ -248,7 +248,7 @@ msgstr "活动分类"
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
- #: includes/event-organiser-event-functions.php:1563
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr "分类"
@@ -370,7 +370,7 @@ msgid "24 hour time"
370
  msgstr "24小时"
371
 
372
  #: event-organiser-calendar.php:256
373
- #: includes/event-organiser-event-functions.php:1500
374
  msgid "Loading&#8230;"
375
  msgstr "加载中..."
376
 
@@ -639,7 +639,7 @@ msgid "day of week"
639
  msgstr ""
640
 
641
  #: event-organiser-edit.php:225
642
- #: includes/event-organiser-event-functions.php:856
643
  #: includes/event-organiser-register.php:307
644
  msgid "until"
645
  msgstr "直到"
@@ -1612,7 +1612,7 @@ msgid "Choose from the most used tags"
1612
  msgstr "从最常用的标签中选择"
1613
 
1614
  #: includes/event-organiser-cpt.php:163
1615
- #: includes/event-organiser-event-functions.php:1571
1616
  #: templates/event-meta-event-single.php:66
1617
  msgid "Tags"
1618
  msgstr "标签"
@@ -1943,77 +1943,77 @@ msgstr "颜色"
1943
  msgid "Assign the category a colour."
1944
  msgstr "为分类指定颜色"
1945
 
1946
- #: includes/event-organiser-event-functions.php:777
1947
  #: includes/event-organiser-register.php:313
1948
  msgid "last"
1949
  msgstr "最后"
1950
 
1951
- #: includes/event-organiser-event-functions.php:777
1952
  #: includes/event-organiser-register.php:309
1953
  msgid "first"
1954
  msgstr "第一"
1955
 
1956
- #: includes/event-organiser-event-functions.php:777
1957
  #: includes/event-organiser-register.php:310
1958
  msgid "second"
1959
  msgstr "第二"
1960
 
1961
- #: includes/event-organiser-event-functions.php:777
1962
  #: includes/event-organiser-register.php:311
1963
  msgid "third"
1964
  msgstr "第三"
1965
 
1966
- #: includes/event-organiser-event-functions.php:777
1967
  #: includes/event-organiser-register.php:312
1968
  msgid "fourth"
1969
  msgstr "第四"
1970
 
1971
- #: includes/event-organiser-event-functions.php:787
1972
  msgid "one time only"
1973
  msgstr "仅一次"
1974
 
1975
- #: includes/event-organiser-event-functions.php:790
1976
  msgid "custom recurrence"
1977
  msgstr ""
1978
 
1979
- #: includes/event-organiser-event-functions.php:797
1980
  #: includes/event-organiser-register.php:298
1981
  msgid "every day"
1982
  msgstr "每天"
1983
 
1984
- #: includes/event-organiser-event-functions.php:799
1985
  #: includes/event-organiser-register.php:299
1986
  #, php-format
1987
  msgid "every %d days"
1988
  msgstr "每%d天"
1989
 
1990
- #: includes/event-organiser-event-functions.php:805
1991
  #: includes/event-organiser-register.php:300
1992
  msgid "every week on"
1993
  msgstr ""
1994
 
1995
- #: includes/event-organiser-event-functions.php:807
1996
  #: includes/event-organiser-register.php:301
1997
  #, php-format
1998
  msgid "every %d weeks on"
1999
  msgstr ""
2000
 
2001
- #: includes/event-organiser-event-functions.php:818
2002
  #: includes/event-organiser-register.php:302
2003
  msgid "every month on the"
2004
  msgstr ""
2005
 
2006
- #: includes/event-organiser-event-functions.php:820
2007
  #: includes/event-organiser-register.php:303
2008
  #, php-format
2009
  msgid "every %d months on the"
2010
  msgstr ""
2011
 
2012
- #: includes/event-organiser-event-functions.php:849
2013
  msgid "every year"
2014
  msgstr "每年"
2015
 
2016
- #: includes/event-organiser-event-functions.php:851
2017
  #, php-format
2018
  msgid "every %d years"
2019
  msgstr "每%d 年"
@@ -2169,11 +2169,11 @@ msgstr ""
2169
  msgid "Event does not contain any dates."
2170
  msgstr ""
2171
 
2172
- #: includes/event.php:1080
2173
  msgid "Occurrence not deleted. Occurrence not found."
2174
  msgstr ""
2175
 
2176
- #: includes/event.php:1136
2177
  msgid "There is already an occurrence on this date"
2178
  msgstr ""
2179
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:15:02+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr "包含“添加到谷歌”链接"
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr "全天"
62
 
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
+ #: includes/event-organiser-event-functions.php:1569
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr "分类"
370
  msgstr "24小时"
371
 
372
  #: event-organiser-calendar.php:256
373
+ #: includes/event-organiser-event-functions.php:1506
374
  msgid "Loading&#8230;"
375
  msgstr "加载中..."
376
 
639
  msgstr ""
640
 
641
  #: event-organiser-edit.php:225
642
+ #: includes/event-organiser-event-functions.php:862
643
  #: includes/event-organiser-register.php:307
644
  msgid "until"
645
  msgstr "直到"
1612
  msgstr "从最常用的标签中选择"
1613
 
1614
  #: includes/event-organiser-cpt.php:163
1615
+ #: includes/event-organiser-event-functions.php:1577
1616
  #: templates/event-meta-event-single.php:66
1617
  msgid "Tags"
1618
  msgstr "标签"
1943
  msgid "Assign the category a colour."
1944
  msgstr "为分类指定颜色"
1945
 
1946
+ #: includes/event-organiser-event-functions.php:783
1947
  #: includes/event-organiser-register.php:313
1948
  msgid "last"
1949
  msgstr "最后"
1950
 
1951
+ #: includes/event-organiser-event-functions.php:783
1952
  #: includes/event-organiser-register.php:309
1953
  msgid "first"
1954
  msgstr "第一"
1955
 
1956
+ #: includes/event-organiser-event-functions.php:783
1957
  #: includes/event-organiser-register.php:310
1958
  msgid "second"
1959
  msgstr "第二"
1960
 
1961
+ #: includes/event-organiser-event-functions.php:783
1962
  #: includes/event-organiser-register.php:311
1963
  msgid "third"
1964
  msgstr "第三"
1965
 
1966
+ #: includes/event-organiser-event-functions.php:783
1967
  #: includes/event-organiser-register.php:312
1968
  msgid "fourth"
1969
  msgstr "第四"
1970
 
1971
+ #: includes/event-organiser-event-functions.php:793
1972
  msgid "one time only"
1973
  msgstr "仅一次"
1974
 
1975
+ #: includes/event-organiser-event-functions.php:796
1976
  msgid "custom recurrence"
1977
  msgstr ""
1978
 
1979
+ #: includes/event-organiser-event-functions.php:803
1980
  #: includes/event-organiser-register.php:298
1981
  msgid "every day"
1982
  msgstr "每天"
1983
 
1984
+ #: includes/event-organiser-event-functions.php:805
1985
  #: includes/event-organiser-register.php:299
1986
  #, php-format
1987
  msgid "every %d days"
1988
  msgstr "每%d天"
1989
 
1990
+ #: includes/event-organiser-event-functions.php:811
1991
  #: includes/event-organiser-register.php:300
1992
  msgid "every week on"
1993
  msgstr ""
1994
 
1995
+ #: includes/event-organiser-event-functions.php:813
1996
  #: includes/event-organiser-register.php:301
1997
  #, php-format
1998
  msgid "every %d weeks on"
1999
  msgstr ""
2000
 
2001
+ #: includes/event-organiser-event-functions.php:824
2002
  #: includes/event-organiser-register.php:302
2003
  msgid "every month on the"
2004
  msgstr ""
2005
 
2006
+ #: includes/event-organiser-event-functions.php:826
2007
  #: includes/event-organiser-register.php:303
2008
  #, php-format
2009
  msgid "every %d months on the"
2010
  msgstr ""
2011
 
2012
+ #: includes/event-organiser-event-functions.php:855
2013
  msgid "every year"
2014
  msgstr "每年"
2015
 
2016
+ #: includes/event-organiser-event-functions.php:857
2017
  #, php-format
2018
  msgid "every %d years"
2019
  msgstr "每%d 年"
2169
  msgid "Event does not contain any dates."
2170
  msgstr ""
2171
 
2172
+ #: includes/event.php:1085
2173
  msgid "Occurrence not deleted. Occurrence not found."
2174
  msgstr ""
2175
 
2176
+ #: includes/event.php:1141
2177
  msgid "There is already an occurrence on this date"
2178
  msgstr ""
2179
 
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: 2021-10-12 23:08+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:14:57+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -56,7 +56,7 @@ msgid "Include 'Add To Google' link"
56
  msgstr ""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
- #: includes/event-organiser-event-functions.php:1382
60
  msgid "All day"
61
  msgstr "全日"
62
 
@@ -248,7 +248,7 @@ msgstr ""
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
- #: includes/event-organiser-event-functions.php:1563
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr ""
@@ -370,7 +370,7 @@ msgid "24 hour time"
370
  msgstr ""
371
 
372
  #: event-organiser-calendar.php:256
373
- #: includes/event-organiser-event-functions.php:1500
374
  msgid "Loading&#8230;"
375
  msgstr ""
376
 
@@ -639,7 +639,7 @@ msgid "day of week"
639
  msgstr "星期"
640
 
641
  #: event-organiser-edit.php:225
642
- #: includes/event-organiser-event-functions.php:856
643
  #: includes/event-organiser-register.php:307
644
  msgid "until"
645
  msgstr ""
@@ -1612,7 +1612,7 @@ msgid "Choose from the most used tags"
1612
  msgstr ""
1613
 
1614
  #: includes/event-organiser-cpt.php:163
1615
- #: includes/event-organiser-event-functions.php:1571
1616
  #: templates/event-meta-event-single.php:66
1617
  msgid "Tags"
1618
  msgstr ""
@@ -1943,77 +1943,77 @@ msgstr ""
1943
  msgid "Assign the category a colour."
1944
  msgstr ""
1945
 
1946
- #: includes/event-organiser-event-functions.php:777
1947
  #: includes/event-organiser-register.php:313
1948
  msgid "last"
1949
  msgstr ""
1950
 
1951
- #: includes/event-organiser-event-functions.php:777
1952
  #: includes/event-organiser-register.php:309
1953
  msgid "first"
1954
  msgstr "第一"
1955
 
1956
- #: includes/event-organiser-event-functions.php:777
1957
  #: includes/event-organiser-register.php:310
1958
  msgid "second"
1959
  msgstr "秒"
1960
 
1961
- #: includes/event-organiser-event-functions.php:777
1962
  #: includes/event-organiser-register.php:311
1963
  msgid "third"
1964
  msgstr "第三"
1965
 
1966
- #: includes/event-organiser-event-functions.php:777
1967
  #: includes/event-organiser-register.php:312
1968
  msgid "fourth"
1969
  msgstr "第四"
1970
 
1971
- #: includes/event-organiser-event-functions.php:787
1972
  msgid "one time only"
1973
  msgstr "一次性活動"
1974
 
1975
- #: includes/event-organiser-event-functions.php:790
1976
  msgid "custom recurrence"
1977
  msgstr ""
1978
 
1979
- #: includes/event-organiser-event-functions.php:797
1980
  #: includes/event-organiser-register.php:298
1981
  msgid "every day"
1982
  msgstr "每日"
1983
 
1984
- #: includes/event-organiser-event-functions.php:799
1985
  #: includes/event-organiser-register.php:299
1986
  #, php-format
1987
  msgid "every %d days"
1988
  msgstr "每 %d 日"
1989
 
1990
- #: includes/event-organiser-event-functions.php:805
1991
  #: includes/event-organiser-register.php:300
1992
  msgid "every week on"
1993
  msgstr "每週"
1994
 
1995
- #: includes/event-organiser-event-functions.php:807
1996
  #: includes/event-organiser-register.php:301
1997
  #, php-format
1998
  msgid "every %d weeks on"
1999
  msgstr "每 %d 週"
2000
 
2001
- #: includes/event-organiser-event-functions.php:818
2002
  #: includes/event-organiser-register.php:302
2003
  msgid "every month on the"
2004
  msgstr "每月"
2005
 
2006
- #: includes/event-organiser-event-functions.php:820
2007
  #: includes/event-organiser-register.php:303
2008
  #, php-format
2009
  msgid "every %d months on the"
2010
  msgstr "每 %d 月"
2011
 
2012
- #: includes/event-organiser-event-functions.php:849
2013
  msgid "every year"
2014
  msgstr "每年"
2015
 
2016
- #: includes/event-organiser-event-functions.php:851
2017
  #, php-format
2018
  msgid "every %d years"
2019
  msgstr "每 %d 年"
@@ -2169,11 +2169,11 @@ msgstr ""
2169
  msgid "Event does not contain any dates."
2170
  msgstr ""
2171
 
2172
- #: includes/event.php:1080
2173
  msgid "Occurrence not deleted. Occurrence not found."
2174
  msgstr ""
2175
 
2176
- #: includes/event.php:1136
2177
  msgid "There is already an occurrence on this date"
2178
  msgstr ""
2179
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2022-03-10 01:12+0000\n"
6
  "PO-Revision-Date: 2016-11-27T01:14:57+00:00\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
56
  msgstr ""
57
 
58
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
59
+ #: includes/event-organiser-event-functions.php:1388
60
  msgid "All day"
61
  msgstr "全日"
62
 
248
 
249
  #: classes/class-eo-widget-categories.php:25
250
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
251
+ #: includes/event-organiser-event-functions.php:1569
252
  #: templates/event-meta-event-single.php:62
253
  msgid "Categories"
254
  msgstr ""
370
  msgstr ""
371
 
372
  #: event-organiser-calendar.php:256
373
+ #: includes/event-organiser-event-functions.php:1506
374
  msgid "Loading&#8230;"
375
  msgstr ""
376
 
639
  msgstr "星期"
640
 
641
  #: event-organiser-edit.php:225
642
+ #: includes/event-organiser-event-functions.php:862
643
  #: includes/event-organiser-register.php:307
644
  msgid "until"
645
  msgstr ""
1612
  msgstr ""
1613
 
1614
  #: includes/event-organiser-cpt.php:163
1615
+ #: includes/event-organiser-event-functions.php:1577
1616
  #: templates/event-meta-event-single.php:66
1617
  msgid "Tags"
1618
  msgstr ""
1943
  msgid "Assign the category a colour."
1944
  msgstr ""
1945
 
1946
+ #: includes/event-organiser-event-functions.php:783
1947
  #: includes/event-organiser-register.php:313
1948
  msgid "last"
1949
  msgstr ""
1950
 
1951
+ #: includes/event-organiser-event-functions.php:783
1952
  #: includes/event-organiser-register.php:309
1953
  msgid "first"
1954
  msgstr "第一"
1955
 
1956
+ #: includes/event-organiser-event-functions.php:783
1957
  #: includes/event-organiser-register.php:310
1958
  msgid "second"
1959
  msgstr "秒"
1960
 
1961
+ #: includes/event-organiser-event-functions.php:783
1962
  #: includes/event-organiser-register.php:311
1963
  msgid "third"
1964
  msgstr "第三"
1965
 
1966
+ #: includes/event-organiser-event-functions.php:783
1967
  #: includes/event-organiser-register.php:312
1968
  msgid "fourth"
1969
  msgstr "第四"
1970
 
1971
+ #: includes/event-organiser-event-functions.php:793
1972
  msgid "one time only"
1973
  msgstr "一次性活動"
1974
 
1975
+ #: includes/event-organiser-event-functions.php:796
1976
  msgid "custom recurrence"
1977
  msgstr ""
1978
 
1979
+ #: includes/event-organiser-event-functions.php:803
1980
  #: includes/event-organiser-register.php:298
1981
  msgid "every day"
1982
  msgstr "每日"
1983
 
1984
+ #: includes/event-organiser-event-functions.php:805
1985
  #: includes/event-organiser-register.php:299
1986
  #, php-format
1987
  msgid "every %d days"
1988
  msgstr "每 %d 日"
1989
 
1990
+ #: includes/event-organiser-event-functions.php:811
1991
  #: includes/event-organiser-register.php:300
1992
  msgid "every week on"
1993
  msgstr "每週"
1994
 
1995
+ #: includes/event-organiser-event-functions.php:813
1996
  #: includes/event-organiser-register.php:301
1997
  #, php-format
1998
  msgid "every %d weeks on"
1999
  msgstr "每 %d 週"
2000
 
2001
+ #: includes/event-organiser-event-functions.php:824
2002
  #: includes/event-organiser-register.php:302
2003
  msgid "every month on the"
2004
  msgstr "每月"
2005
 
2006
+ #: includes/event-organiser-event-functions.php:826
2007
  #: includes/event-organiser-register.php:303
2008
  #, php-format
2009
  msgid "every %d months on the"
2010
  msgstr "每 %d 月"
2011
 
2012
+ #: includes/event-organiser-event-functions.php:855
2013
  msgid "every year"
2014
  msgstr "每年"
2015
 
2016
+ #: includes/event-organiser-event-functions.php:857
2017
  #, php-format
2018
  msgid "every %d years"
2019
  msgstr "每 %d 年"
2169
  msgid "Event does not contain any dates."
2170
  msgstr ""
2171
 
2172
+ #: includes/event.php:1085
2173
  msgid "Occurrence not deleted. Occurrence not found."
2174
  msgstr ""
2175
 
2176
+ #: includes/event.php:1141
2177
  msgid "There is already an occurrence on this date"
2178
  msgstr ""
2179
 
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: 2021-10-12 23:08+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"
@@ -61,7 +61,7 @@ msgid "Include 'Add To Google' link"
61
  msgstr ""
62
 
63
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
64
- #: includes/event-organiser-event-functions.php:1382
65
  msgid "All day"
66
  msgstr ""
67
 
@@ -253,7 +253,7 @@ msgstr ""
253
 
254
  #: classes/class-eo-widget-categories.php:25
255
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
256
- #: includes/event-organiser-event-functions.php:1563
257
  #: templates/event-meta-event-single.php:62
258
  msgid "Categories"
259
  msgstr ""
@@ -375,7 +375,7 @@ msgid "24 hour time"
375
  msgstr ""
376
 
377
  #: event-organiser-calendar.php:256
378
- #: includes/event-organiser-event-functions.php:1500
379
  msgid "Loading&#8230;"
380
  msgstr ""
381
 
@@ -643,7 +643,7 @@ msgid "day of week"
643
  msgstr ""
644
 
645
  #: event-organiser-edit.php:225
646
- #: includes/event-organiser-event-functions.php:856
647
  #: includes/event-organiser-register.php:307
648
  msgid "until"
649
  msgstr ""
@@ -1616,7 +1616,7 @@ msgid "Choose from the most used tags"
1616
  msgstr ""
1617
 
1618
  #: includes/event-organiser-cpt.php:163
1619
- #: includes/event-organiser-event-functions.php:1571
1620
  #: templates/event-meta-event-single.php:66
1621
  msgid "Tags"
1622
  msgstr ""
@@ -1946,77 +1946,77 @@ msgstr ""
1946
  msgid "Assign the category a colour."
1947
  msgstr ""
1948
 
1949
- #: includes/event-organiser-event-functions.php:777
1950
  #: includes/event-organiser-register.php:313
1951
  msgid "last"
1952
  msgstr ""
1953
 
1954
- #: includes/event-organiser-event-functions.php:777
1955
  #: includes/event-organiser-register.php:309
1956
  msgid "first"
1957
  msgstr ""
1958
 
1959
- #: includes/event-organiser-event-functions.php:777
1960
  #: includes/event-organiser-register.php:310
1961
  msgid "second"
1962
  msgstr ""
1963
 
1964
- #: includes/event-organiser-event-functions.php:777
1965
  #: includes/event-organiser-register.php:311
1966
  msgid "third"
1967
  msgstr ""
1968
 
1969
- #: includes/event-organiser-event-functions.php:777
1970
  #: includes/event-organiser-register.php:312
1971
  msgid "fourth"
1972
  msgstr ""
1973
 
1974
- #: includes/event-organiser-event-functions.php:787
1975
  msgid "one time only"
1976
  msgstr ""
1977
 
1978
- #: includes/event-organiser-event-functions.php:790
1979
  msgid "custom recurrence"
1980
  msgstr ""
1981
 
1982
- #: includes/event-organiser-event-functions.php:797
1983
  #: includes/event-organiser-register.php:298
1984
  msgid "every day"
1985
  msgstr ""
1986
 
1987
- #: includes/event-organiser-event-functions.php:799
1988
  #: includes/event-organiser-register.php:299
1989
  #, php-format
1990
  msgid "every %d days"
1991
  msgstr ""
1992
 
1993
- #: includes/event-organiser-event-functions.php:805
1994
  #: includes/event-organiser-register.php:300
1995
  msgid "every week on"
1996
  msgstr ""
1997
 
1998
- #: includes/event-organiser-event-functions.php:807
1999
  #: includes/event-organiser-register.php:301
2000
  #, php-format
2001
  msgid "every %d weeks on"
2002
  msgstr ""
2003
 
2004
- #: includes/event-organiser-event-functions.php:818
2005
  #: includes/event-organiser-register.php:302
2006
  msgid "every month on the"
2007
  msgstr ""
2008
 
2009
- #: includes/event-organiser-event-functions.php:820
2010
  #: includes/event-organiser-register.php:303
2011
  #, php-format
2012
  msgid "every %d months on the"
2013
  msgstr ""
2014
 
2015
- #: includes/event-organiser-event-functions.php:849
2016
  msgid "every year"
2017
  msgstr ""
2018
 
2019
- #: includes/event-organiser-event-functions.php:851
2020
  #, php-format
2021
  msgid "every %d years"
2022
  msgstr ""
@@ -2171,11 +2171,11 @@ msgstr ""
2171
  msgid "Event does not contain any dates."
2172
  msgstr ""
2173
 
2174
- #: includes/event.php:1080
2175
  msgid "Occurrence not deleted. Occurrence not found."
2176
  msgstr ""
2177
 
2178
- #: includes/event.php:1136
2179
  msgid "There is already an occurrence on this date"
2180
  msgstr ""
2181
 
8
  msgstr ""
9
  "Project-Id-Version: event-organiser\n"
10
  "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2022-03-10 01:12+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"
61
  msgstr ""
62
 
63
  #: classes/class-eo-agenda-widget.php:140 event-organiser-edit.php:151
64
+ #: includes/event-organiser-event-functions.php:1388
65
  msgid "All day"
66
  msgstr ""
67
 
253
 
254
  #: classes/class-eo-widget-categories.php:25
255
  #: includes/event-organiser-cpt.php:95 includes/event-organiser-cpt.php:106
256
+ #: includes/event-organiser-event-functions.php:1569
257
  #: templates/event-meta-event-single.php:62
258
  msgid "Categories"
259
  msgstr ""
375
  msgstr ""
376
 
377
  #: event-organiser-calendar.php:256
378
+ #: includes/event-organiser-event-functions.php:1506
379
  msgid "Loading&#8230;"
380
  msgstr ""
381
 
643
  msgstr ""
644
 
645
  #: event-organiser-edit.php:225
646
+ #: includes/event-organiser-event-functions.php:862
647
  #: includes/event-organiser-register.php:307
648
  msgid "until"
649
  msgstr ""
1616
  msgstr ""
1617
 
1618
  #: includes/event-organiser-cpt.php:163
1619
+ #: includes/event-organiser-event-functions.php:1577
1620
  #: templates/event-meta-event-single.php:66
1621
  msgid "Tags"
1622
  msgstr ""
1946
  msgid "Assign the category a colour."
1947
  msgstr ""
1948
 
1949
+ #: includes/event-organiser-event-functions.php:783
1950
  #: includes/event-organiser-register.php:313
1951
  msgid "last"
1952
  msgstr ""
1953
 
1954
+ #: includes/event-organiser-event-functions.php:783
1955
  #: includes/event-organiser-register.php:309
1956
  msgid "first"
1957
  msgstr ""
1958
 
1959
+ #: includes/event-organiser-event-functions.php:783
1960
  #: includes/event-organiser-register.php:310
1961
  msgid "second"
1962
  msgstr ""
1963
 
1964
+ #: includes/event-organiser-event-functions.php:783
1965
  #: includes/event-organiser-register.php:311
1966
  msgid "third"
1967
  msgstr ""
1968
 
1969
+ #: includes/event-organiser-event-functions.php:783
1970
  #: includes/event-organiser-register.php:312
1971
  msgid "fourth"
1972
  msgstr ""
1973
 
1974
+ #: includes/event-organiser-event-functions.php:793
1975
  msgid "one time only"
1976
  msgstr ""
1977
 
1978
+ #: includes/event-organiser-event-functions.php:796
1979
  msgid "custom recurrence"
1980
  msgstr ""
1981
 
1982
+ #: includes/event-organiser-event-functions.php:803
1983
  #: includes/event-organiser-register.php:298
1984
  msgid "every day"
1985
  msgstr ""
1986
 
1987
+ #: includes/event-organiser-event-functions.php:805
1988
  #: includes/event-organiser-register.php:299
1989
  #, php-format
1990
  msgid "every %d days"
1991
  msgstr ""
1992
 
1993
+ #: includes/event-organiser-event-functions.php:811
1994
  #: includes/event-organiser-register.php:300
1995
  msgid "every week on"
1996
  msgstr ""
1997
 
1998
+ #: includes/event-organiser-event-functions.php:813
1999
  #: includes/event-organiser-register.php:301
2000
  #, php-format
2001
  msgid "every %d weeks on"
2002
  msgstr ""
2003
 
2004
+ #: includes/event-organiser-event-functions.php:824
2005
  #: includes/event-organiser-register.php:302
2006
  msgid "every month on the"
2007
  msgstr ""
2008
 
2009
+ #: includes/event-organiser-event-functions.php:826
2010
  #: includes/event-organiser-register.php:303
2011
  #, php-format
2012
  msgid "every %d months on the"
2013
  msgstr ""
2014
 
2015
+ #: includes/event-organiser-event-functions.php:855
2016
  msgid "every year"
2017
  msgstr ""
2018
 
2019
+ #: includes/event-organiser-event-functions.php:857
2020
  #, php-format
2021
  msgid "every %d years"
2022
  msgstr ""
2171
  msgid "Event does not contain any dates."
2172
  msgstr ""
2173
 
2174
+ #: includes/event.php:1085
2175
  msgid "Occurrence not deleted. Occurrence not found."
2176
  msgstr ""
2177
 
2178
+ #: includes/event.php:1141
2179
  msgid "There is already an occurrence on this date"
2180
  msgstr ""
2181
 
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.8.1
7
- Stable tag: 3.10.8
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,10 @@ More information on shortcodes is [available here](http://wp-event-organiser.com
222
 
223
  == Changelog ==
224
 
 
 
 
 
225
  = 3.10.8 - 13th October 2021 =
226
  * bugfix: Close open tooltip windows when opening tooltip..
227
 
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.9.1
7
+ Stable tag: 3.11.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
+
226
+ = 3.11.0 - 10th March 2022 =
227
+ * bugfix: Add support for PHP 8+
228
+
229
  = 3.10.8 - 13th October 2021 =
230
  * bugfix: Close open tooltip windows when opening tooltip..
231